/* ─── Fonts ──────────────────────────────────────────── */
@font-face {
  font-family: 'Lexend';
  src: url('fonts/Lexend-Light.ttf') format('truetype');
  font-weight: 300;
  font-display: swap;
}
@font-face {
  font-family: 'Lexend';
  src: url('fonts/Lexend-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: 'Trispace';
  src: url('fonts/Trispace-Regular.ttf') format('truetype');
  font-weight: 400;
  font-display: swap;
}

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

/* ─── Design Tokens ──────────────────────────────────── */
:root {
  --bg:          #efefef;
  --near-black:  #090c10;
  --white:       #ffffff;
  --lavender:    #c2b7f9;
  --lime:        #c9fe92;
  --font-main:   'Lexend', sans-serif;
  --font-code:   'Trispace', monospace;
  --radius:      3px;
  --shadow:      0 2px 8px rgba(0,0,0,0.05);
  --shadow-md:   0 4px 16px rgba(0,0,0,0.10);
  --max-w:       1100px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--near-black);
  font-family: var(--font-main);
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { font-weight: 600; line-height: 1.2; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ─── Utility ────────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
}

.tag {
  display: inline-block;
  background: var(--lavender);
  color: var(--near-black);
  border-radius: var(--radius);
  padding: 3px 10px;
  font-size: 11px;
  font-weight: 600;
  font-family: var(--font-code);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.tag--ghost {
  background: rgba(255,255,255,0.10);
  color: var(--lavender);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 26px;
  border-radius: var(--radius);
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  border: none;
  transition: opacity 0.15s, transform 0.15s;
  text-decoration: none;
  white-space: nowrap;
}
.btn:hover { opacity: 0.82; transform: translateY(-1px); }
.btn--lime          { background: var(--lime);        color: var(--near-black); }
.btn--dark          { background: var(--near-black);  color: var(--white); }
.btn--outline       { background: transparent; color: var(--near-black); border: 1.5px solid rgba(9,12,16,0.3); }
.btn--outline-light { background: transparent; color: var(--white);      border: 1.5px solid rgba(255,255,255,0.35); }
.btn--sm { padding: 8px 18px; font-size: 12px; }

.mono { font-family: var(--font-code); letter-spacing: 0.04em; }

/* ─── Header ─────────────────────────────────────────── */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  background: var(--bg);
  border-bottom: 1px solid rgba(9,12,16,0.07);
  transition: box-shadow 0.2s;
}
.header.scrolled { box-shadow: var(--shadow-md); }

.header__logo {
  font-family: var(--font-code);
  font-size: 17px;
  color: var(--near-black);
  letter-spacing: 0.04em;
}
.header__logo span { opacity: 0.35; }

.header__nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.header__nav a {
  font-size: 13px;
  font-weight: 300;
  color: var(--near-black);
  opacity: 0.55;
  transition: opacity 0.15s;
}
.header__nav a:hover { opacity: 1; }

/* ─── Hero ───────────────────────────────────────────── */
.hero {
  background: var(--near-black);
  color: var(--white);
  padding: 96px 40px 72px;
}
.hero__inner { max-width: var(--max-w); margin: 0 auto; }

.hero__eyebrow { margin-bottom: 28px; }

.hero__heading {
  font-size: clamp(42px, 6.5vw, 78px);
  font-weight: 600;
  line-height: 1.04;
  margin-bottom: 24px;
  max-width: 680px;
}
.hero__heading em { font-style: normal; color: var(--lime); }

.hero__sub {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.65;
  max-width: 540px;
  opacity: 0.65;
  margin-bottom: 40px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 72px;
}

.hero__visual {
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  line-height: 0;
}
.hero__visual img {
  width: 100%;
  height: auto;
  display: block;
}

/* ─── TOC chips (setup page) ─────────────────────────── */
.toc {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 760px;
}
.toc a {
  font-family: var(--font-code);
  font-size: 11px;
  letter-spacing: 0.04em;
  padding: 6px 12px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius);
  color: rgba(255,255,255,0.6);
  transition: color 0.15s, border-color 0.15s, background 0.15s;
}
.toc a:hover {
  color: var(--lime);
  border-color: rgba(201,254,146,0.4);
  background: rgba(201,254,146,0.06);
}

