/* Productbuilders — main stylesheet (deep green theme) */


/* ========== ICON STRIP (preview bar) ========== */
.icon-strip {
  background: var(--bg-2);
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
  font-family: var(--mono);
}
.icon-strip-row {
  display: flex;
  align-items: center;
  gap: 24px;
}
.icon-strip-label {
  color: var(--accent);
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
}
.icon-strip-items {
  display: flex;
  gap: 8px;
  flex: 1;
  overflow-x: auto;
  scrollbar-width: thin;
}
.icon-strip-items::-webkit-scrollbar { height: 4px; }
.icon-strip-items::-webkit-scrollbar-thumb { background: var(--line-strong); border-radius: 4px; }
.icon-strip-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255,255,255,0.02);
  color: var(--fg-2);
  flex-shrink: 0;
  transition: 0.2s;
  cursor: default;
}
.icon-strip-item:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-1px); }
.icon-strip-glyph { display: inline-flex; }
.icon-strip-name { font-size: 0.75rem; color: var(--fg-muted); letter-spacing: 0.04em; }
.icon-strip-item:hover .icon-strip-name { color: var(--accent); }

/* ========== ICONS IN BUTTONS / LINKS ========== */
.nav-link { display: inline-flex; align-items: center; gap: 6px; }
.nav-link-icon { display: inline-flex; opacity: 0.7; }
.nav-link:hover .nav-link-icon { opacity: 1; }
.nav-link.active .nav-link-icon { opacity: 1; color: var(--accent); }

.nav-cta-icon { display: inline-flex; }
.btn-icon { display: inline-flex; margin-right: 2px; }

.m-link { display: flex !important; align-items: center !important; gap: 12px; }
.m-link-icon { color: var(--fg-muted); display: inline-flex; }
.m-link.active .m-link-icon { color: var(--accent); }

.tier-tag { display: inline-flex !important; align-items: center; gap: 6px; }
.tier-tag-icon { display: inline-flex; }

.cd-k { display: inline-flex; align-items: center; gap: 8px; }
.cd-icon { display: inline-flex; color: var(--accent); }

.nav {
  position: sticky; top: 0; z-index: 100;
  padding: 18px 0;
  transition: padding 0.25s ease, background 0.25s ease, backdrop-filter 0.25s ease, border-color 0.25s ease;
  border-bottom: 1px solid transparent;
}
.nav-scrolled {
  padding: 10px 0;
  background: rgba(3, 51, 32, 0.85);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom-color: var(--line);
}
.nav-row { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: baseline; }
.brand-mark {
  font-family: var(--sans);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--fg);
}
.brand-dot { color: var(--accent); padding: 0 1px; }
.brand-ital { font-family: "Instrument Serif", Georgia, ui-serif, serif; font-style: italic; font-weight: 400; color: var(--accent); padding-left: 1px; }
.brand-mark-2 { display: inline-flex; align-items: center; gap: 10px; }
.brand-mono {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--accent);
  color: #1a0a04;
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.04em;
  position: relative;
}
.brand-mono::after {
  content: ""; position: absolute; right: 6px; bottom: 6px;
  width: 6px; height: 6px; background: #1a0a04; border-radius: 1.5px;
}
.brand-stack { display: inline-flex; flex-direction: column; line-height: 1.0; }
.brand-t1 { font-size: 1rem; font-weight: 600; letter-spacing: -0.025em; color: var(--fg); }
.brand-t2 { font-family: "Instrument Serif", Georgia, ui-serif, serif; font-style: italic; font-weight: 400; font-size: 1rem; color: var(--accent); margin-top: 2px; }
.brand-mono-lg { width: 56px; height: 56px; border-radius: 12px; font-size: 1.5rem; }
.brand-mono-lg::after { right: 7px; bottom: 7px; width: 7px; height: 7px; border-radius: 2px; }
.brand-t1-lg { font-size: 1.375rem; }
.brand-t2-lg { font-size: 1.375rem; margin-top: 2px; }
.nav-links { display: flex; gap: 4px; }
.nav-link {
  padding: 8px 14px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--fg-2);
  border-radius: 999px;
  transition: color 0.2s, background 0.2s;
}
.nav-link:hover { color: var(--fg); background: rgba(255,255,255,0.06); }
.nav-link.active { color: var(--fg); }
.nav-link.active::after {
  content: "";
  display: block;
  height: 1px;
  background: var(--accent);
  width: 60%;
  margin: 2px auto 0;
}
.nav-right { display: flex; align-items: center; gap: 14px; }
.nav-cta { padding: 10px 16px; font-size: 0.85rem; }
.nav-menu-btn { display: none; padding: 10px; }
.burger { width: 22px; height: 14px; position: relative; display: inline-block; }
.burger i { position: absolute; left: 0; right: 0; height: 1.5px; background: var(--fg); transition: 0.25s; }
.burger i:nth-child(1) { top: 2px; }
.burger i:nth-child(2) { bottom: 2px; }
.burger.open i:nth-child(1) { top: 6px; transform: rotate(45deg); }
.burger.open i:nth-child(2) { bottom: 6px; transform: rotate(-45deg); }

