:root {
  --bg: #000000;
  --bg-2: #131316;
  --fg: #f6f6f7;
  --fg-dim: #a8a8b0;
  --accent: #ff2d55;
  --accent-2: #00e0ff;
  --border: #232328;
  --radius: 12px;
  --maxw: 1100px;
  --font-display: "Anton", "Bebas Neue", system-ui, sans-serif;
  --font-body: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; }

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

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
  text-align: center;
  background: var(--bg);
}

.logo-wrap {
  width: 100%;
  max-width: 720px;
  margin-bottom: 0;
}

.logo {
  width: 100%;
  height: auto;
  display: block;
  /* Animation classes will be applied here once Chad picks the vibe */
}

.event-meta {
  margin-bottom: 36px;
}

.tagline {
  font-family: "Iowan Old Style", "Source Serif 4", "Palatino", "Book Antiqua", Georgia, serif;
  font-style: italic;
  font-size: clamp(22px, 3.4vw, 34px);
  color: var(--fg);
  letter-spacing: 0.01em;
  margin-bottom: 26px;
  opacity: 0.92;
}

.dates {
  font-family: var(--font-display);
  font-size: clamp(20px, 6vw, 44px);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--fg);
  white-space: nowrap;
}

.venue {
  font-size: clamp(14px, 1.6vw, 17px);
  color: var(--fg-dim);
  margin-top: 8px;
  letter-spacing: 0.02em;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.cta {
  appearance: none;
  border: 0;
  cursor: pointer;
  font: inherit;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 16px 28px;
  border-radius: var(--radius);
  min-height: 56px;
  transition: transform 120ms ease, box-shadow 120ms ease, background 120ms ease;
}
.cta:hover { transform: translateY(-1px); }
.cta:active { transform: translateY(0); }

.cta-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 8px 24px rgba(255, 45, 85, 0.32);
}
.cta-primary:hover { background: #ff4068; }

.cta-secondary {
  background: transparent;
  color: var(--fg);
  border: 1px solid var(--border);
}
.cta-secondary:hover { border-color: #3a3a42; background: #1a1a1f; }

/* --- Modal form reveal -------------------------------------------------- */

.form-reveal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  overflow-y: auto;
}
.form-reveal[hidden] { display: none; }

.form-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 0;
}

/* Close button */
.form-close {
  position: absolute;
  top: 8px;
  right: 10px;
  z-index: 5;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 0;
  color: var(--chaos-ink);
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  border-radius: 50%;
  transition: background 120ms ease, transform 120ms ease;
}
.form-close:hover { background: rgba(0, 0, 0, 0.08); transform: scale(1.08); }
.form-close-light { color: var(--fg); }
.form-close-light:hover { background: rgba(255, 255, 255, 0.08); }

/* GHL iframe wrapper (vendor) */
.form-reveal-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 720px;
  max-height: calc(100vh - 48px);
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 8px;
  overflow-y: auto;
}
.form-reveal iframe {
  width: 100%;
  min-height: 845px;
  border: none;
  border-radius: 8px;
  display: block;
}

/* --- Chaos custom form (brand-aligned: nostalgic, bright, textured) ---- */

:root {
  /* CCC official brand palette */
  --chaos-yellow:  #ECE844;
  --chaos-magenta: #DF1A59;
  --chaos-green:   #59AB46;
  --chaos-navy:    #1D174B;
  --chaos-cream:   #F1D89A;
  --chaos-ink:     #121212;
  /* Brand font stacks */
  --chaos-display: "Futura", "Futura PT", "Jost", "Trebuchet MS", system-ui, sans-serif;
  --chaos-serif:   "Iowan Old Style", "Source Serif 4", "Palatino", "Book Antiqua", Georgia, serif;
  --chaos-mono:    "DM Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;
}

.chaos-form-card {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 640px;
  max-height: calc(100vh - 32px);
  overflow-y: auto;
  background: var(--chaos-cream);
  color: var(--chaos-ink);
  border: 3px solid var(--chaos-ink);
  border-radius: 12px;
  padding: 28px 28px 24px;
  font-family: var(--chaos-display);
  box-shadow:
    10px 10px 0 var(--chaos-magenta),
    10px 10px 0 3px var(--chaos-ink),
    0 24px 60px -16px rgba(0, 0, 0, 0.6);
}

