/* ============================================================
   EVENTIXPROF — "House lights down"
   Palette: warm void / ivory program / brand gold #ffc05d / sky #8eceea
   Type:    Big Shoulders Display (display) · Archivo (body) · Space Mono (data)
   ============================================================ */

:root {
  --void: #0c0a0e;
  --void-2: #14111a;
  --ivory: #efe9dd;
  --ivory-2: #e6dfd0;
  --ink: #17131c;
  --gold: #ffc05d;
  --sky: #8eceea;
  --muted: #a79fb5;
  --muted-ink: #5d5566;
  --line-dark: rgba(255, 255, 255, 0.1);
  --line-light: rgba(23, 19, 28, 0.15);

  --font-display: "Big Shoulders Display", "Archivo", system-ui, sans-serif;
  --font-body: "Archivo", system-ui, sans-serif;
  --font-mono: "Space Mono", ui-monospace, monospace;

  --gutter: clamp(1.25rem, 4vw, 4rem);
}

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

body {
  background: var(--void);
  color: #f4f1f7;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--gold); color: var(--ink); }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* ============ PRELOADER ============ */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: var(--void);
  display: grid;
  place-items: center;
}

.preloader__board { text-align: center; }

.preloader__word {
  display: block;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: clamp(1.4rem, 4.5vw, 2.6rem);
  letter-spacing: 0.35em;
  color: var(--ivory);
}

.preloader__word .fl {
  display: inline-block;
  min-width: 0.8em;
}

.preloader__tag {
  display: block;
  margin-top: 1.2rem;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.4em;
  color: var(--gold);
}

/* ============ NAV ============ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.1rem var(--gutter);
  background: linear-gradient(to bottom, rgba(12, 10, 14, 0.85), rgba(12, 10, 14, 0));
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: color 0.35s, background 0.35s;
}

/* over the ivory act, the nav flips to ink */
.nav--on-light {
  color: var(--ink);
  background: linear-gradient(to bottom, rgba(239, 233, 221, 0.92), rgba(239, 233, 221, 0));
}

.nav--on-light .nav__links a { color: var(--muted-ink); }
.nav--on-light .nav__links a:hover { color: var(--ink); }
.nav--on-light .nav__cta { border-color: var(--line-light); }
.nav--on-light .nav__burger span { background: var(--ink); }

.nav__logo { display: block; }

.nav__logo img {
  height: 42px;
  width: auto;
  display: block;
}

.nav__links {
  display: flex;
  gap: 2rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.nav__links a {
  position: relative;
  padding: 0.25rem 0;
  color: var(--muted);
  transition: color 0.25s;
}

.nav__links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s cubic-bezier(0.65, 0, 0.35, 1);
}

.nav__links a:hover { color: #fff; }
.nav__links a:hover::after { transform: scaleX(1); transform-origin: left; }

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  padding: 0.55rem 1.1rem;
  transition: border-color 0.25s, background 0.25s;
}

.nav__cta:hover {
  border-color: var(--gold);
  background: rgba(255, 192, 93, 0.1);
}

.nav__cta-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 8px var(--gold);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: 0;
  padding: 0.5rem;
  cursor: pointer;
}

.nav__burger span {
  width: 26px;
  height: 2px;
  background: #fff;
  transition: transform 0.3s, opacity 0.3s;
}

.nav__burger[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 40;
  background: var(--void-2);
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s;
}

.mobile-menu.is-open { opacity: 1; pointer-events: auto; }

.mobile-menu nav {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.8rem;
}

.mobile-menu__phone {
  margin-top: 1rem;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--gold);
}

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 7rem var(--gutter) 5rem;
  overflow: hidden;
}

/* Gradient-dots background: hex grid of pinholes over drifting color
   fields, cycling hue — ported from the React/framer-motion component
   (dotSize 8, spacing 10, duration 30s, colorCycle 6s). */