.mobile-menu { display: none; }

/* ========== LANG SWITCHER ========== */
.lang-switcher { position: relative; }
.lang-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.75rem;
  font-family: var(--mono);
  color: var(--fg-2);
  background: transparent;
  transition: 0.2s;
}
.lang-btn:hover { border-color: var(--line-strong); color: var(--fg); }
.lang-flag { display: inline-flex; line-height: 0; border-radius: 3px; overflow: hidden; box-shadow: 0 0 0 1px rgba(0,0,0,0.25); }
.lang-code { letter-spacing: 0.06em; font-weight: 600; }
.lang-chev { transition: transform 0.2s; opacity: 0.7; }
.lang-chev.open { transform: rotate(180deg); }
.lang-menu {
  position: absolute; top: calc(100% + 8px); right: 0;
  min-width: 200px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 6px;
  box-shadow: 0 20px 40px -10px rgba(0,0,0,0.5);
  z-index: 50;
  animation: dropIn 0.18s ease-out;
}
@keyframes dropIn { from { opacity:0; transform: translateY(-4px); } to { opacity:1; transform: none; } }
.lang-item {
  width: 100%;
  display: flex; align-items: center; gap: 10px;
  padding: 10px 11px;
  border-radius: 10px;
  font-size: 0.85rem;
  color: var(--fg-2);
  text-align: left;
  transition: 0.15s;
}
.lang-item:hover { background: rgba(255,255,255,0.06); color: var(--fg); }
.lang-item.active { background: rgba(245,111,66,0.16); color: var(--fg); }
.lang-code-dim { margin-left: auto; font-family: var(--mono); font-size: 0.75rem; opacity: 0.55; }

/* ========== HERO ========== */
.hero {
  padding: 90px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(60% 50% at 80% 20%, rgba(245,111,66,0.14), transparent 60%);
  pointer-events: none;
}
.hero-sub { padding: 70px 0 40px; }
.hero-inner { position: relative; max-width: 1100px; }
.hero-eyebrow {
  color: var(--accent);
  margin-bottom: 28px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}
.hero-eyebrow::before {
  content: ""; width: 24px; height: 1px; background: var(--accent);
}
.hero-title {
  font-size: clamp(2.75rem, 7vw, 6.25rem);
  line-height: 1.0;
  letter-spacing: -0.035em;
  margin-bottom: 36px;
  font-weight: 600;
  color: var(--fg);
}
.hero-line { display: block; }
.hero-line:nth-child(1) { transition-delay: 0ms; }
.hero-line:nth-child(2) { transition-delay: 80ms; }
.hero-line:nth-child(3) { transition-delay: 160ms; }
.accent-i {
  font-family: "Instrument Serif", Georgia, ui-serif, serif;
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
  position: relative;
  padding-right: 0.04em;
}

/* Italic-serif accent (used inline via <Rich>) */
.it-accent {
  font-family: "Instrument Serif", Georgia, ui-serif, serif;
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
  position: relative;
}
.it-accent[data-it]::after,
.accent-i[data-it]::after {
  display: none;
}

