/* ---------------------------------------------------------------------------
 * oida.ae — public landing
 * Tokens carried over from the iOS design system (OidaColor / OidaFont /
 * OidaSpacing) so the web and the app feel like one product.
 * ------------------------------------------------------------------------- */

:root {
  --paper: #FAF6EE;
  --paper-2: #F1E9D8;
  --cream: #F3EADB;
  --sand: #F5D6B8;
  --terracotta: #BE5236;
  --terracotta-deep: #9D3C25;
  --moss: #4E6A50;
  --moss-deep: #2E4232;
  --sun: #E9B344;
  --ink: #221814;
  --ink-2: #4A3B33;
  --ink-3: #8A7766;
  --line: #E6DCC9;

  --serif: 'Instrument Serif', Georgia, serif;
  --sans: 'Bricolage Grotesque', system-ui, -apple-system, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, monospace;

  --radius-card: 18px;
  --radius-pill: 999px;
  --shadow-soft: 0 1px 2px rgba(34, 24, 20, 0.04),
                  0 8px 24px rgba(34, 24, 20, 0.06);

  --wrap: 1240px;
  --gutter: 32px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--sans);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: 'ss01', 'cv11';
}

img, svg { display: block; max-width: 100%; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; }

::selection { background: var(--terracotta); color: #fff; }

.serif   { font-family: var(--serif); font-weight: 400; letter-spacing: -0.01em; }
.serif-i { font-family: var(--serif); font-style: italic; font-weight: 400; }
.mono    { font-family: var(--mono); }

.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
}

.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ---------------------------------------------------------------------------
 * Buttons / pills
 * ------------------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: var(--radius-pill);
  font-family: var(--sans);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.005em;
  transition: transform 120ms ease, background 120ms ease, color 120ms ease;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary   { background: var(--terracotta); color: #fff; }
.btn-primary:hover   { background: var(--terracotta-deep); }
.btn-ghost     { border: 1.5px solid var(--ink); color: var(--ink); }
.btn-ghost:hover     { background: var(--ink); color: var(--paper); }
.btn-quiet     { color: var(--ink-2); padding: 10px 14px; }
.btn-quiet:hover     { color: var(--ink); background: var(--paper-2); }

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: var(--paper-2);
  border-radius: var(--radius-pill);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-2);
}
.pill.terra { background: var(--terracotta); color: #fff; }
.pill.moss  { background: var(--moss);       color: #fff; }
.pill.sun   { background: var(--sun);        color: var(--ink); }

/* ---------------------------------------------------------------------------
 * Nav
 * ------------------------------------------------------------------------- */

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 246, 238, 0.85);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.brand {
  font-family: var(--serif);
  font-size: 26px;
  letter-spacing: -0.02em;
}
.brand .dot { color: var(--terracotta); }

.nav-links { display: flex; gap: 8px; }
.nav-links a {
  padding: 8px 14px;
  font-size: 14px;
  color: var(--ink-2);
  border-radius: var(--radius-pill);
}
.nav-links a:hover { background: var(--paper-2); color: var(--ink); }

.nav-cta { display: flex; gap: 8px; align-items: center; }
.lang-toggle {
  display: inline-flex;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--ink-3);
  gap: 6px;
}
.lang-toggle button[aria-pressed='true'] { color: var(--ink); font-weight: 600; }

.nav-burger { display: none; }

@media (max-width: 880px) {
  .nav-links { display: none; }
  .nav-cta .btn-ghost { display: none; }
  .nav-burger {
    display: inline-flex;
    width: 40px; height: 40px;
    align-items: center; justify-content: center;
    border-radius: 12px;
    color: var(--ink);
  }
  .nav-burger:hover { background: var(--paper-2); }
}

.mobile-menu {
  display: none;
  padding: 8px var(--gutter) 24px;
  border-top: 1px solid var(--line);
  background: rgba(250, 246, 238, 0.96);
}
.mobile-menu a {
  display: block;
  padding: 14px 0;
  font-size: 17px;
  border-bottom: 1px solid var(--line);
}
.mobile-menu.open { display: block; }

/* ---------------------------------------------------------------------------
 * Section scaffold
 * ------------------------------------------------------------------------- */

section { padding: clamp(80px, 8vw, 140px) 0; }
section.tight { padding: clamp(48px, 5vw, 80px) 0; }

