@font-face {
  font-family: "Bricolage";
  src: url("../fonts/Bricolage.ttf") format("truetype");
  font-weight: 200 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Schibsted";
  src: url("../fonts/Schibsted.ttf") format("truetype");
  font-weight: 400 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #F1F1EB;
  --surface: #FBFBF6;
  --ink: #0C0C08;
  --ink-2: #2A2A23;
  --text: #4A4A40;
  --muted: #7C7C70;
  --line: #0C0C08;
  --line-soft: #D6D6CB;
  --accent: #1F2DE6;
  --accent-2: #1620B8;
  --accent-soft: #E2E4FB;
  --lime: #D2F23E;
  --lime-ink: #3A450A;
  --red: #D6261A;
  --green: #1E7A3A;
  --gold: #9A7A12;
  --display: "Bricolage", "Arial Narrow", sans-serif;
  --sans: "Schibsted", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --mono: "SFMono-Regular", ui-monospace, "JetBrains Mono", Menlo, Consolas, monospace;
  --edge: 2px;
  --container: 1280px;
  --ease: cubic-bezier(.2, .7, .2, 1);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  font-size: 17px;
  letter-spacing: -.002em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--display);
  color: var(--ink);
  font-weight: 720;
  line-height: .96;
  letter-spacing: -.035em;
  margin: 0;
  font-optical-sizing: auto;
}

p { margin: 0; }
a {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: var(--accent);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
  transition: color .18s var(--ease);
}
a:hover { color: var(--accent); }
img, svg { display: block; max-width: 100%; }

.wrap { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 36px; }

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

.label {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-2);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.label::before { content: ""; width: 22px; height: 2px; background: var(--accent); display: inline-block; }
.label--center { justify-content: center; }
.label--lime::before { background: var(--lime-ink); }