/* ITALIC SERIF REVIEW BAR */
.it-review {
  background: var(--bg-2);
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
}
.it-review-row { display: flex; align-items: center; gap: 24px; }
.it-review-label { color: var(--accent); font-weight: 600; white-space: nowrap; flex-shrink: 0; }
.it-review-items { display: flex; gap: 10px; flex: 1; overflow-x: auto; scrollbar-width: thin; }
.it-review-items::-webkit-scrollbar { height: 4px; }
.it-review-items::-webkit-scrollbar-thumb { background: var(--line-strong); border-radius: 4px; }
.it-review-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px 6px 6px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,0.02);
  font-size: 0.75rem;
  color: var(--fg-2);
  flex-shrink: 0;
}
.it-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px; height: 20px;
  background: var(--accent);
  color: #1a0a04;
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 0.75rem;
  font-weight: 700;
}
.it-label { font-family: var(--sans); }

/* PULL QUOTE SECTION (#4) */
.pullquote {
  padding: 100px 0;
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.pullquote-block {
  position: relative;
  max-width: max-content;
  margin: 0 auto;
  padding: 0 0 0 40px;
}
.pullquote-line { white-space: nowrap; }
.pullquote-block::before {
  content: "\201C";
  position: absolute;
  left: -10px;
  top: -28px;
  font-family: "Instrument Serif", Georgia, serif;
  font-style: italic;
  font-size: 7.5rem;
  color: var(--accent);
  line-height: 1;
}
.pullquote-text {
  font-family: "Instrument Serif", Georgia, ui-serif, serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(2.25rem, 4.4vw, 4rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--fg);
  margin-bottom: 28px;
  position: relative;
}
.pullquote-text[data-it]::after {
  display: none;
}
.pullquote-line {
  display: block;
}
.pullquote-line-2 {
  padding-left: 2.4em;
}
.pullquote-cite { color: var(--fg-muted); }

/* Stat suffix (#6) */
.proof-suf {
  color: var(--accent);
  padding-left: 0.02em;
  position: relative;
}
.proof-suf[data-it]::after {
  display: none;
}
.hero-lede {
  max-width: 640px;
  font-size: clamp(1rem, 1.6vw, 1.3125rem);
  line-height: 1.5;
  color: var(--fg-2);
  margin-bottom: 40px;
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 100px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.hero-stat { padding: 8px 0; }
.hero-stat-num {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--fg);
}
.hero-stat-lab { color: var(--fg-muted); }

/* ========== SECTIONS ========== */
:root { --density: 1; }
.section { padding: calc(120px * var(--density)) 0; position: relative; }
.tier { border-radius: var(--tweak-radius, 18px); }
.contact-form-wrap { border-radius: calc(var(--tweak-radius, 18px) + 2px); }
.compare-table { border-radius: calc(var(--tweak-radius, 18px) - 2px); }
.section-alt { background: var(--bg-2); }
.section-kicker {
  color: var(--accent);
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}
.section-kicker::before { content: ""; width: 18px; height: 1px; background: var(--accent); }
.section-title {
  font-size: clamp(2.125rem, 4.4vw, 3.75rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  max-width: 18ch;
  margin-bottom: 20px;
  font-weight: 600;
  color: var(--fg);
}
.section-sub {
  font-size: 1.25rem;
  line-height: 1.5;
  color: var(--fg-2);
  max-width: 56ch;
  margin-bottom: 56px;
}

/* ========== MANIFESTO ========== */
.manifesto-body {
  font-size: clamp(1.375rem, 2.4vw, 2.125rem);
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--fg);
  max-width: 26ch;
  margin: 0 0 80px;
  font-weight: 500;
}
.pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}
.pillar {
  padding: 28px 28px;
  border-right: 1px solid var(--line);
}
.pillar:first-child { padding-left: 0; }
.pillar:last-child { border-right: 0; padding-right: 0; }
.pillar-num { color: var(--fg-muted); margin-bottom: 18px; }
.pillar-k { font-size: 1.375rem; font-weight: 600; letter-spacing: -0.02em; margin-bottom: 8px; color: var(--fg); }
.pillar-v { font-size: 0.85rem; color: var(--fg-2); line-height: 1.5; }