.section-head {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: clamp(40px, 5vw, 64px);
  max-width: 720px;
}
.section-head h2 {
  font-family: var(--serif);
  font-size: clamp(40px, 5.4vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.015em;
}
.section-head h2 em {
  font-style: italic;
  color: var(--terracotta);
}
.section-head .lede {
  font-size: clamp(17px, 1.4vw, 19px);
  color: var(--ink-2);
  max-width: 56ch;
}

/* ---------------------------------------------------------------------------
 * Hero
 * ------------------------------------------------------------------------- */

.hero {
  padding: clamp(60px, 6vw, 100px) 0 clamp(80px, 8vw, 120px);
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
}
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-phone-wrap { order: -1; margin: 0 auto; max-width: 340px; }
}

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(64px, 10vw, 144px);
  line-height: 0.95;
  letter-spacing: -0.025em;
}
.hero h1 .i {
  font-style: italic;
  color: var(--terracotta);
}
.hero-lede {
  margin-top: 28px;
  font-size: clamp(18px, 1.6vw, 22px);
  color: var(--ink-2);
  max-width: 48ch;
  line-height: 1.45;
}

.hero-status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  padding: 8px 14px;
  background: var(--paper-2);
  border-radius: var(--radius-pill);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-2);
}
.hero-status .dot {
  width: 8px; height: 8px;
  background: var(--moss);
  border-radius: 50%;
  animation: pulse 2.6s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.55; transform: scale(0.85); }
}

.hero-flags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 36px;
}
.flag-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  font-size: 14px;
}

.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.hero-meta {
  margin-top: 18px;
  font-size: 13px;
  color: var(--ink-3);
}

/* Phone mockup */
.hero-phone-wrap {
  position: relative;
  aspect-ratio: 9 / 19;
  max-width: 400px;
  justify-self: end;
}
.phone-frame {
  position: relative;
  width: 100%;
  height: 100%;
  background: var(--ink);
  border-radius: 48px;
  padding: 12px;
  box-shadow:
    0 30px 80px rgba(34, 24, 20, 0.25),
    0 8px 16px rgba(34, 24, 20, 0.08),
    inset 0 0 0 1.5px rgba(255, 255, 255, 0.08);
}
.phone-screen {
  width: 100%;
  height: 100%;
  border-radius: 38px;
  overflow: hidden;
  background: var(--paper);
}
.phone-screen img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.phone-notch {
  position: absolute;
  top: 22px;
  left: 50%;
  transform: translateX(-50%);
  width: 116px;
  height: 32px;
  background: var(--ink);
  border-radius: 22px;
  z-index: 2;
}

/* ---------------------------------------------------------------------------
 * Drei Dinge — 3-column overview
 * ------------------------------------------------------------------------- */

.three-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2vw, 32px);
}
@media (max-width: 880px) { .three-grid { grid-template-columns: 1fr; } }

.three-card {
  background: var(--paper-2);
  border-radius: var(--radius-card);
  padding: clamp(28px, 3vw, 40px);
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 320px;
  position: relative;
  overflow: hidden;
}
.three-card .num {
  font-family: var(--serif);
  font-size: 64px;
  color: var(--terracotta);
  line-height: 1;
  opacity: 0.85;
}
.three-card h3 {
  font-family: var(--serif);
  font-size: 32px;
  line-height: 1.05;
  letter-spacing: -0.01em;
}
.three-card p {
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.55;
}
.three-card .tag {
  margin-top: auto;
  align-self: flex-start;
}

/* ---------------------------------------------------------------------------
 * Stempelpass — partner wall + story
 * ------------------------------------------------------------------------- */

.stempel-section { background: var(--cream); }

.partner-wall {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: clamp(48px, 5vw, 72px);
}
@media (max-width: 880px) { .partner-wall { grid-template-columns: repeat(2, 1fr); } }

.partner-card {
  background: var(--paper);
  border-radius: var(--radius-card);
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 130px;
  text-align: center;
  border: 1px solid var(--line);
}
.partner-card img {
  max-height: 56px;
  max-width: 70%;
  object-fit: contain;
}
.partner-card .name {
  margin-top: 12px;
  font-size: 13px;
  color: var(--ink-3);
  font-family: var(--mono);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.stamp-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.stamp {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--terracotta);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-family: var(--serif);
  font-size: 22px;
  box-shadow: 0 4px 12px rgba(190, 82, 54, 0.25);
}
.stamp.empty {
  background: transparent;
  border: 2px dashed var(--line);
  color: var(--ink-3);
}

