@import url("./assets/fonts.css");

/* ═══════════════════════════════════════════════════════════════════════════
   Sanctum landing site
   One dark theme. ETS brand: ink leads · neutrals carry · volt highlights.
   Poppins = display · Inter = UI/body · Space Mono = data, code, labels only.
   No JavaScript and no inline styles (the CSP forbids both). Every visual on
   the page, mockups included, is built here.
   ═══════════════════════════════════════════════════════════════════════════ */

:root {
  /* Surfaces: warm near-black, stepped for depth */
  --bg:       #0A0A09;
  --bg-2:     #10100E;
  --card:     #151513;
  --card-2:   #1B1B18;
  --line:     #262622;
  --line-2:   #34342F;

  /* Ink */
  --ink:      #F5F5F0;
  --ink-2:    #A6A69E;
  --ink-3:    #6F6F68;

  /* Brand: volt is a fill, always with black ink on top */
  --volt:     #FBFF00;
  --volt-ink: #0A0A09;
  --volt-a12: rgba(251, 255, 0, .12);
  --volt-a24: rgba(251, 255, 0, .24);

  /* Status */
  --bad:      #FF6B5B;
  --bad-a12:  rgba(255, 107, 91, .12);
  --warn:     #F0B34A;
  --warn-a12: rgba(240, 179, 74, .12);

  /* Form */
  --r-sm:     8px;
  --r:        12px;
  --r-lg:     18px;

  /* Rhythm */
  --gut:      clamp(20px, 5vw, 48px);
  --maxw:     1240px;
  --sect-y:   clamp(80px, 11vw, 144px);

  --mono:     'Space Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
  --display:  'Poppins', system-ui, sans-serif;
}

/* ── Reset ─────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
  background: var(--bg);
  color-scheme: dark;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg { max-width: 100%; display: block; }

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 0;
  text-wrap: balance;
}

p { margin: 0; text-wrap: pretty; }
ul { margin: 0; padding: 0; list-style: none; }
pre { margin: 0; }
a { color: inherit; text-decoration: none; }

code {
  font-family: var(--mono);
  font-size: .86em;
  background: var(--card-2);
  border: 1px solid var(--line);
  border-radius: 5px;
  padding: 1px 6px;
  color: var(--ink);
}

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

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--volt);
  color: var(--volt-ink);
  padding: 12px 20px;
  font-weight: 600;
}
.skip:focus { left: 0; }

.sr {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.mono { font-family: var(--mono); }

/* Keeps a hyphenated phrase on one line where there is room for it; on a phone
   it may break, since unbreakable text would push the page sideways. */
@media (min-width: 640px) { .keep { white-space: nowrap; } }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
}

/* ── Layout ────────────────────────────────────────────────────────────── */
.wrap {
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gut);
}

.section { padding-block: var(--sect-y); border-top: 1px solid var(--line); }
.section--alt { background: var(--bg-2); }

/* Grid children may shrink below their content width; without this a single
   long word or code sample widens the whole column past the viewport. */
.shead > *, .ba > *, .steps > *, .feat > *, .duo > *, .plans > *, .faq > *, .hero__grid > * { min-width: 0; }

/* Section header: heading left, lede right, aligned on the baseline. */
.shead {
  display: grid;
  gap: 20px 64px;
  align-items: end;
  margin-bottom: clamp(40px, 5vw, 64px);
}
@media (min-width: 960px) {
  .shead { grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr); }
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 18px;
}
/* The ETS volt square: sharp, never rounded. */
.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--volt);
  border-radius: 0;
  flex: none;
}
.eyebrow--flush { margin-bottom: 12px; }
.eyebrow--ink { color: rgba(10, 10, 9, .6); }
.eyebrow--ink::before { background: var(--volt-ink); }

.h2 { font-size: clamp(34px, 5.2vw, 64px); }

.lede {
  font-size: clamp(16px, 1.35vw, 18px);
  color: var(--ink-2);
  max-width: 54ch;
}

.fine {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .02em;
  color: var(--ink-3);
}

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
}

.tag {
  display: inline-block;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink-3);
  border: 1px solid var(--line-2);
  border-radius: 4px;
  padding: 1px 6px;
  margin-left: 6px;
  vertical-align: 2px;
  white-space: nowrap;
}