.hero__dots {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.8;
  background-color: var(--void);
  background-image:
    radial-gradient(circle at 50% 50%, transparent 2.5px, var(--void) 0 8px, transparent 8px),
    radial-gradient(circle at 50% 50%, transparent 2.5px, var(--void) 0 8px, transparent 8px),
    radial-gradient(circle at 50% 50%, #f00, transparent 60%),
    radial-gradient(circle at 50% 50%, #ff0, transparent 60%),
    radial-gradient(circle at 50% 50%, #0f0, transparent 60%),
    radial-gradient(ellipse at 50% 50%, #00f, transparent 60%);
  background-size:
    10px 17.32px,
    10px 17.32px,
    200% 200%,
    200% 200%,
    200% 200%,
    200% 17.32px;
  animation:
    dots-pan 30s linear infinite,
    dots-hue 6s linear infinite;
  /* keep the field away from the headline; weight it to the right */
  -webkit-mask-image: radial-gradient(100% 120% at 80% 40%, #000 30%, transparent 72%);
  mask-image: radial-gradient(100% 120% at 80% 40%, #000 30%, transparent 72%);
}

@keyframes dots-pan {
  from {
    background-position:
      0px 0px, 5px 8.66px,
      800% 400%, 1000% -400%, -1200% -600%, 400% 17.32px;
  }
  to {
    background-position:
      0px 0px, 5px 8.66px,
      0% 0%, 0% 0%, 0% 0%, 0% 0%;
  }
}

@keyframes dots-hue {
  from { filter: hue-rotate(0deg); }
  to { filter: hue-rotate(360deg); }
}

.hero__eyebrow {
  text-shadow: 0 1px 8px rgba(12, 10, 14, 0.9);
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  color: var(--muted);
  margin-bottom: 2.2rem;
}

.hero__eyebrow-rule {
  width: 3.5rem;
  height: 1px;
  background: var(--gold);
}

.hero__title {
  perspective: 900px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(3.6rem, 14.5vw, 13.5rem);
  line-height: 0.92;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
}

.hero__line {
  display: block;
  white-space: nowrap;
}

.hero__line .fl {
  display: inline-block;
  transform-origin: 50% 100%;
  backface-visibility: hidden;
}

.hero__line--accent {
  color: transparent;
  -webkit-text-stroke: 2px var(--gold);
  margin-left: clamp(0rem, 8vw, 9rem);
}

.hero__foot {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 3.2rem;
}

.hero__sub {
  max-width: 32rem;
  color: #c9c2d6;
  text-shadow: 0 1px 10px rgba(12, 10, 14, 0.9);
  font-size: clamp(0.95rem, 1.4vw, 1.1rem);
}

.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero__scrollhint {
  position: absolute;
  bottom: 2rem;
  right: var(--gutter);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.35em;
  color: var(--muted);
  writing-mode: vertical-rl;
}

.hero__scrollhint-line {
  width: 1px;
  height: 3.4rem;
  background: linear-gradient(var(--gold), transparent);
  animation: drip 2s ease-in-out infinite;
}

@keyframes drip {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 1rem 2rem;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s, background 0.25s, color 0.25s, border-color 0.25s;
  will-change: transform;
}

.btn--gel {
  background: var(--gold);
  color: var(--ink);
}

.btn--gel:hover { background: #ffd287; }

.btn--ghost {
  border-color: var(--line-dark);
  color: #fff;
}

.btn--ghost:hover { border-color: #fff; }

/* ============ TICKER ============ */
.ticker {
  overflow: hidden;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  background: var(--void-2);
  padding: 0.9rem 0;
}

.ticker__track {
  display: flex;
  white-space: nowrap;
  width: max-content;
}

.ticker__chunk {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.45em;
  color: var(--gold);
  text-shadow: 0 0 12px rgba(255, 192, 93, 0.55);
  padding-right: 1rem;
}

.ticker__chunk i {
  font-style: normal;
  color: var(--sky);
  text-shadow: 0 0 10px rgba(142, 206, 234, 0.8);
}

/* ============ STATS ============ */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.stats__item {
  background: var(--void);
  padding: clamp(2.5rem, 5vw, 4.5rem) var(--gutter);
  text-align: center;
}

.stats__num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.6rem, 6vw, 5rem);
  line-height: 1;
}

.stats__suffix { color: var(--gold); }

.stats__label {
  margin-top: 0.8rem;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ============ SECTION HEADS ============ */
.section-head {
  padding: clamp(4.5rem, 9vw, 8rem) var(--gutter) clamp(2rem, 4vw, 3.5rem);
  max-width: 1400px;
}

.section-head__label {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.35em;
  color: var(--muted-ink);
  margin-bottom: 1.6rem;
}

.section-head--dark .section-head__label { color: var(--muted); }

/* barcode motif: tickets, not decoration */
.barcode {
  display: inline-block;
  width: 46px;
  height: 16px;
  background: repeating-linear-gradient(
    90deg,
    var(--ink) 0 2px, transparent 2px 4px,
    var(--ink) 4px 7px, transparent 7px 9px,
    var(--ink) 9px 10px, transparent 10px 13px
  );
}

.barcode--light {
  background: repeating-linear-gradient(
    90deg,
    var(--ivory) 0 2px, transparent 2px 4px,
    var(--ivory) 4px 7px, transparent 7px 9px,
    var(--ivory) 9px 10px, transparent 10px 13px
  );
}

.section-head__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.6rem, 6.2vw, 5.4rem);
  line-height: 0.98;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.section-head__copy {
  margin-top: 1.4rem;
  max-width: 34rem;
  color: var(--muted-ink);
}

.section-head--dark .section-head__copy { color: var(--muted); }

/* ============ ACT II : IVORY PROGRAM ============ */
.program {
  background: var(--ivory);
  color: var(--ink);
}

/* Marketplaces */
.markets { padding-bottom: clamp(4rem, 8vw, 7rem); }

.markets__rows {
  margin-top: 1.5rem;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  overflow: hidden;
}

.markets__row {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  white-space: nowrap;
  width: max-content;
  padding: 1.6rem 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.8rem, 4.5vw, 3.4rem);
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

.markets__row--alt {
  border-top: 1px solid var(--line-light);
  color: transparent;
  -webkit-text-stroke: 1.5px var(--ink);
}

.markets__row i {
  font-style: normal;
  font-size: 0.5em;
  color: var(--gold);
  -webkit-text-stroke: 0;
}

/* About */
.about { padding-bottom: clamp(4rem, 8vw, 7rem); }

.about__layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2rem, 5vw, 5rem);
  padding: clamp(4.5rem, 9vw, 8rem) var(--gutter) 0;
  max-width: 1400px;
}

.about__rail {
  position: sticky;
  top: 7rem;
  align-self: start;
}

.about__rail .section-head__label { margin-bottom: 1.6rem; }

.about__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.6rem, 6.2vw, 5.4rem);
  line-height: 0.98;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.about__est {
  margin-top: 1.4rem;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.32em;
  color: var(--muted-ink);
}

/* scroll-scrubbed word reveal */
.about__lede {
  font-size: clamp(1.35rem, 2.6vw, 2.3rem);
  line-height: 1.35;
  font-weight: 500;
}

.about__lede .w { opacity: 1; }
.about__lede.is-split .w { opacity: 0.12; }

/* gate rows */
.gates {
  list-style: none;
  margin-top: clamp(2.5rem, 5vw, 4rem);
  border-top: 1px solid var(--line-light);
}

.gate {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(1.2rem, 3vw, 2.5rem);
  padding: 1.4rem 0;
  border-bottom: 1px solid var(--line-light);
  transition: padding-left 0.35s cubic-bezier(0.65, 0, 0.35, 1);
}

.gate:hover { padding-left: 0.8rem; }

.gate__no {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  color: var(--muted-ink);
  border: 1px solid var(--line-light);
  border-radius: 3px;
  padding: 0.35rem 0.6rem;
  white-space: nowrap;
  transition: color 0.3s, border-color 0.3s, background 0.3s;
}

.gate:hover .gate__no {
  color: var(--ink);
  border-color: var(--gold);
  background: rgba(255, 192, 93, 0.25);
}

.gate__body h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.25rem, 2.4vw, 1.9rem);
  text-transform: uppercase;
  line-height: 1.05;
}

.gate__body p {
  margin-top: 0.25rem;
  font-size: 0.92rem;
  color: var(--muted-ink);
}

.gate__arrow {
  font-size: 1.4rem;
  color: var(--gold);
  opacity: 0;
  transform: translateX(-12px);
  transition: opacity 0.3s, transform 0.35s cubic-bezier(0.65, 0, 0.35, 1);
}

.gate:hover .gate__arrow {
  opacity: 1;
  transform: translateX(0);
}

/* founders: borderless editorial portraits */
.about__founders {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.5rem, 4vw, 3.5rem);
  padding: 0 var(--gutter);
  max-width: 1400px;
  margin-top: clamp(3rem, 6vw, 5rem);
}

