/* =========================================================================
   Tulpa marketing site — design tokens
   Palette lifted directly from the app (src/styles/theme.css): Dawn (light)
   and Dusk (dark) are the two automatic themes there, so the site inherits
   them rather than inventing a new palette.
   ========================================================================= */

:root {
  --brand-pale: #c6d6da;
  --brand-pale-lift: #dbe6e8;
  --brand-plum: #1e1226;
  --brand-plum-lift: #2b1c34;
  --brand-orange: #e8481f;
  --brand-orange-lift: #f4622e;

  --color-bg: var(--brand-pale);
  --color-surface: var(--brand-pale-lift);
  --color-surface-raised: #eef4f5;
  --color-text: var(--brand-plum);
  --color-text-soft: color-mix(in srgb, var(--brand-plum), transparent 38%);
  --color-text-faint: color-mix(in srgb, var(--brand-plum), transparent 60%);
  --color-accent: var(--brand-orange);
  --color-accent-contrast: #ffffff;
  --color-border: color-mix(in srgb, var(--brand-plum), transparent 85%);
  --color-border-strong: color-mix(in srgb, var(--brand-plum), transparent 70%);

  --shadow-sm: 0 1px 2px rgba(30, 18, 38, 0.06), 0 2px 8px rgba(30, 18, 38, 0.06);
  --shadow-md: 0 4px 16px rgba(30, 18, 38, 0.1), 0 1px 3px rgba(30, 18, 38, 0.08);
  --shadow-lg: 0 20px 60px rgba(30, 18, 38, 0.16), 0 4px 16px rgba(30, 18, 38, 0.1);

  --font-sans:
    -apple-system, BlinkMacSystemFont, "SF Pro Display", "Inter", "Segoe UI",
    Roboto, Helvetica, Arial, sans-serif;
  --font-mono:
    ui-monospace, "SF Mono", "Cascadia Code", "Roboto Mono", Menlo, Consolas,
    monospace;

  --container: 1160px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

@media (prefers-color-scheme: dark) {
  :root {
    --color-bg: var(--brand-plum);
    --color-surface: var(--brand-plum-lift);
    --color-surface-raised: #34223f;
    --color-text: var(--brand-pale);
    --color-text-soft: color-mix(in srgb, var(--brand-pale), transparent 30%);
    --color-text-faint: color-mix(in srgb, var(--brand-pale), transparent 55%);
    --color-accent: var(--brand-orange-lift);
    --color-accent-contrast: #1a1013;
    --color-border: color-mix(in srgb, var(--brand-pale), transparent 88%);
    --color-border-strong: color-mix(in srgb, var(--brand-pale), transparent 74%);

    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3), 0 2px 8px rgba(0, 0, 0, 0.25);
    --shadow-md: 0 6px 20px rgba(0, 0, 0, 0.4), 0 1px 3px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 24px 70px rgba(0, 0, 0, 0.55), 0 4px 16px rgba(0, 0, 0, 0.4);
  }
}

/* ── Reset ────────────────────────────────────────────────────────────── */

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

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

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

body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  transition: background-color 0.3s var(--ease);
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
h4,
p {
  margin: 0;
}

button {
  font: inherit;
  color: inherit;
}

::selection {
  background: var(--color-accent);
  color: var(--color-accent-contrast);
}

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

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}

@media (min-width: 720px) {
  .container {
    padding-inline: 40px;
  }
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: -60px;
  left: 16px;
  z-index: 100;
  background: var(--color-accent);
  color: var(--color-accent-contrast);
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 14px;
  transition: top 0.2s var(--ease);
}

.skip-link:focus {
  top: 16px;
}

/* ── Type scale ───────────────────────────────────────────────────────── */

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}

