/* ============================================================
       Shared Design System (inline copy of style.css)
       ============================================================ */

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

    :root {
      --red:         #E63946;
      --red-hover:   #CF2F3C;
      --red-soft:    #FFF1F2;
      --red-glow:    rgba(230, 57, 70, 0.1);
      --dark:        #1D1D1F;
      --text:        #3A3A3C;
      --text-soft:   #636366;
      --text-muted:  #6E6E73;
      --bg:          #FAFAFA;
      --card:        #FFF;
      --cream:       #F5F2EE;
      --cream-deep:  #EDE8E2;
      --mint:        #E8F5F0;
      --mint-dark:   #2D9F7F;
      --sky:         #EBF3FF;
      --sky-dark:    #4A90D9;
      --peach:       #FFF3EB;
      --peach-dark:  #E8834A;
      --purple:      #F0EBFF;
      --purple-dark: #7C5CBF;
      --teal:        #E6F6F4;
      --teal-dark:   #2A9D8F;
      --border:      rgba(0, 0, 0, 0.06);
      --shadow-sm:   0 2px 8px rgba(0, 0, 0, 0.04);
      --shadow-md:   0 8px 30px rgba(0, 0, 0, 0.06);
      --shadow-lg:   0 16px 50px rgba(0, 0, 0, 0.08);
      --radius:      20px;
      --cream-tex:
        repeating-linear-gradient(0deg, transparent, transparent 39px, rgba(0,0,0,.018) 39px, rgba(0,0,0,.018) 40px),
        var(--cream);
      --cream-tex-size: auto;
    }
    :root.tex-grid {
      --cream-tex:
        repeating-linear-gradient(90deg, transparent, transparent 39px, rgba(0,0,0,.018) 39px, rgba(0,0,0,.018) 40px),
        repeating-linear-gradient(0deg, transparent, transparent 39px, rgba(0,0,0,.018) 39px, rgba(0,0,0,.018) 40px),
        var(--cream);
    }
    :root.tex-diagonal {
      --cream-tex:
        repeating-linear-gradient(
          -45deg,
          transparent,
          transparent 14px,
          rgba(0,0,0,.018) 14px,
          rgba(0,0,0,.018) 15px
        ),
        var(--cream);
    }
    :root.tex-crosses {
      --cream-tex:
        linear-gradient(0deg, transparent 47%, rgba(0,0,0,.02) 47%, rgba(0,0,0,.02) 53%, transparent 53%),
        linear-gradient(90deg, transparent 47%, rgba(0,0,0,.02) 47%, rgba(0,0,0,.02) 53%, transparent 53%),
        var(--cream);
      --cream-tex-size: 18px 18px;
    }
    :root.tex-diamond {
      --cream-tex:
        linear-gradient(45deg, rgba(0,0,0,.015) 25%, transparent 25%, transparent 75%, rgba(0,0,0,.015) 75%),
        linear-gradient(-45deg, rgba(0,0,0,.015) 25%, transparent 25%, transparent 75%, rgba(0,0,0,.015) 75%),
        var(--cream);
      --cream-tex-size: 30px 30px;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Outfit', sans-serif;
      background: var(--bg);
      color: var(--text);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }

    h1, h2, h3 { font-family: 'Sora', sans-serif; color: var(--dark); line-height: 1.15; }

    .container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
    .narrow    { max-width: 600px;  margin: 0 auto; }

    nav {
      position: absolute; top: 0; left: 0; right: 0; z-index: 100;
      background: transparent;
      border-bottom: none;
    }
    .nav-inner {
      max-width: 1180px; margin: 0 auto; padding: 0 24px;
      display: flex; align-items: center; justify-content: space-between; height: 56px;
    }
    .logo { display: flex; align-items: center; gap: 4px; text-decoration: none; }
    .logo-mark {
      width: 36px; height: 36px; background: var(--red); border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
      font-family: 'Sora', sans-serif; font-size: 15px; font-weight: 700;
      color: white; letter-spacing: -0.5px;
    }
    .logo-text { font-family: 'Sora', sans-serif; font-size: 20px; font-weight: 700; color: var(--dark); margin-left: 6px; }
    .nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
    .nav-links a { text-decoration: none; color: var(--text-soft); font-size: 14px; font-weight: 500; transition: color 0.2s; }
    .nav-links a:hover  { color: var(--dark); }
    .nav-links a.active { color: var(--red); font-weight: 600; }
    .nav-links .hot {
      background: var(--red); color: white; font-size: 9px; font-weight: 700;
      padding: 2px 6px; border-radius: 6px; margin-left: 4px; vertical-align: top; letter-spacing: 0.5px;
    }
    .nav-right { display: flex; align-items: center; gap: 10px; }

    /* ── Burger button (mobile) ── */
    .nav-burger {
      display: none;
      width: 40px; height: 40px;
      background: transparent; border: none; padding: 0;
      cursor: pointer; flex-direction: column;
      align-items: center; justify-content: center; gap: 4px;
      margin-right: 4px;
    }
    .nav-burger span {
      display: block; width: 22px; height: 2.2px;
      background: var(--dark); border-radius: 2px;
      transition: transform .25s ease, opacity .2s ease;
    }
    body.menu-open .nav-burger span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
    body.menu-open .nav-burger span:nth-child(2) { opacity: 0; }
    body.menu-open .nav-burger span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
    /* ── Language / Currency switcher ── */
    .nav-lc {
      position: relative;
    }
    .nav-lc-btn {
      display: inline-flex; align-items: center; gap: 8px;
      padding: 5px 8px;
      border: none; background: none; cursor: pointer;
      transition: background .18s; font-family: 'Outfit', sans-serif;
      border-radius: 8px;
    }
    .nav-lc-globe { color: var(--text-muted); transition: color .18s; }
    .nav-lc-lang { font-size: 13.5px; font-weight: 700; color: var(--dark); line-height: 1.1; text-align: left; }
    .nav-lc-curr { font-size: 10.5px; color: var(--text-muted); font-weight: 500; letter-spacing: .3px; }
    .nav-lc-chev { opacity: .35; transition: transform .2s, opacity .18s; flex-shrink: 0; }
    @media (hover: hover) {
      .nav-lc-btn:hover,
      .nav-lc:hover .nav-lc-btn { background: transparent; }
      .nav-lc-btn:hover .nav-lc-globe,
      .nav-lc:hover .nav-lc-globe { color: var(--dark); }
      .nav-lc:hover .nav-lc-chev { transform: rotate(180deg); opacity: .65; }
      .nav-lc:hover .nav-lc-drop { opacity: 1; pointer-events: auto; transform: translateY(0); }
    }

    /* dropdown panel */
    .nav-lc-drop {
      position: absolute; top: 100%; right: 0;
      padding-top: 8px;
      opacity: 0; pointer-events: none; transform: translateY(-6px);
      transition: opacity .2s ease, transform .2s ease;
      z-index: 200;
    }
    .nav-lc-drop-inner {
      background: var(--card); border: 1px solid var(--border);
      border-radius: 14px; box-shadow: var(--shadow-lg);
      padding: 16px; min-width: 210px;
    }
    .nav-lc.is-open .nav-lc-drop { opacity: 1; pointer-events: auto; transform: translateY(0); }

    /* ── Lang/Curr v2 (stacked rows) ── */
    .nav-lc2 { position: relative; margin-left: 4px; }
    .nav-lc2-drop-inner {
      background: var(--card); border: 1px solid var(--border);
      border-radius: 12px; box-shadow: var(--shadow-lg);
      padding: 6px; min-width: 220px;
      display: flex; flex-direction: column; gap: 2px;
    }
    .nav-lc2-group-label {
      font-size: 10px; font-weight: 700; letter-spacing: 1.2px;
      text-transform: uppercase; color: var(--text-muted);
      padding: 12px 14px 6px;
    }
    .nav-lc2-group-label:first-child { padding-top: 8px; }
    .nav-lc2-row {
      display: flex; align-items: center; gap: 10px;
      padding: 10px 14px; border-radius: 8px;
      font-size: 14px; font-weight: 500; color: var(--text-soft);
      background: none; border: none; cursor: pointer;
      text-align: left; font-family: 'Outfit', sans-serif;
      transition: background .15s, color .15s;
    }
    .nav-lc2-row:hover { background: var(--red-soft); color: var(--red); }
    .nav-lc2-row.active { color: var(--dark); font-weight: 700; }
    .nav-lc2-row .nav-lc2-icon {
      width: 18px; height: 18px;
      display: inline-flex; align-items: center; justify-content: center;
      font-size: 16px; flex-shrink: 0;
      color: var(--text-soft);
    }
    .nav-lc2-row .nav-lc2-icon svg { width: 18px; height: 18px; }
    .nav-lc2-row:hover .nav-lc2-icon { color: var(--red); }
    .nav-lc2-row.active .nav-lc2-icon { color: var(--dark); }
    .nav-lc2-divider { height: 1px; background: var(--border); margin: 4px 6px; }
    .nav-lc.is-open .nav-lc-btn  { background: transparent; }
    .nav-lc.is-open .nav-lc-globe { color: var(--dark); }
    .nav-lc.is-open .nav-lc-chev { transform: rotate(180deg); opacity: .65; }
    .nav-lc-group-label {
      font-size: 10px; font-weight: 700; letter-spacing: 1.4px;
      text-transform: uppercase; color: var(--text-muted);
      padding: 0 6px; margin-bottom: 6px;
    }
    .nav-lc-opts { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 14px; }
    .nav-lc-opts:last-child { margin-bottom: 0; }
    .nav-lc-opt {
      display: inline-flex; align-items: center; gap: 5px;
      font-size: 12.5px; font-weight: 600; color: var(--dark);
      padding: 5px 11px; border-radius: 8px; border: 1px solid var(--border);
      background: transparent; cursor: pointer; transition: all .15s;
      font-family: 'Outfit', sans-serif;
    }
    .nav-lc-opt:hover { border-color: var(--red); color: var(--red); background: var(--red-soft); }
    .nav-lc-opt.active { border-color: var(--red); color: var(--red); background: var(--red-soft); font-weight: 700; }
    .nav-lc-divider { height: 1px; background: var(--border); margin: 4px 0 14px; }
    .btn-login {
      display: inline-flex; align-items: center; gap: 6px;
      font-size: 13px; font-weight: 600; color: var(--text-soft);
      padding: 9px 18px; border-radius: 9px;
      border: 1.5px solid var(--border); background: #F6F3F0;
      text-decoration: none; transition: all 0.25s;
      line-height: 1.4;
    }
    .btn-login:hover { border-color: var(--dark); color: var(--dark); }

    .btn-primary {
      display: inline-flex; align-items: center; gap: 8px;
      background: var(--red); color: white; padding: 15px 32px;
      border-radius: 14px; font-size: 15px; font-weight: 600;
      text-decoration: none;
      box-shadow: inset 0 -3px 0 rgba(0,0,0,.22);
      transition: transform .3s cubic-bezier(.34, 1.25, .64, 1), background .2s, box-shadow .2s;
    }
    .btn-primary:hover { background: var(--red-hover); transform: translateY(-2px); box-shadow: inset 0 -3px 0 rgba(0,0,0,.28); }
    .btn-primary:active { transform: translateY(0); box-shadow: inset 0 -1px 0 rgba(0,0,0,.22); transition: transform .08s, box-shadow .08s; }

    .btn-ghost {
      display: inline-flex; align-items: center; gap: 6px;
      color: var(--text-soft); font-size: 15px; font-weight: 500;
      text-decoration: none; padding: 15px 20px; border-radius: 14px;
      transition: color 0.2s;
    }
    .btn-ghost:hover { color: var(--dark); }

    .btn-outline {
      display: inline-flex; align-items: center; gap: 8px;
      border: 2px solid var(--red); color: var(--red); padding: 11px 26px;
      border-radius: 12px; font-size: 14px; font-weight: 600;
      text-decoration: none; transition: all 0.25s;
    }
    .btn-outline:hover { background: var(--red); color: white; }

    .btn-plan {
      display: block; text-align: center; padding: 14px; border-radius: 12px;
      font-size: 15px; font-weight: 600; text-decoration: none; transition: all 0.25s;
      width: 100%; border: none; cursor: pointer; font-family: 'Outfit', sans-serif;
    }
    .btn-plan.fill    { background: var(--red); color: white; box-shadow: inset 0 -3px 0 rgba(0,0,0,.22); transition: transform .3s cubic-bezier(.34, 1.25, .64, 1), background .2s, box-shadow .2s; }
    .btn-plan.fill:hover    { background: var(--red-hover); transform: translateY(-2px); box-shadow: inset 0 -3px 0 rgba(0,0,0,.28); }
    .btn-plan.fill:active   { transform: translateY(0); box-shadow: inset 0 -1px 0 rgba(0,0,0,.22); transition: transform .08s, box-shadow .08s; }
    /* Inside a plan card, the card already lifts on hover — suppress button's own lift to avoid stacked motion */
    .plans-grid .plan:hover .btn-plan.fill { transform: none; }
    .btn-plan.outline { background: var(--cream); color: var(--dark); border: 1px solid var(--border); }
    .btn-plan.outline:hover { background: var(--cream-deep); }

    .section-tag { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--red); margin-bottom: 12px; }
    .section-tag .tag-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--red); }

    .tp-s { width: 22px; height: 22px; background: #00B67A; border-radius: 4px; display: flex; align-items: center; justify-content: center; }
    .tp-s svg { width: 13px; height: 13px; fill: white; }
    .tp-row { display: flex; gap: 3px; }

    .reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
    .reveal.visible { opacity: 1; transform: translateY(0); }

    /* ── Hero ── */
    .hero {
      padding: 96px 0 80px;
      position: relative;
      overflow: hidden;
      background:
        radial-gradient(circle, rgba(0,0,0,.055) 1px, transparent 1px),
        linear-gradient(180deg, var(--cream) 0%, var(--bg) 100%),
        var(--bg);
      background-size: 22px 22px, 100% 300px, auto;
      background-repeat: repeat, no-repeat, repeat;
    }

    .hero-blob {
      position: absolute;
      border-radius: 50%;
      filter: blur(80px);
      opacity: 0.4;
      pointer-events: none;
      animation: blobFloat 20s ease-in-out infinite;
    }

    .hero-blob.b1 {
      width: 500px;
      height: 500px;
      background: var(--red-glow);
      top: -100px;
      right: -100px;
    }

    .hero-blob.b2 {
      width: 400px;
      height: 400px;
      background: rgba(77, 171, 247, 0.08);
      bottom: -80px;
      left: -50px;
      animation-delay: -7s;
    }

    @keyframes blobFloat {
      0%, 100% { transform: translate(0, 0) scale(1); }
      50%       { transform: translate(-20px, 30px) scale(0.95); }
    }

    .hero-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      column-gap: 60px;
      align-items: center;
      position: relative;
      z-index: 1;
    }
    .hero-left { display: flex; flex-direction: column; align-items: flex-start; gap: 40px; }
    .hero-left > * { margin: 0 !important; }
    .hero-inner > .hero-scene { justify-self: center; }

    .hero-pill {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: transparent;
      border: none;
      padding: 0 0 0 8px;
      border-radius: 0;
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: var(--mint-dark);
      box-shadow: none;
      margin-bottom: -10px !important;
    }

    .hero-pill .hero-pulse-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--mint-dark);
      animation: pulseDot 2s infinite;
      flex-shrink: 0;
    }

    @keyframes pulseDot {
      0%, 100% { transform: scale(1); opacity: 1; }
      50%       { transform: scale(1.4); opacity: 0.5; }
    }

    .hero h1 {
      font-size: 54px;
      font-weight: 800;
      letter-spacing: -2px;
      margin: 0 0 4px;
    }

    .hero h1 .accent {
      color: var(--red);
      position: relative;
      display: inline-block;
    }

    .hero h1 .accent svg {
      position: absolute;
      bottom: -4px;
      left: 0;
      width: 100%;
      stroke: var(--red);
      stroke-width: 3;
      fill: none;
      stroke-dasharray: 300;
      stroke-dashoffset: 300;
      animation: drawLine 1.5s ease forwards 0.8s;
    }

    @keyframes drawLine {
      to { stroke-dashoffset: 0; }
    }

    /* ── Globe Meridian Keyframes — 25.7° per 5s cycle (continuous short rotation) ── */
    @keyframes gMA{0%{rx:1.0} 12.5%{rx:6.7} 25%{rx:13.4} 37.5%{rx:20.1} 50%{rx:26.7} 62.5%{rx:33.2} 75%{rx:39.6} 87.5%{rx:45.9} 100%{rx:52.1}}
    @keyframes gMB{0%{rx:52.1} 12.5%{rx:58.0} 25%{rx:63.8} 37.5%{rx:69.4} 50%{rx:74.8} 62.5%{rx:80.0} 75%{rx:84.9} 87.5%{rx:89.5} 100%{rx:93.8}}
    @keyframes gMC{0%{rx:93.8} 12.5%{rx:97.9} 25%{rx:101.6} 37.5%{rx:105.0} 50%{rx:108.1} 62.5%{rx:110.9} 75%{rx:113.3} 87.5%{rx:115.3} 100%{rx:117.0}}
    @keyframes gMD{0%{rx:117.0} 12.5%{rx:118.3} 25%{rx:119.2} 37.5%{rx:119.8} 50%{rx:120.0} 62.5%{rx:119.8} 75%{rx:119.2} 87.5%{rx:118.3} 100%{rx:117.0}}
    @keyframes gME{0%{rx:117.0} 12.5%{rx:115.3} 25%{rx:113.3} 37.5%{rx:110.9} 50%{rx:108.1} 62.5%{rx:105.0} 75%{rx:101.6} 87.5%{rx:97.9} 100%{rx:93.8}}
    @keyframes gMF{0%{rx:93.8} 12.5%{rx:89.5} 25%{rx:84.9} 37.5%{rx:80.0} 50%{rx:74.8} 62.5%{rx:69.4} 75%{rx:63.8} 87.5%{rx:58.0} 100%{rx:52.1}}
    @keyframes gMG{0%{rx:52.1} 12.5%{rx:45.9} 25%{rx:39.6} 37.5%{rx:33.2} 50%{rx:26.7} 62.5%{rx:20.1} 75%{rx:13.4} 87.5%{rx:6.7} 100%{rx:1.0}}
    @keyframes gFloat{0%,100%{transform:translateY(0)}50%{transform:translateY(-5px)}}

