/* ============================================================================
   Veto marketing site — main stylesheet
   ============================================================================
   Source of truth for the marketing site's visual language. Compiled via
   Tailwind CLI (see package.json:build:css). Output: dist/styles.css.

   Structure:
     1. Tailwind layers (base / components / utilities)
     2. :root design tokens (cream + navy + gold palette)
     3. Typography rules (Fraunces + Inter)
     4. Component classes (.pill, .h-display, .step-card, etc.)
     5. Page-specific blocks (phone mock, FAQ, legal pages)

   The same token names are used in the iOS app's DesignTokens.swift; keep
   them in sync if you ever rebrand.
*/

/* The @tailwind directives below are no-ops in the browser (CSS at-rules
   it doesn't recognise). They activate only when Tailwind CLI compiles
   this file. We keep them so the build still works, but the page DOES
   NOT depend on them — the layout utilities used by the HTML are written
   by hand below. That way opening any HTML file directly in a browser
   renders correctly, without needing `npm run build`. */
@tailwind base;
@tailwind components;
@tailwind utilities;

/* ─── Layout utility fallbacks ─────────────────────────────────────────
   Hand-written equivalents of the small set of Tailwind utility classes
   referenced from the HTML. Don't add new Tailwind utilities to the HTML
   without adding the matching rule here, or run a real `npm run build`
   to generate them properly. */

/* Display */
.block { display: block; }
.inline-flex { display: inline-flex; }
.flex { display: flex; }
.grid { display: grid; }
.hidden { display: none; }

/* Position */
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.top-0 { top: 0; }
.inset-x-0 { left: 0; right: 0; }
.inset-0 { inset: 0; }
.z-50 { z-index: 50; }
.z-10 { z-index: 10; }

/* Flex */
.flex-col { flex-direction: column; }
.flex-row { flex-direction: row; }
.flex-wrap { flex-wrap: wrap; }
.flex-1 { flex: 1 1 0%; }

/* Align / justify */
.items-start    { align-items: flex-start; }
.items-center   { align-items: center; }
.items-baseline { align-items: baseline; }
.items-stretch  { align-items: stretch; }
.justify-start   { justify-content: flex-start; }
.justify-center  { justify-content: center; }
.justify-end     { justify-content: flex-end; }
.justify-between { justify-content: space-between; }

