/* ============================================================================
   FutureFest — Brand Layer
   Powered by TerraLux. Inherits the TerraLux Living tokens (palette, type,
   spacing, motion) but FutureFest is its own thing:
     · gold-forward (italic + amber, the festival voice)
     · Earth-One composition rules (single screen, narrow column, big breathing)
     · Lora italic display + Inter body, cream surface, dark-slate ink
     · Leaf glyph as the brandmark; FutureFest wordmark sets its own identity
   ============================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  /* ── Inherited from TerraLux Living ────────────────────────────────── */
  --cornsilk:     #FFF4DF;
  --lux-green:    #455643;
  --green-dark:   #2d3a2e;
  --dark-slate:   #1a1714;
  --bg-deepest:   #0f0d0b;
  --white:        #FFFFFF;

  --terra-gold:   #c9a84c;
  --gold-light:   #dcc079;
  --gold-dark:    #a88a36;
  --gold-glow:    rgba(216, 182, 112, 0.20);
  --gold-soft:    rgba(201, 168, 76, 0.12);

  --cream:    #f7f5f0;
  --gray-50:  #F9F9FA;
  --gray-100: #E8E9EA;
  --gray-200: #D1D3D4;
  --gray-300: #B5B7B9;
  --gray-400: #8C8E91;
  --gray-600: #6B6D71;
  --gray-700: #4A4C4F;
  --gray-900: #1F2023;

  /* ── FutureFest semantic roles ─────────────────────────────────────── */
  --bg:           var(--cream);
  --bg-alt:       var(--white);
  --bg-deep:      var(--dark-slate);
  --bg-tinted:    var(--cornsilk);

  --fg-1:         var(--gray-900);
  --fg-2:         var(--gray-600);
  --fg-3:         var(--gray-400);
  --fg-heading:   var(--dark-slate);
  --fg-emphasis:  var(--terra-gold);

  --accent:       var(--terra-gold);
  --accent-hover: var(--gold-light);
  --accent-press: var(--gold-dark);

  --border-subtle: var(--gray-100);
  --border-strong: var(--gray-200);
  --border-accent: var(--terra-gold);

  /* ── Type stack — FutureFest leans into Lora for ALL display
       (Inter only for micro / labels / body). The italic-serif IS the
       brand voice. */
  --font-display: 'Lora', Georgia, 'Times New Roman', serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* ── Scale ─────────────────────────────────────────────────────────── */
  --fs-display: clamp(2.5rem, 6.5vw, 4.5rem);
  --fs-h1:      clamp(2rem, 5vw, 3.25rem);
  --fs-h2:      clamp(1.75rem, 4vw, 2.5rem);
  --fs-h3:      clamp(1.25rem, 2.5vw, 1.625rem);
  --fs-lead:    clamp(1.0625rem, 1.8vw, 1.1875rem);
  --fs-body:    clamp(1rem, 1.4vw, 1.0625rem);
  --fs-small:   0.9375rem;
  --fs-micro:   0.8125rem;

  /* ── Spacing (fluid) ───────────────────────────────────────────────── */
  --space-3xs: 0.25rem;
  --space-2xs: 0.5rem;
  --space-xs:  clamp(0.75rem, 1.5vw, 1rem);
  --space-sm:  clamp(1rem, 2vw, 1.25rem);
  --space-md:  clamp(1.25rem, 2.5vw, 1.75rem);
  --space-lg:  clamp(1.5rem, 3vw, 2.5rem);
  --space-xl:  clamp(2rem, 4vw, 3.5rem);
  --space-2xl: clamp(3rem, 5vw, 5rem);
  --space-3xl: clamp(4rem, 6vw, 6rem);

  /* ── Radii ─────────────────────────────────────────────────────────── */
  --radius-sm:   6px;
  --radius-md:   10px;
  --radius-lg:   14px;
  --radius-xl:   20px;
  --radius-pill: 999px;

  /* ── Shadows (green-tinted) ────────────────────────────────────────── */
  --shadow-sm:   0 1px 3px  rgba(69, 86, 67, 0.06);
  --shadow-md:   0 6px 18px rgba(69, 86, 67, 0.09);
  --shadow-lg:   0 12px 30px rgba(69, 86, 67, 0.14);
  --shadow-gold: 0 6px 22px var(--gold-glow);

  /* ── Motion ────────────────────────────────────────────────────────── */
  --ease:           cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out:       cubic-bezier(0.16, 1, 0.3, 1);
  --duration-fast:  0.15s;
  --duration-base:  0.25s;
  --duration-slow:  0.4s;
  --transition:     var(--duration-base) var(--ease);

  /* ── Layout ────────────────────────────────────────────────────────── */
  --container-max:    1180px;
  --container-narrow: 720px;
  --container-prose:  600px;
}

/* ── Reset ─────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
img, svg, video { max-width: 100%; display: block; }

/* ── Base ──────────────────────────────────────────────────────────── */
body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.65;
  color: var(--fg-1);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.12;
  color: var(--fg-heading);
  letter-spacing: -0.01em;
  text-wrap: balance;
  margin: 0;
}
h1, .h1, .display { font-size: var(--fs-h1); letter-spacing: -0.02em; line-height: 1.05; font-weight: 500; }
.display          { font-size: var(--fs-display); letter-spacing: -0.025em; }
h2, .h2 { font-size: var(--fs-h2); }
h3, .h3 { font-size: var(--fs-h3); }

p { text-wrap: pretty; margin: 0 0 var(--space-md); }
.lead { font-size: var(--fs-lead); line-height: 1.65; color: var(--fg-2); }
.small { font-size: var(--fs-small); }
.muted { color: var(--fg-2); }

