:root{
    --bg:#0A0A0F;
    --surface:#0B1020;
    --surface-2:#0B1630;
    --border:rgba(30, 216, 214,0.18);
    --cyan:#1ED8D6;
    --text:#F5F5F7;
    --text-muted:#8E9BC7;
    --wordmark:"museo-sans-rounded", sans-serif;
    --body:"Inter", -apple-system, sans-serif;
    --mono:"JetBrains Mono", ui-monospace, monospace;
    --max:1180px;
  }
  *,*::before,*::after{ box-sizing:border-box; }
  html{ scroll-behavior:smooth; }
  body{
    margin:0;
    background:var(--bg);
    color:var(--text);
    font-family:var(--body);
    line-height:1.5;
    -webkit-font-smoothing:antialiased;
  }
  a{ color:inherit; }
  img,svg{ display:block; max-width:100%; }
  .wrap{ max-width:var(--max); margin:0 auto; padding:0 28px; }
  section{ position:relative; }
  h1,h2,h3{ font-family:var(--wordmark); font-weight:700; margin:0; letter-spacing:-0.01em; }
  .eyebrow{
    font-family:var(--mono);
    font-size:12.5px;
    letter-spacing:0.14em;
    text-transform:uppercase;
    color:var(--cyan);
    display:flex;
    align-items:center;
    gap:10px;
  }
  .eyebrow::before{
    content:"";
    width:7px; height:7px; border-radius:50%;
    background:var(--cyan);
    box-shadow:0 0 0 4px rgba(30, 216, 214,0.18);
  }
  button, .btn{
    font-family:var(--body);
    font-weight:600;
    font-size:15px;
    border-radius:999px;
    border:1px solid transparent;
    padding:13px 26px;
    cursor:pointer;
    text-decoration:none;
    display:inline-flex;
    align-items:center;
    gap:8px;
    transition:transform .15s ease, background .2s ease, border-color .2s ease;
  }
  .btn-primary{ background:var(--cyan); color:#04222B; }
  .btn-primary:hover{ transform:translateY(-1px); background:#3FC6E6; }
  .btn-ghost{ background:transparent; color:var(--text); border-color:var(--border); }
  .btn-ghost:hover{ border-color:var(--cyan); color:var(--cyan); }
  :focus-visible{ outline:2px solid var(--cyan); outline-offset:3px; }

  /* ---------- Logo ---------- */
  .logo{ display:flex; align-items:center; gap:10px; text-decoration:none; }
  .logo img{ height:30px; width:auto; display:block; }
  footer .logo img{ height:34px; }

  /* ---------- Nav ---------- */
  header{
    position:fixed; top:0; left:0; right:0; z-index:40;
    background:rgba(10,10,15,0.72);
    backdrop-filter:blur(10px);
    border-bottom:1px solid var(--border);
  }
  header .wrap{ display:flex; align-items:center; justify-content:space-between; height:74px; }
  nav ul{ list-style:none; display:flex; gap:34px; margin:0; padding:0; }
  nav a{ text-decoration:none; color:var(--text-muted); font-size:14.5px; font-weight:500; transition:color .2s; }
  nav a:hover{ color:var(--text); }
  .nav-links{ display:flex; align-items:center; gap:34px; }
  .nav-cta{ display:flex; align-items:center; gap:14px; }
  .burger{ display:none; background:none; border:none; padding:8px; }
  .burger span{ display:block; width:20px; height:2px; background:var(--text); margin:4px 0; border-radius:2px; }

  /* ---------- Hero ---------- */
  .hero{
    padding:168px 0 100px;
    overflow:hidden;
  }
  .hero canvas{ position:absolute; inset:0; width:100%; height:100%; opacity:0.55; pointer-events:none; }
  .hero-inner{ position:relative; z-index:2; max-width:760px; }
  .hero h1{ font-size:clamp(38px, 6vw, 68px); line-height:1.04; margin:22px 0 24px; }
  .hero h1 .accent{ color:var(--cyan); }
  .hero p.lede{ font-size:18px; color:var(--text-muted); max-width:620px; margin:0 0 36px; }
  .hero-ctas{ display:flex; gap:14px; flex-wrap:wrap; margin-bottom:64px; }
  .stat-strip{ display:flex; gap:0; border-top:1px solid var(--border); padding-top:28px; flex-wrap:wrap; }
  .stat{ flex:1; min-width:160px; padding-right:24px; }
  .stat b{ font-family:var(--mono); font-size:22px; color:var(--text); display:block; font-weight:500; }
  .stat span{ font-size:13px; color:var(--text-muted); }

  /* ---------- Brand experience marquee ---------- */
  .brands{ border-top:1px solid var(--border); padding:36px 0; overflow:hidden; }
  .brands-head{ display:flex; align-items:baseline; gap:16px; margin-bottom:22px; }
  .brands-head .eyebrow{ margin:0; }
  .brands-head p{ color:var(--text-muted); font-size:14px; margin:0; }
  .brands-track-wrap{ overflow:hidden; -webkit-mask-image:linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image:linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
  .brands-track{ display:flex; width:max-content; animation:brandsScroll 32s linear infinite; }
  .brands-track:hover{ animation-play-state:paused; }
  .brands-set{ display:flex; align-items:center; flex-shrink:0; }
  .brands-set img.brand-logo{ height:30px; width:auto; margin:0 32px; opacity:0.55; transition:opacity .2s; display:block; }
  .brands-set img.brand-logo:hover{ opacity:1; }
  @keyframes brandsScroll{ from{ transform:translateX(0); } to{ transform:translateX(-50%); } }
  @media (prefers-reduced-motion: reduce){
    .brands-track{ animation:none; flex-wrap:wrap; width:auto; }
    .brands-set:nth-child(2){ display:none; }
  }
  @media (max-width:640px){
    .brands-head{ flex-direction:column; gap:4px; }
    .brands-set img.brand-logo{ height:24px; margin:0 22px; }
  }

  /* ---------- Section shared ---------- */
  .section{ padding:100px 0; border-top:1px solid var(--border); }
  .section-head{ max-width:640px; margin-bottom:56px; }
  .section-head h2{ font-size:clamp(28px,4vw,40px); margin-top:16px; line-height:1.1; }
  .section-head p{ color:var(--text-muted); font-size:16.5px; margin-top:16px; }

  /* ---------- Why (Automate/Analyze/Approve) ---------- */
  .triad{ display:grid; grid-template-columns:repeat(3,1fr); gap:1px; background:var(--border); border:1px solid var(--border); border-radius:20px; overflow:hidden; }
  .triad-item{ background:var(--surface); padding:38px 32px; }
  .triad-top{ display:flex; align-items:center; gap:12px; margin-bottom:16px; }
  .triad-item .icon{ width:38px; height:38px; border-radius:10px; background:var(--surface-2); display:flex; align-items:center; justify-content:center; color:var(--cyan); flex-shrink:0; }
  .triad-item .num{ font-family:var(--mono); color:var(--cyan); font-size:13px; }
  .triad-item p.triad-example{ font-size:12.5px; color:var(--cyan); margin:12px 0 0; padding-top:12px; border-top:1px solid var(--border); font-family:var(--mono); }
  .triad-item h3{ font-size:22px; margin:0 0 12px; }
  .triad-item p{ color:var(--text-muted); font-size:15px; margin:0; }

  /* ---------- Services grid ---------- */
  .services-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:18px; }
  .service-card{ background:var(--surface); border:1px solid var(--border); border-radius:16px; padding:30px; transition:border-color .2s, transform .2s; }
  .service-card:hover{ border-color:rgba(30, 216, 214,0.4); transform:translateY(-2px); }
  .service-card .icon{ width:38px; height:38px; border-radius:10px; background:var(--surface-2); display:flex; align-items:center; justify-content:center; margin-bottom:20px; color:var(--cyan); }
  .service-card h3{ font-size:17px; margin-bottom:8px; }
  .service-card p{ color:var(--text-muted); font-size:14px; margin:0; }
  .service-card ul{ list-style:none; padding:0; margin:14px 0 0; border-top:1px solid var(--border); padding-top:14px; }
  .service-card li{ font-size:13px; color:var(--text-muted); padding:3px 0 3px 14px; position:relative; }
  .service-card li::before{ content:"–"; color:var(--cyan); position:absolute; left:0; }

  .faq-list{ display:flex; flex-direction:column; gap:14px; max-width:820px; margin:0 auto; }
  .faq-item{ background:var(--surface); border:1px solid var(--border); border-radius:16px; padding:24px 28px; }
  .faq-item h3{ font-size:16px; margin-bottom:8px; }
  .faq-item p{ color:var(--text-muted); font-size:14px; margin:0; line-height:1.6; }


  /* ---------- Industries ---------- */
  .industries{ display:grid; grid-template-columns:repeat(3,1fr); gap:18px; }
  .industry-card{ position:relative; border-radius:16px; padding:32px 28px; border:1px solid var(--border); background:linear-gradient(160deg, var(--surface) 0%, var(--surface-2) 100%); }
  .industry-card .tag{ font-family:var(--mono); font-size:11px; color:var(--cyan); letter-spacing:0.1em; text-transform:uppercase; }
  .industry-card h3{ font-size:19px; margin:14px 0 10px; }
  .industry-card p{ color:var(--text-muted); font-size:14.5px; margin:0; }
  .industry-card ul{ list-style:none; padding:0; margin:16px 0 0; border-top:1px solid var(--border); padding-top:16px; }
  .industry-card li{ font-size:13.5px; color:var(--text-muted); padding:4px 0 4px 14px; position:relative; }
  .industry-card li::before{ content:"–"; color:var(--cyan); position:absolute; left:0; }

  /* ---------- Process ---------- */
  .process{ display:grid; grid-template-columns:repeat(4,1fr); gap:18px; }
  .process-step{ padding:0; }
  .process-step .stepnum{ font-family:var(--mono); font-size:34px; color:var(--cyan); font-weight:500; }
  .process-step h3{ font-size:18px; margin:14px 0 10px; }
  .process-step p{ color:var(--text-muted); font-size:14px; margin:0; }
  .process-step:not(:last-child){ border-right:1px solid var(--border); padding-right:18px; }

  /* ---------- Pricing ---------- */
  .pricing-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:20px; align-items:stretch; }
  .pricing-note{ text-align:center; color:var(--text-muted); font-size:14px; margin:28px 0 0; }
  .pricing-faq{ max-width:720px; margin:48px auto 0; display:grid; gap:1px; background:var(--border); border:1px solid var(--border); border-radius:14px; overflow:hidden; }
  .pricing-faq .faq-item{ background:var(--surface); padding:20px 24px; }
  .pricing-faq h4{ font-size:15px; margin:0 0 6px; font-weight:600; }
  .pricing-faq p{ font-size:13.5px; color:var(--text-muted); margin:0; }
  .price-card{ background:var(--surface); border:1px solid var(--border); border-radius:20px; padding:36px 30px; display:flex; flex-direction:column; }
  .price-card.featured{ border-color:var(--cyan); background:linear-gradient(180deg, rgba(30, 216, 214,0.14), var(--surface) 40%); position:relative; }
  .price-card.featured::before{
    content:"Most popular"; position:absolute; top:-13px; left:30px;
    background:var(--cyan); color:#04222B; font-size:11.5px; font-weight:600;
    padding:4px 12px; border-radius:999px; font-family:var(--body);
  }
  .price-card h3{ font-size:19px; color:var(--text-muted); font-weight:600; font-family:var(--body); margin:0 0 22px; }
  .price-card ul{ list-style:none; padding:0; margin:0 0 28px; flex-grow:1; }
  .price-card li{ font-size:14.5px; color:var(--text-muted); padding:9px 0; border-top:1px solid var(--border); }
  .price-card li:first-child{ border-top:none; }
  .price-card li::before{ content:"• "; color:var(--cyan); }

  /* ---------- Closing CTA ---------- */
  .closing{ text-align:center; padding:120px 0; }
  .closing h2{ font-size:clamp(30px,5vw,48px); max-width:720px; margin:0 auto 30px; line-height:1.12; }
  .closing .btn-primary{ font-size:16px; padding:16px 34px; }

  /* ---------- Footer ---------- */
  footer{ border-top:1px solid var(--border); padding:56px 0 40px; }
  .foot-top{ display:flex; justify-content:space-between; align-items:flex-start; flex-wrap:wrap; gap:32px; margin-bottom:40px; }
  .foot-links{ display:flex; gap:48px; flex-wrap:wrap; }
  .foot-col h4{ font-size:12.5px; text-transform:uppercase; letter-spacing:0.08em; color:var(--text-muted); margin:0 0 14px; font-family:var(--body); font-weight:600; }
  .foot-col a{ display:block; text-decoration:none; color:var(--text); font-size:14.5px; margin-bottom:10px; opacity:0.85; }
  .foot-col a:hover{ opacity:1; color:var(--cyan); } .foot-link-btn{ display:block; background:none; border:none; padding:0; font:inherit; text-align:left; cursor:pointer; text-decoration:none; color:var(--text); font-size:14.5px; margin-bottom:10px; opacity:0.85; } .foot-link-btn:hover{ opacity:1; color:var(--cyan); }
  .foot-bottom{ display:flex; justify-content:space-between; flex-wrap:wrap; gap:12px; border-top:1px solid var(--border); padding-top:26px; font-size:13px; color:var(--text-muted); }

  /* ---------- Reveal ---------- */
  .reveal{ opacity:0; transform:translateY(18px); transition:opacity .7s ease, transform .7s ease; }
  .reveal.in{ opacity:1; transform:none; }

  @media (prefers-reduced-motion: reduce){
    html{ scroll-behavior:auto; }
    .reveal{ opacity:1; transform:none; transition:none; }
  }

  /* ---------- WhatsApp floating button ---------- */
  .whatsapp-fab{
    position:fixed;
    right:24px;
    bottom:24px;
    z-index:90;
    height:56px;
    padding:0 22px 0 16px;
    border-radius:999px;
    background:#25D366;
    display:flex;
    align-items:center;
    gap:10px;
    box-shadow:0 6px 20px rgba(0,0,0,0.35);
    transition:transform .2s ease, box-shadow .2s ease;
  }
  .whatsapp-fab svg{ width:28px; height:28px; flex:none; }
  .whatsapp-fab .fab-label{
    font-family:var(--body);
    font-size:15px;
    font-weight:600;
    color:#FFFFFF;
    white-space:nowrap;
  }
  .whatsapp-fab:hover{
    transform:translateY(-3px) scale(1.03);
    box-shadow:0 10px 26px rgba(0,0,0,0.4);
  }
  .whatsapp-fab:focus-visible{ outline:2px solid var(--cyan); outline-offset:3px; }
  @media (max-width: 640px){
    .whatsapp-fab{ right:16px; bottom:16px; height:52px; padding:0 18px 0 14px; }
    .whatsapp-fab svg{ width:26px; height:26px; }
    .whatsapp-fab .fab-label{ font-size:14px; }
  }
  @media (prefers-reduced-motion: reduce){
    .whatsapp-fab{ transition:none; }
  }

  /* ---------- Responsive ---------- */

  /* ---------- Lead modal ---------- */
  .modal-overlay{
    position:fixed; inset:0; z-index:100;
    background:rgba(5,5,8,0.72);
    backdrop-filter:blur(6px);
    display:flex; align-items:center; justify-content:center;
    padding:24px;
    opacity:0; pointer-events:none;
    transition:opacity .25s ease;
  }
  .modal-overlay.open{ opacity:1; pointer-events:auto; }
  .modal{
    position:relative; width:100%; max-width:440px;
    background:var(--surface); border:1px solid var(--border);
    border-radius:20px; padding:40px 36px;
    transform:translateY(12px); transition:transform .25s ease;
    max-height:90vh; overflow-y:auto;
  }
  .modal-overlay.open .modal{ transform:translateY(0); }
  .modal-close{
    position:absolute; top:14px; right:14px;
    background:none; border:none; color:var(--text-muted);
    font-size:24px; line-height:1; cursor:pointer; padding:8px;
  }
  .modal-close:hover{ color:var(--text); }
  .modal-body h3{ font-size:23px; margin:14px 0 10px; }
  .modal-sub{ color:var(--text-muted); font-size:14.5px; margin:0 0 26px; }
  .field{ display:block; margin-bottom:16px; }
  .field span{ display:block; font-size:13px; color:var(--text-muted); margin-bottom:6px; }
  .field input{
    width:100%; background:var(--surface-2); border:1px solid var(--border);
    border-radius:10px; padding:12px 14px; color:var(--text);
    font-family:var(--body); font-size:14.5px;
  }
  .modal-submit{ width:100%; justify-content:center; margin-top:6px; }
  .hp-field{ position:absolute; left:-9999px; width:1px; height:1px; overflow:hidden; }
  .modal-success h3{ font-size:22px; margin-bottom:10px; }
  .modal-success p{ color:var(--text-muted); font-size:15px; margin:0; }

  @media (prefers-reduced-motion: reduce){
    .modal-overlay, .modal{ transition:none; }
  }

  @media (max-width: 900px){
    .triad{ grid-template-columns:1fr; }
    .services-grid{ grid-template-columns:repeat(2,1fr); }
    .industries{ grid-template-columns:1fr; }
    .process{ grid-template-columns:repeat(2,1fr); row-gap:36px; }
    .process-step:nth-child(2){ border-right:none; }
    .pricing-grid{ grid-template-columns:1fr; }
  }
  @media (max-width: 640px){
    .nav-links{ display:none; }
    .burger{ display:block; }
    .hero{ padding:140px 0 70px; }
    .services-grid{ grid-template-columns:1fr; }
    .process{ grid-template-columns:1fr; }
    .process-step{ border-right:none !important; padding-right:0 !important; }
    .foot-links{ gap:28px; }
  }

  .price{ margin:4px 0 20px; display:flex; align-items:baseline; gap:6px; }
  .price-amount{ font-size:2.5rem; font-weight:700; letter-spacing:-0.02em; line-height:1; }
  .price-period{ font-size:0.95rem; opacity:0.65; }
  .price-card.featured .price-amount{ color:var(--cyan); }

  /* ---------- Founder ---------- */
  .founder-grid{ display:grid; grid-template-columns:300px 1fr; gap:24px; align-items:stretch; }
  .founder-photo{ width:100%; height:100%; object-fit:cover; border-radius:16px;
    border:1px solid var(--border); display:block; }
  .founder-card{ position:relative; border-radius:16px; padding:32px 28px;
    border:1px solid var(--border);
    background:linear-gradient(160deg, var(--surface) 0%, var(--surface-2) 100%); }
  .founder-card h3{ font-size:26px; margin:14px 0 12px; }
  .founder-card p{ color:var(--text-muted); font-size:15px; line-height:1.7; margin:0; }
  .founder-card ul{ list-style:none; padding:0; margin:20px 0 0;
    border-top:1px solid var(--border); padding-top:16px; }
  .founder-card li{ font-size:13.5px; color:var(--text-muted);
    padding:4px 0 4px 14px; position:relative; }
  .founder-card li::before{ content:"\2013"; color:var(--cyan); position:absolute; left:0; }
  .founder-links{ display:flex; gap:24px; flex-wrap:wrap; margin-top:24px;
    font-family:var(--mono); font-size:12.5px; letter-spacing:0.04em; }
  .founder-links a{ color:var(--cyan); text-decoration:none; }
  .founder-links a:hover{ text-decoration:underline; }
  @media(max-width:820px){
    .founder-grid{ grid-template-columns:1fr; gap:20px; }
    .founder-photo{ max-width:240px; height:auto; aspect-ratio:1; }
  }
