  :root{
    --bg:#ffffff;
    --panel:#f5f6fa;
    --panel-2:#eef0f7;
    --border:rgba(20,19,31,0.08);
    --border-strong:rgba(20,19,31,0.14);
    --text:#14131f;
    --muted:#57576a;
    --muted-2:#9494a0;
    --blue:#0059ff;
    --blue-hover:#1a6bff;
    --teal:#12a394;
    --radius-pill:48px;
    --radius-card:24px;
    --container:1180px;
  }

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

  html{scroll-behavior:smooth; overflow-x:clip;}

  body{
    background:var(--bg);
    color:var(--text);
    font-family:"Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    -webkit-font-smoothing:antialiased;
    overflow-x:clip;
  }

  a{text-decoration:none; color:inherit;}
  ul{list-style:none;}
  img{max-width:100%; display:block;}

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

  /* ---------- NAV ---------- */
  header{
    position:sticky;
    top:0;
    z-index:100;
    background:rgba(255,255,255,0.8);
    backdrop-filter:blur(12px);
    border-bottom:1px solid var(--border);
  }
  .nav{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:20px 32px;
    max-width:var(--container);
    margin:0 auto;
  }
  .logo{
    display:flex;
    align-items:center;
    gap:10px;
    font-size:20px;
    font-weight:600;
    letter-spacing:-0.3px;
  }
  .logo-mark{
    width:26px;
    height:26px;
    display:block;
  }
  .nav-links{
    display:flex;
    align-items:center;
    gap:36px;
  }
  .nav-links a{
    font-size:15px;
    color:var(--muted);
    transition:color .15s ease;
  }
  .nav-links a:hover{color:var(--text);}
  .nav-cta{
    display:flex;
    align-items:center;
    gap:14px;
  }

  /* ---------- MOBILE MENU ---------- */
  .menu-toggle{
    display:none; flex-direction:column; justify-content:center; align-items:center;
    gap:5px; width:40px; height:40px; border:none; background:none; cursor:pointer;
    flex-shrink:0; padding:0;
  }
  .menu-toggle span{
    display:block; width:20px; height:2px; background:var(--text);
    border-radius:2px; transition:transform .25s ease, opacity .25s ease;
  }
  .menu-toggle[aria-expanded="true"] span:nth-child(1){ transform:translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2){ opacity:0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3){ transform:translateY(-7px) rotate(-45deg); }

  .mobile-menu{
    display:none; position:absolute; top:100%; left:0; right:0;
    background:#ffffff; border-top:1px solid var(--border);
    max-height:80vh; overflow-y:auto; box-shadow:0 24px 40px -20px rgba(20,19,31,0.18);
  }
  .mobile-menu.open{ display:block; }
  .mobile-menu-inner{ padding:8px 24px 32px; }
  .mobile-menu-links{ display:flex; flex-direction:column; }
  .mobile-menu-links a{
    padding:16px 2px; font-size:18px; font-weight:500; color:var(--text);
    border-bottom:1px solid var(--border);
  }
  .mobile-menu-cta{ display:flex; flex-direction:column; gap:12px; margin-top:24px; }
  .mobile-menu-cta .btn{ width:100%; }

  .btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:12px 24px;
    border-radius:var(--radius-pill);
    font-size:15px;
    font-weight:500;
    white-space:nowrap;
    cursor:pointer;
    border:1px solid transparent;
    transition:all .18s ease;
  }
  .btn-ghost{
    background:transparent;
    color:var(--text);
    border:1px solid var(--border-strong);
  }
  .btn-ghost:hover{
    background:rgba(20,19,31,0.04);
  }
  .btn-primary{
    background:var(--blue);
    color:#fff;
    box-shadow:0 0 0 0 rgba(0,89,255,0.0);
  }
  .btn-primary:hover{
    background:var(--blue-hover);
  }
  .btn-lg{
    padding:16px 32px;
    font-size:16px;
  }

  /* ---------- HERO ---------- */
  .hero{
    position:relative;
    padding:130px 32px 0;
    text-align:center;
    overflow:hidden;
  }
  .hero-content{
    position:relative;
    max-width:900px;
    margin:0 auto;
  }
  .hero h1{
    font-family:"Inter Tight","Inter",sans-serif;
    font-size:64px;
    line-height:1.05;
    font-weight:500;
    letter-spacing:-2px;
    color:var(--text);
  }
  .hero p.subhead{
    margin-top:24px;
    font-size:17px;
    line-height:1.6;
    color:var(--muted);
    max-width:560px;
    margin-left:auto;
    margin-right:auto;
  }
  .hero .cta{
    margin-top:36px;
    display:inline-flex;
  }

  /* Hero mockup card */
  .hero-mockup{
    position:relative;
    margin:70px auto 0;
    max-width:900px;
    background:linear-gradient(180deg, var(--panel) 0%, rgba(238,240,247,0.5) 100%);
    border:1px solid var(--border);
    border-radius:32px 32px 0 0;
    padding:16px 16px 0;
    overflow:hidden;
  }
  .hero-mockup::after{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(180deg, transparent 70%, var(--bg) 100%);
    pointer-events:none;
  }
  .hero-video{
    display:block;
    width:100%;
    height:auto;
    border-radius:20px 20px 0 0;
    box-shadow:0 0 0 1px var(--border);
  }
  .search-bar{
    display:flex;
    align-items:center;
    gap:14px;
    background:#ffffff;
    border:1px solid var(--border-strong);
    border-radius:16px;
    padding:20px 24px;
  }
  .search-bar svg{flex-shrink:0; color:var(--teal);}
  .search-bar span{
    flex:1;
    text-align:left;
    color:var(--muted);
    font-size:16px;
  }
  .kbd{
    font-size:12px;
    color:var(--muted);
    background:rgba(20,19,31,0.05);
    border:1px solid var(--border);
    border-radius:6px;
    padding:4px 8px;
  }
  .result-cards{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:16px;
    margin-top:20px;
    padding-bottom:40px;
  }
  .result-card{
    background:#ffffff;
    border:1px solid var(--border);
    border-radius:16px;
    padding:22px;
    text-align:left;
  }
  .result-card .icon{
    width:34px;
    height:34px;
    border-radius:8px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:24px;
    font-size:16px;
  }
  .result-card .icon.blue{background:rgba(0,89,255,0.12); color:#0059ff;}
  .result-card .icon.purple{background:rgba(124,58,237,0.12); color:#7c3aed;}
  .result-card .icon.teal{background:rgba(18,163,148,0.12); color:var(--teal);}
  .result-card .title{
    font-size:15px;
    font-weight:500;
    color:var(--text);
    margin-bottom:8px;
  }
  .result-card .meta{
    font-size:13px;
    color:var(--muted-2);
  }

  /* ---------- SECTION SHARED ---------- */
  section{
    padding:120px 32px;
    border-top:1px solid var(--border);
  }
  .section-head{
    max-width:640px;
    margin:0 auto 64px;
    text-align:center;
  }
  .eyebrow{
    font-size:13px;
    font-weight:600;
    letter-spacing:1.5px;
    text-transform:uppercase;
    color:var(--teal);
    margin-bottom:16px;
    display:block;
  }
  .section-head h2{
    font-family:"Inter Tight","Inter",sans-serif;
    font-size:40px;
    font-weight:500;
    letter-spacing:-1px;
    line-height:1.15;
  }
  .section-head p{
    margin-top:18px;
    font-size:17px;
    line-height:1.6;
    color:var(--muted);
  }

  /* ---------- FEATURES ---------- */
  .features{
    max-width:var(--container);
    margin:0 auto;
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:0;
  }
  .feature{
    padding:0 32px;
    border-left:1px solid var(--border);
  }
  .feature:first-child{border-left:none; padding-left:0;}
  .feature-icon{
    width:56px;
    height:56px;
    border-radius:50%;
    border:1px solid var(--border-strong);
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:28px;
    color:var(--text);
  }
  .feature h3{
    font-size:19px;
    font-weight:500;
    margin-bottom:14px;
  }
  .feature p{
    font-size:15px;
    line-height:1.7;
    color:var(--muted);
  }

  /* ---------- INTEGRATIONS ---------- */
  .integrations-section{
    padding:0;
    border-top:1px solid var(--border);
  }
  .integrations{
    max-width:var(--container);
    margin:0 auto;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
    padding:120px 32px;
  }
  .integrations-copy .eyebrow{margin-bottom:20px;}
  .integrations-copy h2{
    font-family:"Inter Tight","Inter",sans-serif;
    font-size:36px;
    font-weight:500;
    letter-spacing:-0.8px;
    margin-bottom:18px;
    line-height:1.15;
  }
  .integrations-copy p{
    font-size:16px;
    line-height:1.7;
    color:var(--muted);
    max-width:420px;
  }
  .app-grid{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:16px;
  }
  .app-card{
    background:var(--panel-2);
    border:1px solid var(--border);
    border-radius:20px;
    padding:32px 20px;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:16px;
    transition:border-color .15s ease, transform .15s ease;
  }
  .app-card:hover{
    border-color:var(--border-strong);
    transform:translateY(-2px);
  }
  .app-icon{
    width:44px;
    height:44px;
    object-fit:contain;
  }
  .app-icon.initials{
    display:flex;
    align-items:center;
    justify-content:center;
    background:#ffffff;
    border:1px solid var(--border);
    border-radius:12px;
    font-family:"Inter Tight","Inter",sans-serif;
    font-weight:600;
    font-size:14px;
    color:var(--text);
  }
  .app-card span{
    font-size:14px;
    color:var(--muted);
  }

  /* ---------- FINAL CTA ---------- */
  .final-cta{
    text-align:center;
    position:relative;
  }
  .final-cta .inner{position:relative;}
  .final-cta h2{
    font-family:"Inter Tight","Inter",sans-serif;
    font-size:44px;
    font-weight:500;
    letter-spacing:-1.2px;
    line-height:1.15;
    max-width:680px;
    margin:0 auto;
  }
  .final-cta p{
    margin-top:22px;
    font-size:17px;
    color:var(--muted);
  }
  .final-cta .cta{
    margin-top:36px;
  }

  /* ---------- FOOTER ---------- */
  footer{
    border-top:1px solid var(--border);
    padding:80px 32px 40px;
  }
  .footer-grid{
    max-width:var(--container);
    margin:0 auto;
    display:grid;
    grid-template-columns:1.6fr 1fr 1fr;
    gap:40px;
  }
  .footer-brand .eyebrow{margin-bottom:18px; color:var(--muted-2); letter-spacing:2px;}
  .footer-brand p{
    font-size:14px;
    line-height:1.7;
    color:var(--muted);
    max-width:340px;
    margin-bottom:24px;
  }
  .footer-copy{
    text-align:center;
    margin-top:28px;
    font-size:13px;
    color:var(--muted-2);
  }
  .footer-col h4{
    font-size:15px;
    font-weight:600;
    margin-bottom:20px;
  }
  .footer-col a{
    display:block;
    font-size:14px;
    color:var(--muted);
    margin-bottom:14px;
    transition:color .15s ease;
  }
  .footer-col a:hover{color:var(--text);}

  /* ---------- RESPONSIVE ---------- */
  @media (max-width:900px){
    .nav-links{display:none;}
    .nav-cta .btn-ghost{display:none;}
    .menu-toggle{display:flex;}
    .hero h1{font-size:40px; letter-spacing:-1.2px;}
    .section-head h2{font-size:30px;}
    .features{grid-template-columns:1fr; gap:48px;}
    .feature{border-left:none; padding-left:0;}
    .result-cards{grid-template-columns:1fr;}
    .integrations{grid-template-columns:1fr;}
    .app-grid{grid-template-columns:repeat(3,1fr);}
    .footer-grid{grid-template-columns:1fr; gap:48px;}
    .final-cta h2{font-size:32px;}
  }

.hero--flush { border-top: none; padding-bottom: 0; }
