:root{
    --bg: #09090B;
    --surface: #18181B;
    --card: #27272A;
    --primary: #4F46E5;
    --primary-hover: #6366F1;
    --text: #FAFAFA;
    --text-secondary: #A1A1AA;
    --border: #3F3F46;
    --success: #22C55E;

    --radius: 16px;
    --radius-sm: 10px;
    --radius-lg: 22px;

    --font-display: 'Satoshi', 'Inter Tight', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    --ease: cubic-bezier(0.16, 1, 0.3, 1);
    --container: 1200px;
  }

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

  html{ scroll-behavior:smooth; }

  @media (prefers-reduced-motion: reduce){
    html{ scroll-behavior:auto; }
    *,*::before,*::after{ animation-duration:0.001ms !important; animation-iteration-count:1 !important; transition-duration:0.001ms !important; scroll-behavior:auto !important; }
  }

  body{
    background:var(--bg);
    color:var(--text);
    font-family:var(--font-body);
    line-height:1.5;
    -webkit-font-smoothing:antialiased;
    overflow-x:hidden;
  }

  img{ max-width:100%; display:block; }

  a{ color:inherit; text-decoration:none; }

  ul{ list-style:none; }

  button{ font-family:inherit; cursor:pointer; border:none; background:none; color:inherit; }

  ::selection{ background:var(--primary); color:#fff; }

  :focus-visible{
    outline:2px solid var(--primary-hover);
    outline-offset:3px;
    border-radius:4px;
  }

  .container{
    max-width:var(--container);
    margin:0 auto;
    padding:0 24px;
  }

  section{ position:relative; }

  /* ============ TYPOGRAPHY ============ */
  h1,h2,h3,h4{
    font-family:var(--font-display);
    font-weight:700;
    letter-spacing:-0.02em;
    line-height:1.08;
  }

  .eyebrow{
    font-family:var(--font-body);
    font-size:13px;
    font-weight:600;
    letter-spacing:0.08em;
    text-transform:uppercase;
    color:var(--primary-hover);
    display:inline-flex;
    align-items:center;
    gap:8px;
  }

  .eyebrow::before{
    content:'';
    width:6px;
    height:6px;
    border-radius:50%;
    background:var(--primary-hover);
    display:inline-block;
  }

  .section-title{
    font-size:clamp(28px, 4vw, 44px);
    max-width:640px;
  }

  .section-title .muted{ color:var(--text-secondary); }

  .section-sub{
    color:var(--text-secondary);
    font-size:17px;
    max-width:520px;
    margin-top:16px;
    line-height:1.6;
  }

  .section-head{
    margin-bottom:56px;
  }

  .section-head.center{
    text-align:center;
    margin-left:auto;
    margin-right:auto;
  }

  .section-head.center .section-title,
  .section-head.center .section-sub{
    margin-left:auto;
    margin-right:auto;
  }

  /* ============ BUTTONS ============ */
  .btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    padding:13px 24px;
    border-radius:10px;
    font-size:14.5px;
    font-weight:600;
    white-space:nowrap;
    transition:transform 0.25s var(--ease), background-color 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease), color 0.25s var(--ease);
  }

  .btn-primary{
    background:var(--primary);
    color:#fff;
    box-shadow: 0 1px 0 rgba(255,255,255,0.08) inset, 0 8px 20px -8px rgba(79,70,229,0.55);
  }

  .btn-primary:hover{
    background:var(--primary-hover);
    transform:translateY(-1px);
    box-shadow: 0 1px 0 rgba(255,255,255,0.12) inset, 0 12px 28px -8px rgba(99,102,241,0.6);
  }

  .btn-primary:active{ transform:translateY(0); }

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

  .btn-secondary:hover{
    border-color:#54545c;
    background:rgba(255,255,255,0.03);
    transform:translateY(-1px);
  }

  .btn-ghost{
    color:var(--text-secondary);
    padding:13px 18px;
  }
  .btn-ghost:hover{ color:var(--text); }

  .btn svg{ width:16px; height:16px; flex-shrink:0; }

  /* ============ NAV ============ */
  .nav{
    position:fixed;
    top:0; left:0; right:0;
    z-index:100;
    background:rgba(9,9,11,0.72);
    backdrop-filter:blur(14px) saturate(140%);
    -webkit-backdrop-filter:blur(14px) saturate(140%);
    border-bottom:1px solid transparent;
    transition:border-color 0.3s var(--ease), background-color 0.3s var(--ease);
  }

  .nav.scrolled{
    border-bottom-color:var(--border);
  }

  .nav-inner{
    display:flex;
    align-items:center;
    justify-content:space-between;
    height:68px;
  }

  .brand{
    display:flex;
    align-items:center;
    gap:10px;
    font-family:var(--font-display);
    font-weight:700;
    font-size:18px;
    letter-spacing:-0.01em;
  }

  .brand-mark{
    width:32px; height:32px;
    border-radius:9px;
    background:var(--primary);
    display:flex;
    align-items:center;
    justify-content:center;
    font-family:var(--font-display);
    font-weight:900;
    font-size:16px;
    color:#fff;
    box-shadow:0 1px 0 rgba(255,255,255,0.15) inset;
  }

  .nav-links{
    display:flex;
    align-items:center;
    gap:4px;
  }

  .nav-links a{
    font-size:14px;
    font-weight:500;
    color:var(--text-secondary);
    padding:8px 14px;
    border-radius:8px;
    transition:color 0.2s var(--ease), background-color 0.2s var(--ease);
  }

  .nav-links a:hover{ color:var(--text); background:rgba(255,255,255,0.04); }

  .nav-actions{ display:flex; align-items:center; gap:8px; }

  .nav-menu-btn{
    display:none;
    width:38px; height:38px;
    align-items:center;
    justify-content:center;
    border-radius:8px;
  }
  .nav-menu-btn:hover{ background:rgba(255,255,255,0.05); }
  .nav-menu-btn svg{ width:20px; height:20px; }

  .mobile-menu{
    display:none;
    position:fixed;
    top:68px; left:0; right:0;
    background:var(--bg);
    border-bottom:1px solid var(--border);
    padding:12px 24px 20px;
    z-index:99;
  }
  .mobile-menu.open{ display:block; }
  .mobile-menu a{
    display:block;
    padding:12px 4px;
    font-size:15px;
    color:var(--text-secondary);
    border-bottom:1px solid var(--surface);
  }
  .mobile-menu a:last-child{ border-bottom:none; }

  /* ============ HERO ============ */
  .hero{
    padding:168px 0 100px;
    position:relative;
  }

  .hero::before{
    content:'';
    position:absolute;
    top:0; left:50%;
    transform:translateX(-50%);
    width:900px; height:600px;
    background:radial-gradient(ellipse at top, rgba(79,70,229,0.16), transparent 65%);
    pointer-events:none;
    z-index:-1;
  }

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

  .hero-badge{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:6px 12px 6px 6px;
    border-radius:100px;
    background:var(--surface);
    border:1px solid var(--border);
    font-size:13px;
    color:var(--text-secondary);
    margin-bottom:24px;
  }

  .hero-badge .dot-badge{
    background:var(--primary);
    color:#fff;
    font-size:11px;
    font-weight:700;
    padding:3px 8px;
    border-radius:100px;
    letter-spacing:0.02em;
  }

  .hero h1{
    font-size:clamp(36px, 4.6vw, 58px);
    margin-bottom:22px;
  }

  .hero-sub{
    font-size:18px;
    color:var(--text-secondary);
    max-width:480px;
    margin-bottom:36px;
    line-height:1.65;
  }

  .hero-ctas{
    display:flex;
    align-items:center;
    gap:12px;
    flex-wrap:wrap;
    margin-bottom:28px;
  }

  .btn-secondary.play{ padding-left:16px; }
  .play-icon{
    width:22px; height:22px;
    border-radius:50%;
    border:1px solid var(--border);
    display:flex;
    align-items:center;
    justify-content:center;
  }
  .play-icon svg{ width:9px; height:9px; margin-left:1px; }

  .hero-microcopy{
    font-size:13px;
    color:var(--text-secondary);
    display:flex;
    align-items:center;
    gap:8px;
  }

  .avatars{ display:flex; }
  .avatars span{
    width:22px; height:22px;
    border-radius:50%;
    background:var(--card);
    border:2px solid var(--bg);
    margin-left:-6px;
  }
  .avatars span:first-child{ margin-left:0; }

  /* ---- Hero mockup ---- */
  .hero-mock{
    position:relative;
  }

  .mock-window{
    background:var(--surface);
    border:1px solid var(--border);
    border-radius:var(--radius-lg);
    padding:18px;
    box-shadow:0 30px 80px -30px rgba(0,0,0,0.7);
  }

  .mock-topbar{
    display:flex;
    align-items:center;
    gap:6px;
    margin-bottom:16px;
    padding:0 2px;
  }
  .mock-topbar span{
    width:9px; height:9px;
    border-radius:50%;
    background:var(--card);
  }

  .mock-title-row{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:18px;
    padding:0 2px;
  }
  .mock-title-row .name{ font-size:14px; font-weight:600; }
  .mock-title-row .score{
    font-size:12px;
    color:var(--success);
    background:rgba(34,197,94,0.1);
    padding:4px 10px;
    border-radius:100px;
    font-weight:600;
  }

  .mock-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:10px;
  }

  .mock-card{
    background:var(--card);
    border:1px solid var(--border);
    border-radius:var(--radius-sm);
    padding:14px;
  }

  .mock-card.wide{ grid-column:1 / -1; }

  .mock-card .label{
    font-size:11px;
    color:var(--text-secondary);
    text-transform:uppercase;
    letter-spacing:0.05em;
    margin-bottom:8px;
    display:block;
  }

  .mock-card .value{
    font-family:var(--font-display);
    font-size:22px;
    font-weight:700;
  }

  .mock-bar-track{
    width:100%;
    height:6px;
    border-radius:100px;
    background:var(--surface);
    margin-top:10px;
    overflow:hidden;
  }
  .mock-bar-fill{
    height:100%;
    border-radius:100px;
    background:var(--primary);
    width:0%;
    transition:width 1.4s var(--ease);
  }
  .mock-window.in-view .mock-bar-fill{ width:72%; }

  .mock-row{
    display:flex;
    align-items:center;
    gap:10px;
  }
  .mock-avatar{
    width:28px; height:28px;
    border-radius:50%;
    background:var(--surface);
    border:1px solid var(--border);
    flex-shrink:0;
  }
  .mock-row-text .t1{ font-size:12.5px; font-weight:600; }
  .mock-row-text .t2{ font-size:11px; color:var(--text-secondary); }

  .mock-tags{ display:flex; gap:6px; flex-wrap:wrap; margin-top:2px; }
  .mock-tag{
    font-size:11px;
    padding:5px 9px;
    border-radius:100px;
    background:var(--surface);
    border:1px solid var(--border);
    color:var(--text-secondary);
  }

  .float-card{
    position:absolute;
    background:var(--surface);
    border:1px solid var(--border);
    border-radius:var(--radius-sm);
    padding:12px 14px;
    box-shadow:0 20px 40px -20px rgba(0,0,0,0.6);
    display:flex;
    align-items:center;
    gap:10px;
    animation:float 6s ease-in-out infinite;
  }

  .float-card.card-a{ top:-22px; right:-18px; animation-delay:0s; }
  .float-card.card-b{ bottom:-18px; left:-24px; animation-delay:1.2s; }

  .float-icon{
    width:30px; height:30px;
    border-radius:8px;
    background:rgba(79,70,229,0.14);
    display:flex; align-items:center; justify-content:center;
    flex-shrink:0;
  }
  .float-icon svg{ width:15px; height:15px; color:var(--primary-hover); }

  .float-card .t1{ font-size:12px; font-weight:600; }
  .float-card .t2{ font-size:10.5px; color:var(--text-secondary); }

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

  /* ============ SOCIAL PROOF ============ */
  .proof{
    padding:56px 0;
    border-top:1px solid var(--border);
    border-bottom:1px solid var(--border);
    background:var(--surface);
  }

  .proof-label{
    text-align:center;
    font-size:13px;
    color:var(--text-secondary);
    margin-bottom:36px;
    letter-spacing:0.02em;
  }

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

  .proof-item{ text-align:center; }

  .proof-num{
    font-family:var(--font-display);
    font-size:clamp(28px,3.4vw,38px);
    font-weight:700;
    color:var(--text);
    letter-spacing:-0.02em;
  }

  .proof-item-label{
    font-size:13.5px;
    color:var(--text-secondary);
    margin-top:6px;
  }

  /* ============ PROBLEM ============ */
  .problem{ padding:120px 0; }

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

  .pain-card{
    background:var(--surface);
    border:1px solid var(--border);
    border-radius:var(--radius);
    padding:26px 22px;
    transition:transform 0.35s var(--ease), border-color 0.35s var(--ease), background-color 0.35s var(--ease);
  }

  .pain-card:hover{
    transform:translateY(-4px);
    border-color:#54545c;
    background:#1c1c20;
  }

  .pain-icon{
    width:40px; height:40px;
    border-radius:10px;
    background:var(--card);
    display:flex; align-items:center; justify-content:center;
    margin-bottom:18px;
    color:#F87171;
  }
  .pain-icon svg{ width:19px; height:19px; }

  .pain-card h3{
    font-size:16px;
    font-weight:600;
    margin-bottom:8px;
  }

  .pain-card p{
    font-size:14px;
    color:var(--text-secondary);
    line-height:1.55;
  }

  /* ============ SOLUTION ============ */
  .solution{ padding:120px 0; background:var(--surface); border-top:1px solid var(--border); border-bottom:1px solid var(--border); }

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

  .feature-card{
    background:var(--bg);
    border:1px solid var(--border);
    border-radius:var(--radius);
    padding:28px 24px;
    transition:transform 0.35s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
  }

  .feature-card:hover{
    transform:translateY(-5px);
    border-color:var(--primary);
    box-shadow:0 24px 48px -28px rgba(79,70,229,0.45);
  }

  .feature-icon{
    width:42px; height:42px;
    border-radius:11px;
    background:rgba(79,70,229,0.12);
    display:flex; align-items:center; justify-content:center;
    margin-bottom:20px;
    color:var(--primary-hover);
  }
  .feature-icon svg{ width:20px; height:20px; }

  .feature-card h3{
    font-size:17px;
    font-weight:600;
    margin-bottom:10px;
  }

  .feature-card p{
    font-size:14.5px;
    color:var(--text-secondary);
    line-height:1.6;
  }

  /* ============ HOW IT WORKS ============ */
  .how{ padding:120px 0; }

  .steps{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:0;
    position:relative;
    counter-reset:step;
  }

  .step{
    position:relative;
    padding:0 18px;
    text-align:left;
  }

  .step-num{
    font-family:var(--font-display);
    font-size:14px;
    font-weight:700;
    color:var(--primary-hover);
    width:34px; height:34px;
    border-radius:9px;
    background:var(--surface);
    border:1px solid var(--border);
    display:flex; align-items:center; justify-content:center;
    margin-bottom:18px;
  }

  .step-connector{
    position:absolute;
    top:17px;
    left:calc(-50% + 17px);
    width:calc(100% - 34px);
    height:1px;
    background:var(--border);
  }

  .step:first-child .step-connector{ display:none; }

  .step h3{
    font-size:15.5px;
    font-weight:600;
    margin-bottom:6px;
    line-height:1.4;
  }

  .step p{
    font-size:13.5px;
    color:var(--text-secondary);
    line-height:1.55;
  }

  /* ============ DASHBOARD PREVIEW ============ */
  .dash{ padding:120px 0; background:var(--surface); border-top:1px solid var(--border); border-bottom:1px solid var(--border); }

  .dash-panel{
    background:var(--bg);
    border:1px solid var(--border);
    border-radius:var(--radius-lg);
    padding:28px;
    box-shadow:0 40px 100px -40px rgba(0,0,0,0.6);
  }

  .dash-header{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    margin-bottom:24px;
    flex-wrap:wrap;
    gap:14px;
  }

  .dash-header h3{ font-size:16px; font-weight:600; }
  .dash-header p{ font-size:13px; color:var(--text-secondary); margin-top:4px; }

  .dash-score{
    display:flex;
    align-items:center;
    gap:10px;
    background:var(--surface);
    border:1px solid var(--border);
    border-radius:100px;
    padding:8px 16px 8px 8px;
  }

  .score-ring{
    width:32px; height:32px;
    border-radius:50%;
    background:conic-gradient(var(--primary) 78%, var(--card) 0);
    display:flex; align-items:center; justify-content:center;
    position:relative;
  }
  .score-ring::before{
    content:'';
    position:absolute;
    width:24px; height:24px;
    border-radius:50%;
    background:var(--surface);
  }
  .score-ring span{
    position:relative;
    font-size:9px;
    font-weight:700;
  }

  .dash-score .t1{ font-size:12.5px; font-weight:600; }
  .dash-score .t2{ font-size:10.5px; color:var(--text-secondary); }

  .dash-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:14px;
  }

  .dash-grid .mock-card{ padding:18px; }
  .dash-grid .mock-card.span-2{ grid-column:span 2; }

  .dash-milestones{ display:flex; flex-direction:column; gap:10px; margin-top:10px; }
  .milestone{
    display:flex;
    align-items:center;
    gap:10px;
    font-size:12.5px;
  }
  .milestone .check{
    width:16px; height:16px;
    border-radius:5px;
    background:rgba(34,197,94,0.14);
    color:var(--success);
    display:flex; align-items:center; justify-content:center;
    flex-shrink:0;
  }
  .milestone .check svg{ width:9px; height:9px; }
  .milestone.pending .check{
    background:var(--surface);
    color:var(--text-secondary);
  }
  .milestone span.label-text{ color:var(--text-secondary); }
  .milestone.done span.label-text{ color:var(--text); }

  /* ============ TESTIMONIALS ============ */
  .testi{ padding:120px 0; }

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

  .testi-card{
    background:var(--surface);
    border:1px solid var(--border);
    border-radius:var(--radius);
    padding:28px 26px;
    display:flex;
    flex-direction:column;
    gap:20px;
    transition:transform 0.35s var(--ease), border-color 0.35s var(--ease);
  }

  .testi-card:hover{ transform:translateY(-4px); border-color:#54545c; }

  .testi-quote{
    font-size:15px;
    line-height:1.65;
    color:var(--text);
  }

  .testi-person{
    display:flex;
    align-items:center;
    gap:12px;
    margin-top:auto;
  }

  .testi-avatar{
    width:38px; height:38px;
    border-radius:50%;
    background:var(--card);
    border:1px solid var(--border);
    flex-shrink:0;
  }

  .testi-person .t1{ font-size:13.5px; font-weight:600; }
  .testi-person .t2{ font-size:12px; color:var(--text-secondary); }

  /* ============ VISION ============ */
  .vision{
    padding:140px 0;
    background:var(--surface);
    border-top:1px solid var(--border);
    border-bottom:1px solid var(--border);
    text-align:center;
    position:relative;
    overflow:hidden;
  }

  .vision::before{
    content:'';
    position:absolute;
    top:50%; left:50%;
    transform:translate(-50%,-50%);
    width:600px; height:600px;
    background:radial-gradient(circle, rgba(79,70,229,0.12), transparent 70%);
    pointer-events:none;
  }

  .vision-inner{
    max-width:760px;
    margin:0 auto;
    position:relative;
  }

  .vision h2{
    font-size:clamp(28px,4.2vw,46px);
    margin-bottom:24px;
  }

  .vision p{
    font-size:18px;
    color:var(--text-secondary);
    line-height:1.7;
    max-width:620px;
    margin:0 auto;
  }

  /* ============ FINAL CTA ============ */
  .final-cta{
    padding:140px 0;
    text-align:center;
  }

  .final-cta h2{
    font-size:clamp(30px,4.4vw,48px);
    margin-bottom:18px;
  }

  .final-cta p{
    font-size:17px;
    color:var(--text-secondary);
    max-width:440px;
    margin:0 auto 36px;
  }

  /* ============ FOOTER ============ */
  .footer{
    border-top:1px solid var(--border);
    padding:64px 0 32px;
  }

  .footer-top{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    gap:40px;
    flex-wrap:wrap;
    padding-bottom:48px;
  }

  .footer-brand p{
    font-size:13.5px;
    color:var(--text-secondary);
    margin-top:12px;
    max-width:260px;
    line-height:1.6;
  }

  .footer-cols{
    display:flex;
    gap:64px;
    flex-wrap:wrap;
  }

  .footer-col h4{
    font-family:var(--font-body);
    font-size:12.5px;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:0.06em;
    color:var(--text-secondary);
    margin-bottom:16px;
  }

  .footer-col a{
    display:block;
    font-size:14px;
    color:var(--text-secondary);
    padding:6px 0;
    transition:color 0.2s var(--ease);
  }
  .footer-col a:hover{ color:var(--text); }

  .footer-bottom{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding-top:28px;
    border-top:1px solid var(--border);
    flex-wrap:wrap;
    gap:16px;
  }

  .footer-bottom p{ font-size:13px; color:var(--text-secondary); }

  .footer-social{ display:flex; gap:10px; }
  .footer-social a{
    width:34px; height:34px;
    border-radius:9px;
    background:var(--surface);
    border:1px solid var(--border);
    display:flex; align-items:center; justify-content:center;
    color:var(--text-secondary);
    transition:color 0.2s var(--ease), border-color 0.2s var(--ease), background-color 0.2s var(--ease);
  }
  .footer-social a:hover{ color:var(--text); border-color:#54545c; background:var(--card); }
  .footer-social svg{ width:15px; height:15px; }

  /* ============ SCROLL REVEAL ============ */
  .reveal{
    opacity:0;
    transform:translateY(24px);
    transition:opacity 0.7s var(--ease), transform 0.7s var(--ease);
  }
  .reveal.is-visible{
    opacity:1;
    transform:translateY(0);
  }
  .reveal-stagger.is-visible > *{
    animation:none;
  }

  /* ============ RESPONSIVE ============ */
  @media (max-width:980px){
    .nav-links{ display:none; }
    .nav-menu-btn{ display:flex; }
    .hero-grid{ grid-template-columns:1fr; }
    .hero-mock{ order:-1; max-width:460px; margin:0 auto 12px; }
    .hero{ padding-top:132px; }
    .pain-grid{ grid-template-columns:repeat(2,1fr); }
    .feature-grid{ grid-template-columns:repeat(2,1fr); }
    .proof-grid{ grid-template-columns:repeat(2,1fr); gap:32px; }
    .steps{ grid-template-columns:repeat(3,1fr); gap:28px 0; }
    .step:nth-child(4) .step-connector,
    .step:nth-child(1) .step-connector{ display:none; }
    .dash-grid{ grid-template-columns:repeat(2,1fr); }
    .dash-grid .mock-card.span-2{ grid-column:span 1; }
    .testi-grid{ grid-template-columns:1fr; max-width:480px; margin:0 auto; }
  }

  @media (max-width:640px){
    .container{ padding:0 20px; }
    .hero{ padding-top:118px; padding-bottom:72px; }
    .hero-sub{ font-size:16.5px; }
    .hero-ctas .btn{ flex:1 1 auto; }
    .pain-grid{ grid-template-columns:1fr; }
    .feature-grid{ grid-template-columns:1fr; }
    .proof-grid{ grid-template-columns:repeat(2,1fr); gap:28px 16px; }
    .steps{ grid-template-columns:1fr; gap:26px; }
    .step-connector{ display:none !important; }
    .dash-grid{ grid-template-columns:1fr; }
    .dash-panel{ padding:20px; }
    .footer-top{ flex-direction:column; gap:32px; }
    .footer-cols{ gap:36px; }
    .footer-bottom{ flex-direction:column; align-items:flex-start; }
    .float-card{ display:none; }
    section{ padding-left:0; padding-right:0; }
    .problem, .solution, .how, .dash, .testi{ padding:80px 0; }
    .vision{ padding:96px 0; }
    .final-cta{ padding:96px 0; }
  }