*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
a { color: inherit; }
button { font: inherit; }
svg { display: block; }

body {
  --bg:        oklch(99% 0.005 250);
  --bg2:       oklch(96.5% 0.009 250);
  --bg3:       oklch(93.5% 0.013 250);
  --card:      oklch(100% 0 0);
  --border:    oklch(88% 0.012 250);
  --border2:   oklch(76% 0.018 250);
  --shadow:    oklch(0% 0 0 / 0.06);
  --shadow2:   oklch(0% 0 0 / 0.12);
  --fg:        oklch(16% 0.02 255);
  --fg2:       oklch(40% 0.02 255);
  --fg3:       oklch(60% 0.015 255);
  --brand:     oklch(50% 0.22 255);
  --brand-d:   oklch(42% 0.22 255);
  --brand-bg:  oklch(94% 0.045 255);
  --brand-bg2: oklch(89% 0.07 255);
  --green:     oklch(48% 0.18 155);
  --green-bg:  oklch(94% 0.045 155);
  --amber:     oklch(55% 0.16 78);
  --amber-bg:  oklch(95% 0.045 78);
  --red:       oklch(52% 0.2 25);
  --red-bg:    oklch(95% 0.045 25);
  --purple:    oklch(50% 0.2 280);
  --purple-bg: oklch(94% 0.04 280);
  --teal:      oklch(50% 0.18 185);
  --teal-bg:   oklch(94% 0.04 185);

  background: var(--bg);
  color: var(--fg);
  line-height: 1.6;
  overflow-x: hidden;
}

html { scroll-behavior: smooth; }

/* ── NAV ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 64px; height: 64px;
  background: oklch(100% 0 0 / 0.9); backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.navLogo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.navLogoImg { width: 34px; height: 34px; border-radius: 50%; object-fit: cover; transform: scale(1.5); flex-shrink: 0; }
.navWordmark { font-family: 'Inter', sans-serif; font-size: 17px; font-weight: 700; color: var(--fg); letter-spacing: -0.02em; }
.navWordmark em { font-style: normal; color: var(--brand); }
.navLinks { display: flex; gap: 28px; list-style: none; }
.navLinks a { font-size: 13px; font-weight: 500; color: var(--fg2); text-decoration: none; transition: color .2s; }
.navLinks a:hover { color: var(--fg); }
.navActions { display: flex; gap: 10px; align-items: center; }
.btnXsGhost {
  font-size: 13px; font-weight: 500; color: var(--fg2); padding: 8px 16px;
  border-radius: 7px; text-decoration: none; border: 1px solid var(--border);
  transition: border-color .2s, color .2s; background: transparent;
}
.btnXsGhost:hover { color: var(--fg); border-color: var(--border2); }
.btnXs {
  font-size: 13px; font-weight: 600; color: white; padding: 8px 18px;
  border-radius: 7px; text-decoration: none; background: var(--brand);
  transition: background .2s; box-shadow: 0 1px 3px oklch(50% .22 255 / .3);
}
.btnXs:hover { background: var(--brand-d); }

/* ── LAYOUT ── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 64px; }
.sp { padding: 100px 0; }

/* ── TYPE ── */
h1, h2, h3 { font-family: 'DM Serif Display', serif; letter-spacing: -0.02em; line-height: 1.1; }
h2 { font-size: clamp(28px, 3.6vw, 50px); }
h3 { font-size: clamp(17px, 2vw, 24px); }
.tag {
  font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: .14em;
  text-transform: uppercase; display: inline-block; margin-bottom: 16px;
  padding: 4px 12px; border-radius: 100px; font-weight: 600;
}
.tagBl { color: var(--brand); background: var(--brand-bg); }
.tagGr { color: var(--green); background: var(--green-bg); }
.tagAm { color: var(--amber); background: var(--amber-bg); }