/* Paper texture for that nostalgic-zine feel */
.chaos-form-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 9px;
  background-image:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  opacity: 0.07;
  pointer-events: none;
  mix-blend-mode: multiply;
}

/* Corner stamps */
.sticker {
  position: absolute;
  font-family: var(--chaos-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 6px 10px;
  line-height: 1;
  border: 2px solid var(--chaos-ink);
  z-index: 2;
}
.sticker-tl {
  top: -14px;
  left: 18px;
  background: var(--chaos-magenta);
  color: var(--chaos-cream);
  font-size: 14px;
  text-align: center;
  transform: rotate(-4deg);
  box-shadow: 3px 3px 0 var(--chaos-ink);
}
.sticker-br {
  bottom: -14px;
  right: 18px;
  background: var(--chaos-green);
  color: var(--chaos-ink);
  font-size: 16px;
  letter-spacing: 0.12em;
  transform: rotate(3deg);
  box-shadow: 3px 3px 0 var(--chaos-ink);
}

/* Header */
.chaos-form-header { position: relative; z-index: 1; margin-bottom: 14px; }

.eyebrow {
  display: inline-block;
  background: var(--chaos-ink);
  color: var(--chaos-yellow);
  font-family: var(--chaos-mono);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.22em;
  padding: 3px 8px;
  text-transform: uppercase;
  margin-bottom: 8px;
  transform: rotate(-1deg);
}

.chaos-form-title {
  font-family: var(--chaos-display);
  font-weight: 800;
  font-size: clamp(26px, 4vw, 36px);
  line-height: 0.95;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  margin: 0 0 8px;
}
.t-line { display: inline; }
.t-magenta {
  color: var(--chaos-magenta);
  text-shadow: 2px 2px 0 var(--chaos-navy);
}
.t-stroke {
  color: var(--chaos-cream);
  -webkit-text-stroke: 1.5px var(--chaos-ink);
  text-stroke: 1.5px var(--chaos-ink);
  margin-left: 6px;
}

.chaos-form-sub {
  font-family: var(--chaos-serif);
  font-style: italic;
  font-size: 14px;
  line-height: 1.4;
  margin: 0;
  max-width: 480px;
  color: var(--chaos-navy);
}

/* Form body */
.chaos-form { position: relative; z-index: 1; display: flex; flex-direction: column; gap: 10px; }
.chaos-form[hidden] { display: none; }

.field { display: flex; flex-direction: column; gap: 6px; }
.field-row { display: grid; grid-template-columns: 2fr 1fr; gap: 12px; }
.field-row-3 { grid-template-columns: 2fr 1fr 1fr; }
@media (max-width: 520px) {
  .field-row, .field-row-3 { grid-template-columns: 1fr; }
}

.field label,
.field-label-block {
  font-family: var(--chaos-mono);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--chaos-navy);
}
.req { color: var(--chaos-magenta); }
.opt { color: var(--chaos-navy); opacity: 0.6; font-weight: 400; text-transform: none; letter-spacing: 0; font-size: 11px; }

.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field input[type="number"],
.field select,
.field textarea {
  font: inherit;
  font-family: var(--chaos-display);
  font-size: 16px;
  padding: 11px 14px;
  background: rgba(255, 255, 255, 0.55);
  border: 2px solid var(--chaos-ink);
  border-radius: 6px;
  color: var(--chaos-ink);
  transition: background 120ms ease, transform 100ms ease, box-shadow 100ms ease;
}
.field textarea {
  resize: vertical;
  min-height: 60px;
  font-family: var(--chaos-display);
  line-height: 1.4;
}
.field select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='%23121212' d='M6 8L0 0h12z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.field input::placeholder,
.field textarea::placeholder { color: rgba(18, 18, 18, 0.4); }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  background: var(--chaos-yellow);
  transform: translate(-1px, -1px);
  box-shadow: 3px 3px 0 var(--chaos-ink);
}