/* ── Icons ───────────────────────────────────────────────────────────────
   Lucide (lucide.dev, ISC). Inline <svg class="i"> in markup; CSS masks for
   list markers. Keep to this one family. */
.i {
  width: 1em;
  height: 1em;
  flex: none;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  vertical-align: -0.125em;
}
.i-check, .i-x {
  display: inline-block;
  width: 1em;
  height: 1em;
  flex: none;
  background-color: currentColor;
  -webkit-mask: var(--mask) center / contain no-repeat;
  mask: var(--mask) center / contain no-repeat;
}
.i-check { --mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E"); }
.i-x     { --mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M18 6 6 18'/%3E%3Cpath d='m6 6 12 12'/%3E%3C/svg%3E"); }

/* ── Buttons ───────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 46px;
  padding: 0 22px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  white-space: nowrap;
  border: 1px solid transparent;
  transition: background .15s, border-color .15s, color .15s, transform .15s;
}
.btn:active { transform: translateY(1px); }
.btn--sm { height: 36px; padding: 0 14px; font-size: 14px; border-radius: 8px; }
.btn--block { width: 100%; }

.btn--volt { background: var(--volt); color: var(--volt-ink); }
.btn--volt:hover { background: #E9ED00; }

.btn--ghost { border-color: var(--line-2); color: var(--ink); background: transparent; }
.btn--ghost:hover { border-color: var(--ink-3); background: var(--card); }

.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }
.btn-row--center { justify-content: center; }

/* ── Nav ───────────────────────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 9, .78);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav__inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 64px;
}
.wordmark {
  display: inline-flex;
  align-items: flex-start;
  gap: 5px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: .02em;
}
.wordmark__sq { width: 7px; height: 7px; background: var(--volt); border-radius: 0; margin-top: 2px; }
.nav__links { display: none; gap: 28px; margin-right: auto; font-size: 14px; color: var(--ink-2); }
.nav__links a:hover { color: var(--ink); }
.nav__cta { display: flex; gap: 8px; margin-left: auto; }
.nav__gh { display: none; }
@media (min-width: 900px) {
  .nav__links { display: flex; }
  .nav__cta { margin-left: 0; }
  .nav__gh { display: inline-flex; }
}

/* ── Hero ──────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  padding-block: clamp(56px, 8vw, 112px) clamp(64px, 9vw, 128px);
  overflow: hidden;
  background:
    radial-gradient(60% 55% at 78% 40%, rgba(251, 255, 0, .07), transparent 70%),
    var(--bg);
}
.hero__grid {
  display: grid;
  gap: clamp(48px, 6vw, 72px);
  align-items: center;
}
@media (min-width: 1040px) {
  .hero__grid { grid-template-columns: minmax(0, 1.18fr) minmax(0, .82fr); }
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 5px 12px 5px 5px;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  font-size: 13px;
  color: var(--ink-2);
  margin-bottom: 28px;
  transition: border-color .15s;
}
.pill:hover { border-color: var(--ink-3); color: var(--ink); }
.pill__tag {
  font-family: var(--mono);
  font-size: 11px;
  background: var(--volt);
  color: var(--volt-ink);
  border-radius: 999px;
  padding: 2px 9px;
}
.pill__arrow { color: var(--ink-3); display: inline-flex; }

.hero h1 {
  font-size: clamp(40px, 5.1vw, 70px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: .98;
}
.hero h1 em { font-style: normal; color: var(--volt); }

.hero__sub {
  font-size: clamp(17px, 1.5vw, 19px);
  color: var(--ink-2);
  max-width: 52ch;
  margin: 28px 0 36px;
}
.hero .fine { margin-top: 22px; }

.hero__visual { position: relative; }
.hero__glyph {
  position: absolute;
  width: 128%;
  max-width: none;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

/* ── Window chrome (shared by mockups) ─────────────────────────────────── */
.win {
  position: relative;
  background: var(--card);
  border: 1px solid var(--line-2);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 40px 80px -24px rgba(0, 0, 0, .7), 0 0 0 1px rgba(0, 0, 0, .4);
}
.win__bar {
  position: relative;
  display: flex;
  align-items: center;
  height: 40px;
  padding: 0 14px;
  background: var(--card-2);
  border-bottom: 1px solid var(--line);
}
.dots { display: flex; gap: 7px; }
.dots i { width: 11px; height: 11px; border-radius: 50%; background: #3A3A35; }
.win__title {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--mono);
  font-size: 11.5px;
  color: var(--ink-3);
  white-space: nowrap;
}
.win__body { padding: 22px; }

/* Manifest mockup */
.mf__head { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; }
.mf__name { font-family: var(--display); font-weight: 700; font-size: 19px; letter-spacing: -0.01em; }
.mf__meta { font-size: 11.5px; color: var(--ink-3); margin-top: 2px; }
.mf__label { font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-3); margin: 22px 0 10px; }
.mf__rows { border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; }
.mf__row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  font-size: 14px;
  border-top: 1px solid var(--line);
  background: var(--bg-2);
}
.mf__row:first-child { border-top: 0; }
.mf__cap { display: flex; flex-direction: column; line-height: 1.35; }
.mf__cap .mono { font-size: 11.5px; color: var(--ink-3); }
.mf__state { font-size: 12px; color: var(--ink-2); }
.mf__state--off { color: var(--bad); }
.mf__foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  font-size: 12px;
  color: var(--ink-3);
}
.mf__run {
  background: var(--volt);
  color: var(--volt-ink);
  font-weight: 600;
  font-size: 13px;
  border-radius: 8px;
  padding: 8px 14px;
  white-space: nowrap;
}