h1,
.h1 {
  font-size: clamp(2.4rem, 1.8rem + 2.6vw, 4.1rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 650;
}

h2,
.h2 {
  font-size: clamp(1.9rem, 1.6rem + 1.4vw, 2.7rem);
  line-height: 1.1;
  letter-spacing: -0.025em;
  font-weight: 650;
}

h3,
.h3 {
  font-size: 1.25rem;
  line-height: 1.3;
  letter-spacing: -0.01em;
  font-weight: 620;
}

.lede {
  font-size: clamp(1.05rem, 1rem + 0.4vw, 1.25rem);
  line-height: 1.6;
  color: var(--color-text-soft);
  max-width: 46em;
}

.section-head {
  max-width: 640px;
  margin-bottom: 48px;
}

.section-head .h2 {
  margin-top: 14px;
}

.section-head p {
  margin-top: 16px;
  color: var(--color-text-soft);
  font-size: 1.05rem;
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
}

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

/* ── Buttons ──────────────────────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  border: 1px solid transparent;
  cursor: pointer;
  transition:
    transform 0.2s var(--ease),
    box-shadow 0.2s var(--ease),
    background-color 0.2s var(--ease),
    border-color 0.2s var(--ease);
  white-space: nowrap;
}

.btn:active {
  transform: scale(0.97);
}

.btn-primary {
  background: var(--color-accent);
  color: var(--color-accent-contrast);
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  border-color: var(--color-border-strong);
  color: var(--color-text);
}

.btn-ghost:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.btn-sm {
  padding: 9px 16px;
  font-size: 13.5px;
}

.btn-block {
  width: 100%;
}

/* ── Nav ──────────────────────────────────────────────────────────────── */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--color-bg), transparent 18%);
  backdrop-filter: blur(14px) saturate(1.4);
  -webkit-backdrop-filter: blur(14px) saturate(1.4);
  border-bottom: 1px solid var(--color-border);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 72px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 650;
  font-size: 17px;
  letter-spacing: -0.01em;
}

.brand-mark {
  width: 22px;
  height: 22px;
  color: var(--color-accent);
  flex-shrink: 0;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 32px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--color-text-soft);
}

.nav-links a {
  transition: color 0.15s var(--ease);
  padding: 4px 0;
  border-bottom: 1px solid transparent;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--color-text);
}

.nav-links a[aria-current="page"] {
  border-bottom-color: var(--color-accent);
}

@media (min-width: 880px) {
  .nav-links {
    display: flex;
  }
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-actions .btn-ghost {
  display: none;
}

@media (min-width: 640px) {
  .nav-actions .btn-ghost {
    display: inline-flex;
  }
}

/* ── Hero ─────────────────────────────────────────────────────────────── */

.hero {
  position: relative;
  padding: 88px 0 64px;
  overflow: clip;
}

.hero-grid {
  display: grid;
  gap: 56px;
  align-items: center;
}

@media (min-width: 980px) {
  .hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 40px;
  }
}

.hero-copy .eyebrow {
  margin-bottom: 18px;
}

.hero-copy h1 {
  margin-bottom: 22px;
}

.hero-copy .accent-word {
  color: var(--color-accent);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hero-note {
  margin-top: 18px;
  font-size: 13.5px;
  color: var(--color-text-faint);
}

.hero-stage {
  position: relative;
}

.policy-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.policy-card-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--color-border);
}

.policy-card-bar .dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--color-border-strong);
}

.policy-card-bar span.label {
  margin-left: 6px;
  font-size: 12.5px;
  font-family: var(--font-mono);
  color: var(--color-text-faint);
}

.policy-card-body {
  padding: 22px;
}

.waveform {
  display: flex;
  align-items: center;
  gap: 3px;
  height: 46px;
  padding: 0 4px;
  margin-bottom: 20px;
}

.waveform span {
  flex: 1;
  min-width: 2px;
  border-radius: 2px;
  background: var(--color-accent);
  opacity: 0.85;
  animation: wave 1.6s ease-in-out infinite;
}

@keyframes wave {
  0%,
  100% {
    transform: scaleY(0.35);
  }
  50% {
    transform: scaleY(1);
  }
}

.posture-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 13px 14px;
  border-radius: var(--radius-sm);
  background: var(--color-surface-raised);
  border: 1px solid var(--color-border);
  margin-bottom: 8px;
}

.posture-row:last-child {
  margin-bottom: 0;
}

.posture-row .name {
  font-size: 13.5px;
  font-weight: 600;
}

.posture-row .desc {
  font-size: 12px;
  color: var(--color-text-faint);
  margin-top: 2px;
}

.posture-toggle {
  width: 38px;
  height: 22px;
  border-radius: 999px;
  background: var(--color-border-strong);
  position: relative;
  flex-shrink: 0;
}

.posture-toggle::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--color-surface);
  top: 3px;
  left: 3px;
  box-shadow: var(--shadow-sm);
  transition: left 0.2s var(--ease);
}

.posture-row.is-active {
  border-color: color-mix(in srgb, var(--color-accent), transparent 40%);
}

.posture-row.is-active .posture-toggle {
  background: var(--color-accent);
}

.posture-row.is-active .posture-toggle::after {
  left: 19px;
  background: var(--color-accent-contrast);
}

.locked-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--color-text-faint);
  margin-top: 16px;
}

