/* ============================================================
   JAY MASKA — bold performance, techy bubble surfaces
   Surface: warm paper · Ink: deep slate-teal #172B36 · Accent: teal #114C5A
   Type: Anton (heavy condensed display, all-caps) / Inter (body)
         / IBM Plex Mono (labels)
   ============================================================ */

:root {
  /* Jay Maska brand palette */
  --ivory: #f7f9f8;
  --ivory-deep: #ebefee;
  --ink: #172b36;
  --ink-soft: #44545e;
  --accent: #114c5a;
  --accent-deep: #0d3a45;
  --accent-bright: #7fb3c0; /* accent for text on dark surfaces */
  --accent-glow: rgba(17, 76, 90, 0.28);
  --hairline: rgba(23, 43, 54, 0.14);
  --hairline-light: rgba(247, 249, 248, 0.2);

  --font-display: "Anton", "Arial Narrow", Impact, sans-serif;
  --font-body: "Inter", -apple-system, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, monospace;

  /* bubble radii — everything soft, nothing square */
  --r-sm: 14px;
  --r-md: 22px;
  --r-lg: 30px;

  --pad-x: clamp(1.25rem, 5vw, 5rem);
  --section-y: clamp(5rem, 12vh, 9rem);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--ivory);
  color: var(--ink);
  font-size: 1.0625rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--accent); color: var(--ivory); }

h1, h2 {
  font-family: var(--font-display);
  font-weight: 400; /* Anton ships one weight — it's already heavy */
  line-height: 0.98;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}
h2 { font-size: clamp(2.4rem, 5.5vw, 4.25rem); }
/* second headline line: two-tone accent instead of italics */
h1 em, h2 em, .italic { font-style: normal; color: var(--accent); }
.section-dark h2 em, .final-cta h2 em { color: var(--accent-bright); }
h3 { font-family: var(--font-body); font-weight: 700; line-height: 1.15; letter-spacing: -0.01em; }
p { color: var(--ink-soft); max-width: 56ch; }
strong { font-weight: 700; }

.mono {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.small { font-size: 0.6875rem; }
.accent { color: var(--accent); }
a { color: inherit; }

/* ---------- buttons (pill, techy glow) ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 1rem 2rem;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--ink);
  color: var(--ivory);
  cursor: pointer;
  transition: background 0.25s var(--ease-out), color 0.25s var(--ease-out),
              border-color 0.25s var(--ease-out), transform 0.25s var(--ease-out),
              box-shadow 0.25s var(--ease-out);
}
.btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--ivory);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px -8px var(--accent-glow);
}
.btn:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
.btn:active { transform: translateY(0); }
.btn-primary {
  background: linear-gradient(135deg, #14586a, var(--accent) 55%, var(--accent-deep));
  border-color: var(--accent);
  box-shadow: 0 10px 32px -10px var(--accent-glow);
}
.btn-primary:hover { background: var(--ink); border-color: var(--ink); }
.btn-light { background: var(--ivory); border-color: var(--ivory); color: var(--ink); }
.btn-light:hover { background: var(--accent); border-color: var(--accent); color: var(--ivory); }
.btn-block { width: 100%; text-align: center; }
.btn[disabled] { opacity: 0.55; cursor: wait; transform: none; }

/* ---------- nav (floating glass pill) ----------
   Transparent over the hero; the pill fades in once you scroll. */
.nav {
  position: fixed;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 50;
  width: min(calc(100% - 2rem), 1200px);
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  transition: background 0.35s, box-shadow 0.35s, border-color 0.35s;
}
.nav.scrolled {
  border-color: var(--hairline);
  background: rgba(247, 249, 248, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 14px 44px -22px rgba(23, 43, 54, 0.4);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 0.6rem 0.7rem 0.6rem 1.7rem;
}
/* sleek text wordmark — JAY bold / MASKA light, wide tracking */
.wordmark {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink);
  white-space: nowrap;
}
.wordmark span { font-weight: 600; color: var(--accent); }
.wordmark.on-dark { color: var(--ivory); }
.wordmark.on-dark span { color: #7fb3c0; }
.wordmark.small { font-size: 0.8rem; }
.nav-links { display: flex; gap: 2rem; }
.nav-links a {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink-soft);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--accent); }
.btn-nav { padding: 0.65rem 1.2rem; font-size: 0.7rem; }