/* The italic-gold device — FutureFest's signature mark. */
em, .it {
  font-style: italic;
  color: var(--fg-emphasis);
  font-family: var(--font-display);
  font-weight: 500;
}
strong { font-weight: 600; color: var(--fg-heading); }

a {
  color: var(--fg-heading);
  text-decoration: underline;
  text-decoration-color: var(--terra-gold);
  text-underline-offset: 4px;
  text-decoration-thickness: 1.5px;
  transition: color var(--transition);
}
a:hover { color: var(--terra-gold); }
a.unstyled, a.unstyled:hover { text-decoration: none; color: inherit; }

/* ── Eyebrow with gold rule beneath ────────────────────────────────── */
.eyebrow {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: var(--fs-micro);
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.24em;
  margin: 0 0 var(--space-md);
}
.eyebrow::after {
  content: '';
  width: 2.5rem;
  height: 1px;
  background: var(--terra-gold);
  opacity: 0.6;
}
.eyebrow--left { align-items: flex-start; }

/* ── FutureFest wordmark ───────────────────────────────────────────── */
.ff-mark {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  text-decoration: none;
  border: 0;
  color: inherit;
}
.ff-mark__leaf {
  width: 1.6rem;
  height: 1.6rem;
  flex-shrink: 0;
}
.ff-mark__text {
  display: inline-flex;
  flex-direction: column;
  gap: 0.15rem;
  align-items: flex-start;
}
.ff-mark__name {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 1;
  color: var(--fg-heading);
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.ff-mark__name em {
  color: var(--terra-gold);
  font-style: italic;
  font-family: var(--font-display);
  font-weight: 500;
}
.ff-mark__tag {
  font-family: var(--font-body);
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--terra-gold);
}
.ff-mark--hero {
  flex-direction: column;
  gap: var(--space-sm);
  align-items: center;
}
.ff-mark--hero .ff-mark__leaf { width: 2.5rem; height: 2.5rem; }
.ff-mark--hero .ff-mark__name { font-size: clamp(2rem, 4vw, 2.5rem); }
.ff-mark--hero .ff-mark__text { align-items: center; }
.ff-mark--hero .ff-mark__tag { font-size: 0.6875rem; }
.ff-mark--on-deep .ff-mark__name { color: var(--white); }
.ff-mark--on-deep .ff-mark__tag  { color: var(--gold-light); }

/* ── Surfaces ──────────────────────────────────────────────────────── */
.bg-cream { background: var(--cream); }
.bg-white { background: var(--white); }
.bg-deep  {
  background: linear-gradient(135deg, var(--bg-deepest) 0%, var(--dark-slate) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.bg-deep::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('/assets/img/patterns/living-pattern-detailed.svg');
  background-repeat: repeat;
  background-size: 320px;
  opacity: 0.04;
  pointer-events: none;
}
.bg-deep > * { position: relative; z-index: 1; }
.bg-deep h1, .bg-deep h2, .bg-deep h3 { color: var(--white); }
.bg-deep .muted, .bg-deep .lead { color: rgba(255, 255, 255, 0.78); }

/* ── Section + container ───────────────────────────────────────────── */
.section {
  padding-block: var(--space-3xl);
  padding-inline: clamp(1.5rem, 5vw, 3rem);
}
.container         { max-width: var(--container-max);    margin-inline: auto; }
.container-narrow  { max-width: var(--container-narrow); margin-inline: auto; }
#alliance-form-wrap .card,
#alliance-intro.card {
  margin-left: auto;
  margin-right: auto;
}
.container-prose   { max-width: var(--container-prose);  margin-inline: auto; }

.center { text-align: center; }
.mt-md  { margin-top: var(--space-md); }
.mt-lg  { margin-top: var(--space-lg); }
.mt-xl  { margin-top: var(--space-xl); }
.mb-md  { margin-bottom: var(--space-md); }
.mb-lg  { margin-bottom: var(--space-lg); }
.mb-xl  { margin-bottom: var(--space-xl); }

/* Gold hairline */
.gold-rule {
  border: 0;
  border-top: 1px solid var(--terra-gold);
  opacity: 0.5;
  margin: var(--space-xl) auto;
  max-width: 5rem;
}

/* ── One-screen hero (Earth One pattern) ───────────────────────────── */
.stage {
  min-height: 100svh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: var(--space-md) clamp(1.5rem, 5vw, 3rem);
}
.stage__head {
  display: flex;
  justify-content: center;
  padding-top: var(--space-sm);
}
.stage__body {
  display: grid;
  place-items: center;
  text-align: center;
  padding: var(--space-xl) 0;
}
.stage__inner {
  max-width: 32rem;
  width: 100%;
}
.stage__foot {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  padding-bottom: var(--space-sm);
  color: var(--fg-2);
  font-size: 0.8125rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.stage__foot strong { color: var(--fg-1); font-weight: 600; }

/* ── Pill CTAs (Earth One trio) ────────────────────────────────────── */
.pill-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-sm);
  margin-top: var(--space-xl);
}
.pill {
  --pill-fg: var(--fg-heading);
  --pill-bg: var(--white);
  --pill-bd: var(--gray-200);
  display: inline-flex;
  align-items: center;
  gap: var(--space-2xs);
  padding: 0.7rem 1.4rem;
  font: inherit;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--pill-fg);
  background: var(--pill-bg);
  border: 1px solid var(--pill-bd);
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all var(--transition);
}
.pill:hover {
  border-color: var(--terra-gold);
  color: var(--terra-gold);
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}
.pill--primary {
  --pill-bg: var(--terra-gold);
  --pill-fg: var(--fg-heading);
  --pill-bd: var(--terra-gold);
  font-weight: 600;
}
.pill--primary:hover {
  --pill-bg: var(--gold-light);
  --pill-bd: var(--gold-light);
  color: var(--fg-heading);
  box-shadow: var(--shadow-gold);
}
.pill:disabled {
  opacity: 0.62;
  cursor: wait;
  transform: none;
}
.pill--ghost-gold {
  --pill-bd: var(--terra-gold);
  --pill-fg: var(--gold-dark);
  --pill-bg: transparent;
}
.pill--ghost-gold:hover {
  --pill-bg: var(--terra-gold);
  --pill-fg: var(--fg-heading);
}
.pill__icon {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}
.pill--lg { padding: 0.85rem 1.75rem; font-size: 0.9375rem; }
.pill--block { width: 100%; justify-content: center; }

