/* ============ VETRA — Landing styles ============ */
:root{
  --bg:#F0F2ED;
  --black:#1A1A1A;
  --accent:#DBFE56;
  --accent-deep:#c4e83a;
  --surface:#E8EAE5;
  --white:#FFFFFF;
  --ink-60:rgba(26,26,26,.6);
  --ink-45:rgba(26,26,26,.45);
  --line:rgba(26,26,26,.12);
  --shadow:0 1px 2px rgba(26,26,26,.04), 0 18px 40px -28px rgba(26,26,26,.28);
  --shadow-lg:0 2px 4px rgba(26,26,26,.05), 0 40px 80px -40px rgba(26,26,26,.35);
  --serif:"Instrument Serif", Georgia, serif;
  --sans:"DM Sans", system-ui, sans-serif;
  --maxw:1200px;
  --r:18px;
}

*{box-sizing:border-box;}
html{scroll-behavior:smooth;overflow-x:hidden;}
body{
  margin:0;
  background:var(--bg);
  color:var(--black);
  font-family:var(--sans);
  font-size:17px;
  line-height:1.55;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
  overflow-x:hidden;
}
img{display:block;max-width:100%;}
a{color:inherit;text-decoration:none;}
button{font-family:inherit;cursor:pointer;border:none;background:none;}

.wrap{max-width:var(--maxw);margin:0 auto;padding:0 28px;}
.serif{font-family:var(--serif);font-weight:400;letter-spacing:-.01em;}

/* ---- App Loader ---- */
.app-loader{
  position:fixed;inset:0;z-index:9999;
  background:#F0F2ED;
  display:flex;flex-direction:column;align-items:center;justify-content:center;gap:28px;
  transition:opacity .55s ease, visibility .55s ease;
}
.app-loader--hide{opacity:0;visibility:hidden;}
.loader-logo{width:88px;height:auto;}
.dl-grid{display:grid;grid-template-columns:repeat(7,1fr);gap:3px;width:fit-content;}
.dl-dot{width:6px;height:6px;border-radius:2px;background:rgba(26,26,26,.12);}
.dl-dot.dl-active{background:#DBFE56;}

/* selection */
::selection{background:var(--accent);color:var(--black);}

/* ---- decorative sparkle ---- */
.spark{position:absolute;color:var(--black);opacity:.9;pointer-events:none;user-select:none;line-height:1;}
.spark.lime{color:var(--accent-deep);}

/* =================== NAVBAR =================== */
.nav{
  position:fixed;top:16px;left:0;right:0;z-index:100;
  width:calc(100% - 160px);max-width:880px;margin:0 auto;
  border-radius:100px;
  background:rgba(216,218,212,.50);
  -webkit-backdrop-filter:saturate(140%) blur(12px);
  backdrop-filter:saturate(140%) blur(12px);
  border:1px solid rgba(0,0,0,.06);
  box-shadow:0 10px 34px -12px rgba(26,26,26,.22), 0 2px 8px -4px rgba(26,26,26,.12);
  transition:box-shadow .25s ease, background .25s ease;
}
.nav.scrolled{
  background:rgba(216,218,212,.62);
  box-shadow:0 16px 44px -14px rgba(26,26,26,.30), 0 2px 8px -4px rgba(26,26,26,.15);
}
.nav-inner{display:flex;align-items:center;gap:28px;height:62px;}
.nav-logo{height:24px;width:auto;}
.nav-links{display:flex;align-items:center;gap:30px;margin-left:14px;}
.nav-links a{font-size:15px;font-weight:500;color:rgba(26,26,26,.70);transition:color .15s;}
.nav-links a:hover{color:var(--black);}
.nav-right{margin-left:auto;display:flex;align-items:center;gap:16px;}

.lang{display:inline-flex;align-items:center;background:rgba(26,26,26,.06);border-radius:999px;padding:3px;border:1px solid rgba(26,26,26,.08);}
.lang button{font-size:13px;font-weight:600;color:rgba(26,26,26,.70);padding:5px 11px;border-radius:999px;transition:all .18s;letter-spacing:.02em;}
.lang button.on{background:var(--white);color:var(--black);box-shadow:0 1px 2px rgba(26,26,26,.12);}

.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:8px;
  font-family:var(--sans);font-weight:600;font-size:15px;
  padding:12px 22px;border-radius:999px;transition:transform .14s ease, box-shadow .18s ease, background .18s;
  white-space:nowrap;
}
.btn-primary{background:var(--accent);color:var(--black);box-shadow:0 1px 2px rgba(26,26,26,.1);}
.btn-primary:hover{background:var(--accent-deep);transform:translateY(-1px);box-shadow:0 8px 22px -10px rgba(26,26,26,.4);}
.btn-ghost{background:transparent;color:var(--black);border:1.5px solid var(--black);}
.btn-ghost:hover{background:var(--black);color:var(--bg);transform:translateY(-1px);}
.btn-lg{padding:16px 30px;font-size:16.5px;}
.btn-arrow{transition:transform .2s;}
.btn:hover .btn-arrow{transform:translate(3px,-1px);}