/* ---------- hero ----------
   Background stays static for now. When Jay's footage is ready, drop a
   <video class="hero-video" autoplay muted loop playsinline> inside .hero
   (Lamborghini-style full-bleed) — the styles below are already wired. */
.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 7rem var(--pad-x) 4rem;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 50% at 85% 10%, rgba(17, 76, 90, 0.1), transparent 60%),
    radial-gradient(ellipse 60% 40% at 10% 95%, rgba(17, 76, 90, 0.06), transparent 60%),
    var(--ivory);
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-video + .hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(23, 43, 54, 0.82), rgba(23, 43, 54, 0.35));
  z-index: 0;
}
.hero > :not(.hero-video):not(.hero-scrim) { position: relative; z-index: 1; }

/* on-dark hero (video background) */
.hero.has-video .hero-title { color: var(--ivory); }
.hero.has-video .hero-title .accent,
.hero.has-video .hero-title .italic { color: var(--accent-bright); }
.hero.has-video .hero-sub { color: rgba(247, 249, 248, 0.88); }
.hero.has-video .hero-meta,
.hero.has-video .hero-price { color: rgba(247, 249, 248, 0.65); }
.hero.has-video .hero-foot { border-top-color: var(--hairline-light); }
.hero.has-video .seats-bar {
  color: var(--accent-bright);
  border-color: var(--hairline-light);
  background: rgba(23, 43, 54, 0.55);
}
/* nav over the video: light text until the scrolled pill appears */
.video-hero .nav:not(.scrolled) .wordmark { color: var(--ivory); }
.video-hero .nav:not(.scrolled) .wordmark span { color: var(--accent-bright); }
.video-hero .nav:not(.scrolled) .nav-links a { color: rgba(247, 249, 248, 0.78); }
.video-hero .nav:not(.scrolled) .nav-links a:hover { color: var(--ivory); }
.video-hero .nav:not(.scrolled) .btn-nav { border-color: rgba(247, 249, 248, 0.45); }
.hero-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 0.9rem; color: var(--ink-soft); margin-bottom: 2.5rem; }
.hero-meta .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--accent); }
.hero-title {
  font-size: clamp(3.6rem, 12.5vw, 10.5rem);
  display: flex;
  flex-direction: column;
}
.hero-title .line { display: block; }
/* staggered entrance: each line slides in from OFF-SCREEN LEFT into its
   final spot, 2s apart. Pure CSS keyframes (no scroll observer — the lines
   start outside the viewport). .hero's overflow:hidden clips the approach. */
.hero-title .line-slide {
  display: block;
  transform: translateX(calc(-100% - 50vw));
  animation: heroSlideIn 1.1s var(--ease-out) forwards;
}
.hero-title .line:nth-child(2) .line-slide { animation-delay: 1.2s; }
.hero-title .line:nth-child(3) .line-slide { animation-delay: 2.4s; }
@keyframes heroSlideIn {
  to { transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-title .line-slide { animation: none; transform: none; }
}
.hero-foot {
  margin-top: 3rem;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  border-top: 1px solid var(--hairline);
  padding-top: 2rem;
}
.hero-sub { font-size: 1.15rem; max-width: 34rem; }
.hero-cta { display: flex; flex-direction: column; gap: 0.8rem; align-items: flex-start; }
.hero-price { color: var(--ink-soft); }

.seats-bar {
  position: absolute;
  bottom: 1.4rem;
  left: var(--pad-x);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--accent);
  border: 1px solid var(--hairline);
  border-radius: 999px;
  padding: 0.55rem 1.1rem;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(8px);
}
.pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent);
  animation: pulse 1.8s ease-out infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(17, 76, 90, 0.5); }
  70% { box-shadow: 0 0 0 10px rgba(17, 76, 90, 0); }
  100% { box-shadow: 0 0 0 0 rgba(17, 76, 90, 0); }
}

/* ---------- marquee ---------- */
.marquee {
  overflow: hidden;
  border-block: 1px solid var(--ink);
  background: var(--accent);
  color: var(--ivory);
  padding: 0.75rem 0;
  white-space: nowrap;
}
.marquee-track { display: inline-flex; animation: marquee 28s linear infinite; }
.marquee-track span {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.18em;
}
@keyframes marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
  html { scroll-behavior: auto; }
}

/* ---------- sections ---------- */
.section { padding: var(--section-y) var(--pad-x); }
.section-head { margin-bottom: clamp(2.5rem, 6vw, 4.5rem); }
.kicker { display: block; color: var(--accent); margin-bottom: 1.1rem; }