/* ---------------------------------------------------------------------------
 * Phone-mini — full screenshot, centered in card, no crop.
 * Used by the scan-flow 3-up and any "show the whole phone" tile.
 * ------------------------------------------------------------------------- */

.phone-mini {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 28px 28px 0;
  background: var(--paper-2);
}
.phone-mini img {
  width: 100%;
  max-width: 220px;
  height: auto;
  border-radius: 22px;
  box-shadow:
    0 16px 40px rgba(34, 24, 20, 0.14),
    0 2px 6px rgba(34, 24, 20, 0.06);
  border: 1px solid rgba(34, 24, 20, 0.06);
}

.scan-card {
  background: var(--paper-2);
  border-radius: var(--radius-card);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-height: 0;
}
.scan-card .body {
  padding: 24px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.scan-card .num {
  font-family: var(--serif);
  font-size: 36px;
  color: var(--terracotta);
  line-height: 1;
}
.scan-card h3 {
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: -0.005em;
}
.scan-card p {
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.5;
}

/* ---------------------------------------------------------------------------
 * Sackerl-Board in-app mockup
 * ------------------------------------------------------------------------- */

.sackerl-mock {
  width: 100%;
  max-width: 380px;
  background: var(--paper);
  border-radius: 28px;
  padding: 22px 18px 18px;
  box-shadow:
    0 24px 60px rgba(34, 24, 20, 0.16),
    0 4px 10px rgba(34, 24, 20, 0.06);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.sackerl-header { display: flex; justify-content: space-between; align-items: baseline; padding: 0 4px; }
.sackerl-title  { font-family: var(--serif); font-size: 28px; letter-spacing: -0.01em; }
.sackerl-sub    { font-family: var(--mono); font-size: 11px; color: var(--ink-3); letter-spacing: 0.08em; }

.sackerl-chips {
  display: flex; gap: 6px; overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: none;
}
.sackerl-chips::-webkit-scrollbar { display: none; }
.sackerl-chip {
  flex-shrink: 0;
  padding: 6px 12px;
  background: var(--paper-2);
  border-radius: var(--radius-pill);
  font-size: 12px;
  color: var(--ink-2);
  white-space: nowrap;
}
.sackerl-chip.active { background: var(--ink); color: var(--paper); }
.sackerl-chip.terra  { background: rgba(190, 82, 54, 0.12); color: var(--terracotta-deep); }
.sackerl-chip.moss   { background: rgba(78, 106, 80, 0.14); color: var(--moss-deep); }

.sackerl-post {
  display: flex;
  gap: 12px;
  padding: 14px;
  background: var(--paper-2);
  border-radius: 14px;
  align-items: flex-start;
}
.sackerl-avatar {
  width: 38px; height: 38px; flex-shrink: 0;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 18px;
  color: var(--paper);
}
.sackerl-avatar.terra { background: var(--terracotta); }
.sackerl-avatar.moss  { background: var(--moss); }
.sackerl-avatar.sun   { background: var(--sun); color: var(--ink); }

.sackerl-body { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 4px; }
.sackerl-body header {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 12px;
  gap: 8px;
}
.sackerl-body header strong { font-weight: 600; }
.sackerl-body header .trust {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--ink-3);
  letter-spacing: 0.06em;
  padding: 2px 6px;
  background: var(--paper);
  border-radius: 6px;
}
.sackerl-kind {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--terracotta);
}
.sackerl-item { font-size: 13px; line-height: 1.4; color: var(--ink); }
.sackerl-body footer { font-size: 11px; color: var(--ink-3); }

.sackerl-cta {
  width: 100%;
  padding: 14px;
  background: var(--ink);
  color: var(--paper);
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  margin-top: 4px;
}

/* ---------------------------------------------------------------------------
 * Flaggen SVG-map mockup (replaces broken screenshot)
 * ------------------------------------------------------------------------- */