/* ── BUTTONS ── */
.btnP {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--brand); color: white;
  font-family: 'Inter', sans-serif; font-weight: 600; font-size: 15px;
  padding: 14px 28px; border-radius: 10px; text-decoration: none;
  transition: background .2s, transform .2s; border: none; cursor: pointer;
  box-shadow: 0 2px 8px oklch(50% .22 255 / .3);
}
.btnP:hover { background: var(--brand-d); transform: translateY(-1px); }
.btnP:disabled { opacity: .6; cursor: not-allowed; transform: none; }
.btnG {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--fg2); border: 1.5px solid var(--border);
  font-family: 'Inter', sans-serif; font-weight: 500; font-size: 15px;
  padding: 13px 24px; border-radius: 10px; text-decoration: none;
  transition: border-color .2s, color .2s, background .2s; cursor: pointer;
  background: var(--card);
}
.btnG:hover { border-color: var(--brand); color: var(--brand); background: var(--brand-bg); }

/* ── REVEAL ── */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.revealIn { opacity: 1; transform: none; }

/* ─────────── HERO ─────────── */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  text-align: center; padding: 130px 0 90px;
  position: relative; overflow: hidden; background: var(--bg);
}
.heroDots {
  position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(circle, oklch(60% .15 255 / .18) 1.5px, transparent 1.5px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse 85% 75% at 50% 40%, black 20%, transparent 75%);
}
.heroGlow {
  position: absolute; top: -80px; left: 50%; transform: translateX(-50%);
  width: 1000px; height: 600px;
  background: radial-gradient(ellipse, oklch(80% .15 255 / .2) 0%, transparent 60%);
  pointer-events: none;
}
.heroInner { position: relative; z-index: 1; }
.heroKicker {
  display: inline-flex; align-items: center; gap: 8px; margin-bottom: 32px;
  background: var(--brand-bg); border: 1px solid var(--brand-bg2);
  color: var(--brand-d); font-family: 'JetBrains Mono', monospace; font-size: 11px;
  letter-spacing: .14em; text-transform: uppercase; padding: 7px 18px; border-radius: 100px;
  font-weight: 600;
}
.heroH1 {
  font-size: clamp(50px, 7.5vw, 92px); max-width: 880px; margin: 0 auto 24px;
  color: var(--fg); font-family: 'DM Serif Display', serif; letter-spacing: -0.02em; line-height: 1.1;
}
.heroH1 em { font-style: italic; color: var(--brand); }
.heroSub {
  font-size: clamp(15px, 1.5vw, 18px); color: var(--fg2); max-width: 580px;
  margin: 0 auto 44px; font-weight: 400; line-height: 1.78;
}
.heroCtas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 20px; }
.heroMicro { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--fg3); letter-spacing: .04em; text-align: center; margin-bottom: 36px; }
.heroTrust { display: flex; gap: 24px; justify-content: center; flex-wrap: wrap; }
.trustItem { display: flex; align-items: center; gap: 7px; font-size: 13px; color: var(--fg3); font-weight: 500; }
.tdot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
.tdotG { background: var(--green); } .tdotB { background: var(--brand); } .tdotA { background: var(--amber); }
.tsep { width: 1px; height: 14px; background: var(--border2); }

/* ─────────── STATS STRIP ─────────── */
.statsStrip { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--card); }
.statsGrid { display: grid; grid-template-columns: repeat(4, 1fr); }
.statItem { text-align: center; padding: 36px 20px; border-right: 1px solid var(--border); }
.statItem:last-child { border-right: none; }
.statNum { font-family: 'DM Serif Display', serif; font-size: 52px; color: var(--brand); line-height: 1; }
.statLbl { font-size: 13px; color: var(--fg2); font-weight: 400; margin-top: 8px; }