.nav-burger{display:none;}

/* =================== HERO =================== */
.hero{position:relative;padding:148px 0 70px;text-align:center;overflow:hidden;}
.hero-eyebrow{
  display:inline-flex;align-items:center;gap:9px;font-size:13.5px;font-weight:600;
  color:var(--ink-60);background:var(--surface);border:1px solid var(--line);
  padding:7px 15px 7px 11px;border-radius:999px;margin-bottom:26px;letter-spacing:.01em;
}
.hero-eyebrow .dot{width:7px;height:7px;border-radius:50%;background:var(--accent-deep);box-shadow:0 0 0 4px rgba(219,254,86,.35);}
.hero h1{
  font-family:var(--serif);font-weight:400;
  font-size:clamp(40px,5.1vw,64px);line-height:1.12;letter-spacing:-.015em;
  margin:0 auto 22px;max-width:17ch;text-wrap:pretty;
}
.hero h1 .hl{
  background:linear-gradient(transparent 60%, var(--accent) 60%, var(--accent) 94%, transparent 94%);
  box-decoration-break:clone;-webkit-box-decoration-break:clone;
  padding:0 .04em;
}
.hero-sub{font-size:clamp(17px,2vw,20px);color:var(--ink-60);max-width:54ch;margin:0 auto 36px;line-height:1.5;}
.hero-cta{display:flex;gap:14px;justify-content:center;flex-wrap:wrap;}

/* floating illustrations */
.hero-illu{position:absolute;top:0;bottom:0;display:flex;align-items:center;pointer-events:none;z-index:1;}
.hero-illu.left{left:max(10px,calc(50% - 720px));}
.hero-illu.right{right:max(10px,calc(50% - 720px));}
.hero-content{position:relative;z-index:3;}

/* hero character — sits on the hero's bottom divider line, left-aligned with the logo */
.hero-mono{
  position:absolute;bottom:-22px;z-index:2;
  right:calc(50% + 330px);
  width:clamp(300px, 34vw, 450px);height:auto;
  pointer-events:none;user-select:none;
}
@media(max-width:1024px){ .hero-mono{display:none;} }

/* hero character #2 — overflows the hero's right & bottom edges, right of the central content */
.hero-mono-2{
  position:absolute;bottom:0;right:-16px;z-index:2;
  width:clamp(250px, 25vw, 360px);height:auto;
  pointer-events:none;user-select:none;
}
@media(max-width:1024px){ .hero-mono-2{display:none;} }

/* ----- illustration placeholder ----- */
.illu{
  position:relative;border-radius:16px;overflow:hidden;
  background:var(--white);
  border:1.5px dashed rgba(26,26,26,.28);
  display:flex;flex-direction:column;align-items:center;justify-content:center;
  text-align:center;color:var(--ink-45);
}
.illu::before{
  content:"";position:absolute;inset:0;opacity:.5;
  background-image:radial-gradient(rgba(26,26,26,.16) 1.1px, transparent 1.2px);
  background-size:9px 9px;
}
.illu .illu-tag{position:relative;font-family:ui-monospace,"SF Mono",Menlo,monospace;font-size:11px;letter-spacing:.04em;text-transform:uppercase;color:var(--ink-45);padding:0 14px;line-height:1.5;}
.illu .illu-dim{position:relative;font-family:ui-monospace,monospace;font-size:10px;color:rgba(26,26,26,.32);margin-top:6px;}
.illu .illu-frame{position:relative;font-size:30px;margin-bottom:10px;filter:grayscale(1);opacity:.5;}
.illu .splash{position:absolute;width:42px;height:42px;border-radius:50%;background:var(--accent);opacity:.9;}