/* ========== COMPARE TABLE ========== */
.compare-table {
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  background: rgba(0,0,0,0.18);
}
.compare-head {
  display: grid;
  grid-template-columns: 1.2fr 1.4fr 1.4fr;
  background: rgba(0,0,0,0.25);
  border-bottom: 1px solid var(--line);
}
.compare-col-h { padding: 18px 24px; }
.compare-pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.compare-pill-a { background: rgba(255,255,255,0.10); color: var(--fg-muted); }
.compare-pill-b { background: var(--accent); color: #1a0a04; }
.compare-row {
  display: grid;
  grid-template-columns: 1.2fr 1.4fr 1.4fr;
  border-bottom: 1px solid var(--line);
  transition: background 0.15s;
}
.compare-row:hover { background: rgba(255,255,255,0.03); }
.compare-row:last-child { border-bottom: 0; }
.compare-row > div { padding: 18px 24px; }
.compare-k { color: var(--fg-muted); align-self: center; }
.compare-a { color: var(--fg-2); align-self: center; border-left: 1px solid var(--line); }
.compare-b { color: var(--fg); align-self: center; border-left: 1px solid var(--line); font-weight: 500; }

/* ========== PROOF ========== */
.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.proof-stat {
  padding: 40px 24px;
  border-right: 1px solid var(--line);
}
.proof-stat:last-child { border-right: 0; }
.proof-num {
  font-size: clamp(3.375rem, 6.6vw, 6rem);
  line-height: 1;
  letter-spacing: -0.045em;
  margin-bottom: 14px;
  color: var(--fg);
  font-weight: 600;
}
.proof-suf { color: var(--accent); }
.proof-lab { color: var(--fg-muted); max-width: 22ch; }
.proof-src {
  margin-top: 10px;
  max-width: 24ch;
  font-family: var(--mono);
  font-size: 0.6875rem;
  line-height: 1.5;
  color: var(--fg-dim);
}
.proof-src a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-color: var(--line-strong);
  transition: color 0.2s, text-decoration-color 0.2s;
}
.proof-src a:hover { color: var(--accent); text-decoration-color: var(--accent); }

/* ========== PROCESS ========== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.process-step {
  padding: 32px 24px 32px 0;
  border-right: 1px dashed var(--line);
  position: relative;
}
.process-step:last-child { border-right: 0; }
.process-t { font-size: 1.5rem; font-weight: 600; letter-spacing: -0.02em; margin: 0 0 12px 0; line-height: 1.15; color: var(--fg); }
.process-d { color: var(--fg-2); font-size: 1rem; line-height: 1.55; max-width: 28ch; }

/* ========== AUDIENCES ========== */
.aud-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}
.aud-card {
  padding: 36px 32px;
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  transition: background 0.2s;
}
.aud-card:nth-child(2n) { border-right: 0; }
.aud-card:nth-last-child(-n+2) { border-bottom: 0; }
.aud-card:hover { background: rgba(255,255,255,0.03); }
.aud-ix-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 22px; padding-right: 24px; }
.aud-ix { color: var(--accent); font-weight: 600; }
.aud-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--accent);
  color: #1a0a04;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
}
.aud-featured {
  position: relative;
  background:
    radial-gradient(60% 80% at 0% 0%, rgba(245,111,66,0.10), transparent 60%);
}
.aud-featured .aud-t { color: var(--accent); }
.aud-t { font-size: 1.625rem; font-weight: 600; letter-spacing: -0.02em; margin-bottom: 10px; line-height: 1.15; color: var(--fg); }
.aud-d { color: var(--fg-2); max-width: 50ch; line-height: 1.55; }