.founder__photo {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 4px;
}

.founder__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 20%;
  filter: grayscale(1) contrast(1.05);
  transform: scale(1.06);
  transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.founder:hover .founder__photo img { transform: scale(1.12); }

.founder__photo::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: var(--gold);
  mix-blend-mode: multiply;
  opacity: 0;
  transition: opacity 0.5s;
  pointer-events: none;
}

.founder:hover .founder__photo::after { opacity: 0.3; }

.founder__meta {
  position: absolute;
  z-index: 2;
  inset: auto 0 0;
  padding: 2.4rem 1.6rem 1.3rem;
  background: linear-gradient(to top, rgba(12, 10, 14, 0.85), transparent);
  color: #fff;
}

.founder__role {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.32em;
  color: var(--gold);
  margin-bottom: 0.4rem;
}

.founder__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  text-transform: uppercase;
  line-height: 1;
}

.founder__bio {
  margin-top: 0.9rem;
  font-size: 0.95rem;
  color: var(--muted-ink);
  max-width: 30rem;
}

.about__quote {
  margin: clamp(3rem, 6vw, 5rem) var(--gutter) 0;
  max-width: 1400px;
  border-left: 3px solid var(--gold);
  padding-left: clamp(1.2rem, 3vw, 2.5rem);
}

