:root {
  --bg:        #f6f5f2;
  --bg-2:      #ede7dc;
  --ink:       #231f20;
  --ink-2:     #2e2a2b;
  --peri:      #0000e0;
  --peri-d:    #0000b0;
  --peri-soft: #e0e0ff;
  --lime:      #b6f761;
  --up:        #16c47e;
  --up-soft:   #dcf5ea;
  --dn:        #ff5a5f;
  --dn-soft:   #ffe2e3;
  --amber:     #ff9f43;
  --amber-soft:#fff0dc;
  --mute:      #86859a;
  --lbl:       #9594a3;
  --line:      #e7e3d9;
  --font:      'Satoshi', 'Archivo', system-ui, sans-serif;
  --r-card:    22px;
  --r-btn:     14px;
  --sh-sm:     0 1px 4px rgba(35,31,32,.04), 0 2px 10px rgba(35,31,32,.06);
  --sh:        0 6px 22px rgba(35,31,32,.08), 0 1px 4px rgba(35,31,32,.04);
  --sh-lg:     0 22px 60px rgba(35,31,32,.16), 0 4px 10px rgba(35,31,32,.05);
  --sh-peri:   0 12px 26px rgba(0,0,224,.32);
  --maxw:      1160px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--bg); color: var(--ink); font-family: var(--font); font-size: 16px; line-height: 1.55; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
svg { display: block; }
.num { font-variant-numeric: tabular-nums; letter-spacing: -0.04em; font-weight: 800; line-height: 0.9; }
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 26px; }
.lbl { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--lbl); }
.muted { color: var(--mute); font-weight: 500; }