/* Globe animation classes */
.globe-svg { animation: gFloat 6s ease-in-out infinite; }
.globe-m-a { animation: gMA 5s linear infinite; }
.globe-m-b { animation: gMB 5s linear infinite; }
.globe-m-c { animation: gMC 5s linear infinite; }
.globe-m-d { animation: gMD 5s linear infinite; }
.globe-m-e { animation: gME 5s linear infinite; }
.globe-m-f { animation: gMF 5s linear infinite; }
.globe-m-g { animation: gMG 5s linear infinite; }

/* Transition delay utilities */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

    .hero-desc {
      font-size: 17px;
      color: var(--text-soft);
      margin: 0 0 10px;
      max-width: 440px;
      line-height: 1.55;
    }

    .hero-ctas {
      display: flex;
      align-items: center;
      gap: 14px;
      flex-wrap: wrap;
    }

    .hero-trust {
      display: flex; align-items: center; gap: 10px; margin-top: 10px; flex-wrap: nowrap;
    }
    .hero-trust .tp-r-label { font-size: 15px; color: var(--dark); font-weight: 700; }
    .hero-trust .tp-r-count { font-size: 13px; color: var(--text-muted); font-weight: 500; text-decoration: underline; text-underline-offset: 2px; white-space: nowrap; }
    .hero-trust .tp-r-count:hover { color: var(--dark); }
    @media (max-width: 480px) {
      .hero-trust { gap: 7px; justify-content: center; }
      .hero-trust .tp-r-label { font-size: 13px; }
      .hero-trust .tp-r-count { font-size: 12px; }
      .hero-trust .tp-row .tp-s { width: 18px; height: 18px; }
      .hero-trust .tp-row .tp-s svg { width: 11px; height: 11px; }
    }

    .hero-scene {
      position: relative;
      width: 118%;
      aspect-ratio: 1 / 0.9;
      margin: 0 -9%;
    }

    .hero-scene svg {
      width: 100%;
      height: 100%;
    }

    /* ── Stats Divider ── */
    .stats-divider {
      padding: 48px 0;
      background: var(--cream-tex);
      background-size: var(--cream-tex-size);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }

    .stats-track {
      display: flex;
      justify-content: center;
      gap: 56px;
      align-items: center;
      flex-wrap: wrap;
    }

    .stat-item {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .stat-item .si-icon {
      width: 44px;
      height: 44px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .stat-item .si-icon svg {
      width: 20px;
      height: 20px;
    }

    .stat-item:nth-child(1) .si-icon { background: var(--peach); color: var(--peach-dark); }
    .stat-item:nth-child(2) .si-icon { background: var(--mint);  color: var(--mint-dark); }
    .stat-item:nth-child(3) .si-icon { background: var(--sky);   color: var(--sky-dark); }
    .stat-item:nth-child(4) .si-icon { background: var(--red-soft); color: var(--red); }

    .stat-item .si-val {
      font-size: 22px;
      font-weight: 800;
      font-family: 'Sora', sans-serif;
      color: var(--dark);
    }

    .stat-item .si-label {
      font-size: 12px;
      color: var(--text-muted);
      font-weight: 500;
    }

    /* ── USP Section ── */
    .usp-section {
      padding: 100px 0 80px;
      background:
        radial-gradient(circle, rgba(0,0,0,.055) 1px, transparent 1px),
        var(--bg);
      background-size: 22px 22px, auto;
    }

    .usp-header {
      text-align: center;
      max-width: 540px;
      margin: 0 auto 56px;
    }

    .usp-header h2 {
      font-size: 42px;
      font-weight: 800;
      letter-spacing: -1.5px;
      margin-bottom: 14px;
    }

    .usp-header p {
      font-size: 17px;
      color: var(--text-soft);
      line-height: 1.7;
    }

    .usp-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      row-gap: 20px;
    }

    .usp-card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 36px 28px;
      transition: all 0.4s;
      position: relative;
      overflow: hidden;
    }

    .usp-card:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow-lg);
    }

    .usp-card::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 4px;
      border-radius: 0 0 var(--radius) var(--radius);
      transform: scaleX(0);
      transition: transform 0.4s;
    }

    .usp-card:hover::after { transform: scaleX(1); }
    .usp-card:nth-child(1)::after { background: var(--peach-dark); }
    .usp-card:nth-child(2)::after { background: var(--sky-dark); }
    .usp-card:nth-child(3)::after { background: var(--mint-dark); }
    .usp-card:nth-child(4)::after { background: var(--purple-dark); }
    .usp-card:nth-child(5)::after { background: var(--teal-dark); }
    .usp-card:nth-child(6)::after { background: var(--red); }

    .usp-icon-wrap {
      width: 56px;
      height: 56px;
      border-radius: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 22px;
    }

    .usp-icon-wrap svg {
      width: 28px;
      height: 28px;
    }

    .usp-card:nth-child(1) .usp-icon-wrap { background: var(--peach); color: var(--peach-dark); }
    .usp-card:nth-child(2) .usp-icon-wrap { background: var(--sky);   color: var(--sky-dark); }
    .usp-card:nth-child(3) .usp-icon-wrap { background: var(--mint);  color: var(--mint-dark); }
    .usp-card:nth-child(4) .usp-icon-wrap { background: var(--purple); color: var(--purple-dark); }
    .usp-card:nth-child(5) .usp-icon-wrap { background: var(--teal);  color: var(--teal-dark); }
    .usp-card:nth-child(6) .usp-icon-wrap { background: var(--red-soft); color: var(--red); }

    .usp-card h3 {
      font-family: 'Sora', sans-serif;
      font-size: 20px;
      font-weight: 700;
      margin-bottom: 10px;
    }

    .usp-card p {
      font-size: 14px;
      color: var(--text-soft);
      line-height: 1.65;
    }

    /* ── Pricing Preview ── */
    .pricing-section {
      padding: 100px 0;
      background: var(--cream-tex);
      background-size: var(--cream-tex-size);
      border-top: 1px solid var(--border);
    }

    .pricing-header {
      text-align: center;
      max-width: 520px;
      margin: 0 auto 20px;
    }

    .pricing-header h2 {
      font-size: 42px;
      font-weight: 800;
      letter-spacing: -1.5px;
      margin-bottom: 12px;
    }

    .pricing-header p {
      color: var(--text-soft);
      font-size: 16px;
    }

    .save-pill {
      display: flex;
      justify-content: center;
      margin: 28px 0 48px;
    }

    .plan-name {
      font-family: 'Sora', sans-serif;
      font-size: 18px;
      font-weight: 700;
      color: var(--dark);
      margin-bottom: 6px;
    }

    .plan-price {
      margin-bottom: 4px;
    }

    .plan-price {
      font-size: 48px;
      font-weight: 800;
      color: var(--dark);
      line-height: 1;
      letter-spacing: -2px;
      font-family: 'Sora', sans-serif;
    }

    .plan-price .js-price-currency {
      font-size: 20px;
      font-weight: 700;
      letter-spacing: 0;
    }

    .plan-price .per {
      font-size: 14px;
      color: var(--text-muted);
      font-weight: 500;
      letter-spacing: 0;
    }

    .plan-features {
      list-style: none;
      margin: 22px 0 26px;
      display: flex;
      flex-direction: column;
      gap: 11px;
    }

    .plan-features li {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 14px;
      color: var(--text);
    }

    .plan-features li svg {
      width: 18px;
      height: 18px;
      flex-shrink: 0;
    }

    .plan-features li.yes svg { color: var(--mint-dark); }
    .plan-features li.no     { color: var(--text-muted); }
    .plan-features li.no svg { color: var(--text-muted); opacity: 0.3; }

    /* ── Pricing Cards ── */
    .plans-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 28px;
      max-width: 780px;
      margin: 0 auto;
    }

    .plans-grid .plan {
      background: var(--card);
      border: 1px solid var(--border);
      border-top: 5px solid var(--cream-deep);
      border-radius: var(--radius);
      padding: 36px 32px;
      position: relative;
      box-shadow: 0 2px 0 rgba(0,0,0,.04), 0 8px 24px rgba(0,0,0,.06);
      transition: all 0.35s;
      cursor: pointer;
    }

    .plans-grid .plan:hover {
      transform: translateY(-4px);
    }

    .plans-grid .plan.featured {
      border: 1px solid var(--border);
      border-top: 5px solid var(--red);
      box-shadow: 0 2px 0 rgba(0,0,0,.05), 0 12px 32px rgba(0,0,0,.08);
    }

    .plan-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 10px;
    }

    .plans-grid .plan-name {
      font-family: 'Sora', sans-serif;
      font-size: 24px;
      font-weight: 700;
      color: var(--dark);
      margin-bottom: 0;
    }

    .plan-save {
      background: var(--red-soft);
      color: var(--red);
      font-size: 12px;
      font-weight: 700;
      padding: 4px 12px;
      border-radius: 8px;
      white-space: nowrap;
    }

    .plan-subtitle {
      font-size: 13px;
      color: var(--text-muted);
      margin: -8px 0 16px;
    }

    .plans-grid .plan-price {
      margin-bottom: 6px;
    }

    .plans-grid .plan-price .js-price-currency {
      font-size: 22px;
      font-weight: 700;
    }

    .plans-grid .plan-price .per {
      font-size: 15px;
      color: var(--text-muted);
      font-weight: 500;
    }

    .save-pill {
      display: inline-flex; align-items: center;
      background: var(--mint); color: var(--mint-dark);
      font-size: 13px; font-weight: 700;
      padding: 5px 12px; border-radius: 6px;
      margin-top: 10px; margin-bottom: 10px;
    }

    .plans-grid .plan-features {
      margin: 12px 0 24px;
      gap: 12px;
    }

    .plans-grid .plan-features li {
      font-size: 14.5px;
    }

    .plans-grid .btn-plan {
      padding: 14px;
      font-size: 15px;
    }

    .plan-badge {
      position: absolute;
      top: -13px;
      left: 50%;
      transform: translateX(-50%);
      background: var(--red);
      color: white;
      font-size: 11px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.8px;
      padding: 5px 16px;
      border-radius: 20px;
      white-space: nowrap;
    }

    @media (max-width: 640px) {
      .plans-grid { grid-template-columns: 1fr; }
    }

    /* ── Reviews ── */
    .reviews-section {
      padding: 100px 0;
      background: var(--cream-tex);
      background-size: var(--cream-tex-size);
      border-top: 1px solid var(--border);
    }

    .reviews-header {
      text-align: center;
      margin-bottom: 48px;
    }

    .reviews-header h2 {
      font-size: 42px;
      font-weight: 800;
      letter-spacing: -1.5px;
      margin-bottom: 12px;
    }

    .reviews-header p {
      color: var(--text-soft);
      font-size: 16px;
    }

    .reviews-tp {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      margin-bottom: 40px;
    }

    .reviews-tp .r-label {
      font-size: 16px;
      font-weight: 700;
      color: var(--dark);
    }

    .reviews-tp .r-count {
      font-size: 13px;
      color: var(--text-muted);
    }

    .reviews-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
    }

    .r-card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 24px 20px;
      transition: all 0.3s;
      display: flex;
      flex-direction: column;
      height: 250px;
    }

    .r-card:hover {
      box-shadow: var(--shadow-md);
      transform: translateY(-3px);
    }

    .r-verified {
      font-size: 10px;
      font-weight: 700;
      color: #00B67A;
      display: flex;
      align-items: center;
      gap: 3px;
      margin-bottom: 10px;
    }

    .r-verified svg {
      width: 12px;
      height: 12px;
    }

    .r-stars {
      display: flex;
      gap: 2px;
      margin-bottom: 12px;
    }

    .r-stars svg {
      width: 16px;
      height: 16px;
      fill: #FF9800;
    }

    .r-title {
      font-weight: 700;
      font-size: 14px;
      color: var(--dark);
      margin-bottom: 6px;
    }

    .r-text {
      font-size: 13px;
      color: var(--text-soft);
      line-height: 1.55;
      margin-bottom: 14px;
      flex: 1;
      display: -webkit-box;
      -webkit-line-clamp: 3;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

    .r-author {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .r-link {
      font-size: 11px;
      color: var(--text-muted);
      text-decoration: none;
      margin-left: auto;
      transition: color .2s;
    }
    .r-link:hover { color: var(--red); }

    .r-avatar {
      width: 30px;
      height: 30px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 12px;
      font-weight: 700;
      color: white;
    }

    .r-card:nth-child(1) .r-avatar { background: var(--red); }
    .r-card:nth-child(2) .r-avatar { background: var(--sky-dark); }
    .r-card:nth-child(3) .r-avatar { background: var(--mint-dark); }
    .r-card:nth-child(4) .r-avatar { background: var(--peach-dark); }

    .r-name {
      font-size: 12px;
      font-weight: 600;
      color: var(--dark);
    }

    .r-date {
      font-size: 10px;
      color: var(--text-muted);
    }

    /* ── About Usenet ── */
    .about-section {
      padding: 100px 0;
      background: var(--cream-tex);
      background-size: var(--cream-tex-size);
      border-top: 1px solid var(--border);
      position: relative;
      overflow: hidden;
    }

    .about-grid {
      display: grid;
      grid-template-columns: 1fr 0.85fr;
      gap: 80px;
      align-items: start;
    }

    .about-left h2 {
      font-size: 40px;
      font-weight: 800;
      letter-spacing: -1.5px;
      margin-bottom: 28px;
    }

    .about-items {
      display: flex;
      flex-direction: column;
    }

    .about-item {
      padding: 24px 0;
      cursor: pointer;
      transition: all 0.3s;
    }

    .about-item:first-child { padding-top: 0; }

    .about-item h3 {
      font-family: 'Sora', sans-serif;
      font-size: 18px;
      font-weight: 700;
      display: flex;
      align-items: center;
      gap: 10px;
      transition: color 0.2s;
    }

    .about-item:hover h3 { color: var(--red); }

    /* Red bullet dot before each heading */
    .about-item h3::before {
      content: '';
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--red);
      flex-shrink: 0;
    }

    .about-item h3 .a-num {
      display: none;
    }

    .about-item p {
      font-size: 16px;
      color: var(--text-soft);
      line-height: 1.65;
      margin-top: 10px;
      padding-left: 18px; /* aligns with heading text after the dot */
    }

    a.about-item {
      text-decoration: none;
      color: inherit;
      display: block;
    }

    .about-link {
      color: var(--red);
      font-weight: 600;
    }

    .about-visual {
      position: sticky;
      top: 100px;
    }

    .about-scene {
      padding: 24px;
    }

    .about-scene svg {
      width: 100%;
      height: auto;
    }

    /* ── Why XS News ── */
    .why-section {
      padding: 100px 0;
      background:
        radial-gradient(circle, rgba(0,0,0,.055) 1px, transparent 1px),
        var(--bg);
      background-size: 22px 22px, auto;
      border-top: 1px solid var(--border);
    }

    .why-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }

    .why-visual {
      display: flex;
      justify-content: center;
    }

    .why-scene {
      width: 100%;
      max-width: 420px;
      background: transparent;
      border-radius: 0;
      padding: 0;
      border: none;
    }

    .why-scene svg {
      width: 100%;
      height: auto;
    }

    .why-content h2 {
      font-size: 38px;
      font-weight: 800;
      letter-spacing: -1.5px;
      margin-bottom: 20px;
    }

    .why-content p {
      font-size: 15px;
      color: var(--text-soft);
      line-height: 1.7;
      margin-bottom: 14px;
    }

    .why-content a {
      color: var(--red);
      text-decoration: none;
      font-weight: 600;
    }

    /* ════════════════════════════════════════════════ */
    /* ── Responsive ── min target: 375px viewport      */
    /* ════════════════════════════════════════════════ */

    /* Tablet & mobile nav: burger appears, nav-links become dropdown */
    @media (max-width: 900px) {
      .nav-burger        { display: flex; order: 4; margin: 0; width: 44px; height: 44px; }
      .nav-burger span   { width: 24px; height: 2.4px; }
      .logo              { order: 1; margin: 0; }
      .logo img          { height: 22px !important; }
      .nav-right         { display: contents; }
      .btn-login         { order: 2; padding: 5px 14px; font-size: 13px; margin-left: auto; }
      .nav-lc            { order: 3; }
      .nav-lc-btn        { padding: 8px 10px; }
      .nav-lc-globe      { width: 22px !important; height: 22px !important; }
      .nav-inner         { display: flex; align-items: center; gap: 16px; padding: 0 16px; }
      .nav-links {
        position: absolute; top: 100%; left: 0; right: 0;
        background: var(--bg);
        flex-direction: column; align-items: stretch; gap: 0;
        padding: 0; margin: 0;
        border-bottom: 1px solid var(--border);
        box-shadow: var(--shadow-md);
        max-height: 0; overflow: hidden;
        transition: max-height .3s ease, padding .3s ease;
      }
      body.menu-open .nav-links { max-height: 480px; padding: 8px 0; }
      .nav-links li { width: 100%; border-bottom: 1px solid var(--border); }
      .nav-links li:last-child { border-bottom: none; }
      .nav-links a {
        display: block; padding: 14px 24px; font-size: 15px; font-weight: 600;
      }
      .reviews-grid      { grid-template-columns: 1fr 1fr; }
      .reviews-grid > :nth-child(n+5) { display: none; }
      .usp-grid          { grid-template-columns: 1fr 1fr; }
      .about-grid        { grid-template-columns: 1fr; }
      .why-grid          { grid-template-columns: 1fr; }
    }

    /* Phone breakpoint */
    @media (max-width: 640px) {
      .container         { padding: 0 18px; }
      .nav-inner         { padding: 0 18px; }
      .hero              { padding: 76px 0 40px; }
      .hero-inner        { grid-template-columns: 1fr; row-gap: 14px; column-gap: 0; }
      .hero-left         { display: contents; }
      .hero-inner > .hero-pill, .hero-pill   { grid-column: 1; grid-row: 1; margin-bottom: 0; justify-self: start; align-self: start; width: auto; max-width: max-content; }
      .hero-inner > h1           { grid-column: 1; grid-row: 2; margin-bottom: 0; }
      .hero-inner > .hero-scene  { grid-column: 1; grid-row: 3; align-self: center; justify-self: center; margin: -24px auto -32px; overflow: visible; }
      .hero-inner > .hero-desc   { grid-column: 1; grid-row: 4; margin-bottom: 0; }
      .hero-inner > .hero-ctas   { grid-column: 1; grid-row: 5; margin-bottom: 0; }
      .hero-inner > .hero-trust  { grid-column: 1; grid-row: 6; margin-top: 0; }
      .hero-scene                { max-width: 90% !important; width: 90%; }
      .hero-scene svg            { display: block; width: 100% !important; max-width: none !important; height: auto !important; flex-shrink: 0; }
      .hero h1           { font-size: 36px; letter-spacing: -1.2px; }
      .hero-desc         { font-size: 15px; }
      h2                 { font-size: 28px !important; letter-spacing: -1px; }
      .stats-divider     { padding: 32px 0; }
      .stats-track       { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 10px; }
      .stats-track .stat-item { justify-content: flex-start; gap: 10px; }
      .stats-track .si-icon   { width: 38px; height: 38px; border-radius: 10px; }
      .stats-track .si-icon svg { width: 18px; height: 18px; }
      .stats-track .si-val    { font-size: 18px; }
      .stats-track .si-label  { font-size: 11px; }
      .usp-section       { padding: 60px 0; }
      .usp-header        { margin-bottom: 32px; }
      .usp-grid          { grid-template-columns: 1fr; gap: 12px; }
      .usp-card          {
        padding: 16px 18px;
        display: grid;
        grid-template-columns: auto 1fr;
        column-gap: 14px;
        row-gap: 2px;
      }
      .usp-icon-wrap     { width: 42px; height: 42px; border-radius: 11px; margin-bottom: 0; grid-row: 1 / span 2; align-self: start; }
      .usp-icon-wrap svg { width: 22px; height: 22px; }
      .usp-card h3       { font-size: 15px; margin-bottom: 0; align-self: center; }
      .usp-card p        { font-size: 13.5px; line-height: 1.5; grid-column: 2; }
      .usp-card:hover    { transform: none; }
      .reviews-grid      { grid-template-columns: 1fr; }
      .reviews-grid > :nth-child(n+3) { display: none; }
      .plans-grid        { grid-template-columns: 1fr; gap: 18px; }
      .why-content       { margin-top: 8px; }
      .why-scene         { max-width: 100% !important; }
      .about-grid        { gap: 32px; }
      .about-visual      { display: none; }
      .footer-bottom,
      .fv2-bottom        { flex-direction: column; align-items: flex-start; }
    }

    /* Small phone (down to 375px) */
    @media (max-width: 480px) {
      .container         { padding: 0 16px; }
      .nav-inner         { padding: 0 16px; }
      .hero              { background-size: 14px 14px, 100% 240px, auto; }
      .hero h1           { font-size: 30px; text-align: center; }
      .hero-inner > .hero-pill,
      .hero-pill         { font-size: 12px; justify-self: center !important; align-self: center !important; }
      h2                 { font-size: 24px !important; }
      .btn-login         { padding: 7px 12px; font-size: 13px; }
      .nav-lc-btn        { padding: 4px 6px; gap: 6px; }
      .nav-lc-lang,
      .nav-lc-curr       { display: none; }
      .nav-lc-chev       { display: none; }
      .stat-item         { padding: 0 4px; }
      .si-val            { font-size: 30px; }
      .plan-price        { font-size: 44px; }
      .nl-form           { flex-direction: column; }
      .hero-ctas         { flex-direction: column; align-items: stretch; }
      .hero-ctas .btn-primary,
      .hero-ctas .btn-secondary { justify-content: center; }
      .fv2-mid           { grid-template-columns: 1fr !important; gap: 28px; }
      .fv2-brand         { padding-right: 0 !important; }
      .footer-legal,
      .fv2-bottom-legal  { gap: 10px; }
    }

  
    /* ── Dropdown sub-menu (Support → Contact/FAQ) ── */
    .nav-links > li { position: relative; }
    .nav-links .has-sub > a {
      display: inline-flex; align-items: center; gap: 5px;
      cursor: pointer;
    }
    .nav-links .has-sub > a::after {
      content: ''; width: 7px; height: 7px;
      border-right: 1.5px solid currentColor;
      border-bottom: 1.5px solid currentColor;
      transform: rotate(45deg);
      margin-top: -3px; opacity: .5;
      transition: transform .2s;
    }
    .nav-sub {
      position: absolute; top: 100%; left: 50%;
      transform: translate(-50%, -6px);
      padding-top: 14px;
      opacity: 0; pointer-events: none;
      transition: opacity .2s ease, transform .2s ease;
      z-index: 220;
    }
    .nav-sub-inner {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 6px;
      min-width: 170px;
      box-shadow: var(--shadow-lg);
      display: flex; flex-direction: column; gap: 2px;
    }
    .nav-sub a {
      display: flex; align-items: center; gap: 10px; padding: 9px 14px;
      border-radius: 8px;
      font-size: 14px; font-weight: 500;
      color: var(--text-soft);
      text-decoration: none;
      transition: background .15s, color .15s;
    }
    .nav-sub a:hover { background: var(--red-soft); color: var(--red); }
    .nav-sub a.active { background: var(--red-soft); color: var(--red); font-weight: 600; }
    .nav-sub a svg { width: 16px; height: 16px; flex-shrink: 0; }
    @media (hover: hover) {
      .nav-links .has-sub:hover .nav-sub {
        opacity: 1; pointer-events: auto;
        transform: translate(-50%, 0);
      }
      .nav-links .has-sub:hover > a::after { transform: rotate(-135deg); margin-top: 3px; opacity: .8; }
      .nav-links .has-sub:hover > a { color: var(--dark); }
    }

    /* Mobile dropdown: inline expansion */
    @media (max-width: 900px) {
      .nav-links .has-sub > a::after { display: none; }
      .nav-sub {
        position: static; padding-top: 0; opacity: 1; pointer-events: auto;
        transform: none;
      }
      .nav-sub-inner {
        background: var(--cream); border: none; box-shadow: none;
        border-radius: 0; padding: 0; min-width: 0;
      }
      .nav-sub a {
        padding: 12px 24px 12px 40px;
        font-size: 14px; border-radius: 0;
        border-bottom: 1px solid var(--border);
      }
      .nav-sub-inner a:last-child { border-bottom: none; }
    }

    /* ── Mobile tap targets ≥ 44px (P1) ── */
    @media (max-width: 480px) {
      .mx-pdf     { padding: 10px 14px; font-size: 13px; }
      .mx-btn-out { padding: 12px 18px; font-size: 14px; }
      .ms-btn-out { padding: 12px 18px; font-size: 14px; }
      .btn-login  { padding: 11px 16px !important; font-size: 14px !important; }
    }
    /* ── Prevent iOS auto-zoom on input focus (min 16px) ── */
    @media (max-width: 768px) {
      input:not([type="checkbox"]):not([type="radio"]):not([type="range"]),
      textarea,
      select { font-size: 16px !important; }
    }