/* ── Inputs ────────────────────────────────────────────────────────── */
.input, .textarea, .select {
  width: 100%;
  padding: 0.85rem 1.1rem;
  font: inherit;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--fg-1);
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  outline: none;
  transition: all var(--transition);
}
.input::placeholder, .textarea::placeholder { color: var(--gray-400); }
.input:focus, .textarea:focus, .select:focus {
  border-color: var(--terra-gold);
  box-shadow: 0 0 0 3px var(--gold-soft);
}
.textarea { min-height: 6rem; resize: vertical; }
.select, .alliance-form select.input {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23c9a84c' stroke-width='2' stroke-linecap='round' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.75rem;
  cursor: pointer;
}

.field { display: grid; gap: 0.35rem; margin-bottom: var(--space-md); }
.field__label {
  font-family: var(--font-body);
  font-size: var(--fs-micro);
  font-weight: 600;
  color: var(--fg-2);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.field--required .field__label::after { content: ' *'; color: var(--terra-gold); }

.tier-opt {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.55rem 0.75rem;
  margin: 0.25rem 0;
  border: 1px solid rgba(201,168,76,0.18);
  border-radius: 6px;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.tier-opt:hover { border-color: rgba(201,168,76,0.45); }
.tier-opt input[type="radio"] { accent-color: var(--terra-gold); }
.tier-opt input[type="radio"]:checked + span { color: var(--terra-gold); }

.tier-group {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
  gap: 0.4rem;
  margin-top: 0.25rem;
}

.honey { position: absolute; left: -10000px; height: 0; overflow: hidden; }

/* Inline email pill (used in modals) */
.inline-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.5rem;
}
.inline-form .input {
  border-radius: var(--radius-pill);
  padding-left: 1.25rem;
}
@media (max-width: 420px) {
  .inline-form { grid-template-columns: 1fr; }
}

/* ── Modal ─────────────────────────────────────────────────────────── */
.modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: var(--space-md);
  background: rgba(15, 13, 11, 0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--duration-base) var(--ease);
}
.modal[aria-hidden="false"] {
  opacity: 1;
  pointer-events: auto;
}
.modal__card {
  position: relative;
  width: min(92vw, 540px);
  max-height: 90vh;
  overflow-y: auto;
  background: var(--cream);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  padding: clamp(1.75rem, 4vw, 2.5rem);
  transform: translateY(8px) scale(0.98);
  transition: transform var(--duration-base) var(--ease-out);
}
.modal[aria-hidden="false"] .modal__card { transform: translateY(0) scale(1); }
.modal--video .modal__card {
  background: var(--bg-deepest);
  width: min(92vw, 880px);
  padding: 0;
  overflow: hidden;
}
.modal__close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 2.25rem;
  height: 2.25rem;
  border: 0;
  background: transparent;
  color: var(--fg-2);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  border-radius: 50%;
  transition: all var(--transition);
}
.modal__close:hover { background: var(--gold-soft); color: var(--fg-heading); }
.modal--video .modal__close { color: var(--white); }
.modal--video .modal__close:hover { background: rgba(255, 255, 255, 0.1); color: var(--white); }
.modal__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 500;
  letter-spacing: -0.01em;
  margin: 0 0 var(--space-sm);
  color: var(--fg-heading);
}
.modal__lede {
  color: var(--fg-2);
  margin: 0 0 var(--space-md);
}
.modal__title em { color: var(--terra-gold); font-style: italic; }

/* Video frame inside modal */
.video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  width: 100%;
  background: linear-gradient(135deg, var(--bg-deepest) 0%, var(--lux-green) 100%);
  color: var(--white);
  display: grid;
  place-items: center;
  text-align: center;
}
.video-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('/assets/img/patterns/living-pattern-detailed.svg');
  background-repeat: repeat;
  background-size: 280px;
  opacity: 0.05;
}
.video-frame__inner { position: relative; z-index: 1; padding: var(--space-xl); }
.video-frame__play {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--terra-gold);
  display: grid;
  place-items: center;
  margin: 0 auto var(--space-md);
  box-shadow: var(--shadow-gold);
}
.video-frame__play::after {
  content: '';
  width: 0;
  height: 0;
  border-left: 22px solid var(--fg-heading);
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  margin-left: 6px;
}
.video-frame__label { font-family: var(--font-display); font-style: italic; font-size: 1.05rem; color: rgba(255, 255, 255, 0.85); margin: 0; }
.video-frame__caption { color: rgba(255, 255, 255, 0.6); font-size: 0.8125rem; margin-top: 0.25rem; }

/* Body scroll-lock when modal open */
body.modal-open { overflow: hidden; }

/* ── Success state (inline within modal/form) ─────────────────────── */
.form-done {
  text-align: center;
  padding: var(--space-md) 0;
}
.form-done__check {
  width: 56px;
  height: 56px;
  background: var(--terra-gold);
  color: var(--fg-heading);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 28px;
  font-weight: 700;
  margin: 0 auto var(--space-md);
  box-shadow: var(--shadow-gold);
}
.form-done h3 { color: var(--fg-heading); margin: 0 0 var(--space-2xs); }
.form-done p  { color: var(--fg-2); margin: 0; }
.is-hidden { display: none !important; }

