:root {
    --bg: #080810;
    --bg2: #0d0d1a;
    --green-a: #00ff87;
    --green-b: #00c853;
    --purple: #7c3aed;
    --purple-soft: #a78bfa;
    --white: #f0f0f8;
    --muted: #6b6b8a;
    --card-bg: rgba(255,255,255,0.03);
    --card-border: rgba(255,255,255,0.07);
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }

  body {
    background: var(--bg);
    color: var(--white);
    font-family: 'DM Sans', sans-serif;
    font-size: 17px;
    line-height: 1.6;
    overflow-x: hidden;
  }

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

  /* NAV */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 60px;
    background: rgba(8,8,16,0.7);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--card-border);
  }

  nav > a {
    display: inline-flex;
    align-items: center;
    line-height: 0;
  }

  .logo-img {
    height: 36px;
    width: auto;
    display: block;
  }

  nav ul {
    list-style: none;
    display: flex;
    gap: 40px;
    align-items: center;
  }

  nav ul a {
    color: var(--muted);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: color 0.2s;
  }

  nav ul a:hover { color: var(--white); }

  .nav-cta {
    background: linear-gradient(135deg, var(--green-a), var(--green-b));
    color: #000 !important;
    padding: 10px 22px;
    border-radius: 100px;
    font-weight: 600 !important;
    font-size: 14px !important;
    transition: opacity 0.2s !important;
  }
  .nav-cta:hover { opacity: 0.85; }

  /* HERO */
  .hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 40px 80px;
    position: relative;
    overflow: hidden;
  }

  .hero::before {
    content: '';
    position: absolute;
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(0,255,135,0.12) 0%, transparent 70%);
    top: -100px; left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
  }

  .hero::after {
    content: '';
    position: absolute;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(124,58,237,0.1) 0%, transparent 70%);
    bottom: -50px; right: -100px;
    pointer-events: none;
  }

  .hero-eyebrow {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--green-a);
    margin-bottom: 28px;
    opacity: 0;
    animation: fadeUp 0.8s 0.2s forwards;
  }

  .hero h1 {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(42px, 6.5vw, 88px);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.03em;
    max-width: 900px;
    opacity: 0;
    animation: fadeUp 0.9s 0.35s forwards;
  }

  .hero h1 em {
    font-style: normal;
    background: linear-gradient(135deg, var(--green-a) 0%, var(--green-b) 50%, var(--purple-soft) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .hero-sub {
    margin-top: 28px;
    font-size: 18px;
    color: var(--muted);
    max-width: 560px;
    font-weight: 300;
    line-height: 1.7;
    opacity: 0;
    animation: fadeUp 0.9s 0.5s forwards;
  }

  .hero-actions {
    margin-top: 48px;
    display: flex;
    gap: 16px;
    align-items: center;
    opacity: 0;
    animation: fadeUp 0.9s 0.65s forwards;
  }

  .btn-primary {
    background: linear-gradient(135deg, var(--green-a), var(--green-b));
    color: #000;
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    font-size: 15px;
    padding: 14px 32px;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    transition: transform 0.2s, opacity 0.2s;
    text-decoration: none;
    display: inline-block;
  }
  .btn-primary:hover { transform: translateY(-2px); opacity: 0.9; }

  .btn-ghost {
    color: var(--muted);
    font-size: 15px;
    font-weight: 400;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.2s;
  }
  .btn-ghost:hover { color: var(--white); }
  .btn-ghost svg { transition: transform 0.2s; }
  .btn-ghost:hover svg { transform: translateX(4px); }

  .scroll-hint {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0;
    animation: fadeIn 1s 1.2s forwards;
  }
  .scroll-hint span {
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--muted);
  }
  .scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--green-a), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
  }

  /* STATS */
  .stats {
    border-top: 1px solid var(--card-border);
    border-bottom: 1px solid var(--card-border);
    padding: 60px;
    display: flex;
    justify-content: center;
    gap: 80px;
  }
  .stat { text-align: center; }
  .stat-num {
    font-family: 'Oswald', sans-serif;
    font-size: 42px;
    font-weight: 800;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, var(--green-a), var(--green-b));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .stat-label {
    font-size: 13px;
    color: var(--muted);
    font-weight: 300;
    margin-top: 6px;
  }

  /* MISSION */
  .mission {
    padding: 120px 60px;
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }
  .mission-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--green-a);
    margin-bottom: 20px;
  }
  .mission h2 {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(32px, 3.5vw, 52px);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.1;
  }
  .mission-right p {
    color: var(--muted);
    font-size: 17px;
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 20px;
  }
  .mission-right p strong { color: var(--white); font-weight: 500; }

  /* METHOD */
  .method {
    padding: 80px 60px 120px;
    max-width: 1100px;
    margin: 0 auto;
  }
  .section-header { text-align: center; margin-bottom: 72px; }
  .section-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--green-a);
    margin-bottom: 16px;
  }
  .section-header h2 {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(28px, 3vw, 46px);
    font-weight: 700;
    letter-spacing: -0.03em;
  }

  .aim-o {
    display: inline-block;
    font-size: 1.5em;
    line-height: 0.75;
    vertical-align: middle;
    background: linear-gradient(135deg, var(--green-a), var(--green-b));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
    letter-spacing: -0.05em;
  }
  .pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .pillar {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 40px 36px;
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s, transform 0.3s;
  }
  .pillar:hover { border-color: rgba(0,255,135,0.2); transform: translateY(-4px); }
  .pillar::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--green-a), transparent);
    opacity: 0;
    transition: opacity 0.3s;
  }
  .pillar:hover::before { opacity: 1; }
  .pillar-num {
    font-family: 'Oswald', sans-serif;
    font-size: 52px;
    font-weight: 800;
    color: rgba(0,255,135,0.1);
    line-height: 1;
    margin-bottom: 20px;
    letter-spacing: -0.04em;
  }
  .pillar h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
  }
  .pillar p { color: var(--muted); font-size: 15px; line-height: 1.7; font-weight: 300; }

  /* APPS */
  .apps-section {
    padding: 80px 60px 120px;
    max-width: 1100px;
    margin: 0 auto;
  }

  /* App cards */
  .app-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

  .app-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    overflow: hidden;
    transition: border-color 0.3s, transform 0.3s;
  }
  .app-card:hover { border-color: rgba(0,255,135,0.2); transform: translateY(-3px); }

  /* In-card phone mockup */
  .card-phone-wrap {
    display: flex;
    justify-content: center;
    padding: 32px 28px 24px;
    background: rgba(0,0,0,0.2);
  }

  .card-phone {
    width: 160px;
    height: 320px;
    border-radius: 22px;
    border: 1.5px solid rgba(255,255,255,0.12);
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
  }

  .card-phone-notch {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 48px;
    height: 8px;
    background: rgba(0,0,0,0.7);
    border-radius: 100px;
    z-index: 2;
  }

  .card-phone-screen {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }

  .card-phone-emoji {
    font-size: 32px;
    line-height: 1;
  }

  .phone-screen-icon {
    width: 64px;
    height: 64px;
    border-radius: 14px;
    object-fit: cover;
  }

  .card-phone-name {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    font-family: 'DM Sans', sans-serif;
  }

  .smokeless-phone { background: linear-gradient(160deg, #0f0f2e, #1a1a3e); }
  .weparent-phone  { background: linear-gradient(160deg, #081a14, #0d2b1e); }
  .wins-phone      { background: linear-gradient(160deg, #160a2e, #1e0f3a); }

  .app-card-body {
    padding: 24px 28px 28px;
  }

  .app-card-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    flex-wrap: wrap;
  }

  .app-tag {
    display: inline-block;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 100px;
  }
  .tag-wellness    { background: rgba(0,255,135,0.1); color: var(--green-a); }
  .tag-family      { background: rgba(124,58,237,0.15); color: var(--purple-soft); }
  .tag-productivity{ background: rgba(251,191,36,0.1); color: #fbbf24; }
  .tag-lifestyle   { background: rgba(251,191,36,0.1); color: #fbbf24; }

  .app-card h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
  }

  /* Smokeless italic "less" */
  .app-card h3 .italic-less { font-style: italic; }

  .app-card .btn-primary {
    display: inline-block;
    width: auto;
    padding: 10px 18px;
    font-size: 13px;
  }

  .app-card h3 a {
    color: var(--white);
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-color: rgba(255,255,255,0.3);
    cursor: pointer;
    transition: color 0.2s, text-decoration-color 0.2s;
  }
  .app-card h3 a:hover {
    color: var(--green-a);
    text-decoration-color: var(--green-a);
  }

  .collab-badge {
    display: flex;
    align-items: center;
    gap: 6px;
  }

  .collab-badge span {
    font-size: 11px;
    color: var(--muted);
    font-weight: 400;
    letter-spacing: 0.03em;
    white-space: nowrap;
  }

  .collab-logo {
    height: 14px;
    width: auto;
    opacity: 0.7;
    filter: brightness(1.2);
  }

  .app-card p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
    font-weight: 300;
    margin-bottom: 28px;
  }

  .waitlist-form { display: flex; gap: 8px; }
  .waitlist-form input {
    flex: 1;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--card-border);
    border-radius: 100px;
    padding: 10px 16px;
    color: var(--white);
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    outline: none;
    transition: border-color 0.2s;
  }
  .waitlist-form input::placeholder { color: var(--muted); }
  .waitlist-form input:focus { border-color: rgba(0,255,135,0.4); }
  .waitlist-form button {
    background: linear-gradient(135deg, var(--green-a), var(--green-b));
    color: #000;
    border: none;
    border-radius: 100px;
    padding: 10px 18px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    white-space: nowrap;
    transition: opacity 0.2s, transform 0.2s;
  }
  .waitlist-form button:hover { opacity: 0.9; transform: translateY(-1px); }
  .joined-msg {
    display: none;
    font-size: 13px;
    color: var(--green-a);
    font-weight: 500;
    margin-top: 10px;
  }

  /* FOOTER */
  footer {
    padding: 80px 60px 48px;
    max-width: 1100px;
    margin: 0 auto;
  }
  .footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 60px;
    gap: 60px;
  }
  .footer-brand .logo-img { height: 32px; margin-bottom: 16px; }
  .footer-brand svg { display: block; vertical-align: middle; margin-bottom: 16px; }
  .footer-brand p {
    color: var(--muted);
    font-size: 14px;
    max-width: 280px;
    line-height: 1.7;
    font-weight: 300;
  }
  .footer-partner h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
  }
  .footer-partner p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
    font-weight: 300;
    margin-bottom: 20px;
    max-width: 300px;
  }
  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 28px;
    border-top: 1px solid var(--card-border);
  }
  .footer-bottom p { color: var(--muted); font-size: 13px; font-weight: 300; }
  .footer-links { display: flex; gap: 28px; }
  .footer-links a {
    color: var(--muted);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.2s;
  }
  .footer-links a:hover { color: var(--white); }

  /* ANIMATIONS */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  @keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
  }
  @keyframes scrollPulse {
    0%, 100% { opacity: 0.3; }
    50%       { opacity: 1; }
  }

  .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .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; }

  /* HAMBURGER */
  .hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
    z-index: 200;
  }
  .hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
  }
  .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity: 0; }
  .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* MOBILE NAV DRAWER */
  .nav-drawer {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(8,8,16,0.97);
    backdrop-filter: blur(20px);
    z-index: 99;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
  }
  .nav-drawer.open { display: flex; }
  .nav-drawer a {
    color: var(--white);
    text-decoration: none;
    font-family: 'Oswald', sans-serif;
    font-size: 28px;
    font-weight: 700;
    transition: color 0.2s;
  }
  .nav-drawer a:hover { color: var(--green-a); }
  .nav-drawer .nav-cta {
    background: linear-gradient(135deg, var(--green-a), var(--green-b));
    color: #000;
    padding: 14px 32px;
    border-radius: 100px;
    font-size: 18px;
  }

  @media (max-width: 768px) {
    /* NAV */
    nav { padding: 16px 24px; }
    nav ul { display: none; }
    .hamburger { display: flex; }

    /* HERO */
    .hero { padding: 100px 24px 60px; }
    .hero h1 { font-size: clamp(36px, 10vw, 56px); }
    .hero-sub { font-size: 16px; }
    .hero-actions { flex-direction: column; gap: 12px; width: 100%; }
    .hero-actions .btn-primary { text-align: center; width: 100%; }

    /* STATS */
    .stats { padding: 40px 24px; gap: 32px; flex-wrap: wrap; }
    .stat-num { font-size: 32px; }

    /* MISSION */
    .mission {
      grid-template-columns: 1fr;
      gap: 32px;
      padding: 60px 24px;
    }

    /* METHOD */
    .method { padding: 40px 24px 60px; }
    .pillars { grid-template-columns: 1fr; gap: 16px; }
    .pillar { padding: 28px 24px; }

    /* APPS */
    .apps-section { padding: 40px 24px 60px; }

    /* APP CARDS */
    .app-cards { grid-template-columns: 1fr; gap: 16px; }

    /* WAITLIST */
    .waitlist-form { flex-direction: column; }
    .waitlist-form input { border-radius: 12px; padding: 12px 16px; }
    .waitlist-form button { border-radius: 12px; padding: 12px; }

    /* FOOTER */
    footer { padding: 60px 24px 40px; }
    .footer-top { flex-direction: column; gap: 40px; }
    .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
    .footer-links { flex-wrap: wrap; justify-content: center; gap: 16px; }

    /* SCROLL HINT */
    .scroll-hint { display: none; }

    /* APP SUB-PAGE HERO */
    .app-hero-grid { grid-template-columns: 1fr; gap: 48px; }
    .app-hero-phone { order: -1; }
    .app-hero-phone-frame { width: 160px; height: 300px; }
  }

  /* APP SUB-PAGE STYLES */

  .back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--muted);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.02em;
    padding: 80px 60px 0;
    transition: color 0.2s;
  }
  .back-link:hover { color: var(--white); }

  .app-hero {
    max-width: 1100px;
    margin: 0 auto;
    padding: 48px 60px 100px;
  }

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

  .app-hero-content .app-tag {
    margin-bottom: 20px;
    display: inline-block;
  }

  .app-hero-content h1 {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(42px, 5vw, 72px);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeUp 0.9s 0.2s forwards;
  }

  .app-hero-content h1 em {
    font-style: normal;
    background: linear-gradient(135deg, var(--green-a) 0%, var(--green-b) 50%, var(--purple-soft) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .app-hero-tagline {
    font-size: 18px;
    color: var(--muted);
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 480px;
    opacity: 0;
    animation: fadeUp 0.9s 0.35s forwards;
  }

  .app-hero-waitlist {
    opacity: 0;
    animation: fadeUp 0.9s 0.5s forwards;
  }

  .app-hero-phone {
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    animation: fadeUp 0.9s 0.4s forwards;
  }

  .app-hero-phone-frame {
    width: 200px;
    height: 380px;
    border-radius: 32px;
    border: 1.5px solid rgba(255,255,255,0.12);
    position: relative;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0,0,0,0.6);
  }

  .app-hero-phone-notch {
    position: absolute;
    top: 14px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 10px;
    background: rgba(0,0,0,0.8);
    border-radius: 100px;
    z-index: 2;
  }

  .app-hero-phone-screen {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
  }

  .app-hero-phone-emoji {
    font-size: 48px;
    line-height: 1;
  }

  .app-hero-phone-icon {
    width: 96px;
    height: 96px;
    border-radius: 22px;
    object-fit: cover;
  }

  .app-hero-phone-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    font-family: 'DM Sans', sans-serif;
  }

  .smokeless-bg { background: linear-gradient(160deg, #0f0f2e, #1a1a3e); }
  .weparent-bg  { background: linear-gradient(160deg, #081a14, #0d2b1e); }
  .wins-bg      { background: linear-gradient(160deg, #160a2e, #1e0f3a); }

  /* FEATURES SECTION */
  .app-features {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 60px 120px;
  }

  /* APP HERO — description + actions */
  .app-hero-tagline { margin-bottom: 16px; }

  .app-hero-desc {
    font-size: 16px;
    color: var(--muted);
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 480px;
    opacity: 0;
    animation: fadeUp 0.9s 0.5s forwards;
  }

  .app-hero-actions {
    opacity: 0;
    animation: fadeUp 0.9s 0.65s forwards;
  }

  /* APP STORE BUTTON */
  .btn-appstore {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.14);
    color: var(--white);
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    font-size: 15px;
    padding: 14px 28px;
    border-radius: 100px;
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s, transform 0.2s;
  }
  .btn-appstore:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.24);
    transform: translateY(-2px);
  }
  .btn-appstore svg { flex-shrink: 0; }

  /* OUTLINE BUTTON (ghost pill, used alongside App Store button) */
  .btn-outline {
    display: inline-flex;
    align-items: center;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.18);
    color: var(--muted);
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    font-size: 15px;
    padding: 14px 28px;
    border-radius: 100px;
    text-decoration: none;
    transition: border-color 0.2s, color 0.2s, transform 0.2s;
  }
  .btn-outline:hover {
    border-color: rgba(255,255,255,0.36);
    color: var(--white);
    transform: translateY(-2px);
  }

  /* PRODUCT CTA */
  .product-cta {
    max-width: 1100px;
    margin: 0 auto;
    padding: 80px 60px 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    text-align: center;
    border-top: 1px solid var(--card-border);
  }
  .product-cta h2 {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(32px, 4vw, 56px);
    font-weight: 800;
    letter-spacing: -0.03em;
  }
  .product-cta p {
    color: var(--muted);
    font-size: 16px;
    font-weight: 300;
    margin-top: -12px;
  }

  .product-cta-form {
    width: 100%;
    max-width: 420px;
  }

  .coming-soon-note {
    font-size: 12px;
    color: var(--muted);
    font-weight: 300;
    margin-top: 12px;
  }

  @media (max-width: 768px) {
    .back-link { padding: 72px 24px 0; }
    .app-hero { padding: 32px 24px 60px; }
    .app-features { padding: 0 24px 80px; }
    .product-cta { padding: 60px 24px 80px; }
    .btn-appstore { font-size: 14px; padding: 13px 22px; }
  }