/* ─────────── PROBLEM ─────────── */
.probGrid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.painList { display: flex; flex-direction: column; gap: 14px; }
.painItem {
  display: flex; gap: 16px; align-items: flex-start; padding: 20px 22px;
  border: 1.5px solid var(--border); border-radius: 12px; background: var(--card);
  box-shadow: 0 1px 3px var(--shadow); transition: border-color .25s, box-shadow .25s;
}
.painItem:hover { border-color: oklch(80% .1 25); box-shadow: 0 3px 10px var(--shadow2); }
.piIcon {
  flex-shrink: 0; width: 38px; height: 38px; border-radius: 9px;
  background: var(--red-bg); display: flex; align-items: center; justify-content: center; color: var(--red);
}
.painItem h4 { font-size: 14px; font-weight: 600; margin-bottom: 4px; color: var(--fg); }
.painItem p { font-size: 13px; color: var(--fg2); line-height: 1.6; }

/* ─────────── HOW IT WORKS ─────────── */
.howGrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 52px; }
.howCard {
  background: var(--card); border: 1.5px solid var(--border); border-radius: 16px; padding: 32px;
  box-shadow: 0 1px 4px var(--shadow); transition: border-color .25s, box-shadow .25s, transform .25s;
}
.howCard:hover { border-color: oklch(75% .1 155); box-shadow: 0 8px 24px var(--shadow2); transform: translateY(-2px); }
.howN { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--green); letter-spacing: .12em; margin-bottom: 18px; font-weight: 600; }
.howCard h3 { font-size: 19px; margin-bottom: 10px; }
.howCard p { font-size: 13.5px; color: var(--fg2); line-height: 1.7; }

/* ─────────── MODULES ─────────── */
.modGrid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 52px; }
.modCard {
  background: var(--card); border: 1.5px solid var(--border); border-radius: 14px; padding: 24px;
  box-shadow: 0 1px 3px var(--shadow);
  transition: border-color .25s, box-shadow .25s, transform .25s;
}
.modCard:hover { border-color: var(--brand-bg2); box-shadow: 0 6px 20px oklch(50% .22 255 / .1); transform: translateY(-2px); }
.modIc {
  width: 40px; height: 40px; border-radius: 10px; background: var(--brand-bg);
  display: flex; align-items: center; justify-content: center; margin-bottom: 14px;
  border: 1px solid var(--brand-bg2); color: var(--brand);
}
.modCard h4 { font-size: 14px; font-weight: 600; margin-bottom: 6px; color: var(--fg); }
.modCard p { font-size: 12.5px; color: var(--fg2); line-height: 1.6; }
.modTag {
  display: inline-block; margin-top: 12px; font-family: 'JetBrains Mono', monospace; font-size: 9px;
  letter-spacing: .08em; text-transform: uppercase; color: var(--brand-d);
  border: 1px solid var(--brand-bg2); padding: 3px 8px; border-radius: 4px; background: var(--brand-bg);
  font-weight: 600;
}

