:root{
    --brand:#1b2c3b;
    --brand-dark:#101c27;
    --brand-soft: rgba(27,44,59,0.06);
    --brand-soft-2: rgba(27,44,59,0.12);
    --heading:#1b2c3b;
    --orange:#66140e;
    --orange-dark:#4a0e08;
    --orange-tint:#f7e6e3;
    --gold:#bda562;
    --gold-tint:#f5efdd;
    --white:#ffffff;
    --ink:#3d3c32;
    --muted:#8b8a7c;
    --paper:#ebebeb;
    --surface:#ffffff;
    --line:#e2e2dc;
    --radius-sm:8px;
    --radius-md:14px;
    --radius-lg:24px;
    --shadow-sm: 0 1px 2px rgba(30,28,20,0.06), 0 1px 1px rgba(30,28,20,0.04);
    --shadow-md: 0 10px 30px rgba(30,28,20,0.10);
    --shadow-lg: 0 24px 70px rgba(30,28,20,0.16);
    --maxw: 1180px;
  }

  *,*::before,*::after{ box-sizing:border-box; }
  html{ scroll-behavior:smooth; }
  body{
    margin:0;
    font-family:'Inter',-apple-system,BlinkMacSystemFont,sans-serif;
    color:var(--ink);
    background:var(--surface);
    -webkit-font-smoothing:antialiased;
    line-height:1.5;
    overflow-x:hidden;
  }
  h1,h2,h3,h4{
    font-family:'Space Grotesk','Inter',sans-serif;
    color:var(--heading);
    margin:0;
    letter-spacing:-0.01em;
  }
  p{ margin:0; }
  a{ color:inherit; text-decoration:none; }
  ul{ margin:0; padding:0; list-style:none; }
  button{ font-family:inherit; cursor:pointer; }
  img{ max-width:100%; display:block; }
  .mono{ font-family:'IBM Plex Mono', monospace; }
  .icon{ width:20px; height:20px; flex:none; }
  .icon use, .icon svg{ color:inherit; }

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

  .wrap{ max-width:var(--maxw); margin:0 auto; padding:0 24px; }
  section{ position:relative; }

  /* ---------- reveal-on-scroll (progressive enhancement) ---------- */
  @media (prefers-reduced-motion: no-preference){
    body.js-ready .reveal{
      opacity:0;
      transform:translateY(18px);
      transition:opacity .7s ease, transform .7s ease;
    }
    body.js-ready .reveal.in-view{ opacity:1; transform:translateY(0); }
    body.js-ready .stagger > *{ transition-delay: calc(var(--i, 0) * 90ms); }
    body.js-ready .draw-line{ width:0 !important; transition:width 1s ease .15s; }
    body.js-ready .draw-line.in-view{ width:100% !important; }
    .float-chip{ animation:float 6s ease-in-out infinite; }
    .blob{ animation:blobmove 16s ease-in-out infinite; }
  }
  @keyframes float{ 0%,100%{ transform:translateY(0px) rotate(-3deg);} 50%{ transform:translateY(-14px) rotate(3deg);} }
  @keyframes blobmove{ 0%,100%{ transform:translate(0,0) scale(1);} 50%{ transform:translate(20px,-16px) scale(1.06);} }

  /* ---------- buttons ---------- */
  .btn{
    display:inline-flex; align-items:center; justify-content:center; gap:8px;
    padding:13px 22px; border-radius:10px; font-weight:700; font-size:15px;
    border:1.5px solid transparent; white-space:nowrap;
    transition:transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease, border-color .15s ease;
  }
  .btn:active{ transform:translateY(1px); }
  .btn-primary{ background:var(--orange); color:var(--white); box-shadow:var(--shadow-sm); }
  .btn-primary:hover{ background:var(--orange-dark); color:var(--white); box-shadow:var(--shadow-md); transform:translateY(-2px); }
  .btn-ghost{ background:transparent; color:var(--heading); border-color:var(--heading); }
  .btn-ghost:hover{ border-color:var(--heading); background:var(--brand-soft); }
  .btn-on-navy{ background:transparent; color:var(--white); border-color:rgba(255,255,255,0.35); }
  .btn-on-navy:hover{ background:rgba(255,255,255,0.12); border-color:rgba(255,255,255,0.6); }
  .btn-sm{ padding:9px 16px; font-size:13.5px; border-radius:8px; }
  .btn-block{ width:100%; }

  /* ================= ANNOUNCEMENT BAR ================= */
  .announce{ background:var(--brand); color:var(--white); }
  .announce .wrap{ display:flex; align-items:center; justify-content:center; gap:16px; padding:10px 24px; font-size:13.5px; text-align:center; }
  .announce strong{ font-weight:600; }
  .announce .icon{ width:14px; height:14px; color:var(--orange); }
  .announce .btn{ flex:none; padding:7px 14px; font-size:12.5px; }

  /* ================= HEADER / NAV ================= */
  header.site{ position:sticky; top:0; z-index:60; background:rgba(255,255,255,0.92); backdrop-filter:blur(10px); border-bottom:1px solid var(--line); }
  nav.site{ display:flex; align-items:center; justify-content:space-between; padding:14px 24px; gap:20px; }
  .brand{ display:flex; align-items:center; gap:10px; font-weight:700; font-size:19px; color:var(--heading); }
  .brand .mark{ width:34px; height:34px; border-radius:9px; background:var(--brand); display:flex; align-items:center; justify-content:center; flex:none; }

  .nav-links{ display:flex; align-items:center; gap:30px; }
  .nav-links a{ font-size:14.5px; font-weight:600; color:var(--ink); opacity:0.8; position:relative; padding:4px 0; }
  .nav-links a::after{ content:""; position:absolute; left:0; bottom:-2px; width:0; height:2px; background:var(--orange); transition:width .2s ease; }
  .nav-links a:hover{ opacity:1; color:var(--heading); }
  .nav-links a:hover::after{ width:100%; }

  .nav-actions{ display:flex; align-items:center; gap:10px; position:relative; }

  .login-dd{ position:relative; }
  .login-dd-trigger{ display:flex; align-items:center; gap:6px; }
  .login-dd-trigger .chev{ width:13px; height:13px; transition:transform .2s ease; }
  .login-dd-trigger.open .chev{ transform:rotate(180deg); }
  .login-dd-menu{
    position:absolute; top:calc(100% + 10px); right:0; background:var(--surface); border:1px solid var(--line);
    border-radius:12px; box-shadow:var(--shadow-lg); width:250px; padding:8px; opacity:0; visibility:hidden;
    transform:translateY(-6px); transition:opacity .18s ease, transform .18s ease, visibility .18s;
    z-index:80;
  }
  .login-dd-menu.open{ opacity:1; visibility:visible; transform:translateY(0); }
  .login-dd-item{ display:flex; align-items:flex-start; gap:12px; width:100%; text-align:left; padding:11px 12px; border-radius:9px; background:none; border:none; }
  .login-dd-item:hover{ background:var(--paper); }
  .login-dd-item .icon-wrap{ width:34px; height:34px; border-radius:9px; background:var(--brand-soft); display:flex; align-items:center; justify-content:center; flex:none; }
  .login-dd-item .icon-wrap .icon{ color:var(--heading); }
  .login-dd-item strong{ display:block; font-size:13.5px; color:var(--heading); }
  .login-dd-item span{ font-size:12px; color:var(--muted); }

  .hamburger{ display:none; background:none; border:none; padding:8px; border-radius:8px; }
  .hamburger span{ display:block; width:22px; height:2px; background:var(--brand); margin:5px 0; border-radius:2px; }

  .mobile-panel{ display:none; position:fixed; inset:0; z-index:70; background:var(--surface); padding:20px 24px 40px; overflow-y:auto; }
  .mobile-panel.open{ display:block; }
  .mobile-panel .top-row{ display:flex; align-items:center; justify-content:space-between; margin-bottom:30px; }
  .mobile-panel a.link{ display:block; padding:14px 0; font-size:17px; font-weight:600; color:var(--heading); border-bottom:1px solid var(--line); }
  .mobile-panel .actions{ display:flex; flex-direction:column; gap:12px; margin-top:24px; }
  .close-x{ background:none; border:none; padding:6px; color:var(--heading); }

  @media (max-width:880px){
    .nav-links{ display:none; }
    .nav-actions .desktop-only{ display:none; }
    .hamburger{ display:block; }
  }

  /* ================= HERO ================= */
  .hero{ padding:84px 24px 70px; text-align:center; overflow:hidden; }
  .hero-bg{ position:absolute; inset:0; z-index:0; pointer-events:none; overflow:hidden; }
  .blob{ position:absolute; border-radius:50%; filter:blur(50px); opacity:.55; }
  .blob-1{ width:420px; height:420px; background:var(--orange-tint); top:-160px; left:-100px; }
  .blob-2{ width:460px; height:460px; background:var(--brand-soft-2); top:-120px; right:-140px; animation-delay:-6s; }
  .hero-inner{ position:relative; z-index:1; }
  .float-chip{
    position:absolute; width:52px; height:52px; border-radius:14px; background:var(--surface);
    border:1px solid var(--line); box-shadow:var(--shadow-md); display:flex; align-items:center; justify-content:center; z-index:2;
  }
  .float-chip .icon{ width:22px; height:22px; color:var(--heading); }
  .fc-1{ top:18%; left:6%; animation-delay:0s; }
  .fc-2{ top:12%; right:9%; animation-delay:-2s; }
  .fc-3{ bottom:10%; left:12%; animation-delay:-4s; }
  @media (max-width:900px){ .float-chip{ display:none; } }

  .eyebrow{
    display:inline-flex; align-items:center; gap:8px; background:var(--orange-tint); color:var(--heading);
    font-size:13px; font-weight:700; letter-spacing:0.02em; padding:8px 16px; border-radius:100px; margin-bottom:26px;
  }
  .eyebrow .icon{ width:13px; height:13px; }
  .hero h1{ font-size:clamp(34px, 5.4vw, 62px); font-weight:700; line-height:1.08; max-width:820px; margin:0 auto; }
  .hero h1 .accent{ color:var(--orange); }
  .hero .sub{ max-width:600px; margin:22px auto 0; font-size:17.5px; color:var(--muted); line-height:1.6; }
  .hero .cta-row{ display:flex; gap:14px; justify-content:center; margin-top:34px; flex-wrap:wrap; }
  .hero .cta-row .btn{ padding:15px 28px; font-size:15.5px; }
  .trust-row{ margin-top:30px; display:flex; gap:26px; justify-content:center; flex-wrap:wrap; font-size:13.5px; color:var(--muted); font-weight:600; }
  .trust-row span{ display:inline-flex; align-items:center; gap:6px; }
  .trust-row .icon{ width:15px; height:15px; color:var(--heading); }

  /* ================= TICKER ================= */
  .ticker-section{ background:var(--brand); overflow:hidden; padding:16px 0; margin-top:56px; }
  .ticker-track{ display:flex; width:max-content; animation:ticker-scroll 32s linear infinite; }
  .ticker-section:hover .ticker-track{ animation-play-state:paused; }
  @media (prefers-reduced-motion: reduce){ .ticker-track{ animation:none; } }
  .ticker-track span.item{ color:rgba(255,255,255,0.78); font-size:13.5px; letter-spacing:0.04em; padding:0 20px; white-space:nowrap; display:inline-flex; align-items:center; gap:10px; }
  .ticker-track .num{ color:var(--orange); font-weight:600; }
  .ticker-track .dot{ color:rgba(255,255,255,0.3); }
  @keyframes ticker-scroll{ from{ transform:translateX(0);} to{ transform:translateX(-50%);} }

  /* ================= LOGOS ================= */
  .logos-section{ padding:44px 24px; }
  .logos-section .label{ text-align:center; font-size:12.5px; letter-spacing:0.08em; text-transform:uppercase; color:var(--muted); font-weight:700; margin-bottom:26px; }
  .logos-row{ display:flex; flex-wrap:wrap; justify-content:center; gap:42px; row-gap:22px; }
  .logos-row .logo-item{ font-family:'Space Grotesk',sans-serif; font-weight:600; font-size:19px; color:var(--heading); opacity:0.4; transition:opacity .2s ease; }
  .logos-row .logo-item:hover{ opacity:0.85; }

  /* ================= STATS ================= */
  .stats-section{ padding:20px 24px 70px; }
  .stats-grid{ display:grid; grid-template-columns:repeat(4,1fr); border-top:1px solid var(--line); border-left:1px solid var(--line); }
  .stat-cell{ padding:34px 22px; text-align:center; border-right:1px solid var(--line); border-bottom:1px solid var(--line); }
  .stat-cell .num{ font-family:'IBM Plex Mono',monospace; font-weight:600; font-size:clamp(28px,3.4vw,40px); color:var(--orange); display:block; }
  .stat-cell .lbl{ margin-top:8px; font-size:13.5px; color:var(--muted); font-weight:600; }
  @media (max-width:720px){ .stats-grid{ grid-template-columns:repeat(2,1fr); } }

  /* ================= SECTION HEADERS ================= */
  .section-head{ text-align:center; max-width:640px; margin:0 auto 50px; }
  .section-head .eyebrow{ margin-bottom:16px; }
  .section-head h2{ font-size:clamp(26px,3.6vw,38px); font-weight:700; }
  .section-head p{ margin-top:14px; color:var(--muted); font-size:16px; line-height:1.6; }

  /* ================= SERVICES + SMART ANALYTICS ================= */
  .services-analytics{ padding:90px 24px; background:var(--paper); }
  .sa-layout{ display:grid; grid-template-columns:0.85fr 1.15fr; gap:22px; align-items:stretch; }
  .sa-tabs{ display:flex; flex-direction:column; gap:8px; }
  .sa-tab{ display:flex; align-items:flex-start; gap:14px; padding:15px 16px; border-radius:12px; border:1.5px solid transparent; border-left:3px solid transparent; background:transparent; text-align:left; transition:all .2s ease; width:100%; }
  .sa-tab:hover{ background:var(--surface); border-color:var(--line); }
  .sa-tab.active{ background:var(--surface); border-color:var(--line); border-left-color:var(--orange); box-shadow:var(--shadow-sm); }
  .sa-tab .icon-wrap{ width:38px; height:38px; border-radius:9px; background:var(--brand); display:flex; align-items:center; justify-content:center; flex:none; }
  .sa-tab .icon-wrap .icon{ width:19px; height:19px; color:var(--white); }
  .sa-tab h3{ font-size:15.5px; margin-bottom:3px; }
  .sa-tab p{ font-size:12.5px; color:var(--muted); line-height:1.4; }

  .sa-panel{ background:var(--brand); border-radius:var(--radius-lg); padding:36px; color:var(--white); display:flex; flex-direction:column; }
  .sa-eyebrow{ font-size:12px; text-transform:uppercase; letter-spacing:.08em; color:rgba(255,255,255,.55); font-weight:700; margin-bottom:16px; display:flex; align-items:center; gap:8px; }
  .sa-eyebrow .dot-live{ width:7px; height:7px; border-radius:50%; background:var(--orange); box-shadow:0 0 0 3px rgba(255,91,36,.25); }
  .sa-metric-row{ display:flex; align-items:baseline; gap:10px; }
  .sa-metric{ font-family:'IBM Plex Mono',monospace; font-size:44px; font-weight:600; color:var(--orange); }
  .sa-metric-label{ font-size:14.5px; color:rgba(255,255,255,.75); font-weight:600; }
  .sa-chart{ display:flex; align-items:flex-end; gap:8px; height:90px; margin:26px 0 22px; }
  .sa-chart .bar{ flex:1; background:linear-gradient(to top, var(--orange), rgba(255,91,36,.45)); border-radius:5px 5px 2px 2px; transition:height .8s cubic-bezier(.2,.8,.2,1); height:4%; }
  .sa-chips{ display:flex; flex-wrap:wrap; gap:8px; margin-bottom:24px; }
  .sa-chip{ display:inline-flex; align-items:center; gap:6px; font-size:12px; font-weight:600; background:rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.14); padding:6px 12px; border-radius:100px; color:rgba(255,255,255,.85); }
  .sa-chip .icon{ width:12px; height:12px; color:var(--orange); }
  .sa-included{ margin-top:auto; padding-top:20px; border-top:1px solid rgba(255,255,255,.14); }
  .sa-included .lbl{ font-size:12px; text-transform:uppercase; letter-spacing:.06em; color:rgba(255,255,255,.5); font-weight:700; margin-bottom:10px; }
  .sa-pill-row{ display:flex; flex-wrap:wrap; gap:8px; }
  .sa-pill{ font-size:12.5px; padding:6px 12px; border-radius:8px; background:#eef0f7; color:rgba(255,255,255,.85); }
  @media (max-width:900px){ .sa-layout{ grid-template-columns:1fr; } }

  /* ================= HOW IT WORKS ================= */
  .how-section{ padding:90px 24px; }
  .how-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:36px; position:relative; }
  .how-line{ position:absolute; top:27px; left:14%; right:14%; height:1px; background:repeating-linear-gradient(to right, var(--line) 0 8px, transparent 8px 16px); }
  @media (max-width:820px){ .how-line{ display:none; } }
  .how-step{ text-align:center; position:relative; }
  .how-step .step-num{ width:56px; height:56px; border-radius:50%; margin:0 auto 22px; background:var(--surface); border:2px solid var(--brand); color:var(--heading); font-family:'IBM Plex Mono',monospace; font-weight:600; font-size:19px; display:flex; align-items:center; justify-content:center; position:relative; z-index:1; transition:transform .2s ease, background .2s ease, color .2s ease; }
  .how-step:hover .step-num{ background:var(--brand); color:var(--white); transform:scale(1.08); }
  .how-step h3{ font-size:18px; font-weight:700; margin-bottom:10px; }
  .how-step p{ color:var(--muted); font-size:14.5px; max-width:270px; margin:0 auto; line-height:1.6; }
  @media (max-width:820px){ .how-grid{ grid-template-columns:1fr; gap:44px; } }

  /* ================= DAILY RHYTHM ================= */
  .rhythm-section{ padding:90px 24px; background:var(--paper); }
  .rhythm-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
  .rhythm-card{ background:var(--surface); border:1px solid var(--line); border-radius:var(--radius-md); padding:26px; }
  .rhythm-card .rh-head{ display:flex; align-items:center; gap:12px; margin-bottom:20px; }
  .rhythm-card .rh-head .icon-wrap{ width:38px; height:38px; border-radius:10px; display:flex; align-items:center; justify-content:center; }
  .rh-morning .icon-wrap{ background:var(--orange-tint); }
  .rh-midday .icon-wrap{ background:var(--brand-soft-2); }
  .rh-evening .icon-wrap{ background:var(--brand); }
  .rh-morning .icon-wrap .icon{ color:var(--orange-dark); }
  .rh-midday .icon-wrap .icon{ color:var(--heading); }
  .rh-evening .icon-wrap .icon{ color:var(--white); }
  .rh-head h3{ font-size:16px; }
  .rh-head span{ font-size:12px; color:var(--muted); font-weight:600; }
  .rh-list li{ display:flex; align-items:center; gap:10px; padding:10px 0; border-top:1px solid var(--line); font-size:14px; }
  .rh-list li:first-child{ border-top:none; }
  .rh-list .check-circle{ width:20px; height:20px; border-radius:50%; background:var(--brand); display:flex; align-items:center; justify-content:center; flex:none; }
  .rh-list .check-circle svg{ width:11px; height:11px; }
  .rh-list .check-path{ stroke-dasharray:16; stroke-dashoffset:16; transition:stroke-dashoffset .5s ease; }
  body.js-ready .rhythm-card.in-view .rh-list li:nth-child(1) .check-path{ transition-delay:.15s; }
  body.js-ready .rhythm-card.in-view .rh-list li:nth-child(2) .check-path{ transition-delay:.35s; }
  body.js-ready .rhythm-card.in-view .rh-list li:nth-child(3) .check-path{ transition-delay:.55s; }
  .rhythm-card.in-view .check-path{ stroke-dashoffset:0; }
  @media (max-width:820px){ .rhythm-grid{ grid-template-columns:1fr; } }

  /* ================= TESTIMONIALS ================= */
  .testi-section{ padding:90px 24px; background:var(--brand); }
  .testi-section .section-head h2, .testi-section .section-head p{ color:var(--white); }
  .testi-section .section-head p{ color:rgba(255,255,255,0.68); }
  .testi-section .eyebrow{ background:rgba(255,255,255,0.12); color:var(--white); }
  .testi-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
  .testi-card{ background:rgba(255,255,255,0.04); border:1px solid rgba(255,255,255,0.12); border-radius:var(--radius-md); padding:26px; transition:transform .25s ease, background .25s ease; }
  .testi-card:hover{ transform:translateY(-6px); background:rgba(255,255,255,0.07); }
  .testi-card .stars{ display:flex; gap:2px; color:var(--orange); margin-bottom:16px; }
  .testi-card .stars .icon{ width:15px; height:15px; }
  .testi-card blockquote{ color:rgba(255,255,255,0.88); font-size:15px; line-height:1.6; margin:0 0 20px; }
  .testi-card .person{ display:flex; align-items:center; gap:12px; }
  .testi-card .avatar{ width:40px; height:40px; border-radius:50%; background:var(--orange); color:var(--heading); display:flex; align-items:center; justify-content:center; font-weight:700; font-size:14px; flex:none; }
  .testi-card .person .name{ font-weight:700; font-size:14px; color:var(--white); }
  .testi-card .person .role{ font-size:12.5px; color:rgba(255,255,255,0.6); }
  @media (max-width:900px){ .testi-grid{ grid-template-columns:1fr; } }

  /* ================= FAQ (Q&A) ================= */
  .faq-section{ padding:90px 24px; }
  .faq-list{ max-width:760px; margin:0 auto; display:flex; flex-direction:column; gap:12px; }
  .faq-item{ border:1px solid var(--line); border-radius:14px; background:var(--surface); overflow:hidden; transition:border-color .2s ease, box-shadow .2s ease; }
  .faq-item.open, .faq-item:hover{ border-color:var(--heading); box-shadow:var(--shadow-sm); }
  .faq-q{ display:flex; align-items:center; justify-content:space-between; gap:16px; width:100%; background:none; border:none; padding:19px 22px; text-align:left; }
  .faq-q .icon-wrap{ width:30px; height:30px; border-radius:8px; background:var(--orange-tint); display:flex; align-items:center; justify-content:center; flex:none; }
  .faq-q .icon-wrap .icon{ width:15px; height:15px; color:var(--orange-dark); }
  .faq-q h3{ font-size:15.5px; font-weight:600; color:var(--ink); flex:1; }
  .faq-q .chev{ width:18px; height:18px; color:var(--heading); transition:transform .3s ease; flex:none; }
  .faq-item.open .faq-q .chev{ transform:rotate(180deg); }
  .faq-a-wrap{ display:grid; grid-template-rows:0fr; transition:grid-template-rows .35s ease; }
  .faq-item.open .faq-a-wrap{ grid-template-rows:1fr; }
  .faq-a-inner{ overflow:hidden; }
  .faq-a{ padding:0 22px 20px 68px; font-size:14.5px; color:var(--muted); line-height:1.65; }

  /* ================= BENTO FEATURES ================= */
  .bento-section{ padding:90px 24px; background:var(--paper); }
  .bento-grid{ display:grid; grid-template-columns:repeat(4,1fr); grid-auto-rows:150px; gap:18px; }
  .bento-card{ background:var(--surface); border:1px solid var(--line); border-radius:var(--radius-md); padding:24px; display:flex; flex-direction:column; justify-content:flex-end; transition:transform .2s ease, box-shadow .2s ease; position:relative; overflow:hidden; }
  .bento-card:hover{ transform:translateY(-5px); box-shadow:var(--shadow-md); }
  .bento-card .icon-wrap{ width:42px; height:42px; border-radius:10px; background:var(--brand); display:flex; align-items:center; justify-content:center; margin-bottom:14px; transition:background .2s ease; }
  .bento-card:hover .icon-wrap{ background:var(--orange); }
  .bento-card .icon-wrap .icon{ width:21px; height:21px; color:var(--white); }
  .bento-card h3{ font-size:16.5px; margin-bottom:6px; }
  .bento-card p{ font-size:13.5px; color:var(--muted); line-height:1.5; }
  .bento-1{ grid-column:span 2; grid-row:span 2; }
  .bento-6{ grid-row:span 2; }
  .bento-1 .icon-wrap{ width:48px; height:48px; }
  .bento-1 h3{ font-size:20px; }
  .bento-1 p{ font-size:14.5px; max-width:340px; }
  @media (max-width:960px){
    .bento-grid{ grid-template-columns:repeat(2,1fr); grid-auto-rows:170px; }
    .bento-1{ grid-column:span 2; }
    .bento-6{ grid-row:span 1; }
  }
  @media (max-width:560px){
    .bento-grid{ grid-template-columns:1fr; }
    .bento-1{ grid-column:span 1; grid-row:span 1; }
  }

  /* ================= LEADS BANNER ================= */
  .leads-section{ padding:80px 24px; }
  .leads-card{ max-width:var(--maxw); margin:0 auto; background:var(--orange-tint); border-radius:var(--radius-lg); padding:52px; display:grid; grid-template-columns:1.3fr 0.9fr; gap:40px; align-items:center; }
  .leads-card .badge-sm{ display:inline-block; background:var(--brand); color:var(--white); font-size:11.5px; font-weight:700; letter-spacing:0.05em; text-transform:uppercase; padding:6px 12px; border-radius:100px; margin-bottom:18px; }
  .leads-card h2{ font-size:clamp(22px,2.8vw,30px); margin-bottom:14px; }
  .leads-card p{ color:var(--ink); opacity:0.75; font-size:15px; line-height:1.6; max-width:480px; }
  .leads-card ul{ margin-top:18px; display:flex; flex-direction:column; gap:10px; }
  .leads-card ul li{ display:flex; align-items:center; gap:10px; font-size:14px; font-weight:600; color:var(--heading); }
  .leads-card ul li .icon{ width:16px; height:16px; color:var(--orange); }
  .leads-visual{ background:var(--brand); border-radius:var(--radius-md); aspect-ratio:1/1; max-width:220px; margin:0 auto; display:flex; align-items:center; justify-content:center; }
  .leads-visual .icon{ width:96px; height:96px; color:var(--white); opacity:0.9; }
  @media (max-width:820px){ .leads-card{ grid-template-columns:1fr; padding:34px; text-align:left; } .leads-visual{ display:none; } }

  /* ================= FINAL CTA ================= */
  .final-cta{ padding:100px 24px; text-align:center; }
  .final-cta h2{ font-size:clamp(28px,4vw,42px); max-width:640px; margin:0 auto; }
  .final-cta p{ margin-top:16px; color:var(--muted); font-size:16px; }
  .final-cta .cta-row{ display:flex; gap:14px; justify-content:center; margin-top:32px; flex-wrap:wrap; }

  /* ================= FOOTER ================= */
  footer.site{ background:var(--brand-dark); color:rgba(255,255,255,0.7); padding:64px 24px 32px; }
  .footer-grid{ display:grid; grid-template-columns:1.6fr 1fr 1fr 1fr; gap:32px; padding-bottom:44px; }
  .footer-grid .brand{ color:var(--white); margin-bottom:14px; }
  .footer-grid .brand .mark{ background:var(--orange); }
  .footer-grid p.desc{ font-size:14px; line-height:1.6; max-width:280px; color:rgba(255,255,255,0.55); }
  .footer-grid h4{ color:var(--white); font-size:13px; text-transform:uppercase; letter-spacing:0.06em; margin-bottom:16px; }
  .footer-grid ul li{ margin-bottom:11px; }
  .footer-grid ul li a{ font-size:14px; color:rgba(255,255,255,0.62); }
  .footer-grid ul li a:hover{ color:var(--orange); }
  .footer-bottom{ border-top:1px solid rgba(255,255,255,0.12); padding-top:24px; display:flex; justify-content:space-between; flex-wrap:wrap; gap:10px; font-size:13px; color:rgba(255,255,255,0.45); }
  @media (max-width:820px){ .footer-grid{ grid-template-columns:1fr 1fr; } }

  /* ================= LOGIN MODAL (dual: staff / client) ================= */
  .modal-overlay{ position:fixed; inset:0; background:rgba(0,20,40,0.55); backdrop-filter:blur(3px); display:none; align-items:center; justify-content:center; z-index:100; padding:20px; }
  .modal-overlay.open{ display:flex; }
  .login-modal{ background:var(--surface); border-radius:var(--radius-lg); width:100%; max-width:860px; box-shadow:var(--shadow-lg); max-height:92vh; overflow:hidden; display:grid; grid-template-columns:0.85fr 1.15fr; position:relative; }
  .lm-side{ background:var(--brand); padding:40px 36px; color:var(--white); display:flex; flex-direction:column; position:relative; overflow:hidden; }
  .lm-side .side-icon{ width:46px; height:46px; border-radius:12px; background:rgba(255,255,255,.12); display:flex; align-items:center; justify-content:center; margin-bottom:24px; }
  .lm-side .side-icon .icon{ width:22px; height:22px; color:var(--orange); }
  .lm-side h3{ color:var(--white); font-size:24px; margin-bottom:10px; }
  .lm-side p.side-sub{ color:rgba(255,255,255,.68); font-size:14px; line-height:1.6; margin-bottom:28px; }
  .lm-side ul{ display:flex; flex-direction:column; gap:14px; margin-top:auto; }
  .lm-side ul li{ display:flex; align-items:center; gap:10px; font-size:13.5px; color:rgba(255,255,255,.85); }
  .lm-side ul li .icon{ width:16px; height:16px; color:var(--orange); }

  .lm-form{ padding:38px 36px 30px; position:relative; overflow-y:auto; }
  .modal-close{ position:absolute; top:16px; right:16px; background:rgba(0,0,0,.06); border:none; width:32px; height:32px; border-radius:50%; display:flex; align-items:center; justify-content:center; color:var(--heading); z-index:5; }
  .lm-side .modal-close{ background:rgba(255,255,255,.14); color:var(--white); }
  .modal-close:hover{ background:rgba(0,0,0,.12); }

  .lm-toggle{ display:inline-flex; background:var(--paper); border:1px solid var(--line); border-radius:100px; padding:4px; margin-bottom:24px; }
  .lm-toggle button{ border:none; background:none; padding:8px 16px; font-size:13px; font-weight:700; border-radius:100px; color:var(--muted); transition:all .2s ease; }
  .lm-toggle button.active{ background:var(--brand); color:var(--white); }

  .lm-form h2{ font-size:23px; margin-bottom:6px; }
  .lm-form .sub{ color:var(--muted); font-size:14px; margin-bottom:24px; display:block; }
  .field{ margin-bottom:18px; }
  .field label{ display:block; font-size:13px; font-weight:700; color:var(--heading); margin-bottom:7px; }
  .field .input-wrap{ position:relative; }
  .field input{ width:100%; padding:12px 14px; border:1.5px solid var(--line); border-radius:9px; font-size:14.5px; font-family:inherit; color:var(--ink); background:var(--surface); transition:border-color .15s ease; }
  .field input:focus{ outline:none; border-color:var(--heading); }
  .field .toggle-pw{ position:absolute; right:10px; top:50%; transform:translateY(-50%); background:none; border:none; padding:4px; color:var(--heading); opacity:0.65; display:flex; }
  .field .toggle-pw:hover{ opacity:1; }
  .field .toggle-pw .icon{ width:18px; height:18px; }
  .form-meta{ display:flex; justify-content:flex-end; margin:-6px 0 20px; }
  .form-meta a{ font-size:13px; font-weight:600; color:var(--heading); opacity:0.8; }
  .form-meta a:hover{ opacity:1; text-decoration:underline; }
  .form-note{ margin-top:16px; font-size:12.5px; color:var(--muted); text-align:center; line-height:1.5; }
  .form-note.hidden-note{ display:none; }
  .lm-switch{ text-align:center; margin-top:18px; font-size:13.5px; color:var(--muted); }
  .lm-switch button{ background:none; border:none; color:var(--heading); font-weight:700; text-decoration:underline; padding:0; }

  @media (max-width:720px){
    .login-modal{ grid-template-columns:1fr; }
    .lm-side{ display:none; }
    .lm-form{ padding:34px 24px 26px; }
  }

  .toast{
    position:fixed; bottom:26px; left:50%; transform:translateX(-50%) translateY(20px);
    background:var(--brand); color:var(--white); padding:13px 22px; border-radius:10px;
    font-size:14px; font-weight:600; box-shadow:var(--shadow-lg); z-index:200;
    opacity:0; pointer-events:none; transition:opacity .25s ease, transform .25s ease;
    display:flex; align-items:center; gap:8px;
  }
  .toast.show{ opacity:1; transform:translateX(-50%) translateY(0); }
  .toast .icon{ width:16px; height:16px; color:var(--orange); }

/* ---- login toast error state (auth) ---- */
.toast.toast-error{ background:#c0271b; }
.toast.toast-error .icon{ color:#fff; }