/* ========== CTA ========== */
.cta { padding: 100px 0 140px; }
.cta-inner {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
  position: relative;
}
.cta-inner::before {
  content: "";
  position: absolute;
  inset: -80px -120px;
  background: radial-gradient(50% 60% at 50% 50%, rgba(245,111,66,0.14), transparent 70%);
  pointer-events: none; z-index: -1;
}
.cta-kicker { color: var(--accent); margin-bottom: 24px; display: inline-block; font-weight: 500; }
.cta-title {
  font-size: clamp(2.125rem, 5vw, 3.75rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
  font-weight: 600;
  color: var(--fg);
}
.cta-sub { color: var(--fg-2); font-size: 1.25rem; max-width: 50ch; margin: 0 auto 32px; }
.cta-btn { padding: 16px 28px; font-size: 1rem; }

/* ========== TIERS ========== */
.tiers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.tier {
  padding: 32px 28px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  transition: 0.25s;
  position: relative;
}
.tier:hover { border-color: var(--line-strong); transform: translateY(-2px); box-shadow: 0 12px 32px -16px rgba(0,0,0,0.3); }
.tier-featured {
  background: linear-gradient(180deg, #064f33 0%, #033320 100%);
  border-color: var(--accent);
}
.tier-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; }
.tier-tag {
  padding: 6px 10px;
  background: rgba(245,111,66,0.16);
  color: var(--accent);
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
}
.tier-featured .tier-tag { background: var(--accent); color: #1a0a04; }
.tier-badge { color: var(--accent); font-weight: 600; }
.tier-name { font-size: 1.75rem; font-weight: 600; letter-spacing: -0.02em; line-height: 1.1; margin-bottom: 14px; color: var(--fg); }
.tier-meta { display: flex; align-items: baseline; gap: 14px; margin-bottom: 18px; }
.tier-dur {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--fg);
}
.tier-desc { color: var(--fg-2); font-size: 1rem; line-height: 1.55; margin-bottom: 22px; }
.tier-rule { height: 1px; background: var(--line); margin-bottom: 22px; }
.tier-inc { list-style: none; margin: 0 0 28px; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.tier-inc li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.85rem; color: var(--fg-2); }
.tier-tick { flex-shrink: 0; margin-top: 4px; color: var(--accent); }
.tier-cta { margin-top: auto; align-self: flex-start; }

/* ========== STACK ========== */
.stack-row { display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: end; margin-bottom: 60px; }
.stack-title { margin-bottom: 0; }
.stack-sub { margin-bottom: 0; }
.stack-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}
.stack-g {
  padding: 28px 28px;
  border-right: 1px solid var(--line);
}
.stack-g:first-child { padding-left: 0; }
.stack-g:last-child { border-right: 0; padding-right: 0; }
.stack-grid-pad .stack-g:first-child { padding-left: 28px; }
.stack-grid-pad .stack-g:last-child { padding-right: 28px; }
.stack-t { color: var(--accent); margin-bottom: 14px; font-weight: 600; }
.stack-v { font-size: 1rem; line-height: 1.5; color: var(--fg); font-weight: 500; }

/* ========== FAQ ========== */
.faq-list { display: flex; flex-direction: column; width: 100%; border-top: 1px solid var(--line); }
.faq-item {
  width: 100%;
  border-bottom: 1px solid var(--line);
  transition: background 0.2s;
}
.faq-item:hover { background: rgba(255,255,255,0.03); }
.faq-q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  padding: 28px 0;
  text-align: left;
  font-size: clamp(1rem, 1.6vw, 1.375rem);
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--fg);
}
.faq-icon {
  width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--fg-2);
  background: transparent;
  transition: 0.25s;
  flex-shrink: 0; margin-left: 24px;
}
.faq-item[open] .faq-icon { background: var(--accent); color: #1a0a04; border-color: var(--accent); transform: rotate(45deg); }
.faq-a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.35s ease; }
.faq-item[open] .faq-a { grid-template-rows: 1fr; }
.faq-a-inner {
  overflow: hidden;
  color: var(--fg-2);
  font-size: 1rem;
  line-height: 1.6;
  max-width: 70ch;
}
.faq-item[open] .faq-a-inner { padding-bottom: 28px; }