/* ─────────── ISO ─────────── */
.isoSection { background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.isoWrap { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 32px; margin-top: 52px; align-items: start; }
.isoChs { display: flex; flex-direction: column; gap: 10px; }
.isoCh {
  background: var(--card); border: 1.5px solid var(--border); border-radius: 12px;
  padding: 18px 22px; cursor: pointer; transition: border-color .2s, box-shadow .2s;
  box-shadow: 0 1px 3px var(--shadow); text-align: left; width: 100%; font: inherit; color: inherit;
}
.isoCh:hover { border-color: var(--green); }
.isoChActive { border-color: var(--green); box-shadow: 0 3px 12px oklch(48% .18 155 / .15); }
.isoChHead { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.isoNum {
  font-family: 'JetBrains Mono', monospace; font-size: 10px; color: var(--green); letter-spacing: .1em;
  border: 1px solid oklch(75% .08 155); padding: 3px 9px; border-radius: 4px;
  background: var(--green-bg); font-weight: 600;
}
.isoCnt { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--fg3); }
.isoTitle { font-size: 13px; font-weight: 600; margin-bottom: 10px; color: var(--fg); }
.isoBar { height: 4px; background: var(--bg3); border-radius: 2px; overflow: hidden; }
.isoFill { height: 100%; background: var(--green); border-radius: 2px; transition: width .8s ease; }
.isoPanel { background: var(--card); border: 1.5px solid var(--border); border-radius: 14px; overflow: hidden; box-shadow: 0 2px 8px var(--shadow); position: sticky; top: 80px; }
.isoPanelHdr { padding: 16px 20px; border-bottom: 1px solid var(--border); background: var(--green-bg); }
.isoPanelHdr p { font-size: 13px; font-weight: 600; color: var(--green); }
.isoPanelHdr span { font-size: 11px; color: oklch(45% .12 155); font-family: 'JetBrains Mono', monospace; }
.isoPanelBody { max-height: 440px; overflow-y: auto; }
.isoSecRow { display: flex; align-items: center; gap: 12px; padding: 11px 20px; border-bottom: 1px solid var(--border); transition: background .15s; }
.isoSecRow:last-child { border-bottom: none; }
.isoSecRow:hover { background: var(--bg2); }
.isoCode { font-family: 'JetBrains Mono', monospace; font-size: 10px; color: var(--green); width: 34px; flex-shrink: 0; font-weight: 600; }
.isoSecTitle { font-size: 12.5px; color: var(--fg2); flex: 1; }
.isoChk { width: 18px; height: 18px; border-radius: 50%; background: var(--green-bg); border: 1px solid oklch(75% .1 155); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--green); }

/* ─────────── SECTORS ─────────── */
.sectorGrid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 52px; }
.sectorCard {
  background: var(--card); border: 1.5px solid var(--border); border-radius: 16px; padding: 36px;
  box-shadow: 0 1px 4px var(--shadow); transition: border-color .25s, box-shadow .25s, transform .25s;
}
.sectorCard:hover { transform: translateY(-3px); box-shadow: 0 8px 24px var(--shadow2); }
.sInd:hover { border-color: var(--brand-bg2); }
.sAli:hover { border-color: oklch(75% .1 155); }
.sCli:hover { border-color: oklch(75% .1 280); }
.sAmb:hover { border-color: oklch(75% .1 185); }
.sIc { width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.sIcBl { background: var(--brand-bg); border: 1px solid var(--brand-bg2); color: var(--brand); }
.sIcGr { background: var(--green-bg); border: 1px solid oklch(80% .08 155); color: var(--green); }
.sIcPu { background: var(--purple-bg); border: 1px solid oklch(80% .08 280); color: var(--purple); }
.sIcTe { background: var(--teal-bg); border: 1px solid oklch(80% .08 185); color: var(--teal); }
.sectorCard h3 { font-size: 20px; margin-bottom: 8px; }
.sSub { font-size: 13px; color: var(--fg2); margin-bottom: 20px; line-height: 1.65; }
.sFeats { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.sFeat { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--fg2); }
.sFeat svg { color: var(--green); flex-shrink: 0; }
.sRegs { display: flex; gap: 8px; flex-wrap: wrap; }
.regB { font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: .06em; color: var(--fg3); border: 1px solid var(--border2); padding: 4px 10px; border-radius: 5px; background: var(--bg2); font-weight: 600; }

/* ─────────── ROLES ─────────── */
.rolesLayout { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.rolesSticky { position: sticky; top: 80px; }
.rolesList { display: flex; flex-direction: column; gap: 10px; }
.roleCard {
  display: flex; align-items: flex-start; gap: 16px; padding: 18px 20px;
  background: var(--card); border: 1.5px solid var(--border); border-radius: 12px;
  box-shadow: 0 1px 3px var(--shadow); transition: border-color .25s, box-shadow .25s;
}
.roleCard:hover { border-color: var(--brand-bg2); box-shadow: 0 3px 12px oklch(50% .22 255 / .1); }
.roleIc { width: 38px; height: 38px; border-radius: 9px; background: var(--brand-bg); border: 1px solid var(--brand-bg2); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--brand); }
.roleName { font-size: 14px; font-weight: 600; margin-bottom: 3px; color: var(--fg); }
.roleDesc { font-size: 12px; color: var(--fg2); line-height: 1.55; margin-bottom: 10px; }
.roleChips { display: flex; flex-wrap: wrap; gap: 5px; }
.chip { font-family: 'JetBrains Mono', monospace; font-size: 9px; letter-spacing: .05em; color: var(--fg3); border: 1px solid var(--border2); padding: 3px 7px; border-radius: 4px; background: var(--bg2); font-weight: 600; }
.secBadges { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px; }
.secB { font-family: 'JetBrains Mono', monospace; font-size: 10px; color: var(--fg3); border: 1px solid var(--border2); padding: 5px 12px; border-radius: 6px; background: var(--bg2); font-weight: 600; }

/* ─────────── PORTAL ─────────── */
.portalSection { background: var(--bg); border-top: 1px solid var(--border); }
.portalInner { display: grid; grid-template-columns: 1fr 1.15fr; gap: 72px; align-items: center; }
.portalFeats { display: flex; flex-direction: column; gap: 22px; margin-top: 28px; }
.pf { display: flex; gap: 16px; align-items: flex-start; }
.pfIc { width: 40px; height: 40px; border-radius: 10px; background: var(--green-bg); border: 1px solid oklch(80% .08 155); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--green); }
.pf h4 { font-size: 14px; font-weight: 600; margin-bottom: 4px; color: var(--fg); }
.pf p { font-size: 13px; color: var(--fg2); line-height: 1.6; }
.btnPortalCta {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 28px; padding: 12px 24px;
  background: var(--brand); color: white; font-size: 14px; font-weight: 600; border-radius: 10px;
  text-decoration: none; transition: background .2s, transform .15s;
}
.btnPortalCta:hover { background: var(--brand-d); transform: translateY(-1px); }

