  @import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600;9..144,700&family=Inter:wght@400;500;600;700&family=IBM+Plex+Mono:wght@400;500&display=swap');

  :root{
    --orange:#E8720C;
    --orange-deep:#C85A08;
    --maroon:#8B2A1E;
    --cream-dim:#FBF4E8;
    --cream:#F2E6D2;
    --ink:#2B2420;
    --slate:#6B6155;
    --teal:#5F9AA1;
    --sage:#4F7D57;
    --line: rgba(43,36,32,0.1);

    /* ============================================================
       SECTION BACKGROUNDS — edit any value below to reskin a section.
       Use a solid color (e.g. #FFFFFF), a gradient, or a color + image:
         --bg-hero: var(--cream) url('assets/hero.jpg') center/cover no-repeat;
       ============================================================ */
    --bg-body:      #FFFFFF;
    --bg-header:    var(--cream);
    --bg-hero:      var(--cream);
    --bg-hero-image: url('../assets/images/gold-bg.png');   /* e.g. url('assets/hero-texture.jpg') — full-bleed background behind the entire hero */
    --bg-insight:   var(--cream);
    --bg-strip:     var(--cream-dim);
    --bg-problem:   var(--ink);
    --bg-howteaser: #FFFFFF;
    --bg-privacy:   linear-gradient(135deg,#5f9aa1,#4c8288);
    --bg-features:  var(--cream-dim);
    --bg-usecases:  #FFFFFF;
    --bg-finalcta:  #FFFFFF;
    --bg-footer:    #C85A08;
    --bg-innerhero: #FBF4E8;
    --bg-walk:      #FFFFFF;
    --bg-faq:       #FFFFFF;
  }
  *{box-sizing:border-box;}
  html{scroll-behavior:smooth;}
  body{
    margin:0; background:var(--bg-body); color:var(--ink);
    font-family:'Inter',sans-serif; -webkit-font-smoothing:antialiased;
  }
  h1,h2,h3,.display{ font-family:'Fraunces',serif; font-weight:600; letter-spacing:-0.01em; }
  .mono{ font-family:'IBM Plex Mono',monospace; }
  a{ text-decoration:none; color:inherit; }
  .wrap{ max-width:1120px; margin:0 auto; padding:0 28px; }
  .eyebrow{ text-transform:uppercase; letter-spacing:0.14em; font-size:12px; color:var(--maroon); font-weight:600; }

  /* NAV */
  .top-line{ height:3px; background:linear-gradient(90deg,#E4DAC8,#EDE1CE,#E4DAC8); position:sticky; top:0; z-index:41; }
  header.site{ position:sticky; top:3px; z-index:40; background:var(--bg-header); border-bottom:1px solid rgba(43,36,32,0.14); }
  nav.wrap{ display:flex; align-items:center; justify-content:space-between; height:78px; }
  nav .logo img{ height:34px; display:block; }
  nav .links{ display:flex; gap:32px; align-items:center; }
  nav .links a.nav-link{ font-size:14.5px; font-weight:500; color:var(--ink); opacity:0.75; cursor:pointer; padding-bottom:5px; border-bottom:2px solid transparent; }
  nav .links a.nav-link.active{ opacity:1; color:var(--ink); font-weight:600; border-bottom-color:var(--orange); }
  nav .links a.nav-link:hover{ opacity:1; }
  nav .cta{ background:transparent; color:var(--ink); padding:10px 20px; border-radius:30px; font-size:14px; font-weight:600; cursor:pointer; transition:all 0.2s ease; display:inline-flex; align-items:center; gap:6px; border:1.5px solid var(--ink); }
  nav .cta:hover{ background:var(--ink); color:var(--cream); transform:translateY(-2px); box-shadow:0 8px 18px rgba(43,36,32,0.2); }
  .navburger{ display:none; background:none; border:none; cursor:pointer; padding:6px; }
  .navburger .bar{ display:block; width:22px; height:2px; background:var(--ink); margin:5px 0; transition:all 0.2s ease; }
  .navburger.open .bar:nth-child(1){ transform:translateY(7px) rotate(45deg); }
  .navburger.open .bar:nth-child(2){ opacity:0; }
  .navburger.open .bar:nth-child(3){ transform:translateY(-7px) rotate(-45deg); }

  /* MOBILE NAV — right-side drawer */
  .nav-overlay{ position:fixed; inset:0; background:rgba(43,36,32,0.45); z-index:49; opacity:0; pointer-events:none; transition:opacity 0.25s ease; }
  .nav-overlay.open{ opacity:1; pointer-events:auto; }

  .mobile-nav{ position:fixed; top:0; right:0; bottom:0; width:min(420px,86vw); background:var(--cream); z-index:50; transform:translateX(100%); transition:transform 0.3s ease; display:flex; flex-direction:column; padding:26px 30px; box-shadow:-14px 0 40px rgba(43,36,32,0.18); overflow-y:auto; }
  .mobile-nav.open{ transform:translateX(0); }
  .mobile-nav-head{ display:flex; align-items:center; justify-content:space-between; margin-bottom:56px; }
  .mobile-nav-head img{ height:28px; display:block; }
  .mobile-close{ width:42px; height:42px; border-radius:50%; background:var(--cream-dim); border:none; font-size:17px; color:var(--ink); cursor:pointer; flex-shrink:0; }
  .mobile-nav-links{ display:flex; flex-direction:column; }
  .mobile-nav-links a{ display:flex; align-items:center; justify-content:space-between; gap:14px; padding:22px 0; border-bottom:1px solid var(--line); }
  .mobile-nav-links a.active .mn-label{ color:var(--orange-deep); }
  .mn-row{ display:flex; align-items:baseline; gap:16px; min-width:0; }
  .mn-num{ font-family:'IBM Plex Mono',monospace; font-size:12px; color:var(--slate); flex-shrink:0; }
  .mn-label{ font-family:'Fraunces',serif; font-size:25px; font-weight:600; color:var(--ink); }
  .mn-arrow{ font-size:16px; color:var(--slate); flex-shrink:0; }
  .mobile-nav .mobile-cta{ margin-top:36px; align-self:center; background:var(--orange); color:white; border-radius:30px; padding:14px 34px; font-weight:600; font-size:15px; display:inline-flex; align-items:center; gap:8px; }

  /* HERO */
  .hero{ padding:88px 0 70px; position:relative; overflow:hidden; background:var(--bg-hero); }
  .hero-grid{ display:grid; grid-template-columns:1.05fr 0.85fr; gap:56px; align-items:center; }
  .hero h1{ font-size:52px; line-height:1.08; margin:18px 0 20px; }
  .hero h1 em{ font-style:normal; color:var(--orange-deep); }
  .hero p.lead{ font-size:17.5px; line-height:1.6; color:var(--slate); max-width:480px; margin:0 0 30px; }
  .btnrow{ display:flex; gap:14px; flex-wrap:wrap; }
  .btn-primary{ background:var(--orange); color:white; padding:14px 28px; border-radius:30px; font-weight:600; font-size:15px; cursor:pointer; box-shadow:0 8px 20px rgba(232,114,12,0.28); display:inline-flex; align-items:center; gap:8px; transition:all 0.2s ease; }
  .btn-primary:hover{ background:var(--orange-deep); transform:translateY(-2px); box-shadow:0 12px 26px rgba(232,114,12,0.4); }
  .btn-secondary{ background:transparent; color:var(--ink); padding:14px 26px; border-radius:30px; font-weight:600; font-size:15px; border:1.5px solid var(--line); cursor:pointer; transition:all 0.2s ease; }
  .btn-maroon{ background:var(--maroon); color:white; padding:14px 28px; border-radius:30px; font-weight:600; font-size:15px; cursor:pointer; box-shadow:0 8px 20px rgba(139,42,30,0.24); display:inline-flex; align-items:center; gap:8px; transition:all 0.2s ease; }
  .btn-maroon:hover{ background:#6E2117; transform:translateY(-2px); box-shadow:0 12px 26px rgba(139,42,30,0.36); }
  .btn-secondary:hover{ border-color:var(--ink); background:var(--ink); color:white; transform:translateY(-2px); }

  /* HERO V3 — split panel, fan-card visual */
  .hero{ min-height:auto; }
  .hero.hero-v2{
    position:relative; overflow:hidden; padding:0;
    background-color:var(--cream-dim);
    background-image:var(--bg-hero-image, none);
    background-size:cover; background-position:center;
  }
  .hero3-grid{ position:relative; z-index:2; display:grid; grid-template-columns:1fr 1fr; gap:40px; align-items:center; padding-top:110px; padding-bottom:90px; }
  .hero3-text{ max-width:520px; }
  .hero3-text .eyebrow{ display:flex; align-items:center; gap:8px; }
  .hero3-text .spark{ color:var(--maroon); }
  .hero3-text h1{ font-size:clamp(2.75rem, 4vw + 1.1rem, 4.75rem); line-height:1.05; margin:24px 0 26px; font-weight:600; letter-spacing:-0.02em; }
  .hero3-text h1 em{ font-style:italic; color:var(--orange-deep); font-weight:600; }
  .hero3-text .lead{ font-size:17px; line-height:1.62; color:var(--slate); max-width:460px; margin:0 0 30px; }

  .link-arrow{ display:inline-flex; align-items:center; gap:6px; color:var(--maroon); font-weight:600; font-size:15px; padding-bottom:4px; border-bottom:1.5px solid var(--maroon); transition:all 0.2s ease; }
  .link-arrow:hover{ gap:11px; color:var(--orange-deep); border-color:var(--orange-deep); }

  .trust-inline{ margin-top:24px; font-size:12px; color:var(--slate); font-family:'IBM Plex Mono',monospace; display:flex; align-items:center; gap:9px; }
  .check-circle{ width:18px; height:18px; border-radius:50%; border:1.5px solid var(--orange); color:var(--orange-deep); display:inline-flex; align-items:center; justify-content:center; font-size:10px; flex-shrink:0; }

  .hero3-visual{ position:relative; height:540px; }
  .stamp-badge{ position:absolute; top:16px; left:4%; width:98px; height:98px; border-radius:50%; background:var(--cream); border:1.5px solid var(--maroon); display:flex; align-items:center; justify-content:center; text-align:center; font-family:'IBM Plex Mono',monospace; font-size:9.5px; letter-spacing:0.09em; color:var(--maroon); z-index:4; box-shadow:0 10px 26px rgba(43,36,32,0.18); line-height:1.5; }
  .stamp-badge b{ display:block; font-size:17px; margin-top:3px; font-family:'Fraunces',serif; }

  .fan-wrap{ position:absolute; top:70px; right:2%; width:420px; height:380px; }
  .fan-card{ position:absolute; width:112px; height:300px; border-radius:8px; top:36px; box-shadow:0 22px 44px rgba(43,36,32,0.24); }
  .fan-card.f1{ background:linear-gradient(160deg,var(--orange),var(--orange-deep)); left:0px; transform:rotate(-16deg); z-index:1; }
  .fan-card.f2{ background:linear-gradient(160deg,var(--maroon),#6E2117); left:58px; transform:rotate(-8deg); z-index:2; }
  .fan-card.f3{ background:linear-gradient(160deg,var(--teal),#3f6d73); left:118px; transform:rotate(0deg); z-index:3; }
  .fan-card.f4{ background:linear-gradient(160deg,#4A3D34,var(--ink)); left:178px; transform:rotate(8deg); z-index:2; }
  .fan-card.f5{ background:linear-gradient(160deg,#EDE1CE,#D8C7A8); left:234px; transform:rotate(16deg); z-index:1; }

  .campaign-tag{ position:absolute; bottom:14px; left:0; background:var(--ink); color:var(--cream); padding:18px 22px; border-radius:4px; max-width:220px; z-index:5; box-shadow:0 18px 34px rgba(0,0,0,0.25); }
  .ct-label{ font-family:'IBM Plex Mono',monospace; font-size:10.5px; color:var(--orange); letter-spacing:0.08em; margin-bottom:6px; }
  .ct-title{ font-family:'Fraunces',serif; font-size:17px; line-height:1.3; }

  @media (max-width:900px){
    .hero3-grid{ grid-template-columns:1fr; padding-top:70px; padding-bottom:50px; }
    /* h1 size now fluid via clamp() — no override needed */
    .hero3-visual{ height:420px; margin-top:10px; }
    .fan-wrap{ right:0; left:0; margin:0 auto; }
  }

  /* Signature envelope illustration */
  .env-wrap{ position:relative; height:380px; display:flex; align-items:center; justify-content:center; }
  .env-card{ position:absolute; width:230px; height:150px; background:linear-gradient(135deg,#fff8ec,#f6e9d0); border-radius:6px; box-shadow:0 18px 40px rgba(139,42,30,0.18); transform:translateY(-64px) rotate(-3deg); padding:20px; }
  .env-card .tag{ font-size:10px; text-transform:uppercase; letter-spacing:0.12em; color:var(--maroon); font-weight:700; }
  .env-card .msg{ font-family:'Fraunces',serif; font-size:16px; margin-top:10px; color:var(--ink); line-height:1.35;}
  .envelope{ position:relative; width:280px; height:190px; }
  .envelope .body{ position:absolute; inset:0; background:var(--orange); border-radius:8px; box-shadow:0 20px 40px rgba(139,42,30,0.28);}
  .envelope .flap{ position:absolute; top:0; left:0; width:0; height:0; border-left:140px solid transparent; border-right:140px solid transparent; border-top:96px solid var(--maroon); border-radius: 4px 4px 0 0;}
  .envelope .fold-l{ position:absolute; bottom:0; left:0; width:0; height:0; border-bottom:110px solid var(--orange-deep); border-right:140px solid transparent; opacity:0.9;}
  .envelope .fold-r{ position:absolute; bottom:0; right:0; width:0; height:0; border-bottom:110px solid var(--orange-deep); border-left:140px solid transparent; opacity:0.9;}
  .seal{ position:absolute; bottom:24px; left:50%; transform:translateX(-50%); width:46px; height:46px; border-radius:50%; background:var(--cream); border:2px solid var(--maroon); display:flex; align-items:center; justify-content:center; font-family:'Fraunces',serif; color:var(--maroon); font-weight:700; font-size:18px; z-index:2;}

  /* INSIGHT STATEMENT BAND */
  .insight-band{ padding:0px 0 96px; text-align:center; background:var(--bg-insight); }
  .sparkle{ font-size:28px; color:var(--orange); margin-bottom:16px; line-height:1; }
  .insight-text{ font-size:32px; line-height:1.42; max-width:760px; margin:0 auto; font-weight:400; color:var(--ink); }
  .insight-text b{ font-weight:700; }

  @media (max-width:760px){
    .insight-text{ font-size:24px; }
  }

  /* STRIP */
  .strip{ border-top:1px solid var(--line); border-bottom:1px solid var(--line); background:var(--bg-strip); padding:22px 0;}
  .strip .wrap{ display:flex; gap:40px; justify-content:center; flex-wrap:wrap; }
  .strip .item{ font-size:13.5px; color:var(--slate); display:flex; align-items:center; gap:8px; }
  .dot{ width:6px; height:6px; border-radius:50%; background:var(--sage); }

  /* PROBLEM */
  .problem{ background:var(--bg-problem); color:var(--cream); padding:86px 0; }
  .problem .grid2{ display:grid; grid-template-columns:0.9fr 1.1fr; gap:60px; align-items:start; }
  .problem h2{ font-size:36px; line-height:1.15; color:var(--cream); }
  .problem .list{ display:flex; flex-direction:column; gap:18px; }
  .problem .list .row{ display:flex; gap:14px; align-items:flex-start; padding:16px 0; border-bottom:1px solid rgba(251,244,232,0.12);}
  .problem .list .num{ font-family:'IBM Plex Mono',monospace; color:var(--orange); font-size:13px; padding-top:2px;}
  .problem .list p{ margin:0; color:rgba(251,244,232,0.82); font-size:15.5px; line-height:1.55;}
  .problem .callout{ margin-top:26px; font-size:15.5px; color:var(--cream); border-left:3px solid var(--orange); padding-left:16px; }

  /* HOW IT WORKS (home teaser) */
  section.howteaser{ padding:92px 0; background:var(--bg-howteaser); }
  .section-head{ text-align:center; max-width:620px; margin:0 auto 52px; }
  .section-head h2{ font-size:34px; margin:14px 0 12px; }
  .section-head p{ color:var(--slate); font-size:16px; line-height:1.6; }
  .steps4{ display:grid; grid-template-columns:repeat(4,1fr); gap:20px; }
  .stepcard{ background:white; border:1px solid var(--line); border-radius:10px; padding:26px 20px; position:relative; }
  .stepcard .stepnum{ width:32px; height:32px; border-radius:50%; background:var(--orange); color:white; display:flex; align-items:center; justify-content:center; font-weight:700; font-size:14px; margin-bottom:16px; }
  .stepcard h3{ font-size:17px; margin:0 0 8px; font-weight:600; font-family:'Inter',sans-serif; }
  .stepcard p{ font-size:13.5px; color:var(--slate); line-height:1.55; margin:0; }
  .stepcard::after{ content:''; position:absolute; top:42px; right:-20px; width:20px; height:1.5px; background:var(--line); }
  .stepcard:last-child::after{ display:none; }
  .teaserlink{ text-align:center; margin-top:40px; }
  .teaserlink a{ color:var(--orange-deep); font-weight:600; font-size:14.5px; cursor:pointer; }

  /* PRIVACY PANEL */
  .privacy{ background:var(--bg-privacy); padding:80px 0; color:white; }
  .privacy .grid2{ display:grid; grid-template-columns:1fr 1fr; gap:56px; align-items:center; }
  .privacy h2{ color:white; font-size:32px; line-height:1.2; }
  .privacy p.lead2{ color:rgba(255,255,255,0.88); font-size:15.5px; line-height:1.6; max-width:440px;}
  .checklist{ display:flex; flex-direction:column; gap:14px; margin-top:24px; }
  .checklist .row{ display:flex; gap:12px; align-items:center; font-size:14.5px; }
  .checkicon{ width:22px; height:22px; border-radius:50%; background:rgba(255,255,255,0.18); display:flex; align-items:center; justify-content:center; flex-shrink:0; font-size:12px; }
  .privacy-card{ background:white; color:var(--ink); border-radius:12px; padding:30px; box-shadow:0 20px 50px rgba(0,0,0,0.18); }
  .privacy-card .mono{ font-size:12px; color:var(--slate); }
  .privacy-card .statrow{ display:flex; justify-content:space-between; padding:10px 0; border-bottom:1px solid var(--line); font-size:14px; }
  .privacy-card .statrow b{ font-family:'IBM Plex Mono',monospace; }

  /* FEATURES */
  section.features{ padding:92px 0; background:var(--bg-features); }
  .feat-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:26px; }
  .feat-col h4{ font-size:12.5px; text-transform:uppercase; letter-spacing:0.1em; color:var(--maroon); margin-bottom:16px; font-weight:700;}
  .feat-col ul{ list-style:none; padding:0; margin:0; display:flex; flex-direction:column; gap:12px; }
  .feat-col li{ font-size:14.5px; color:var(--ink); padding-left:18px; position:relative; }
  .feat-col li::before{ content:'—'; position:absolute; left:0; color:var(--orange); }

  /* USE CASES */
  .usecases{ background:var(--bg-usecases); padding:90px 0; border-top:1px solid var(--line); border-bottom:1px solid var(--line); }
  .uc-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
  .uc-card{ background:white; border-radius:10px; padding:28px; border:1px solid var(--line); }
  .uc-card .emoji{ font-size:26px; }
  .uc-card h3{ font-family:'Inter',sans-serif; font-size:16.5px; font-weight:600; margin:14px 0 10px; }
  .uc-card ul{ margin:0; padding-left:18px; color:var(--slate); font-size:13.5px; line-height:1.9; }

  /* FINAL CTA */
  .finalcta{ padding:100px 0; text-align:center; background:var(--bg-finalcta); }
  .finalcta h2{ font-size:38px; max-width:640px; margin:0 auto 18px; }
  .finalcta p{ color:var(--slate); font-size:16px; margin-bottom:34px; }

  footer.site{ border-top:1px solid var(--line); padding:50px 0 34px; background:var(--bg-footer); }
  footer .wrap{ display:flex; justify-content:space-between; align-items:flex-start; flex-wrap:wrap; gap:30px;}
  footer img{ height:26px; margin-bottom:10px;}
  footer .fcol h5{ font-size:12px; text-transform:uppercase; letter-spacing:0.1em; color:var(--slate); margin:0 0 12px; }
  footer .fcol a{ display:block; font-size:13.5px; color:var(--ink); opacity:0.75; margin-bottom:8px; }
  footer .fcol a:hover{ opacity:1; }
  footer .copyright{ font-size:12.5px; color:var(--slate); margin-top:34px; }

  /* INNER PAGE: How it works */
  /* pages are now separate files, no show/hide needed */
  .innerhero{ padding:64px 0 40px; background:var(--bg-innerhero); }
  .breadcrumb{ font-size:13px; color:var(--slate); margin-bottom:18px; }
  .breadcrumb a{ color:var(--orange-deep); font-weight:600; cursor:pointer; }
  .innerhero h1{ font-size:42px; max-width:680px; }
  .innerhero p{ color:var(--slate); font-size:16.5px; max-width:560px; line-height:1.6; }

  .walk{ padding:30px 0 100px; background:var(--bg-walk); }
  .walkstep{ display:grid; grid-template-columns:0.8fr 1.2fr; gap:60px; align-items:center; padding:56px 0; border-bottom:1px solid var(--line); }
  .walkstep:last-child{ border-bottom:none; }
  .walkstep.rev .art{ order:2; }
  .walk .num{ font-family:'Fraunces',serif; font-size:15px; color:var(--orange-deep); font-weight:600; margin-bottom:10px;}
  .walkstep h3{ font-size:26px; margin:0 0 12px; }
  .walkstep p{ color:var(--slate); font-size:15px; line-height:1.65; max-width:440px; }
  .art{ background:white; border:1px solid var(--line); border-radius:12px; padding:26px; min-height:220px; display:flex; flex-direction:column; justify-content:center; }
  .mockrow{ display:flex; justify-content:space-between; padding:9px 0; border-bottom:1px solid var(--line); font-size:13px; }
  .mockrow:last-child{ border-bottom:none; }
  .badge{ display:inline-flex; align-items:center; gap:6px; padding:3px 9px; border-radius:20px; font-size:11.5px; font-weight:600; }
  .badge.ok{ background:rgba(79,125,87,0.12); color:var(--sage); }
  .badge.warn{ background:rgba(200,90,8,0.12); color:var(--orange-deep); }
  .badge.err{ background:rgba(139,42,30,0.12); color:var(--maroon); }

  .faq{ background:var(--bg-faq); padding:90px 0; border-top:1px solid var(--line); }
  .faq-list{ max-width:720px; margin:0 auto; }
  .faq-item{ border-bottom:1px solid var(--line); padding:22px 0; }
  .faq-item h4{ font-size:16px; margin:0 0 8px; font-family:'Inter',sans-serif; font-weight:600; }
  .faq-item p{ margin:0; color:var(--slate); font-size:14.5px; line-height:1.6; }

  /* SECURITY PAGE EXTRAS */
  .sec-grid{ display:grid; grid-template-columns:repeat(2,1fr); gap:20px; }
  .sec-card{ background:#FFFFFF; border:1px solid var(--line); border-radius:12px; padding:28px; }
  .sec-card .ico{ width:38px; height:38px; border-radius:9px; background:var(--cream-dim); display:flex; align-items:center; justify-content:center; color:var(--orange-deep); font-family:'Fraunces'; font-weight:700; margin-bottom:16px;}
  .sec-card h3{ font-size:16.5px; margin:0 0 8px; font-family:'Inter'; font-weight:600; }
  .sec-card p{ font-size:14px; color:var(--slate); line-height:1.6; margin:0; }
  .dont-grid{ display:grid; grid-template-columns:1fr 1fr; gap:24px; }
  .dont-col{ border-radius:12px; padding:28px; }
  .dont-col.no{ background:var(--cream-dim); }
  .dont-col.yes{ background:white; border:1.5px solid var(--sage); }
  .dont-col h4{ font-size:12px; text-transform:uppercase; letter-spacing:0.08em; font-weight:700; margin:0 0 16px; }
  .dont-col.no h4{ color:var(--slate); }
  .dont-col.yes h4{ color:var(--sage); }
  .dont-col ul{ list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap:12px; }
  .dont-col li{ font-size:14px; padding-left:20px; position:relative; }
  .dont-col.no li::before{ content:'✕'; position:absolute; left:0; color:var(--maroon); font-size:12px; top:2px;}
  .dont-col.yes li::before{ content:'✓'; position:absolute; left:0; color:var(--sage); font-size:12px; top:2px;}

  /* USE CASES PAGE EXTRAS */
  .uc-detail{ display:grid; grid-template-columns:0.85fr 1.15fr; gap:56px; align-items:center; padding:60px 0; border-bottom:1px solid var(--line); }
  .uc-detail:last-child{ border-bottom:none; }
  .uc-detail.rev .art{ order:2; }
  .uc-detail .emoji-big{ font-size:34px; margin-bottom:14px; display:block; }
  .uc-detail h3{ font-size:27px; margin:0 0 12px; }
  .uc-detail p{ color:var(--slate); font-size:15px; line-height:1.65; max-width:440px; margin:0 0 16px;}
  .uc-detail ul.tags{ list-style:none; padding:0; margin:0; display:flex; flex-wrap:wrap; gap:8px; }
  .uc-detail ul.tags li{ font-size:12.5px; background:var(--cream-dim); color:var(--ink); padding:5px 12px; border-radius:20px; }
  .example-tag{ font-size:11px; text-transform:uppercase; letter-spacing:0.08em; color:var(--orange-deep); font-weight:700; margin-bottom:10px; }

  /* PRICING PAGE */
  .pricing-wrap{ display:grid; grid-template-columns:0.9fr 1.1fr; gap:56px; align-items:start; padding:20px 0 100px; }
  .pricing-benefits h3{ font-size:20px; margin:0 0 18px; }
  .pricing-benefits .checklist .row{ font-size:14.5px; }
  .pricing-note{ margin-top:32px; padding:20px; background:var(--cream-dim); border-radius:10px; font-size:13.5px; color:var(--slate); line-height:1.6; }
  .form-card{ background:white; border:1px solid var(--line); border-radius:14px; padding:36px; box-shadow:0 20px 50px rgba(43,36,32,0.08); }
  .form-card h3{ font-size:20px; margin:0 0 6px; }
  .form-card .sub{ font-size:13.5px; color:var(--slate); margin-bottom:26px; }
  .form-row{ margin-bottom:18px; }
  .form-row label{ display:block; font-size:12.5px; font-weight:600; color:var(--ink); margin-bottom:7px; }
  .form-row input, .form-row select, .form-row textarea{
    width:100%; padding:11px 14px; font-size:14px; border-radius:7px; border:1px solid var(--line);
    font-family:'Inter',sans-serif; color:var(--ink); background:#FDFBF8; outline:none;
  }
  .form-row textarea{ resize:none; min-height:90px; }
  .form-row-2{ display:grid; grid-template-columns:1fr 1fr; gap:14px; }
  .form-submit{ width:100%; margin-top:6px; }
  .form-success{ display:none; text-align:center; padding:30px 10px; }
  .form-success .checkbig{ width:52px; height:52px; border-radius:50%; background:rgba(79,125,87,0.12); color:var(--sage); display:flex; align-items:center; justify-content:center; font-size:22px; margin:0 auto 16px; }

  @media (max-width:860px){
    .sec-grid, .dont-grid, .uc-detail, .uc-detail.rev, .pricing-wrap{ grid-template-columns:1fr; }
    .uc-detail.rev .art{ order:0; }
    .form-row-2{ grid-template-columns:1fr; }
  }

  @media (max-width:860px){
    .hero-grid, .problem .grid2, .privacy .grid2{ grid-template-columns:1fr; }
    .hero h1{ font-size:38px; }
    .steps4{ grid-template-columns:1fr 1fr; }
    .feat-grid, .uc-grid{ grid-template-columns:1fr; }
    nav .links{ display:none; }
    nav .cta{ display:none; }
    .navburger{ display:block; }
    .walkstep, .walkstep.rev{ grid-template-columns:1fr; }
    .walkstep.rev .art{ order:0; }
    .env-wrap{ height:300px; transform:scale(0.85); }
  }