/* ── Stage card (for alliance intro + form) ────────────────────────── */
.card {
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  padding: clamp(2rem, 5vw, 3rem);
  border: 1px solid var(--border-subtle);
}
.card--bordered-gold {
  border-color: var(--gold-soft);
  border-top: 3px solid var(--terra-gold);
}

/* ── Business Alliance activation ─────────────────────────────────── */
.stage--activation {
  min-height: 100svh;
}
.stage__body--activation {
  place-items: stretch;
  text-align: left;
  padding-block: var(--space-2xl);
}
.activation-shell {
  width: min(100%, 1120px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}
.activation-hero {
  position: sticky;
  top: var(--space-lg);
  padding-block: var(--space-md);
}
.activation-copy {
  color: var(--fg-2);
  max-width: 42rem;
}
/* Sales UX: value before price */
.sales-offer-ff {
  margin-top: var(--space-xl);
  padding: 1.5rem 1.35rem;
  border: 1px solid rgba(201, 168, 76, 0.32);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.72);
  text-align: left;
}
.sales-offer-ff__recap {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
}
.sales-offer-ff__recap li {
  position: relative;
  padding: 0.45rem 0 0.45rem 1.35rem;
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--fg-2);
  border-bottom: 1px solid var(--border-subtle);
}
.sales-offer-ff__recap li:last-child { border-bottom: none; }
.sales-offer-ff__recap li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.85em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold, #c9a84c);
}
.sales-offer-ff__price-row {
  text-align: center;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(201, 168, 76, 0.2);
}

.activation-price {
  display: grid;
  gap: 0.15rem;
  width: fit-content;
  margin: 0.75rem auto 0;
  padding: 1rem 1.15rem;
  border: 1px solid rgba(201, 168, 76, 0.28);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.56);
}
.activation-price strong {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1;
  color: var(--fg-heading);
}
.activation-price span {
  font-size: var(--fs-micro);
  color: var(--fg-2);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.activation-benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: var(--space-lg);
}
.activation-benefit {
  min-height: 150px;
  padding: 1rem;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.72);
}
.activation-icon {
  width: 2.1rem;
  height: 2.1rem;
  display: grid;
  place-items: center;
  margin-bottom: 0.75rem;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, 0.4);
  color: var(--terra-gold);
  font-family: var(--font-display);
  font-size: 1.25rem;
}
.activation-benefit h2 {
  margin: 0 0 0.35rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-heading);
}
.activation-benefit p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--fg-2);
}
.activation-card {
  width: 100%;
}
.activation-card .eyebrow {
  width: 100%;
}
.activation-form {
  margin-top: var(--space-lg);
}
.ethical-code {
  margin: var(--space-lg) 0;
  border: 1px solid rgba(201, 168, 76, 0.24);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--cream);
}
.ethical-code__head {
  padding: 1.15rem 1.15rem 0;
}
.ethical-code__head .eyebrow {
  margin-bottom: 0.75rem;
}
.ethical-code__body {
  max-height: 360px;
  overflow-y: auto;
  padding: 0 1.15rem 1.15rem;
  color: var(--fg-2);
}
.ethical-code__body p,
.ethical-code__closing {
  font-size: 0.95rem;
  line-height: 1.6;
}
.code-list {
  display: grid;
  gap: 0.85rem;
  margin: 0 0 var(--space-md);
  padding-left: 1.3rem;
}
.code-list li {
  padding-left: 0.25rem;
  font-size: 0.94rem;
  line-height: 1.55;
}
.signature-box {
  display: grid;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
  padding: 1rem;
  border-radius: var(--radius-md);
  background: rgba(201, 168, 76, 0.08);
}
.check-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: start;
  color: var(--fg-1);
  cursor: pointer;
}
.check-row input {
  width: 1.1rem;
  height: 1.1rem;
  margin-top: 0.18rem;
  accent-color: var(--terra-gold);
}
.signature-field {
  margin-bottom: 0;
}
.form-alert {
  margin-bottom: var(--space-md);
  padding: 0.85rem 1rem;
  border: 1px solid rgba(160, 60, 42, 0.24);
  border-radius: var(--radius-md);
  background: rgba(160, 60, 42, 0.08);
  color: #7b2e20;
  font-size: 0.95rem;
}
.activation-thanks {
  width: 100%;
}
.next-steps {
  display: grid;
  gap: 0.75rem;
  margin: var(--space-xl) 0;
  text-align: left;
}
.next-steps article {
  display: grid;
  gap: 0.25rem;
  padding: 1rem;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.next-steps span {
  color: var(--fg-2);
  font-size: 0.95rem;
}
.cal-panel {
  min-height: 680px;
  margin: var(--space-xl) 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-md);
}

@media (max-width: 920px) {
  .activation-shell {
    grid-template-columns: 1fr;
  }
  .activation-hero {
    position: static;
    text-align: center;
  }
  .activation-hero .eyebrow--left {
    align-items: center;
  }
  .activation-copy,
  .activation-price {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 640px) {
  .stage__body--activation {
    padding-block: var(--space-lg);
  }
  .activation-benefits {
    grid-template-columns: 1fr;
  }
  .activation-benefit {
    min-height: 0;
  }
  .sales-offer-ff {
    padding: 1.25rem 1rem;
    margin-top: var(--space-lg);
  }
  .sales-offer-ff__price-row .pill {
    width: 100%;
    justify-content: center;
  }
  .pill-row--checkout {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 22rem;
    margin-left: auto;
    margin-right: auto;
  }
  .pill-row--checkout .pill {
    width: 100%;
    justify-content: center;
  }
  .ethical-code__body {
    max-height: none;
  }
  .cal-panel {
    min-height: 640px;
    margin-inline: -0.25rem;
  }
}

/* ── Back arrow (alliance form view) ───────────────────────────────── */
.back {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: var(--fs-micro);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-2);
  text-decoration: none;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: color var(--transition);
}
.back:hover { color: var(--terra-gold); }
.back::before { content: '←'; font-size: 1.1rem; line-height: 1; }