/* Grid */
.grid-cols-1  { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-cols-3  { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-cols-12 { grid-template-columns: repeat(12, minmax(0, 1fr)); }

/* Gap */
.gap-3  { gap: 12px; }
.gap-5  { gap: 20px; }
.gap-6  { gap: 24px; }
.gap-12 { gap: 48px; }

/* Spacing */
.mt-4  { margin-top: 16px; }
.mt-5  { margin-top: 20px; }
.mt-6  { margin-top: 24px; }
.mt-8  { margin-top: 32px; }
.mt-10 { margin-top: 40px; }
.mt-12 { margin-top: 48px; }
.mb-6  { margin-bottom: 24px; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* Sizing */
.h-16     { height: 64px; }
.min-w-0  { min-width: 0; }
.max-w-2xl { max-width: 672px; }
.max-w-3xl { max-width: 768px; }

/* Text */
.text-center { text-align: center; }
.text-left   { text-align: left; }

/* Order */
.order-1 { order: 1; }
.order-2 { order: 2; }

/* Responsive: sm ≥ 640px, md ≥ 768px, lg ≥ 1024px */
@media (min-width: 640px) {
  .sm\:flex-row     { flex-direction: row; }
  .sm\:items-center { align-items: center; }
}
@media (min-width: 768px) {
  .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (min-width: 1024px) {
  .lg\:grid-cols-12 { grid-template-columns: repeat(12, minmax(0, 1fr)); }
  .lg\:col-span-5   { grid-column: span 5 / span 5; }
  .lg\:col-span-7   { grid-column: span 7 / span 7; }
  .lg\:justify-end  { justify-content: flex-end; }
  .lg\:order-1      { order: 1; }
  .lg\:order-2      { order: 2; }
}

/* ─── 1. Design tokens ────────────────────────────────────────────────── */
:root {
  /* Warm cream palette with navy + gold */
  --veto-base:             #FAF6EC;
  --veto-surface:          #FFFFFF;
  --veto-surface-elevated: #FBF7ED;
  --veto-surface-warm:     #F4ECD6;

  --veto-text-primary:     #1A1B2E;
  --veto-text-secondary:   #5B5A6E;
  --veto-text-muted:       #9492A2;

  --veto-border:           #E5DCC2;
  --veto-border-subtle:    #EFE7CF;
  --veto-border-strong:    #C9B98E;

  /* Action = navy (filled buttons) */
  --veto-action:           #1A1B2E;
  --veto-action-pressed:   #0A0B1E;
  --veto-action-subtle:    #ECE7D6;

  /* Gold accent — calibrated muted gold, not yellow */
  --veto-gold:             #B89046;
  --veto-gold-pressed:     #9C7732;
  --veto-gold-soft:        #F2E6C3;
  --veto-gold-glow:        rgba(184, 144, 70, 0.18);

  --veto-danger:           #B8474A;
  --veto-danger-soft:      rgba(184, 71, 74, 0.10);

  --veto-glass:            rgba(250, 246, 236, 0.78);

  /* Dark callout retained as inverse */
  --veto-dark-bg:          #15172A;
  --veto-dark-text:        #F5EBD3;
  --veto-dark-text-muted:  #9A9CB4;
}

html { scroll-behavior: smooth; }

body {
  background: var(--veto-base);
  color: var(--veto-text-primary);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: 'ss01' on, 'cv11' on;
}

/* ─── 2. Typography helpers ───────────────────────────────────────────── */
.font-display {
  font-family: 'Fraunces', Georgia, serif;
  font-variation-settings: 'opsz' 144, 'SOFT' 50, 'WONK' 0;
}
.font-body { font-family: 'Inter', system-ui, -apple-system, sans-serif; }

.wordmark {
  font-family: 'Fraunces', Georgia, serif;
  font-variation-settings: 'opsz' 144, 'SOFT' 100, 'WONK' 1;
  font-weight: 700;
  font-style: italic;
  letter-spacing: -0.01em;
  text-transform: lowercase;
  color: var(--veto-text-primary);
}
.wordmark .v-gold { color: var(--veto-gold); }

/* Image-based wordmark (the boxed icon used in nav + footer). The image is
   a square icon containing the wordmark + utensils — sized small so it
   reads as a logo lockup, not a hero. */
.wordmark-img {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  transition: opacity 180ms ease-out;
}
.wordmark-img:hover { opacity: 0.85; }
.wordmark-img img {
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 8px;
}
.wordmark-img.sm img { width: 32px; height: 32px; }

.eyebrow {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--veto-gold-pressed);
}

.h-display {
  font-family: 'Fraunces', Georgia, serif;
  font-variation-settings: 'opsz' 144, 'SOFT' 50, 'WONK' 1;
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 0.95;
  color: var(--veto-text-primary);
}
.h-display em {
  font-style: italic;
  font-weight: 500;
  color: var(--veto-gold);
  font-variation-settings: 'opsz' 144, 'SOFT' 100, 'WONK' 1;
}
.h-section {
  font-family: 'Fraunces', Georgia, serif;
  font-variation-settings: 'opsz' 96, 'SOFT' 50, 'WONK' 0;
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.04;
  color: var(--veto-text-primary);
}
.h-section em {
  font-style: italic;
  color: var(--veto-gold);
}
.lede {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  color: var(--veto-text-secondary);
  letter-spacing: -0.005em;
}

/* ─── 3. Nav ──────────────────────────────────────────────────────────── */
.nav-bar {
  background: transparent;
  transition: background 200ms ease-out, backdrop-filter 200ms ease-out,
    border-color 200ms ease-out;
  border-bottom: 0.5px solid transparent;
}
.nav-bar.scrolled {
  background: var(--veto-glass);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom-color: var(--veto-border);
}

/* ─── 4. Buttons ──────────────────────────────────────────────────────── */
.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  padding: 0 28px;
  border-radius: 9999px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1;
  transition: transform 180ms ease-out, background 180ms ease-out,
    color 180ms ease-out, border-color 180ms ease-out, box-shadow 180ms ease-out;
  cursor: pointer;
  white-space: nowrap;
  letter-spacing: -0.005em;
}
.pill-primary {
  background: var(--veto-action);
  color: var(--veto-base);
  border: 1.5px solid var(--veto-action);
  box-shadow: 0 1px 0 0 rgba(255,255,255,0.4) inset,
              0 6px 18px -6px rgba(26, 27, 46, 0.35);
}
.pill-primary:hover {
  background: var(--veto-action-pressed);
  border-color: var(--veto-action-pressed);
  box-shadow: 0 1px 0 0 rgba(255,255,255,0.4) inset,
              0 10px 24px -8px rgba(26, 27, 46, 0.45);
}
.pill-primary:active { transform: translateY(1px); }
.pill-secondary {
  background: transparent;
  color: var(--veto-text-primary);
  border: 1.5px solid var(--veto-border-strong);
}
.pill-secondary:hover {
  border-color: var(--veto-gold);
  color: var(--veto-gold-pressed);
}

.pill-sm {
  height: 32px;
  padding: 0 14px;
  font-size: 13px;
  font-weight: 500;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--veto-gold-soft);
  color: var(--veto-gold-pressed);
  border: 0.5px solid transparent;
}
.pill-sm .dot {
  width: 6px;
  height: 6px;
  border-radius: 9999px;
  background: var(--veto-gold);
  box-shadow: 0 0 0 0 var(--veto-gold);
  animation: pulse-dot 2.4s ease-out infinite;
}
@keyframes pulse-dot {
  0%   { box-shadow: 0 0 0 0 rgba(184, 144, 70, 0.55); }
  100% { box-shadow: 0 0 0 8px rgba(184, 144, 70, 0); }
}

/* ─── 5. Phone mock ───────────────────────────────────────────────────── */
.phone {
  position: relative;
  width: 320px;
  height: 660px;
  border-radius: 48px;
  background: var(--veto-dark-bg);
  border: 1.5px solid var(--veto-border-strong);
  box-shadow:
    0 50px 80px -22px rgba(26, 27, 46, 0.30),
    0 14px 30px -12px rgba(26, 27, 46, 0.20),
    0 0 0 6px rgba(184, 144, 70, 0.08);
  overflow: hidden;
  flex-shrink: 0;
}
.phone::before {
  content: '';
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 110px;
  height: 28px;
  background: #000;
  opacity: 0.9;
  border-radius: 9999px;
  z-index: 10;
}
.phone-screen {
  position: absolute;
  inset: 56px 16px 16px 16px;
  border-radius: 32px;
  background: linear-gradient(180deg, var(--veto-base), var(--veto-surface));
  overflow: hidden;
  padding: 22px 18px 18px 18px;
  display: flex;
  flex-direction: column;
}
.phone-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}
.phone-meta .place {
  font-family: 'Fraunces', Georgia, serif;
  font-variation-settings: 'opsz' 96, 'SOFT' 50, 'WONK' 0;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: -0.01em;
  color: var(--veto-text-primary);
}
.phone-meta .label {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--veto-gold-pressed);
}