.about__quote p {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.6rem, 3.6vw, 2.8rem);
  line-height: 1.1;
  text-transform: uppercase;
}

/* ============ GUARANTEES : STICKY STACK ============ */
.guarantees {
  background: var(--void);
  position: relative;
}

/* bento grid: spotlight cards */
.bento {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
  padding: 0 var(--gutter) clamp(4rem, 8vw, 7rem);
  max-width: 1400px;
  margin: 0 auto;
}

.bento__card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 3.5rem;
  min-height: 280px;
  padding: clamp(1.8rem, 3.5vw, 2.6rem);
  background: linear-gradient(160deg, var(--void-2), rgba(20, 17, 26, 0.55));
  border: 1px solid var(--line-dark);
  border-radius: 14px;
  transform-style: preserve-3d;
  will-change: transform;
  transition: border-color 0.35s;
}

.bento__card--wide { grid-column: span 2; }

.bento__card:hover { border-color: rgba(255, 192, 93, 0.45); }

/* cursor-tracked spotlight */
.bento__card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    340px circle at var(--mx, 50%) var(--my, 50%),
    rgba(255, 192, 93, 0.13),
    transparent 65%
  );
  opacity: 0;
  transition: opacity 0.35s;
  pointer-events: none;
}

.bento__card:hover::before { opacity: 1; }

.bento__index {
  position: absolute;
  top: 1rem;
  right: 1.4rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(4.5rem, 9vw, 8rem);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.09);
  transition: -webkit-text-stroke-color 0.35s;
  pointer-events: none;
}

.bento__card:hover .bento__index {
  -webkit-text-stroke-color: rgba(255, 192, 93, 0.5);
}

.bento__seat {
  align-self: flex-start;
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  border: 1px solid rgba(255, 192, 93, 0.45);
  border-radius: 3px;
  padding: 0.35rem 0.7rem;
}

.bento__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.7rem, 3.4vw, 2.6rem);
  text-transform: uppercase;
  line-height: 1;
}