/* Mockup */
.mockup { background: var(--bg2); border: 1.5px solid var(--border); border-radius: 16px; overflow: hidden; box-shadow: 0 8px 32px oklch(0% 0 0 / .1); }
.mkBar { background: var(--bg3); border-bottom: 1px solid var(--border); padding: 12px 18px; display: flex; align-items: center; gap: 7px; }
.mkDot { width: 11px; height: 11px; border-radius: 50%; }
.mkDotR { background: oklch(62% .2 25); } .mkDotY { background: oklch(72% .16 78); } .mkDotG { background: oklch(62% .18 155); }
.mkUrl { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--fg3); margin-left: 10px; font-weight: 400; }
.mkBody { padding: 20px; }
.mkKpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 18px; }
.mkKpi { background: var(--card); border: 1px solid var(--border); border-radius: 10px; padding: 14px; text-align: center; box-shadow: 0 1px 3px var(--shadow); }
.mkKpiN { font-family: 'DM Serif Display', serif; font-size: 26px; line-height: 1; }
.mkKpiL { font-size: 10px; color: var(--fg3); margin-top: 4px; }
.mkTh { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 8px; padding: 8px 14px; background: var(--bg3); border-radius: 8px; font-family: 'JetBrains Mono', monospace; font-size: 9px; letter-spacing: .1em; text-transform: uppercase; color: var(--fg3); margin-bottom: 6px; font-weight: 600; }
.mkTr { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 8px; padding: 11px 14px; border-bottom: 1px solid var(--border); align-items: center; font-size: 11px; background: var(--card); }
.mkTr:last-child { border-bottom: none; }
.mkCode { color: var(--brand); font-family: 'JetBrains Mono', monospace; font-weight: 600; }
.mkBadge { font-size: 9px; font-weight: 600; padding: 3px 8px; border-radius: 4px; display: inline-block; }
.mkBadgeGr { background: var(--green-bg); color: var(--green); border: 1px solid oklch(78% .1 155); }
.mkBadgeAm { background: var(--amber-bg); color: var(--amber); border: 1px solid oklch(80% .1 78); }
.mkBadgeBl { background: var(--brand-bg); color: var(--brand-d); border: 1px solid var(--brand-bg2); }
.mkPending { font-size: 11px; color: var(--fg3); font-style: italic; }
.mkDl { color: var(--brand); display: flex; align-items: center; gap: 4px; font-weight: 500; }