.card-stack {
  position: relative;
  flex: 1;
  margin: 8px 0 20px 0;
}
.swipe-card {
  position: absolute;
  inset: 0;
  border-radius: 24px;
  background: var(--veto-surface);
  border: 0.5px solid var(--veto-border);
  box-shadow: 0 8px 24px -8px rgba(26, 27, 46, 0.10);
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform-origin: center bottom;
  will-change: transform, opacity;
}
.swipe-card .photo {
  flex: 1;
  border-radius: 16px;
  background:
    radial-gradient(120% 80% at 20% 0%, rgba(184, 144, 70, 0.22), transparent 60%),
    radial-gradient(140% 100% at 100% 100%, rgba(26, 27, 46, 0.10), transparent 50%),
    linear-gradient(135deg, var(--veto-surface-warm), var(--veto-surface-elevated));
  position: relative;
  overflow: hidden;
}
.swipe-card .photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(transparent 49.6%, var(--veto-border) 49.6%, var(--veto-border) 50.4%, transparent 50.4%);
  opacity: 0.45;
  mask: radial-gradient(120% 80% at 50% 50%, black 30%, transparent 70%);
  -webkit-mask: radial-gradient(120% 80% at 50% 50%, black 30%, transparent 70%);
}

/* When a real food photo is set inline via background-image, drop the
   crosshatch placeholder and lay down a subtle warm tint so the photo
   sits in-palette with the rest of the page. */