/* proof strip */
.proof-strip{margin-top:70px;text-align:center;}
.proof-strip .label{font-size:13px;font-weight:600;letter-spacing:.08em;text-transform:uppercase;color:var(--ink-45);margin-bottom:22px;}

/* logo marquee — contained to the logos' own width, not full-bleed */
.logo-marquee{
  position:relative;
  width:min(640px,100%);
  margin:0 auto;
  overflow:hidden;
}
/* edge fades: #F0F2ED -> transparent, ~80px each side */
.logo-marquee::before,
.logo-marquee::after{
  content:"";
  position:absolute;top:0;bottom:0;width:80px;z-index:2;pointer-events:none;
}
.logo-marquee::before{left:0;background:linear-gradient(90deg,var(--bg) 0,rgba(240,242,237,0) 100%);}
.logo-marquee::after{right:0;background:linear-gradient(270deg,var(--bg) 0,rgba(240,242,237,0) 100%);}

.logo-track{
  display:flex;align-items:center;width:max-content;
  animation:logo-scroll 42s linear infinite;
}
.firm-logo{
  height:32px;width:auto;display:block;flex:none;margin-right:56px;
  opacity:.4; /* #1A1A1A @ 40% — monochrome */
}
/* two copies in markup -> shift by exactly half the track for a seamless loop */
@keyframes logo-scroll{
  from{transform:translateX(0);}
  to{transform:translateX(-50%);}
}
@media (prefers-reduced-motion: reduce){
  .logo-track{animation:none;}
}

/* =================== SECTION SHELL =================== */
section{position:relative;}
.sec{padding:104px 0;}
.sec.surface{background:var(--surface);}
.sec-head{text-align:center;max-width:46ch;margin:0 auto 56px;}
.sec-kicker{display:inline-block;font-size:13px;font-weight:600;letter-spacing:.09em;text-transform:uppercase;color:var(--ink-45);margin-bottom:16px;}
.sec-kicker .star{color:var(--accent-deep);}
.sec-title{font-family:var(--serif);font-weight:400;font-size:clamp(32px,4.4vw,54px);line-height:1.05;letter-spacing:-.015em;margin:0 0 16px;text-wrap:balance;}
.sec-sub{font-size:18px;color:var(--ink-60);margin:0 auto;max-width:50ch;}

/* =================== PROBLEM =================== */
.prob-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:22px;}
.prob-card{
  background:var(--surface);border-radius:12px;padding:24px 28px 32px;
  border:1px solid rgba(26,26,26,.05);transition:transform .25s ease, box-shadow .25s ease;
  text-align:center;
}
.prob-card:hover{transform:translateY(-4px);box-shadow:0 18px 40px -28px rgba(26,26,26,.28);}
.prob-illu{display:block;height:180px;width:auto;margin:0 auto 22px;}
.prob-card h3{font-family:var(--serif);font-size:26px;font-weight:600;margin:0 0 10px;letter-spacing:-.005em;line-height:1.1;}
.prob-card p{margin:0;color:var(--ink-60);font-size:15.5px;line-height:1.55;}

/* =================== PRODUCT — SCROLL-DRIVEN PILLARS =================== */
.product-scroll{position:relative;background:var(--bg);padding:0;}

/* intro header */
.product-intro{padding:104px 0 8px;}