/* ── Footer ────────────────────────────────────────────────────────── */
.foot {
  text-align: center;
  padding: var(--space-2xl) clamp(1.5rem, 5vw, 2rem);
  color: var(--fg-2);
  font-size: 0.875rem;
  border-top: 1px solid var(--border-subtle);
}
.foot a { color: var(--fg-1); }
.foot a:hover { color: var(--terra-gold); }
.foot__sep {
  display: inline-block;
  width: 4px;
  height: 4px;
  background: var(--terra-gold);
  border-radius: 50%;
  margin: 0 var(--space-2xs);
  vertical-align: middle;
}

/* ── Fade-in (respects reduced-motion) ─────────────────────────────── */
@media (prefers-reduced-motion: no-preference) {
  .fade-in { opacity: 0; animation: ff-fade 700ms var(--ease-out) 100ms forwards; }
  @keyframes ff-fade { to { opacity: 1; } }
}

/* ============================================================================
   CINEMATIC FUTUREFEST COMMERCIAL LANDING (video-first portal)
   Matches the 1-minute emotional arc spec: awe, urgency, "participation in the future"
   Visual language: Apple cinematic minimalism + Aman luxury + Burning Man scale +
   grounded nature+tech harmony. Dark immersive, gold accents, Lora for captions.
   ============================================================================ */

:root {
  --cinema-bg: #0a0908;
  --cinema-ink: #f5f2e9;
  --cinema-gold: #c9a84c;
  --cinema-gold-soft: rgba(201, 168, 76, 0.85);
  --cinema-caption: rgba(245, 242, 233, 0.95);
  --cinema-dim: rgba(10, 9, 8, 0.55);
}

/* Full cinematic experience — dark, magnetic, minimal */
body.cinematic {
  background: var(--cinema-bg);
  color: var(--cinema-ink);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}

/* Hide old light theme elements when in cinematic mode */
body.cinematic .stage { display: none !important; }

/* ── Cinematic Hero: full-bleed video + overlays ────────────────────── */
.cinema {
  position: relative;
  min-height: 100dvh;
  width: 100%;
  overflow: hidden;
  background: var(--cinema-bg);
  display: flex;
  flex-direction: column;
}

.cinema__video-wrap {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: #000;
}

.cinema__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Elegant cinematic captions — large, italic, gold-tinted, readable over any frame */
.cinema__captions {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 6vw;
  pointer-events: none;
}

.cinema__caption {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 5.2vw, 3.25rem);
  font-weight: 500;
  font-style: italic;
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--cinema-caption);
  text-align: center;
  max-width: 18ch;
  text-wrap: balance;
  opacity: 0;
  transition: opacity 420ms cubic-bezier(0.16, 1, 0.3, 1);
  text-shadow: 0 2px 20px rgba(0,0,0,0.6), 0 1px 4px rgba(0,0,0,0.8);
}

.cinema__caption.is-visible {
  opacity: 1;
}

/* Minimal video UI chrome (bottom) */
.cinema__ui {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 5;
  padding: 1.25rem 1.5rem 1.5rem;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 70%);
  display: flex;
  align-items: center;
  gap: 1rem;
  opacity: 0.9;
  transition: opacity 200ms ease;
}
.cinema__ui:hover { opacity: 1; }

.cinema__progress {
  flex: 1;
  height: 3px;
  background: rgba(255,255,255,0.2);
  border-radius: 3px;
  position: relative;
  cursor: pointer;
}

.cinema__progress-bar {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  background: var(--cinema-gold);
  border-radius: 3px;
  width: 0%;
  transition: width 80ms linear;
}

.cinema__time {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-feature-settings: "tnum";
  color: rgba(245,242,233,0.7);
  min-width: 4.5ch;
  text-align: right;
}

.cinema__ctrl {
  width: 36px;
  height: 36px;
  border: 0;
  background: rgba(255,255,255,0.1);
  color: var(--cinema-ink);
  border-radius: 50%;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: all 120ms ease;
  backdrop-filter: blur(6px);
}
.cinema__ctrl:hover {
  background: rgba(255,255,255,0.2);
  color: var(--cinema-gold);
}
.cinema__ctrl svg { width: 18px; height: 18px; }

/* Top bar — minimal brand + skip */
.cinema__top {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 6;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: none;
}

.cinema__top .ff-mark {
  pointer-events: auto;
  opacity: 0.85;
}

.cinema__skip {
  pointer-events: auto;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(245,242,233,0.65);
  text-decoration: none;
  padding: 0.5rem 0.9rem;
  border: 1px solid rgba(245,242,233,0.25);
  border-radius: 999px;
  transition: all 150ms ease;
  backdrop-filter: blur(8px);
}
.cinema__skip:hover {
  color: var(--cinema-gold);
  border-color: var(--cinema-gold);
  background: rgba(10,9,8,0.3);
}

/* Floating / post-video huge CTA */
.cinema__cta {
  position: absolute;
  bottom: 4.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 7;
  display: none; /* shown via JS after ~42s or on demand */
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
}

.cinema__cta.is-visible {
  display: flex;
}