.swipe-card .photo.has-photo {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.swipe-card .photo.has-photo::after {
  background:
    linear-gradient(180deg, rgba(26, 27, 46, 0.04), rgba(26, 27, 46, 0.18)),
    linear-gradient(0deg, rgba(184, 144, 70, 0.10), rgba(184, 144, 70, 0));
  opacity: 1;
  mask: none;
  -webkit-mask: none;
}
.swipe-card .meta { margin-top: 14px; }
.swipe-card .name-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
}
.swipe-card .name {
  font-family: 'Fraunces', Georgia, serif;
  font-variation-settings: 'opsz' 96, 'SOFT' 50, 'WONK' 0;
  font-weight: 500;
  font-size: 18px;
  letter-spacing: -0.015em;
  color: var(--veto-text-primary);
  flex: 1;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.swipe-card .sub-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  margin-top: 4px;
}
.swipe-card .sub {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 12px;
  color: var(--veto-text-secondary);
}
.swipe-card .rating {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 13px;
  line-height: 1;
  color: var(--veto-text-primary);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-feature-settings: 'tnum' on;
}
.swipe-card .rating .star {
  color: var(--veto-gold);
  font-size: 14px;
  line-height: 1;
  transform: translateY(-0.5px);
}
.swipe-card .reviews {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 11px;
  color: var(--veto-text-muted);
  font-feature-settings: 'tnum' on;
}

.veto-stamp {
  position: absolute;
  top: 36px;
  left: 50%;
  transform: translate(-50%, 0) rotate(-12deg) scale(0.6);
  font-family: 'Fraunces', Georgia, serif;
  font-variation-settings: 'opsz' 144, 'SOFT' 100, 'WONK' 1;
  font-style: italic;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--veto-danger);
  border: 3px solid var(--veto-danger);
  padding: 6px 14px;
  border-radius: 10px;
  font-size: 24px;
  background: var(--veto-danger-soft);
  opacity: 0;
}

.swipe-card.card-1 { animation: card-cycle 9s linear infinite; }
.swipe-card.card-2 { animation: card-cycle 9s linear infinite; animation-delay: -3s; }
.swipe-card.card-3 { animation: card-cycle 9s linear infinite; animation-delay: -6s; }
.swipe-card .veto-stamp.s-1 { animation: stamp 9s linear infinite; }
.swipe-card .veto-stamp.s-2 { animation: stamp 9s linear infinite; animation-delay: -3s; }
.swipe-card .veto-stamp.s-3 { animation: stamp 9s linear infinite; animation-delay: -6s; }

@keyframes card-cycle {
  0%   { transform: translate(0, 14px) scale(0.94); opacity: 0.55; z-index: 1; }
  22%  { transform: translate(0, 7px)  scale(0.97); opacity: 0.85; z-index: 2; }
  33%  { transform: translate(0, 0)    scale(1);    opacity: 1;    z-index: 3; }
  66%  { transform: translate(0, 0)    scale(1);    opacity: 1;    z-index: 3; }
  78%  { transform: translate(-140%, -10px) rotate(-18deg) scale(1); opacity: 0; z-index: 3; }
  79%  { transform: translate(0, 22px) scale(0.9);  opacity: 0;    z-index: 0; }
  100% { transform: translate(0, 14px) scale(0.94); opacity: 0.55; z-index: 1; }
}
@keyframes stamp {
  0%, 60%   { opacity: 0; transform: translate(-50%, 0) rotate(-12deg) scale(0.6); }
  66%       { opacity: 1; transform: translate(-50%, 0) rotate(-12deg) scale(1); }
  76%       { opacity: 1; transform: translate(-50%, -8px) rotate(-12deg) scale(1); }
  78%, 100% { opacity: 0; transform: translate(-50%, -16px) rotate(-12deg) scale(1); }
}

.phone-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 6px;
}
.phone-actions .dot-row { display: flex; gap: 5px; }
.phone-actions .dot-row span {
  width: 6px; height: 6px; border-radius: 9999px;
  background: var(--veto-border);
}
.phone-actions .dot-row span:nth-child(1) { background: var(--veto-gold); }
.phone-actions .btn {
  width: 44px; height: 44px;
  border-radius: 9999px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 20px; line-height: 1;
  color: var(--veto-text-muted);
  background: var(--veto-surface);
  border: 1px solid var(--veto-border);
}
.phone-actions .btn.veto { color: var(--veto-danger); border-color: var(--veto-danger); }
.phone-actions .btn.yes  { color: var(--veto-gold-pressed); border-color: var(--veto-gold); }