/* lateral progress indicator */
.pillar-progress{
  position:fixed;left:32px;top:50%;transform:translateY(-50%);z-index:40;
  display:flex;flex-direction:column;align-items:center;gap:12px;
  opacity:0;transition:opacity .4s ease;pointer-events:none;
}
.pillar-progress.on{opacity:1;}
.pp-count,.pp-total{font-size:12px;font-weight:600;letter-spacing:.06em;color:rgba(26,26,26,.35);font-variant-numeric:tabular-nums;}
.pp-count{color:var(--black);}
.pp-track{position:relative;width:4px;height:120px;border-radius:4px;background:rgba(26,26,26,.10);overflow:hidden;}
.pp-fill{position:absolute;left:0;top:0;width:100%;background:var(--accent);border-radius:4px;transition:height .15s linear;}

/* each pillar occupies a full viewport, content centered */
.pillar-pane{min-height:85vh;display:flex;align-items:center;}
.pillar-grid{
  display:grid;grid-template-columns:minmax(0,0.82fr) minmax(0,1.18fr);
  align-items:center;gap:40px;width:100%;
}

/* left column — text */
.pillar-text{max-width:440px;justify-self:end;padding-right:8px;
  transition:opacity .6s cubic-bezier(.16,1,.3,1), transform .6s cubic-bezier(.16,1,.3,1);
}
.pillar-num{font-size:13px;font-weight:500;letter-spacing:.15em;color:rgba(26,26,26,.30);margin-bottom:24px;}
.pillar-title{font-family:var(--serif);font-weight:400;font-size:clamp(36px,3.7vw,52px);line-height:1.1;letter-spacing:-.015em;color:var(--black);margin:0 0 16px;}
.pillar-desc{font-size:16px;font-weight:400;color:rgba(26,26,26,.50);line-height:1.6;max-width:380px;margin:0 0 24px;text-wrap:pretty;}
.pillar-pills{display:flex;flex-wrap:wrap;gap:8px;margin-bottom:32px;}
.pillar-pill{
  font-size:12px;font-weight:400;color:rgba(26,26,26,.5);
  border:1px solid rgba(26,26,26,.15);border-radius:20px;
  padding:4px 12px;background:transparent;white-space:nowrap;
}
.pillar-more{
  display:inline-flex;align-items:center;gap:6px;
  font-size:14px;font-weight:400;color:rgba(26,26,26,.4);
  transition:color .2s ease;
}
.pillar-more .arr{transition:transform .2s ease;}
.pillar-more:hover{color:var(--black);}
.pillar-more:hover .arr{transform:translateX(3px);}

/* right column — glance */
.pillar-vis{justify-self:start;width:100%;min-width:0;display:flex;justify-content:flex-start;
  transition:opacity .6s cubic-bezier(.16,1,.3,1) .1s, transform .6s cubic-bezier(.16,1,.3,1) .1s;
}
.glance-wrap{position:relative;width:100%;max-width:100%;overflow:hidden;margin-top:-20px;}
.glance-frame{border:none;background:transparent;display:block;
  transform-origin:top left;pointer-events:none;}

/* hidden pre-animation state — only when JS has armed the section
   (base state stays visible for no-JS / print / reduced-motion / capture) */
.product-scroll.is-armed .pillar-pane:not(.active) .pillar-text{opacity:0;transform:translateX(-60px);}
.product-scroll.is-armed .pillar-pane:not(.active) .pillar-vis{opacity:0;transform:translateX(60px);}

/* active (in-view) state */
.pillar-pane.active .pillar-text,
.pillar-pane.active .pillar-vis{opacity:1;transform:translateX(0);}

@media (prefers-reduced-motion: reduce){
  .pillar-text,.pillar-vis{transition:none;opacity:1;transform:none;}
}

/* product — tablet & mobile */
@media(max-width:900px){
  .pillar-progress{display:none;}
  .pillar-pane{min-height:auto;padding:64px 0;}
  .pillar-grid{grid-template-columns:minmax(0,1fr);gap:30px;justify-items:start;}
  .pillar-text{max-width:520px;min-width:0;justify-self:start;padding-right:0;}
  .pillar-vis{justify-self:stretch;min-width:0;}
  .product-scroll.is-armed .pillar-pane:not(.active) .pillar-text{transform:translateY(40px);}
  .product-scroll.is-armed .pillar-pane:not(.active) .pillar-vis{transform:translateY(40px);}
  .pillar-pane.active .pillar-text,
  .pillar-pane.active .pillar-vis{transform:translateY(0);}
  .glance-wrap{margin-top:0;}
  .product-intro{padding:80px 0 0;}
}
@media(max-width:560px){
  .pillar-title{font-size:36px;}
  .pillar-pane{padding:48px 0;}
}