/* ========== CASES ========== */
/* auto-fit rather than a fixed count, so the row stays full whether there are
   two cases or four and none of them has to be re-laid out by hand. */
.cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 48px;
}
.case {
  display: flex;
  flex-direction: column;
  padding: 32px 28px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: calc(var(--tweak-radius, 18px) + 2px);
}
.case-t {
  font-size: 1.25rem;
  line-height: 1.25;
  letter-spacing: -0.02em;
  font-weight: 500;
  margin-bottom: 14px;
}
.case-d {
  color: var(--fg-muted);
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: 28px;
}
/* Pushed to the bottom so the figures line up across cards of unequal text. */
.case-figs {
  margin-top: auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 14px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.case-fig-k { color: var(--fg-dim); margin-bottom: 8px; }
.case-fig-v { font-size: 1.375rem; line-height: 1.1; letter-spacing: -0.02em; }
.case-fig-before .case-fig-v { color: var(--fg-muted); }
.case-fig-after .case-fig-v { color: var(--accent); }
.case-arrow { color: var(--fg-dim); display: inline-flex; }

/* ========== PEOPLE ========== */
.people-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  margin-top: 48px;
}
.person { padding: 36px 32px 36px 0; }
.person + .person { padding-left: 32px; border-left: 1px solid var(--line); }
.person-head { margin-bottom: 18px; }
.person-name {
  font-size: 1.5rem;
  letter-spacing: -0.025em;
  font-weight: 500;
  margin-bottom: 8px;
}
.person-role { color: var(--accent); }
.person-d { color: var(--fg-2); font-size: 0.9375rem; line-height: 1.65; }

/* ========== CONTACT ========== */
.contact-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-form-wrap {
  padding: 40px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 20px;
}
.contact-form { display: flex; flex-direction: column; gap: 24px; }
/* Honeypot. Positioned off-screen rather than display:none, which the more
   careful bots check for and skip; this one they fill in and give themselves
   away. aria-hidden and tabindex="-1" on the markup keep people out of it. */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 8px; }
fieldset.field { border: 0; padding: 0; margin: 0; min-width: 0; }
.field-l { color: var(--fg-muted); font-weight: 500; padding: 0; }
.field input, .field select, .field textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line-strong);
  padding: 10px 0;
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--fg);
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus { border-bottom-color: var(--accent); }
.field textarea { resize: vertical; font-family: var(--sans); }
.field select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--fg-muted) 50%),
                    linear-gradient(135deg, var(--fg-muted) 50%, transparent 50%);
  background-position: calc(100% - 14px) center, calc(100% - 9px) center;
  background-size: 5px 5px;
  background-repeat: no-repeat;
  padding-right: 30px;
}
.field select option { background: var(--bg-2); color: var(--fg); }