/* pills */
.pill { display: inline-flex; align-items: center; gap: 6px; border-radius: 999px; font-weight: 700; font-size: 11.5px; padding: 5px 12px; white-space: nowrap; }
.pill .dot { width: 6px; height: 6px; border-radius: 999px; background: currentColor; }
.pill--peri  { background: var(--peri-soft); color: var(--peri-d); }
.pill--up    { background: var(--up-soft);   color: var(--up); }
.pill--dn    { background: var(--dn-soft);   color: var(--dn); }
.pill--amber { background: var(--amber-soft); color: #d97a17; }
.pill--ghost { background: #f2f0f4; color: var(--mute); }

/* buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 9px; font-family: var(--font); font-weight: 700; font-size: 14.5px; border: 0; border-radius: var(--r-btn); cursor: pointer; padding: 14px 24px; transition: transform .16s ease, box-shadow .16s ease, background .16s ease; }
.btn--peri  { background: var(--peri); color: #fff; box-shadow: var(--sh-peri); }
.btn--peri:hover { transform: translateY(-2px); box-shadow: 0 16px 32px rgba(107,120,255,.46); }
.btn--ghost { background: #fff; color: var(--ink); box-shadow: var(--sh-sm); }
.btn--ghost:hover { transform: translateY(-2px); box-shadow: var(--sh); }
.btn--lime { background: var(--lime); color: var(--ink); }
.btn--lime:hover { transform: translateY(-2px); box-shadow: 0 14px 28px rgba(198,242,78,.4); }

/* nav */
header.nav { position: sticky; top: 0; z-index: 60; background: rgba(239,236,228,.82); backdrop-filter: blur(14px); border-bottom: 1px solid var(--line); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; gap: 24px; }
.brand { display: flex; align-items: center; gap: 11px; }
.brand .mark { width: 34px; height: 34px; border-radius: 10px; background: var(--ink); color: #fff; display: grid; place-items: center; font-weight: 900; font-size: 19px; }
.brand .name { font-weight: 800; font-size: 20px; letter-spacing: -0.01em; }
.brand .name small { display: block; font-size: 9.5px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--mute); line-height: 1; margin-top: 2px; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a.link { font-weight: 600; font-size: 14.5px; color: var(--ink-2); position: relative; }
.nav-links a.link:hover { color: var(--peri-d); }
.nav-links a.link.active { color: var(--peri-d); }
.nav-links a.link.active::after { content: ""; position: absolute; left: 0; right: 0; bottom: -8px; height: 2px; border-radius: 2px; background: var(--peri-d); }
.nav-burger { display: none; width: 44px; height: 44px; border-radius: 12px; background: #fff; box-shadow: var(--sh-sm); border: 0; align-items: center; justify-content: center; cursor: pointer; }

/* hero */
.hero { padding: 74px 0 64px; }
.hero-grid { display: grid; grid-template-columns: 1.02fr 0.98fr; gap: 56px; align-items: center; }
.hero .eyebrow { display: inline-flex; margin-bottom: 24px; }
h1.hero-h { font-size: clamp(40px, 5vw, 66px); font-weight: 800; line-height: 1.02; letter-spacing: -0.035em; margin: 0 0 22px; }
h1.hero-h .accent { color: var(--peri-d); }
.hero-body { font-size: 18px; line-height: 1.6; max-width: 32em; color: var(--ink-2); margin: 0 0 32px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero-trust { display: flex; align-items: center; gap: 20px; margin-top: 28px; flex-wrap: wrap; }
.hero-trust .item { display: flex; align-items: center; gap: 8px; font-size: 13.5px; font-weight: 600; color: var(--ink-2); }
.hero-trust .ic { color: var(--peri-d); }

/* interior page hero */
.page-hero { padding: 60px 0 14px; }
.page-hero .lbl { display: block; margin-bottom: 14px; }
.page-hero h1 { font-size: clamp(36px, 4.6vw, 58px); font-weight: 800; letter-spacing: -0.035em; line-height: 1.02; margin: 0 0 18px; max-width: 16em; }
.page-hero h1 .accent { color: var(--peri-d); }
.page-hero p.intro { font-size: 18px; line-height: 1.6; color: var(--ink-2); max-width: 34em; margin: 0; }
.crumbs { display: flex; align-items: center; gap: 8px; font-size: 12.5px; font-weight: 600; color: var(--mute); margin-bottom: 22px; }
.crumbs a:hover { color: var(--peri-d); }
.crumbs .sep { color: var(--lbl); }

/* cards / visuals */
.card { background: #fff; border-radius: var(--r-card); box-shadow: var(--sh); }
.hero-visual { position: relative; }
.report { padding: 22px; }
.rep-head { display: flex; align-items: center; gap: 13px; margin-bottom: 16px; }
.avatar { width: 46px; height: 46px; border-radius: 14px; display: grid; place-items: center; flex-shrink: 0; }
.avatar--peri { background: var(--peri-soft); color: var(--peri-d); }
.avatar--dn { background: var(--dn-soft); color: var(--dn); }
.rep-name { font-weight: 800; font-size: 15.5px; letter-spacing: -0.01em; }
.rep-sub { font-size: 12px; font-weight: 600; color: var(--mute); }
.rep-tags { display: flex; gap: 7px; margin-bottom: 14px; flex-wrap: wrap; }
.rep-body { font-size: 15px; line-height: 1.6; color: var(--ink-2); font-weight: 500; }
.redact { background: var(--ink); color: transparent; border-radius: 4px; padding: 0 3px; user-select: none; box-decoration-break: clone; }
.rep-foot { display: flex; align-items: center; justify-content: space-between; margin-top: 18px; padding-top: 16px; border-top: 1px solid #f0eef2; }
.rep-foot .conf { display: flex; align-items: center; gap: 7px; font-size: 12.5px; font-weight: 700; color: var(--up); }
.float-chip { position: absolute; background: #fff; border-radius: 16px; box-shadow: var(--sh-lg); padding: 12px 15px; display: flex; align-items: center; gap: 11px; }
.float-chip .ic { width: 38px; height: 38px; border-radius: 11px; display: grid; place-items: center; flex-shrink: 0; }

/* compliance strip */
.strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.strip .item { background: #fff; border-radius: 18px; box-shadow: var(--sh-sm); padding: 20px 22px; display: flex; align-items: center; gap: 14px; }
.strip .ic { width: 44px; height: 44px; border-radius: 13px; background: var(--peri-soft); color: var(--peri-d); display: grid; place-items: center; flex-shrink: 0; }
.strip .tt { font-weight: 800; font-size: 15px; letter-spacing: -0.01em; }
.strip .ss { font-size: 12.5px; color: var(--mute); font-weight: 600; }

/* sections */
section { padding: 84px 0; }
.sec-head { max-width: 42em; margin-bottom: 46px; }
.sec-head h2 { font-size: clamp(30px, 3.8vw, 46px); font-weight: 800; letter-spacing: -0.03em; line-height: 1.06; margin: 14px 0 14px; }
.sec-head p.k { font-size: 17px; color: var(--mute); font-weight: 500; margin: 0; }

/* teaser cards (home) */
.teasers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.teaser { background: #fff; border-radius: var(--r-card); box-shadow: var(--sh-sm); padding: 28px 26px 26px; display: flex; flex-direction: column; transition: transform .16s ease, box-shadow .16s ease; }
.teaser:hover { transform: translateY(-3px); box-shadow: var(--sh); }
.teaser .chip { width: 50px; height: 50px; border-radius: 15px; display: grid; place-items: center; margin-bottom: 18px; }
.teaser h3 { font-size: 21px; font-weight: 800; letter-spacing: -0.02em; margin: 0 0 8px; }
.teaser p { margin: 0 0 20px; color: var(--mute); font-size: 14.5px; line-height: 1.55; font-weight: 500; }
.teaser .go { margin-top: auto; display: inline-flex; align-items: center; gap: 7px; font-weight: 700; font-size: 13.5px; color: var(--peri-d); }
.teaser:hover .go { gap: 11px; }
.teaser .go svg { transition: transform .16s ease; }

/* how it works — steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; counter-reset: step; }
.step { background: #fff; border-radius: var(--r-card); box-shadow: var(--sh-sm); padding: 28px 26px 26px; position: relative; }
.step .n { font-size: 13px; font-weight: 800; letter-spacing: 0.1em; color: var(--peri-d); margin-bottom: 16px; }
.step .ic { width: 50px; height: 50px; border-radius: 15px; display: grid; place-items: center; margin-bottom: 16px; }
.step h4 { font-size: 20px; font-weight: 800; letter-spacing: -0.02em; margin: 0 0 8px; }
.step p { margin: 0; color: var(--mute); font-size: 14.5px; line-height: 1.55; font-weight: 500; }
.step .arrow { position: absolute; top: 44px; right: -22px; width: 24px; height: 24px; color: var(--lbl); z-index: 2; }
.step:last-child .arrow { display: none; }

/* stats band */
.statband { background: var(--ink); color: #fff; border-radius: 30px; padding: 48px 40px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.statband .s { text-align: left; }
.statband .s .v { font-size: 46px; color: var(--lime); }
.statband .s .t { font-size: 13.5px; font-weight: 600; color: rgba(255,255,255,.72); margin-top: 8px; line-height: 1.4; }
.statband .s + .s { border-left: 1px solid rgba(255,255,255,.12); padding-left: 30px; }

/* faq */
.faq { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq details { background: #fff; border-radius: 16px; box-shadow: var(--sh-sm); padding: 4px 22px; transition: box-shadow .16s ease; }
.faq details[open] { box-shadow: var(--sh); }
.faq summary { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 18px 0; font-weight: 700; font-size: 16.5px; letter-spacing: -0.01em; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary .plus { width: 26px; height: 26px; border-radius: 8px; background: var(--peri-soft); color: var(--peri-d); display: grid; place-items: center; flex-shrink: 0; font-weight: 800; transition: transform .2s ease; }
.faq details[open] summary .plus { transform: rotate(45deg); }
.faq .ans { color: var(--mute); font-size: 15px; line-height: 1.6; font-weight: 500; padding: 0 0 20px; max-width: 60em; }

/* law / compliance cards */
.law-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.lawcard { background: #fff; border-radius: 20px; box-shadow: var(--sh-sm); padding: 24px; display: flex; flex-direction: column; transition: transform .16s ease, box-shadow .16s ease; }
.lawcard:hover { transform: translateY(-3px); box-shadow: var(--sh); }
.lawcard .law-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.lawcard .chip { width: 46px; height: 46px; border-radius: 14px; display: grid; place-items: center; }
.lawcard h4 { font-size: 18px; font-weight: 800; letter-spacing: -0.01em; margin: 0 0 8px; }
.lawcard p { margin: 0; color: var(--mute); font-size: 14px; line-height: 1.55; font-weight: 500; }
.lawcard p strong { color: var(--ink-2); font-weight: 700; }

/* feature split */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; margin-bottom: 46px; }
.split.rev .visual { order: -1; }
.feat-list { display: flex; flex-direction: column; gap: 22px; }
.feat { display: flex; gap: 16px; }
.feat .chip { width: 46px; height: 46px; border-radius: 14px; display: grid; place-items: center; flex-shrink: 0; }
.feat h4 { font-size: 18px; font-weight: 800; letter-spacing: -0.01em; margin: 2px 0 5px; }
.feat p { margin: 0; color: var(--mute); font-size: 14.5px; line-height: 1.55; font-weight: 500; }

.feat-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.fcard { background: #fff; border-radius: 18px; box-shadow: var(--sh-sm); padding: 24px; }
.fcard .chip { width: 46px; height: 46px; border-radius: 14px; display: grid; place-items: center; margin-bottom: 16px; }
.fcard h4 { font-size: 18px; font-weight: 800; letter-spacing: -0.01em; margin: 0 0 7px; }
.fcard p { margin: 0; color: var(--mute); font-size: 14.5px; line-height: 1.55; font-weight: 500; }

/* redaction showcase */
.editor { padding: 24px; }
.editor .bar { display: flex; align-items: center; gap: 8px; margin-bottom: 16px; }
.editor .tool { width: 34px; height: 34px; border-radius: 10px; background: var(--bg); display: grid; place-items: center; color: var(--ink-2); }
.editor .tool.on { background: var(--ink); color: #fff; }
.editor .doc { font-size: 16px; line-height: 1.7; color: var(--ink-2); font-weight: 500; }
.editor .tip { display: inline-flex; align-items: center; gap: 7px; margin-top: 18px; background: var(--peri-soft); color: var(--peri-d); border-radius: 10px; padding: 9px 13px; font-size: 12.5px; font-weight: 700; }

/* dashboard showcase */
.dash { padding: 24px; }
.dash-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.dash-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 22px; }
.metric { background: var(--bg); border-radius: 14px; padding: 14px; }
.metric .v { font-size: 30px; }
.metric .t { font-size: 11.5px; font-weight: 600; color: var(--mute); margin-top: 4px; }
.dash-bars { display: flex; align-items: flex-end; gap: 12px; height: 96px; padding: 0 4px; }
.dash-bars .col { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 8px; }
.dash-bars .stick { width: 100%; border-radius: 999px 999px 4px 4px; background: var(--peri-soft); }
.dash-bars .col.hi .stick { background: var(--peri); }
.dash-bars .lab { font-size: 10.5px; font-weight: 700; color: var(--mute); }

/* pricing */
.price-wrap { background: #fff; border-radius: 28px; box-shadow: var(--sh); padding: 44px; display: grid; grid-template-columns: 1fr 0.9fr; gap: 48px; align-items: center; }
.price-left .big { display: flex; align-items: baseline; gap: 8px; margin: 6px 0 4px; }
.price-left .big .e { font-size: 64px; color: var(--peri-d); }
.price-left .big .per { font-size: 17px; font-weight: 700; color: var(--mute); }
.slider-box { margin-top: 26px; }
.slider-top { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 14px; }
.slider-top .emp { font-size: 13px; font-weight: 700; color: var(--ink-2); }
.slider-top .empn { font-size: 28px; }
input[type=range] { -webkit-appearance: none; appearance: none; width: 100%; height: 8px; border-radius: 999px; background: linear-gradient(to right, var(--peri) 0%, var(--peri) var(--fill,40%), var(--peri-soft) var(--fill,40%), var(--peri-soft) 100%); outline: none; }
input[type=range]::-webkit-slider-thumb { -webkit-appearance: none; appearance: none; width: 28px; height: 28px; border-radius: 999px; background: #fff; border: 4px solid var(--peri); box-shadow: 0 4px 12px rgba(107,120,255,.4); cursor: pointer; }
input[type=range]::-moz-range-thumb { width: 28px; height: 28px; border-radius: 999px; background: #fff; border: 4px solid var(--peri); box-shadow: 0 4px 12px rgba(107,120,255,.4); cursor: pointer; }
.slider-scale { display: flex; justify-content: space-between; margin-top: 10px; font-size: 11.5px; font-weight: 600; color: var(--lbl); }
.quote { background: var(--ink); color: #fff; border-radius: 22px; padding: 30px; }
.quote .q-lbl { color: var(--lime); }
.quote .q-big { display: flex; align-items: baseline; gap: 8px; margin: 10px 0 2px; }
.quote .q-big .v { font-size: 52px; }
.quote .q-big .u { font-size: 16px; font-weight: 700; color: rgba(255,255,255,.6); }
.quote .q-year { font-size: 13.5px; color: rgba(255,255,255,.6); font-weight: 600; margin-bottom: 22px; }
.quote .q-row { display: flex; align-items: center; gap: 9px; font-size: 13px; font-weight: 600; color: rgba(255,255,255,.85); margin-bottom: 10px; }
.quote .q-row .ic { color: var(--lime); }

/* dark security band */
.band { position: relative; overflow: hidden; background: var(--ink); color: #fff; border-radius: 30px; padding: 56px 56px; }
.band .ghost-glyph { position: absolute; right: -10px; top: -56px; font-size: 280px; font-weight: 900; color: rgba(255,255,255,.04); letter-spacing: -0.06em; pointer-events: none; }
.band-grid { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.band h2 { font-size: clamp(28px, 3.6vw, 42px); font-weight: 800; letter-spacing: -0.03em; line-height: 1.06; margin: 14px 0 16px; }
.band p.l { color: rgba(255,255,255,.66); font-weight: 500; font-size: 16px; margin: 0 0 24px; max-width: 30em; }
.band-badges { display: flex; gap: 10px; flex-wrap: wrap; }
.band-badges .b { background: rgba(255,255,255,.08); border-radius: 999px; padding: 8px 15px; font-size: 12.5px; font-weight: 700; color: rgba(255,255,255,.9); }
.assure { display: flex; flex-direction: column; gap: 13px; }
.assure .row { display: flex; align-items: center; gap: 14px; background: rgba(255,255,255,.06); border-radius: 16px; padding: 16px 18px; }
.assure .ic { width: 42px; height: 42px; border-radius: 12px; background: rgba(255,255,255,.08); display: grid; place-items: center; flex-shrink: 0; color: var(--lime); }
.assure .tt { font-weight: 700; font-size: 14.5px; }
.assure .ss { font-size: 12.5px; color: rgba(255,255,255,.55); font-weight: 500; }

/* CTA demo */
.cta { background: var(--peri); color: #fff; border-radius: 30px; padding: 56px; text-align: center; position: relative; overflow: hidden; }
.cta h2 { font-size: clamp(30px, 4vw, 50px); font-weight: 800; letter-spacing: -0.03em; line-height: 1.04; margin: 12px 0 14px; }
.cta p.l { color: rgba(255,255,255,.82); font-weight: 500; font-size: 17px; margin: 0 auto 30px; max-width: 32em; }
.form-row { display: flex; gap: 12px; flex-wrap: wrap; max-width: 540px; margin: 0 auto; justify-content: center; }
.form-row input { flex: 1; min-width: 210px; border: 0; border-radius: var(--r-btn); background: rgba(255,255,255,.14); color: #fff; font-family: var(--font); font-size: 15.5px; font-weight: 500; padding: 16px 18px; outline: 0; box-shadow: inset 0 0 0 1px rgba(255,255,255,.2); }
.form-row input::placeholder { color: rgba(255,255,255,.7); }
.cta-note { font-size: 12.5px; color: rgba(255,255,255,.7); font-weight: 500; margin-top: 16px; }

/* footer */
footer.foot { padding: 48px 0 56px; }
.foot-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 30px; padding-bottom: 36px; }
.foot-brand .brand { margin-bottom: 14px; }
.foot-brand p { font-size: 13.5px; color: var(--mute); font-weight: 500; max-width: 26em; margin: 0; line-height: 1.55; }
.foot-col h5 { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--lbl); margin: 0 0 14px; }
.foot-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 11px; }
.foot-col a { font-size: 14px; font-weight: 600; color: var(--ink-2); }
.foot-col a:hover { color: var(--peri-d); }
.foot-inner { display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap; padding-top: 26px; border-top: 1px solid var(--line); }
.foot-inner .copy { font-size: 12.5px; color: var(--lbl); font-weight: 500; }
.foot-inner .legal { display: flex; gap: 18px; font-size: 12.5px; font-weight: 600; color: var(--mute); }
.foot-inner .legal a:hover { color: var(--peri-d); }

@media (max-width: 920px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .strip { grid-template-columns: 1fr; }
  .teasers { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .step .arrow { display: none; }
  .statband { grid-template-columns: 1fr 1fr; gap: 24px; }
  .statband .s + .s { border-left: 0; padding-left: 0; }
  .split { grid-template-columns: 1fr; gap: 32px; }
  .split.rev .visual { order: 0; }
  .feat-grid { grid-template-columns: 1fr; }
  .law-grid { grid-template-columns: 1fr 1fr; }
  .price-wrap { grid-template-columns: 1fr; gap: 32px; padding: 32px; }
  .band-grid { grid-template-columns: 1fr; gap: 34px; }
  .band, .cta { padding: 40px 28px; }
  .dash-metrics { grid-template-columns: 1fr 1fr; }
  .foot-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 680px) {
  .nav-links { display: none; }
  .nav-links.open { display: flex; position: absolute; top: 72px; left: 0; right: 0; flex-direction: column; align-items: flex-start; gap: 20px; background: var(--bg); border-bottom: 1px solid var(--line); padding: 24px 26px; }
  .nav-burger { display: inline-flex; }
  .hero { padding: 44px 0 48px; }
  section { padding: 58px 0; }
  .law-grid { grid-template-columns: 1fr; }
  .statband { grid-template-columns: 1fr; padding: 36px 28px; }
  .foot-top { grid-template-columns: 1fr; gap: 26px; }
}