.bento__copy {
  margin-top: 0.7rem;
  max-width: 30rem;
  color: var(--muted);
  font-size: clamp(0.92rem, 1.2vw, 1.02rem);
}

/* ============ CONTACT ============ */
.contact {
  position: relative;
  background: var(--void);
  overflow: hidden;
}

.contact__glow {
  position: absolute;
  bottom: -30%;
  left: -15%;
  width: 60vw;
  height: 60vw;
  background: radial-gradient(circle, rgba(142, 206, 234, 0.16), transparent 60%);
  filter: blur(50px);
  pointer-events: none;
}

.contact__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  padding: 0 var(--gutter) clamp(5rem, 9vw, 8rem);
  max-width: 1400px;
  align-items: start;
}

.contact__form { display: flex; flex-direction: column; gap: 1.4rem; }

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
}

.field {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.field::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s cubic-bezier(0.65, 0, 0.35, 1);
}

.field:focus-within::after { transform: scaleX(1); }

.field span {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
}

.field input,
.field textarea {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line-dark);
  padding: 0.7rem 0.1rem;
  color: #fff;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color 0.25s;
  resize: vertical;
}

.field input:focus,
.field textarea:focus { outline: none; }

.field:focus-within span { color: var(--gold); }

.field ::placeholder { color: rgba(167, 159, 181, 0.5); }

.contact__submit {
  align-self: flex-start;
  margin-top: 0.6rem;
  gap: 0.6rem;
}

.btn__arr {
  display: inline-block;
  transition: transform 0.35s cubic-bezier(0.65, 0, 0.35, 1);
}

.contact__submit:hover .btn__arr { transform: translateX(5px); }

.contact__form-note {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--gold);
  min-height: 1.2em;
}

/* Backstage pass */
.pass {
  position: relative;
  background: linear-gradient(160deg, #f7f2e9, var(--ivory-2));
  color: var(--ink);
  border-radius: 14px;
  padding: 3.2rem 2.2rem 2.2rem;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
  transform: rotate(2deg);
}

.pass__hole {
  position: absolute;
  top: 1.1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 46px;
  height: 12px;
  border-radius: 999px;
  background: var(--void);
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.6);
}

.pass__access {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.42em;
  color: var(--gold);
  text-align: center;
  margin-bottom: 0.5rem;
}

.pass__brand {
  border-bottom: 1px dashed var(--line-light);
  padding-bottom: 1.4rem;
  margin-bottom: 1.4rem;
}

.pass__brand img {
  height: 44px;
  width: auto;
  margin: 0 auto;
}

.pass__list { display: flex; flex-direction: column; gap: 1.1rem; }

.pass__list dt {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.32em;
  color: var(--muted-ink);
  margin-bottom: 0.2rem;
}

.pass__list dd {
  font-weight: 500;
  font-size: 0.95rem;
}

.pass__list dd a:hover { color: var(--gold); }

.pass__barcode {
  margin: 1.6rem auto 0.6rem;
  width: 82%;
  height: 40px;
  background: repeating-linear-gradient(
    90deg,
    var(--ink) 0 2px, transparent 2px 5px,
    var(--ink) 5px 8px, transparent 8px 10px,
    var(--ink) 10px 11px, transparent 11px 15px,
    var(--ink) 15px 17px, transparent 17px 19px
  );
}

.pass__serial {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-align: center;
  color: var(--muted-ink);
}

/* ============ FOOTER ============ */
.footer {
  border-top: 1px solid var(--line-dark);
  background: var(--void-2);
}

.footer__ticker {
  overflow: hidden;
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--line-dark);
}

.footer__ticker .ticker__chunk {
  font-size: 0.7rem;
  color: var(--muted);
  text-shadow: none;
}

.footer__ticker .ticker__chunk i {
  color: var(--gold);
  text-shadow: none;
}

.footer__body {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  padding: clamp(3rem, 6vw, 5rem) var(--gutter) 2rem;
  max-width: 1400px;
}

.footer__col { display: flex; flex-direction: column; gap: 0.8rem; align-items: flex-start; }