.cinema__cta-label {
  font-family: var(--font-display);
  font-size: 0.875rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cinema-gold);
  opacity: 0.9;
}

.cinema__cta-btn {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 3.8vw, 1.65rem);
  font-weight: 500;
  font-style: italic;
  letter-spacing: -0.01em;
  background: var(--cinema-gold);
  color: #111;
  padding: 1rem 2.6rem;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  box-shadow: 0 4px 30px rgba(201,168,76,0.35);
  transition: all 200ms cubic-bezier(0.16,1,0.3,1);
  white-space: nowrap;
}
.cinema__cta-btn:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 10px 40px rgba(201,168,76,0.45);
  background: #dcc079;
}

/* ── Post-cinema content (scrolls in after video or always below) ───── */
.cinema__content {
  position: relative;
  z-index: 2;
  background: var(--cinema-bg);
  padding: 4.5rem 1.25rem 5rem;
  border-top: 1px solid rgba(201,168,76,0.12);
}

.cinema__manifesto {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.cinema__manifesto .eyebrow {
  color: var(--cinema-gold);
  opacity: 0.9;
}

.cinema__manifesto .incantation {
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 2.2vw, 1.15rem);
  color: var(--cinema-gold);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0 auto 1.5rem;
  opacity: 0.85;
  display: block;
  text-align: center;
  width: 100%;
}

.cinema__manifesto .incantation em {
  font-style: italic;
  letter-spacing: 0.04em;
  text-transform: none;
  font-size: 1.15em;
  display: inline-block; /* helps with centering of italic text */
}

.cinema__manifesto h2 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 5.5vw, 2.75rem);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--cinema-ink);
  margin: 0.6rem 0 0;
}

.cinema__manifesto p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(245,242,233,0.8);
  max-width: 38ch;
  margin: 0 auto;
}

.cinema__pillars {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  justify-content: center;
  margin-top: 1.25rem;
  font-size: 0.9375rem;
  color: var(--cinema-gold);
  letter-spacing: 0.01em;
}
.cinema__pillars span {
  white-space: nowrap;
}

/* ── Founding Member signup (the membrane) ──────────────────────────── */
.signup {
  max-width: 480px;
  margin: 3rem auto 0;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(201,168,76,0.16);
  border-radius: 22px;
  padding: 2.25rem 2rem 2.35rem;
  backdrop-filter: blur(24px);
  box-shadow: 0 4px 30px rgba(0,0,0,0.2);
}

.signup__head {
  text-align: center;
  margin-bottom: 1.35rem;
}
.signup__head h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 500;
  color: var(--cinema-ink);
  margin: 0 0 0.35rem;
  letter-spacing: -0.01em;
}
.signup__head p {
  font-size: 0.9375rem;
  color: rgba(245,242,233,0.65);
  margin: 0;
}

.signup-form {
  display: grid;
  gap: 0.85rem;
}

.signup-form .input {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.18);
  color: var(--cinema-ink);
  padding: 0.95rem 1.2rem;
  border-radius: 14px;
  font-size: 1.02rem;
  font-family: var(--font-body);
  transition: all 180ms cubic-bezier(0.16,1,0.3,1);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
}
.signup-form .input:focus {
  outline: none;
  border-color: var(--cinema-gold);
  background: rgba(255,255,255,0.06);
  box-shadow: 0 0 0 5px rgba(201,168,76,0.08);
}
.signup-form .input::placeholder { color: rgba(245,242,233,0.35); }

.signup-form button {
  margin-top: 0.5rem;
  background: var(--cinema-gold);
  color: #0f0d0b;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  padding: 1.05rem 1.8rem;
  border: 0;
  border-radius: 14px;
  cursor: pointer;
  transition: transform 200ms cubic-bezier(0.16,1,0.3,1), box-shadow 200ms ease, background 200ms ease;
}
.signup-form button:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(201,168,76,0.45);
  background: #dcc079;
}
.signup-form button:disabled {
  opacity: 0.7;
  cursor: default;
}

.signup__fine {
  text-align: center;
  margin-top: 1rem;
  font-size: 0.8125rem;
  color: rgba(245,242,233,0.45);
  line-height: 1.5;
}

/* Terra Lux Members note — minimal, elevated */
.members {
  max-width: 620px;
  margin: 3rem auto 0;
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(201,168,76,0.1);
}
.members h4 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cinema-gold);
  margin: 0 0 0.9rem;
  font-weight: 500;
}
.members ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.1rem;
  justify-content: center;
  font-size: 0.9375rem;
  color: rgba(245,242,233,0.75);
}
.members li::before {
  content: "·";
  color: var(--cinema-gold);
  margin-right: 0.35rem;
}

/* Footer for cinematic page */
.cinema__foot {
  text-align: center;
  padding: 2rem 1rem 2.5rem;
  font-size: 0.8125rem;
  color: rgba(245,242,233,0.5);
  letter-spacing: 0.02em;
}
.cinema__foot a { color: inherit; text-decoration-color: rgba(201,168,76,0.4); }
.cinema__foot a:hover { color: var(--cinema-gold); }

/* Reduced motion + mobile tweaks */
@media (prefers-reduced-motion: reduce) {
  .cinema__caption { transition: none; }
}

/* ==========================================================================
   RESPONSIVE — MOBILE-FIRST ADAPTIVE LAYOUTS
   Landing (cinematic) is priority. Touch targets ≥44px, fluid centering,
   safe areas, stacking, no overflow, perfect incantation + video chrome.
   ========================================================================== */