.badge {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .06em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 3px 9px;
  white-space: nowrap;
}
.badge--ok { background: var(--volt-a12); color: var(--volt); border: 1px solid var(--volt-a24); }

/* Toggle: purely visual */
.tgl {
  position: relative;
  width: 34px;
  height: 20px;
  border-radius: 999px;
  background: #2C2C28;
  border: 1px solid var(--line-2);
  flex: none;
}
.tgl::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--ink-3);
}
.tgl--on { background: var(--volt); border-color: var(--volt); }
.tgl--on::after { left: 16px; background: var(--volt-ink); }

/* ── Proof strip ───────────────────────────────────────────────────────── */
.strip { border-top: 1px solid var(--line); background: var(--bg-2); }
.strip__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 32px;
  padding-block: 22px;
}
.strip__label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-3);
  padding-right: 32px;
  border-right: 1px solid var(--line);
}
.strip ul { display: flex; flex-wrap: wrap; gap: 10px 28px; font-size: 14px; color: var(--ink-2); }
.strip li { display: flex; align-items: center; gap: 10px; }
.strip li::before { content: ""; width: 5px; height: 5px; background: var(--volt); }
@media (max-width: 720px) { .strip__label { border-right: 0; padding-right: 0; width: 100%; } }

/* ── Before / after ────────────────────────────────────────────────────── */
.ba { display: grid; gap: 20px; align-items: center; }
@media (min-width: 960px) { .ba { grid-template-columns: 1fr auto 1fr; } }

.ba__card { padding: clamp(22px, 3vw, 32px); }
.ba__card--good { border-color: var(--volt-a24); }
.ba__note { color: var(--ink-2); font-size: 15px; margin-top: 20px; }

.ba__arrow {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-inline: auto;
  border-radius: 50%;
  background: var(--volt);
  color: var(--volt-ink);
  font-size: 22px;
}
@media (max-width: 959px) { .ba__arrow { transform: rotate(90deg); } }

.log { border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; background: var(--bg-2); }
.log__bar {
  font-size: 11.5px;
  color: var(--ink-3);
  padding: 10px 14px;
  border-bottom: 1px solid var(--line);
  background: var(--card-2);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.log li, .apdu li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  font-size: 13.5px;
  border-top: 1px solid var(--line);
  color: var(--ink-2);
  min-width: 0;
}
.log li:first-child, .apdu li:first-child { border-top: 0; }
.tgt { min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.log li .mono, .apdu li .mono { font-size: 11px; color: var(--ink-3); width: 44px; flex: none; }

.st {
  margin-left: auto;
  font-family: var(--mono);
  font-weight: 400;
  font-size: 10.5px;
  letter-spacing: .04em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 2px 8px;
  white-space: nowrap;
}
.st--ok   { color: var(--volt); background: var(--volt-a12); }
.st--bad  { color: var(--bad);  background: var(--bad-a12); }
.st--warn { color: var(--warn); background: var(--warn-a12); }

/* ── Steps ─────────────────────────────────────────────────────────────── */
.steps { display: grid; gap: 16px; }
@media (min-width: 720px)  { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .steps { grid-template-columns: repeat(4, 1fr); } }

.step { display: flex; flex-direction: column; overflow: hidden; }
.step__text { padding: 26px 24px 24px; flex: 1; }
.step h3 { font-size: 21px; margin-bottom: 10px; }
.step__text > p:last-child { color: var(--ink-2); font-size: 14.5px; }
.step__vis {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  min-height: 132px;
  padding: 20px;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 1px 1px, rgba(255, 255, 255, .05) 1px, transparent 0) 0 0 / 14px 14px,
    var(--bg-2);
}