@media (prefers-reduced-motion: reduce) {
  .swipe-card.card-1, .swipe-card.card-2, .swipe-card.card-3,
  .swipe-card .veto-stamp { animation: none !important; }
  .swipe-card.card-1 { transform: translate(0,0) scale(1); opacity: 1; z-index: 3; }
  .swipe-card.card-2 { transform: translate(0,7px) scale(0.97); opacity: 0.85; z-index: 2; }
  .swipe-card.card-3 { transform: translate(0,14px) scale(0.94); opacity: 0.55; z-index: 1; }
  .swipe-card .veto-stamp { opacity: 0; }
}

/* ─── 6. Hero gold underline accent ───────────────────────────────────── */
.gold-underline {
  position: relative;
  display: inline-block;
}
.gold-underline::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  bottom: 0.05em;
  height: 0.18em;
  background: var(--veto-gold-soft);
  z-index: -1;
  border-radius: 4px;
}

/* ─── 7. Step cards ───────────────────────────────────────────────────── */
.step-card {
  background: var(--veto-surface);
  border: 0.5px solid var(--veto-border);
  border-radius: 24px;
  padding: 36px 32px;
  min-height: 280px;
  transition: border-color 200ms ease-out, transform 200ms ease-out,
              box-shadow 200ms ease-out;
  display: flex;
  flex-direction: column;
  position: relative;
}
.step-card:hover {
  border-color: var(--veto-gold);
  transform: translateY(-3px);
  box-shadow: 0 18px 36px -18px var(--veto-gold-glow);
}
.step-num {
  font-family: 'Fraunces', Georgia, serif;
  font-variation-settings: 'opsz' 144, 'SOFT' 100, 'WONK' 1;
  font-style: italic;
  font-weight: 500;
  font-size: 64px;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--veto-gold);
}
.step-title {
  font-family: 'Fraunces', Georgia, serif;
  font-variation-settings: 'opsz' 96, 'SOFT' 50, 'WONK' 0;
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.015em;
  color: var(--veto-text-primary);
  margin-top: 32px;
}
.step-body {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.55;
  color: var(--veto-text-secondary);
  margin-top: 10px;
}

/* ─── 8. Group block (kept dark for contrast moment) ──────────────────── */
.group-block {
  background: var(--veto-dark-bg);
  color: var(--veto-dark-text);
  border-radius: 32px;
  padding: 128px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.group-block::before {
  content: '';
  position: absolute;
  inset: -1px;
  background: radial-gradient(60% 50% at 50% 0%, rgba(184, 144, 70, 0.22), transparent 70%);
  pointer-events: none;
}
.group-block .h-section { color: var(--veto-dark-text); }
.group-block .h-section em { color: var(--veto-gold); }
.group-block .lede { color: var(--veto-dark-text-muted); }
.group-block .eyebrow { color: var(--veto-gold); }
.avatar-row {
  display: flex; justify-content: center; align-items: center;
  margin-top: 48px; gap: 0;
}
.avatar {
  width: 44px; height: 44px; border-radius: 9999px;
  background: var(--veto-surface-elevated);
  border: 2px solid var(--veto-dark-bg);
  margin-left: -10px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Fraunces', serif;
  font-weight: 500; font-size: 14px;
  color: var(--veto-text-primary);
  opacity: 0.7;
}
.avatar:first-child { margin-left: 0; }
.avatar.more {
  background: transparent;
  color: var(--veto-dark-text-muted);
  border-color: var(--veto-dark-text-muted);
  opacity: 1;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
}

/* ─── 9. Form ─────────────────────────────────────────────────────────── */
.email-input {
  background: var(--veto-surface);
  height: 56px;
  padding: 0 20px;
  border: 1.5px solid var(--veto-border-strong);
  border-radius: 14px;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: var(--veto-text-primary);
  width: 100%;
  outline: none;
  transition: border-color 200ms ease-out, box-shadow 200ms ease-out;
}
.email-input::placeholder { color: var(--veto-text-muted); }
.email-input:focus {
  border-color: var(--veto-gold);
  box-shadow: 0 0 0 4px var(--veto-gold-glow);
}
.email-input.invalid { border-color: var(--veto-danger); }
.form-error {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: var(--veto-danger);
  margin-top: 10px;
  min-height: 18px;
}
.form-success {
  font-family: 'Fraunces', serif;
  font-variation-settings: 'opsz' 96, 'SOFT' 50, 'WONK' 0;
  font-weight: 500;
  font-size: 22px;
  color: var(--veto-text-primary);
}

/* ─── 10. FAQ ─────────────────────────────────────────────────────────── */
.faq-item { border-top: 1px solid var(--veto-border); }
.faq-item:last-child { border-bottom: 1px solid var(--veto-border); }
.faq-summary {
  list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  padding: 24px 0;
  cursor: pointer;
  font-family: 'Fraunces', Georgia, serif;
  font-variation-settings: 'opsz' 96, 'SOFT' 50, 'WONK' 0;
  font-weight: 500;
  font-size: 19px;
  letter-spacing: -0.012em;
  color: var(--veto-text-primary);
}
.faq-summary::-webkit-details-marker { display: none; }
.faq-summary .plus {
  width: 24px; height: 24px; position: relative;
  transition: transform 200ms ease-out;
}
.faq-summary .plus::before,
.faq-summary .plus::after {
  content: ''; position: absolute;
  background: var(--veto-gold-pressed);
  left: 50%; top: 50%;
}
.faq-summary .plus::before { width: 14px; height: 1.5px; transform: translate(-50%, -50%); }
.faq-summary .plus::after  { width: 1.5px; height: 14px; transform: translate(-50%, -50%); }
details[open] .faq-summary .plus { transform: rotate(45deg); }
.faq-body {
  padding: 0 0 24px 0;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--veto-text-secondary);
  max-width: 60ch;
}