.section { padding: 112px 0; border-top: 1px solid var(--line); position: relative; }
.section--surface { background: var(--surface); }
.section--ink { background: var(--ink); color: #A6A69A; border-top-color: var(--ink); }
.section--ink h1, .section--ink h2, .section--ink h3 { color: var(--bg); }

.shead { max-width: 760px; }
.shead--center { margin-inline: auto; text-align: center; }
.shead .label { margin-bottom: 22px; }
.shead h2 {
  font-size: clamp(38px, 5vw, 64px);
  font-variation-settings: "opsz" 96, "wdth" 96;
}
.shead h2 em { font-style: normal; color: var(--accent); }
.shead h2 mark { background: var(--lime); color: var(--ink); padding: 0 .08em; }
.shead p { margin-top: 22px; font-size: 19px; max-width: 620px; color: var(--text); }
.shead--center p { margin-inline: auto; }
.section--ink .shead p { color: #9C9C8E; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -.003em;
  padding: 13px 20px;
  border-radius: 2px;
  border: 1.5px solid var(--ink);
  cursor: pointer;
  text-decoration: none;
  background: var(--ink);
  color: var(--bg);
  transition: transform .16s var(--ease), box-shadow .16s var(--ease), background .16s var(--ease), color .16s var(--ease);
  white-space: nowrap;
  line-height: 1;
}
.btn svg { width: 17px; height: 17px; }
.btn:hover { transform: translate(-3px, -3px); box-shadow: 5px 5px 0 var(--accent); color: var(--bg); }
.btn--accent { background: var(--accent); border-color: var(--accent); color: #fff; }
.btn--accent:hover { box-shadow: 5px 5px 0 var(--ink); color: #fff; }
.btn--ghost { background: transparent; color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--bg); }
.btn--lime { background: var(--lime); border-color: var(--ink); color: var(--ink); }
.btn--lime:hover { box-shadow: 5px 5px 0 var(--accent); color: var(--ink); }
.btn--lg { padding: 16px 26px; font-size: 16px; }
.btn--block { width: 100%; }

.topbar { background: var(--ink); color: #C9C9BC; }
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 10px 36px;
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: .02em;
  flex-wrap: wrap;
  text-align: center;
}
.topbar .tag { background: var(--lime); color: var(--ink); font-weight: 700; padding: 2px 7px; border-radius: 2px; letter-spacing: .08em; }
.topbar a { color: #fff; text-decoration-color: var(--accent); }
.topbar a:hover { color: var(--lime); }

.header {
  position: sticky;
  top: 0;
  z-index: 70;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 28px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  font-family: var(--display);
  font-weight: 760;
  font-size: 25px;
  letter-spacing: -.05em;
  color: var(--ink);
  font-variation-settings: "wdth" 92;
}
.brand:hover { color: var(--ink); }
.brand-mark {
  width: 32px;
  height: 32px;
  background: var(--accent);
  display: grid;
  place-items: center;
  color: #fff;
  flex-shrink: 0;
  border: 1.5px solid var(--ink);
}
.brand-mark svg { width: 17px; height: 17px; }
.brand .dot { color: var(--accent); }

.nav { display: flex; align-items: center; gap: 2px; }
.nav a {
  text-decoration: none;
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: lowercase;
  color: var(--ink-2);
  padding: 9px 13px;
  border-radius: 2px;
}
.nav a:hover { color: var(--accent); background: var(--accent-soft); }
.header-cta { display: flex; align-items: center; gap: 10px; }
.header-cta .btn { padding: 11px 16px; font-size: 14px; }
.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1.5px solid var(--ink);
  background: var(--bg);
  border-radius: 2px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.nav-toggle svg { width: 20px; height: 20px; color: var(--ink); }

.hero { padding: 72px 0 40px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 56px;
  align-items: center;
}
.hero h1 {
  font-size: clamp(48px, 7.4vw, 104px);
  font-weight: 740;
  letter-spacing: -.055em;
  line-height: .9;
  font-variation-settings: "opsz" 144, "wdth" 88;
  margin-top: 26px;
}
.hero h1 .lime { background: var(--lime); padding: 0 .08em; color: var(--ink); }
.hero h1 .acc { color: var(--accent); }
.hero-lead { margin-top: 28px; font-size: 20px; max-width: 540px; color: var(--text); }
.hero-actions { margin-top: 34px; display: flex; gap: 12px; flex-wrap: wrap; }
.hero-meta { margin-top: 30px; display: flex; align-items: center; gap: 22px; flex-wrap: wrap; font-family: var(--mono); font-size: 12.5px; letter-spacing: .02em; color: var(--muted); }
.hero-meta .item { display: inline-flex; align-items: center; gap: 7px; }
.hero-meta svg { width: 15px; height: 15px; color: var(--accent); }
.stars { display: inline-flex; gap: 1px; color: var(--gold); }
.stars svg { width: 15px; height: 15px; color: var(--gold); }

.panel {
  border: 1.5px solid var(--ink);
  background: var(--surface);
  position: relative;
}
.panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 16px;
  border-bottom: 1.5px solid var(--ink);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--ink-2);
}
.panel-head .right { display: flex; gap: 5px; }
.panel-head .right i { width: 11px; height: 11px; border: 1.5px solid var(--ink); display: inline-block; }
.panel-body { padding: 22px; }

.spec { position: relative; }
.spec-stat { display: flex; align-items: flex-end; justify-content: space-between; gap: 18px; }
.spec-stat .big {
  font-family: var(--display);
  font-weight: 740;
  font-size: 60px;
  color: var(--ink);
  line-height: .85;
  letter-spacing: -.05em;
  font-variation-settings: "opsz" 144, "wdth" 86;
}
.spec-stat .big .a { color: var(--accent); }
.spec-stat .lbl { font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); margin-bottom: 6px; }
.bars { margin-top: 20px; display: grid; gap: 11px; }
.bar { display: grid; grid-template-columns: 92px 1fr 46px; gap: 12px; align-items: center; font-family: var(--mono); font-size: 12px; color: var(--ink-2); }
.bar .track { height: 12px; background: var(--bg); border: 1.5px solid var(--ink); position: relative; overflow: hidden; }
.bar .track i { position: absolute; inset: 0 auto 0 0; background: var(--accent); display: block; }
.bar .track i.lime { background: var(--lime); }
.bar .v { text-align: right; font-weight: 700; color: var(--ink); }
.spec-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 2px;
  border-bottom: 1px dashed var(--line-soft);
  font-size: 14px;
}
.spec-row:last-child { border-bottom: 0; }
.spec-row .k { color: var(--ink); font-weight: 500; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.spec-row .v { font-family: var(--mono); font-weight: 700; color: var(--accent); }
.spec-row.hi { background: var(--lime); margin: 0 -22px; padding: 12px 22px; border-bottom: 0; }

.spec-tag {
  position: absolute;
  top: -16px;
  right: -14px;
  background: var(--accent);
  color: #fff;
  border: 1.5px solid var(--ink);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  padding: 7px 12px;
  text-transform: uppercase;
  transform: rotate(3deg);
  z-index: 3;
  box-shadow: 4px 4px 0 var(--ink);
}
.spec-float {
  position: absolute;
  left: -28px;
  bottom: -22px;
  background: var(--surface);
  border: 1.5px solid var(--ink);
  padding: 12px 14px;
  font-family: var(--mono);
  font-size: 12px;
  z-index: 3;
  box-shadow: 5px 5px 0 var(--lime);
  display: grid;
  gap: 4px;
}
.spec-float .t { color: var(--muted); text-transform: uppercase; letter-spacing: .08em; font-size: 10.5px; }
.spec-float .n { font-family: var(--display); font-weight: 740; font-size: 22px; color: var(--ink); letter-spacing: -.04em; }
.spec-float .n .up { color: var(--green); }

.ticker {
  margin-top: 72px;
  border-top: 1.5px solid var(--ink);
  border-bottom: 1.5px solid var(--ink);
  background: var(--ink);
  color: var(--bg);
  overflow: hidden;
  position: relative;
}
.ticker-label {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 0 20px;
  background: var(--lime);
  color: var(--ink);
  font-family: var(--mono);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  border-right: 1.5px solid var(--ink);
}
.ticker-label .pulse { width: 8px; height: 8px; background: var(--red); border-radius: 50%; }
.marquee { display: flex; padding-left: 196px; width: max-content; }
.marquee-track { display: flex; align-items: center; animation: marquee 36s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.mq-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  font-family: var(--mono);
  font-size: 13px;
  color: #C9C9BC;
  white-space: nowrap;
}
.mq-item .term { color: #fff; font-weight: 600; }
.mq-item .pos { color: var(--lime); font-weight: 700; }
.mq-item .sep { color: #3A3A30; }
@keyframes marquee { to { transform: translateX(-50%); } }

.clients {
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 36px;
  flex-wrap: wrap;
}
.clients .lbl { font-family: var(--mono); font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.clients .names { display: flex; align-items: center; gap: 0; flex-wrap: wrap; }
.client {
  font-family: var(--display);
  font-weight: 620;
  font-size: 19px;
  letter-spacing: -.03em;
  color: var(--ink-2);
  padding: 0 22px;
  border-right: 1px solid var(--line-soft);
  display: inline-flex;
  align-items: center;
  gap: 9px;
}
.client:last-child { border-right: 0; }
.client svg { width: 19px; height: 19px; color: var(--accent); }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
.split .lead {
  font-family: var(--display);
  font-weight: 540;
  font-size: clamp(26px, 2.8vw, 38px);
  line-height: 1.12;
  letter-spacing: -.03em;
  color: var(--ink);
}
.split .lead span { background: var(--lime); padding: 0 .08em; }
.split p { margin-top: 22px; font-size: 17.5px; }
.grip { list-style: none; padding: 0; margin: 30px 0 0; }
.grip li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  padding: 22px 0;
  border-top: 1px solid var(--line-soft);
  align-items: start;
}
.grip li:last-child { border-bottom: 1px solid var(--line-soft); }
.grip .n { font-family: var(--mono); font-size: 13px; font-weight: 700; color: var(--accent); padding-top: 2px; }
.grip b { font-family: var(--display); font-weight: 660; color: var(--ink); font-size: 18px; display: block; margin-bottom: 4px; letter-spacing: -.02em; }
.grip span { font-size: 15.5px; color: var(--text); }

.feat-index { border-top: 1.5px solid var(--ink); }
.feat-row {
  display: grid;
  grid-template-columns: 70px 1.1fr 1fr 160px;
  gap: 32px;
  padding: 30px 12px;
  border-bottom: 1px solid var(--line-soft);
  align-items: center;
  position: relative;
  transition: background .2s var(--ease), padding .2s var(--ease);
}
.feat-row:hover { background: var(--surface); padding-left: 24px; padding-right: 24px; }
.feat-row::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  background: var(--lime);
  transition: width .25s var(--ease);
  z-index: 0;
}
.feat-row:hover::before { width: 6px; }
.feat-row > * { position: relative; z-index: 1; }
.feat-num { font-family: var(--mono); font-size: 13px; font-weight: 700; color: var(--muted); }
.feat-ico { width: 40px; height: 40px; border: 1.5px solid var(--ink); display: grid; place-items: center; color: var(--ink); margin-bottom: 14px; }
.feat-ico svg { width: 20px; height: 20px; }
.feat-row h3 { font-size: 24px; font-weight: 680; letter-spacing: -.03em; font-variation-settings: "wdth" 98; }
.feat-row p { margin-top: 6px; font-size: 15.5px; color: var(--text); }
.feat-meta { font-family: var(--mono); font-size: 12px; color: var(--muted); text-align: right; line-height: 1.5; }
.feat-meta b { display: block; color: var(--accent); font-size: 20px; font-family: var(--display); font-weight: 700; }

.tour { display: grid; grid-template-columns: 1fr; gap: 36px; }
.tour-tabs { display: flex; gap: 0; border-bottom: 1.5px solid var(--ink); flex-wrap: wrap; }
.tour-tab {
  text-align: left;
  background: none;
  border: 0;
  border-bottom: 3px solid transparent;
  margin-bottom: -1.5px;
  cursor: pointer;
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 16px 22px;
  color: var(--muted);
  transition: color .2s var(--ease), border-color .2s var(--ease);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.tour-tab .n { color: var(--accent); }
.tour-tab:hover { color: var(--ink); }
.tour-tab.active { color: var(--ink); border-bottom-color: var(--accent); }

.tour-panel { display: none; grid-template-columns: 1fr; gap: 30px; }
.tour-panel.active { display: grid; }
@media (min-width: 880px) { .tour-panel.active { grid-template-columns: 1.2fr 1fr; align-items: start; } }
.tour-art .panel-head .ttl { display: flex; align-items: center; gap: 8px; }
.tour-art .panel-head .ttl::before { content: ""; width: 9px; height: 9px; background: var(--accent); }
.tour-cap h3 { font-size: 30px; font-weight: 700; letter-spacing: -.03em; }
.tour-cap p { margin-top: 14px; font-size: 17px; color: var(--text); }
.tour-cap .minilist { margin-top: 20px; list-style: none; padding: 0; display: grid; gap: 10px; font-size: 15px; }
.tour-cap .minilist li { display: flex; gap: 10px; align-items: flex-start; color: var(--ink-2); }
.tour-cap .minilist li svg { width: 16px; height: 16px; color: var(--accent); flex-shrink: 0; margin-top: 3px; }

.checkline { display: grid; grid-template-columns: 22px 1fr 48px; gap: 12px; align-items: center; padding: 13px 0; border-bottom: 1px solid var(--line-soft); font-size: 14px; }
.checkline:last-child { border-bottom: 0; }
.checkline .mk { width: 20px; height: 20px; border: 1.5px solid var(--ink); display: grid; place-items: center; }
.checkline .mk svg { width: 12px; height: 12px; }
.checkline .mk.ok { background: var(--accent); border-color: var(--accent); color: #fff; }
.checkline .mk.warn { background: var(--lime); color: var(--ink); }
.checkline .tx { color: var(--ink-2); }
.checkline .tx small { display: block; color: var(--muted); font-size: 12.5px; }
.checkline .pc { font-family: var(--mono); font-weight: 700; color: var(--ink); text-align: right; }

.codeblock { font-family: var(--mono); font-size: 12.5px; line-height: 1.85; color: var(--ink-2); white-space: pre; overflow-x: auto; }
.codeblock .k { color: var(--accent); }
.codeblock .s { color: var(--red); }
.codeblock .c { color: var(--muted); }

.smmap { display: grid; gap: 8px; font-family: var(--mono); font-size: 13px; }
.smmap .node { display: flex; align-items: center; gap: 10px; padding: 9px 12px; border: 1px solid var(--line-soft); background: var(--bg); }
.smmap .node.sub { margin-left: 24px; background: transparent; border-style: dashed; }
.smmap .node .u { color: var(--ink); flex: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.smmap .node .c { color: var(--muted); font-size: 11.5px; }

.redir { width: 100%; border-collapse: collapse; font-family: var(--mono); font-size: 12.5px; }
.redir th, .redir td { text-align: left; padding: 10px 8px; border-bottom: 1px solid var(--line-soft); }
.redir th { font-size: 10.5px; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); font-weight: 700; }
.redir td { color: var(--ink); }
.redir .tag { background: var(--accent); color: #fff; padding: 2px 7px; font-weight: 700; letter-spacing: .04em; }

.steps { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1.5px solid var(--ink); border-left: 1.5px solid var(--ink); }
.step {
  padding: 34px 30px;
  border-right: 1.5px solid var(--ink);
  border-bottom: 1.5px solid var(--ink);
  background: var(--surface);
  position: relative;
  transition: background .25s var(--ease);
}
.step:hover { background: var(--bg); }
.step:hover .step-num { color: var(--accent); }
.step-num {
  font-family: var(--display);
  font-weight: 720;
  font-size: 64px;
  line-height: .8;
  letter-spacing: -.05em;
  color: var(--ink);
  font-variation-settings: "opsz" 144, "wdth" 84;
  transition: color .25s var(--ease);
}
.step .kicker { font-family: var(--mono); font-size: 11.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-top: 18px; }
.step h3 { font-size: 22px; margin-top: 8px; font-weight: 680; letter-spacing: -.025em; }
.step p { margin-top: 12px; font-size: 15px; color: var(--text); }

.statband { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1.5px solid #2A2A23; border-left: 1.5px solid #2A2A23; }
.statcell { padding: 32px 30px; border-right: 1.5px solid #2A2A23; border-bottom: 1.5px solid #2A2A23; }
.statcell .big {
  font-family: var(--display);
  font-weight: 740;
  font-size: clamp(44px, 5vw, 68px);
  color: var(--bg);
  line-height: .85;
  letter-spacing: -.05em;
  font-variation-settings: "opsz" 144, "wdth" 86;
}
.statcell .big .u { color: var(--lime); }
.statcell .cap { margin-top: 14px; color: #9C9C8E; font-size: 14.5px; line-height: 1.5; }

.quote-block { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center; }
@media (min-width: 900px) { .quote-block { grid-template-columns: 1.4fr 1fr; } }
.quote-block .pull {
  font-family: var(--display);
  font-weight: 540;
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.14;
  letter-spacing: -.03em;
  color: var(--bg);
}
.quote-block .pull .op { color: var(--lime); }
.quote-block .who { font-family: var(--mono); font-size: 13px; color: #9C9C8E; margin-top: 26px; letter-spacing: .03em; }
.quote-block .who b { color: var(--bg); display: block; font-size: 15px; }
.qcard { border: 1.5px solid #2A2A23; padding: 30px; }
.qcard .qrow { display: flex; justify-content: space-between; gap: 16px; padding: 14px 0; border-bottom: 1px solid #2A2A23; font-family: var(--mono); font-size: 13px; color: #9C9C8E; }
.qcard .qrow:last-child { border-bottom: 0; }
.qcard .qrow b { font-family: var(--display); font-weight: 700; color: var(--lime); font-size: 22px; letter-spacing: -.03em; }

.pricewrap { border: 1.5px solid var(--ink); background: var(--surface); }
.pricetop { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 20px 28px; border-bottom: 1.5px solid var(--ink); flex-wrap: wrap; }
.pricetop .t { font-family: var(--mono); font-size: 13px; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); }
.billing { display: inline-flex; border: 1.5px solid var(--ink); }
.billing button {
  font-family: var(--mono);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  border: 0;
  background: var(--surface);
  color: var(--ink-2);
  cursor: pointer;
  padding: 10px 16px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: background .18s var(--ease), color .18s var(--ease);
}
.billing button.active { background: var(--ink); color: var(--lime); }
.billing .save { color: var(--accent); }
.billing button.active .save { color: var(--lime); }

.plans { display: grid; grid-template-columns: repeat(3, 1fr); }
.plan { padding: 32px 30px; border-right: 1.5px solid var(--ink); position: relative; display: flex; flex-direction: column; }
.plan:last-child { border-right: 0; }
.plan--feat { background: var(--ink); color: #B6B6A8; }
.plan--feat .plan-name, .plan--feat .plan-price, .plan--feat li { color: var(--bg); }
.plan--feat .plan-desc { color: #9C9C8E; }
.plan-flag { position: absolute; top: -1.5px; right: -1.5px; background: var(--lime); color: var(--ink); font-family: var(--mono); font-size: 10.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: 6px 12px; border: 1.5px solid var(--ink); }
.plan-name { font-family: var(--mono); font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-2); }
.plan-price { font-family: var(--display); font-weight: 740; font-size: 54px; color: var(--ink); letter-spacing: -.05em; margin-top: 16px; line-height: .9; font-variation-settings: "opsz" 120, "wdth" 90; display: flex; align-items: baseline; gap: 2px; }
.plan-price .cur { font-size: 24px; color: var(--muted); font-weight: 600; }
.plan-price .per { font-family: var(--mono); font-size: 13px; color: var(--muted); font-weight: 600; letter-spacing: 0; margin-left: 6px; }
.plan--feat .plan-price .cur, .plan--feat .plan-price .per { color: #9C9C8E; }
.plan-desc { margin-top: 10px; font-size: 14px; min-height: 38px; color: var(--text); }
.plan ul { list-style: none; padding: 0; margin: 24px 0 26px; display: grid; gap: 11px; font-size: 14.5px; }
.plan li { display: flex; gap: 11px; color: var(--ink-2); }
.plan li::before { content: "+"; font-family: var(--mono); font-weight: 700; color: var(--accent); }
.plan--feat li::before { color: var(--lime); }
.plan .btn { margin-top: auto; }

.faqwrap { display: grid; grid-template-columns: 1fr; gap: 0; border-top: 1.5px solid var(--ink); }
.faq-item { border-bottom: 1px solid var(--line-soft); }
.faq-q {
  width: 100%;
  background: none;
  border: 0;
  text-align: left;
  cursor: pointer;
  padding: 26px 8px;
  display: grid;
  grid-template-columns: 56px 1fr 40px;
  gap: 22px;
  align-items: center;
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(19px, 2vw, 24px);
  color: var(--ink);
  letter-spacing: -.025em;
}
.faq-q .qn { font-family: var(--mono); font-size: 13px; font-weight: 700; color: var(--accent); }
.faq-q .ico { width: 34px; height: 34px; border: 1.5px solid var(--ink); display: grid; place-items: center; transition: transform .25s var(--ease), background .2s, color .2s; justify-self: end; }
.faq-q .ico svg { width: 15px; height: 15px; color: var(--ink); }
.faq-item.open .faq-q .ico { background: var(--accent); color: #fff; border-color: var(--accent); }
.faq-item.open .faq-q .ico svg { color: #fff; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.faq-a-inner { padding: 0 8px 28px 78px; font-size: 16.5px; color: var(--text); max-width: 700px; }

.cta { background: var(--ink); color: var(--bg); padding: 0; border-top: 1.5px solid var(--ink); }
.cta-inner { display: grid; grid-template-columns: 1.3fr .7fr; gap: 0; }
.cta-text { padding: 88px 56px 88px 0; }
.cta-text .label { color: var(--lime); margin-bottom: 24px; }
.cta-text .label::before { background: var(--lime); }
.cta h2 { color: var(--bg); font-size: clamp(40px, 5.6vw, 76px); font-weight: 740; letter-spacing: -.05em; line-height: .9; font-variation-settings: "opsz" 144, "wdth" 86; }
.cta h2 .lime { background: var(--lime); color: var(--ink); padding: 0 .08em; }
.cta .sub { margin-top: 24px; font-size: 19px; color: #9C9C8E; max-width: 460px; }
.cta .actions { margin-top: 34px; display: flex; gap: 12px; flex-wrap: wrap; }
.cta-aside { background: var(--lime); color: var(--ink); padding: 56px 48px; border-left: 1.5px solid var(--ink); display: flex; flex-direction: column; justify-content: center; }
.cta-aside h3 { font-family: var(--display); font-weight: 700; font-size: 24px; letter-spacing: -.03em; margin-bottom: 18px; }
.cta-aside .row { display: flex; align-items: center; gap: 12px; padding: 12px 0; border-bottom: 1.5px solid var(--ink); font-size: 15px; font-weight: 500; }
.cta-aside .row:last-of-type { border-bottom: 0; }
.cta-aside .row svg { width: 18px; height: 18px; flex-shrink: 0; }

.footer { background: var(--ink); color: #7C7C70; padding: 0; }
.foot-top { display: grid; grid-template-columns: 1.6fr 2fr; border-bottom: 1.5px solid #2A2A23; }
.foot-brand { padding: 60px 56px 60px 0; }
.foot-logo { font-family: var(--display); font-weight: 740; font-size: clamp(60px, 9vw, 120px); line-height: .82; letter-spacing: -.06em; color: var(--bg); font-variation-settings: "opsz" 144, "wdth" 82; }
.foot-logo .acc { color: var(--accent); }
.foot-logo .lime { color: var(--lime); }
.foot-tag { margin-top: 22px; font-family: var(--mono); font-size: 13px; color: #7C7C70; max-width: 320px; line-height: 1.6; letter-spacing: .01em; }
.foot-cols { display: grid; grid-template-columns: repeat(2, 1fr); border-left: 1.5px solid #2A2A23; }
.foot-cols .col { padding: 44px 36px; border-right: 1.5px solid #2A2A23; border-bottom: 1.5px solid #2A2A23; }
.foot-cols .col:nth-child(2n) { border-right: 0; }
.foot-cols .col:nth-last-child(-n+2) { border-bottom: 0; }
.footer h4 { color: var(--bg); font-family: var(--mono); font-size: 11.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 18px; }
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 11px; }
.footer ul a { color: #BCBCAE; font-size: 14.5px; text-decoration: none; }
.footer ul a:hover { color: var(--lime); }
.foot-bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 28px 36px; flex-wrap: wrap; font-family: var(--mono); font-size: 12px; color: #8C8C80; letter-spacing: .02em; }
.foot-bottom .social { display: flex; gap: 8px; }
.foot-bottom .social a { width: 36px; height: 36px; border: 1.5px solid #2A2A23; display: grid; place-items: center; color: #9C9C8E; text-decoration: none; }
.foot-bottom .social a:hover { color: var(--ink); background: var(--lime); border-color: var(--lime); }
.foot-bottom .social svg { width: 16px; height: 16px; }

.modal { position: fixed; inset: 0; z-index: 100; display: none; align-items: center; justify-content: center; padding: 24px; }
.modal.open { display: flex; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(12, 12, 8, .74); animation: modal-fade .2s var(--ease); }
@keyframes modal-fade { from { opacity: 0; } to { opacity: 1; } }
.modal-card {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 460px;
  background: var(--surface);
  border: 1.5px solid var(--ink);
  box-shadow: 8px 8px 0 var(--accent);
  padding: 38px 34px 30px;
  text-align: center;
  animation: modal-pop .26s var(--ease);
}
@keyframes modal-pop { from { opacity: 0; transform: translate(7px, 7px); } to { opacity: 1; transform: none; } }
.modal-close { position: absolute; top: 14px; right: 14px; width: 34px; height: 34px; border: 1.5px solid var(--ink); background: var(--bg); cursor: pointer; display: grid; place-items: center; color: var(--ink); padding: 0; }
.modal-close:hover { background: var(--ink); color: var(--bg); }
.modal-close svg { width: 16px; height: 16px; }
.modal-ico { width: 58px; height: 58px; margin: 0 auto 20px; background: var(--accent-soft); border: 1.5px solid var(--accent); color: var(--accent); display: grid; place-items: center; }
.modal-ico svg { width: 28px; height: 28px; }
.modal-card h3 { font-family: var(--display); font-size: 31px; font-weight: 720; letter-spacing: -.032em; line-height: 1.02; margin-bottom: 14px; }
.modal-card p { font-size: 16px; color: var(--text); margin-bottom: 18px; }
.modal-mail { font-family: var(--mono); font-size: 15px; font-weight: 600; color: var(--ink); background: var(--bg); border: 1.5px dashed var(--ink); padding: 12px; margin-bottom: 20px; word-break: break-all; }
.modal-card .btn { margin-top: 0; }
.modal-card .btn + .btn { margin-top: 10px; }
body.modal-open { overflow: hidden; }

.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

@media (max-width: 1080px) {
  .hero-grid { grid-template-columns: 1fr; gap: 56px; }
  .spec { max-width: 540px; }
  .split { grid-template-columns: 1fr; gap: 40px; }
  .steps { grid-template-columns: 1fr 1fr; }
  .statband { grid-template-columns: 1fr 1fr; }
  .plans { grid-template-columns: 1fr; }
  .plan { border-right: 0; border-bottom: 1.5px solid var(--ink); }
  .plan:last-child { border-bottom: 0; }
  .cta-inner { grid-template-columns: 1fr; }
  .cta-text { padding: 64px 0; }
  .cta-aside { border-left: 0; border-top: 1.5px solid var(--ink); }
  .foot-top { grid-template-columns: 1fr; }
  .foot-brand { padding: 48px 0; }
  .foot-cols { border-left: 0; border-top: 1.5px solid #2A2A23; }
}

@media (max-width: 760px) {
  body { font-size: 16px; }
  .section { padding: 80px 0; }
  .wrap { padding: 0 22px; }
  .nav, .header-cta .btn--ghost { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav.open {
    display: flex;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background: var(--bg);
    border-bottom: 1.5px solid var(--ink);
    padding: 12px 22px 20px;
    gap: 0;
  }
  .nav.open a { padding: 13px 12px; border-bottom: 1px solid var(--line-soft); }
  .feat-row { grid-template-columns: 50px 1fr; gap: 18px; }
  .feat-row .feat-desc, .feat-row .feat-meta { grid-column: 2; }
  .feat-meta { text-align: left; margin-top: 8px; }
  .steps { grid-template-columns: 1fr; }
  .statband { grid-template-columns: 1fr; }
  .ticker-label { position: static; display: inline-flex; padding: 11px 18px; }
  .marquee { padding-left: 0; }
  .clients { gap: 22px; }
  .client { padding: 8px 16px; border-right: 0; border-bottom: 1px solid var(--line-soft); }
  .client:last-child { border-bottom: 0; }
  .spec-float { left: -10px; bottom: -16px; }
  .spec-tag { right: -8px; top: -14px; }
  .faq-q { grid-template-columns: 40px 1fr 34px; gap: 14px; }
  .faq-a-inner { padding-left: 54px; }
  .foot-cols { grid-template-columns: 1fr; }
  .foot-cols .col { border-right: 0; }
  .foot-cols .col:nth-last-child(-n+2) { border-bottom: 1.5px solid #2A2A23; }
  .foot-cols .col:last-child { border-bottom: 0; }
  .foot-bottom { flex-direction: column; align-items: flex-start; padding: 24px 22px; }
}

@media (max-width: 440px) {
  .hero h1 { font-size: 46px; }
  .spec-float { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
  .marquee-track { animation: none !important; }
}