/* =================== HOW IT WORKS v2 =================== */
.how-head{text-align:center;margin-bottom:72px;}
.how-label{display:block;font-size:11px;letter-spacing:.15em;color:rgba(26,26,26,.4);text-transform:uppercase;margin-bottom:16px;}
.how-title{font-family:var(--serif);font-weight:400;font-size:clamp(36px,4.5vw,52px);color:var(--black);margin:0 0 16px;line-height:1.08;letter-spacing:-.02em;text-wrap:balance;}
.how-sub{font-size:16px;color:rgba(26,26,26,.5);line-height:1.6;margin:0 auto;max-width:50ch;}
.how-steps{display:grid;grid-template-columns:repeat(3,1fr);gap:32px;position:relative;}
.how-step{position:relative;text-align:center;}
.how-ghost-num{position:absolute;top:0;left:0;right:0;height:180px;display:flex;align-items:center;justify-content:center;font-family:var(--serif);font-size:220px;line-height:1;color:rgba(0,0,0,.055);z-index:0;user-select:none;pointer-events:none;overflow:hidden;}
.how-visual{position:relative;height:180px;display:flex;align-items:center;justify-content:center;margin-bottom:28px;}
.how-illus{position:relative;z-index:2;display:flex;align-items:center;justify-content:center;width:140px;height:140px;}
.how-illus-img{height:155px;width:auto;display:block;}
.how-step-body{position:relative;z-index:2;}
.how-step-body h3{font-size:16px;font-weight:500;color:var(--black);margin:0 0 8px;letter-spacing:-.01em;}
.how-step-body p{font-size:14px;color:rgba(26,26,26,.5);line-height:1.6;margin:0 auto;max-width:26ch;}
.how-step-line{position:absolute;top:90px;left:100%;width:32px;border-top:1.5px dashed rgba(0,0,0,.12);z-index:1;}
.how-accent-dot{position:absolute;top:4px;right:4px;width:20px;height:20px;border-radius:50%;background:var(--accent);z-index:3;}

/* =================== SOCIAL PROOF =================== */
.metrics{display:grid;grid-template-columns:repeat(4,1fr);gap:18px;margin-bottom:54px;}
.metric{text-align:center;padding:14px;}
.metric .val{font-family:var(--serif);font-size:clamp(44px,5.5vw,64px);line-height:1;letter-spacing:-.02em;}
.metric .val .u{color:var(--accent-deep);}
.metric .lbl{font-size:14px;color:var(--ink-60);margin-top:10px;line-height:1.4;max-width:18ch;margin-left:auto;margin-right:auto;}
.quotes{display:grid;grid-template-columns:1fr 1fr;gap:22px;}
.quote{background:var(--white);border-radius:var(--r);padding:36px 34px;box-shadow:var(--shadow);border:1px solid rgba(26,26,26,.05);position:relative;}
.quote .qm{font-family:var(--serif);font-size:64px;line-height:.6;color:var(--accent-deep);position:absolute;top:26px;right:30px;opacity:.5;}
.quote p{font-family:var(--serif);font-size:22px;line-height:1.35;margin:0 0 24px;letter-spacing:-.01em;max-width:30ch;}
.quote .who{display:flex;align-items:center;gap:13px;}
.quote .av{width:44px;height:44px;border-radius:50%;background:var(--surface);border:1px solid var(--line);display:grid;place-items:center;font-weight:600;font-size:15px;color:var(--ink-60);}
.quote .who b{display:block;font-size:15px;font-weight:600;}
.quote .who span{font-size:13.5px;color:var(--ink-45);}