.chip-row { display: flex; gap: 8px; flex-wrap: wrap; padding-top: 4px; }
.chip {
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: transparent;
  font-size: 0.85rem;
  color: var(--fg-2);
  cursor: pointer;
  transition: 0.2s;
}
.chip:hover { border-color: var(--line-strong); color: var(--fg); }
.chip.active,
.chip:has(input:checked) { background: var(--accent); color: #1a0a04; border-color: var(--accent); }
.chip:focus-within { outline: 2px solid var(--accent); outline-offset: 2px; }

.form-foot { display: flex; justify-content: space-between; align-items: center; gap: 24px; margin-top: 8px; }
.form-consent { color: var(--fg-muted); max-width: 36ch; line-height: 1.5; font-size: 0.75rem; }

.form-sent {
  text-align: center; padding: 60px 24px;
  display: flex; flex-direction: column; align-items: center; gap: 24px;
}
.form-sent-mark {
  width: 72px; height: 72px;
  border-radius: 50%; background: var(--accent); color: #1a0a04;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.25rem;
  font-weight: 600;
}
.form-sent-msg { font-size: 1.375rem; max-width: 26ch; line-height: 1.3; font-weight: 500; color: var(--fg); }

.contact-direct {
  padding: 40px 0 0 0;
}
.cd-kicker { color: var(--accent); margin-bottom: 24px; display: inline-flex; align-items: center; gap: 10px; font-weight: 500; }
.cd-kicker::before { content: ""; width: 18px; height: 1px; background: var(--accent); }
.cd-list { list-style: none; margin: 0 0 32px; padding: 0; display: flex; flex-direction: column; }
.cd-list li { padding: 18px 0; border-bottom: 1px solid var(--line); }
.cd-list li:last-child { border-bottom: 0; }
.cd-k { color: var(--fg-muted); margin-bottom: 6px; font-weight: 500; }
.cd-v { font-size: 1rem; color: var(--fg); font-weight: 500; }
.cd-art { margin-top: 12px; }

/* ========== FOOTER ========== */
.footer { border-top: 1px solid var(--line); padding: 80px 0 32px; background: var(--bg); }
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 2fr;
  gap: 60px;
  margin-bottom: 80px;
}
.footer-logo { font-size: 1.375rem; font-weight: 600; letter-spacing: -0.02em; margin-bottom: 16px; color: var(--fg); }
.footer-tag { color: var(--fg-2); font-size: 1rem; max-width: 36ch; line-height: 1.5; margin-bottom: 24px; }
.footer-meta { color: var(--fg-muted); }
.footer-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-col-t { color: var(--fg-muted); margin-bottom: 8px; font-weight: 500; }
.footer-link {
  text-align: left;
  color: var(--fg-2);
  font-size: 1rem;
  transition: color 0.2s;
  background: none; border: none; padding: 0; cursor: pointer; font-family: inherit;
}
.footer-link:hover { color: var(--accent); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  flex-wrap: wrap; gap: 16px;
}
.footer-c { color: var(--fg-muted); }

/* utility classes */
.serif { font-family: var(--sans); font-weight: 600; letter-spacing: -0.02em; }
.mono { font-family: var(--mono); font-size: 0.75rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; }

/* ========== PLACEHOLDER ========== */
.placeholder {
  width: 100%;
  border-radius: 14px;
  position: relative;
  display: flex; align-items: flex-end;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg-2) !important;
  background-image: repeating-linear-gradient(135deg, transparent 0 14px, rgba(255,255,255,0.05) 14px 16px) !important;
}
.placeholder-inner { padding: 18px; color: var(--fg-muted); }