.footer__logo { height: 40px; width: auto; }

.footer__blurb {
  margin-top: 0.6rem;
  max-width: 26rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.footer__head {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.32em;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.footer__col a {
  position: relative;
  color: var(--muted);
  font-size: 0.95rem;
  transition: color 0.25s;
}

.footer__col a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s cubic-bezier(0.65, 0, 0.35, 1);
}

.footer__col a:hover { color: #fff; }
.footer__col a:hover::after { transform: scaleX(1); transform-origin: left; }

.footer__addr {
  margin-top: 0.4rem;
  color: var(--muted-ink);
  font-size: 0.85rem;
  line-height: 1.5;
}

/* giant brand wordmark */
.footer__brand {
  overflow: hidden;
  padding: 0 var(--gutter);
  text-align: center;
  line-height: 0.78;
  margin-top: 1rem;
}

.footer__brand-word {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(3.4rem, 15.5vw, 15rem);
  letter-spacing: 0.02em;
  background: linear-gradient(100deg, var(--gold) 20%, var(--sky) 80%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  transform: translateY(0.08em);
}

.footer__legal-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem var(--gutter) 1.6rem;
  border-top: 1px solid var(--line-dark);
}

.footer__legal {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--muted-ink);
}

.footer__top {
  background: none;
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  padding: 0.6rem 1.2rem;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--muted);
  cursor: pointer;
  transition: border-color 0.25s, color 0.25s, background 0.25s;
}

.footer__top:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(255, 192, 93, 0.08);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }

  .about__layout { grid-template-columns: 1fr; }
  .bento { grid-template-columns: 1fr; }
  .bento__card--wide { grid-column: auto; }
  .about__rail { position: static; }
  .contact__grid { grid-template-columns: 1fr; }
  .footer__body { grid-template-columns: 1fr; }

  .pass {
    transform: rotate(0deg);
    max-width: 380px;
  }
}

@media (max-width: 640px) {
  .stats { grid-template-columns: 1fr; }
  .about__founders { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .hero__line--accent { margin-left: 0; }
}

/* ============ REDUCED MOTION ============ */
@media (prefers-reduced-motion: reduce) {

  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* reCAPTCHA: badge hidden, so the required notice sits under the form */
.grecaptcha-badge { visibility: hidden; }

.contact__legal {
  font-size: 0.72rem;
  line-height: 1.5;
  color: var(--muted-ink);
  max-width: 28rem;
}

.contact__legal a {
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.contact__legal a:hover { color: var(--gold); }

/* ============ FAQ ============ */
.faq {
  background: var(--ivory);
  color: var(--ink);
  padding-bottom: clamp(4rem, 8vw, 7rem);
}

.faq__list {
  padding: 0 var(--gutter);
  max-width: 1000px;
  border-top: 1px solid var(--line-light);
}

.qa { border-bottom: 1px solid var(--line-light); }

.qa summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.5rem 0;
  cursor: pointer;
  list-style: none;
  transition: padding-left 0.35s cubic-bezier(0.65, 0, 0.35, 1);
}

.qa summary::-webkit-details-marker { display: none; }
.qa summary:hover { padding-left: 0.7rem; }
.qa summary:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; }

.qa summary h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.15rem, 2.4vw, 1.75rem);
  text-transform: uppercase;
  line-height: 1.1;
}

/* plus that becomes a minus when open */
.qa__sign {
  position: relative;
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
}

.qa__sign::before,
.qa__sign::after {
  content: "";
  position: absolute;
  inset: 50% 0 auto 0;
  height: 2px;
  background: var(--gold);
  transition: transform 0.35s cubic-bezier(0.65, 0, 0.35, 1);
}

.qa__sign::after { transform: rotate(90deg); }
.qa[open] .qa__sign::after { transform: rotate(0deg); }

.qa__body {
  padding: 0 0 1.6rem;
  max-width: 52ch;
  color: var(--muted-ink);
  animation: qa-in 0.4s ease both;
}

.qa__body a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.qa__body a:hover { color: var(--gold); }

@keyframes qa-in {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}