/* Area-requirements pills (Power / WiFi / Tablecloth) */
.checkbox-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 2px;
}
.check-pill {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: 2px solid var(--chaos-ink);
  border-radius: 6px;
  font-family: var(--chaos-mono);
  font-weight: 500;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.5);
  color: var(--chaos-ink);
  transition: transform 100ms ease, background 100ms ease, box-shadow 100ms ease;
  user-select: none;
}
.check-pill input {
  appearance: none;
  -webkit-appearance: none;
  width: 14px;
  height: 14px;
  border: 2px solid var(--chaos-ink);
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.8);
  cursor: pointer;
  position: relative;
}
.check-pill input:checked {
  background: var(--chaos-magenta);
}
.check-pill input:checked::after {
  content: "✓";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--chaos-cream);
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
}
.check-pill:hover { transform: translate(-1px, -1px); box-shadow: 2px 2px 0 var(--chaos-ink); }
.check-pill:has(input:checked) {
  background: var(--chaos-yellow);
  transform: translate(-1px, -1px);
  box-shadow: 3px 3px 0 var(--chaos-ink);
}

.field-hint { font-size: 11px; color: var(--chaos-navy); opacity: 0.7; margin: 2px 0 0; }

/* Interest chips */
.chips {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 6px;
  margin-top: 2px;
}
.chip {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 9px 10px;
  border: 2px solid var(--chaos-ink);
  border-radius: 6px;
  font-family: var(--chaos-mono);
  font-weight: 500;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.5);
  color: var(--chaos-ink);
  transition: transform 100ms ease, background 100ms ease, box-shadow 100ms ease;
  user-select: none;
  min-height: 36px;
}
.chip input { position: absolute; opacity: 0; pointer-events: none; }
.chip:hover { transform: translate(-1px, -1px); box-shadow: 2px 2px 0 var(--chaos-ink); }
.chip:has(input:checked) {
  transform: translate(-2px, -2px);
  font-weight: 700;
  box-shadow: 3px 3px 0 var(--chaos-ink);
}
.chip.c1:has(input:checked)  { background: var(--chaos-magenta); color: var(--chaos-cream); }
.chip.c2:has(input:checked)  { background: var(--chaos-yellow); }
.chip.c3:has(input:checked)  { background: var(--chaos-green); color: var(--chaos-cream); }
.chip.c4:has(input:checked)  { background: var(--chaos-navy);    color: var(--chaos-yellow); }
.chip.c5:has(input:checked)  { background: var(--chaos-magenta); color: var(--chaos-cream); }
.chip.c6:has(input:checked)  { background: var(--chaos-yellow); }
.chip.c7:has(input:checked)  { background: var(--chaos-green);   color: var(--chaos-cream); }
.chip.c8:has(input:checked)  { background: var(--chaos-navy);    color: var(--chaos-yellow); }
.chip.c9:has(input:checked)  { background: var(--chaos-magenta); color: var(--chaos-cream); }
.chip.c10:has(input:checked) { background: var(--chaos-yellow); }

/* SMS consent block */
.sms-consent {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px 14px;
  background: var(--chaos-yellow);
  border: 2px solid var(--chaos-ink);
  border-radius: 6px;
}
.sms-consent input[type="checkbox"] {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  accent-color: var(--chaos-magenta);
  cursor: pointer;
}
.sms-consent label {
  font-size: 12px;
  line-height: 1.45;
  color: var(--chaos-ink);
  cursor: pointer;
}
.sms-consent label strong {
  display: block;
  font-family: var(--chaos-display);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 14px;
  color: var(--chaos-ink);
  margin-bottom: 4px;
}
.sms-consent label span { display: block; }