.locked-pill svg {
  width: 11px;
  height: 11px;
}

/* ── Logo / integration strip ────────────────────────────────────────── */

.strip {
  padding: 36px 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.strip-label {
  text-align: center;
  font-size: 12.5px;
  color: var(--color-text-faint);
  letter-spacing: 0.03em;
  margin-bottom: 26px;
}

.logo-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
  color: var(--color-text-soft);
}

.logo-row .item {
  display: flex;
  align-items: center;
  gap: 9px;
  font-weight: 600;
  font-size: 15px;
  opacity: 0.75;
  transition: opacity 0.2s var(--ease);
}

.logo-row .item:hover {
  opacity: 1;
}

.logo-row svg {
  width: 20px;
  height: 20px;
}

/* ── Generic section ──────────────────────────────────────────────────── */

section {
  padding: 96px 0;
}

.section-tight {
  padding: 72px 0;
}

.bg-surface {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

/* ── Feature / posture cards ─────────────────────────────────────────── */

.grid-3 {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}

@media (min-width: 780px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.grid-2 {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}

@media (min-width: 780px) {
  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 28px;
  transition:
    transform 0.25s var(--ease),
    box-shadow 0.25s var(--ease),
    border-color 0.25s var(--ease);
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-border-strong);
}

.card .icon-badge {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: color-mix(in srgb, var(--color-accent), transparent 88%);
  color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.card .icon-badge svg {
  width: 21px;
  height: 21px;
}

.card h3 {
  margin-bottom: 10px;
}

.card p {
  color: var(--color-text-soft);
  font-size: 14.5px;
  line-height: 1.6;
}

.card .tag {
  display: inline-block;
  margin-top: 16px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--color-text-faint);
  background: var(--color-surface-raised);
  border: 1px solid var(--color-border);
  padding: 4px 9px;
  border-radius: 999px;
}

.card.is-featured {
  border-color: color-mix(in srgb, var(--color-accent), transparent 45%);
  background: linear-gradient(
    165deg,
    color-mix(in srgb, var(--color-accent), transparent 92%),
    var(--color-surface) 60%
  );
}

/* ── Audience split ───────────────────────────────────────────────────── */

.audience-card {
  padding: 34px;
}

.audience-card .kicker {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--color-accent);
  margin-bottom: 12px;
  display: block;
}

.audience-card ul {
  margin-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.audience-card li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14.5px;
  color: var(--color-text-soft);
}

.audience-card li svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--color-accent);
}

.audience-card .btn {
  margin-top: 26px;
}

/* ── Policy config block (mono) ──────────────────────────────────────── */

.code-block {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.code-block-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border-bottom: 1px solid var(--color-border);
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--color-text-faint);
}

.code-block-bar .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-border-strong);
}

.code-block pre {
  margin: 0;
  padding: 22px 24px;
  overflow-x: auto;
  font-family: var(--font-mono);
  font-size: 13.5px;
  line-height: 1.75;
}

.code-block .k {
  color: var(--color-text-faint);
}
.code-block .v {
  color: var(--color-accent);
}
.code-block .c {
  color: var(--color-text-faint);
  opacity: 0.7;
}
.code-block .s {
  color: var(--color-text);
}

/* ── Comparison rows ──────────────────────────────────────────────────── */

.compare {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--color-surface);
}

.compare-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px;
  padding: 20px 24px;
  border-bottom: 1px solid var(--color-border);
}

.compare-row:last-child {
  border-bottom: none;
}

@media (min-width: 720px) {
  .compare-row {
    grid-template-columns: 1.1fr 1fr;
    gap: 24px;
    align-items: center;
  }
}

.compare-row .label {
  font-weight: 620;
  font-size: 15px;
}

.compare-row .label .sub {
  display: block;
  font-weight: 400;
  font-size: 13px;
  color: var(--color-text-faint);
  margin-top: 3px;
}

.compare-answer {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--color-text-soft);
}

.compare-answer svg {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--color-accent);
}

/* ── Stat row ─────────────────────────────────────────────────────────── */