/* ─── Compat Bar ─────────────────────────────────────── */
.compat {
  background: rgba(9,12,16,0.97);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 18px 40px;
}
.compat__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.compat__label {
  font-family: var(--font-code);
  font-size: 10px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  white-space: nowrap;
}
.compat__pills {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.compat__pill {
  font-family: var(--font-code);
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 3px 10px;
  letter-spacing: 0.04em;
}

/* ─── Section Header ─────────────────────────────────── */
.section-head {
  max-width: var(--max-w);
  margin: 0 auto 56px;
  padding: 0 40px;
}
.section-head .tag { margin-bottom: 16px; }
.section-head h2 { font-size: clamp(26px, 3.5vw, 42px); margin-bottom: 12px; }
.section-head p  { font-size: 15px; opacity: 0.55; max-width: 460px; }

/* ─── Features ───────────────────────────────────────── */
.features { padding: 96px 0 0; }

.features__grid {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.feature-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 30px 28px;
}
.feature-card__icon {
  width: 38px;
  height: 38px;
  background: var(--bg);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--near-black);
}
.feature-card__title {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 8px;
}
.feature-card__desc {
  font-size: 13px;
  line-height: 1.65;
  opacity: 0.62;
}

/* ─── Feature Spotlight ──────────────────────────────── */
.feature-spotlight {
  margin-top: 96px;
  background: var(--near-black);
  color: var(--white);
  padding: 72px 40px;
}
.feature-spotlight__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.feature-spotlight__label {
  font-family: var(--font-code);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 16px;
}
.feature-spotlight__title {
  font-size: clamp(22px, 2.8vw, 34px);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 20px;
}
.feature-spotlight__desc {
  font-size: 14px;
  line-height: 1.75;
  opacity: 1;
  margin-bottom: 28px;
}
.feature-spotlight__types {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.feature-spotlight__types span {
  font-family: var(--font-code);
  font-size: 11px;
  letter-spacing: 0.04em;
  padding: 4px 10px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  color: rgba(255,255,255,0.5);
}
.feature-spotlight__visual {
  border-radius: var(--radius);
  overflow: hidden;
  line-height: 0;
}
.feature-spotlight__visual img {
  width: 100%;
  height: auto;
  display: block;
}

/* ─── Videos ─────────────────────────────────────────── */
.videos {
  background: var(--white);
  padding: 96px 0;
}

.video-main {
  max-width: var(--max-w);
  margin: 0 auto 44px;
  padding: 0 40px;
}
.video-embed {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--near-black);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.video-placeholder {
  text-align: center;
  color: rgba(255,255,255,0.2);
}
.video-placeholder svg { display: block; margin: 0 auto 10px; }
.video-placeholder p {
  font-family: var(--font-code);
  font-size: 12px;
  letter-spacing: 0.04em;
}

.video-cards {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.video-card {
  background: var(--bg);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow 0.15s;
}
.video-card:hover { box-shadow: var(--shadow-md); }

.video-card__thumb {
  aspect-ratio: 16 / 9;
  background: var(--near-black);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.18);
  cursor: pointer;
  position: relative;
}
.video-card__play {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-card__info { padding: 16px 18px; }
.video-card__tag  { margin-bottom: 8px; }
.video-card__title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
  line-height: 1.3;
}
.video-card__meta {
  font-family: var(--font-code);
  font-size: 11px;
  opacity: 0.38;
}

/* ─── Video card — coming soon ───────────────────────── */
.video-card--soon { opacity: 0.6; }
.video-card--soon .video-card__thumb { position: relative; }
.video-card--soon .video-card__thumb::after {
  content: 'Coming soon';
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: rgba(9,12,16,0.75);
  color: rgba(255,255,255,0.65);
  font-family: var(--font-code);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: var(--radius);
}
.video-card--soon:hover { box-shadow: none; cursor: default; }
.video-card__facade { cursor: pointer; }
.video-card__facade .video-card__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  background: rgba(0,0,0,0.45);
}
.video-card__play--lg {
  width: 72px;
  height: 72px;
}

/* ─── Pricing ────────────────────────────────────────── */
.pricing { padding: 96px 0; }

.pricing__grid {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: start;
}

.price-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 36px 30px;
}
.price-card--featured {
  background: var(--near-black);
  color: var(--white);
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
}

.price-card__tier {
  font-family: var(--font-code);
  font-size: 10px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  opacity: 0.45;
  margin-bottom: 20px;
}