/* Buttons re-skin */
.btn-primary { background: var(--accent); color: #1a0a04; }
.btn-primary:hover { background: #f89373; }
.btn-ghost { background: transparent; color: var(--fg); border: 1px solid var(--line-strong); }
.btn-ghost:hover { background: rgba(255,255,255,0.06); border-color: var(--fg); }

::-webkit-scrollbar-thumb { background: var(--bg-3); }
::-webkit-scrollbar-thumb:hover { background: var(--fg-dim); }

/* ========== RESPONSIVE ========== */
@media (max-width: 960px) {
  :root { --gutter: 24px; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-menu-btn { display: inline-flex; }
  .mobile-menu {
    display: flex;
    flex-direction: column;
    padding: 8px var(--gutter) 24px;
    gap: 4px;
    border-top: 1px solid var(--line);
    background: var(--bg);
  }
  .m-link {
    text-align: left;
    padding: 14px 0;
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--fg);
    border-bottom: 1px solid var(--line);
  }
  .m-link.active { color: var(--accent); }
  .m-cta { margin-top: 16px; align-self: flex-start; }

  .hero { padding: 60px 0 60px; }
  .hero-stats { grid-template-columns: 1fr; gap: 0; margin-top: 56px; }
  .hero-stat { padding: 20px 0; border-bottom: 1px solid var(--line); }
  .hero-stat:last-child { border-bottom: 0; }

  .section { padding: 80px 0; }
  .pillars { grid-template-columns: 1fr 1fr; }
  .pillar { padding: 24px 16px 24px 0; }
  .pillar:nth-child(2n) { border-right: 0; padding-right: 0; }
  .pillar:nth-child(-n+2) { border-bottom: 1px solid var(--line); padding-bottom: 24px; }
  .pillar:nth-child(n+3) { padding-top: 24px; }

  .compare-head { grid-template-columns: 1fr 1fr; }
  .compare-head > div:first-child { display: none; }
  .compare-row { grid-template-columns: 1fr 1fr; }
  .compare-row .compare-k { grid-column: 1 / -1; padding: 12px 16px 0; border-bottom: 0; }
  .compare-row > div { padding: 12px 16px; }
  .compare-row .compare-a { border-left: 0; }

  .proof-grid { grid-template-columns: 1fr 1fr; }
  .proof-stat { padding: 28px 16px; border-bottom: 1px solid var(--line); }
  .proof-stat:nth-child(2n) { border-right: 0; }
  .proof-stat:nth-last-child(-n+2) { border-bottom: 0; }

  .process-grid { grid-template-columns: 1fr; }
  .process-step { padding: 24px 0 24px 0; border-right: 0; border-bottom: 1px dashed var(--line); }
  .process-step:last-child { border-bottom: 0; }

  .aud-grid { grid-template-columns: 1fr; }
  .aud-card { border-right: 0; padding: 28px 0; }
  .aud-card:nth-child(2n) { padding-left: 0; }
  .aud-card:nth-last-child(-n+2) { border-bottom: 1px solid var(--line); }
  .aud-card:last-child { border-bottom: 0; }

  .tiers-grid { grid-template-columns: 1fr; }
  .cases-grid { grid-template-columns: 1fr; margin-top: 36px; }
  .people-grid { grid-template-columns: 1fr; margin-top: 36px; }
  .person { padding: 28px 0; border-bottom: 1px solid var(--line); }
  .person + .person { padding-left: 0; border-left: 0; }
  .person:last-child { border-bottom: 0; }
  .stack-row { grid-template-columns: 1fr; gap: 24px; }
  .stack-grid { grid-template-columns: 1fr 1fr; }
  .stack-g { border-bottom: 1px solid var(--line); padding: 22px 16px 22px 0; }
  .stack-g:nth-child(2n) { border-right: 0; }
  .stack-g:nth-last-child(-n+2) { border-bottom: 0; }

  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .contact-form-wrap { padding: 28px 22px; }
  .field-row { grid-template-columns: 1fr; }
  .form-foot { flex-direction: column; align-items: flex-start; }

  .footer-top { grid-template-columns: 1fr; gap: 48px; margin-bottom: 56px; }
  .footer-cols { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 520px) {
  .hero-title { font-size: clamp(2.5rem, 12vw, 3.75rem); }
  .footer-cols { grid-template-columns: 1fr; }
  .compare-pill { font-size: 0.75rem; }
}

/* ========== PRIVACY ========== */
.hero-updated {
  margin-top: 18px;
  color: var(--fg-muted);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.privacy-body {
  max-width: 72ch;
  display: flex;
  flex-direction: column;
  gap: 56px;
}
.privacy-section {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--line);
}
.privacy-section:last-child { border-bottom: 0; padding-bottom: 0; }
.privacy-section .section-kicker { margin-bottom: 6px; }
.privacy-title {
  font-size: clamp(1.5rem, 2.4vw, 1.875rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--fg);
  margin: 0;
}
.privacy-prose {
  color: var(--fg-2);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}
.privacy-list {
  list-style: none;
  margin: 6px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.privacy-list li {
  display: grid;
  grid-template-columns: minmax(140px, 200px) 1fr;
  gap: 16px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  align-items: baseline;
}
.privacy-list li:first-child { border-top: 0; padding-top: 0; }
.privacy-list-k {
  color: var(--accent);
  font-size: 0.8rem;
  letter-spacing: 0.02em;
}
.privacy-list-v {
  color: var(--fg-2);
  font-size: 0.95rem;
  line-height: 1.55;
}
@media (max-width: 640px) {
  .privacy-list li { grid-template-columns: 1fr; gap: 4px; }
}