.vis-file {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--card-2);
  border: 1px solid var(--line-2);
  border-radius: var(--r-sm);
  padding: 10px 12px;
  font-size: 12px;
}
.vis-file__icon {
  width: 18px;
  height: 22px;
  border: 1.5px solid var(--ink-2);
  border-radius: 3px;
  flex: none;
}
.vis-hash { font-size: 11.5px; color: var(--volt); }

.vis-code {
  font-family: var(--mono);
  font-size: 11.5px;
  line-height: 1.7;
  color: var(--ink-3);
  white-space: pre;
  overflow: hidden;
}
.vis-code mark { background: var(--volt-a12); color: var(--volt); border-radius: 3px; padding: 0 2px; }

.vis-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  background: var(--card-2);
  border: 1px solid var(--line-2);
  border-radius: var(--r-sm);
  padding: 8px 10px 8px 12px;
  font-size: 13px;
}

.vis-origin {
  font-size: 12px;
  color: var(--ink);
  background: var(--card-2);
  border: 1px solid var(--volt-a24);
  border-radius: 999px;
  padding: 6px 12px;
  align-self: flex-start;
}
.vis-csp { font-size: 11px; color: var(--ink-3); }

/* ── Feature cards (security layers) ───────────────────────────────────── */
.feat { display: grid; gap: 16px; }
@media (min-width: 760px)  { .feat { grid-template-columns: repeat(6, 1fr); } .feat__card { grid-column: span 3; } }
@media (min-width: 1100px) { .feat__card { grid-column: span 2; } .feat__card--wide { grid-column: span 3; } }

.feat__card { display: flex; flex-direction: column; overflow: hidden; }
.feat__vis {
  display: flex;
  align-items: center;
  min-height: 150px;
  padding: 24px;
  border-bottom: 1px solid var(--line);
  background: var(--bg-2);
}
.feat__text { padding: 24px; }
.feat__n { font-size: 11.5px; color: var(--volt); margin-bottom: 8px; }
.feat h3 { font-size: 20px; margin-bottom: 10px; }
.feat__text > p:last-child { color: var(--ink-2); font-size: 14.5px; }

.vis-policy {
  font-family: var(--mono);
  font-size: 12px;
  line-height: 1.9;
  color: var(--ink-2);
  white-space: pre;
  overflow: hidden;
}
.vis-policy b { font-weight: 400; }
.vis-policy .ok  { color: var(--volt); }
.vis-policy .bad { color: var(--bad); }
.vis-policy .i-check, .vis-policy .i-x { vertical-align: -0.1em; }
.vis-policy .dim { color: var(--ink-3); }

.iso { display: flex; align-items: stretch; gap: 14px; width: 100%; }
.iso__box {
  flex: 1;
  min-width: 0;
  border: 1px solid var(--line-2);
  border-radius: var(--r);
  background: var(--card-2);
  padding: 14px;
}
.iso__box .mono { font-size: 11px; color: var(--ink); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.iso__box span { display: block; font-size: 12px; color: var(--ink-3); margin-top: 6px; }
.iso__wall { width: 3px; background: var(--volt); border-radius: 0; flex: none; }

/* ── Smart cards (two-up) ──────────────────────────────────────────────── */
.duo { display: grid; gap: 16px; }
@media (min-width: 900px) { .duo { grid-template-columns: 1fr 1fr; } }
.duo__card { overflow: hidden; }
.duo__vis {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 210px;
  padding: 28px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 1px 1px, rgba(255, 255, 255, .05) 1px, transparent 0) 0 0 / 14px 14px,
    var(--bg-2);
}
.duo__text { padding: 26px; }
.duo h3 { font-size: 21px; margin-bottom: 8px; }
.duo__text p { color: var(--ink-2); font-size: 15px; }

