/* Chekea — hoja de estilos compartida para el sitio web.
 Paleta tomada del tema de la app: primary #88BBFF, secondary #658DB7,
 beige #FDF6ED, gris oscuro #343434. Soporta claro/oscuro. */

/* Legacy styles retained for reference. */
@media not all {
  :root {
    --brand-primary: #5a9eff;
    --brand-primary-soft: #88bbff;
    --brand-secondary: #658db7;
    --bg: #fdf9f3;
    --surface: #ffffff;
    --text: #2b2b2b;
    --text-muted: #6b6b6b;
    --border: #e8e2d8;
    --code-bg: #f4efe6;
    --shadow:
      0 1px 2px rgba(52, 52, 52, 0.06), 0 8px 24px rgba(52, 52, 52, 0.05);
    --radius: 16px;
    --maxw: 820px;
    --gradient: linear-gradient(135deg, #88bbff 0%, #5a9eff 100%);
  }

  @media (prefers-color-scheme: dark) {
    :root {
      --bg: #1e1e1e;
      --surface: #2a2a2a;
      --text: #fdf6ed;
      --text-muted: #a8a29a;
      --border: #3d3d3d;
      --code-bg: #333333;
      --shadow: 0 1px 2px rgba(0, 0, 0, 0.3), 0 8px 24px rgba(0, 0, 0, 0.25);
    }
  }

  * {
    box-sizing: border-box;
  }

  html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
  }

  body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family:
      -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial,
      sans-serif;
    line-height: 1.7;
    font-size: 17px;
    -webkit-font-smoothing: antialiased;
  }

  a {
    color: var(--brand-primary);
    text-decoration: none;
  }
  a:hover {
    text-decoration: underline;
  }

  /* ---------- Barra superior ---------- */
  .topbar {
    position: sticky;
    top: 0;
    z-index: 50;
    background: color-mix(in srgb, var(--bg) 88%, transparent);
    backdrop-filter: saturate(180%) blur(12px);
    -webkit-backdrop-filter: saturate(180%) blur(12px);
    border-bottom: 1px solid var(--border);
  }
  .topbar-inner {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }
  .brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    color: var(--text);
    font-size: 1.05rem;
  }
  .brand:hover {
    text-decoration: none;
  }
  .brand .wordmark {
    height: 22px;
    width: auto;
    display: block;
  }
  .brand .wordmark--dark {
    display: none;
  }
  @media (prefers-color-scheme: dark) {
    .brand .wordmark--light {
      display: none;
    }
    .brand .wordmark--dark {
      display: block;
    }
  }
  .nav-links {
    display: flex;
    gap: 6px;
  }
  .nav-links a {
    padding: 7px 14px;
    border-radius: 999px;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
  }
  .nav-short {
    display: none;
  }
  .nav-links a:hover {
    background: var(--code-bg);
    text-decoration: none;
  }
  .nav-links a[aria-current="page"] {
    background: var(--brand-primary);
    color: #fff;
  }

  /* ---------- Layout ---------- */
  .wrap {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 20px;
  }

  /* ---------- Hero (índice) ---------- */
  .hero {
    text-align: center;
    padding: 72px 20px 48px;
  }
  .hero .logo-lg {
    height: 64px;
    width: auto;
    display: block;
    margin: 0 auto 28px;
  }
  .hero h1 {
    font-size: 2.4rem;
    margin: 0 0 12px;
    letter-spacing: -0.02em;
  }
  .hero .tagline {
    color: var(--text-muted);
    max-width: 540px;
    margin: 0 auto 32px;
    font-size: 1.05rem;
  }

  .cta-group {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 40px;
  }
  .btn-primary {
    display: inline-block;
    background: var(--gradient);
    color: #fff;
    font-weight: 700;
    font-size: 1.05rem;
    padding: 14px 32px;
    border-radius: 999px;
    transition: filter 0.15s ease;
  }
  .btn-primary:hover {
    text-decoration: none;
    filter: brightness(1.05);
  }
  .btn-secondary {
    display: inline-block;
    background: var(--surface);
    border: 2px solid var(--border);
    color: var(--text);
    font-weight: 700;
    font-size: 1.05rem;
    padding: 12px 32px;
    border-radius: 999px;
    transition: background 0.15s ease;
  }
  .btn-secondary:hover {
    text-decoration: none;
    background: var(--code-bg);
  }

  .store-badges {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 24px 0;
  }
  .store-badges a {
    display: block;
    height: 52px;
    transition: transform 0.15s ease;
  }
  .store-badges a:hover {
    transform: scale(1.03);
  }
  .store-badges img {
    height: 100%;
    width: auto;
    border-radius: 8px;
  }

  .cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 44px 0 24px;
  }
  .card {
    display: block;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: var(--shadow);
    transition:
      transform 0.15s ease,
      box-shadow 0.15s ease;
    color: var(--text);
  }
  .card:hover {
    transform: translateY(-3px);
    box-shadow:
      0 4px 8px rgba(52, 52, 52, 0.08),
      0 16px 40px rgba(52, 52, 52, 0.1);
    text-decoration: none;
  }
  .card .icon {
    display: inline-grid;
    place-items: center;
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
    border-radius: 12px;
    color: var(--brand-primary);
    background: color-mix(in srgb, var(--brand-primary-soft) 16%, transparent);
  }
  .card .icon svg {
    width: 26px;
    height: 26px;
  }
  .card h2 {
    margin: 0 0 8px;
    font-size: 1.25rem;
  }
  .card p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.95rem;
  }
  .card .go {
    display: inline-block;
    margin-top: 16px;
    color: var(--brand-primary);
    font-weight: 600;
    font-size: 0.9rem;
  }

  /* ---------- Sección de características ---------- */
  .features-section {
    padding: 60px 20px;
    background: var(--surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }
  .features-section h2 {
    text-align: center;
    font-size: 2rem;
    margin: 0 0 48px;
    letter-spacing: -0.01em;
  }
  .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
    max-width: var(--maxw);
    margin: 0 auto;
  }
  .feature-item {
    text-align: center;
  }
  .feature-item .icon {
    display: inline-grid;
    place-items: center;
    width: 64px;
    height: 64px;
    margin-bottom: 18px;
    border-radius: 16px;
    color: var(--brand-primary);
    background: color-mix(in srgb, var(--brand-primary-soft) 16%, transparent);
  }
  .feature-item .icon svg {
    width: 32px;
    height: 32px;
  }
  .feature-item h3 {
    margin: 0 0 10px;
    font-size: 1.1rem;
  }
  .feature-item p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.95rem;
  }

  /* ---------- Sección Cómo funciona ---------- */
  .how-it-works {
    padding: 60px 20px;
    max-width: var(--maxw);
    margin: 0 auto;
  }
  .how-it-works h2 {
    text-align: center;
    font-size: 2rem;
    margin: 0 0 48px;
    letter-spacing: -0.01em;
  }
  .steps {
    display: grid;
    gap: 32px;
  }
  .step {
    display: flex;
    gap: 20px;
    align-items: start;
  }
  .step-number {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: var(--gradient);
    color: #fff;
    font-weight: 700;
    font-size: 1.25rem;
  }
  .step-content h3 {
    margin: 0 0 8px;
    font-size: 1.15rem;
  }
  .step-content p {
    margin: 0;
    color: var(--text-muted);
  }

  /* ---------- Documento legal ---------- */
  .doc {
    padding-top: 48px;
    padding-bottom: 80px;
  }
  .doc-header {
    margin-bottom: 36px;
  }
  .doc-header h1 {
    font-size: 2.1rem;
    margin: 0 0 10px;
    letter-spacing: -0.02em;
  }
  .doc-header .lead {
    color: var(--text-muted);
    margin: 0 0 16px;
    font-size: 1.05rem;
  }
  .revised {
    display: inline-block;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--brand-secondary);
    background: color-mix(in srgb, var(--brand-primary-soft) 18%, transparent);
    padding: 5px 12px;
    border-radius: 999px;
  }

  .toc {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 22px 26px;
    margin-bottom: 40px;
    box-shadow: var(--shadow);
  }
  .toc h2 {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    margin: 0 0 14px;
  }
  .toc ol {
    margin: 0;
    padding-left: 20px;
    columns: 2;
    column-gap: 32px;
  }
  .toc li {
    margin-bottom: 7px;
    break-inside: avoid;
  }
  .toc a {
    color: var(--text);
    font-size: 0.92rem;
  }

  .doc-body h2 {
    font-size: 1.5rem;
    margin: 48px 0 14px;
    padding-top: 12px;
    letter-spacing: -0.01em;
    scroll-margin-top: 84px;
  }
  .doc-body h3 {
    font-size: 1.15rem;
    margin: 30px 0 10px;
    color: var(--brand-secondary);
  }
  .doc-body h4 {
    font-size: 1rem;
    margin: 22px 0 8px;
  }
  .doc-body p {
    margin: 0 0 16px;
  }
  .doc-body ul {
    margin: 0 0 18px;
    padding-left: 22px;
  }
  .doc-body li {
    margin-bottom: 9px;
  }
  .doc-body strong {
    font-weight: 700;
  }

  .callout {
    background: color-mix(
      in srgb,
      var(--brand-primary-soft) 12%,
      var(--surface)
    );
    border-left: 4px solid var(--brand-primary);
    border-radius: 10px;
    padding: 16px 20px;
    margin: 20px 0;
  }
  .callout p:last-child {
    margin-bottom: 0;
  }

  .section-lead {
    border-top: 2px solid var(--border);
    margin-top: 56px;
  }

  .contact-box {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px 26px;
    margin: 32px 0;
    box-shadow: var(--shadow);
  }
  .contact-box p {
    margin: 4px 0;
  }

  dl.defs dt {
    font-weight: 700;
    margin-top: 18px;
  }
  dl.defs dd {
    margin: 4px 0 0;
    color: var(--text-muted);
  }

  .back-top {
    display: inline-block;
    margin-top: 40px;
    font-size: 0.9rem;
    font-weight: 600;
  }

  /* ---------- Soporte ---------- */
  .support-icon {
    width: 76px;
    height: 76px;
    margin: 0 auto 24px;
    border-radius: 20px;
    display: grid;
    place-items: center;
    color: var(--brand-primary);
    background: color-mix(in srgb, var(--brand-primary-soft) 16%, transparent);
  }
  .support-icon svg {
    width: 38px;
    height: 38px;
  }
  .support-contact {
    max-width: 520px;
    margin: 0 auto;
    text-align: center;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px 28px;
    box-shadow: var(--shadow);
  }
  .support-label {
    margin: 0 0 16px;
    color: var(--text-muted);
    font-size: 0.95rem;
  }
  .btn-email {
    display: inline-block;
    max-width: 100%;
    background: var(--gradient);
    color: #fff;
    font-weight: 700;
    font-size: 1.05rem;
    padding: 14px 28px;
    border-radius: 999px;
    word-break: break-word;
  }
  .btn-email:hover {
    text-decoration: none;
    filter: brightness(1.05);
  }
  .support-note {
    margin: 22px 0 0;
    color: var(--text-muted);
    font-size: 0.9rem;
  }
  .support-more {
    text-align: center;
    margin: 44px 0 0;
  }
  .support-more a {
    margin: 0 12px;
    font-weight: 600;
  }

  /* ---------- Footer ---------- */
  .footer {
    border-top: 1px solid var(--border);
    padding: 32px 20px;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.88rem;
  }
  .footer a {
    color: var(--text-muted);
  }
  .footer .footer-links {
    margin-bottom: 8px;
  }
  .footer .footer-links a {
    margin: 0 10px;
    font-weight: 600;
  }

  /* ---------- Página 404 ---------- */
  .error-page {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
  }
  .error-content h1 {
    font-size: 4rem;
    margin: 0 0 16px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  .error-content p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin: 0 0 28px;
  }

  /* ---------- Responsive ---------- */
  @media (max-width: 680px) {
    body {
      font-size: 16px;
    }
    .hero {
      padding: 48px 20px 32px;
    }
    .hero h1 {
      font-size: 1.9rem;
    }
    .cards {
      grid-template-columns: 1fr;
    }
    .features-grid {
      grid-template-columns: 1fr;
    }
    .cta-group {
      flex-direction: column;
    }
    .btn-primary,
    .btn-secondary {
      width: 100%;
      max-width: 320px;
    }
    .store-badges {
      flex-direction: column;
      align-items: center;
    }
    .toc ol {
      columns: 1;
    }
    .doc-header h1 {
      font-size: 1.7rem;
    }
    .nav-links {
      gap: 4px;
    }
    .nav-links a {
      padding: 6px 12px;
      font-size: 0.85rem;
    }
    .nav-full {
      display: none;
    }
    .nav-short {
      display: inline;
    }
    .support-contact {
      padding: 28px 20px;
    }
    .btn-email {
      font-size: 1rem;
      padding: 13px 22px;
    }
    .step {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
  }
}