/* ── Animated single testimonial ────────────────── */
.testi{display:flex;flex-direction:column;align-items:center;gap:40px;padding:56px 0 24px;}
.testi-quote-wrap{position:relative;padding:0 32px;max-width:640px;text-align:center;}
.testi-deco{font-family:var(--serif);font-size:100px;line-height:1;color:rgba(26,26,26,.06);position:absolute;user-select:none;pointer-events:none;}
.testi-deco-open{left:-8px;top:-20px;}
.testi-deco-close{right:-8px;bottom:-48px;}
.testi-quote{font-family:var(--serif);font-size:clamp(22px,2.8vw,34px);line-height:1.3;letter-spacing:-.015em;color:var(--black);margin:0;text-wrap:balance;transition:opacity .18s ease,filter .18s ease,transform .18s ease;}
.testi-out{opacity:0;filter:blur(4px);transform:scale(.98);}
.testi-foot{display:flex;flex-direction:column;align-items:center;gap:20px;}
.testi-role{font-size:12px;letter-spacing:.18em;text-transform:uppercase;color:rgba(26,26,26,.4);margin:0;transition:opacity .35s ease,transform .35s ease;}
.testi-role.testi-out{opacity:0;transform:translateY(6px);}
.testi-pills{display:flex;align-items:center;gap:8px;}
.testi-pill{display:flex;align-items:center;gap:0;border:none;background:transparent;border-radius:999px;cursor:pointer;padding:3px;transition:background .4s cubic-bezier(.4,0,.2,1),padding .4s cubic-bezier(.4,0,.2,1),box-shadow .4s;}
.testi-pill:hover:not(.testi-pill-active){background:rgba(26,26,26,.06);}
.testi-pill-active{background:var(--black);box-shadow:0 4px 18px -4px rgba(26,26,26,.35);}
.testi-pill-open{padding:6px 14px 6px 6px;}
.testi-av{width:36px;height:36px;border-radius:50%;background:var(--surface);border:1.5px solid rgba(26,26,26,.12);display:grid;place-items:center;font-size:13px;font-weight:600;color:var(--black);flex-shrink:0;transition:ring .4s;}
.testi-pill-active .testi-av{border-color:rgba(255,255,255,.2);}
.testi-name{font-size:14px;font-weight:500;color:var(--black);white-space:nowrap;max-width:0;overflow:hidden;opacity:0;transition:max-width .45s cubic-bezier(.4,0,.2,1),opacity .35s ease,margin-left .4s;}
.testi-name-show{max-width:160px;opacity:1;margin-left:8px;}
.testi-pill-active .testi-name{color:var(--white);}

/* =================== FINAL CTA =================== */
.cta{background:var(--accent);padding:96px 0;position:relative;overflow:hidden;}
.cta .wrap{position:relative;z-index:2;}
.cta-grid{display:grid;grid-template-columns:1.05fr 1fr;gap:60px;align-items:center;}
.cta h2{font-family:var(--serif);font-weight:400;font-size:clamp(34px,4.6vw,58px);line-height:1.02;letter-spacing:-.02em;margin:0 0 18px;color:var(--black);text-wrap:balance;}
.cta-sub{font-size:18.5px;color:rgba(26,26,26,.72);max-width:42ch;margin:0;}
.cta-deco{font-family:var(--serif);}