.section-dark {
  background: var(--ink);
  color: var(--ivory);
}
.section-dark p { color: rgba(247, 249, 248, 0.72); }

/* dark surfaces use the bright teal so accents stay legible */
.section-dark .accent,
.section-dark .kicker,
.quote-band .accent,
.final-cta .accent {
  color: var(--accent-bright);
}

/* ---------- features (bubble cards) ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.1rem;
}
.feature {
  border: 1px solid var(--hairline);
  border-radius: var(--r-md);
  background: rgba(255, 255, 255, 0.55);
  padding: 2rem 1.6rem 2.4rem;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out),
              border-color 0.3s var(--ease-out);
}
.feature:hover {
  transform: translateY(-4px);
  border-color: rgba(17, 76, 90, 0.35);
  box-shadow: 0 18px 44px -18px var(--accent-glow);
}
.feature-num { display: block; color: var(--accent); margin-bottom: 2.6rem; }
.feature h3 { font-size: 1.45rem; margin-bottom: 0.7rem; }
.feature p { font-size: 0.95rem; }

/* ---------- media placeholders ---------- */
.media-slot { margin-top: clamp(2.5rem, 6vw, 4rem); }
.media-frame {
  display: grid;
  place-items: center;
  aspect-ratio: 21 / 9;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px dashed var(--hairline);
  background:
    repeating-linear-gradient(-45deg, transparent 0 14px, rgba(23, 43, 54, 0.025) 14px 28px),
    var(--ivory-deep);
  color: var(--ink-soft);
}
.media-frame.portrait { aspect-ratio: 4 / 5; }
.media-frame-dark {
  border-color: var(--hairline-light);
  background:
    repeating-linear-gradient(-45deg, transparent 0 14px, rgba(247, 249, 248, 0.03) 14px 28px),
    rgba(247, 249, 248, 0.04);
  color: rgba(247, 249, 248, 0.5);
}
.media-slot figcaption { margin-top: 0.7rem; color: var(--ink-soft); }
.media-frame.has-photo { border: 1px solid var(--hairline); background: none; position: relative; overflow: hidden; box-shadow: 0 24px 60px -28px rgba(23, 43, 54, 0.45); }
.media-frame.has-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}
.media-frame.has-photo:hover img { transform: scale(1.025); }

/* ---------- host ---------- */
.host-grid {
  display: grid;
  grid-template-columns: minmax(260px, 420px) 1fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
}
.host-copy h2 { margin-bottom: 1.4rem; }
.host-points { list-style: none; margin-top: 1.8rem; display: grid; gap: 0.7rem; color: rgba(247, 249, 248, 0.65); }
.host-media .media-frame.has-photo { border-color: rgba(247, 249, 248, 0.3); }
.host-caption { margin-top: 0.8rem; color: rgba(247, 249, 248, 0.5); }
.host-copy p + p { margin-top: 1rem; }

/* ---------- quote band ---------- */
.quote-band {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--ink);
}
.quote-band-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  opacity: 0.65;
}
.quote-band-copy {
  position: relative;
  padding: clamp(4rem, 10vh, 7rem) var(--pad-x) clamp(3rem, 8vh, 5rem);
  background: linear-gradient(to top, rgba(23, 43, 54, 0.92), rgba(23, 43, 54, 0.4) 70%, transparent);
  width: 100%;
  color: var(--ivory);
}
.quote-band-copy p {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4.2vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--ivory);
  max-width: 26em;
}
.quote-band-copy cite { display: block; margin-top: 1.6rem; font-style: normal; color: rgba(247, 249, 248, 0.6); }

/* ---------- agenda (scroll-stack deck) ----------
   Each day card pins below the nav as you scroll; the next day slides up
   and stacks over it — so four full days never fight for one screen. */