.price-card__amount {
  display: flex;
  align-items: baseline;
  gap: 2px;
  margin-bottom: 6px;
}
.price-card__currency {
  font-size: 20px;
  font-weight: 600;
  opacity: 0.5;
  margin-right: 2px;
}
.price-card__number {
  font-size: 52px;
  font-weight: 600;
  line-height: 1;
  font-family: var(--font-code);
}
.price-card__number.tbd {
  font-size: 38px;
  opacity: 0.3;
}
.price-card--featured .price-card__number { color: var(--lime); }
.price-card--featured .price-card__currency { color: var(--lime); }

.price-card__billing {
  font-size: 12px;
  opacity: 0.42;
  margin-bottom: 20px;
}
.price-card__desc {
  font-size: 13px;
  line-height: 1.6;
  opacity: 1;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.price-card--featured .price-card__desc {
  border-bottom-color: rgba(255,255,255,0.08);
}

.price-card__list {
  list-style: none;
  margin-bottom: 28px;
}
.price-card__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  padding: 7px 0;
  border-bottom: 1px solid rgba(0,0,0,0.04);
}
.price-card--featured .price-card__list li {
  border-bottom-color: rgba(255,255,255,0.06);
}
.price-card__list li:last-child { border-bottom: none; }

.check-icon {
  flex-shrink: 0;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: var(--lime);
  display: flex;
  align-items: center;
  justify-content: center;
}
.check-icon--dim { background: rgba(201,254,146,0.18); }

.price-card__cta { width: 100%; justify-content: center; }

.pricing__note {
  max-width: var(--max-w);
  margin: 32px auto 0;
  padding: 0 40px;
  text-align: center;
  font-size: 13px;
  opacity: 0.45;
}
.pricing__note a {
  text-decoration: underline;
  opacity: 1;
  color: var(--near-black);
}

/* ─── Pricing — Enterprise + FAQ ────────────────────────── */
.pricing__enterprise {
  max-width: var(--max-w);
  margin: 48px auto 0;
  padding: 36px 40px;
  background: var(--near-black);
  color: var(--white);
  border-radius: var(--radius);
}
.pricing__enterprise-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
}
.pricing__enterprise-desc {
  font-size: 14px;
  line-height: 1.7;
  opacity: 1;
  max-width: 640px;
}
.pricing__enterprise-desc a { color: var(--lime); text-decoration: underline; opacity: 1; }

.pricing__faq {
  max-width: var(--max-w);
  margin: 48px auto 0;
  padding: 0 40px;
}
.pricing__faq-title {
  font-size: 11px;
  font-family: var(--font-code);
  letter-spacing: 0.10em;
  text-transform: uppercase;
  opacity: 0.35;
  margin-bottom: 20px;
}

/* ─── FAQ items (shared) ─────────────────────────────── */
.faq {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
}
.faq-item { border-top: 1px solid rgba(9,12,16,0.07); }
.faq-item:last-child { border-bottom: 1px solid rgba(9,12,16,0.07); }
.faq-item summary {
  font-size: 14px;
  font-weight: 600;
  padding: 16px 0;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-family: var(--font-code);
  font-size: 18px;
  font-weight: 300;
  opacity: 0.35;
  flex-shrink: 0;
  margin-left: 16px;
}
.faq-item[open] summary::after { content: '\2212'; }
.faq-item p {
  font-size: 13px;
  line-height: 1.7;
  opacity: 0.55;
  padding-bottom: 18px;
  max-width: 640px;
}
.faq-item p code, .faq-item code {
  font-family: var(--font-code);
  background: rgba(9,12,16,0.06);
  padding: 1px 5px;
  border-radius: 2px;
  font-size: 12px;
}
.faq-item ul {
  font-size: 13px;
  line-height: 1.75;
  opacity: 0.65;
  padding-bottom: 18px;
  max-width: 720px;
  padding-left: 20px;
}
.faq-item li { margin-bottom: 4px; }

/* ─── Getting Started ────────────────────────────────── */
.quickstart {
  background: var(--near-black);
  color: var(--white);
  padding: 96px 0;
}

.steps {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 60px 40px 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.step__num {
  font-family: var(--font-code);
  font-size: 10px;
  color: var(--lime);
  letter-spacing: 0.10em;
  margin-bottom: 14px;
}
.step__title {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 8px;
}
.step__desc {
  font-size: 13px;
  opacity: 0.50;
  line-height: 1.65;
}
.step__code {
  margin-top: 14px;
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius);
  padding: 8px 12px;
  font-family: var(--font-code);
  font-size: 12px;
  color: var(--lime);
  letter-spacing: 0.04em;
}