/* ================================================================
   Chekea website — 2026 visual system
   ================================================================ */

@font-face {
  font-family: "Mulish";
  src: url("assets/fonts/Mulish-VariableFont_wght.ttf") format("truetype");
  font-style: normal;
  font-weight: 200 1000;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("assets/fonts/Poppins-SemiBold.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("assets/fonts/Poppins-Bold.ttf") format("truetype");
  font-style: normal;
  font-weight: 700 900;
  font-display: swap;
}

:root {
  color-scheme: light;
  --brand: #88bbff;
  --brand-bright: #88bbff;
  --brand-deep: #88bbff;
  --brand-ink: #88bbff;
  --page: #fdf6ed;
  --page-alt: #f7efe5;
  --surface: #ffffff;
  --surface-muted: #f3eee8;
  --ink: #343434;
  --ink-soft: #67625d;
  --ink-faint: #8b847d;
  --line: rgba(52, 52, 52, 0.1);
  --line-strong: rgba(52, 52, 52, 0.17);
  --header-bg: rgba(253, 246, 237, 0.84);
  --primary-contrast: #343434;
  --blue-wash: rgba(136, 187, 255, 0.18);
  --positive: #1fc16b;
  --negative: #fb3748;
  --deep-panel: #343434;
  --deep-panel-alt: #212121;
  --deep-text: #fdf6ed;
  --deep-muted: rgba(253, 246, 237, 0.68);
  --shadow-xs: 0 1px 2px rgba(52, 52, 52, 0.05);
  --shadow-sm: 0 10px 30px rgba(52, 52, 52, 0.08);
  --shadow-md: 0 24px 64px rgba(52, 52, 52, 0.14);
  --shadow-phone:
    0 36px 80px rgba(52, 52, 52, 0.24), 0 10px 24px rgba(52, 52, 52, 0.12);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --radius-xl: 42px;
  --shell: 1180px;
  --display:
    "Mulish", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --body: "Mulish", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

@media (prefers-color-scheme: dark) {
  :root {
    color-scheme: dark;
    --page: #343434;
    --page-alt: #2c2c2c;
    --surface: #212121;
    --surface-muted: #292929;
    --ink: #fdf6ed;
    --ink-soft: rgba(253, 246, 237, 0.72);
    --ink-faint: rgba(253, 246, 237, 0.48);
    --line: rgba(253, 246, 237, 0.1);
    --line-strong: rgba(253, 246, 237, 0.18);
    --header-bg: rgba(52, 52, 52, 0.86);
    --primary-contrast: #343434;
    --blue-wash: rgba(136, 187, 255, 0.14);
    --positive: #1fc16b;
    --negative: #fb3748;
    --deep-panel: #212121;
    --deep-panel-alt: #2c2c2c;
    --deep-text: #fdf6ed;
    --deep-muted: rgba(253, 246, 237, 0.68);
    --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.22);
    --shadow-sm: 0 12px 34px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 26px 70px rgba(0, 0, 0, 0.32);
    --shadow-phone:
      0 38px 88px rgba(0, 0, 0, 0.46), 0 12px 28px rgba(0, 0, 0, 0.3);
  }
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
  background: var(--page);
}

body {
  margin: 0;
  background: var(--page);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body,
a,
button {
  -webkit-tap-highlight-color: transparent;
}

img,
svg {
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--brand) 58%, transparent);
  outline-offset: 4px;
  border-radius: 8px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 200;
  padding: 10px 15px;
  border-radius: 10px;
  background: var(--ink);
  color: var(--page);
  font-weight: 700;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.section-shell {
  width: min(calc(100% - 48px), var(--shell));
  margin-inline: auto;
}

/* Header */
.site-header,
.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 74px;
  border-bottom: 1px solid var(--line);
  background: var(--header-bg);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
}

.nav-shell,
.topbar-inner {
  width: min(calc(100% - 48px), var(--shell));
  height: 100%;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  width: max-content;
  align-items: center;
}

.brand .wordmark {
  width: 116px;
  height: auto;
}

.wordmark--dark {
  display: none;
}