/* Submit */
.chaos-submit {
  margin-top: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 20px;
  background: var(--chaos-magenta);
  color: var(--chaos-cream);
  border: 3px solid var(--chaos-ink);
  border-radius: 8px;
  font-family: var(--chaos-display);
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  min-height: 48px;
  box-shadow: 5px 5px 0 var(--chaos-ink);
  transition: transform 100ms ease, box-shadow 100ms ease, background 120ms ease;
}
.chaos-submit:hover {
  transform: translate(-2px, -2px);
  box-shadow: 7px 7px 0 var(--chaos-ink);
}
.chaos-submit:active { transform: translate(0, 0); box-shadow: 2px 2px 0 var(--chaos-ink); }
.chaos-submit:disabled { opacity: 0.75; cursor: progress; }
.submit-arrow { color: var(--chaos-yellow); font-size: 22px; }

.chaos-form-foot {
  font-family: var(--chaos-serif);
  font-style: italic;
  font-size: 12px;
  color: var(--chaos-navy);
  text-align: center;
  margin: 4px 0 0;
}
.chaos-form-foot a { color: var(--chaos-ink); text-decoration: underline; font-weight: 500; }

/* Success state */
.chaos-form-success { position: relative; z-index: 1; text-align: center; padding: 16px 0 8px; }
.chaos-form-success[hidden] { display: none; }
.success-stamp {
  display: inline-block;
  background: var(--chaos-green);
  color: var(--chaos-cream);
  font-family: var(--chaos-display);
  font-weight: 800;
  font-size: 24px;
  letter-spacing: 0.08em;
  padding: 12px 20px;
  border: 3px solid var(--chaos-ink);
  border-radius: 6px;
  transform: rotate(-3deg);
  margin-bottom: 18px;
  box-shadow: 5px 5px 0 var(--chaos-magenta), 5px 5px 0 3px var(--chaos-ink);
}
.chaos-form-success h3 {
  font-family: var(--chaos-display);
  font-weight: 700;
  font-size: clamp(24px, 4vw, 36px);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--chaos-ink);
  margin: 0 0 8px;
}
.chaos-form-success p {
  font-family: var(--chaos-serif);
  font-style: italic;
  font-size: 15px;
  max-width: 380px;
  margin: 0 auto;
  color: var(--chaos-navy);
}

/* --- Social CTA on success state ----------------------------------------- */
.social-cta {
  margin-top: 26px;
  padding-top: 22px;
  border-top: 2px dashed var(--chaos-ink);
}

.social-cta-label {
  font-family: var(--chaos-serif);
  font-style: italic;
  font-size: 14px;
  color: var(--chaos-navy);
  text-align: center;
  margin-bottom: 14px;
  line-height: 1.3;
}
.social-cta-label strong {
  display: block;
  font-family: var(--chaos-display);
  font-weight: 800;
  font-style: normal;
  font-size: 22px;
  color: var(--chaos-ink);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-top: 2px;
}

.social-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.social-btn {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 14px 6px 12px;
  border: 3px solid var(--chaos-ink);
  border-radius: 8px;
  text-decoration: none;
  color: var(--chaos-ink);
  font-family: var(--chaos-display);
  text-align: center;
  background: var(--chaos-cream);
  box-shadow: 4px 4px 0 var(--chaos-ink);
  transition: transform 120ms ease, box-shadow 120ms ease;
}
.social-btn:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--chaos-ink);
}
.social-btn:active {
  transform: translate(0, 0);
  box-shadow: 2px 2px 0 var(--chaos-ink);
}

.social-btn svg {
  width: 28px;
  height: 28px;
  display: block;
}