/* --- Base mobile (≤480px): landing + forms --- */
@media (max-width: 480px) {
  /* Video UI — thumb friendly */
  .cinema__ui {
    padding: 0.75rem 0.75rem calc(0.9rem + env(safe-area-inset-bottom, 0));
    gap: 0.5rem;
    flex-wrap: wrap;
  }
  .cinema__ctrl {
    width: 44px;
    height: 44px;
  }
  .cinema__ctrl svg { width: 20px; height: 20px; }
  .cinema__progress { height: 4px; min-width: 120px; flex: 1 1 60%; }
  .cinema__time {
    font-size: 0.7rem;
    min-width: 4ch;
    flex: 0 0 auto;
  }

  /* Captions — safe, readable on narrow */
  .cinema__captions { padding: 0 4vw; }
  .cinema__caption {
    max-width: 92%;
    font-size: clamp(1.35rem, 8.5vw, 2.1rem);
    line-height: 1.15;
  }

  /* Top bar */
  .cinema__top { padding: 0.6rem 0.75rem; }
  .cinema__skip { font-size: 0.75rem; padding: 0.35rem 0.7rem; }

  /* Floating CTA */
  .cinema__cta { bottom: calc(3.75rem + env(safe-area-inset-bottom, 0)); }
  .cinema__cta-label { font-size: 0.78rem; letter-spacing: 0.14em; }
  .cinema__cta-btn { padding: 0.8rem 1.6rem; font-size: 1rem; }

  /* Post-video content + manifesto */
  .cinema__content { padding: 3rem 1rem 4rem; }
  .cinema__manifesto { padding-inline: 0.5rem; }
  .cinema__manifesto h2 {
    font-size: clamp(1.55rem, 9vw, 2.25rem);
    margin: 0.4rem 0 0;
  }
  .cinema__manifesto .incantation {
    font-size: 0.9rem;
    margin: 0 auto 1rem;
    letter-spacing: 0.16em;
  }
  .cinema__manifesto p { font-size: 0.98rem; max-width: 36ch; }

  /* Signup form — full fluid, big targets */
  .signup {
    max-width: 100%;
    margin: 2rem 0.5rem 0;
    padding: 1.25rem 1rem 1.35rem;
    border-radius: 18px;
  }
  .signup-form .input {
    padding: 0.9rem 1rem;
    font-size: 1rem;
    min-height: 48px;
    border-radius: 12px;
  }
  .signup-form button {
    min-height: 48px;
    font-size: 1.05rem;
    padding: 0.95rem 1.5rem;
    border-radius: 12px;
  }
  .signup__fine { font-size: 0.78rem; }

  /* Members / pillars tighter */
  .members { margin-top: 2rem; padding-top: 1.5rem; }
  .members ul { gap: 0.35rem 0.85rem; font-size: 0.9rem; }
}

/* --- Very small phones (≤360px) — extreme safety --- */
@media (max-width: 360px) {
  .cinema__ui { gap: 0.4rem; padding-inline: 0.5rem; }
  .cinema__ctrl { width: 40px; height: 40px; }
  .cinema__progress { min-width: 80px; }
  .cinema__caption { font-size: clamp(1.2rem, 9vw, 1.85rem); max-width: 94%; }
  .signup { margin-inline: 0.25rem; padding: 1rem 0.85rem; }
  .cinema__manifesto h2 { font-size: 1.45rem; }
}

/* --- Tablet (481–860px) — balanced breathing --- */
@media (min-width: 481px) and (max-width: 860px) {
  .cinema__ui { padding: 1rem 1.25rem 1.25rem; }
  .cinema__caption { max-width: 17ch; font-size: clamp(1.6rem, 4.8vw, 2.7rem); }
  .signup { max-width: 440px; padding: 1.85rem 1.6rem; }
  .cinema__content { padding-block: 3.75rem 4.5rem; }
}

/* --- Desktop refinements (already strong, just polish) --- */
@media (min-width: 1024px) {
  .cinema__ui { padding: 1.35rem 2rem 1.6rem; }
  .cinema__ctrl { width: 38px; height: 38px; }
  .signup { max-width: 460px; }
}

/* --- General form + card mobile polish (alliance, membership, etc.) --- */
@media (max-width: 480px) {
  .stage { padding-inline: 1rem; }
  .container-narrow { padding-inline: 0.25rem; }
  .card, .card--bordered-gold { padding: 1.35rem 1.1rem; border-radius: 16px; }

  .field { margin-bottom: 1rem; }
  .field__label { font-size: 0.8rem; }
  .input, .textarea {
    padding: 0.85rem 0.95rem;
    font-size: 0.98rem;
    min-height: 48px;
    border-radius: 10px;
  }
  .textarea { min-height: 96px; }

  .tier-group {
    grid-template-columns: repeat(auto-fit, minmax(78px, 1fr));
    gap: 0.35rem;
  }
  .tier-opt {
    padding: 0.6rem 0.55rem;
    font-size: 0.88rem;
    min-height: 42px;
    justify-content: center;
  }

  .pill, .pill--primary, .pill--lg {
    min-height: 46px;
    padding: 0.8rem 1.1rem;
    font-size: 0.98rem;
  }
  .pill--block { width: 100%; }

  .h1, .h2 { font-size: clamp(1.55rem, 7.5vw, 2rem); }
  .lead { font-size: 1rem; }
}

/* --- Thanks page (inline styles augmented here for consistency) --- */
@media (max-width: 640px) {
  .thanks { padding: 1.25rem 0.85rem 3rem; }
  .thanks__confirmation { margin-bottom: 2rem; }
  .thanks__confirmation h1 { font-size: clamp(1.85rem, 8vw, 2.6rem); }
  .choices { gap: 1rem; }
  .choice { padding: 1.35rem 1.15rem 1.45rem; border-radius: 16px; }
  .choice h2 { font-size: 1.25rem; }
  .choice p { font-size: 0.93rem; margin-bottom: 1rem; }
  .choice .pill { padding: 0.8rem 1rem; font-size: 0.95rem; min-height: 44px; }
}

