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

    :root {
      --bg:        #030712;
      --surface:   #0f172a;
      --card:      #1e293b;
      --border:    rgba(148,163,184,.1);
      --indigo:    #6366f1;
      --violet:    #7c3aed;
      --cyan:      #06b6d4;
      --green:     #10b981;
      --amber:     #f59e0b;
      --rose:      #f43f5e;
      --text:      #f1f5f9;
      --muted:     #94a3b8;
      --subtle:    #475569;
      --gradient:  linear-gradient(135deg, #6366f1 0%, #7c3aed 50%, #06b6d4 100%);
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Inter', system-ui, sans-serif;
      background: var(--bg);
      color: var(--text);
      line-height: 1.6;
      overflow-x: hidden;
    }

    /* ─── Scrollbar ──────────────────────────── */
    ::-webkit-scrollbar { width: 6px; }
    ::-webkit-scrollbar-track { background: var(--surface); }
    ::-webkit-scrollbar-thumb { background: var(--subtle); border-radius: 3px; }

    /* ─── Nav ──────────────────────────────── */
    nav {
      position: sticky;
      top: 0;
      z-index: 100;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 1rem 2.5rem;
      backdrop-filter: blur(24px) saturate(1.8);
      -webkit-backdrop-filter: blur(24px) saturate(1.8);
      background: rgba(3,7,18,.8);
      border-bottom: 1px solid var(--border);
    }

    .nav-logo {
      display: flex;
      align-items: center;
      gap: .65rem;
      text-decoration: none;
    }

.nav-logo-mark {
  width: 2.1rem;
  height: 2.1rem;
  border-radius: .5rem;
  background: rgba(255,255,255,.06);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  overflow: hidden;
  border: 1px solid rgba(148,163,184,.15);
}

.nav-logo-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

    .nav-logo-text {
      font-family: 'Space Grotesk', sans-serif;
      font-weight: 700;
      font-size: 1.15rem;
      color: var(--text);
      letter-spacing: .04em;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 2.25rem;
      list-style: none;
    }

    .nav-links a {
      color: var(--muted);
      text-decoration: none;
      font-size: .9rem;
      font-weight: 500;
      transition: color .2s;
    }

    .nav-links a:hover { color: var(--text); }

    .nav-cta {
      padding: .5rem 1.25rem !important;
      background: var(--indigo) !important;
      color: #fff !important;
      border-radius: .5rem;
      font-weight: 600 !important;
      transition: background .2s, transform .15s !important;
    }

    .nav-cta:hover { background: #4f46e5 !important; transform: translateY(-1px); color: #fff !important; }

    .nav-hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      background: none;
      border: none;
      padding: .4rem;
    }

    .nav-hamburger span {
      display: block;
      width: 22px;
      height: 2px;
      background: var(--text);
      border-radius: 2px;
      transition: transform .3s, opacity .3s;
    }

    .nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .nav-hamburger.open span:nth-child(2) { opacity: 0; }
    .nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    .checkout-backdrop {
      position: fixed;
      inset: 0;
      display: none;
      align-items: center;
      justify-content: center;
      padding: 1.25rem;
      background: rgba(2, 6, 23, .78);
      backdrop-filter: blur(12px);
      z-index: 220;
    }

    .checkout-backdrop.open { display: flex; }

    .checkout-modal {
      width: min(100%, 32rem);
      background: rgba(15, 23, 42, .96);
      border: 1px solid rgba(148,163,184,.18);
      border-radius: 1.4rem;
      box-shadow: 0 30px 80px rgba(0,0,0,.45);
      padding: 1.4rem;
    }

    .checkout-header {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 1rem;
      margin-bottom: 1rem;
    }

    .checkout-title {
      font-family: 'Space Grotesk', sans-serif;
      font-size: 1.35rem;
      font-weight: 700;
      margin-bottom: .3rem;
    }

    .checkout-copy {
      color: var(--muted);
      font-size: .92rem;
      line-height: 1.7;
    }

    .checkout-close {
      border: 0;
      background: rgba(255,255,255,.06);
      color: var(--text);
      width: 2.2rem;
      height: 2.2rem;
      border-radius: 999px;
      cursor: pointer;
      font-size: 1rem;
      flex-shrink: 0;
    }

    .checkout-plan {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      padding: .9rem 1rem;
      border-radius: 1rem;
      background: rgba(255,255,255,.04);
      border: 1px solid rgba(148,163,184,.12);
      margin-bottom: 1rem;
    }

    .checkout-plan strong { display: block; font-size: 1rem; }
    .checkout-plan span { color: var(--muted); font-size: .85rem; }

    .checkout-form {
      display: grid;
      gap: .9rem;
    }

    .checkout-field label {
      display: block;
      color: var(--muted);
      font-size: .84rem;
      margin-bottom: .42rem;
    }

    .checkout-field input {
      width: 100%;
      border-radius: .9rem;
      border: 1px solid rgba(148,163,184,.18);
      background: rgba(255,255,255,.04);
      color: var(--text);
      padding: .9rem 1rem;
      outline: none;
    }

    .checkout-field input:focus {
      border-color: rgba(99,102,241,.6);
      box-shadow: 0 0 0 3px rgba(99,102,241,.16);
    }

    .checkout-note,
    .checkout-status {
      font-size: .82rem;
      line-height: 1.65;
      color: var(--muted);
    }

    .checkout-status { min-height: 1.4rem; }
    .checkout-status.error { color: #fca5a5; }
    .checkout-status.success { color: #86efac; }

    .checkout-submit {
      width: 100%;
      border: 0;
      border-radius: .95rem;
      background: var(--gradient);
      color: #fff;
      padding: .95rem 1rem;
      font-weight: 700;
      cursor: pointer;
    }

    .checkout-submit:disabled {
      opacity: .65;
      cursor: wait;
    }

    /* ─── Hero ──────────────────────────────── */
    .hero {
      position: relative;
      min-height: 100vh;
      display: flex;
      align-items: center;
      overflow: hidden;
      padding: 5rem 2.5rem 4rem;
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      z-index: 0;
    }

    .hero-bg::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 80% 60% at 65% 35%, rgba(99,102,241,.18) 0%, transparent 60%),
        radial-gradient(ellipse 55% 45% at 85% 75%, rgba(6,182,212,.12) 0%, transparent 55%),
        radial-gradient(ellipse 50% 40% at 10% 80%, rgba(124,58,237,.1) 0%, transparent 50%);
    }

    .hero-grid {
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(148,163,184,.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(148,163,184,.04) 1px, transparent 1px);
      background-size: 40px 40px;
      mask-image: radial-gradient(ellipse 85% 75% at 65% 40%, black 20%, transparent 70%);
      -webkit-mask-image: radial-gradient(ellipse 85% 75% at 65% 40%, black 20%, transparent 70%);
    }

    .hero-container {
      position: relative;
      z-index: 1;
      max-width: 1260px;
      margin: 0 auto;
      width: 100%;
      display: grid;
      grid-template-columns: 1.1fr 1fr;
      gap: 5rem;
      align-items: center;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: .5rem;
      padding: .4rem 1rem;
      border-radius: 999px;
      border: 1px solid rgba(99,102,241,.35);
      background: rgba(99,102,241,.1);
      color: #a5b4fc;
      font-size: .75rem;
      font-weight: 600;
      letter-spacing: .06em;
      text-transform: uppercase;
      margin-bottom: 1.75rem;
    }

    .hero-badge-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: #a5b4fc;
      animation: pulse-dot 2s ease-in-out infinite;
    }

    @keyframes pulse-dot {
      0%, 100% { opacity: 1; transform: scale(1); }
      50% { opacity: .4; transform: scale(.75); }
    }

    .hero h1 {
      font-family: 'Space Grotesk', sans-serif;
      font-size: clamp(2.8rem, 5.5vw, 4.8rem);
      font-weight: 700;
      line-height: 1.06;
      letter-spacing: -.025em;
      margin-bottom: 1.5rem;
    }

    .gradient-text {
      background: var(--gradient);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .hero-description {
      font-size: 1.1rem;
      color: var(--muted);
      max-width: 490px;
      margin-bottom: 2.5rem;
      line-height: 1.75;
    }

    .hero-buttons {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
      margin-bottom: 3rem;
    }

    /* Store Buttons */
    .btn-store {
      display: inline-flex;
      align-items: center;
      gap: .85rem;
      padding: .85rem 1.6rem;
      border-radius: .85rem;
      text-decoration: none;
      transition: transform .2s, box-shadow .2s;
      border: 1px solid transparent;
      cursor: pointer;
    }

    .btn-store:hover {
      transform: translateY(-2px);
      box-shadow: 0 12px 35px rgba(0,0,0,.5);
    }

    .btn-store-apple {
      background: #f1f5f9;
      color: #0f172a;
      border-color: transparent;
    }

    .btn-store-google {
      background: rgba(255,255,255,.05);
      border-color: rgba(255,255,255,.15);
      color: var(--text);
    }

    .btn-store-google:hover { background: rgba(255,255,255,.09); }

    .btn-store-label { display: flex; flex-direction: column; gap: .05rem; }

    .btn-store-sublabel {
      font-size: .58rem;
      font-weight: 400;
      opacity: .65;
      line-height: 1;
      text-transform: uppercase;
      letter-spacing: .06em;
    }

    .btn-store-name {
      font-size: .95rem;
      font-weight: 700;
      line-height: 1.2;
    }

    /* Social proof */
    .hero-social-proof {
      display: flex;
      align-items: center;
      gap: .9rem;
    }

    .hero-avatars {
      display: flex;
    }

    .hero-avatars span {
      width: 34px;
      height: 34px;
      border-radius: 50%;
      background: var(--gradient);
      display: grid;
      place-items: center;
      font-size: .65rem;
      font-weight: 700;
      color: #fff;
      border: 2.5px solid var(--bg);
      margin-left: -9px;
      flex-shrink: 0;
    }

    .hero-avatars span:first-child { margin-left: 0; }

    .hero-proof-text {
      font-size: .87rem;
      color: var(--muted);
    }

    .hero-proof-text strong { color: var(--text); }

    /* ─── Phone Mockup ──────────────────────── */
    .hero-visual {
      display: flex;
      justify-content: center;
      align-items: center;
      position: relative;
      padding: 3rem 3rem;
    }

    .phone-glow {
      position: absolute;
      width: 340px;
      height: 440px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(99,102,241,.28) 0%, transparent 70%);
      filter: blur(50px);
      pointer-events: none;
    }

    @keyframes float {
      0%, 100% { transform: translateY(0px); }
      50% { transform: translateY(-18px); }
    }

    .phone {
      position: relative;
      z-index: 1;
      width: 268px;
      height: 540px;
      background: #060c1c;
      border-radius: 46px;
      border: 2px solid rgba(148,163,184,.15);
      box-shadow:
        0 0 0 7px rgba(15,23,42,.95),
        0 0 0 8px rgba(148,163,184,.08),
        0 50px 100px rgba(0,0,0,.75),
        0 0 80px rgba(99,102,241,.12);
      overflow: hidden;
      animation: float 7s ease-in-out infinite;
    }

    .phone-notch {
      width: 90px;
      height: 26px;
      background: #060c1c;
      border-bottom-left-radius: 16px;
      border-bottom-right-radius: 16px;
      margin: 0 auto;
      position: relative;
      z-index: 2;
    }

    .phone-screen {
      position: absolute;
      inset: 0;
      padding: 34px 14px 12px;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .phone-status {
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: .5rem;
      color: var(--muted);
      padding: 0 6px;
    }

    .phone-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 4px;
    }

    .phone-greeting { font-size: .55rem; color: var(--muted); }

    .phone-title {
      font-family: 'Space Grotesk', sans-serif;
      font-size: .9rem;
      font-weight: 700;
      color: var(--text);
    }

    .phone-avatar {
      width: 30px;
      height: 30px;
      border-radius: 50%;
      background: var(--gradient);
      display: grid;
      place-items: center;
      font-size: .6rem;
      font-weight: 700;
      color: #fff;
    }

    /* Calorie ring */
    .phone-ring {
      width: 104px;
      height: 104px;
      margin: 2px auto;
      position: relative;
      flex-shrink: 0;
    }

    .phone-ring svg { transform: rotate(-90deg); }

    .ring-track { fill: none; stroke: rgba(99,102,241,.18); stroke-width: 9; }

    .ring-fill {
      fill: none;
      stroke: url(#ringGrad);
      stroke-width: 9;
      stroke-linecap: round;
      stroke-dasharray: 263;
      stroke-dashoffset: 82;
    }

    .ring-label {
      position: absolute;
      inset: 0;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }

    .ring-value {
      font-family: 'Space Grotesk', sans-serif;
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--text);
      line-height: 1;
    }

    .ring-unit { font-size: .48rem; color: var(--muted); margin-top: 2px; }

    /* Mini stats */
    .phone-stats {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 5px;
    }

    .phone-stat {
      background: rgba(255,255,255,.04);
      border: 1px solid rgba(255,255,255,.07);
      border-radius: 10px;
      padding: 8px 6px;
      text-align: center;
    }

    .phone-stat-value {
      font-family: 'Space Grotesk', sans-serif;
      font-size: .82rem;
      font-weight: 700;
      color: var(--text);
      display: block;
    }

    .phone-stat-label {
      font-size: .45rem;
      color: var(--muted);
      text-transform: uppercase;
      letter-spacing: .05em;
    }

    /* Workout card */
    .phone-workout-card {
      background: linear-gradient(135deg, rgba(99,102,241,.2), rgba(6,182,212,.13));
      border: 1px solid rgba(99,102,241,.28);
      border-radius: 14px;
      padding: 12px;
      flex: 1;
      min-height: 0;
    }

    .phone-workout-title {
      font-family: 'Space Grotesk', sans-serif;
      font-size: .78rem;
      font-weight: 700;
      color: var(--text);
      margin-bottom: 3px;
    }

    .phone-workout-sub { font-size: .52rem; color: var(--muted); margin-bottom: 10px; }

    .phone-exercise-bars { display: flex; flex-direction: column; gap: 6px; }

    .phone-bar-row { display: flex; align-items: center; gap: 7px; }

    .phone-bar-label { font-size: .47rem; color: var(--muted); width: 52px; flex-shrink: 0; }

    .phone-bar-track {
      flex: 1;
      height: 4px;
      background: rgba(255,255,255,.07);
      border-radius: 2px;
      overflow: hidden;
    }

    .phone-bar-fill { height: 100%; border-radius: 2px; background: var(--gradient); }

    /* Phone nav */
    .phone-nav {
      display: flex;
      justify-content: space-around;
      align-items: center;
      padding: 10px 6px 6px;
      background: rgba(255,255,255,.03);
      border-top: 1px solid rgba(255,255,255,.06);
      border-radius: 0 0 44px 44px;
      flex-shrink: 0;
    }

    .phone-nav-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 3px;
    }

    .phone-nav-dot { width: 18px; height: 3px; border-radius: 2px; background: rgba(255,255,255,.14); }
    .phone-nav-dot.active { background: var(--indigo); }
    .phone-nav-label { font-size: .38rem; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; }
    .phone-nav-label.active { color: #a5b4fc; }

    /* Floating badges */
    .float-badge {
      position: absolute;
      padding: .55rem .9rem;
      border-radius: .8rem;
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      display: flex;
      align-items: center;
      gap: .5rem;
      font-size: .78rem;
      font-weight: 600;
      white-space: nowrap;
      z-index: 2;
    }

    .float-badge-ai {
      top: 8%;
      right: -10px;
      background: rgba(99,102,241,.25);
      border: 1px solid rgba(99,102,241,.4);
      color: #a5b4fc;
      animation: float 7s ease-in-out infinite;
      animation-delay: -2.5s;
    }

    .float-badge-macro {
      bottom: 22%;
      left: -20px;
      background: rgba(16,185,129,.18);
      border: 1px solid rgba(16,185,129,.35);
      color: #6ee7b7;
      animation: float 7s ease-in-out infinite;
      animation-delay: -5s;
    }

    .float-badge-pr {
      top: 52%;
      right: -15px;
      background: rgba(245,158,11,.16);
      border: 1px solid rgba(245,158,11,.35);
      color: #fcd34d;
      animation: float 7s ease-in-out infinite;
      animation-delay: -1.5s;
    }

    /* ─── Stats Bar ──────────────────────────── */
    .stats-bar {
      padding: 3.5rem 2.5rem;
      background: rgba(15,23,42,.55);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }

    .stats-grid {
      max-width: 960px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 2rem;
      text-align: center;
    }

    .stat-item-value {
      font-family: 'Space Grotesk', sans-serif;
      font-size: 2.6rem;
      font-weight: 700;
      background: var(--gradient);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      line-height: 1.1;
    }

    .stat-item-label {
      font-size: .83rem;
      color: var(--muted);
      margin-top: .35rem;
      font-weight: 500;
    }

    /* ─── Section Shared ─────────────────────── */
    section { padding: 6.5rem 2.5rem; }

    .section-inner { max-width: 1260px; margin: 0 auto; }

    .section-badge {
      display: inline-flex;
      align-items: center;
      gap: .4rem;
      padding: .3rem .85rem;
      border-radius: 999px;
      font-size: .7rem;
      font-weight: 600;
      letter-spacing: .08em;
      text-transform: uppercase;
      margin-bottom: 1.1rem;
    }

    .badge-indigo { background: rgba(99,102,241,.12); border: 1px solid rgba(99,102,241,.25); color: #a5b4fc; }
    .badge-cyan   { background: rgba(6,182,212,.1);   border: 1px solid rgba(6,182,212,.25);   color: #67e8f9; }
    .badge-green  { background: rgba(16,185,129,.1);  border: 1px solid rgba(16,185,129,.25);  color: #6ee7b7; }

    .section-title {
      font-family: 'Space Grotesk', sans-serif;
      font-size: clamp(2.1rem, 4vw, 3.2rem);
      font-weight: 700;
      letter-spacing: -.022em;
      line-height: 1.15;
      margin-bottom: 1rem;
    }

    .section-subtitle {
      font-size: 1.05rem;
      color: var(--muted);
      max-width: 560px;
      line-height: 1.75;
    }

    /* ─── Features ──────────────────────────── */
    .features-header { text-align: center; margin-bottom: 4.5rem; }

    .features-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
    }

    .feature-card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 1.3rem;
      padding: 2.25rem;
      transition: border-color .3s, transform .3s, box-shadow .3s;
      position: relative;
      overflow: hidden;
    }

    .feature-card::after {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 1px;
      background: var(--gradient);
      opacity: 0;
      transition: opacity .3s;
    }

    .feature-card:hover {
      border-color: rgba(99,102,241,.35);
      transform: translateY(-5px);
      box-shadow: 0 25px 50px rgba(0,0,0,.35), 0 0 0 1px rgba(99,102,241,.12);
    }

    .feature-card:hover::after { opacity: 1; }

    .feature-icon {
      width: 54px;
      height: 54px;
      border-radius: 15px;
      display: grid;
      place-items: center;
      margin-bottom: 1.4rem;
    }

    .feature-card h3 {
      font-family: 'Space Grotesk', sans-serif;
      font-size: 1.1rem;
      font-weight: 600;
      margin-bottom: .55rem;
      color: var(--text);
    }

    .feature-card p { font-size: .9rem; color: var(--muted); line-height: 1.68; }

    .feature-tag {
      display: inline-block;
      margin-top: 1.1rem;
      padding: .22rem .65rem;
      border-radius: 999px;
      font-size: .68rem;
      font-weight: 600;
      letter-spacing: .03em;
    }

    /* ─── How It Works ──────────────────────── */
    .how-section {
      background: rgba(15,23,42,.4);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }

    .how-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
      margin-top: 4rem;
      position: relative;
    }

    .how-connector {
      position: absolute;
      top: 3.25rem;
      left: calc(33.33% - 0.5px);
      right: calc(33.33% - 0.5px);
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(99,102,241,.4), rgba(99,102,241,.4), transparent);
      pointer-events: none;
    }

    .how-step {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 1.3rem;
      padding: 2.5rem 2rem;
      text-align: center;
      transition: border-color .3s, transform .3s;
    }

    .how-step:hover {
      border-color: rgba(99,102,241,.3);
      transform: translateY(-4px);
    }

    .how-number {
      width: 52px;
      height: 52px;
      border-radius: 50%;
      background: var(--gradient);
      color: #fff;
      font-family: 'Space Grotesk', sans-serif;
      font-weight: 700;
      font-size: 1.2rem;
      display: grid;
      place-items: center;
      margin: 0 auto 1.4rem;
      box-shadow: 0 8px 20px rgba(99,102,241,.35);
    }

    .how-step h3 {
      font-family: 'Space Grotesk', sans-serif;
      font-size: 1.08rem;
      font-weight: 600;
      margin-bottom: .6rem;
      color: var(--text);
    }

    .how-step p { font-size: .88rem; color: var(--muted); line-height: 1.65; }

    /* ─── Pricing ──────────────────────────── */
    .pricing-header { text-align: center; margin-bottom: 1.75rem; }

    .pricing-toggle {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 1rem;
      margin-bottom: 4rem;
    }

    .toggle-track {
      width: 50px;
      height: 28px;
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 999px;
      cursor: pointer;
      position: relative;
      transition: background .25s, border-color .25s;
      flex-shrink: 0;
    }

    .toggle-track.active { background: var(--indigo); border-color: var(--indigo); }

    .toggle-thumb {
      position: absolute;
      top: 4px; left: 4px;
      width: 18px; height: 18px;
      border-radius: 50%;
      background: #fff;
      transition: transform .25s;
      box-shadow: 0 1px 3px rgba(0,0,0,.3);
    }

    .toggle-track.active .toggle-thumb { transform: translateX(22px); }

    .toggle-label { font-size: .9rem; color: var(--muted); font-weight: 500; user-select: none; }
    .toggle-label.active-label { color: var(--text); font-weight: 600; }

    .pricing-save {
      background: rgba(16,185,129,.14);
      color: #6ee7b7;
      border: 1px solid rgba(16,185,129,.28);
      padding: .22rem .7rem;
      border-radius: 999px;
      font-size: .7rem;
      font-weight: 600;
    }

    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
      align-items: start;
    }

    .pricing-card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 1.6rem;
      padding: 2.75rem 2.25rem;
      position: relative;
      transition: transform .3s, box-shadow .3s, border-color .3s;
    }

    .pricing-card:hover { transform: translateY(-5px); box-shadow: 0 20px 50px rgba(0,0,0,.3); }

    .pricing-card.featured {
      background: linear-gradient(160deg, #1b2040 0%, #0e1428 100%);
      border: 1px solid rgba(99,102,241,.45);
      box-shadow:
        0 0 0 1px rgba(99,102,241,.18),
        0 30px 70px rgba(0,0,0,.45),
        0 0 100px rgba(99,102,241,.1);
      transform: scale(1.05);
    }

    .pricing-card.featured:hover { transform: scale(1.05) translateY(-5px); }

    .pricing-popular {
      position: absolute;
      top: -14px;
      left: 50%;
      transform: translateX(-50%);
      padding: .32rem 1.3rem;
      background: var(--gradient);
      border-radius: 999px;
      font-size: .7rem;
      font-weight: 700;
      color: #fff;
      letter-spacing: .07em;
      text-transform: uppercase;
      white-space: nowrap;
      box-shadow: 0 4px 16px rgba(99,102,241,.4);
    }

    .pricing-plan-name {
      font-family: 'Space Grotesk', sans-serif;
      font-size: 1.05rem;
      font-weight: 600;
      color: var(--muted);
      margin-bottom: .25rem;
    }

    .pricing-price { display: flex; align-items: flex-end; gap: .3rem; margin: 1.35rem 0; line-height: 1; }

    .pricing-currency { font-size: 1.2rem; font-weight: 600; color: var(--muted); align-self: flex-start; margin-top: .45rem; }

    .pricing-amount {
      font-family: 'Space Grotesk', sans-serif;
      font-size: 3.8rem;
      font-weight: 700;
      color: var(--text);
      line-height: 1;
      transition: opacity .2s;
    }

    .pricing-period { font-size: .85rem; color: var(--muted); padding-bottom: .25rem; }

    .pricing-description { font-size: .88rem; color: var(--muted); margin-bottom: 2.25rem; line-height: 1.65; }

    .pricing-btn {
      display: block;
      width: 100%;
      padding: .9rem;
      border-radius: .8rem;
      font-size: .95rem;
      font-weight: 600;
      text-align: center;
      text-decoration: none;
      transition: transform .2s, box-shadow .2s, background .2s, border-color .2s;
      cursor: pointer;
      border: none;
      margin-bottom: 2.25rem;
      letter-spacing: .01em;
    }

    .pricing-btn-outline {
      background: transparent;
      border: 1px solid var(--border);
      color: var(--text);
    }

    .pricing-btn-outline:hover {
      border-color: rgba(99,102,241,.5);
      background: rgba(99,102,241,.08);
    }

    .pricing-btn-primary {
      background: var(--gradient);
      color: #fff;
      box-shadow: 0 4px 20px rgba(99,102,241,.4);
    }

    .pricing-btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 32px rgba(99,102,241,.55);
    }

    .pricing-features { list-style: none; display: flex; flex-direction: column; gap: .9rem; }

    .pricing-features li {
      display: flex;
      align-items: flex-start;
      gap: .8rem;
      font-size: .89rem;
      color: var(--muted);
    }

    .pricing-features li.included { color: var(--text); }
    .pricing-features li.excluded { opacity: .4; text-decoration: line-through; }

    .check-icon {
      width: 20px; height: 20px;
      border-radius: 50%;
      background: rgba(16,185,129,.15);
      display: grid; place-items: center;
      flex-shrink: 0;
      color: #10b981;
      font-size: .62rem;
      font-weight: 700;
    }

    .x-icon {
      width: 20px; height: 20px;
      border-radius: 50%;
      background: rgba(100,116,139,.1);
      display: grid; place-items: center;
      flex-shrink: 0;
      color: var(--subtle);
      font-size: .62rem;
    }

    /* ─── Testimonials ──────────────────────── */
    .testimonials-section {
      background: rgba(15,23,42,.4);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }

    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
      margin-top: 3.5rem;
    }

    .testimonial-card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 1.3rem;
      padding: 2.25rem;
      transition: transform .3s, border-color .3s;
    }

    .testimonial-card:hover { transform: translateY(-4px); border-color: rgba(99,102,241,.25); }

    .testimonial-stars { display: flex; gap: .2rem; margin-bottom: 1rem; color: var(--amber); font-size: 1rem; }

    .testimonial-text {
      font-size: .93rem;
      color: var(--text);
      line-height: 1.75;
      margin-bottom: 1.6rem;
      font-style: italic;
      opacity: .9;
    }

    .testimonial-author { display: flex; align-items: center; gap: .8rem; }

    .testimonial-avatar {
      width: 42px; height: 42px;
      border-radius: 50%;
      background: var(--gradient);
      display: grid; place-items: center;
      font-weight: 700;
      font-size: .85rem;
      color: #fff;
      flex-shrink: 0;
    }

    .testimonial-name { font-weight: 600; font-size: .9rem; color: var(--text); }
    .testimonial-role { font-size: .78rem; color: var(--muted); margin-top: .1rem; }

    /* ─── Download CTA ──────────────────────── */
    .download-section {
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .download-bg {
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 75% 65% at 50% 50%, rgba(99,102,241,.14) 0%, transparent 65%);
      pointer-events: none;
    }

    .download-bg::before {
      content: '';
      position: absolute;
      top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      width: 600px; height: 600px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(6,182,212,.06) 0%, transparent 65%);
    }

    .download-inner {
      position: relative;
      z-index: 1;
      max-width: 700px;
      margin: 0 auto;
    }

    .download-title {
      font-family: 'Space Grotesk', sans-serif;
      font-size: clamp(2.2rem, 4.5vw, 3.2rem);
      font-weight: 700;
      letter-spacing: -.022em;
      line-height: 1.12;
      margin-bottom: 1rem;
    }

    .download-sub {
      font-size: 1.05rem;
      color: var(--muted);
      margin-bottom: 2.75rem;
      line-height: 1.7;
    }

    .download-buttons {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 1.1rem;
      margin-bottom: 2rem;
    }

    .download-rating {
      display: inline-flex;
      align-items: center;
      gap: .5rem;
      font-size: .85rem;
      color: var(--muted);
    }

    .download-rating strong { color: var(--text); }

    /* ─── Footer ──────────────────────────── */
    footer {
      background: var(--surface);
      border-top: 1px solid var(--border);
      padding: 4rem 2.5rem;
    }

    .footer-inner {
      max-width: 1260px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1.6fr 1fr 1fr 1fr;
      gap: 3.5rem;
    }

    .footer-brand p {
      font-size: .87rem;
      color: var(--muted);
      line-height: 1.7;
      margin-top: .85rem;
      max-width: 270px;
    }

    .footer-col h4 {
      font-family: 'Space Grotesk', sans-serif;
      font-size: .8rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: .08em;
      color: var(--subtle);
      margin-bottom: 1.1rem;
    }

    .footer-links { list-style: none; display: flex; flex-direction: column; gap: .7rem; }

    .footer-links a {
      color: var(--muted);
      text-decoration: none;
      font-size: .87rem;
      transition: color .2s;
    }

    .footer-links a:hover { color: var(--text); }

    .footer-bottom {
      max-width: 1260px;
      margin: 2.5rem auto 0;
      padding-top: 2rem;
      border-top: 1px solid var(--border);
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: .82rem;
      color: var(--muted);
      flex-wrap: wrap;
      gap: 1rem;
    }

    /* ─── Animations ──────────────────────── */
    .fade-up {
      opacity: 0;
      transform: translateY(32px);
      transition: opacity .65s ease, transform .65s ease;
    }

    .fade-up.visible { opacity: 1; transform: translateY(0); }

    .stagger-1 { transition-delay: .1s; }
    .stagger-2 { transition-delay: .2s; }
    .stagger-3 { transition-delay: .3s; }
    .stagger-4 { transition-delay: .4s; }
    .stagger-5 { transition-delay: .5s; }

    /* ─── Hero badges row ──────────────────── */
    .hero-badges-row {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: .65rem;
      margin-bottom: 1.75rem;
    }

    .hero-badge-trial {
      background: rgba(16,185,129,.1);
      border-color: rgba(16,185,129,.3);
      color: #6ee7b7;
      animation: none;
    }

    .hero-badge-trial .hero-badge-dot { display: none; }

    /* ─── Hero trust strip ─────────────────── */
    .hero-trust {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: .5rem .4rem;
      margin-bottom: 2rem;
      margin-top: -1.5rem;
    }

    .hero-trust-item {
      display: inline-flex;
      align-items: center;
      gap: .3rem;
      font-size: .8rem;
      color: var(--muted);
    }

    .hero-trust-item svg { opacity: .6; flex-shrink: 0; }
    .hero-trust-sep { color: var(--subtle); font-size: .75rem; }

    /* ─── Platform strip ──────────────────── */
    .platform-strip {
      display: flex;
      align-items: center;
      justify-content: center;
      flex-wrap: wrap;
      gap: 1rem;
      margin-top: 3.5rem;
      padding-top: 2.5rem;
      border-top: 1px solid var(--border);
    }

    .platform-strip-label {
      font-size: .8rem;
      color: var(--muted);
      font-weight: 500;
    }

    .platform-badges {
      display: flex;
      align-items: center;
      gap: .65rem;
    }

    .platform-badge {
      display: inline-flex;
      align-items: center;
      gap: .4rem;
      padding: .35rem .9rem;
      border-radius: 999px;
      background: rgba(255,255,255,.05);
      border: 1px solid rgba(255,255,255,.1);
      font-size: .78rem;
      color: var(--muted);
      font-weight: 500;
    }

    /* ─── Pricing trial note ──────────────── */
    .pricing-trial-note {
      text-align: center;
      font-size: .75rem;
      color: var(--muted);
      margin-top: -.75rem;
      margin-bottom: 1.75rem;
      opacity: .75;
    }

    /* ─── Pricing footer note ─────────────── */
    .pricing-footer-note {
      text-align: center;
      font-size: .82rem;
      color: var(--muted);
      margin-top: 2.5rem;
      opacity: .7;
    }

    /* ─── FAQ Section ─────────────────────── */
    .faq-section {
      background: rgba(15,23,42,.35);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }

    .faq-list {
      max-width: 760px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: .5rem;
    }

    .faq-item {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 1rem;
      overflow: hidden;
      transition: border-color .25s;
    }

    .faq-item.open {
      border-color: rgba(99,102,241,.3);
    }

    .faq-question {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      padding: 1.25rem 1.5rem;
      background: none;
      border: none;
      color: var(--text);
      font-size: .97rem;
      font-weight: 600;
      text-align: left;
      cursor: pointer;
      font-family: 'Space Grotesk', sans-serif;
    }

    .faq-question:hover { color: #a5b4fc; }

    .faq-icon {
      flex-shrink: 0;
      color: var(--muted);
      transition: transform .3s;
    }

    .faq-item.open .faq-icon { transform: rotate(180deg); }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height .35s ease, padding .35s ease;
      padding: 0 1.5rem;
    }

    .faq-item.open .faq-answer {
      max-height: 300px;
      padding-bottom: 1.4rem;
    }

    .faq-answer p {
      font-size: .9rem;
      color: var(--muted);
      line-height: 1.75;
    }

    /* ─── Toast Notifications ─────────────── */
    .toast-container {
      position: fixed;
      top: 1.25rem;
      right: 1.25rem;
      z-index: 300;
      display: flex;
      flex-direction: column;
      gap: .65rem;
      pointer-events: none;
    }

    .toast {
      pointer-events: all;
      padding: 1rem 1.4rem;
      border-radius: 1rem;
      font-size: .88rem;
      font-weight: 500;
      box-shadow: 0 20px 50px rgba(0,0,0,.45);
      max-width: 340px;
      animation: toast-in .3s ease;
    }

    .toast-success {
      background: rgba(16,185,129,.15);
      border: 1px solid rgba(16,185,129,.35);
      color: #86efac;
    }

    .toast-info {
      background: rgba(99,102,241,.15);
      border: 1px solid rgba(99,102,241,.35);
      color: #a5b4fc;
    }

    @keyframes toast-in {
      from { opacity: 0; transform: translateX(20px); }
      to   { opacity: 1; transform: translateX(0); }
    }

    /* ─── Sticky Mobile CTA ───────────────── */
    .sticky-mobile-cta {
      display: none;
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      background: rgba(3,7,18,.97);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-top: 1px solid rgba(99,102,241,.22);
      padding: .9rem 1.5rem;
      z-index: 150;
      transform: translateY(100%);
      transition: transform .35s cubic-bezier(.4,0,.2,1);
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
    }

    .sticky-mobile-cta.visible { transform: translateY(0); }

    .sticky-cta-copy {
      display: flex;
      flex-direction: column;
      gap: .1rem;
    }

    .sticky-cta-title {
      font-family: 'Space Grotesk', sans-serif;
      font-weight: 700;
      font-size: .95rem;
      color: var(--text);
    }

    .sticky-cta-sub {
      font-size: .72rem;
      color: var(--muted);
    }

    .sticky-cta-btn {
      flex-shrink: 0;
      display: inline-block;
      padding: .7rem 1.4rem;
      border-radius: .75rem;
      background: var(--gradient);
      color: #fff;
      font-weight: 700;
      font-size: .9rem;
      text-decoration: none;
      white-space: nowrap;
      box-shadow: 0 4px 18px rgba(99,102,241,.45);
    }

    /* ─── Responsive ─────────────────────── */
    @media (max-width: 1100px) {
      .hero-container { grid-template-columns: 1fr; text-align: center; gap: 3rem; }
      .hero-description { margin: 0 auto 2.5rem; }
      .hero-buttons { justify-content: center; }
      .hero-social-proof { justify-content: center; }
      .hero-visual { display: none; }
      .features-grid { grid-template-columns: repeat(2, 1fr); }
      .how-grid { grid-template-columns: 1fr; }
      .how-connector { display: none; }
      .pricing-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
      .pricing-card.featured { transform: none; }
      .pricing-card.featured:hover { transform: translateY(-5px); }
      .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
      .footer-inner { grid-template-columns: 1fr 1fr; }
      .stats-grid { grid-template-columns: repeat(2, 1fr); }
    }

    @media (max-width: 640px) {
      nav { padding: .75rem 1.25rem; }
      .nav-links { display: none; flex-direction: column; position: fixed; top: 60px; left: 0; right: 0; background: rgba(3,7,18,.97); backdrop-filter: blur(24px); padding: 1.75rem 1.5rem; border-bottom: 1px solid var(--border); z-index: 99; gap: 1.5rem; }
      .nav-links.mobile-open { display: flex; }
      .nav-hamburger { display: flex; }
      .hero { padding: 3rem 1.25rem; min-height: auto; }
      section { padding: 4rem 1.25rem; }
      .features-grid { grid-template-columns: 1fr; }
      .testimonials-grid { grid-template-columns: 1fr; }
      .footer-inner { grid-template-columns: 1fr; gap: 2.25rem; }
      .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
      .how-grid { gap: 1rem; }
      .hero-badges-row { flex-direction: column; align-items: flex-start; }
      .hero-trust { margin-top: -1rem; }
      .sticky-mobile-cta { display: flex; padding-bottom: calc(.9rem + env(safe-area-inset-bottom)); }
      /* Extra bottom padding so content isn't hidden behind sticky bar */
      footer { padding-bottom: calc(4rem + 60px); }
    }