/* ─────────── DIFF ─────────── */
.diffGrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 52px; }
.diffCard {
  background: var(--card); border: 1.5px solid var(--border); border-radius: 14px; padding: 32px;
  box-shadow: 0 1px 4px var(--shadow); transition: border-color .25s, box-shadow .25s, transform .25s;
}
.diffCard:hover { border-color: var(--brand-bg2); box-shadow: 0 6px 20px oklch(50% .22 255 / .1); transform: translateY(-2px); }
.diffN { font-family: 'JetBrains Mono', monospace; font-size: 10px; color: var(--brand); letter-spacing: .12em; margin-bottom: 18px; font-weight: 600; }
.diffIc { width: 44px; height: 44px; border-radius: 12px; background: var(--brand-bg); border: 1px solid var(--brand-bg2); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; color: var(--brand); }
.diffCard h3 { font-size: 18px; margin-bottom: 10px; }
.diffCard p { font-size: 13px; color: var(--fg2); line-height: 1.7; }

/* ─────────── TRUST ─────────── */
.trustGrid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 52px; }
.trustCard {
  background: var(--card); border: 1.5px solid var(--border); border-radius: 14px; padding: 26px;
  box-shadow: 0 1px 3px var(--shadow); transition: border-color .25s, box-shadow .25s;
}
.trustCard:hover { border-color: oklch(75% .1 155); box-shadow: 0 6px 18px var(--shadow2); }
.trustIc {
  width: 40px; height: 40px; border-radius: 10px; background: var(--green-bg);
  display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
  border: 1px solid oklch(80% .08 155); color: var(--green);
}
.trustCard h4 { font-size: 14px; font-weight: 600; margin-bottom: 8px; color: var(--fg); }
.trustCard p { font-size: 12.5px; color: var(--fg2); line-height: 1.65; }
.trustCard code { font-family: 'JetBrains Mono', monospace; font-size: 11px; background: var(--bg2); padding: 1px 5px; border-radius: 4px; color: var(--brand-d); }