.prompt {
  width: min(100%, 380px);
  background: var(--card-2);
  border: 1px solid var(--line-2);
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 24px 48px -20px rgba(0, 0, 0, .7);
}
.prompt__title { font-weight: 600; font-size: 14.5px; margin-bottom: 14px; }
.prompt__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  padding: 10px 12px;
  font-size: 13.5px;
  background: var(--bg-2);
}
.prompt__row > span:first-child { display: flex; flex-direction: column; line-height: 1.35; }
.prompt__row .mono { font-size: 11px; color: var(--ink-3); }
.prompt__note { font-size: 11px; color: var(--ink-3); margin-top: 12px; }

.apdu {
  width: min(100%, 420px);
  border: 1px solid var(--line-2);
  border-radius: var(--r);
  background: var(--card-2);
  overflow: hidden;
}
.apdu li .mono { width: 54px; }

/* ── Volt band ─────────────────────────────────────────────────────────── */
.section--band-wrap { padding-block: clamp(40px, 6vw, 72px); }
.band {
  display: grid;
  gap: 40px;
  align-items: center;
  background: var(--volt);
  color: var(--volt-ink);
  border-radius: 22px;
  padding: clamp(32px, 5vw, 64px);
}
@media (min-width: 900px) { .band { grid-template-columns: 1.3fr 1fr; } }
.band .h2 { font-size: clamp(34px, 5vw, 60px); letter-spacing: -0.04em; }
.band__list { display: grid; gap: 12px; margin-top: 28px; font-size: 16px; font-weight: 500; }
.band__list li { display: flex; align-items: center; gap: 12px; }
.band__list li::before {
  content: "";
  width: 20px;
  height: 20px;
  flex: none;
  border-radius: 5px;
  background: var(--volt-ink) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FBFF00' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center / 12px no-repeat;
}

.denied {
  background: var(--volt-ink);
  color: var(--ink);
  border-radius: 16px;
  padding: 28px;
  text-align: center;
  box-shadow: 0 30px 60px -24px rgba(0, 0, 0, .45);
}
.denied__label { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-3); }
.denied__big {
  font-family: var(--mono);
  font-size: clamp(56px, 7vw, 84px);
  line-height: 1.2;
  color: var(--volt);
  margin: 10px 0 6px;
}
.denied__note { color: var(--ink-2); font-size: 14px; }