/* Accessibility: high contrast captions option (future) */
.cinema--high-contrast .cinema__caption {
  color: #fff;
  text-shadow: 0 2px 12px #000, 0 0 1px #000;
}

/* ==========================================================================
   LIGHT THEME FOR POST-VIDEO CONTENT ON LANDING
   The film stays immersive + dark. Once you scroll, the site becomes
   consistent light cream like the rest of the experience.
   ========================================================================== */
.cinema__content {
  background: #f7f5f0; /* light cream */
  color: #1a1714;
}

.cinema__manifesto h2 {
  color: #1a1714;
}

.cinema__manifesto p {
  color: #4a4c4f;
}

.signup {
  background: #fff;
  border: 1px solid rgba(201, 168, 76, 0.22);
  box-shadow: 0 4px 18px rgba(0,0,0,0.05);
}

.signup-form .input {
  background: #fff;
  border: 1px solid rgba(201, 168, 76, 0.25);
  color: #1a1714;
}

.signup-form .input:focus {
  border-color: #c9a84c;
  background: #fff;
}

.signup-form .input::placeholder {
  color: #8c8e91;
}

.signup-form button {
  background: #c9a84c;
  color: #0f0d0b;
}

.signup-form button:hover:not(:disabled) {
  background: #dcc079;
}

.signup__fine {
  color: #6b6d71;
}

.members {
  border-top-color: rgba(201, 168, 76, 0.18);
}

.members h4 {
  color: #c9a84c;
}

.members li {
  color: #4a4c4f;
}

/* ==========================================================================
   FUTUREFEST THANKS PAGE — DECISION CARDS (ff-decision architecture)
   Professional, reusable component for the critical post-signup 2-path fork.
   Extracted from inline styles per senior design review. Light theme only.
   Uses existing tokens + .pill system. Drop-in ready.
   ========================================================================== */

/* Light surface enforcement for thanks (prevents cinematic dark leakage) */
body.thanks,
.thanks-page {
  background: var(--cream);
  color: var(--dark-slate);
}

/* Safety: never allow on-deep mark on light thanks surfaces */
body.thanks .ff-mark--on-deep,
.thanks-page .ff-mark--on-deep {
  color: inherit;
}

/* Grid container — more generous width for premium breathing + long labels */
.ff-decision-grid {
  max-width: 780px;
  margin: 0 auto;
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

@media (min-width: 860px) {
  .ff-decision-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
}

/* Core decision surface — elevated, calm, premium (replaces ad-hoc .choice) */
.ff-decision {
  background: var(--white);
  border: 1px solid rgba(201, 168, 76, 0.18);
  border-radius: var(--radius-xl);
  padding: 1.75rem 1.6rem 1.85rem; /* generous Aman-level breathing */
  display: flex;
  flex-direction: column;
  transition: transform 220ms var(--ease-out),
              border-color 200ms ease,
              box-shadow 220ms ease;
  box-shadow: var(--shadow-sm);
}

.ff-decision:hover {
  transform: translateY(-3px);
  border-color: rgba(201, 168, 76, 0.38);
  box-shadow: var(--shadow-md);
}

.ff-decision--primary {
  border-color: rgba(201, 168, 76, 0.42);
  box-shadow: 0 4px 16px rgba(201, 168, 76, 0.13);
}

.ff-decision--primary:hover {
  box-shadow: var(--shadow-gold);
  border-color: var(--terra-gold);
}

/* Internal elements — lyrical rhythm, excellent hierarchy */
.ff-decision__label {
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terra-gold);
  margin-bottom: 0.55rem;
}

.ff-decision__title {
  font-family: var(--font-display);
  font-size: 1.38rem;
  font-weight: 500;
  line-height: 1.16;
  letter-spacing: -0.01em;
  color: var(--dark-slate);
  margin: 0 0 0.65rem;
}

.ff-decision__body {
  font-size: 0.97rem;
  line-height: 1.58;
  color: var(--gray-700);
  flex: 1;
  margin: 0 0 1.25rem;
}

/* Decision-specific pill variant — solves long CTA text fitting */
.pill--decision {
  width: 100%;
  justify-content: center;
  font-size: 0.93rem;
  padding: 0.72rem 1.35rem;
  letter-spacing: 0.045em;
  min-height: 46px;
  margin-top: auto;
  transition: transform 180ms var(--ease-out), box-shadow 180ms ease, background 180ms ease;
}

.pill--decision:hover {
  transform: translateY(-1px);
}

.ff-decision__meta {
  font-size: 0.78rem;
  color: var(--gray-600);
  margin-top: 0.65rem;
  line-height: 1.4;
  text-align: center;
  letter-spacing: 0.01em;
}

/* Strong focus treatment for professional quality */
.pill--decision:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px var(--gold-soft);
  border-color: var(--terra-gold);
}

/* Reduced motion respect */
@media (prefers-reduced-motion: reduce) {
  .ff-decision,
  .pill--decision {
    transition: none;
  }
}

/* Mobile refinements — still premium, not cramped */
@media (max-width: 640px) {
  .ff-decision-grid { gap: 1.1rem; }
  .ff-decision {
    padding: 1.55rem 1.35rem 1.65rem;
    border-radius: 18px;
  }
  .ff-decision__title { font-size: 1.28rem; }
  .ff-decision__body { font-size: 0.95rem; margin-bottom: 1.1rem; }
  .pill--decision { padding: 0.78rem 1.2rem; font-size: 0.94rem; min-height: 44px; }
}

@media (max-width: 480px) {
  .ff-decision { padding: 1.45rem 1.25rem 1.55rem; }
}