/* form */
.form-card{background:var(--black);border-radius:24px;padding:34px;box-shadow:0 40px 90px -40px rgba(26,26,26,.6);}
.form-card .fl{display:block;font-size:13px;font-weight:600;color:rgba(240,242,237,.55);margin-bottom:7px;letter-spacing:.02em;}
.field{margin-bottom:18px;}
.field input,.field select{
  width:100%;font-family:var(--sans);font-size:15.5px;color:var(--bg);
  background:rgba(240,242,237,.06);border:1.5px solid rgba(240,242,237,.16);
  border-radius:12px;padding:13px 15px;transition:border-color .15s, background .15s;
}
.field input::placeholder{color:rgba(240,242,237,.35);}
.field select{appearance:none;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23F0F2ED' stroke-width='2.5' opacity='0.5'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");background-repeat:no-repeat;background-position:right 15px center;padding-right:40px;cursor:pointer;}
.field select:invalid{color:rgba(240,242,237,.35);}
.field input:focus,.field select:focus{outline:none;border-color:var(--accent);background:rgba(240,242,237,.1);}
.field.err input,.field.err select{border-color:#ff7a6b;background:rgba(255,122,107,.08);}
.field .msg{font-size:12.5px;color:#ff9b8f;margin-top:6px;min-height:0;}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:14px;}
.form-submit{width:100%;margin-top:6px;}
.form-fine{font-size:12.5px;color:rgba(240,242,237,.4);text-align:center;margin:14px 0 0;}

/* success */
.success{text-align:center;padding:30px 10px;}
.success .check{width:74px;height:74px;border-radius:50%;background:var(--accent);display:grid;place-items:center;margin:0 auto 24px;animation:pop .4s cubic-bezier(.2,1.3,.4,1);}
.success .check svg{width:38px;height:38px;}
.success h3{font-family:var(--serif);font-size:32px;font-weight:400;color:var(--bg);margin:0 0 12px;letter-spacing:-.01em;}
.success p{color:rgba(240,242,237,.6);font-size:16px;margin:0 auto;max-width:32ch;}
@keyframes pop{0%{transform:scale(0)}100%{transform:scale(1)}}

/* =================== FOOTER =================== */
.foot{padding:64px 0 40px;}
.foot-top{display:flex;justify-content:space-between;align-items:flex-start;gap:40px;flex-wrap:wrap;padding-bottom:40px;border-bottom:1px solid var(--line);}
.foot-logo{height:30px;width:auto;margin-bottom:14px;}
.foot-tag{color:var(--ink-45);font-size:14.5px;max-width:26ch;}
.foot-links{display:flex;gap:54px;flex-wrap:wrap;}
.foot-col h4{font-size:12.5px;font-weight:600;letter-spacing:.08em;text-transform:uppercase;color:var(--ink-45);margin:0 0 16px;}
.foot-col a{display:block;font-size:15px;color:var(--ink-60);margin-bottom:11px;transition:color .15s;}
.foot-col a:hover{color:var(--black);}
.foot-bot{display:flex;justify-content:space-between;align-items:center;gap:20px;padding-top:28px;flex-wrap:wrap;}
.foot-bot p{margin:0;font-size:14px;color:var(--ink-45);}
.foot-social{display:flex;gap:10px;}
.foot-social a{width:40px;height:40px;border-radius:50%;border:1px solid var(--line);display:grid;place-items:center;color:var(--ink-60);transition:all .18s;}
.foot-social a:hover{background:var(--black);color:var(--bg);border-color:var(--black);}
.foot-social svg{width:18px;height:18px;}

/* =================== SCROLL REVEAL =================== */
.reveal{opacity:0;transform:translateY(24px);transition:opacity .7s cubic-bezier(.22,.8,.3,1), transform .7s cubic-bezier(.22,.8,.3,1);}
.reveal.in{opacity:1;transform:none;}
.reveal.d1{transition-delay:.08s;}
.reveal.d2{transition-delay:.16s;}
.reveal.d3{transition-delay:.24s;}
.reveal.d4{transition-delay:.32s;}

/* =================== RESPONSIVE =================== */
@media(max-width:1080px){
  .hero-illu{display:none;}
}
@media(max-width:860px){
  .prob-grid{grid-template-columns:1fr;}
  .how-steps{grid-template-columns:1fr;gap:48px;}
  .how-step-line{display:none;}
  .metrics{grid-template-columns:repeat(2,1fr);gap:34px 18px;}
  .quotes{grid-template-columns:1fr;}
  .cta-grid{grid-template-columns:1fr;gap:40px;}
  .nav-links{display:none;}
  .sec{padding:78px 0;}
}
@media(max-width:560px){
  body{font-size:16px;}
  .wrap{padding:0 20px;}
  .nav{width:calc(100% - 24px);top:12px;}
  .nav-inner{height:56px;}
  .nav .btn-primary{padding:10px 16px;font-size:14px;}
  .hero{padding:120px 0 50px;}
  .metrics{grid-template-columns:1fr 1fr;}
  .form-row{grid-template-columns:1fr;}
  .foot-links{gap:30px;}
  .form-card{padding:26px 22px;}
  .firm-logo{height:24px;margin-right:40px;}
  .logo-marquee::before,.logo-marquee::after{width:56px;}
}

/* =================== MOBILE DENSITY OPTIMIZATION (≤560px) ===================
   Compact, higher-density layout for phones. Sizes / proportions / spacing only —
   no structure, content or functionality changes. Placed last so it overrides
   earlier mobile rules by source order. Headings use fluid clamps so they keep
   scaling smoothly between small (≈320px) and medium (≈430px) devices. */
@media(max-width:560px){
  /* — vertical rhythm — */
  .sec{padding:52px 0;}
  .sec-head{margin-bottom:30px;}
  .sec-kicker{margin-bottom:10px;font-size:12px;}
  .sec-title{font-size:clamp(25px,6.8vw,32px);margin-bottom:12px;}
  .sec-sub{font-size:15px;}

  /* — hero — */
  .hero{padding:96px 0 38px;}
  .hero h1{font-size:clamp(27px,7.8vw,37px);margin-bottom:16px;}
  .hero-sub{font-size:15.5px;margin-bottom:26px;}
  .hero-cta{gap:10px;}
  .btn-lg{padding:13px 22px;font-size:15px;}
  .hero-eyebrow{font-size:12px;padding:5px 12px 5px 9px;margin-bottom:18px;}
  .hero-eyebrow .dot{width:6px;height:6px;box-shadow:0 0 0 3px rgba(219,254,86,.35);}
  .proof-strip{margin-top:44px;}
  .proof-strip .label{margin-bottom:16px;font-size:12px;}

  /* — problem cards — */
  .prob-grid{gap:14px;}
  .prob-card{padding:20px 20px 24px;}
  .prob-illu{height:124px;margin-bottom:16px;}
  .prob-card h3{font-size:21px;margin-bottom:8px;}
  .prob-card p{font-size:14.5px;}

  /* — product pillars — */
  .pillar-pane{padding:34px 0;}
  .pillar-grid{gap:22px;}
  .pillar-num{margin-bottom:12px;}
  .pillar-title{font-size:clamp(26px,7.2vw,33px);margin-bottom:12px;}
  .pillar-desc{font-size:15px;margin-bottom:16px;}
  .pillar-pills{gap:6px;margin-bottom:20px;}
  .pillar-pill{font-size:11px;padding:3px 10px;}
  .product-intro{padding:56px 0 0;}

  /* — how it works — */
  .how-head{margin-bottom:40px;}
  .how-steps{gap:34px;}
  .how-visual{height:120px;margin-bottom:16px;}
  .how-illus{width:108px;height:108px;}
  .how-illus-img{height:112px;}
  .how-ghost-num{height:120px;font-size:150px;}
  .how-accent-dot{width:16px;height:16px;}
  .how-step-body h3{font-size:15.5px;}
  .how-step-body p{font-size:13.5px;}

  /* — social proof / metrics — */
  .metrics{gap:26px 16px;margin-bottom:34px;}
  .metric{padding:6px;}
  .metric .val{font-size:clamp(30px,9vw,42px);}
  .metric .lbl{font-size:12.5px;margin-top:7px;}

  /* — testimonial — */
  .testi{gap:26px;padding:36px 0 16px;}
  .testi-quote-wrap{padding:0 12px;}
  .testi-quote{font-size:clamp(18px,5vw,23px);}
  .testi-deco{font-size:60px;}
  .testi-deco-open{left:-2px;top:-12px;}
  .testi-deco-close{right:-2px;bottom:-30px;}
  .testi-foot{gap:16px;}

  /* — final CTA — */
  .cta{padding:58px 0;}
  .cta-grid{gap:28px;}
  .cta h2{font-size:clamp(26px,7vw,36px);margin-bottom:14px;}
  .cta-sub{font-size:15.5px;}
  .form-card{padding:22px 18px;border-radius:20px;}
  .field{margin-bottom:14px;}
  .field input,.field select{padding:12px 14px;}

  /* — footer — */
  .foot{padding:44px 0 28px;}
  .foot-top{gap:26px;padding-bottom:28px;}
  .foot-logo{height:26px;}
  .foot-bot{padding-top:20px;}
  .foot-social a{width:36px;height:36px;}
  .foot-social svg{width:16px;height:16px;}
}
