    /* ── Reset & Variables ─────────────────────────── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --primary: #2E7D32;
      --primary-dark: #144D27;
      --primary-light: #7BC142;
      --accent: #9DD85A;
      --secondary: #689F38;
      --teal: #3B6471;
      --bg: #FCFDF7;
      --bg-warm: #F7F9F2;
      --text: #144D27;
      --text-light: #4E6355;
      --white: #FFFFFF;
      --grey-100: #F0F2ED;
      --grey-200: #DAE5DC;
      --grey-400: #8A9A8E;
      --font-display: 'Fraunces', Georgia, serif;
      --font-body: 'Manrope', system-ui, sans-serif;
    }

    html { scroll-behavior: smooth; font-size: 16px; width: 100%; }

    body {
      font-family: var(--font-body);
      color: var(--text);
      background: var(--bg);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
      width: 100%;
      min-height: 100vh;
    }

    /* ── Utility ────────────────────────────────────── */
    .container { max-width: 1400px; margin: 0 auto; padding: 0 48px; }
    .sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

    /* ── Noise Texture Overlay ──────────────────────── */
    body::before {
      content: '';
      position: fixed;
      inset: 0;
      pointer-events: none;
      z-index: 9999;
      opacity: 0.018;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
      background-repeat: repeat;
      background-size: 256px 256px;
    }

    /* ── Scroll Animations ──────────────────────────── */
    .reveal {
      opacity: 0;
      transform: translateY(40px);
      transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }
    .reveal-delay-1 { transition-delay: 0.1s; }
    .reveal-delay-2 { transition-delay: 0.2s; }
    .reveal-delay-3 { transition-delay: 0.3s; }
    .reveal-delay-4 { transition-delay: 0.4s; }

    /* ── Header ─────────────────────────────────────── */
    header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      padding: 0 48px;
      transition: background 0.3s, box-shadow 0.3s, padding 0.3s, transform 0.3s;
    }
    header.scrolled {
      background: rgba(252, 253, 247, 0.92);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      box-shadow: 0 1px 0 var(--grey-200);
    }
    .header-inner {
      max-width: 1400px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 72px;
      transition: height 0.3s;
    }
    header.scrolled .header-inner { height: 60px; }

    .logo {
      display: flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
      color: var(--text);
    }
    .logo-icon {
      width: 40px;
      height: 40px;
    }
    .logo-text {
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 1.4rem;
      letter-spacing: -0.02em;
    }
    .logo-text span { color: var(--primary-light); }

    nav { display: flex; align-items: center; gap: 32px; }
    nav a {
      text-decoration: none;
      color: var(--text-light);
      font-weight: 500;
      font-size: 0.9rem;
      letter-spacing: 0.01em;
      transition: color 0.2s;
    }
    nav a:hover { color: var(--primary); }

    .btn-cta {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 12px 28px;
      min-height: 48px;
      background: var(--accent);
      color: var(--primary-dark);
      font-family: var(--font-body);
      font-weight: 700;
      font-size: 0.9rem;
      letter-spacing: 0.02em;
      border: none;
      border-radius: 100px;
      cursor: pointer;
      text-decoration: none;
      transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
      box-shadow: 0 2px 12px rgba(157, 216, 90, 0.3);
    }
    .btn-cta:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 24px rgba(157, 216, 90, 0.4);
      background: #A8E066;
    }
    .btn-cta:active { transform: translateY(0); }

    .btn-secondary {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 12px 28px;
      min-height: 48px;
      background: transparent;
      color: var(--primary);
      font-family: var(--font-body);
      font-weight: 600;
      font-size: 0.9rem;
      border: 2px solid var(--primary);
      border-radius: 100px;
      cursor: pointer;
      text-decoration: none;
      transition: all 0.2s;
    }
    .btn-secondary:hover {
      background: var(--primary);
      color: var(--white);
    }

    /* ── Mobile Nav Toggle ──────────────────────────── */
    .nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
    .nav-toggle svg { width: 24px; height: 24px; stroke: var(--text); }

    /* ── Hero ───────────────────────────────────────── */
    .hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      padding: 120px 48px 80px;
      position: relative;
      overflow: hidden;
      width: 100%;
    }
    .hero::before {
      content: '';
      position: absolute;
      top: -20%;
      right: -15%;
      width: 70%;
      height: 140%;
      background: radial-gradient(ellipse at center, rgba(123, 193, 66, 0.08) 0%, transparent 70%);
      pointer-events: none;
    }
    .hero::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--grey-200), transparent);
    }
    .hero-inner {
      max-width: 1400px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
      width: 100%;
      padding: 0 24px;
    }
    .hero-content { position: relative; z-index: 2; }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 6px 16px 6px 8px;
      background: rgba(46, 125, 50, 0.08);
      border: 1px solid rgba(46, 125, 50, 0.15);
      border-radius: 100px;
      font-size: 0.8rem;
      font-weight: 600;
      color: var(--primary);
      margin-bottom: 28px;
      letter-spacing: 0.03em;
    }
    .hero-badge-dot {
      width: 8px;
      height: 8px;
      background: var(--accent);
      border-radius: 50%;
      animation: pulse 2s infinite;
    }
    @keyframes pulse {
      0%, 100% { opacity: 1; transform: scale(1); }
      50% { opacity: 0.6; transform: scale(1.3); }
    }
    @media (prefers-reduced-motion: reduce) {
      .hero-badge-dot { animation: none; }
      .reveal { opacity: 1; transform: none; transition: none; }
    }

    .hero h1 {
      font-family: var(--font-display);
      font-size: clamp(2.4rem, 5vw, 3.6rem);
      font-weight: 900;
      line-height: 1.1;
      letter-spacing: -0.03em;
      margin-bottom: 24px;
      color: var(--primary-dark);
    }
    .hero h1 em {
      font-style: italic;
      color: var(--primary);
      font-weight: 700;
    }

    .hero-subtitle {
      font-size: 1.15rem;
      color: var(--text-light);
      max-width: 480px;
      margin-bottom: 40px;
      line-height: 1.7;
      font-weight: 400;
    }

    .hero-actions {
      display: flex;
      align-items: center;
      gap: 16px;
      flex-wrap: wrap;
    }

    .hero-phone {
      position: relative;
      display: flex;
      justify-content: center;
      align-items: center;
    }
    .phone-mockup {
      width: 300px;
      height: 620px;
      background: var(--primary-dark);
      border-radius: 40px;
      padding: 12px;
      box-shadow:
        0 40px 80px rgba(20, 77, 39, 0.15),
        0 16px 32px rgba(20, 77, 39, 0.1),
        inset 0 1px 0 rgba(255,255,255,0.1);
      position: relative;
      overflow: hidden;
    }
    .phone-screen {
      width: 100%;
      height: 100%;
      background: var(--white);
      border-radius: 30px;
      overflow: hidden;
      display: flex;
      flex-direction: column;
    }
    .phone-screenshot-placeholder {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      height: 100%;
      background: var(--bg-warm);
      gap: 12px;
    }
    .phone-screenshot-placeholder span {
      font-size: 0.75rem;
      color: var(--grey-400);
      font-weight: 500;
    }
    .phone-screenshot-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 30px;
    }

    .phone-glow {
      position: absolute;
      width: 400px;
      height: 400px;
      background: radial-gradient(circle, rgba(157, 216, 90, 0.12) 0%, transparent 70%);
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      pointer-events: none;
      z-index: -1;
    }

    /* ── Trust Strip ─────────────────────────────────── */
    .trust {
      padding: 40px 48px;
      background: var(--bg-warm);
      border-top: 1px solid var(--grey-200);
      border-bottom: 1px solid var(--grey-200);
    }
    .trust-inner {
      max-width: 1400px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 48px;
      flex-wrap: wrap;
    }
    .trust-item {
      display: flex;
      align-items: center;
      gap: 10px;
      color: var(--text-light);
      font-size: 0.85rem;
      font-weight: 500;
    }
    .trust-icon {
      width: 20px;
      height: 20px;
      stroke: var(--primary);
      fill: none;
      stroke-width: 2;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    /* ── Features ──────────────────────────────────── */
    /* Screenshot Gallery */
    .screenshot-section {
      padding: 100px 48px 80px;
      width: 100%;
      background: var(--bg-warm);
      border-top: 1px solid var(--grey-200);
      border-bottom: 1px solid var(--grey-200);
    }
    .screenshot-gallery {
      display: flex;
      gap: 24px;
      max-width: 1400px;
      margin: 48px auto 0;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch;
      padding: 8px 4px 32px;
    }
    .screenshot-gallery::-webkit-scrollbar { height: 6px; }
    .screenshot-gallery::-webkit-scrollbar-track { background: var(--grey-100); border-radius: 3px; }
    .screenshot-gallery::-webkit-scrollbar-thumb { background: var(--grey-400); border-radius: 3px; }
    .screenshot-card {
      flex: 0 0 auto;
      width: 240px;
      scroll-snap-align: start;
      text-align: center;
    }
    .screenshot-frame {
      background: #1a1a1a;
      border-radius: 28px;
      padding: 10px 10px 14px;
      box-shadow: 0 20px 50px rgba(20, 77, 39, 0.12), 0 8px 20px rgba(20, 77, 39, 0.06);
      position: relative;
      overflow: hidden;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .screenshot-frame::before {
      content: '';
      position: absolute;
      top: 10px;
      left: 50%;
      transform: translateX(-50%);
      width: 60px;
      height: 6px;
      background: #333;
      border-radius: 0 0 8px 8px;
      z-index: 2;
    }
    .screenshot-card:hover .screenshot-frame {
      transform: translateY(-6px);
      box-shadow: 0 28px 60px rgba(20, 77, 39, 0.18), 0 10px 24px rgba(20, 77, 39, 0.08);
    }
    .screenshot-frame img {
      width: 100%;
      height: auto;
      display: block;
      border-radius: 20px;
    }
    .screenshot-caption {
      margin-top: 16px;
      font-size: 0.85rem;
      font-weight: 600;
      color: var(--text);
      letter-spacing: -0.005em;
    }
    .screenshot-caption-sub {
      display: block;
      margin-top: 4px;
      font-size: 0.72rem;
      font-weight: 500;
      color: var(--text-light);
      text-transform: none;
      letter-spacing: 0;
    }

    .features { padding: 120px 48px; width: 100%; }
    .section-label {
      font-family: var(--font-body);
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--teal);
      margin-bottom: 16px;
    }
    .section-title {
      font-family: var(--font-display);
      font-size: clamp(2rem, 4vw, 2.8rem);
      font-weight: 900;
      letter-spacing: -0.02em;
      line-height: 1.15;
      margin-bottom: 16px;
      color: var(--primary-dark);
    }
    .section-subtitle {
      font-size: 1.05rem;
      color: var(--text-light);
      max-width: 520px;
      line-height: 1.7;
      margin-bottom: 64px;
    }

    .feature-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
    }
    .feature-card {
      padding: 36px 28px;
      background: var(--white);
      border: 1px solid var(--grey-200);
      border-radius: 20px;
      transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
      position: relative;
      overflow: hidden;
    }
    .feature-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--primary), var(--accent));
      opacity: 0;
      transition: opacity 0.3s;
    }
    .feature-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 16px 48px rgba(20, 77, 39, 0.08);
      border-color: rgba(46, 125, 50, 0.2);
    }
    .feature-card:hover::before { opacity: 1; }

    .feature-icon-wrap {
      width: 52px;
      height: 52px;
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
    }
    .feature-icon-wrap svg {
      width: 26px;
      height: 26px;
      stroke-width: 1.8;
      stroke-linecap: round;
      stroke-linejoin: round;
      fill: none;
    }
    .fi-green { background: rgba(46, 125, 50, 0.1); }
    .fi-green svg { stroke: var(--primary); }
    .fi-teal { background: rgba(59, 100, 113, 0.1); }
    .fi-teal svg { stroke: var(--teal); }
    .fi-lime { background: rgba(104, 159, 56, 0.1); }
    .fi-lime svg { stroke: var(--secondary); }

    .feature-card h3 {
      font-family: var(--font-display);
      font-size: 1.2rem;
      font-weight: 700;
      margin-bottom: 8px;
      letter-spacing: -0.01em;
    }
    .feature-card p {
      font-size: 0.9rem;
      color: var(--text-light);
      line-height: 1.6;
    }
    .feature-tag {
      display: inline-block;
      margin-top: 16px;
      padding: 4px 12px;
      background: rgba(59, 100, 113, 0.08);
      color: var(--teal);
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      border-radius: 100px;
    }

    /* ── Pricing ─────────────────────────────────────── */
    .pricing {
      padding: 120px 48px;
      background: var(--primary-dark);
      color: var(--white);
      position: relative;
      overflow: hidden;
      width: 100%;
    }
    .pricing::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 120px;
      background: linear-gradient(180deg, var(--bg) 0%, var(--primary-dark) 100%);
      pointer-events: none;
    }
    .pricing .section-label { color: var(--accent); }
    .pricing .section-title { color: var(--white); }
    .pricing .section-subtitle { color: rgba(255,255,255,0.6); }

    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
      max-width: 1100px;
      margin: 0 auto;
    }
    .pricing-card {
      padding: 36px 28px;
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 20px;
      backdrop-filter: blur(10px);
      transition: transform 0.3s, border-color 0.3s;
    }
    .pricing-card:hover {
      transform: translateY(-4px);
      border-color: rgba(255,255,255,0.2);
    }
    .pricing-card.featured {
      background: rgba(157, 216, 90, 0.1);
      border-color: var(--accent);
      position: relative;
    }
    .pricing-card.featured::after {
      content: 'MOST POPULAR';
      position: absolute;
      top: -12px;
      left: 50%;
      transform: translateX(-50%);
      padding: 4px 16px;
      background: var(--accent);
      color: var(--primary-dark);
      font-size: 0.65rem;
      font-weight: 800;
      letter-spacing: 0.1em;
      border-radius: 100px;
    }
    .pricing-tier {
      font-family: var(--font-display);
      font-size: 1.3rem;
      font-weight: 700;
      margin-bottom: 4px;
    }
    .pricing-desc {
      font-size: 0.8rem;
      color: rgba(255,255,255,0.5);
      margin-bottom: 20px;
    }
    .pricing-price {
      font-family: var(--font-display);
      font-size: 2.2rem;
      font-weight: 900;
      margin-bottom: 4px;
    }
    .pricing-price .struck {
      text-decoration: line-through;
      color: rgba(255,255,255,0.3);
      font-size: 1.2rem;
      margin-right: 8px;
      font-weight: 400;
    }
    .pricing-period {
      font-size: 0.8rem;
      color: rgba(255,255,255,0.4);
      margin-bottom: 28px;
    }
    .pricing-features {
      list-style: none;
      margin-bottom: 28px;
    }
    .pricing-features li {
      padding: 8px 0;
      font-size: 0.85rem;
      color: rgba(255,255,255,0.7);
      display: flex;
      align-items: flex-start;
      gap: 10px;
    }
    .pricing-features li::before {
      content: '';
      width: 18px;
      height: 18px;
      min-width: 18px;
      background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%239DD85A' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") no-repeat center;
      margin-top: 2px;
    }
    .pricing-card.muted { opacity: 0.5; }
    .pricing-card.muted .pricing-price { font-size: 1.4rem; }

    .pricing-toggle {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 12px;
      margin-bottom: 40px;
    }
    .pricing-toggle-label {
      font-size: 0.85rem;
      color: rgba(255,255,255,0.5);
      cursor: pointer;
      transition: color 0.2s;
    }
    .pricing-toggle-label.active { color: var(--white); font-weight: 600; }
    .pricing-toggle-switch {
      width: 48px;
      height: 26px;
      background: rgba(255,255,255,0.15);
      border-radius: 13px;
      position: relative;
      cursor: pointer;
      transition: background 0.2s;
      border: none;
      padding: 0;
    }
    .pricing-toggle-switch::after {
      content: '';
      position: absolute;
      top: 3px;
      left: 3px;
      width: 20px;
      height: 20px;
      background: var(--accent);
      border-radius: 50%;
      transition: transform 0.2s;
    }
    .pricing-toggle-switch.annual::after { transform: translateX(22px); }
    .pricing-toggle-switch.annual { background: rgba(157,216,90,0.25); }
    .pricing-save-badge {
      font-size: 0.65rem;
      font-weight: 800;
      letter-spacing: 0.05em;
      padding: 3px 8px;
      border-radius: 100px;
      background: var(--accent);
      color: var(--primary-dark);
    }
    .pricing-monthly { display: block; }
    .pricing-annual { display: none; }
    .show-annual .pricing-monthly { display: none; }
    .show-annual .pricing-annual { display: block; }
    .pricing-founding-badge {
      display: inline-block;
      padding: 3px 10px;
      background: rgba(255,215,0,0.15);
      color: #FFD700;
      font-size: 0.65rem;
      font-weight: 800;
      letter-spacing: 0.08em;
      border-radius: 100px;
      margin-bottom: 8px;
    }
    .founding-counter {
      text-align: center;
      margin-top: 6px;
      font-size: 0.75rem;
      color: rgba(255,255,255,0.5);
    }
    .founding-counter strong {
      color: #FFD700;
      font-weight: 700;
    }
    .founding-counter-bar {
      width: 80%;
      max-width: 200px;
      height: 4px;
      background: rgba(255,255,255,0.1);
      border-radius: 2px;
      margin: 6px auto 0;
      overflow: hidden;
    }
    .founding-counter-fill {
      height: 100%;
      background: linear-gradient(90deg, #FFD700, #FFA500);
      border-radius: 2px;
      transition: width 0.6s ease;
    }

    .btn-pricing {
      display: block;
      width: 100%;
      padding: 14px;
      min-height: 48px;
      text-align: center;
      border-radius: 12px;
      font-family: var(--font-body);
      font-weight: 700;
      font-size: 0.85rem;
      text-decoration: none;
      transition: all 0.2s;
      border: none;
      cursor: pointer;
    }
    .btn-pricing-primary {
      background: var(--accent);
      color: var(--primary-dark);
    }
    .btn-pricing-primary:hover { background: #A8E066; transform: translateY(-1px); }
    .btn-pricing-outline {
      background: transparent;
      color: rgba(255,255,255,0.6);
      border: 1px solid rgba(255,255,255,0.2);
    }
    .btn-pricing-outline:hover { border-color: rgba(255,255,255,0.4); color: var(--white); }

    /* ── Final CTA ──────────────────────────────────── */
    .final-cta {
      padding: 120px 48px;
      text-align: center;
      position: relative;
      overflow: hidden;
      width: 100%;
    }
    .final-cta::before {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, rgba(123, 193, 66, 0.06) 0%, transparent 70%);
      pointer-events: none;
    }
    .final-cta h2 {
      font-family: var(--font-display);
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 900;
      letter-spacing: -0.03em;
      margin-bottom: 16px;
      color: var(--primary-dark);
    }
    .final-cta h2 em {
      font-style: italic;
      color: var(--primary);
    }
    .final-cta p {
      font-size: 1.1rem;
      color: var(--text-light);
      max-width: 480px;
      margin: 0 auto 40px;
      line-height: 1.7;
    }

    .email-capture {
      display: flex;
      gap: 12px;
      max-width: 440px;
      margin: 0 auto;
    }
    .email-capture input {
      flex: 1;
      padding: 14px 20px;
      border: 2px solid var(--grey-200);
      border-radius: 100px;
      font-family: var(--font-body);
      font-size: 0.9rem;
      color: var(--text);
      background: var(--white);
      outline: none;
      transition: border-color 0.2s;
    }
    .email-capture input::placeholder { color: var(--grey-400); }
    .email-capture input:focus { border-color: var(--primary); }

    /* ── Footer ─────────────────────────────────────── */
    footer {
      padding: 48px 48px;
      border-top: 1px solid var(--grey-200);
    }
    .footer-inner {
      max-width: 1400px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 24px;
    }
    .footer-left {
      display: flex;
      align-items: center;
      gap: 24px;
    }
    .footer-copy {
      font-size: 0.8rem;
      color: var(--grey-400);
    }
    .footer-links {
      display: flex;
      gap: 24px;
    }
    .footer-links a {
      font-size: 0.8rem;
      color: var(--grey-400);
      text-decoration: none;
      transition: color 0.2s;
    }
    .footer-links a:hover { color: var(--primary); }

    .social-links {
      display: flex;
      gap: 12px;
    }
    .social-link {
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 10px;
      background: var(--grey-100);
      transition: background 0.2s, transform 0.2s;
    }
    .social-link:hover {
      background: var(--primary);
      transform: translateY(-2px);
    }
    .social-link svg { width: 18px; height: 18px; fill: var(--text-light); transition: fill 0.2s; }
    .social-link:hover svg { fill: var(--white); }

    /* ── CTA Microcopy & Privacy ─────────────────── */
    .cta-microcopy {
      font-size: 0.8rem;
      color: var(--text-light);
      margin-top: 12px;
      line-height: 1.5;
    }
    .cta-privacy {
      font-size: 0.72rem;
      color: var(--grey-400);
      margin-top: 6px;
    }
    .cta-urgency {
      font-size: 0.85rem;
      font-weight: 700;
      color: var(--primary);
      margin-top: 16px;
      letter-spacing: 0.02em;
    }
    .cta-steps {
      list-style: none;
      counter-reset: step;
      margin-top: 14px;
      padding: 0;
    }
    .cta-steps li {
      counter-increment: step;
      font-size: 0.8rem;
      color: var(--text-light);
      line-height: 1.8;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .cta-steps li::before {
      content: counter(step);
      width: 20px;
      height: 20px;
      min-width: 20px;
      border-radius: 50%;
      background: rgba(46, 125, 50, 0.1);
      color: var(--primary);
      font-size: 0.65rem;
      font-weight: 700;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    /* ── Play Badge ────────────────────────────────── */
    .play-badge {
      display: inline-flex;
      align-items: center;
      padding: 8px 16px;
      background: rgba(46, 125, 50, 0.06);
      border: 1px solid rgba(46, 125, 50, 0.15);
      border-radius: 8px;
      font-size: 0.8rem;
      font-weight: 600;
      color: var(--primary);
    }

    /* ── Coming Soon Divider ──────────────────────── */
    .coming-soon-divider {
      display: flex;
      align-items: center;
      gap: 16px;
      margin: 48px 0 28px;
      color: var(--grey-400);
      font-size: 0.8rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
    }
    .coming-soon-divider::before,
    .coming-soon-divider::after {
      content: '';
      flex: 1;
      height: 1px;
      background: var(--grey-200);
    }
    .feature-grid-coming-soon .feature-card {
      border-style: dashed;
      opacity: 0.7;
      max-width: 380px;
    }

    /* ── Pricing Enterprise Note ──────────────────── */
    .pricing-enterprise-note {
      text-align: center;
      margin-top: 32px;
      font-size: 0.9rem;
      color: rgba(255,255,255,0.5);
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
    }
    .pricing-enterprise-note a {
      color: var(--accent);
      text-decoration: underline;
      text-underline-offset: 2px;
    }
    .pricing-enterprise-note a:hover { color: var(--white); }

    /* ── Founder Section ──────────────────────────── */
    .founder {
      padding: 100px 48px;
      background: var(--bg-warm);
      border-top: 1px solid var(--grey-200);
    }
    .founder-inner { max-width: 680px; }
    .founder-text p {
      font-size: 1rem;
      color: var(--text-light);
      line-height: 1.7;
      margin-bottom: 16px;
    }
    .founder-company {
      font-size: 0.8rem;
      color: var(--grey-400);
      margin-top: 24px;
    }

    /* ── FAQ Section ──────────────────────────────── */
    .faq {
      padding: 100px 48px;
    }
    .faq-list {
      max-width: 680px;
      margin-top: 40px;
    }
    .faq-item {
      border-bottom: 1px solid var(--grey-200);
    }
    .faq-item summary {
      padding: 20px 0;
      font-family: var(--font-display);
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--primary-dark);
      cursor: pointer;
      list-style: none;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    .faq-item summary::after {
      content: '+';
      font-size: 1.4rem;
      font-weight: 300;
      color: var(--grey-400);
      transition: transform 0.2s;
    }
    .faq-item[open] summary::after {
      transform: rotate(45deg);
    }
    .faq-item summary::-webkit-details-marker { display: none; }
    .faq-item p {
      padding: 0 0 20px;
      font-size: 0.95rem;
      color: var(--text-light);
      line-height: 1.7;
    }

    /* ── Policy Sections ────────────────────────────── */
    .policy-section {
      padding: 60px 48px;
      border-top: 1px solid var(--grey-200);
    }
    .policy-section h2 {
      font-family: var(--font-display);
      font-size: 1.5rem;
      font-weight: 800;
      color: var(--primary-dark);
      margin-bottom: 24px;
    }
    .policy-section h3 {
      font-family: var(--font-display);
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--text);
      margin: 20px 0 8px;
    }
    .policy-section p, .policy-section li {
      font-size: 0.95rem;
      color: var(--text-light);
      line-height: 1.7;
      margin-bottom: 12px;
    }
    .policy-section ul {
      padding-left: 20px;
      margin-bottom: 16px;
    }
    .policy-content {
      max-width: 720px;
    }
    .policy-details summary {
      cursor: pointer;
      list-style: none;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .policy-details summary::after {
      content: '+';
      font-size: 1.4rem;
      font-weight: 300;
      color: var(--grey-400);
      transition: transform 0.2s;
    }
    .policy-details[open] summary::after {
      transform: rotate(45deg);
    }
    .policy-details summary::-webkit-details-marker { display: none; }
    .policy-details .policy-content {
      padding-top: 16px;
    }

    /* ── Sticky CTA (mobile) ──────────────────────── */
    .sticky-cta {
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 12px 24px;
      background: rgba(252, 253, 247, 0.95);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-top: 1px solid var(--grey-200);
      text-align: center;
      z-index: 999;
      transform: translateY(100%);
      transition: transform 0.3s;
      display: none;
    }
    .sticky-cta.visible { transform: translateY(0); }
    .sticky-cta .btn-cta { width: 100%; justify-content: center; }

    /* ── Responsive ─────────────────────────────────── */
    /* ── Form Success State ──────────────────────── */
    .form-success {
      padding: 14px 20px;
      background: rgba(46, 125, 50, 0.08);
      border: 1px solid rgba(46, 125, 50, 0.2);
      border-radius: 100px;
      color: var(--primary);
      font-weight: 600;
      font-size: 0.9rem;
      text-align: center;
    }

    /* ── Roadmap (compact horizontal cards) ──────── */
    .roadmap { padding: 100px 48px; width: 100%; }
    .roadmap-timeline {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      margin-top: 48px;
    }
    .roadmap-item {
      padding: 24px 20px;
      background: var(--white);
      border: 1px solid var(--grey-200);
      border-radius: 16px;
      position: relative;
    }
    .roadmap-item.active {
      border-color: var(--primary);
      background: rgba(157, 216, 90, 0.04);
    }
    .roadmap-content { padding-top: 0; }
    .roadmap-label {
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--teal);
      display: block;
      margin-bottom: 8px;
    }
    .roadmap-content h3 {
      font-family: var(--font-display);
      font-size: 1.05rem;
      font-weight: 700;
      margin-bottom: 6px;
      color: var(--primary-dark);
    }
    .roadmap-content p {
      font-size: 0.85rem;
      color: var(--text-light);
      line-height: 1.5;
    }

    /* ── Testimonials ──────────────────────────────── */
    .testimonials {
      padding: 80px 48px;
      background: var(--bg-warm);
      border-top: 1px solid var(--grey-200);
      border-bottom: 1px solid var(--grey-200);
    }
    .testimonials-inner {
      max-width: 1400px;
      margin: 0 auto;
      text-align: center;
    }
    .testimonial-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
      margin-top: 48px;
    }
    .testimonial-card {
      padding: 28px 24px;
      background: var(--white);
      border: 1px solid var(--grey-200);
      border-radius: 16px;
      text-align: left;
    }
    .testimonial-quote {
      font-size: 0.95rem;
      color: var(--text);
      line-height: 1.7;
      margin-bottom: 16px;
      font-style: italic;
    }
    .testimonial-author {
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .testimonial-avatar {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: var(--primary);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--white);
      font-weight: 700;
      font-size: 0.85rem;
    }
    .testimonial-name {
      font-weight: 700;
      font-size: 0.85rem;
      color: var(--primary-dark);
    }
    .testimonial-role {
      font-size: 0.75rem;
      color: var(--text-light);
    }

    @media (max-width: 900px) {
      .hero-inner { grid-template-columns: 1fr; gap: 48px; text-align: center; }
      .hero-subtitle { margin-left: auto; margin-right: auto; }
      .hero-actions { justify-content: center; }
      .hero-phone { order: -1; }
      .phone-mockup { width: 240px; height: 500px; }
      .cta-microcopy, .cta-privacy { text-align: center; }
      .feature-grid {
        grid-template-columns: 1fr;
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 16px;
        padding-bottom: 16px;
        margin: 0 -48px;
        padding-left: 48px;
        padding-right: 48px;
      }
      .feature-card {
        min-width: 280px;
        scroll-snap-align: start;
        flex-shrink: 0;
      }
      .feature-grid::-webkit-scrollbar { display: none; }
      .feature-grid { scrollbar-width: none; }
      .screenshot-section { padding: 60px 24px 40px; }
      .screenshot-gallery {
        margin: 32px -24px 0;
        padding: 8px 24px 32px;
        gap: 16px;
      }
      .screenshot-card { width: 200px; }
      .pricing-grid { grid-template-columns: 1fr; max-width: 420px; }
      .testimonial-grid { grid-template-columns: 1fr; }
      .roadmap-timeline { grid-template-columns: repeat(2, 1fr); }
      .sticky-cta { display: block; }
      nav { display: none; }
      .nav-toggle { display: block; }
    }
    @media (max-width: 600px) {
      .trust-inner { flex-direction: column; gap: 16px; }
      .email-capture { flex-direction: column; }
      .email-capture .btn-cta { width: 100%; justify-content: center; }
      .footer-inner { flex-direction: column; text-align: center; }
      .footer-left { flex-direction: column; }
      .roadmap-timeline { grid-template-columns: 1fr; }
    }