/* ─────────── PRICING ─────────── */
.pricingSection { background: var(--bg2); border-top: 1px solid var(--border); }
.priceDisclaimer {
  display: inline-flex; align-items: center; gap: 6px; margin-top: 14px;
  font-family: 'JetBrains Mono', monospace; font-size: 10.5px; letter-spacing: .04em; color: var(--amber);
  background: var(--amber-bg); border: 1px solid oklch(80% .1 78); padding: 6px 14px; border-radius: 100px;
  font-weight: 600;
}
.priceGrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 52px; }
.priceCard {
  background: var(--card); border: 1.5px solid var(--border); border-radius: 18px; padding: 36px;
  display: flex; flex-direction: column; position: relative;
  box-shadow: 0 1px 4px var(--shadow); transition: transform .25s, box-shadow .25s;
}
.priceCard:hover { transform: translateY(-3px); box-shadow: 0 8px 28px var(--shadow2); }
.priceCardFeat {
  border-color: var(--brand); background: var(--brand);
  box-shadow: 0 4px 20px oklch(50% .22 255 / .3);
  --fg: white; --fg2: oklch(90% .05 255); --fg3: oklch(80% .05 255);
}
.featBadge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--fg); color: var(--brand); font-family: 'JetBrains Mono', monospace; font-size: 10px; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase; padding: 4px 14px; border-radius: 100px; white-space: nowrap;
}
.pricePlan { font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: .15em; text-transform: uppercase; color: var(--fg3); margin-bottom: 10px; font-weight: 600; }
.priceCardFeat .pricePlan { color: oklch(85% .08 255); }
.priceName { font-family: 'DM Serif Display', serif; font-size: 26px; margin-bottom: 8px; color: var(--fg); }
.priceDesc { font-size: 13px; color: var(--fg2); line-height: 1.6; margin-bottom: 22px; }
.priceCardFeat .priceDesc { color: oklch(88% .06 255); }
.priceDiv { height: 1px; background: var(--border); margin-bottom: 20px; }
.priceCardFeat .priceDiv { background: oklch(62% .18 255); }
.priceFeats { flex: 1; display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.pfItem { display: flex; align-items: flex-start; gap: 9px; font-size: 13px; color: var(--fg2); }
.pfItem svg { flex-shrink: 0; margin-top: 3px; }
.priceCardFeat .pfItem { color: oklch(90% .05 255); }
.pfItemOff { color: var(--fg3); opacity: .5; }
.btnOnFeat {
  background: white; color: var(--brand); font-weight: 700;
  border-radius: 10px; padding: 14px 24px; text-align: center;
  text-decoration: none; font-family: 'Inter', sans-serif; font-size: 15px;
  transition: opacity .2s; display: block;
}
.btnOnFeat:hover { opacity: .9; }
.btnGCenter { justify-content: center; }

/* ─────────── CTA ─────────── */
.ctaWrap {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-d) 100%);
  border-radius: 20px; padding: 80px 64px; text-align: center; position: relative; overflow: hidden;
  box-shadow: 0 8px 40px oklch(50% .22 255 / .3);
}
.ctaPattern {
  position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(circle, oklch(100% 0 0 / .1) 1.5px, transparent 1.5px);
  background-size: 28px 28px;
}
.ctaInner { position: relative; z-index: 1; }
.ctaKicker { font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: oklch(85% .08 255); display: inline-block; margin-bottom: 22px; font-weight: 600; }
.ctaWrap h2 { color: white; font-size: clamp(30px, 4.5vw, 58px); margin-bottom: 20px; }
.ctaWrap h2 em { font-style: italic; color: oklch(88% .1 255); }
.ctaWrap p { font-size: 17px; color: oklch(88% .05 255); max-width: 480px; margin: 0 auto 40px; line-height: 1.78; }
.ctaActs { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btnCtaW { display: inline-flex; align-items: center; gap: 8px; background: white; color: var(--brand); font-family: 'Inter', sans-serif; font-weight: 700; font-size: 15px; padding: 14px 28px; border-radius: 10px; text-decoration: none; transition: opacity .2s; }
.btnCtaW:hover { opacity: .92; }
.btnCtaGhost { display: inline-flex; align-items: center; gap: 8px; background: oklch(100% 0 0 / .15); color: white; border: 1.5px solid oklch(100% 0 0 / .3); font-family: 'Inter', sans-serif; font-weight: 500; font-size: 15px; padding: 13px 24px; border-radius: 10px; text-decoration: none; transition: background .2s; }
.btnCtaGhost:hover { background: oklch(100% 0 0 / .25); }
.ctaNote { margin-top: 22px; font-family: 'JetBrains Mono', monospace; font-size: 11px; color: oklch(80% .05 255); letter-spacing: .06em; position: relative; z-index: 1; }

/* ─────────── FAQ ─────────── */
.faqList { display: flex; flex-direction: column; gap: 12px; margin-top: 44px; max-width: 760px; margin-left: auto; margin-right: auto; }
.faqItem {
  background: var(--card); border: 1.5px solid var(--border); border-radius: 12px;
  padding: 4px 22px; box-shadow: 0 1px 3px var(--shadow); transition: border-color .2s;
}
.faqItem:hover { border-color: var(--brand-bg2); }
.faqItem summary {
  cursor: pointer; list-style: none; padding: 18px 0;
  font-family: 'Inter', sans-serif; font-weight: 600; font-size: 15px; color: var(--fg);
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
}
.faqItem summary::-webkit-details-marker { display: none; }
.faqItem summary::after {
  content: '+'; font-size: 20px; font-weight: 400; color: var(--brand); flex-shrink: 0;
  transition: transform .2s; line-height: 1;
}
.faqItem[open] summary::after { transform: rotate(45deg); }
.faqItem p { padding: 0 0 20px; font-size: 13.5px; color: var(--fg2); line-height: 1.7; }

/* ─────────── LEAD FORM ─────────── */
.leadSection { background: var(--bg); border-top: 1px solid var(--border); }
.leadCard {
  max-width: 640px; margin: 52px auto 0; background: var(--card); border: 1.5px solid var(--border);
  border-radius: 18px; padding: 40px; box-shadow: 0 2px 10px var(--shadow);
}
.leadForm { display: flex; flex-direction: column; gap: 14px; }
.leadRow { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.leadInput, .leadTextarea {
  width: 100%; font-family: 'Inter', sans-serif; font-size: 14px; color: var(--fg);
  border: 1.5px solid var(--border); border-radius: 10px; padding: 12px 14px; background: var(--bg);
  transition: border-color .2s;
}
.leadInput:focus, .leadTextarea:focus { outline: none; border-color: var(--brand); }
.leadTextarea { resize: vertical; font-family: 'Inter', sans-serif; }
.leadError { color: var(--red); font-size: 13px; }
.leadSent { text-align: center; padding: 20px 0; }
.leadSent p:first-child { font-family: 'DM Serif Display', serif; font-size: 22px; margin-bottom: 8px; }
.leadSent p:last-child { color: var(--fg2); font-size: 14px; }
.honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }

/* ─────────── FOOTER ─────────── */
.footer { border-top: 1px solid var(--border); padding: 36px 0; background: var(--card); }
.footInner { display: flex; justify-content: space-between; align-items: center; }
.footLogo { display: flex; align-items: center; gap: 10px; }
.footLogoImg { width: 28px; height: 28px; border-radius: 50%; object-fit: cover; transform: scale(1.5); }
.footWordmark { font-size: 15px; font-weight: 700; color: var(--fg); }
.footer p { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--fg3); letter-spacing: .04em; }
.footLinks { display: flex; gap: 22px; }
.footLinks a { font-size: 12px; color: var(--fg3); text-decoration: none; font-family: 'JetBrains Mono', monospace; transition: color .2s; }
.footLinks a:hover { color: var(--brand); }

