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

    :root {
      --bg:        #F0EDE8;
      --bg2:       #E8E4DE;
      --bg3:       #DDD9D2;
      --ink:       #1a1814;
      --ink2:      rgba(26,24,20,0.55);
      --ink3:      rgba(26,24,20,0.28);
      --accent:    #3d52a0;
      --accent-h:  #2d3d7a;
      --accent-bg: rgba(61,82,160,0.08);
      --border:    rgba(26,24,20,0.10);
      --border-md: rgba(26,24,20,0.18);
      --radius-sm: 8px;
      --font-serif:'Fraunces', serif;
      --font-sans: 'DM Sans', sans-serif;
      --font-mono: 'DM Mono', monospace;
      --transition:.18s ease;
    }

    html { scroll-behavior: smooth; }
    body {
      font-family: var(--font-sans);
      background: var(--bg);
      color: var(--ink);
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }

    /* ═══════════════════════════
       TOP BAR
    ═══════════════════════════ */
    .top-bar {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      display: flex; align-items: center; justify-content: space-between;
      padding: 14px 40px;
      background: #2d3d7a;
      border-bottom: 0.5px solid rgba(255,255,255,0.10);
    }
    .top-wordmark {
      font-family: var(--font-serif); font-size: 22px; font-weight: 500;
      color: #fff; letter-spacing: 0.5px; text-decoration: none;
    }
    .top-bar-right { display: flex; align-items: center; gap: 8px; }
    .top-bar.scrolled {
      background: rgba(45,61,122,0.88);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border-bottom-color: rgba(255,255,255,0.12);
    }

    .btn-try {
      display: inline-flex; align-items: center;
      height: 30px; padding: 0 14px;
      background: rgba(255,255,255,0.15);
      border: 0.5px solid rgba(255,255,255,0.30);
      border-radius: var(--radius-sm);
      color: #fff; font-family: var(--font-sans);
      font-size: 12px; font-weight: 400; letter-spacing: 0.01em;
      text-decoration: none; white-space: nowrap;
      cursor: pointer;
      transition: background var(--transition);
    }
    .btn-try:hover { background: rgba(255,255,255,0.25); }

    .lang-switcher {
      display: flex; gap: 2px; border-radius: var(--radius-sm); padding: 3px;
      background: rgba(255,255,255,0.10); border: 0.5px solid rgba(255,255,255,0.18);
    }
    .sw-btn {
      font-family: var(--font-sans); font-size: 12px; font-weight: 400;
      color: rgba(255,255,255,0.60); background: transparent; border: none;
      border-radius: 5px; padding: 4px 10px; cursor: pointer;
      transition: color var(--transition), background var(--transition);
    }
    .sw-btn:hover { color: #fff; }
    .sw-btn.active { background: rgba(255,255,255,0.20); color: #fff; }

    /* ═══════════════════════════
       BUTTONS
    ═══════════════════════════ */
    .btn {
      display: inline-flex; align-items: center; gap: 8px;
      font-family: var(--font-sans); font-size: 14px; font-weight: 400;
      text-decoration: none; border-radius: var(--radius-sm);
      padding: 9px 20px; cursor: pointer; border: 0.5px solid transparent;
      transition: background var(--transition), border-color var(--transition), transform var(--transition);
      letter-spacing: 0.01em; white-space: nowrap;
    }
    .btn:active { transform: scale(.98); }
    .btn-primary { background: var(--accent); color: #fff; }
    .btn-primary:hover { background: var(--accent-h); }

    .btn svg { width: 14px; height: 14px; flex-shrink: 0; opacity: .80; }

    /* ═══════════════════════════
       LAYOUT
    ═══════════════════════════ */
    .container { max-width: 920px; margin: 0 auto; padding: 0 40px; }

    .section-heading {
      font-family: var(--font-serif); font-size: clamp(28px,3.2vw,38px);
      font-weight: 500; color: var(--ink);
      text-align: center; margin-bottom: 52px; line-height: 1.2;
    }

    /* ═══════════════════════════
       HERO
    ═══════════════════════════ */
    #hero {
      min-height: 100svh;
      background-color: #2d3d7a;
      display: flex; align-items: center;
      padding: 100px 40px 80px;
      position: relative; overflow: hidden;
    }
    .hero-grid {
      position: absolute; inset: 0; pointer-events: none; opacity: 0.07;
      background-image:
        linear-gradient(#E2DDD4 1px, transparent 1px),
        linear-gradient(90deg, #E2DDD4 1px, transparent 1px);
      background-size: 60px 60px;
    }
    #hero::before {
      content: ''; position: absolute; inset: 0; pointer-events: none;
      background: radial-gradient(ellipse 55% 50% at 18% 28%, rgba(255,255,255,0.06) 0%, transparent 70%);
    }
    .hero-inner {
      max-width: 920px; margin: 0 auto; width: 100%;
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 72px; align-items: center; position: relative;
    }
    .hero-left { display: flex; flex-direction: column; align-items: flex-start; }
    .hero-tagline {
      font-family: var(--font-serif); font-size: clamp(34px,4.2vw,52px);
      font-weight: 500; color: #E2DDD4; line-height: 1.15;
      letter-spacing: -0.01em; margin-bottom: 28px;
    }
    .hero-tagline .white { color: #fff; }
    .hero-bullets {
      list-style: none; margin-bottom: 36px;
      display: flex; flex-direction: column; gap: 10px;
    }
    .hero-bullets li {
      display: flex; align-items: flex-start; gap: 10px;
      font-size: 14px; font-weight: 300; color: #E2DDD4; line-height: 1.4;
    }
    .hero-bullets li::before {
      content: ''; width: 5px; height: 5px; border-radius: 50%;
      background: #E2DDD4; flex-shrink: 0; margin-top: 5px; opacity: 0.6;
    }

    /* Prompt box — identical to /chat home screen (day mode) */
    .hero-prompt-wrap { width: 100%; max-width: 440px; }

    .prompt-box {
      width: 100%;
      background: #f7f5f2;
      border: 1.5px solid #c8c4be;
      border-radius: 100px;
      display: flex; align-items: center;
      gap: 8px; padding: 10px 10px 10px 22px;
      transition: border-color .18s ease;
    }
    .prompt-box:focus-within {
      border-color: #9a9690;
    }
    .prompt-textarea {
      flex: 1; background: transparent; border: none; outline: none;
      line-height: 1.5; color: #1a1814; font-size: 16px;
      font-family: var(--font-sans); font-weight: 400;
      min-height: 22px; resize: none; overflow: hidden;
    }
    .prompt-textarea::placeholder { color: #b0aca6; }
    .prompt-send {
      width: 34px; height: 34px; border-radius: 50%;
      background: var(--accent); color: #fff;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0; cursor: pointer; border: none;
      transition: background var(--transition), transform var(--transition);
      text-decoration: none;
    }
    .prompt-send:hover  { background: var(--accent-h); }
    .prompt-send:active { transform: scale(.96); }
    .prompt-send svg { width: 15px; height: 15px; }

    /* Right side placeholder */
    .hero-right {
      height: 380px;
      background: #F0EDE8;
      border: 0.5px solid rgba(26,24,20,0.10);
      border-radius: 12px;
      overflow: hidden;
      isolation: isolate;
      position: relative;
    }

    /* Chat panel — base layer, all panels are absolute siblings */
    .hc-chat-panel {
      position: absolute; inset: 0;
      display: flex; flex-direction: column;
      z-index: 1;
    }

    /* Chat header bar */
    .hc-header {
      height: 44px; flex-shrink: 0;
      background: #F0EDE8;
      border-bottom: 0.5px solid rgba(26,24,20,0.08);
      display: flex; align-items: center; padding: 0 16px; gap: 8px;
    }
    .hc-header-dot {
      width: 8px; height: 8px; border-radius: 50%;
      background: rgba(26,24,20,0.10);
    }
    .hc-header-title {
      font-family: var(--font-sans); font-size: 13px; font-weight: 500;
      color: rgba(26,24,20,0.40); flex: 1;
      transition: color .3s ease;
    }
    .hc-header-title.named { color: rgba(26,24,20,0.75); }

    /* Input: hide real input, show placeholder after send */
    .hc-prompt-text { transition: opacity .2s ease; }
    .hc-prompt-placeholder {
      flex: 1; font-size: 12px; color: rgba(26,24,20,0.28);
      font-family: var(--font-sans); overflow: hidden; white-space: nowrap;
      min-width: 0; display: none;
    }
    .hc-input-area.sent .hc-prompt-text { display: none; }
    .hc-input-area.sent .hc-prompt-placeholder { display: block; }

    /* Messages area */
    .hc-messages {
      flex: 1; overflow: hidden;
      padding: 16px 16px 10px;
      display: flex; flex-direction: column; gap: 10px;
      position: relative;
    }

    /* User bubble */
    .hc-msg-user {
      align-self: flex-end;
      background: #e0dcd6;
      color: #1a1814; font-size: 13px; line-height: 1.5;
      padding: 8px 14px; border-radius: 14px;
      max-width: 85%;
      opacity: 0; transform: translateY(6px);
      transition: opacity .3s ease, transform .3s ease;
    }
    .hc-msg-user.visible { opacity: 1; transform: translateY(0); }

    /* Thinking line */
    .hc-thinking {
      align-self: flex-start;
      font-family: var(--font-mono); font-size: 12px;
      color: var(--accent); letter-spacing: 0.01em;
      padding: 2px 0;
      opacity: 0; transition: opacity .3s ease;
      display: flex; align-items: center;
    }
    .hc-thinking.visible { opacity: 1; }
    .hc-thinking::after {
      content: '';
      display: inline-block; width: 4px; height: 4px;
      margin-left: 5px; border-radius: 50%;
      background: var(--accent);
      animation: blink 1.2s infinite; vertical-align: middle;
    }

    /* Map card */
    .hc-map-card {
      align-self: flex-start;
      width: 100%; max-width: 90%;
      background: #E8E4DE;
      border: 0.5px solid rgba(26,24,20,0.12);
      border-radius: 8px;
      padding: 11px 14px;
      display: flex; align-items: center; gap: 12px;
      opacity: 0; transform: translateY(4px);
      transition: opacity .4s ease, transform .4s ease;
    }
    .hc-map-card.visible { opacity: 1; transform: translateY(0); }
    .hc-map-card-icon {
      font-size: 22px !important; color: rgba(26,24,20,0.40);
      flex-shrink: 0; font-family: 'Material Icons'; font-style: normal;
    }
    .hc-map-card-info { flex: 1; min-width: 0; }
    .hc-map-card-title {
      font-size: 13px; font-weight: 600; color: #1a1814;
      white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
      margin-bottom: 2px;
    }
    .hc-map-card-sub { font-size: 11px; color: rgba(26,24,20,0.45); }
    .hc-map-card-btn {
      flex-shrink: 0; height: 28px; padding: 0 10px;
      background: transparent;
      border: 0.5px solid #c8c4be;
      border-radius: 6px; color: #5a5650;
      font-family: var(--font-sans); font-size: 11px;
      letter-spacing: 0.04em; cursor: default;
      transition: background .12s ease, transform .1s ease;
    }
    .hc-map-card-btn.clicked {
      background: rgba(0,0,0,0.06);
      transform: scale(.93);
    }

    /* Input area */
    .hc-input-area {
      flex-shrink: 0; padding: 8px 12px 12px;
    }
    .hc-prompt-box {
      background: #E8E4DE;
      border: 1.5px solid transparent;
      border-radius: 100px;
      display: flex; align-items: center;
      gap: 8px; padding: 7px 7px 7px 16px;
    }
    .hc-prompt-text {
      flex: 1; font-size: 12px; color: rgba(26,24,20,0.40);
      font-family: var(--font-sans); overflow: hidden; white-space: nowrap;
      min-width: 0;
    }
    .hc-prompt-cursor {
      display: inline-block; width: 1.5px; height: 12px;
      background: #3d52a0; vertical-align: middle; margin-left: 1px;
      animation: blink .9s step-end infinite;
    }
    .hc-send {
      width: 26px; height: 26px; border-radius: 50%;
      background: var(--accent); border: none;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0; cursor: default;
      transition: transform .12s ease;
    }
    .hc-send.clicked { transform: scale(.82); }
    .hc-send svg { width: 11px; height: 11px; }

    /* Map panel — slides in after VER click */
    .hc-map-panel {
      position: absolute; inset: 0;
      background: #F0EDE8;
      display: flex; flex-direction: column;
      clip-path: inset(0 0 0 100%);
      transition: clip-path .35s cubic-bezier(.4,0,.2,1);
      z-index: 10;
    }
    .hc-map-panel.visible { clip-path: inset(0 0 0 0%); }

    .hc-map-topbar {
      height: 44px; flex-shrink: 0;
      background: #F0EDE8;
      border-bottom: 0.5px solid rgba(26,24,20,0.08);
      display: flex; align-items: center;
      padding: 0 12px; gap: 8px;
      transition: opacity 0s;
    }

    .hc-map-dots { display: flex; align-items: center; gap: 5px; }
    .hc-map-dot {
      width: 8px; height: 8px; border-radius: 50%;
      background: rgba(26,24,20,0.10);
    }
    .hc-map-topbar-title {
      font-family: var(--font-sans); font-size: 13px; font-weight: 500;
      color: rgba(26,24,20,0.75); flex: 1;
    }
    .hc-export-btn {
      flex-shrink: 0; height: 24px; padding: 0 10px;
      background: transparent; border: 0.5px solid #c8c4be;
      border-radius: 6px; color: #5a5650;
      font-family: var(--font-sans); font-size: 10px; font-weight: 500;
      letter-spacing: 0.08em; cursor: default; text-transform: uppercase;
      transition: background .12s ease, transform .1s ease;
    }
    .hc-export-btn.clicked { background: rgba(0,0,0,0.06); transform: scale(.93); }

    /* ── JPEG export result panel ── */
    .hc-jpeg-panel {
      position: absolute; inset: 0;
      border-radius: 12px;
      display: flex; align-items: center; justify-content: center;
      background: rgba(10, 10, 10, 0.52);
      backdrop-filter: blur(3px);
      -webkit-backdrop-filter: blur(3px);
      opacity: 0; pointer-events: none;
      transition: opacity 0.35s ease;
      z-index: 500;
    }
    .hc-jpeg-panel.visible { opacity: 1; pointer-events: auto; }
    /* ── Shutter flash effect ── */
    .hc-shutter {
      position: absolute; inset: 0;
      background: #fff;
      opacity: 0; pointer-events: none;
      border-radius: 12px;
      z-index: 600;
      transition: opacity 0.08s ease;
    }
    .hc-shutter.flash {
      opacity: 0.75;
      transition: opacity 0s;
    }

    /* The A4-proportioned sheet floating in the center */
    .hc-jpeg-sheet {
      height: 300px;
      aspect-ratio: 1 / 1.414;
      background: #d8d4cc;
      border-radius: 4px;
      border: 1px solid rgba(255,255,255,0.55);
      box-shadow: 0 8px 32px rgba(0,0,0,0.32), 0 2px 8px rgba(0,0,0,0.16);
      display: flex; flex-direction: column;
      overflow: hidden;
    }
    .hc-jpeg-topbar {
      display: flex; align-items: center;
      padding: 0 10px; height: 30px; flex-shrink: 0;
      background: #F0EDE8;
      border-bottom: 0.5px solid rgba(26,24,20,0.08);
    }
    .hc-jpeg-filename {
      display: flex; align-items: center; gap: 6px;
      font-family: var(--font-sans); font-size: 11px;
      font-weight: 500; color: #3a3834;
    }
    .hc-jpeg-icon { font-size: 14px; color: #888680; flex-shrink: 0; line-height: 1; }
    .hc-jpeg-area {
      flex: 1; min-height: 0; position: relative; overflow: hidden;
    }
    #hc-jpeg-leaflet {
      position: absolute; inset: 0;
      z-index: 1;
    }
    #hc-jpeg-svg {
      position: absolute; inset: 0;
      width: 100%; height: 100%; pointer-events: none;
      z-index: 450;
    }

    .hc-map-area {
      flex: 1; position: relative; overflow: hidden;
    }
    #hc-leaflet {
      width: 100%; height: 100%;
      background: #d8d4cc; /* fallback when tiles don't load */
    }
    #hc-leaflet .leaflet-control-attribution,
    #hc-jpeg-leaflet .leaflet-control-attribution { display: none !important; }
    /* SVG overlay on top of leaflet */
    #hc-map-svg {
      position: absolute; inset: 0;
      width: 100%; height: 100%;
      pointer-events: none; z-index: 400;
    }

    /* Legend box — bottom right */
    .hc-map-legend {
      position: absolute; bottom: 10px; right: 10px;
      background: rgba(240,237,232,0.92);
      border: 0.5px solid #c8c4be;
      border-radius: 6px; padding: 8px 10px;
      box-shadow: 0 1px 4px rgba(0,0,0,0.08);
      display: flex; flex-direction: column; gap: 5px;
      min-width: 100px;
    }
    .hc-legend-row {
      display: flex; align-items: center; gap: 7px;
      font-family: var(--font-sans); font-size: 10px;
      color: rgba(26,24,20,0.65);
    }
    .hc-legend-swatch {
      width: 18px; height: 3px; border-radius: 2px;
      flex-shrink: 0;
    }
    .hc-legend-dot {
      width: 8px; height: 8px; border-radius: 50%;
      flex-shrink: 0;
    }
    /* Pause button — top right, no border/bg */
    .hc-pause-btn {
      position: absolute; top: 10px; right: 10px; z-index: 40;
      width: 24px; height: 24px;
      background: transparent; border: none;
      display: flex; align-items: center; justify-content: center;
      cursor: pointer;
      font-family: 'Material Icons'; font-size: 16px;
      color: rgba(255,255,255,0.55);
      transition: color var(--transition);
    }
    .hc-pause-btn:hover { color: rgba(255,255,255,0.90); }

    /* ── Animated cursor ── */
    .hc-cursor {
      position: absolute;
      pointer-events: none;
      z-index: 700;
      opacity: 0;
      transition: opacity 0.2s ease;
      transform: translate(-2px, -2px);
    }
    .hc-cursor-arrow {
      display: block;
      filter: drop-shadow(0 1px 3px rgba(0,0,0,0.5));
    }
    .hc-cursor.visible { opacity: 1; }
    .hc-cursor.clicking .hc-cursor-arrow {
      transform: scale(0.88) translate(1px, 1px);
      transform-origin: top left;
    }

    /* ═══════════════════════════
       HOW IT WORKS
    ═══════════════════════════ */
    #how { padding: 140px 40px; border-top: 0.5px solid var(--border); }

    /* 2-row × 3-col grid: row 1 = texts, row 2 = animations */
    .steps {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      grid-template-rows: auto auto;
      column-gap: 40px;
      row-gap: 48px;
    }

    .step-text {
      /* texts: each cell auto-height, no forced alignment */
      display: flex; flex-direction: column;
    }
    .step-anim-row {
      /* animations: all cells align to same baseline */
      display: flex; align-items: center;
    }

    .step-title {
      font-family: var(--font-serif); font-size: clamp(17px,2vw,22px);
      font-weight: 500; color: var(--ink); line-height: 1.2; margin-bottom: 10px;
    }
    .step-body {
      font-size: 14px; font-weight: 300; color: var(--ink2); line-height: 1.7;
    }

    /* ── Step 1: typewriter + send, no inner border ── */
    .step-prompt-box {
      width: 85%;
      display: flex; align-items: center; gap: 8px;
    }
    .step-prompt-text {
      flex: 1; font-size: 13px; color: var(--ink);
      min-width: 0; overflow: hidden; white-space: nowrap;
    }
    .step-cursor {
      display: inline-block; width: 1.5px; height: 13px;
      background: var(--accent); vertical-align: middle; margin-left: 2px;
      animation: blink .9s step-end infinite;
    }
    @keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }
    .step-send {
      width: 28px; height: 28px; border-radius: 50%;
      background: var(--accent); color: #fff;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0; border: none; cursor: default;
      transition: transform .12s ease;
    }
    .step-send.clicked { transform: scale(.82); }
    .step-send svg { width: 12px; height: 12px; }

    /* ── Step 2: trazando + mapa generado — same line ── */
    .step-anim-2 { position: relative; height: 18px; }
    .step-thinking,
    .step-map-done {
      position: absolute; top: 0; left: 0;
      white-space: nowrap;
      transition: opacity .3s ease;
    }
    .step-thinking {
      font-family: var(--font-mono); font-size: 13px;
      letter-spacing: 0.01em;
      color: #2d3d7a;
      display: flex; align-items: center;
      opacity: 0;
    }
    .step-thinking.visible { opacity: 1; }
    .step-thinking::after {
      content: '';
      display: inline-block;
      width: 4px; height: 4px; margin-left: 5px;
      border-radius: 50%; background: #2d3d7a;
      animation: blink 1.2s infinite; vertical-align: middle;
    }
    .step-map-done {
      font-family: var(--font-sans); font-size: 13px;
      opacity: 0;
    }
    .step-map-done.visible { opacity: 1; }

    /* ── Step 3: export button ── */
    .step-export-btn {
      display: inline-flex; align-items: center;
      height: 26px; padding: 0 10px;
      background: transparent; border: 0.5px solid var(--border-md);
      border-radius: var(--radius-sm); color: var(--ink2);
      font-family: var(--font-sans); font-size: 11px; font-weight: 500;
      letter-spacing: 0.08em; text-transform: uppercase;
      white-space: nowrap; cursor: default;
      transition: background var(--transition), color var(--transition), transform .1s ease;
      user-select: none;
    }
    .step-export-btn.clicked {
      background: rgba(0,0,0,0.06); color: var(--ink);
      transform: scale(.95);
    }

    /* ═══════════════════════════
       COVERAGE
    ═══════════════════════════ */
    #coverage { padding: 120px 40px; border-top: 0.5px solid var(--border); }

    .coverage-grid {
      display: grid; grid-template-columns: repeat(3, 1fr);
      gap: 10px; align-items: start;
    }
    .coverage-col {
      display: flex; flex-direction: column; gap: 10px;
    }

    .country-card {
      background: var(--bg2); border: 0.5px solid var(--border-md);
      border-radius: var(--radius-sm); overflow: hidden;
      transition: border-color var(--transition), box-shadow var(--transition);
    }
    .country-card:hover {
      box-shadow: 0 2px 12px rgba(26,24,20,0.06);
    }

    /* active = green */
    .country-card.active {
      border-color: rgba(76,175,125,0.35); background: rgba(76,175,125,0.05);
    }
    .country-card.active:hover {
      border-color: rgba(76,175,125,0.55);
      box-shadow: 0 2px 16px rgba(76,175,125,0.10);
    }

    /* soon = yellow */
    .country-card.soon {
      border-color: rgba(200,160,40,0.30); background: rgba(200,160,40,0.04);
    }
    .country-card.soon:hover {
      border-color: rgba(200,160,40,0.50);
      box-shadow: 0 2px 12px rgba(200,160,40,0.08);
    }

    .card-header {
      display: flex; align-items: center; justify-content: space-between;
      padding: 14px 16px; cursor: default; min-height: 48px;
    }
    .country-card.active .card-header { cursor: default; }

    .country-name {
      font-size: 14px; font-weight: 500; color: var(--ink); line-height: 1;
    }
    .country-card:not(.active):not(.soon) .country-name { color: var(--ink2); }

    .connected-label {
      font-size: 11px; font-weight: 500; letter-spacing: 0.02em;
    }
    .country-card.active  .connected-label { color: #3a9e6a; }
    .country-card.soon    .connected-label { color: #a07800; }

    /* Coverage more button */
    .coverage-more {
      margin-top: 52px; text-align: center;
    }
    .btn-coverage-more {
      display: inline-flex; align-items: center;
      height: 34px; padding: 0 20px;
      background: transparent; border: 0.5px solid var(--border-md);
      border-radius: var(--radius-sm); color: var(--ink2);
      font-family: var(--font-sans); font-size: 12px; font-weight: 500;
      letter-spacing: 0.08em;
      cursor: pointer; opacity: 1;
      text-decoration: none;
      transition: border-color .15s, color .15s;
    }
    .btn-coverage-more:hover {
      border-color: var(--ink2);
      color: var(--ink);
    }

    /* ═══════════════════════════
       CTA FINAL
    ═══════════════════════════ */
    #cta-final { padding: 140px 40px 100px; text-align: center; border-top: 0.5px solid var(--border); }
    .cta-headline {
      font-family: var(--font-serif); font-weight: 500;
      font-size: clamp(26px,3.5vw,42px); color: var(--ink);
      line-height: 1.2; margin: 0 auto 52px; max-width: 480px;
    }

    /* ═══════════════════════════
       FOOTER
    ═══════════════════════════ */
    footer {
      border-top: 0.5px solid var(--border);
      padding: 40px 40px 36px;
      display: flex; flex-direction: column; align-items: center; gap: 10px; text-align: center;
    }
    .footer-brand {
      font-family: var(--font-serif); font-size: 28px; font-weight: 500; color: var(--accent);
    }
    .footer-copy { font-size: 12px; color: var(--ink3); line-height: 1.6; }

    /* ── Reveal ── */
    .reveal { opacity:0; transform:translateY(18px); transition: opacity .65s ease, transform .65s ease; }
    .reveal.visible { opacity:1; transform:translateY(0); }

    /* ── Mobile ── */
    @media (max-width: 600px) {
      .top-bar { padding: 12px 20px; }
      #hero { padding: 88px 24px 72px; }
      .hero-inner { grid-template-columns: 1fr; gap: 44px; }
      .hero-right { display: none; }

      /* How it works — stack each text+anim pair vertically */
      #how { padding: 80px 24px; }
      .steps { grid-template-columns: 1fr; row-gap: 36px; }
      .step-text:nth-child(1), .step-text:nth-child(2), .step-text:nth-child(3) { order: unset; padding-bottom: 0; }
      .step-anim-row { display: none; }

      /* Coverage — single column, each coverage-col stacks */
      #coverage { padding: 80px 24px; }
      .coverage-grid { grid-template-columns: 1fr; }
      .coverage-col { gap: 10px; }

      #cta-final { padding: 100px 24px 80px; }
      footer { padding: 32px 24px 28px; }

      /* Coverage cards: fix name/status layout */
      .card-header { padding: 12px 14px; min-height: 44px; }
      .country-name { font-size: 13px; }
      .connected-label { font-size: 10px; }
    }