.agenda-stack {
  display: grid;
  gap: clamp(1.5rem, 4vh, 3rem);
}
.day-card {
  position: sticky;
  top: calc(5.5rem + (var(--i) * 1.4rem));
  background: #fdfdfc;
  border: 1px solid var(--hairline);
  border-radius: var(--r-lg);
  padding: clamp(1.6rem, 4vw, 2.6rem);
  box-shadow: 0 -18px 50px -30px rgba(23, 43, 54, 0.45);
}
.agenda-day-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 2px solid var(--ink);
  padding-bottom: 0.9rem;
  margin-bottom: 0.4rem;
}
.agenda-daynum { font-family: var(--font-display); font-size: 1.9rem; text-transform: uppercase; letter-spacing: 0.02em; }
.agenda-day-head .mono { color: var(--ink-soft); }
.agenda-list { list-style: none; }
.agenda-list li {
  display: grid;
  grid-template-columns: 3.6rem 1fr;
  gap: 1.1rem;
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--hairline);
}
.agenda-list .mono { color: var(--accent); padding-top: 0.2rem; }
.agenda-list strong { font-weight: 600; font-size: 1rem; }
.agenda-list p { font-size: 0.9rem; margin-top: 0.25rem; }
.agenda-note { margin-top: 1.2rem; color: var(--ink-soft); }

/* ---------- investment ---------- */
.invest-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(300px, 1.1fr);
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: start;
}
.invest-copy h2 { margin-bottom: 1.3rem; }
.price-block { margin-top: 2.2rem; display: flex; flex-direction: column; gap: 0.5rem; }
.price {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 7vw, 5.5rem);
  line-height: 1;
  letter-spacing: 0.01em;
}
.price-block .mono { color: rgba(247, 249, 248, 0.55); }

.pay-options { display: grid; gap: 1.2rem; }
.pay-card {
  display: block;
  text-decoration: none;
  border: 1px solid var(--hairline-light);
  border-radius: var(--r-md);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(6px);
  padding: 1.8rem 1.7rem 1.6rem;
  transition: border-color 0.25s var(--ease-out), background 0.25s var(--ease-out), transform 0.25s var(--ease-out);
}
.pay-card:hover { border-color: rgba(127, 179, 192, 0.6); background: rgba(17, 76, 90, 0.18); transform: translateY(-3px); box-shadow: 0 18px 50px -18px rgba(0, 0, 0, 0.5); }
.pay-card:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
.pay-card-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.6rem; color: rgba(247, 249, 248, 0.5); }
.pay-arrow { color: var(--accent-bright); font-size: 1.2rem; transition: transform 0.25s var(--ease-out); }
.pay-card:hover .pay-arrow { transform: translateX(5px); }
.pay-card h3 { font-size: 1.6rem; margin-bottom: 0.6rem; }
.pay-card p { font-size: 0.92rem; }
.pay-cta { display: inline-block; margin-top: 1.3rem; color: var(--accent-bright); border-bottom: 1px solid currentColor; padding-bottom: 2px; }

/* ---------- register ---------- */
.register-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(320px, 1fr);
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: start;
}
.register-copy h2 { margin-bottom: 1.3rem; }
.register-assurances { display: grid; gap: 0.6rem; margin-top: 2rem; color: var(--ink-soft); }

.register-form { display: grid; gap: 1.3rem; border: 1px solid var(--hairline); border-radius: var(--r-lg); padding: clamp(1.5rem, 3vw, 2.4rem); background: rgba(255, 255, 255, 0.7); backdrop-filter: blur(8px); box-shadow: 0 24px 60px -30px rgba(23, 43, 54, 0.35); }
.field { display: grid; gap: 0.45rem; border: 0; }
.field label, .field legend { color: var(--ink-soft); }
.opt { text-transform: none; letter-spacing: 0.04em; opacity: 0.7; }
input[type="text"], input[type="email"], input[type="tel"], textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.85rem 1.1rem;
  border: 1px solid var(--hairline);
  border-radius: var(--r-sm);
  background: var(--ivory);
  color: var(--ink);
  width: 100%;
  transition: border-color 0.2s;
}
input:focus, textarea:focus { outline: none; border-color: var(--accent); }
textarea { resize: vertical; }
.radio-row { display: flex; gap: 0.8rem; flex-wrap: wrap; }
.radio {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  border: 1px solid var(--hairline);
  border-radius: 999px;
  padding: 0.7rem 1.2rem;
  font-size: 0.9rem;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.radio:has(input:checked) { border-color: var(--accent); background: rgba(17, 76, 90, 0.07); }
.radio input { accent-color: var(--accent); }
.form-status { color: var(--accent); min-height: 1.2em; }

.register-success {
  border: 1px solid var(--accent);
  border-radius: var(--r-lg);
  background: #fdfdfc;
  padding: clamp(2rem, 4vw, 3rem);
  display: grid;
  gap: 1rem;
  justify-items: start;
}
.success-mark { color: var(--accent); font-size: 2rem; line-height: 1; }
.register-success h3 { font-size: 2rem; }
.register-success .small { color: var(--ink-soft); }

/* ---------- faq ---------- */
.section-faq { background: var(--ivory-deep); }
.faq-list { max-width: 52rem; }
.faq-item {
  border: 1px solid var(--hairline);
  border-radius: var(--r-md);
  background: rgba(255, 255, 255, 0.6);
  padding: 0 1.4rem;
  margin-bottom: 0.8rem;
  transition: border-color 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out);
}
.faq-item[open] { border-color: rgba(17, 76, 90, 0.35); box-shadow: 0 14px 36px -18px var(--accent-glow); }
.faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  list-style: none;
  cursor: pointer;
  padding: 1.4rem 0;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.1rem;
  transition: color 0.2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--accent); }