.quickstart__actions {
  max-width: var(--max-w);
  margin: 52px auto 0;
  padding: 0 40px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ─── Prose (setup page) ─────────────────────────────── */
.prose {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
}
.prose p { font-size: 15px; line-height: 1.75; opacity: 0.85; margin-bottom: 16px; max-width: 720px; }
.prose p strong { font-weight: 600; opacity: 1; }
.prose a.link { text-decoration: underline; text-underline-offset: 3px; }
.prose a.link:hover { color: var(--near-black); opacity: 0.7; }

/* ─── Section blocks (setup page) ───────────────────── */
section.block { padding: 88px 0; }
section.block + section.block { padding-top: 0; }

section.block--dark {
  background: var(--near-black);
  color: var(--white);
  padding: 88px 0;
}
section.block--dark .section-head h2 { color: var(--white); }
section.block--dark .section-head p  { color: rgba(255,255,255,0.5); }
section.block--dark .prose p { opacity: 0.7; }
section.block--dark .prose a.link { color: var(--lime); }

/* ─── Card grids (setup page) ───────────────────────── */
.grid-2 {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.grid-3 {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px 26px;
}
.card__icon {
  width: 38px;
  height: 38px;
  background: var(--bg);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--near-black);
}
.card__title {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 8px;
}
.card__desc {
  font-size: 13px;
  line-height: 1.7;
  opacity: 0.65;
  margin-bottom: 14px;
}
.card__meta {
  font-family: var(--font-code);
  font-size: 11px;
  letter-spacing: 0.04em;
  opacity: 0.45;
}
.card a.link { text-decoration: underline; text-underline-offset: 3px; font-size: 13px; }

/* ─── Step rows / vertical steps (setup page) ───────── */
.steps-vertical {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  gap: 36px;
}
.step-row {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 28px;
  align-items: start;
}
.step-row__num {
  font-family: var(--font-code);
  font-size: 11px;
  letter-spacing: 0.10em;
  color: var(--lime);
  padding-top: 4px;
  border-top: 1px solid rgba(255,255,255,0.18);
  max-width: 80px;
}
.step-row__body { color: var(--white); }
.step-row__title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  line-height: 1.25;
}
.step-row__desc {
  font-size: 14px;
  line-height: 1.75;
  opacity: 0.65;
  max-width: 720px;
  margin-bottom: 14px;
}
.step-row__desc strong { opacity: 1; color: var(--white); font-weight: 600; }
.step-row__desc a.link { color: var(--lime); text-decoration: underline; text-underline-offset: 3px; }

.code-block {
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius);
  padding: 14px 18px;
  font-family: var(--font-code);
  font-size: 13px;
  color: var(--lime);
  letter-spacing: 0.04em;
  max-width: 720px;
  overflow-x: auto;
  line-height: 1.65;
  margin-bottom: 6px;
}
.code-caption {
  font-family: var(--font-code);
  font-size: 11px;
  letter-spacing: 0.06em;
  opacity: 0.4;
  margin-bottom: 14px;
}

/* ─── Menu cascade illustration (setup page) ────────── */
.menu-illustration {
  max-width: 720px;
  background: #2a2a2a;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 28px;
  margin: 6px 0 18px;
  position: relative;
  overflow: hidden;
}
.menu-illustration__caption {
  font-family: var(--font-code);
  font-size: 10px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 18px;
}
.menu-cascade {
  display: flex;
  gap: 4px;
  align-items: flex-start;
  flex-wrap: nowrap;
}
.menu-panel {
  background: #1f1f1f;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 2px;
  min-width: 220px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.35);
}
.menu-panel__top {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px 10px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.menu-panel__top .tab {
  background: #303030;
  color: rgba(255,255,255,0.7);
  font-family: var(--font-code);
  font-size: 10px;
  letter-spacing: 0.04em;
  padding: 4px 10px;
  border-radius: 2px;
}
.menu-panel__top .arrows {
  font-family: var(--font-code);
  color: rgba(255,255,255,0.25);
  font-size: 11px;
}
.menu-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 14px;
  font-size: 12px;
  color: rgba(255,255,255,0.78);
  font-weight: 300;
}
.menu-row.is-active {
  background: rgba(255,255,255,0.06);
  color: var(--white);
}
.menu-row.is-highlighted {
  outline: 1.5px solid var(--lavender);
  outline-offset: -1px;
}
.menu-row .kbd {
  font-family: var(--font-code);
  font-size: 10px;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.04em;
}
.menu-row .chevron {
  font-family: var(--font-code);
  color: rgba(255,255,255,0.45);
  font-size: 12px;
}
.menu-divider { height: 1px; background: rgba(255,255,255,0.05); margin: 4px 0; }