.social-btn .social-name {
  font-weight: 800;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.social-btn .social-handle {
  font-family: var(--chaos-mono);
  font-size: 10px;
  letter-spacing: 0.04em;
  opacity: 0.75;
}

/* Per-platform color treatments using brand palette */
.social-ig { background: var(--chaos-magenta); color: var(--chaos-cream); }
.social-ig .social-handle { color: var(--chaos-cream); opacity: 0.85; }
.social-tt { background: var(--chaos-navy);    color: var(--chaos-yellow); }
.social-tt .social-handle { color: var(--chaos-yellow); opacity: 0.85; }
.social-fb { background: var(--chaos-green);   color: var(--chaos-cream); }
.social-fb .social-handle { color: var(--chaos-cream); opacity: 0.85; }

/* Mobile: stack rows of 3 buttons remain in a row but smaller */
@media (max-width: 480px) {
  .social-btn { padding: 12px 4px 10px; }
  .social-btn svg { width: 24px; height: 24px; }
  .social-btn .social-name { font-size: 12px; }
  .social-btn .social-handle { font-size: 9px; }
}

/* Step 2 — interests question (replaces opt-in form) */
.interests-lede {
  font-family: var(--chaos-serif);
  font-style: italic;
  font-size: 16px;
  color: var(--chaos-navy);
  margin: 0 0 4px;
  text-align: center;
}
.interests-lede strong {
  font-family: var(--chaos-display);
  font-weight: 800;
  font-style: normal;
  color: var(--chaos-magenta);
  letter-spacing: 0.02em;
}
#waitlist-interests-form .field-label-block {
  text-align: center;
  display: block;
  font-size: 13px;
  margin-bottom: 8px;
}
#waitlist-interests-form .opt {
  display: block;
  font-family: var(--chaos-serif);
  font-style: italic;
  font-size: 12px;
  color: var(--chaos-navy);
  opacity: 0.7;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  margin-top: 2px;
}
.interests-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.interests-actions .chaos-submit {
  flex: 1;
  margin-top: 0;
}
.skip-btn {
  background: transparent;
  border: 0;
  font-family: var(--chaos-serif);
  font-style: italic;
  font-size: 14px;
  color: var(--chaos-navy);
  opacity: 0.7;
  cursor: pointer;
  padding: 8px 10px;
}
.skip-btn:hover { opacity: 1; text-decoration: underline; }

/* --- Mobile + small screen tuning --------------------------------------- */
@media (max-width: 600px) {
  .form-reveal { padding: 12px; }
  .chaos-form-card {
    padding: 32px 20px 22px;
    max-height: calc(100vh - 24px);
    box-shadow:
      0 0 0 1px rgba(255, 45, 85, 0.25),
      0 16px 48px -10px rgba(255, 45, 85, 0.25);
  }
  .form-close { top: 8px; right: 10px; width: 36px; height: 36px; font-size: 26px; }
  .chaos-form-title { font-size: clamp(30px, 8vw, 44px); }
  .chaos-form-header { margin-bottom: 14px; }
  .chaos-form-sub { font-size: 13px; }
  .chaos-form { gap: 12px; }
  .sticker-tl { top: -10px; left: 12px; font-size: 12px; padding: 5px 8px; }
  .sticker-br { bottom: -10px; right: 12px; font-size: 13px; padding: 5px 8px; }
  .chips { grid-template-columns: repeat(2, 1fr); }
  .chaos-submit { font-size: 17px; padding: 13px 18px; }
  /* GHL vendor modal on mobile */
  .form-reveal-inner { max-height: calc(100vh - 24px); padding: 6px; }
  .form-reveal iframe { min-height: 700px; }
}

/* Prevent iOS zoom on focus by keeping base input font-size ≥ 16px (already set above) */

/* --- Proof / experience --------------------------------------------------- */

.proof {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 96px 24px;
}

.proof-inner {
  max-width: var(--maxw);
  margin: 0 auto;
}

.proof-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: 0.02em;
  margin: 0 0 16px;
  text-transform: uppercase;
}

.proof-lead {
  color: var(--fg-dim);
  max-width: 760px;
  margin: 0 0 48px;
  font-size: clamp(15px, 1.4vw, 18px);
}

.proof-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.proof-item {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}

.proof-item h3 {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.proof-item p {
  margin: 0;
  color: var(--fg-dim);
  font-size: 15px;
}

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

.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 48px 24px;
}

.footer-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  text-align: center;
}

.footer-brand {
  font-family: var(--font-display);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
}

.footer-socials a {
  text-decoration: none;
  color: var(--fg-dim);
  font-size: 14px;
}
.footer-socials a:hover { color: var(--fg); }

.footer-meta {
  color: var(--fg-dim);
  font-size: 13px;
}

/* --- Reduced motion ------------------------------------------------------- */

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