/* ─────────── RESPONSIVE ─────────── */
@media (max-width: 1100px) {
  .container { padding: 0 36px; } .nav { padding: 0 36px; }
  .navLinks { display: none; }
  .modGrid { grid-template-columns: repeat(3, 1fr); }
  .diffGrid { grid-template-columns: repeat(2, 1fr); }
  .howGrid, .trustGrid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 780px) {
  .container { padding: 0 20px; } .nav { padding: 0 20px; }
  .sp { padding: 72px 0; } .hero { padding: 110px 0 72px; }
  .probGrid, .isoWrap, .portalInner, .rolesLayout { grid-template-columns: 1fr; gap: 36px; }
  .modGrid, .sectorGrid, .priceGrid { grid-template-columns: repeat(2, 1fr); }
  .diffGrid { grid-template-columns: 1fr; }
  .howGrid, .trustGrid { grid-template-columns: 1fr; }
  .statsGrid { grid-template-columns: repeat(2, 1fr); }
  .statItem { border-right: none; border-bottom: 1px solid var(--border); }
  .statItem:last-child { border-bottom: none; }
  .heroCtas { flex-direction: column; align-items: center; }
  .footInner { flex-direction: column; gap: 18px; text-align: center; }
  .ctaWrap { padding: 52px 28px; }
  .rolesSticky { position: static; }
  .leadRow { grid-template-columns: 1fr; }
  .leadCard { padding: 28px; }
}
@media (max-width: 520px) {
  .modGrid, .sectorGrid, .priceGrid { grid-template-columns: 1fr; }
}