/* ─── Callouts (setup page) ──────────────────────────── */
.callout {
  max-width: 720px;
  margin: 6px 0 0;
  padding: 16px 20px;
  background: rgba(255,255,255,0.04);
  border-left: 2px solid var(--lavender);
  border-radius: 2px;
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255,255,255,0.7);
}
.callout strong { color: var(--white); font-weight: 600; }
.callout a.link { color: var(--lime); text-decoration: underline; }

.callout--light {
  background: var(--white);
  border-left-color: var(--lavender);
  color: rgba(9,12,16,0.8);
  box-shadow: var(--shadow);
}
.callout--light strong { color: var(--near-black); }
.callout--light a.link { color: var(--near-black); }

/* ─── Footer — full (index + setup) ─────────────────── */
.footer {
  background: var(--near-black);
  color: var(--white);
  padding: 64px 40px 40px;
}
.footer__inner { max-width: var(--max-w); margin: 0 auto; }

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  margin-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer__brand {
  font-family: var(--font-code);
  font-size: 18px;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}
.footer__brand span { opacity: 0.35; }
.footer__tagline {
  font-size: 13px;
  opacity: 0.38;
  line-height: 1.65;
  max-width: 280px;
  margin-bottom: 28px;
}
.footer__maker {
  font-size: 12px;
  opacity: 0.30;
}
.footer__maker a { opacity: 1; transition: opacity 0.15s; }
.footer__maker a:hover { opacity: 1; text-decoration: underline; }

.footer__col h4 {
  font-size: 10px;
  font-family: var(--font-code);
  letter-spacing: 0.10em;
  text-transform: uppercase;
  opacity: 0.30;
  margin-bottom: 16px;
}
.footer__col ul { list-style: none; }
.footer__col li { margin-bottom: 10px; }
.footer__col a {
  font-size: 13px;
  opacity: 0.50;
  transition: opacity 0.15s;
}
.footer__col a:hover { opacity: 1; }

.footer__oss-note {
  font-size: 11px;
  opacity: 0.4;
  margin-bottom: 20px;
  font-weight: 300;
}
.footer__oss-note a { text-decoration: underline; }
.footer__oss-note a:hover { opacity: 0.7; }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 11px;
  opacity: 0.28;
  font-family: var(--font-code);
  letter-spacing: 0.04em;
}
.footer__bottom a { transition: opacity 0.15s; }
.footer__bottom a:hover { opacity: 2; }
.footer__bottom-links { display: flex; gap: 20px; }

/* ─── Footer — simple links (legal pages) ───────────── */
.footer__links { display: flex; gap: 20px; }
.footer__links a {
  font-size: 12px;
  opacity: 0.45;
  transition: opacity 0.15s;
}
.footer__links a:hover { opacity: 1; }

/* ─── Legal pages ────────────────────────────────────── */
.legal-page { max-width: 760px; margin: 0 auto; padding: 80px 40px 120px; }
.legal-page__eyebrow {
  font-family: var(--font-code);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.4;
  margin-bottom: 12px;
}
.legal-page__title { font-size: clamp(28px, 4vw, 44px); font-weight: 600; line-height: 1.15; margin-bottom: 8px; }
.legal-page__date { font-size: 13px; opacity: 0.40; margin-bottom: 48px; font-family: var(--font-code); }

.legal-toc {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px 28px;
  margin-bottom: 56px;
}
.legal-toc h2 {
  font-size: 12px;
  font-family: var(--font-code);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.4;
  margin-bottom: 14px;
}
.legal-toc ol { list-style: none; counter-reset: toc; }
.legal-toc li { counter-increment: toc; font-size: 13px; padding: 4px 0; }
.legal-toc li::before { content: counter(toc) ". "; opacity: 0.4; font-family: var(--font-code); font-size: 11px; }
.legal-toc a { opacity: 0.65; transition: opacity 0.15s; }
.legal-toc a:hover { opacity: 1; }