/* ─── 11. Footer ──────────────────────────────────────────────────────── */
footer { border-top: 0.5px solid var(--veto-border); }
.footer-link {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 13px;
  color: var(--veto-text-muted);
  transition: color 200ms ease-out;
}
.footer-link:hover { color: var(--veto-gold-pressed); }

/* ─── 12. Layout utilities ────────────────────────────────────────────── */
.container-x { max-width: 1140px; margin-inline: auto; padding-inline: 24px; }
@media (min-width: 768px) { .container-x { padding-inline: 32px; } }

@media (max-width: 767px) {
  .h-display.hero    { font-size: 64px; }
  .h-section         { font-size: 38px; }
  .group-block       { padding: 88px 28px; border-radius: 24px; }
}
@media (min-width: 768px) {
  .h-display.hero    { font-size: clamp(88px, 9vw, 128px); }
  .h-section         { font-size: 56px; }
}

/* Soft warm background ornament */
.hero-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    radial-gradient(60% 50% at 15% 10%, rgba(184, 144, 70, 0.14), transparent 60%),
    radial-gradient(50% 40% at 85% 30%, rgba(184, 144, 70, 0.08), transparent 60%);
}

/* ─── 13. Legal pages (privacy / terms) ───────────────────────────────── */
.legal-page {
  max-width: 720px;
  margin: 0 auto;
  padding: 144px 24px 96px;
}
.legal-page .eyebrow {
  margin-bottom: 12px;
}
.legal-page h1 {
  font-family: 'Fraunces', Georgia, serif;
  font-variation-settings: 'opsz' 144, 'SOFT' 50, 'WONK' 1;
  font-weight: 500;
  font-size: clamp(40px, 6vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--veto-text-primary);
  margin-bottom: 16px;
}
.legal-page .effective-date {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: var(--veto-text-muted);
  margin-bottom: 48px;
}
.legal-page h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-variation-settings: 'opsz' 96, 'SOFT' 50, 'WONK' 0;
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.015em;
  color: var(--veto-text-primary);
  margin: 40px 0 12px;
}
.legal-page p,
.legal-page li {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.65;
  color: var(--veto-text-secondary);
  margin-bottom: 14px;
}
.legal-page ul {
  padding-left: 22px;
  list-style: disc;
}
.legal-page a {
  color: var(--veto-gold-pressed);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}
.legal-page a:hover { color: var(--veto-gold); }
.legal-page strong { color: var(--veto-text-primary); font-weight: 600; }
.legal-page hr {
  border: 0;
  border-top: 1px solid var(--veto-border);
  margin: 48px 0;
}