/* ── Comparison table ──────────────────────────────────────────────────── */
.table-scroll {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--card);
}
.cmp { width: 100%; min-width: 720px; border-collapse: collapse; font-size: 14.5px; }
.cmp th, .cmp td { padding: 15px 20px; border-top: 1px solid var(--line); text-align: center; }
.cmp thead th {
  border-top: 0;
  font-family: var(--display);
  font-weight: 600;
  font-size: 15px;
  padding-block: 20px;
  color: var(--ink-2);
}
.cmp tbody th { text-align: left; font-weight: 500; color: var(--ink); }
.cmp td { color: var(--ink-2); }
.cmp .cmp__us { background: var(--volt-a12); color: var(--ink); font-weight: 600; }
.cmp thead .cmp__us { color: var(--volt); }
.cmp .x, .cmp .y { display: inline-flex; align-items: center; gap: 7px; }
.cmp .x::before { content: ""; width: 12px; height: 12px; background-color: var(--ink-3); -webkit-mask: var(--mask) center / contain no-repeat; mask: var(--mask) center / contain no-repeat; --mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M18 6 6 18'/%3E%3Cpath d='m6 6 12 12'/%3E%3C/svg%3E"); }
.cmp .y::before { content: ""; width: 14px; height: 14px; background-color: var(--volt); -webkit-mask: var(--mask) center / contain no-repeat; mask: var(--mask) center / contain no-repeat; --mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E"); }
.cmp .x { color: var(--ink-3); }

/* ── Pricing ───────────────────────────────────────────────────────────── */
.plans { display: grid; gap: 16px; }
@media (min-width: 900px) { .plans { grid-template-columns: 1fr 1fr; } }
.plan { position: relative; display: flex; flex-direction: column; padding: clamp(26px, 3.2vw, 38px); }
.plan--feature { border-color: var(--volt); box-shadow: 0 0 0 1px var(--volt) inset; }
.plan__badge {
  position: absolute;
  top: -11px;
  left: 28px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .1em;
  text-transform: uppercase;
  background: var(--volt);
  color: var(--volt-ink);
  border-radius: 5px;
  padding: 3px 9px;
}
.plan__name { font-weight: 600; color: var(--ink-2); font-size: 15px; }
.plan__price {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(38px, 4vw, 48px);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin: 6px 0 10px;
}
.plan__price span { font-family: 'Inter', sans-serif; font-weight: 400; font-size: 15px; letter-spacing: 0; color: var(--ink-3); margin-left: 8px; }
.plan__note { color: var(--ink-2); font-size: 15px; padding-bottom: 24px; border-bottom: 1px solid var(--line); }
.plan__list { display: grid; gap: 11px; margin: 24px 0 32px; font-size: 14.5px; color: var(--ink-2); flex: 1; }
.plan__list li { position: relative; padding-left: 26px; }
.plan__list li::before { content: ""; position: absolute; left: 0; top: 0.3em; width: 14px; height: 14px; background-color: var(--volt); -webkit-mask: var(--mask) center / contain no-repeat; mask: var(--mask) center / contain no-repeat; --mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E"); }
.plan__foot { font-family: var(--mono); font-size: 11.5px; color: var(--ink-3); margin-top: 14px; text-align: center; }

/* ── FAQ ───────────────────────────────────────────────────────────────── */
.faq { display: grid; gap: 40px 64px; }
@media (min-width: 960px) { .faq { grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); align-items: start; } }
.faq__head { position: sticky; top: 104px; }
@media (max-width: 959px) { .faq__head { position: static; } }

.faq__list { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 22px 0;
  cursor: pointer;
  list-style: none;
  font-weight: 500;
  font-size: 16.5px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  flex: none;
  border: 1px solid var(--line-2);
  border-radius: 6px;
  color: var(--ink-2);
  font-family: var(--mono);
  font-size: 14px;
  transition: transform .2s, background .2s, color .2s;
}
.faq details[open] summary::after { content: "−"; background: var(--volt); border-color: var(--volt); color: var(--volt-ink); }
.faq summary:hover { color: #fff; }
.faq details p { color: var(--ink-2); padding: 0 48px 24px 0; max-width: 68ch; }

/* ── Closing CTA ───────────────────────────────────────────────────────── */
.cta {
  text-align: center;
  background:
    radial-gradient(50% 60% at 50% 100%, rgba(251, 255, 0, .08), transparent 70%),
    var(--bg);
}
.cta__inner { display: flex; flex-direction: column; align-items: center; }
.cta__h { font-size: clamp(40px, 6.6vw, 88px); font-weight: 800; letter-spacing: -0.045em; line-height: 1; max-width: 16ch; }
.cta .lede { margin: 24px auto 36px; }
.cta .fine { margin-top: 22px; }

/* ── Footer ────────────────────────────────────────────────────────────── */
.foot { border-top: 1px solid var(--line); background: var(--bg-2); padding-block: 64px 32px; font-size: 14px; }
.foot__grid { display: grid; gap: 40px; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 900px) { .foot__grid { grid-template-columns: 1.6fr repeat(4, 1fr); } }
.foot__brand { grid-column: 1 / -1; }
@media (min-width: 900px) { .foot__brand { grid-column: auto; } }
.foot__blurb { color: var(--ink-3); margin-top: 14px; max-width: 30ch; }
.foot h4 {
  font-family: var(--mono);
  font-weight: 400;
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 16px;
}
.foot ul { display: grid; gap: 10px; }
.foot ul a { color: var(--ink-2); }
.foot ul a:hover { color: var(--ink); }
.foot__bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--ink-3);
  font-size: 12.5px;
}
.foot__bar-sp { margin-left: auto; font-family: var(--mono); font-size: 11.5px; }
/* ETS tile: always sharp. */
.ets {
  font-family: var(--display);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: .04em;
  background: var(--ink);
  color: var(--bg);
  padding: 4px 7px;
  border-radius: 0;
}