@media (prefers-color-scheme: dark) {
  .wordmark--light {
    display: none;
  }

  .wordmark--dark {
    display: block;
  }
}

.main-nav,
.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.main-nav a,
.nav-links a {
  padding: 8px 13px;
  border-radius: 10px;
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 600;
  transition:
    color 160ms ease,
    background 160ms ease;
}

.main-nav a:hover,
.nav-links a:hover,
.main-nav a[aria-current="page"],
.nav-links a[aria-current="page"] {
  background: var(--surface-muted);
  color: var(--ink);
}

.nav-cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 15px;
  border: 1px solid color-mix(in srgb, var(--brand) 32%, transparent);
  border-radius: 11px;
  background: var(--brand);
  color: var(--primary-contrast);
  box-shadow: 0 6px 18px rgba(52, 52, 52, 0.14);
  font-size: 0.88rem;
  font-weight: 750;
  transition:
    transform 160ms ease,
    background 160ms ease,
    box-shadow 160ms ease;
}

.nav-cta svg {
  width: 17px;
  height: 17px;
}

.nav-cta:hover {
  transform: translateY(-1px);
  background: var(--brand-bright);
  box-shadow: 0 9px 24px rgba(52, 52, 52, 0.18);
}

/* Hero */
main {
  overflow: clip;
}

.landing-hero {
  position: relative;
  min-height: 0;
  padding: 18px 0;
  background:
    radial-gradient(
      circle at 82% 32%,
      color-mix(in srgb, var(--brand) 18%, transparent) 0,
      transparent 27rem
    ),
    radial-gradient(
      circle at 10% 8%,
      color-mix(in srgb, var(--brand-bright) 10%, transparent) 0,
      transparent 22rem
    );
}

.landing-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.42;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), transparent 78%);
}

.hero-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(440px, 0.98fr);
  align-items: center;
  gap: clamp(42px, 7vw, 96px);
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding-bottom: 8px;
  transform: translateY(-24px);
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--ink-soft);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  line-height: 1.3;
  text-transform: uppercase;
}

@media (prefers-color-scheme: dark) {
  .eyebrow,
  .section-kicker {
    color: var(--brand-bright);
  }
}

.eyebrow span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 5px color-mix(in srgb, var(--brand) 14%, transparent);
}

.hero-copy h1 {
  max-width: 680px;
  margin: 22px 0 22px;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(3.25rem, 5.7vw, 5.15rem);
  font-weight: 760;
  letter-spacing: -0.065em;
  line-height: 0.98;
}

.hero-copy h1 span,
.section-heading h2 span {
  color: var(--brand-deep);
}

@media (prefers-color-scheme: dark) {
  .hero-copy h1 span,
  .section-heading h2 span {
    color: var(--brand-bright);
  }
}

.hero-copy h1 .hero-slogan-mark {
  width: 3.45em;
  max-width: 100%;
  display: block;
  margin-top: 0.08em;
  line-height: 0;
}

.hero-slogan-logo {
  width: 100%;
  height: auto;
}

.hero-slogan-logo--dark {
  display: none;
}

@media (prefers-color-scheme: dark) {
  .hero-slogan-logo--light {
    display: none;
  }

  .hero-slogan-logo--dark {
    display: block;
  }
}

.hero-copy > p {
  max-width: 590px;
  margin: 0;
  color: var(--ink-soft);
  font-size: clamp(1.04rem, 1.5vw, 1.18rem);
  line-height: 1.68;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 33px;
}

.button,
.btn-primary,
.btn-secondary,
.btn-email {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 13px;
  font-weight: 750;
  line-height: 1;
  transition:
    transform 170ms ease,
    box-shadow 170ms ease,
    background 170ms ease,
    border-color 170ms ease;
}

.button svg {
  width: 19px;
  height: 19px;
}

.button:hover,
.btn-primary:hover,
.btn-secondary:hover,
.btn-email:hover {
  transform: translateY(-2px);
}

.button--primary,
.btn-primary,
.btn-email {
  background: var(--brand);
  color: var(--primary-contrast);
  box-shadow: 0 11px 26px rgba(52, 52, 52, 0.15);
}

.button--primary:hover,
.btn-primary:hover,
.btn-email:hover {
  background: var(--brand-bright);
  box-shadow: 0 14px 32px rgba(52, 52, 52, 0.2);
}

.button--secondary,
.btn-secondary {
  border-color: var(--line-strong);
  background: color-mix(in srgb, var(--surface) 80%, transparent);
  color: var(--ink);
  box-shadow: var(--shadow-xs);
}

.button--secondary:hover,
.btn-secondary:hover {
  border-color: color-mix(in srgb, var(--brand) 45%, var(--line));
  background: var(--surface);
}

.hero-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  margin: 25px 0 0;
  padding: 0;
  color: var(--ink-soft);
  font-size: 0.83rem;
  list-style: none;
}

.hero-notes li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.hero-notes svg {
  width: 17px;
  height: 17px;
  padding: 2px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--positive) 13%, transparent);
  color: var(--positive);
}

/* App preview */
.hero-visual {
  position: relative;
  min-height: 650px;
  display: grid;
  place-items: center;
  perspective: 1200px;
  perspective-origin: 46% 45%;
}

.hero-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--brand) 16%, transparent);
  filter: blur(2px);
}

.hero-glow::after {
  content: "";
  position: absolute;
  inset: 56px;
  border: 1px solid color-mix(in srgb, var(--brand) 24%, transparent);
  border-radius: 50%;
}

.phone {
  position: relative;
  z-index: 2;
  width: 314px;
  padding: 8px;
  border: 1px solid color-mix(in srgb, #ffffff 35%, transparent);
  border-radius: 46px;
  background: #212121;
  box-shadow: var(--shadow-phone);
  transform: rotate(1.5deg);
}

.phone::before {
  content: "";
  position: absolute;
  z-index: 4;
  top: 14px;
  left: 50%;
  width: 88px;
  height: 24px;
  border-radius: 18px;
  background: #111111;
  transform: translateX(-50%);
}

.phone-frame {
  position: relative;
  height: 614px;
  overflow: hidden;
  padding: 12px 16px 0;
  border-radius: 38px;
  background: var(--surface-muted);
  color: var(--ink);
}

.phone-bar {
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3px;
  font-size: 0.62rem;
  font-weight: 800;
}

.phone-status svg {
  width: 19px;
  height: 13px;
}

.app-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 18px 1px 15px;
}

.app-header > div:first-child {
  display: flex;
  flex-direction: column;
}