.legal-section { margin-bottom: 52px; scroll-margin-top: 88px; }
.legal-section__num {
  font-family: var(--font-code);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--near-black);
  opacity: 0.35;
  margin-bottom: 6px;
}
.legal-section h2 { font-size: 18px; font-weight: 600; margin-bottom: 16px; }
.legal-section h3 { font-size: 14px; font-weight: 600; margin: 20px 0 8px; }
.legal-section p { font-size: 14px; line-height: 1.78; opacity: 0.72; margin-bottom: 12px; }
.legal-section p:last-child { margin-bottom: 0; }
.legal-section ul { margin: 8px 0 12px 0; padding-left: 0; list-style: none; }
.legal-section ul li { font-size: 14px; line-height: 1.7; opacity: 0.72; padding: 3px 0 3px 18px; position: relative; }
.legal-section ul li::before { content: "–"; position: absolute; left: 0; opacity: 0.5; }
.legal-section a { text-decoration: underline; }
.legal-section a:hover { opacity: 0.7; }
address { font-style: normal; font-size: 14px; line-height: 1.9; opacity: 0.72; }
.info-box {
  background: var(--white);
  border-radius: var(--radius);
  border-left: 3px solid var(--lavender);
  padding: 16px 20px;
  margin: 16px 0;
  font-size: 13px;
  opacity: 0.85;
  line-height: 1.65;
}
.legal-divider { border: none; border-top: 1px solid rgba(9,12,16,0.08); margin: 52px 0; }

/* ─── Responsive ─────────────────────────────────────── */
@media (max-width: 960px) {
  .feature-spotlight__inner { grid-template-columns: 1fr; gap: 40px; }
  .feature-spotlight__visual { order: -1; max-width: 480px; margin: 0 auto; }

  .features__grid,
  .use-cases__grid,
  .video-cards,
  .pricing__grid { grid-template-columns: 1fr 1fr; }
  .steps          { grid-template-columns: 1fr 1fr; }
  .footer__grid   { grid-template-columns: 1fr 1fr; gap: 32px; }
  .price-card--featured { transform: none; }

  .grid-2, .grid-3 { grid-template-columns: 1fr 1fr; }
  .menu-cascade    { flex-wrap: wrap; }
}

@media (max-width: 640px) {
  .header      { padding: 0 20px; }
  .header__nav { display: none; }

  .hero, .compat, .section-head,
  .features__grid, .video-main, .video-cards,
  .pricing__grid, .pricing__note,
  .quickstart__actions, .steps,
  .prose, .grid-2, .grid-3, .steps-vertical, .faq,
  .footer { padding-left: 20px; padding-right: 20px; }

  .feature-spotlight { padding: 48px 20px; }

  .hero { padding-top: 64px; padding-bottom: 48px; }

  .features__grid,
  .use-cases__grid,
  .video-cards,
  .pricing__grid,
  .steps,
  .grid-2, .grid-3 { grid-template-columns: 1fr; }

  .footer__grid { grid-template-columns: 1fr; gap: 28px; }

  .footer__bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .legal-page { padding: 48px 20px 80px; }

  section.block, section.block--dark { padding: 56px 0; }
  .step-row { grid-template-columns: 1fr; gap: 14px; }
  .step-row__num { border-top: none; max-width: none; padding-top: 0; }
  .menu-panel { min-width: 0; width: 100%; }
}

/* ─── Consent banner ─────────────────────────────────── */
.consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--near-black);
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 14px 24px;
  font-size: 13px;
  line-height: 1.5;
  z-index: 9999;
  box-shadow: 0 -2px 16px rgba(0,0,0,0.2);
}
.consent-banner[hidden] { display: none; }
.consent-banner__text { flex: 1; }
.consent-banner__text a { color: var(--lavender); text-decoration: underline; }
.consent-banner__actions { display: flex; gap: 8px; flex-shrink: 0; }
.consent-btn {
  padding: 7px 16px;
  border-radius: var(--radius);
  border: none;
  font-family: var(--font-main);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
}
.consent-btn--accept {
  background: var(--lavender);
  color: var(--near-black);
}
.consent-btn--decline {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--white);
}
@media (max-width: 600px) {
  .consent-banner { flex-direction: column; align-items: flex-start; gap: 12px; }
}