.wt-line { max-height:0; overflow:hidden; animation:wtReveal .04s forwards; }
@keyframes wtReveal { to { max-height:4em; } }
.wt-line[data-delay="0s"] { animation-delay: 0s; }
.wt-line[data-delay=".8s"] { animation-delay: .8s; }
.wt-line[data-delay="1.5s"] { animation-delay: 1.5s; }
.wt-line[data-delay="2.1s"] { animation-delay: 2.1s; }
.wt-line[data-delay="2.8s"] { animation-delay: 2.8s; }
        .wt-cur { display:inline-block;width:2px;height:.9em;background:#E63946;margin-left:2px;vertical-align:text-bottom;animation:wtBlink 1s step-end infinite;animation-delay:2.1s; }
        @keyframes wtBlink { 0%,100%{opacity:1}50%{opacity:0} }
        /* ── Mobile tap targets ≥ 44px (P1) ── */
    @media (max-width: 480px) {
      .mx-pdf     { padding: 10px 14px; font-size: 13px; }
      .mx-btn-out { padding: 12px 18px; font-size: 14px; }
      .ms-btn-out { padding: 12px 18px; font-size: 14px; }
      .btn-login  { padding: 11px 16px !important; font-size: 14px !important; }
    }
    /* ── Prevent iOS auto-zoom on input focus (min 16px) ── */
    @media (max-width: 768px) {
      input:not([type="checkbox"]):not([type="radio"]):not([type="range"]),
      textarea,
      select { font-size: 16px !important; }
    }

/* ── Newsletter Section ── */
.newsletter-section {
  padding: 80px 0;
  background: radial-gradient(circle, rgba(0,0,0,.055) 1px, transparent 1px), var(--bg);
  background-size: 22px 22px;
  border-top: 1px solid var(--border);
}
.newsletter-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 18px;
}
.newsletter-tag-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
  display: inline-block;
}
.newsletter-title {
  font-family: 'Sora', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 14px;
  line-height: 1.2;
}
.newsletter-desc {
  color: var(--text-soft);
  font-size: 16px;
  margin-bottom: 36px;
  line-height: 1.6;
}
.newsletter-form {
  display: flex;
  gap: 10px;
  max-width: 460px;
  margin: 0 auto 16px;
}
.newsletter-input {
  flex: 1;
  padding: 14px 18px;
  border: 2px solid var(--border);
  border-radius: 12px;
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  background: var(--card);
  color: var(--dark);
  outline: none;
  transition: border-color 0.2s;
}
.newsletter-confirm {
  display: none;
  color: var(--mint-dark);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
}
.newsletter-privacy {
  font-size: 12px;
  color: var(--text-muted);
}
.newsletter-privacy a {
  color: var(--text-muted);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ── Terminal mockup ── */
.terminal-window {
  background: #1D1D1F;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.22);
}
.terminal-titlebar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 13px 18px;
  background: #2A2A2C;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.terminal-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  flex-shrink: 0;
}
.terminal-dot-red { background: #FF5F57; }
.terminal-dot-yellow { background: #FFBD2E; }
.terminal-dot-green { background: #28CA41; }
.terminal-title {
  font-family: 'Courier New', monospace;
  font-size: 14px;
  font-weight: 700;
  color: rgba(255,255,255,.58);
  margin-left: 8px;
}
.terminal-body {
  padding: 22px 24px;
  font-family: 'Courier New', monospace;
  font-size: 14px;
  line-height: 1.9;
  font-weight: 700;
  color: rgba(255,255,255,.96);
}
.terminal-prompt { color: #FFC940; }
.terminal-success { color: #7FFF00; }
.terminal-muted { color: rgba(255,255,255,.4); }
.terminal-cyan { color: #00BFFF; }
.terminal-pink { color: #EA40C2; }
.terminal-plan { color: #00BFFF; font-weight: 700; }
.terminal-bar-empty { color: rgba(255,255,255,.22); }
.terminal-pct { color: rgba(255,255,255,.5); font-size: 14px; }
.terminal-eta { color: rgba(255,255,255,.45); font-size: 14px; transition: color .3s ease; }
.terminal-retry {
  display: none;
  background: transparent;
  border: 1px solid rgba(255,255,255,.3);
  color: rgba(255,255,255,.7);
  font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace;
  font-size: 12px;
  padding: 2px 8px;
  border-radius: 4px;
  cursor: pointer;
  transition: all .2s ease;
}
.terminal-retry:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.5);
  color: #fff;
}
#why-eta-text { display: none; }
.terminal-demo {
  color: rgba(255,255,255,.35);
  font-style: italic;
}
.terminal-real {
  background: transparent;
  border: 1px solid rgba(0,191,255,.5);
  color: #00BFFF;
  font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace;
  font-size: 12px;
  padding: 2px 8px;
  border-radius: 4px;
  cursor: pointer;
  transition: all .2s ease;
}
.terminal-real:hover {
  background: rgba(0,191,255,.15);
  border-color: #00BFFF;
}

/* ── About section SVG ── */
.about-svg {
  width: 70%;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* ── Link with underline offset ── */
.link-underline-offset {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.nl-submit { padding: 13px 26px; background: #FAFAFA; color: var(--red);
    border: 2px solid var(--red); border-radius: 14px;
    font-family: 'Outfit', sans-serif; font-size: 15px; font-weight: 700; cursor: pointer; white-space: nowrap;
    transition: background .2s, color .2s; }
  .nl-submit:hover { background: var(--red); color: white; }

/* ── Speedtest link ── */
.speedtest-link {
  display: block;
  text-align: center;
  margin-top: 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--red);
  text-decoration: none;
  transition: opacity 0.2s;
}
.speedtest-link:hover { opacity: 0.8; }

.fv2 { background: var(--dark); color: rgba(255,255,255,.7); border-top: 3px solid var(--red); }

  .fv2-mid {
    max-width: 1180px; margin: 0 auto; padding: 64px 24px 32px;
    display: grid; grid-template-columns: 2.2fr 1fr 1fr 1fr; gap: 40px;
  }
  .fv2-brand { padding-right: 56px; }
  .fv2-brand img { height: 26px; display: block; margin-bottom: 14px; }
  .fv2-brand p { font-size: 14px; color: rgba(255,255,255,.5); line-height: 1.65; margin-bottom: 18px; max-width: 460px; }
  .fv2-brand-tp { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; }
  .fv2-brand-tp .stars { display: flex; gap: 3px; }
  .fv2-brand-tp .stars span {
    width: 22px; height: 22px; background: #00B67A; border-radius: 3px;
    display: inline-flex; align-items: center; justify-content: center;
  }
  .fv2-brand-tp .stars svg { width: 14px; height: 14px; fill: white; }
  .fv2-brand-tp .label { font-size: 14px; color: rgba(255,255,255,.6); font-weight: 600; transition: color .2s; }
  .fv2-brand-tp:hover .label { color: white; }
  .fv2-col h4 { color: white; font-family: 'Sora', sans-serif; font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.6px; margin-bottom: 16px; }
  .fv2-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
  .fv2-col a { color: rgba(255,255,255,.6); text-decoration: none; font-size: 14px; transition: color .2s; }
  .fv2-col a:hover { color: white; }
  .fv2-bottom {
    max-width: 1180px; margin: 0 auto; padding: 20px 24px 28px;
    border-top: 1px solid rgba(255,255,255,.08);
    display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
    font-size: 12px; color: rgba(255,255,255,.4);
  }
  .fv2-bottom-legal { display: flex; gap: 16px; flex-wrap: wrap; }
  .fv2-bottom-legal a { color: rgba(255,255,255,.4); text-decoration: none; font-size: 12px; }
  .fv2-bottom-legal a:hover { color: rgba(255,255,255,.7); }
  @media (max-width: 860px) {
    .fv2-mid { grid-template-columns: 1fr 1fr; }
    .fv2-brand { padding-right: 0; }
  }
  @media (max-width: 520px) {
    .fv2-mid { grid-template-columns: 1fr; }
  }