.app-header strong {
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.app-overline {
  color: var(--ink-faint);
  font-size: 0.57rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.app-avatar {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 2px solid color-mix(in srgb, var(--brand) 35%, transparent);
  border-radius: 50%;
  background: var(--blue-wash);
  color: var(--brand-deep);
  font-size: 0.59rem;
  font-weight: 800;
}

.balance-card {
  min-height: 126px;
  padding: 18px;
  border-radius: 21px;
  background:
    radial-gradient(
      circle at 90% 0,
      rgba(255, 255, 255, 0.24),
      transparent 42%
    ),
    linear-gradient(145deg, #6babff, #4e8fe4);
  color: #071423;
  box-shadow: 0 14px 25px rgba(59, 123, 206, 0.2);
}

.balance-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
  color: rgba(7, 20, 35, 0.68);
  font-size: 0.67rem;
  font-weight: 700;
}

.balance-label svg {
  width: 16px;
  height: 16px;
}

.balance-card > strong {
  display: block;
  font-size: 1.7rem;
  letter-spacing: -0.045em;
  line-height: 1.25;
}

.balance-change {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 8px;
  font-size: 0.61rem;
  font-weight: 700;
}

.balance-change span {
  width: 17px;
  height: 17px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
}

.quick-actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 14px 0;
}

.quick-actions > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.quick-actions small {
  color: var(--ink-soft);
  font-size: 0.57rem;
  font-weight: 650;
}

.quick-icon {
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 500;
}

.quick-icon svg {
  width: 17px;
  height: 17px;
}

.quick-icon--income {
  background: color-mix(in srgb, var(--positive) 14%, transparent);
  color: var(--positive);
}

.quick-icon--expense {
  background: color-mix(in srgb, var(--negative) 14%, transparent);
  color: var(--negative);
}

.quick-icon--scan {
  background: var(--blue-wash);
  color: var(--brand-deep);
}

.spending-card {
  padding: 13px 14px 10px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: var(--surface);
  box-shadow: var(--shadow-xs);
}

.app-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.spending-card .app-row > div {
  display: flex;
  flex-direction: column;
}

.spending-card strong {
  font-size: 0.92rem;
  letter-spacing: -0.02em;
}

.period-pill {
  padding: 4px 7px;
  border-radius: 7px;
  background: var(--surface-muted);
  color: var(--ink-soft);
  font-size: 0.5rem;
  font-weight: 700;
}

.chart-bars {
  height: 64px;
  display: flex;
  align-items: end;
  gap: 7px;
  margin-top: 8px;
}

.chart-bars i {
  width: 100%;
  min-height: 8px;
  border-radius: 4px 4px 2px 2px;
  background: color-mix(in srgb, var(--brand) 30%, var(--surface-muted));
}

.chart-bars i:nth-child(1) {
  height: 36%;
}

.chart-bars i:nth-child(2) {
  height: 58%;
}

.chart-bars i:nth-child(3) {
  height: 44%;
}

.chart-bars i:nth-child(4) {
  height: 76%;
}

.chart-bars i:nth-child(5) {
  height: 62%;
}

.chart-bars i:nth-child(6) {
  height: 92%;
}

.chart-bars i:nth-child(7) {
  height: 68%;
}

.chart-bars i.is-active {
  background: var(--brand);
}

.chart-days {
  display: flex;
  justify-content: space-around;
  margin-top: 4px;
  color: var(--ink-faint);
  font-size: 0.44rem;
  font-weight: 700;
}

.recent-title {
  margin: 14px 1px 7px;
}

.recent-title strong {
  font-size: 0.71rem;
}

.recent-title span {
  color: var(--brand-deep);
  font-size: 0.52rem;
  font-weight: 700;
}

.transaction {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 9px;
  padding: 8px 1px;
}

.transaction-icon {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  background: color-mix(in srgb, #f4a15d 14%, transparent);
  color: #c36b25;
}

.transaction-icon svg {
  width: 17px;
  height: 17px;
}

.transaction div {
  display: flex;
  flex-direction: column;
}

.transaction strong,
.transaction b {
  font-size: 0.62rem;
}

.transaction small {
  color: var(--ink-faint);
  font-size: 0.48rem;
}

.app-tabbar {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 51px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  border-top: 1px solid var(--line);
  background: color-mix(in srgb, var(--surface) 92%, transparent);
  backdrop-filter: blur(10px);
}

.app-tabbar span {
  width: 29px;
  height: 29px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  color: var(--ink-faint);
}

.app-tabbar .is-current {
  background: var(--blue-wash);
  color: var(--brand-deep);
}

.app-tabbar svg {
  width: 17px;
  height: 17px;
}

.floating-card {
  position: absolute;
  z-index: 3;
  min-width: 184px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 13px;
  border: 1px solid color-mix(in srgb, var(--line-strong) 70%, transparent);
  border-radius: 15px;
  background: color-mix(in srgb, var(--surface) 90%, transparent);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(14px);
}

.floating-card > div {
  display: flex;
  flex-direction: column;
}

.floating-card small {
  color: var(--ink-faint);
  font-size: 0.58rem;
}

.floating-card strong {
  font-size: 0.74rem;
}

.floating-icon,
.scan-check {
  width: 35px;
  height: 35px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 11px;
  background: var(--blue-wash);
  color: var(--brand-deep);
}

.floating-icon svg,
.scan-check svg {
  width: 20px;
  height: 20px;
}

.scan-check {
  background: color-mix(in srgb, var(--positive) 14%, transparent);
  color: var(--positive);
}

.floating-card--budget {
  top: 92px;
  left: -12px;
}

.floating-card--scan {
  right: -14px;
  bottom: 98px;
}

/* Faithful mini-render of cheqea-mobile's current Home screen. */
.real-app {
  --app-bg: #fdf6ed;
  --app-surface: #ffffff;
  --app-ink: #343434;
  --app-muted: rgba(52, 52, 52, 0.62);
  --app-outline: #e2e2e2;
  height: 640px;
  padding: 12px 12px 0;
  background: var(--app-bg);
  color: var(--app-ink);
  font-family: "Mulish", sans-serif;
}

@media (prefers-color-scheme: dark) {
  .real-app {
    --app-bg: #343434;
    --app-surface: #212121;
    --app-ink: #fdf6ed;
    --app-muted: rgba(253, 246, 237, 0.62);
    --app-outline: #4a4a4a;
  }
}

/* Photo-based device: the screen is a real screenshot, the chassis is CSS.
   Edge thickness comes from stacked hard shadows so it follows the rounded
   corners; the phone is turned slightly so that left edge is visible. */
.phone--real {
  top: 14px;
  width: 300px;
  padding: 10px;
  border: 0;
  border-radius: 46px;
  background: #0c0d0f;
  /* Flat titanium side: one uniform band, a bright rim line at the front
     corner and a darker line at the back corner. Offsets are mostly
     horizontal so the depth shows on the side, not under the phone. */
  box-shadow:
    inset 0 0 0 2px #45484e,
    inset 0 0 0 3px #1a1c1f,
    1px 0.3px 0 #5a5d63,
    2px 0.6px 0 #3d4046,
    3px 0.9px 0 #3d4046,
    4px 1.2px 0 #3d4046,
    5px 1.5px 0 #3d4046,
    6px 1.8px 0 #3d4046,
    7px 2.1px 0 #3d4046,
    8px 2.4px 0 #3d4046,
    9px 2.7px 0 #3d4046,
    10px 3px 0 #2a2c31,
    6px 34px 40px rgba(23, 27, 32, 0.22),
    26px 70px 90px rgba(23, 27, 32, 0.3);
  transform: perspective(1400px) rotateY(-11deg) rotateX(3deg) rotateZ(-3deg)
    scale(0.9);
  transform-origin: center;
}

.phone--photo::before {
  z-index: 5;
  top: 19px;
  width: 92px;
  height: 27px;
  border-radius: 20px;
  background: #050506;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.06);
}

.phone--photo::after {
  content: none;
}

.phone-screenshot {
  z-index: 2;
  width: 100%;
  height: auto;
  aspect-ratio: 470 / 994;
  padding: 0;
  border: 0;
  border-radius: 36px;
  background: #1e1f22;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.phone-screenshot::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    118deg,
    rgba(255, 255, 255, 0.08),
    transparent 24%,
    transparent 72%,
    rgba(136, 187, 255, 0.035)
  );
  pointer-events: none;
}

.app-screen-shot {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: inherit;
  object-fit: cover;
  object-position: top center;
  user-select: none;
}

/* The visible right edge carries only the side (lock) button. */
.phone-side-buttons {
  position: absolute;
  z-index: 0;
  top: 150px;
  right: -12px;
  display: block;
}

.phone-side-buttons i {
  display: block;
  width: 4px;
  height: 78px;
  border-radius: 0 2px 2px 0;
  background: #3d4046;
  box-shadow:
    inset -1px 0 0 #5a5d63,
    -1px 0 0 #2a2c31;
}

.phone-reconstruction[hidden] {
  display: none;
}

.real-app .phone-bar {
  color: var(--app-ink);
}

.real-app .phone-status {
  display: flex;
  align-items: center;
  gap: 3px;
}

.real-app .phone-status svg {
  width: 12px;
  height: 10px;
}

.real-app .phone-status svg:nth-child(2) {
  width: 14px;
}

.phone-battery {
  position: relative;
  width: 17px;
  height: 9px;
  display: flex;
  align-items: center;
  padding: 1px;
  border: 1.1px solid currentColor;
  border-radius: 2.5px;
}

.phone-battery::after {
  content: "";
  position: absolute;
  top: 2px;
  right: -3px;
  width: 1.7px;
  height: 3px;
  border-radius: 0 1px 1px 0;
  background: currentColor;
}

.phone-battery i {
  width: 72%;
  height: 100%;
  border-radius: 1px;
  background: currentColor;
}

.real-app .app-header {
  height: 42px;
  display: grid;
  grid-template-columns: 72px 1fr 72px;
  align-items: center;
  margin: 7px 0 9px;
}

.real-app .app-header > .app-avatar:first-child {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: rgba(136, 187, 255, 0.15);
  color: var(--app-ink);
  font-family: "Mulish", sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
}

.app-phone-brand {
  display: grid;
  place-items: center;
}

.app-phone-wordmark {
  width: 67px;
  height: auto;
}

.app-phone-wordmark--dark {
  display: none;
}

@media (prefers-color-scheme: dark) {
  .app-phone-wordmark--light {
    display: none;
  }

  .app-phone-wordmark--dark {
    display: block;
  }
}

.app-header-tools {
  display: flex;
  justify-content: flex-end;
  gap: 7px;
  color: var(--app-ink);
}

.app-header-tools svg {
  width: 19px;
  height: 19px;
}

.real-app .balance-card {
  position: relative;
  min-height: 0;
  height: 150px;
  overflow: visible;
  padding: 14px 88px 12px 16px;
  border-radius: 20px;
  background: #88bbff;
  color: #ffffff;
  box-shadow: 0 9px 24px rgba(0, 109, 254, 0.2);
}

.real-app .balance-label {
  position: relative;
  z-index: 2;
  justify-content: flex-start;
  gap: 4px;
  margin: 0;
  color: #ffffff;
  font-size: 0.68rem;
  font-weight: 600;
}

.real-app .balance-label svg {
  width: 13px;
  height: 13px;
  opacity: 0.72;
}

.real-app .balance-card > strong {
  position: relative;
  z-index: 2;
  margin-top: 4px;
  color: #ffffff;
  font-family: "Mulish", sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.25;
  white-space: nowrap;
}

.balance-equivalent,
.balance-caption {
  position: relative;
  z-index: 2;
  display: block;
  white-space: nowrap;
}

.balance-equivalent {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.53rem;
  font-variant-numeric: tabular-nums;
}

.balance-caption {
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.49rem;
}

.balance-watermark {
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 20px;
  color: rgba(253, 246, 237, 0.16);
  clip-path: inset(0 round 20px);
  pointer-events: none;
}

.balance-mascot {
  position: absolute;
  z-index: 3;
  right: -27px;
  bottom: -28px;
  width: 128px;
  height: 122px;
  object-fit: contain;
}

.balance-dots {
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.balance-dots i {
  width: 6px;
  height: 6px;
  border-radius: 4px;
  background: color-mix(in srgb, var(--app-ink) 18%, transparent);
}

.balance-dots i.is-active {
  width: 14px;
  background: #88bbff;
}

.app-stat-chips {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.app-stat-chip {
  height: 54px;
  display: grid;
  grid-template-columns: 25px 1fr;
  align-items: center;
  gap: 8px;
  padding: 0 8px;
  border: 0.7px solid color-mix(in srgb, var(--app-ink) 25%, transparent);
  border-radius: 10px;
}

.stat-icon {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  color: #ffffff;
}

.stat-icon--income {
  background: #1fc16b;
}

.stat-icon--expense {
  background: #fb3748;
}

.stat-icon svg {
  width: 16px;
  height: 16px;
}

.app-stat-chip > div {
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.app-stat-chip div > span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--app-ink);
  font-size: 0.58rem;
  line-height: 1.25;
}

.app-stat-chip div > span b {
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 0.8;
}

.app-stat-chip strong {
  overflow: hidden;
  color: var(--app-ink);
  font-family: "Poppins", sans-serif;
  font-size: 0.63rem;
  font-weight: 600;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.app-quick-actions {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 12px;
}

.app-quick-action {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: var(--app-ink);
}

.app-quick-box {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: color-mix(in srgb, var(--app-ink) 7%, transparent);
}

.app-quick-action.is-accent .app-quick-box {
  background: #88bbff;
}

.app-quick-box svg,
.app-quick-box img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.app-quick-action small {
  width: 100%;
  overflow: hidden;
  color: var(--app-ink);
  font-size: 0.5rem;
  line-height: 1.25;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.app-section-title {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 13px 2px 7px;
  color: var(--app-ink);
}

.app-section-title svg {
  width: 15px;
  height: 15px;
  color: #88bbff;
}

.app-section-title strong {
  font-size: 0.68rem;
  font-weight: 700;
}

.app-account-card {
  width: 170px;
  display: grid;
  grid-template-columns: 29px 1fr;
  align-items: center;
  gap: 7px;
  padding: 9px 10px;
  border-radius: 12px;
  background: rgba(136, 187, 255, 0.1);
  color: var(--app-ink);
}

.currency-badge {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #88bbff;
  color: #343434;
  font-family: "Poppins", sans-serif;
  font-size: 0.74rem;
  font-weight: 700;
}

.app-account-card > div {
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.app-account-card small {
  color: var(--app-muted);
  font-size: 0.5rem;
}

.app-account-card strong {
  overflow: hidden;
  font-family: "Poppins", sans-serif;
  font-size: 0.67rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.account-more {
  grid-column: 1 / -1;
  display: block;
  padding: 5px 7px;
  border-radius: 7px;
  background: rgba(136, 187, 255, 0.12);
  color: var(--app-ink);
  font-size: 0.48rem;
  font-weight: 600;
}

.real-app .app-tabbar {
  right: 10px;
  bottom: 9px;
  left: 10px;
  height: 48px;
  padding-inline: 10px;
  border: 1px solid color-mix(in srgb, var(--app-ink) 9%, transparent);
  border-radius: 16px;
  background: color-mix(in srgb, var(--app-surface) 94%, transparent);
  box-shadow: 0 9px 24px rgba(52, 52, 52, 0.13);
}

.real-app .app-tabbar span {
  width: 31px;
  height: 31px;
  border-radius: 9px;
  color: color-mix(in srgb, var(--app-ink) 48%, transparent);
}

.real-app .app-tabbar .is-current {
  background: rgba(136, 187, 255, 0.2);
  color: var(--app-ink);
}

.real-app .app-tabbar .is-add {
  width: 37px;
  height: 34px;
  background: #88bbff;
  color: #343434;
}

.real-app .app-tabbar svg {
  width: 17px;
  height: 17px;
}

/* Product signal strip */
.signal-strip {
  position: relative;
  z-index: 5;
  border-block: 1px solid var(--line);
  background: var(--surface);
}

.signal-grid {
  min-height: 116px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
}

.signal-item {
  min-height: 56px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 30px;
  border-right: 1px solid var(--line);
}

.signal-item:first-child {
  padding-left: 0;
}

.signal-item:last-child {
  padding-right: 0;
  border-right: 0;
}

.signal-icon {
  width: 42px;
  height: 42px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 13px;
  background: var(--blue-wash);
  color: var(--brand-deep);
}

.signal-icon svg {
  width: 22px;
  height: 22px;
}

.signal-item > div {
  display: flex;
  flex-direction: column;
}

.signal-item strong {
  font-size: 0.88rem;
  letter-spacing: -0.01em;
}

.signal-item div span {
  color: var(--ink-soft);
  font-size: 0.77rem;
}

/* Shared section headings */
.section-heading {
  max-width: 720px;
  margin-bottom: 46px;
}

.section-heading--center {
  margin-inline: auto;
  text-align: center;
}

.section-heading h2,
.privacy-copy h2,
.download-card h2 {
  margin: 13px 0 17px;
  font-family: var(--display);
  font-size: clamp(2.15rem, 4vw, 3.5rem);
  font-weight: 740;
  letter-spacing: -0.052em;
  line-height: 1.08;
}

.section-heading > p {
  max-width: 610px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.02rem;
}

/* Features */
.features-section {
  padding: 116px 0 124px;
  background: var(--page);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
}

.feature-item {
  --feature-accent: var(--brand);
  position: relative;
  grid-column: span 4;
  min-height: 276px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  overflow: hidden;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background:
    radial-gradient(
      circle at 100% 0,
      color-mix(in srgb, var(--brand) 7%, transparent),
      transparent 42%
    ),
    var(--surface);
  box-shadow: var(--shadow-xs);
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.feature-item:nth-child(1) {
  grid-column: span 7;
  min-height: 320px;
}

.feature-item:nth-child(2) {
  grid-column: span 5;
  min-height: 320px;
}

.feature-item:hover {
  border-color: color-mix(in srgb, var(--brand) 32%, var(--line));
  box-shadow: var(--shadow-sm);
  transform: translateY(-4px);
}

.feature-item::after {
  content: "";
  position: absolute;
  right: -36px;
  bottom: -60px;
  width: 242px;
  height: 220px;
  background: color-mix(in srgb, var(--feature-accent) 11%, transparent);
  pointer-events: none;
  transform: rotate(-4deg);
  transform-origin: 132px 50%;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-24 0 264 220'%3E%3Cpath d='m20 120 65 65L220 20' fill='none' stroke='black' stroke-width='56' stroke-linecap='square' stroke-linejoin='miter'/%3E%3C/svg%3E")
    center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-24 0 264 220'%3E%3Cpath d='m20 120 65 65L220 20' fill='none' stroke='black' stroke-width='56' stroke-linecap='square' stroke-linejoin='miter'/%3E%3C/svg%3E")
    center / contain no-repeat;
}

.feature-item .icon {
  position: relative;
  z-index: 1;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  border: 1px solid color-mix(in srgb, var(--brand) 16%, transparent);
  border-radius: 14px;
  background: var(--blue-wash);
  color: var(--brand-deep);
}

.feature-item:nth-child(2) .icon {
  background: color-mix(in srgb, #9f78e8 12%, var(--surface));
  color: #7c55c1;
}

.feature-item:nth-child(2) {
  --feature-accent: #9f78e8;
}

.feature-item:nth-child(3) .icon {
  background: color-mix(in srgb, #26ad7c 12%, var(--surface));
  color: var(--positive);
}

.feature-item:nth-child(3) {
  --feature-accent: #26ad7c;
}

.feature-item:nth-child(4) .icon {
  background: color-mix(in srgb, #f2a15f 14%, var(--surface));
  color: #bd6628;
}

.feature-item:nth-child(4) {
  --feature-accent: #f2a15f;
}

.feature-item:nth-child(5) .icon {
  background: color-mix(in srgb, #df6f96 13%, var(--surface));
  color: #bf4b74;
}

.feature-item:nth-child(5) {
  --feature-accent: #df6f96;
}

.feature-item .icon svg {
  width: 25px;
  height: 25px;
}

.feature-item h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 9px;
  font-size: 1.16rem;
  letter-spacing: -0.025em;
}

.feature-item p {
  position: relative;
  z-index: 1;
  max-width: 440px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.feature-meta {
  position: relative;
  z-index: 1;
  margin-top: auto;
  padding-top: 24px;
  color: var(--ink-faint);
  font-size: 0.71rem;
  font-weight: 750;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Privacy and control */
.privacy-section {
  position: relative;
  overflow: hidden;
  padding: 118px 0;
  background:
    radial-gradient(
      circle at 76% 42%,
      rgba(90, 158, 255, 0.14),
      transparent 29rem
    ),
    var(--deep-panel);
  color: var(--deep-text);
}

.privacy-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    rgba(136, 187, 255, 0.17) 0.7px,
    transparent 0.7px
  );
  background-size: 22px 22px;
  mask-image: linear-gradient(
    90deg,
    transparent,
    rgba(0, 0, 0, 0.6),
    transparent
  );
}

.privacy-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(400px, 0.86fr);
  align-items: center;
  gap: clamp(58px, 9vw, 120px);
}

.privacy-copy {
  max-width: 610px;
}

.privacy-copy .section-kicker,
.download-card .section-kicker {
  color: var(--brand-bright);
}

.privacy-copy h2 {
  margin-top: 15px;
}

.privacy-copy > p {
  margin: 0;
  color: var(--deep-muted);
  font-size: 1.02rem;
}

.privacy-list {
  display: grid;
  gap: 0;
  margin: 34px 0 27px;
  padding: 0;
  list-style: none;
}

.privacy-list li {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 14px;
  padding: 17px 0;
  border-top: 1px solid rgba(216, 233, 249, 0.12);
}

.privacy-list li:last-child {
  border-bottom: 1px solid rgba(216, 233, 249, 0.12);
}

.privacy-list li > span {
  color: var(--brand-bright);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.privacy-list strong {
  display: block;
  margin-bottom: 3px;
  font-size: 0.93rem;
}

.privacy-list p {
  margin: 0;
  color: var(--deep-muted);
  font-size: 0.83rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--brand-bright);
  font-size: 0.87rem;
  font-weight: 750;
}

.text-link span {
  transition: transform 160ms ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.privacy-visual {
  position: relative;
  min-height: 470px;
  display: grid;
  place-items: center;
}

.security-orbit {
  position: absolute;
  border: 1px solid rgba(136, 187, 255, 0.13);
  border-radius: 50%;
}

.security-orbit--one {
  width: 440px;
  height: 440px;
}

.security-orbit--two {
  width: 330px;
  height: 330px;
  border-color: rgba(136, 187, 255, 0.2);
}

.shield-card {
  position: relative;
  z-index: 2;
  width: 274px;
  padding: 30px 26px 26px;
  border: 1px solid rgba(212, 231, 250, 0.15);
  border-radius: 26px;
  background: rgba(23, 48, 74, 0.84);
  box-shadow: 0 28px 70px rgba(3, 10, 18, 0.4);
  text-align: center;
  backdrop-filter: blur(16px);
}

.shield-icon {
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
  border: 1px solid rgba(136, 187, 255, 0.25);
  border-radius: 21px;
  background: rgba(90, 158, 255, 0.12);
  color: var(--brand-bright);
}

.shield-icon svg {
  width: 36px;
  height: 36px;
}

.shield-card > span {
  display: block;
  color: var(--deep-muted);
  font-size: 0.65rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.shield-card > strong {
  display: block;
  margin: 2px 0 22px;
  font-size: 1.4rem;
  letter-spacing: -0.035em;
}

.permission-list {
  display: grid;
  gap: 8px;
  text-align: left;
}

.permission-list > div {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 11px;
  border-radius: 10px;
  background: rgba(219, 234, 248, 0.06);
  color: var(--deep-muted);
  font-size: 0.72rem;
  font-weight: 650;
}

.permission-list > div > span {
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(95, 213, 167, 0.12);
  color: #74ddb4;
  font-size: 0.68rem;
}

.permission-list .is-disabled {
  opacity: 0.55;
}

.permission-list .is-disabled span {
  background: rgba(255, 125, 139, 0.1);
  color: #ff8d99;
}

.control-chip {
  position: absolute;
  z-index: 3;
  padding: 9px 13px;
  border: 1px solid rgba(212, 231, 250, 0.13);
  border-radius: 11px;
  background: rgba(19, 42, 65, 0.86);
  box-shadow: 0 13px 28px rgba(2, 9, 16, 0.28);
  color: var(--deep-muted);
  font-size: 0.69rem;
  font-weight: 700;
  backdrop-filter: blur(12px);
}

.control-chip::before {
  content: "";
  width: 6px;
  height: 6px;
  display: inline-block;
  margin-right: 7px;
  border-radius: 50%;
  background: #72dcb3;
  box-shadow: 0 0 0 4px rgba(114, 220, 179, 0.1);
}

.control-chip--top {
  top: 80px;
  right: 6px;
}

.control-chip--bottom {
  bottom: 69px;
  left: 0;
}

/* How it works */
.how-it-works {
  padding: 118px 0 124px;
  background: var(--page-alt);
}

.how-it-works .section-heading {
  max-width: 740px;
  margin-bottom: 60px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.step {
  min-width: 0;
  text-align: center;
}

.step-top {
  display: flex;
  align-items: center;
  width: 100%;
  margin-bottom: 27px;
}

.step:first-child .step-top::before,
.step:last-child .step-top::after {
  content: "";
  flex: 1;
}

.step:not(:first-child) .step-top::before {
  content: "";
  flex: 1;
  height: 1px;
  margin-right: 20px;
  background: linear-gradient(
    90deg,
    var(--line),
    color-mix(in srgb, var(--brand) 38%, var(--line))
  );
}

.step-number {
  width: 48px;
  height: 48px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid color-mix(in srgb, var(--brand) 26%, var(--line));
  border-radius: 14px;
  background: var(--surface);
  color: var(--brand-deep);
  box-shadow: var(--shadow-xs);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.06em;
}

.step-line {
  flex: 1;
  height: 1px;
  margin-left: 20px;
  background: linear-gradient(
    90deg,
    color-mix(in srgb, var(--brand) 38%, var(--line)),
    var(--line)
  );
}

.step-content h3 {
  margin: 0 0 9px;
  font-size: 1.07rem;
  letter-spacing: -0.02em;
}

.step-content p {
  max-width: 300px;
  margin: 0 auto;
  color: var(--ink-soft);
  font-size: 0.88rem;
}

/* Download CTA */
.download-section {
  padding: 94px 0;
  background: var(--page);
}

.download-card {
  position: relative;
  overflow: hidden;
  padding: 76px 48px;
  border: 1px solid rgba(204, 227, 248, 0.1);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(
      circle at 12% 0,
      rgba(136, 187, 255, 0.18),
      transparent 24rem
    ),
    linear-gradient(145deg, #343434, #212121);
  color: var(--deep-text);
  text-align: center;
  box-shadow: 0 28px 74px rgba(14, 40, 68, 0.17);
}

.download-card::before,
.download-card::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(136, 187, 255, 0.12);
  border-radius: 50%;
}

.download-card::before {
  width: 370px;
  height: 370px;
  top: -230px;
  right: -90px;
}

.download-card::after {
  width: 270px;
  height: 270px;
  right: -20px;
  bottom: -205px;
}

.download-glow {
  position: absolute;
  bottom: -170px;
  left: 50%;
  width: 560px;
  height: 330px;
  border-radius: 50%;
  background: rgba(90, 158, 255, 0.13);
  filter: blur(22px);
  transform: translateX(-50%);
}

.download-logo {
  position: relative;
  width: 42px;
  height: 42px;
  object-fit: contain;
  margin: 0 auto 22px;
}

.download-card .section-kicker,
.download-card h2,
.download-card > p,
.store-buttons,
.download-note {
  position: relative;
}

.download-card h2 {
  max-width: 690px;
  margin-inline: auto;
}

.download-card > p {
  margin: 0;
  color: var(--deep-muted);
  font-size: 1rem;
}

.store-buttons {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 29px;
}

.store-button {
  display: block;
  line-height: 0;
  transition:
    transform 170ms ease,
    filter 170ms ease;
}

.store-button:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
}

.store-badge {
  display: block;
  width: auto;
}

.store-badge--apple {
  height: 52px;
}

.store-badge--google {
  height: 68px;
  margin-block: -8px;
}

.download-note {
  display: block;
  margin-top: 18px;
  color: var(--deep-muted);
  font-size: 0.7rem;
}

/* Footer */
.site-footer,
.footer {
  border-top: 1px solid var(--line);
  background: var(--page);
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 70px;
  padding: 70px 0 55px;
}

.footer-brand p {
  max-width: 330px;
  margin: 18px 0 0;
  color: var(--ink-soft);
  font-size: 0.86rem;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.footer-nav > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
}

.footer-nav span {
  margin-bottom: 4px;
  color: var(--ink);
  font-size: 0.76rem;
  font-weight: 800;
}

.footer-nav a {
  color: var(--ink-soft);
  font-size: 0.8rem;
  transition: color 150ms ease;
}

.footer-nav a:hover {
  color: var(--brand-deep);
}

.footer-bottom {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
  color: var(--ink-faint);
  font-size: 0.72rem;
}

.footer-bottom p {
  margin: 0;
}

.compact-footer .footer-bottom a {
  color: var(--ink-soft);
  font-weight: 700;
}

.compact-footer .footer-bottom a:hover {
  color: var(--brand-deep);
}

/* Documents */
.wrap {
  width: min(calc(100% - 48px), 820px);
  margin-inline: auto;
}

.doc {
  padding-top: 76px;
  padding-bottom: 110px;
}

.doc-header {
  position: relative;
  margin-bottom: 48px;
  padding-bottom: 38px;
  border-bottom: 1px solid var(--line);
}

.doc-header::before {
  content: "Información legal";
  display: block;
  margin-bottom: 14px;
  color: var(--brand-deep);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.doc-header h1 {
  margin: 0 0 14px;
  font-family: var(--display);
  font-size: clamp(2.25rem, 6vw, 3.6rem);
  letter-spacing: -0.055em;
  line-height: 1.08;
}

.doc-header .lead {
  margin: 0 0 20px;
  color: var(--ink-soft);
  font-size: 1.03rem;
}

.revised {
  display: inline-flex;
  padding: 6px 10px;
  border: 1px solid color-mix(in srgb, var(--brand) 18%, var(--line));
  border-radius: 8px;
  background: var(--blue-wash);
  color: var(--brand-ink);
  font-size: 0.7rem;
  font-weight: 750;
}

@media (prefers-color-scheme: dark) {
  .revised {
    color: var(--brand-bright);
  }
}

.doc-body h2 {
  margin: 58px 0 17px;
  padding-top: 10px;
  color: var(--ink);
  font-family: var(--display);
  font-size: 1.58rem;
  letter-spacing: -0.035em;
  line-height: 1.25;
  scroll-margin-top: 90px;
}

.doc-body h3 {
  margin: 35px 0 11px;
  color: var(--ink);
  font-size: 1.06rem;
  letter-spacing: -0.015em;
}

.doc-body h4 {
  margin: 27px 0 9px;
  font-size: 0.97rem;
}

.doc-body p {
  margin: 0 0 17px;
  color: var(--ink-soft);
  font-size: 0.94rem;
  line-height: 1.78;
}

.doc-body ul,
.doc-body ol {
  margin: 0 0 22px;
  padding-left: 21px;
  color: var(--ink-soft);
}

.doc-body li {
  margin-bottom: 9px;
  padding-left: 5px;
  font-size: 0.94rem;
}

.doc-body li::marker {
  color: var(--brand);
}

.doc-body a {
  color: var(--brand-deep);
  font-weight: 650;
}

@media (prefers-color-scheme: dark) {
  .doc-body a {
    color: var(--brand-bright);
  }
}

.contact-box,
.toc,
.support-contact {
  margin: 27px 0;
  padding: 23px 25px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--shadow-xs);
}

.contact-box p {
  margin: 3px 0;
}

.section-lead {
  height: 1px;
  margin-top: 60px;
  background: var(--line);
}

.back-top {
  display: inline-flex;
  margin-top: 35px;
  color: var(--brand-deep);
  font-size: 0.8rem;
  font-weight: 750;
}

/* Support */
.support-hero {
  padding: 86px 0 52px;
  text-align: center;
}

.support-icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  margin: 0 auto 22px;
  border: 1px solid color-mix(in srgb, var(--brand) 20%, var(--line));
  border-radius: 19px;
  background: var(--blue-wash);
  color: var(--brand-deep);
}

.support-icon svg {
  width: 30px;
  height: 30px;
}

.support-hero h1 {
  margin: 0 0 12px;
  font-family: var(--display);
  font-size: clamp(2.5rem, 7vw, 4rem);
  letter-spacing: -0.055em;
  line-height: 1;
}

.support-hero .lead {
  max-width: 560px;
  margin: 0 auto;
  color: var(--ink-soft);
  font-size: 1rem;
}

.support-contact {
  max-width: 620px;
  margin: 0 auto 38px;
  padding: 35px;
  text-align: center;
}

.support-layout {
  width: min(calc(100% - 48px), 960px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  gap: 20px;
  padding-bottom: 30px;
}

.support-layout .support-contact {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 38px;
  text-align: left;
}

.support-card-icon {
  width: 47px;
  height: 47px;
  display: grid;
  place-items: center;
  margin-bottom: 23px;
  border-radius: 14px;
  background: var(--blue-wash);
  color: var(--brand-deep);
}

.support-card-icon svg {
  width: 24px;
  height: 24px;
}

.support-label {
  margin: 0 0 14px;
  color: var(--ink-soft);
  font-size: 0.83rem;
}

.support-layout .support-label {
  margin-bottom: 7px;
  color: var(--brand-deep);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.support-contact h2,
.support-guide h2,
.support-legal h2 {
  margin: 0 0 10px;
  font-family: var(--display);
  font-size: 1.55rem;
  letter-spacing: -0.035em;
  line-height: 1.2;
}

.support-contact > p:not(.support-label):not(.support-note) {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.87rem;
}

.support-contact .btn-email {
  width: 100%;
  justify-content: space-between;
  margin-top: 28px;
  font-size: 0.86rem;
}

.btn-email svg {
  width: 18px;
  height: 18px;
}

.support-note {
  max-width: 480px;
  margin: 20px auto 0;
  color: var(--ink-soft);
  font-size: 0.79rem;
}

.support-layout .support-note {
  margin: 14px 0 0;
  text-align: center;
}

.support-guide {
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface-muted);
}

.support-guide .section-kicker {
  margin-bottom: 8px;
  font-size: 0.66rem;
}

.support-guide ol {
  display: grid;
  gap: 0;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.support-guide li {
  display: grid;
  grid-template-columns: 31px 1fr;
  gap: 12px;
  padding: 13px 0;
  border-top: 1px solid var(--line);
}

.support-guide li > span {
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  background: var(--surface);
  color: var(--brand-deep);
  box-shadow: var(--shadow-xs);
  font-size: 0.65rem;
  font-weight: 800;
}

.support-guide strong {
  display: block;
  margin: 2px 0 2px;
  font-size: 0.82rem;
}

.support-guide li p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.74rem;
  line-height: 1.5;
}

.privacy-reminder {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin: 15px 0 0;
  padding: 11px 12px;
  border-radius: 10px;
  background: var(--surface);
  color: var(--ink-soft);
  font-size: 0.69rem;
}

.privacy-reminder svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  margin-top: 1px;
  color: var(--positive);
}

.support-legal {
  width: min(calc(100% - 48px), 960px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 90px;
  padding: 25px 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--shadow-xs);
}

.support-legal > div:first-child > span {
  color: var(--ink-faint);
  font-size: 0.66rem;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.support-legal h2 {
  margin: 3px 0 0;
  font-size: 1rem;
}

.support-legal > div:last-child {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.support-legal a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 9px;
  color: var(--ink-soft);
  font-size: 0.72rem;
  font-weight: 700;
  transition:
    border-color 150ms ease,
    color 150ms ease,
    background 150ms ease;
}

.support-legal a:hover {
  border-color: color-mix(in srgb, var(--brand) 28%, var(--line));
  background: var(--blue-wash);
  color: var(--brand-deep);
}

.support-more {
  margin: 0 0 70px;
  text-align: center;
}

.support-more a {
  margin: 0 9px;
  color: var(--brand-deep);
  font-size: 0.83rem;
  font-weight: 700;
}

/* 404 */
.error-page {
  min-height: calc(100vh - 145px);
  display: grid;
  place-items: center;
  padding: 70px 24px;
  background: radial-gradient(
    circle at 50% 42%,
    color-mix(in srgb, var(--brand) 13%, transparent),
    transparent 25rem
  );
  text-align: center;
}

.error-content {
  max-width: 620px;
}

.error-content h1 {
  margin: 0;
  color: var(--brand);
  font-family: var(--display);
  font-size: clamp(6rem, 18vw, 11rem);
  font-weight: 800;
  letter-spacing: -0.09em;
  line-height: 0.8;
}

.error-content h2 {
  margin: 35px 0 10px;
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  letter-spacing: -0.04em;
}

.error-content p {
  margin: 0 0 27px;
  color: var(--ink-soft);
}

/* Compatibility footer used until all secondary pages share new markup. */
.footer {
  padding: 30px 24px;
  color: var(--ink-faint);
  text-align: center;
  font-size: 0.75rem;
}

.footer .footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 20px;
  margin-bottom: 8px;
}

.footer a {
  color: var(--ink-soft);
  font-weight: 650;
}

.footer p {
  margin: 8px 0 0;
}

/* Responsive */
@media (max-width: 1020px) {
  .hero-layout {
    grid-template-columns: minmax(0, 0.92fr) minmax(390px, 1.08fr);
    gap: 34px;
  }

  .hero-copy h1 {
    font-size: clamp(3.1rem, 7vw, 4.3rem);
  }

  .floating-card--budget {
    left: -2px;
  }

  .floating-card--scan {
    right: -2px;
  }

  .privacy-grid {
    grid-template-columns: minmax(0, 1fr) minmax(350px, 0.8fr);
    gap: 48px;
  }
}

@media (max-width: 820px) {
  .section-shell,
  .nav-shell,
  .topbar-inner,
  .wrap {
    width: min(calc(100% - 36px), var(--shell));
  }

  .site-header,
  .topbar {
    height: 68px;
  }

  .nav-shell,
  .topbar-inner {
    grid-template-columns: 1fr auto;
  }

  .main-nav,
  .nav-links {
    display: none;
  }

  .landing-hero {
    padding: 66px 0 80px;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .hero-copy {
    max-width: 660px;
    text-align: center;
    margin-inline: auto;
    transform: none;
  }

  .eyebrow {
    justify-content: center;
  }

  .hero-copy > p {
    margin-inline: auto;
  }

  .hero-slogan-mark {
    margin-inline: auto;
  }

  .hero-actions,
  .hero-notes {
    justify-content: center;
  }

  .hero-visual {
    width: min(100%, 560px);
    margin-inline: auto;
  }

  .signal-grid {
    min-height: 0;
    grid-template-columns: 1fr;
    padding: 18px 0;
  }

  .signal-item,
  .signal-item:first-child,
  .signal-item:last-child {
    min-height: 78px;
    padding: 12px 10px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .signal-item:last-child {
    border-bottom: 0;
  }

  .features-section,
  .privacy-section,
  .how-it-works {
    padding: 88px 0;
  }

  .feature-item,
  .feature-item:nth-child(1),
  .feature-item:nth-child(2) {
    grid-column: span 6;
    min-height: 290px;
  }

  .feature-item:nth-child(5) {
    grid-column: span 12;
  }

  .privacy-grid {
    grid-template-columns: 1fr;
  }

  .privacy-copy {
    margin-inline: auto;
  }

  .privacy-visual {
    width: min(100%, 520px);
    margin-inline: auto;
  }

  .steps {
    gap: 18px;
  }

  .step-top {
    justify-content: center;
  }

  .step-line,
  .step:not(:first-child) .step-top::before,
  .step:first-child .step-top::before,
  .step:last-child .step-top::after {
    display: none;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .support-layout {
    width: min(calc(100% - 36px), 640px);
    grid-template-columns: 1fr;
  }

  .support-legal {
    width: min(calc(100% - 36px), 640px);
  }
}

@media (max-width: 580px) {
  .section-shell,
  .nav-shell,
  .topbar-inner,
  .wrap {
    width: min(calc(100% - 28px), var(--shell));
  }

  .brand .wordmark {
    width: 102px;
  }

  .nav-cta {
    padding: 8px 12px;
    font-size: 0.82rem;
  }

  .nav-cta svg {
    display: none;
  }

  .landing-hero {
    min-height: 0;
    padding-top: 57px;
  }

  .landing-hero::before {
    background-size: 44px 44px;
  }

  .hero-copy h1 {
    margin-top: 18px;
    font-size: clamp(2.85rem, 14vw, 4rem);
    line-height: 0.98;
  }

  .hero-copy > p {
    font-size: 1rem;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .hero-notes {
    display: grid;
    justify-content: start;
    width: max-content;
    max-width: 100%;
    margin-inline: auto;
    text-align: left;
  }

  .hero-visual {
    min-height: 540px;
    transform: scale(0.88);
    margin-block: -34px;
  }

  .hero-glow {
    width: 410px;
    height: 410px;
  }

  .floating-card {
    min-width: 167px;
  }

  .floating-card--budget {
    top: 73px;
    left: -32px;
  }

  .floating-card--scan {
    right: -34px;
    bottom: 68px;
  }

  .section-heading {
    margin-bottom: 34px;
  }

  .section-heading h2,
  .privacy-copy h2,
  .download-card h2 {
    font-size: clamp(2rem, 10vw, 2.75rem);
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .feature-item,
  .feature-item:nth-child(1),
  .feature-item:nth-child(2),
  .feature-item:nth-child(5) {
    grid-column: 1;
    min-height: 260px;
    padding: 25px;
  }

  .privacy-grid {
    gap: 44px;
  }

  .privacy-visual {
    min-height: 410px;
    transform: scale(0.88);
    margin-block: -24px;
  }

  .steps {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .step-top {
    margin: 0 0 12px;
  }

  .step-content p {
    max-width: none;
  }

  .download-section {
    padding: 60px 0;
  }

  .download-card {
    padding: 56px 21px;
    border-radius: 29px;
  }

  .store-buttons {
    flex-direction: column;
    align-items: center;
  }

  .store-button {
    width: auto;
  }

  .footer-main {
    padding: 55px 0 40px;
  }

  .footer-nav {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .footer-nav > div:last-child {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    min-height: 90px;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    text-align: center;
  }

  .doc {
    padding-top: 56px;
    padding-bottom: 80px;
  }

  .doc-header {
    margin-bottom: 35px;
  }

  .doc-header h1 {
    font-size: 2.35rem;
  }

  .doc-body h2 {
    margin-top: 45px;
    font-size: 1.4rem;
  }

  .contact-box,
  .support-contact {
    padding: 21px;
  }

  .support-hero {
    padding: 66px 0 42px;
  }

  .support-layout,
  .support-legal {
    width: min(calc(100% - 28px), 640px);
  }

  .support-layout .support-contact,
  .support-guide {
    padding: 27px 23px;
  }

  .support-legal {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 65px;
  }

  .support-legal > div:last-child {
    width: 100%;
  }

  .support-legal a {
    width: 100%;
    justify-content: space-between;
  }
}

@media (max-width: 390px) {
  .hero-visual {
    width: 100%;
    transform: scale(0.79);
    margin-block: -58px;
  }

  .footer-nav {
    grid-template-columns: 1fr;
  }

  .footer-nav > div:last-child {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