.stat-row {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 720px) {
  .stat-row {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat {
  border-left: 2px solid var(--color-accent);
  padding-left: 16px;
}

.stat .num {
  font-size: 1.9rem;
  font-weight: 650;
  letter-spacing: -0.02em;
  display: block;
}

.stat .desc {
  font-size: 13px;
  color: var(--color-text-faint);
  margin-top: 4px;
}

/* ── CTA band ─────────────────────────────────────────────────────────── */

.cta-band {
  border-radius: var(--radius-lg);
  background: var(--brand-plum);
  color: var(--brand-pale);
  padding: 64px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    600px 260px at 50% 0%,
    color-mix(in srgb, var(--brand-orange), transparent 78%),
    transparent 70%
  );
  pointer-events: none;
}

.cta-band > * {
  position: relative;
}

.cta-band h2 {
  color: #fbf8f3;
}

.cta-band p {
  color: color-mix(in srgb, var(--brand-pale), transparent 15%);
  margin-top: 14px;
  max-width: 40em;
  margin-inline: auto;
}

.cta-band .hero-actions {
  justify-content: center;
  margin-top: 30px;
}

.cta-band .btn-ghost {
  border-color: color-mix(in srgb, var(--brand-pale), transparent 60%);
  color: var(--brand-pale);
}

.cta-band .btn-ghost:hover {
  border-color: var(--brand-orange-lift);
  color: var(--brand-orange-lift);
}

/* ── Access form ──────────────────────────────────────────────────────── */

.access-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 420px;
  margin: 28px auto 0;
}

@media (min-width: 560px) {
  .access-form {
    flex-direction: row;
  }
}

.access-form input[type="email"] {
  flex: 1;
  padding: 13px 16px;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--brand-pale), transparent 55%);
  background: color-mix(in srgb, var(--brand-plum-lift), transparent 10%);
  color: #fbf8f3;
  font-size: 14.5px;
  min-width: 0;
}

.access-form input[type="email"]::placeholder {
  color: color-mix(in srgb, var(--brand-pale), transparent 45%);
}

.access-form input[type="email"]:focus-visible {
  outline: 2px solid var(--brand-orange-lift);
  outline-offset: 2px;
}

.form-status {
  min-height: 18px;
  font-size: 13px;
  color: color-mix(in srgb, var(--brand-pale), transparent 20%);
  margin-top: 10px;
}

.form-status[data-state="ok"] {
  color: var(--brand-orange-lift);
}

/* ── Footer ───────────────────────────────────────────────────────────── */

.site-footer {
  padding: 56px 0 40px;
  border-top: 1px solid var(--color-border);
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

@media (min-width: 720px) {
  .footer-grid {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}

.footer-brand p {
  margin-top: 12px;
  font-size: 13.5px;
  color: var(--color-text-faint);
  max-width: 280px;
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px;
}

@media (min-width: 480px) {
  .footer-cols {
    grid-template-columns: repeat(3, minmax(120px, 1fr));
  }
}

.footer-col h4 {
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text-faint);
  margin-bottom: 14px;
  font-weight: 600;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  font-size: 14px;
  color: var(--color-text-soft);
  transition: color 0.15s var(--ease);
}

.footer-col a:hover {
  color: var(--color-accent);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  align-items: center;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--color-border);
  font-size: 12.5px;
  color: var(--color-text-faint);
}

/* ── Reveal-on-scroll ─────────────────────────────────────────────────── */

[data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.6s var(--ease),
    transform 0.6s var(--ease);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Security page specifics ─────────────────────────────────────────── */

.page-hero {
  padding: 72px 0 56px;
}

.page-hero .h1 {
  max-width: 16em;
}

.pillar-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.pillar {
  display: grid;
  gap: 18px;
  padding: 36px 0;
  border-bottom: 1px solid var(--color-border);
}

.pillar:first-child {
  padding-top: 0;
}

.pillar:last-child {
  border-bottom: none;
}

@media (min-width: 780px) {
  .pillar {
    grid-template-columns: 220px 1fr;
    gap: 40px;
  }
}

.pillar .num {
  font-family: var(--font-mono);
  color: var(--color-text-faint);
  font-size: 13px;
}

.pillar h3 {
  margin-top: 6px;
  font-size: 1.4rem;
}

.pillar p {
  color: var(--color-text-soft);
  margin-top: 12px;
  max-width: 58em;
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--color-border);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.faq-item {
  background: var(--color-surface);
}

.faq-item summary {
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 600;
  font-size: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-size: 20px;
  font-weight: 400;
  color: var(--color-accent);
  flex-shrink: 0;
  transition: transform 0.2s var(--ease);
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item .faq-body {
  padding: 0 24px 22px;
  color: var(--color-text-soft);
  font-size: 14.5px;
  max-width: 60em;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12.5px;
  font-weight: 600;
  padding: 7px 13px;
  border-radius: 999px;
  border: 1px solid var(--color-border-strong);
  color: var(--color-text-soft);
}

.badge svg {
  width: 13px;
  height: 13px;
  color: var(--color-accent);
}