.faq-item summary:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
.faq-icon { font-family: var(--font-mono); color: var(--accent); transition: transform 0.3s var(--ease-out); }
.faq-item[open] .faq-icon { transform: rotate(45deg); }
.faq-item p { padding: 0 0 1.5rem; max-width: 46rem; }

/* ---------- final cta ---------- */
.final-cta {
  position: relative;
  background: var(--ink);
  color: var(--ivory);
  text-align: center;
  overflow: hidden;
}
.final-cta-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.16; /* dark-navy wash — blends into the footer below */
}
.final-cta-copy {
  position: relative;
  padding: clamp(6rem, 14vh, 10rem) var(--pad-x);
  display: grid;
  justify-items: center;
  gap: 2rem;
}
.final-monogram {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 1px solid rgba(247, 249, 248, 0.3);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 0.04em;
  color: var(--ivory);
  background: rgba(17, 76, 90, 0.35);
  backdrop-filter: blur(4px);
}
.final-cta h2 { font-size: clamp(3rem, 8vw, 6.5rem); }
.final-cta .mono { color: rgba(247, 249, 248, 0.6); }

/* ---------- footer (dark navy, columns) ---------- */
.footer {
  background: var(--ink);
  color: rgba(247, 249, 248, 0.65);
  padding: clamp(3.5rem, 8vh, 5.5rem) var(--pad-x) 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.3fr) repeat(2, minmax(140px, 0.5fr));
  gap: clamp(2rem, 6vw, 5rem);
  padding-bottom: clamp(2.5rem, 6vh, 4rem);
}
.footer-brand { display: grid; gap: 1rem; justify-items: start; }
.footer-brand p { color: rgba(247, 249, 248, 0.55); font-size: 0.95rem; max-width: 26rem; }
.footer-dates { color: var(--accent-bright); }
.footer-social { display: flex; gap: 0.7rem; margin-top: 0.4rem; }
.footer-social a {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--hairline-light);
  color: rgba(247, 249, 248, 0.7);
  transition: color 0.2s, border-color 0.2s, transform 0.2s, background 0.2s;
}
.footer-social a:hover {
  color: var(--ivory);
  border-color: var(--accent-bright);
  background: rgba(127, 179, 192, 0.12);
  transform: translateY(-2px);
}
.footer-social svg { width: 18px; height: 18px; }
.footer-col { display: grid; gap: 0.7rem; align-content: start; }
.footer-head { color: rgba(247, 249, 248, 0.4); margin-bottom: 0.3rem; }
.footer-col a {
  text-decoration: none;
  font-size: 0.95rem;
  color: rgba(247, 249, 248, 0.7);
  transition: color 0.2s;
  width: fit-content;
}
.footer-col a:hover { color: var(--accent-bright); }
.footer-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.4rem 0;
  border-top: 1px solid var(--hairline-light);
  color: rgba(247, 249, 248, 0.45);
}
.footer-bar a { text-decoration: none; transition: color 0.2s; }
.footer-bar a:hover { color: var(--accent-bright); }

/* ---------- reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.1s; }
.reveal.d2 { transition-delay: 0.2s; }
.reveal.d3 { transition-delay: 0.3s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- responsive ---------- */
@media (max-width: 860px) {
  .nav-links { display: none; }
  .host-grid, .invest-grid, .register-grid { grid-template-columns: 1fr; }
  .host-media { max-width: 420px; }
  .hero-foot { flex-direction: column; align-items: flex-start; }
  .seats-bar { position: static; margin-top: 2.2rem; }
  .day-card { top: 4.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