.flaggen-map {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  background: linear-gradient(180deg, #1c2b22 0%, #0e1612 100%);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(250, 246, 238, 0.08);
}
.flaggen-map .grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(250,246,238,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(250,246,238,0.06) 1px, transparent 1px);
  background-size: 40px 40px;
}
.flaggen-map .label {
  position: absolute;
  top: 16px; left: 18px;
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(250, 246, 238, 0.6);
}
.flaggen-map .legend {
  position: absolute; top: 16px; right: 18px;
  display: flex; gap: 8px; align-items: center;
  font-family: var(--mono); font-size: 9px;
  letter-spacing: 0.1em; color: rgba(250, 246, 238, 0.7);
}
.flaggen-map .legend i { width: 8px; height: 8px; border-radius: 50%; display: inline-block; }
.flaggen-map .pin {
  position: absolute;
  width: 14px; height: 14px;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(250, 246, 238, 0.06);
}
.flaggen-map .pin::after {
  content: '';
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  background: inherit;
  opacity: 0.18;
  filter: blur(6px);
}
.flaggen-map .pin.at  { background: #BE5236; }
.flaggen-map .pin.de  { background: #E9B344; }
.flaggen-map .pin.ch  { background: #C0392B; }
.flaggen-map .pin.open { background: rgba(250, 246, 238, 0.35); box-shadow: 0 0 0 4px rgba(250, 246, 238, 0.04); }

.flaggen-map .pin.you {
  width: 18px; height: 18px;
  background: var(--paper);
  border: 3px solid var(--sun);
  z-index: 2;
}
.flaggen-map .pin .tag {
  position: absolute;
  top: -34px; left: 50%;
  transform: translateX(-50%);
  padding: 4px 8px;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.06em;
  border-radius: 6px;
  white-space: nowrap;
  box-shadow: 0 4px 8px rgba(0,0,0,0.25);
}
.flaggen-map .pin .tag::after {
  content: ''; position: absolute;
  bottom: -4px; left: 50%; transform: translateX(-50%);
  border: 4px solid transparent;
  border-top-color: var(--paper);
}

/* ---------------------------------------------------------------------------
 * Story sections (Schmäh-Filter, Heimflug, Flaggen)
 * ------------------------------------------------------------------------- */

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
}
.story-grid.reverse { direction: rtl; }
.story-grid.reverse > * { direction: ltr; }

@media (max-width: 880px) {
  .story-grid { grid-template-columns: 1fr; }
  .story-grid.reverse { direction: ltr; }
}

.story-art {
  background: var(--paper-2);
  border-radius: var(--radius-card);
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.story-art.moss { background: var(--moss); color: #fff; }
.story-art.sun  { background: var(--sun);  color: var(--ink); }

.story-art img { width: 86%; height: auto; }

.story-copy h3 {
  font-family: var(--serif);
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.03;
  letter-spacing: -0.015em;
  margin-bottom: 18px;
}
.story-copy h3 em { font-style: italic; color: var(--terracotta); }
.story-copy p {
  font-size: clamp(16px, 1.3vw, 18px);
  color: var(--ink-2);
  line-height: 1.55;
  margin-bottom: 14px;
}
.story-copy .meta {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 18px;
}

/* ---------------------------------------------------------------------------
 * Preise / Pricing
 * ------------------------------------------------------------------------- */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 880px) { .pricing-grid { grid-template-columns: 1fr; } }

.tier {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: clamp(28px, 3vw, 40px);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.tier.highlight {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.tier.highlight .price small,
.tier.highlight .tier-feat li { color: rgba(250, 246, 238, 0.7); }
.tier h4 {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.tier.highlight h4 { color: var(--sun); }
.tier .price {
  font-family: var(--serif);
  font-size: 56px;
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.tier .price small {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 400;
  color: var(--ink-3);
}
.tier-feat {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 15px;
  color: var(--ink-2);
}
.tier-feat li::before {
  content: '·';
  margin-right: 10px;
  color: var(--terracotta);
  font-weight: 700;
}

/* ---------------------------------------------------------------------------
 * Partner CTA band
 * ------------------------------------------------------------------------- */

.partner-cta {
  background: var(--moss-deep);
  color: var(--paper);
  border-radius: var(--radius-card);
  padding: clamp(40px, 5vw, 72px);
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  align-items: center;
  gap: clamp(28px, 4vw, 56px);
  margin: clamp(48px, 5vw, 72px) 0;
}
@media (max-width: 880px) { .partner-cta { grid-template-columns: 1fr; } }
.partner-cta h3 {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.04;
  letter-spacing: -0.015em;
}
.partner-cta h3 em { font-style: italic; color: var(--sun); }
.partner-cta p {
  margin-top: 14px;
  font-size: 16px;
  color: rgba(250, 246, 238, 0.78);
  max-width: 48ch;
}
.partner-cta .actions { display: flex; flex-direction: column; gap: 12px; }
.partner-cta .btn-primary { background: var(--sun); color: var(--ink); }
.partner-cta .btn-primary:hover { background: #f4c25e; }
.partner-cta .btn-ghost { border-color: rgba(250, 246, 238, 0.4); color: var(--paper); }
.partner-cta .btn-ghost:hover { background: rgba(250, 246, 238, 0.12); color: var(--paper); }

/* ---------------------------------------------------------------------------
 * FAQ
 * ------------------------------------------------------------------------- */

.faq-list { display: flex; flex-direction: column; gap: 4px; }
.faq-item {
  border-top: 1px solid var(--line);
  padding: 20px 0;
}
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--serif);
  font-size: clamp(22px, 2.2vw, 28px);
  line-height: 1.25;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 26px;
  color: var(--terracotta);
  margin-left: 18px;
  transition: transform 200ms ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
  margin-top: 12px;
  font-size: 16px;
  color: var(--ink-2);
  line-height: 1.55;
  max-width: 64ch;
}

/* ---------------------------------------------------------------------------
 * Waitlist
 * ------------------------------------------------------------------------- */

.waitlist {
  background: var(--ink);
  color: var(--paper);
  border-radius: var(--radius-card);
  padding: clamp(40px, 5vw, 80px);
}
.waitlist h2 {
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.015em;
  max-width: 16ch;
}
.waitlist h2 em { font-style: italic; color: var(--sun); }
.waitlist .lede {
  margin: 20px 0 36px;
  color: rgba(250, 246, 238, 0.75);
  font-size: 17px;
  max-width: 52ch;
}

.waitlist form {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr auto;
  gap: 10px;
  align-items: stretch;
  background: rgba(250, 246, 238, 0.06);
  border: 1px solid rgba(250, 246, 238, 0.12);
  border-radius: 16px;
  padding: 8px;
}
@media (max-width: 880px) {
  .waitlist form { grid-template-columns: 1fr; }
}

.waitlist input,
.waitlist select {
  background: transparent;
  border: 0;
  padding: 14px 16px;
  color: var(--paper);
  font: inherit;
  font-size: 15px;
  border-radius: 10px;
}
.waitlist input::placeholder { color: rgba(250, 246, 238, 0.45); }
.waitlist input:focus,
.waitlist select:focus { outline: none; background: rgba(250, 246, 238, 0.06); }

.waitlist select option { background: var(--ink); color: var(--paper); }

.waitlist .btn {
  background: var(--sun);
  color: var(--ink);
  font-weight: 700;
}
.waitlist .btn:hover { background: #f4c25e; }
.waitlist .btn[disabled] { opacity: 0.6; cursor: progress; }

.waitlist .status {
  margin-top: 18px;
  font-size: 14px;
  color: var(--sun);
  min-height: 1.4em;
}
.waitlist .status.err { color: #f3a48a; }

.waitlist .privacy {
  margin-top: 16px;
  font-size: 12px;
  color: rgba(250, 246, 238, 0.5);
}
.waitlist .privacy a { text-decoration: underline; }

/* ---------------------------------------------------------------------------
 * Footer
 * ------------------------------------------------------------------------- */

footer {
  padding: 80px 0 48px;
  border-top: 1px solid var(--line);
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 48px;
}
@media (max-width: 880px) {
  .foot-grid { grid-template-columns: 1fr 1fr; }
}
.foot-col h5 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 16px;
}
.foot-col a {
  display: block;
  padding: 6px 0;
  font-size: 14px;
  color: var(--ink-2);
}
.foot-col a:hover { color: var(--terracotta); }

.foot-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--ink-3);
  font-family: var(--mono);
  letter-spacing: 0.08em;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

/* ---------------------------------------------------------------------------
 * Scroll reveal — opt-in via [data-reveal]
 * ------------------------------------------------------------------------- */

[data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 600ms ease, transform 600ms cubic-bezier(0.16, 1, 0.3, 1);
}
[data-reveal].in {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
}
