/* ==========================================================================
   Ticead — design tokens & base
   Palette is fixed by the brand: Blue #136CFC · Dark Blue #152641 ·
   Green #C3F84A · Light Blue #E8F4FC
   ========================================================================== */

:root {
  --blue: #136CFC;
  --blue-deep: #0B54CC;
  --ink: #152641;
  --ink-80: rgba(21, 38, 65, .82);
  --ink-70: rgba(21, 38, 65, .70);
  --ink-55: rgba(21, 38, 65, .58);
  --volt: #C3F84A;
  --volt-deep: #A9E22B;
  --sky: #E8F4FC;
  --sky-deep: #D4E8F8;
  --paper: #FFFFFF;
  --line: rgba(21, 38, 65, .12);
  --line-strong: rgba(21, 38, 65, .24);
  --amber: #FFB020;
  --red: #E5484D;

  --font-display: "Archivo", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Instrument Sans", "Helvetica Neue", Arial, sans-serif;
  --font-mono: "Spline Sans Mono", "SF Mono", Menlo, monospace;

  --r-sm: 10px;
  --r-md: 18px;
  --r-lg: 28px;
  --r-pill: 999px;

  --shadow-1: 0 1px 2px rgba(21, 38, 65, .06), 0 10px 28px -14px rgba(21, 38, 65, .22);
  --shadow-2: 0 2px 4px rgba(21, 38, 65, .06), 0 30px 60px -24px rgba(21, 38, 65, .35);

  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --ease-in-out: cubic-bezier(.65, 0, .35, 1);

  --container: 1240px;
  --gutter: clamp(20px, 4vw, 44px);
  --section: clamp(72px, 9vw, 128px);
}

*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.55;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, p { margin: 0; }
::selection { background: var(--volt); color: var(--ink); }

:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
  border-radius: 4px;
}
.is-dark :focus-visible,
.section--ink :focus-visible,
.hero :focus-visible,
.footer :focus-visible { outline-color: var(--volt); }

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute; left: 16px; top: -100px;
  z-index: 100;
  padding: 12px 18px;
  background: var(--ink); color: #fff;
  border-radius: var(--r-pill);
  font-weight: 600;
}
.skip-link:focus { top: 16px; }

/* ==========================================================================
   Typography
   ========================================================================== */

.display-xl, .display-lg, .display-md, .display-sm, .brand, .ticker, .stat__value, .price-big {
  font-family: var(--font-display);
  font-weight: 900;
  font-stretch: 112%;
  text-transform: uppercase;
  letter-spacing: -.015em;
  line-height: .92;
}

.display-xl { font-size: clamp(2.9rem, 8.6vw, 8.25rem); letter-spacing: -.025em; }
.display-lg { font-size: clamp(2.35rem, 5.4vw, 4.6rem); }
.display-md { font-size: clamp(1.8rem, 3.4vw, 2.85rem); line-height: .96; }
.display-sm { font-size: clamp(1.25rem, 1.9vw, 1.55rem); line-height: 1.02; letter-spacing: -.005em; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--blue);
}
.eyebrow::before {
  content: "";
  width: 22px;
  border-top: 2px dashed currentColor;
  opacity: .8;
}
.is-dark .eyebrow, .section--ink .eyebrow, .hero .eyebrow, .footer .eyebrow {
  color: var(--volt);
}

.lead {
  font-size: clamp(1.1rem, 1.5vw, 1.3rem);
  line-height: 1.5;
  color: var(--ink-70);
  max-width: 60ch;
}
.is-dark .lead, .section--ink .lead, .hero .lead, .footer .lead { color: rgba(255, 255, 255, .8); }

.mono {
  font-family: var(--font-mono);
  font-weight: 500;
  letter-spacing: .02em;
}

.hl {
  color: var(--ink);
  background-image: linear-gradient(var(--volt), var(--volt));
  background-repeat: no-repeat;
  background-size: 0% 88%;
  background-position: 0 60%;
  padding: 0 .08em;
  margin: 0 -.08em;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  transition: background-size .9s var(--ease-out) .55s;
}
.in-view .hl, .is-loaded .hl { background-size: 100% 88%; }
/* On dark heroes the word stays white until the sweep arrives, then flips to ink */
.hero .hl, .cta .hl, .section--ink .hl {
  color: #fff;
  transition: background-size .9s var(--ease-out) .55s, color .25s ease .85s;
}
.is-loaded .hero .hl, .section--ink .in-view .hl, .cta .in-view .hl { color: var(--ink); }

/* ==========================================================================
   Layout
   ========================================================================== */

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.container--narrow { max-width: 880px; }

.section { padding-block: var(--section); position: relative; }
.section--tight { padding-block: clamp(48px, 6vw, 88px); }
.section--sky { background: var(--sky); }
.section--ink { background: var(--ink); color: #fff; }
.section--volt { background: var(--volt); color: var(--ink); }

.section-head { max-width: 780px; margin-bottom: clamp(40px, 5vw, 72px); }
.section-head .eyebrow { margin-bottom: 20px; }
.section-head .lead { margin-top: 22px; }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .lead { margin-inline: auto; }

.grid { display: grid; gap: clamp(20px, 3vw, 36px); }
.grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(36px, 6vw, 104px);
  align-items: center;
}
.split--top { align-items: start; }
.split__copy .eyebrow { margin-bottom: 20px; }
.split__copy .display-lg { font-size: clamp(2rem, 3.9vw, 3.5rem); }
.split__copy .lead { margin-top: 22px; }
.split__copy .btn { margin-top: 32px; }
.split--reverse .split__copy { order: 2; }
.split--reverse .split__media { order: 1; }

.checklist { margin-top: 28px; display: grid; gap: 14px; }
.checklist li {
  display: flex; gap: 14px; align-items: flex-start;
  font-size: 1.05rem;
  color: var(--ink-80);
}
.checklist li::before {
  content: "";
  flex: 0 0 auto;
  width: 24px; height: 24px;
  margin-top: 1px;
  border-radius: 50%;
  background: var(--volt) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23152641' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12.5l4.5 4.5L19 7.5'/%3E%3C/svg%3E") center/14px no-repeat;
}
.is-dark .checklist li, .section--ink .checklist li { color: rgba(255, 255, 255, .85); }

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 52px;
  padding: 0 24px;
  border-radius: var(--r-pill);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1;
  white-space: nowrap;
  border: 1.5px solid transparent;
  transition: transform .25s var(--ease-out), background-color .25s, border-color .25s, color .25s, box-shadow .25s;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn svg { width: 18px; height: 18px; transition: transform .3s var(--ease-out); }
.btn:hover svg { transform: translateX(4px); }

.btn--lg { height: 60px; padding: 0 30px; font-size: 1.05rem; }
.btn--sm { height: 42px; padding: 0 18px; font-size: .92rem; }

.btn--primary { background: var(--blue); color: #fff; box-shadow: 0 8px 20px -10px rgba(19, 108, 252, .7); }
.btn--primary:hover { background: var(--blue-deep); }

.btn--volt { background: var(--volt); color: var(--ink); box-shadow: 0 10px 24px -12px rgba(195, 248, 74, .8); }
.btn--volt:hover { background: #d3ff6a; }

.btn--ink { background: var(--ink); color: #fff; }
.btn--ink:hover { background: #1f3560; }

.btn--ghost { border-color: var(--line-strong); color: var(--ink); background: transparent; }
.btn--ghost:hover { background: var(--sky); border-color: var(--ink); }

.btn--ghost-light { border-color: rgba(255, 255, 255, .45); color: #fff; background: rgba(255, 255, 255, .04); }
.btn--ghost-light:hover { background: rgba(255, 255, 255, .14); border-color: #fff; }

.btn-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600; color: var(--blue);
}
.link-arrow svg { width: 18px; height: 18px; transition: transform .3s var(--ease-out); }
.link-arrow:hover svg { transform: translateX(4px); }
.is-dark .link-arrow, .section--ink .link-arrow { color: var(--volt); }

/* ==========================================================================
   Header
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, .88);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s;
}
.site-header.is-scrolled { border-bottom-color: var(--line); box-shadow: 0 8px 30px -20px rgba(21, 38, 65, .25); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 74px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.3rem;
  letter-spacing: -.02em;
  color: var(--ink);
}
.brand svg { width: 30px; height: 22px; flex: none; }
.footer .brand { color: #fff; font-size: 1.5rem; }

.nav ul { display: flex; align-items: center; gap: 2px; }
.nav a {
  display: inline-flex; align-items: center;
  padding: 10px 14px;
  border-radius: var(--r-pill);
  font-weight: 500;
  font-size: .95rem;
  color: var(--ink-80);
  transition: background-color .2s, color .2s;
}
.nav a:hover { background: var(--sky); color: var(--ink); }
.nav a[aria-current="page"] { color: var(--blue); font-weight: 600; }

.header-actions { display: flex; align-items: center; gap: 8px; }
.header-actions .btn--text { padding: 10px 14px; font-weight: 500; color: var(--ink-80); border-radius: var(--r-pill); }
.header-actions .btn--text:hover { background: var(--sky); color: var(--ink); }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border-radius: 50%;
  align-items: center; justify-content: center;
  flex-direction: column; gap: 5px;
}
.nav-toggle span { width: 20px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .3s var(--ease-out), opacity .3s; }
.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ==========================================================================
   Hero — full-bleed photography, staggered line reveal, camera flashes
   ========================================================================== */

.hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: clamp(620px, 92svh, 980px);
  color: #fff;
  background: var(--ink);
  overflow: hidden;
  isolation: isolate;
}
.hero--short { min-height: clamp(520px, 74svh, 760px); }

.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform-origin: 50% 40%;
  animation: heroZoom 16s var(--ease-out) both;
}
.hero__media::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(21, 38, 65, .30) 0%, rgba(21, 38, 65, .22) 35%, rgba(21, 38, 65, .86) 78%, rgba(21, 38, 65, .98) 100%),
    linear-gradient(90deg, rgba(21, 38, 65, .35) 0%, rgba(21, 38, 65, 0) 60%);
}
@keyframes heroZoom { from { transform: scale(1.1); } to { transform: scale(1); } }

.hero__content {
  position: relative;
  z-index: 2;
  padding-top: 120px;
  padding-bottom: clamp(36px, 5vw, 72px);
}
.hero .eyebrow { margin-bottom: 26px; animation: fadeUp .9s var(--ease-out) .15s both; }
.hero__title { color: #fff; max-width: 14ch; }
.hero__title .line { display: block; overflow: hidden; padding-bottom: .04em; margin-bottom: -.04em; }
.hero__title .line > span {
  display: inline-block;
  transform: translateY(112%);
  animation: lineUp 1s var(--ease-out) forwards;
  animation-delay: calc(var(--i, 0) * 110ms + 250ms);
}
@keyframes lineUp { to { transform: translateY(0); } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }

.hero__lead {
  margin-top: 28px;
  max-width: 54ch;
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
  color: rgba(255, 255, 255, .86);
  animation: fadeUp .9s var(--ease-out) .7s both;
}
.hero__actions { margin-top: 34px; animation: fadeUp .9s var(--ease-out) .85s both; }

/* The stub: a ticket-stub row of real product facts, perforated between cells */
.stub {
  margin-top: clamp(40px, 5vw, 64px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: var(--r-md);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  animation: fadeUp 1s var(--ease-out) 1.05s both;
}
.stub__cell {
  position: relative;
  padding: 20px 24px;
  display: grid; gap: 6px;
}
.stub__cell + .stub__cell { border-left: 1px dashed rgba(255, 255, 255, .35); }
.stub__cell + .stub__cell::before,
.stub__cell + .stub__cell::after {
  content: "";
  position: absolute;
  left: -7px;
  width: 13px; height: 13px;
  border-radius: 50%;
  background: var(--ink);
  border: 1px solid rgba(255, 255, 255, .22);
}
.stub__cell + .stub__cell::before { top: -7px; border-top-color: transparent; border-left-color: transparent; border-right-color: transparent; background: var(--ink); }
.stub__cell + .stub__cell::after { bottom: -7px; }
.stub__label { font-family: var(--font-mono); font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--volt); }
.stub__value { font-weight: 600; font-size: 1.05rem; color: #fff; }

/* Camera flashes over crowd photography */
.flashes { position: absolute; inset: 0; z-index: 1; pointer-events: none; overflow: hidden; mix-blend-mode: screen; }
.flash {
  position: absolute;
  left: var(--x); top: var(--y);
  width: var(--s, 90px); aspect-ratio: 1;
  margin: calc(var(--s, 90px) / -2) 0 0 calc(var(--s, 90px) / -2);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, .75) 12%, rgba(232, 244, 252, .25) 32%, rgba(255, 255, 255, 0) 62%);
  opacity: 0;
  animation: flashPop var(--d, 7s) linear infinite;
  animation-delay: var(--delay, 0s);
  will-change: opacity, transform;
}
@keyframes flashPop {
  0%, 100% { opacity: 0; transform: scale(.35); }
  1.2% { opacity: 1; transform: scale(1); }
  2.6% { opacity: .35; transform: scale(1.15); }
  4.5% { opacity: 0; transform: scale(.7); }
}

/* ==========================================================================
   Ticker
   ========================================================================== */

.ticker {
  position: relative;
  overflow: hidden;
  padding: 15px 0;
  background: var(--volt);
  color: var(--ink);
  font-size: clamp(1rem, 1.5vw, 1.3rem);
  letter-spacing: .01em;
  line-height: 1;
  border-block: 1px solid rgba(21, 38, 65, .18);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.ticker--ink { background: var(--ink); color: var(--volt); border-color: rgba(255, 255, 255, .1); }
.ticker--sky { background: var(--sky); color: var(--ink); }
.ticker__track {
  display: flex;
  width: max-content;
  animation: ticker 44s linear infinite;
}
.ticker:hover .ticker__track { animation-play-state: paused; }
.ticker__track span { display: inline-flex; align-items: center; gap: 30px; padding-right: 30px; white-space: nowrap; }
.ticker__track span::after { content: "✦"; font-size: .7em; color: var(--blue); }
.ticker--ink .ticker__track span::after { color: #fff; }
@keyframes ticker { to { transform: translateX(-50%); } }

/* ==========================================================================
   Scroll reveals
   ========================================================================== */

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s var(--ease-out), transform 1s var(--ease-out), clip-path 1.1s var(--ease-out);
  transition-delay: calc(var(--i, 0) * 100ms);
  will-change: opacity, transform;
}
[data-reveal="left"] { transform: translateX(-36px); }
[data-reveal="right"] { transform: translateX(36px); }
[data-reveal="scale"] { transform: scale(.94); }
[data-reveal="photo"] { transform: scale(1.06); clip-path: inset(10% 0 10% 0 round var(--r-lg)); opacity: 1; }
[data-reveal].in-view { opacity: 1; transform: none; clip-path: inset(0 0 0 0 round var(--r-lg)); }
.no-js [data-reveal] { opacity: 1; transform: none; clip-path: none; }

/* ==========================================================================
   Components
   ========================================================================== */

/* Editorial feature: rule + label, no card box */
.feature {
  padding-top: 22px;
  border-top: 2px solid var(--ink);
}
.section--ink .feature { border-top-color: rgba(255, 255, 255, .35); }
.feature__icon {
  width: 46px; height: 46px;
  border-radius: var(--r-sm);
  background: var(--volt);
  display: grid; place-items: center;
  margin-bottom: 22px;
}
.feature__icon svg { width: 24px; height: 24px; stroke: var(--ink); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.feature h3 { margin-bottom: 12px; }
.feature p { color: var(--ink-70); }
.section--ink .feature p { color: rgba(255, 255, 255, .78); }
.feature .link-arrow { margin-top: 16px; }

/* Photo tiles */
.photo {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--ink);
  aspect-ratio: 4 / 5;
  isolation: isolate;
}
.photo--wide { aspect-ratio: 16 / 10; }
.photo--square { aspect-ratio: 1; }
.photo--tall { aspect-ratio: 3 / 4; }
.photo--land { aspect-ratio: 5 / 4; }
.photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.3s var(--ease-out);
}
.photo:hover img { transform: scale(1.045); }
.photo::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(21, 38, 65, 0) 50%, rgba(21, 38, 65, .72) 100%);
  pointer-events: none;
}
.photo__cap {
  position: absolute; left: 20px; right: 20px; bottom: 18px;
  z-index: 2;
  display: flex; justify-content: space-between; gap: 12px;
  font-family: var(--font-mono);
  font-size: .74rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #fff;
}
.photo__cap b { color: var(--volt); font-weight: 600; }

/* Step cards (used where order is a real sequence) */
.steps { counter-reset: step; }
.step {
  position: relative;
  padding: 28px 28px 32px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-1);
  display: grid; gap: 14px;
  transition: transform .4s var(--ease-out), box-shadow .4s;
}
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow-2); }
.step__num {
  font-family: var(--font-mono);
  font-size: .78rem;
  letter-spacing: .14em;
  color: var(--blue);
  display: flex; align-items: center; justify-content: space-between;
}
.step__num::after {
  content: "";
  flex: 1;
  margin-left: 16px;
  border-top: 1px dashed var(--line-strong);
}
.step h3 { margin-top: 6px; }
.step p { color: var(--ink-70); }

/* Web ticket mockup — the signature object */
.ticket {
  --notch: var(--sky);
  position: relative;
  width: min(420px, 100%);
  background: var(--paper);
  color: var(--ink);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-2);
  overflow: hidden;
}
.section--ink .ticket, .is-dark .ticket { --notch: var(--ink); }
.ticket__art { position: relative; aspect-ratio: 16 / 9; background: var(--ink); }
.ticket__art img { width: 100%; height: 100%; object-fit: cover; }
.ticket__art::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(21, 38, 65, .05), rgba(21, 38, 65, .55));
}
.ticket__badge {
  position: absolute; top: 16px; left: 16px; z-index: 2;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 12px;
  border-radius: var(--r-pill);
  background: var(--volt);
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: .7rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
}
.ticket__badge::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--ink); animation: pulseDot 1.8s ease-in-out infinite; }
@keyframes pulseDot { 0%, 100% { opacity: 1; } 50% { opacity: .35; } }
.ticket__org {
  position: absolute; right: 16px; top: 16px; z-index: 2;
  color: #fff;
  font-family: var(--font-mono);
  font-size: .7rem; letter-spacing: .12em; text-transform: uppercase;
}
.ticket__body { padding: 22px 24px 24px; }
.ticket__event { font-size: 1.55rem; }
.ticket__sub { margin-top: 6px; color: var(--ink-70); font-size: .95rem; }
.ticket__meta { margin-top: 18px; display: grid; grid-template-columns: 1fr 1fr; gap: 14px 20px; }
.ticket__meta dt { font-family: var(--font-mono); font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-55); margin-bottom: 4px; }
.ticket__meta dd { margin: 0; font-weight: 600; font-size: .98rem; }
.ticket__tear { position: relative; margin: 22px -24px; border-top: 2px dashed var(--line-strong); }
.ticket__tear::before, .ticket__tear::after {
  content: "";
  position: absolute; top: -14px;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--notch);
}
.ticket__tear::before { left: -13px; }
.ticket__tear::after { right: -13px; }
.ticket__stub { display: grid; grid-template-columns: 1fr auto; gap: 20px; align-items: center; }
.ticket__code { font-family: var(--font-mono); font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-55); }
.ticket__code b { display: block; margin-top: 6px; font-size: 1.35rem; letter-spacing: .08em; color: var(--ink); font-weight: 600; }
.ticket__code small { display: block; margin-top: 8px; font-size: .68rem; letter-spacing: .08em; text-transform: none; color: var(--ink-55); }
.qr { width: 116px; height: 116px; padding: 8px; background: #fff; border: 1px solid var(--line); border-radius: 12px; }
.qr svg { width: 100%; height: 100%; }
.qr svg rect { fill: var(--ink); }
.ticket__actions { margin-top: 20px; display: flex; gap: 8px; flex-wrap: wrap; }
.ticket__actions .btn { height: 42px; padding: 0 16px; font-size: .9rem; flex: 1; }

/* Phone frame (checkout & scanner mockups) */
.phone {
  width: min(330px, 100%);
  aspect-ratio: 9 / 19;
  background: var(--ink);
  border-radius: 46px;
  padding: 10px;
  box-shadow: var(--shadow-2), inset 0 0 0 2px rgba(255, 255, 255, .08);
  position: relative;
  margin-inline: auto;
}
.phone__screen {
  height: 100%;
  border-radius: 38px;
  background: #fff;
  color: var(--ink);
  overflow: hidden;
  display: flex; flex-direction: column;
  font-size: .82rem;
  position: relative;
}
.phone__notch {
  position: absolute; top: 10px; left: 50%; transform: translateX(-50%);
  width: 96px; height: 26px; border-radius: 20px;
  background: var(--ink); z-index: 5;
}
.checkout__hero { position: relative; height: 34%; }
.checkout__hero img { width: 100%; height: 100%; object-fit: cover; }
.checkout__hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(21, 38, 65, .2), rgba(21, 38, 65, .8)); }
.checkout__title { position: absolute; left: 18px; right: 18px; bottom: 14px; color: #fff; z-index: 2; }
.checkout__title .display-sm { font-size: 1.2rem; }
.checkout__title small { display: block; margin-top: 4px; font-family: var(--font-mono); font-size: .66rem; letter-spacing: .1em; text-transform: uppercase; color: var(--volt); }
.checkout__body { padding: 16px 18px 0; flex: 1; display: grid; gap: 10px; align-content: start; }
.tt-row { display: flex; justify-content: space-between; align-items: center; padding: 12px 0; border-bottom: 1px solid var(--line); }
.tt-row__name { font-weight: 600; }
.tt-row__price { display: block; color: var(--ink-70); font-size: .76rem; margin-top: 2px; }
.qty { display: inline-flex; align-items: center; gap: 12px; font-weight: 600; }
.qty i { width: 28px; height: 28px; border-radius: 50%; border: 1.5px solid var(--line-strong); display: grid; place-items: center; font-style: normal; font-weight: 500; }
.qty i.on { background: var(--blue); color: #fff; border-color: var(--blue); }
.hold { display: inline-flex; align-items: center; gap: 8px; margin-top: 4px; font-family: var(--font-mono); font-size: .7rem; letter-spacing: .08em; color: var(--ink-70); }
.hold b { color: var(--blue); font-weight: 600; }
.checkout__pay { padding: 14px 18px 18px; border-top: 1px solid var(--line); background: #fff; display: grid; gap: 8px; }
.total { display: flex; justify-content: space-between; align-items: baseline; }
.total__label { color: var(--ink-70); font-size: .78rem; }
.total__label small { display: block; color: var(--ink-55); font-size: .7rem; }
.total__amt { font-family: var(--font-mono); font-weight: 600; font-size: 1.2rem; }
.paybtn { height: 46px; border-radius: 12px; display: grid; place-items: center; font-weight: 600; font-size: .95rem; }
.paybtn--apple { background: #000; color: #fff; }
.paybtn--card { background: var(--blue); color: #fff; }

/* Scanner device mockup */
.scanner .phone__screen { background: var(--ink); color: #fff; }
.scanner__view { position: relative; flex: 1; overflow: hidden; background: #0d1a30; }
.scanner__view img { width: 100%; height: 100%; object-fit: cover; opacity: .5; filter: saturate(.7); }
.scanner__frame {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: 62%; aspect-ratio: 1;
  --c: var(--volt);
  background:
    linear-gradient(var(--c), var(--c)) 0 0 / 28px 3px no-repeat,
    linear-gradient(var(--c), var(--c)) 0 0 / 3px 28px no-repeat,
    linear-gradient(var(--c), var(--c)) 100% 0 / 28px 3px no-repeat,
    linear-gradient(var(--c), var(--c)) 100% 0 / 3px 28px no-repeat,
    linear-gradient(var(--c), var(--c)) 0 100% / 28px 3px no-repeat,
    linear-gradient(var(--c), var(--c)) 0 100% / 3px 28px no-repeat,
    linear-gradient(var(--c), var(--c)) 100% 100% / 28px 3px no-repeat,
    linear-gradient(var(--c), var(--c)) 100% 100% / 3px 28px no-repeat;
}
.scanner__line {
  position: absolute; left: 6%; right: 6%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--volt), transparent);
  box-shadow: 0 0 18px var(--volt);
  animation: scanLine 2.2s var(--ease-in-out) infinite alternate;
}
@keyframes scanLine { from { top: 8%; } to { top: 92%; } }
.scanner__top {
  position: absolute; left: 0; right: 0; top: 0; z-index: 3;
  display: flex; justify-content: space-between; align-items: center;
  padding: 44px 18px 0;
  font-family: var(--font-mono); font-size: .66rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(255, 255, 255, .8);
}
.scanner__top b { display: inline-flex; align-items: center; gap: 6px; color: var(--volt); font-weight: 600; }
.scanner__top b::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: currentColor; }
.scanner__top .offline { color: var(--amber); }
.scanner__result {
  min-height: 34%;
  padding: 20px 20px 24px;
  display: grid; gap: 6px; align-content: center;
  background: var(--state-bg, var(--volt));
  color: var(--state-fg, var(--ink));
  transition: background-color .35s, color .35s;
}
.scanner__result .state-label {
  font-family: var(--font-display); font-weight: 900; font-stretch: 112%; text-transform: uppercase; letter-spacing: -.01em;
  font-size: 1.9rem; line-height: .95;
  display: flex; align-items: center; gap: 10px;
}
.scanner__result .state-label svg { width: 30px; height: 30px; stroke: currentColor; fill: none; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; }
.scanner__result .state-detail { font-size: .86rem; opacity: .85; }
.scanner__result .state-meta { margin-top: 8px; font-family: var(--font-mono); font-size: .66rem; letter-spacing: .1em; text-transform: uppercase; opacity: .75; }
.scanner__result.is-ok { --state-bg: var(--volt); --state-fg: var(--ink); }
.scanner__result.is-used { --state-bg: var(--amber); --state-fg: var(--ink); }
.scanner__result.is-bad { --state-bg: var(--red); --state-fg: #fff; }
.scanner__result.is-info { --state-bg: var(--blue); --state-fg: #fff; }
.scanner__result.is-flash { animation: resultFlash .5s ease-out; }
@keyframes resultFlash { 0% { filter: brightness(1.6); } 100% { filter: brightness(1); } }

/* State legend (scanning page) */
.state-list { display: grid; gap: 12px; }
.state-list li {
  display: grid; grid-template-columns: 14px 1fr auto; gap: 14px; align-items: center;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: var(--paper);
}
.state-list li::before { content: ""; width: 14px; height: 14px; border-radius: 4px; background: var(--dot, var(--volt)); border: 1.5px solid var(--ink); }
.state-list li b { font-weight: 600; }
.state-list li span { font-family: var(--font-mono); font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-55); }

/* Stat / fact tiles */
.facts { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(20px, 3vw, 36px); }
.stat { padding-top: 22px; border-top: 2px solid var(--ink); }
.section--ink .stat { border-top-color: rgba(255, 255, 255, .35); }
.stat__value { font-size: clamp(2.6rem, 5vw, 4.4rem); color: var(--blue); }
.section--ink .stat__value { color: var(--volt); }
.stat__label { margin-top: 10px; font-weight: 600; }
.stat__note { margin-top: 6px; color: var(--ink-70); font-size: .95rem; }
.section--ink .stat__note { color: rgba(255, 255, 255, .72); }

/* Pricing */
.price-big { font-size: clamp(5rem, 16vw, 15rem); line-height: .85; color: var(--ink); letter-spacing: -.04em; }
.price-big small { font-family: var(--font-mono); font-weight: 500; font-stretch: 100%; font-size: .14em; letter-spacing: .12em; text-transform: uppercase; display: block; margin-top: 18px; color: var(--blue); }

.fee-toggle {
  display: inline-flex;
  padding: 4px;
  background: var(--sky);
  border-radius: var(--r-pill);
  border: 1px solid var(--line);
}
.fee-toggle button {
  padding: 10px 18px;
  border-radius: var(--r-pill);
  font-weight: 600;
  font-size: .92rem;
  color: var(--ink-70);
  transition: background-color .25s, color .25s, box-shadow .25s;
}
.fee-toggle button[aria-pressed="true"] { background: var(--ink); color: #fff; box-shadow: var(--shadow-1); }

.calc {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-2);
  padding: clamp(24px, 3vw, 36px);
  display: grid; gap: 26px;
}
.calc__row { display: grid; gap: 12px; }
.calc__row label, .calc__legend { font-weight: 600; font-size: .95rem; display: flex; justify-content: space-between; }
.calc__row label output { font-family: var(--font-mono); color: var(--blue); }
.calc input[type="range"] {
  width: 100%; height: 6px;
  appearance: none; -webkit-appearance: none;
  background: linear-gradient(90deg, var(--blue) var(--pct, 40%), var(--sky-deep) var(--pct, 40%));
  border-radius: 3px;
  outline-offset: 6px;
}
.calc input[type="range"]::-webkit-slider-thumb {
  appearance: none; -webkit-appearance: none;
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--volt); border: 3px solid var(--ink);
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(21, 38, 65, .25);
}
.calc input[type="range"]::-moz-range-thumb {
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--volt); border: 3px solid var(--ink); cursor: pointer;
}
.calc__out {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
}
.calc__out div { padding: 18px 20px; display: grid; gap: 6px; }
.calc__out div + div { border-left: 1px dashed var(--line-strong); }
.calc__out dt { font-family: var(--font-mono); font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-55); }
.calc__out dd { margin: 0; font-family: var(--font-mono); font-weight: 600; font-size: 1.35rem; }
.calc__out .is-hero { background: var(--sky); }
.calc__out .is-hero dd { color: var(--blue); }
.calc__note { font-size: .9rem; color: var(--ink-70); }

.price-table { border-top: 2px solid var(--ink); }
.price-table > div {
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.price-table h3 { font-size: 1.1rem; font-weight: 600; margin-bottom: 4px; }
.price-table p { color: var(--ink-70); font-size: .98rem; }
.price-table .val { font-family: var(--font-mono); font-weight: 600; font-size: 1.1rem; }
.price-table .val small { display: block; font-weight: 500; font-size: .82rem; color: var(--ink-70); margin-top: 6px; letter-spacing: 0; }

/* Compare (fee handling) */
.compare { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(20px, 3vw, 32px); }
.compare__card {
  padding: 28px;
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  background: var(--paper);
  display: grid; gap: 18px;
}
.compare__card.is-hero { background: var(--ink); color: #fff; border-color: var(--ink); }
.compare__card .eyebrow { color: var(--blue); }
.compare__card.is-hero .eyebrow { color: var(--volt); }
.receipt { font-family: var(--font-mono); font-size: .9rem; display: grid; gap: 10px; padding: 18px 0; border-block: 1px dashed var(--line-strong); }
.compare__card.is-hero .receipt { border-color: rgba(255, 255, 255, .35); }
.receipt div { display: flex; justify-content: space-between; gap: 16px; }
.receipt .is-total { font-weight: 700; font-size: 1.15rem; padding-top: 8px; }
.compare__card p { color: var(--ink-70); }
.compare__card.is-hero p { color: rgba(255, 255, 255, .8); }

/* FAQ */
.faq { border-top: 1px solid var(--line-strong); }
.faq details { border-bottom: 1px solid var(--line-strong); }
.faq summary {
  list-style: none;
  cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
  padding: 24px 0;
  font-weight: 600;
  font-size: 1.15rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "";
  flex: none;
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1.5px solid var(--line-strong);
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23152641' stroke-width='2.2' stroke-linecap='round'%3E%3Cpath d='M12 5v14M5 12h14'/%3E%3C/svg%3E") center/16px no-repeat;
  transition: transform .35s var(--ease-out), background-color .25s;
}
.faq details[open] summary::after { transform: rotate(45deg); background-color: var(--volt); }
.faq .faq__body { padding: 0 0 26px; max-width: 70ch; color: var(--ink-70); }
.faq .faq__body p + p { margin-top: 12px; }

/* Quote / callout */
.callout {
  padding: clamp(24px, 3vw, 36px);
  border-radius: var(--r-lg);
  background: var(--sky);
  border-left: 6px solid var(--blue);
  font-size: 1.1rem;
}
.callout b { color: var(--blue); }

/* Timeline (for genuinely ordered content) */
.timeline { display: grid; gap: 0; }
.timeline li {
  display: grid; grid-template-columns: 56px 1fr; gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}
.timeline li:last-child { border-bottom: 0; }
.timeline .t-num { font-family: var(--font-mono); font-weight: 600; color: var(--blue); font-size: .85rem; letter-spacing: .1em; padding-top: 4px; }
.timeline h3 { font-size: 1.1rem; font-weight: 600; margin-bottom: 6px; }
.timeline p { color: var(--ink-70); }

/* Big dark CTA */
.cta {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: #fff;
  isolation: isolate;
}
.cta__media { position: absolute; inset: 0; z-index: 0; }
.cta__media img { width: 100%; height: 100%; object-fit: cover; opacity: .55; }
.cta__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(21, 38, 65, .5), rgba(21, 38, 65, .92)); }
.cta__inner { position: relative; z-index: 2; padding-block: clamp(96px, 14vw, 200px); text-align: center; }
.cta__inner .display-lg { max-width: 16ch; margin-inline: auto; color: #fff; }
.cta__inner .lead { margin: 24px auto 36px; }
.cta__inner .btn-row { justify-content: center; }

/* Form (start page) */
.form { display: grid; gap: 18px; }
.form__row { display: grid; gap: 8px; }
.form__row label { font-weight: 600; font-size: .95rem; }
.form__row input, .form__row select, .form__row textarea {
  font: inherit; color: var(--ink);
  height: 52px; padding: 0 16px;
  border: 1.5px solid var(--line-strong);
  border-radius: 14px;
  background: #fff;
  transition: border-color .2s, box-shadow .2s;
}
.form__row textarea { height: auto; min-height: 120px; padding: 14px 16px; resize: vertical; }
.form__row input:focus, .form__row select:focus, .form__row textarea:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 4px rgba(19, 108, 252, .18); }
.form__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form__hint { font-size: .9rem; color: var(--ink-70); }
.form__success { display: none; padding: 28px; border-radius: var(--r-lg); background: var(--volt); color: var(--ink); }
.form.is-sent .form__success { display: block; }
.form.is-sent .form__fields { display: none; }

/* Entitlement grid — which ticket types draw from which capacity */
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.ent { min-width: 640px; border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; background: var(--paper); box-shadow: var(--shadow-1); }
.ent table { width: 100%; border-collapse: collapse; font-size: .96rem; }
.ent th, .ent td { padding: 16px 20px; text-align: left; border-bottom: 1px solid var(--line); vertical-align: middle; }
.ent thead th { font-family: var(--font-mono); font-size: .7rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-70); background: var(--sky); white-space: nowrap; }
.ent thead th small { display: block; margin-top: 4px; font-size: .82em; font-weight: 500; color: var(--blue); letter-spacing: .08em; }
.ent tbody tr:last-child td { border-bottom: 0; }
.ent td:first-child { font-weight: 600; white-space: nowrap; }
.ent td:first-child small { display: block; font-weight: 400; color: var(--ink-70); font-size: .85rem; margin-top: 2px; }
.ent td.on::before, .ent td.off::before { content: ""; display: block; height: 12px; border-radius: 6px; }
.ent td.on::before { background: var(--volt); box-shadow: inset 0 0 0 1.5px var(--ink); }
.ent td.off::before { background: var(--sky-deep); }
.ent tfoot td { font-family: var(--font-mono); font-size: .78rem; letter-spacing: .04em; color: var(--ink-70); background: var(--sky); border-bottom: 0; }

/* Fixtures list (event series with occurrences) */
.fixtures { display: grid; gap: 12px; }
.fixture {
  display: grid; grid-template-columns: 96px 1fr auto; gap: 22px; align-items: center;
  padding: 18px 22px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  transition: transform .35s var(--ease-out), box-shadow .35s;
}
.fixture:hover { transform: translateX(6px); box-shadow: var(--shadow-1); }
.fixture__date { font-family: var(--font-mono); font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--blue); font-weight: 600; }
.fixture__date b { display: block; margin-top: 2px; font-family: var(--font-display); font-weight: 900; font-stretch: 112%; font-size: 1.6rem; letter-spacing: -.02em; line-height: 1; color: var(--ink); }
.fixture__name { font-weight: 600; font-size: 1.05rem; }
.fixture__meta { display: block; color: var(--ink-70); font-size: .9rem; margin-top: 4px; }
.fixture__side { display: grid; gap: 8px; justify-items: end; }
.fixture__price { font-family: var(--font-mono); font-weight: 600; }
.fixture__tag { font-family: var(--font-mono); font-size: .66rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; padding: 6px 10px; border-radius: var(--r-pill); background: var(--volt); color: var(--ink); }
.fixture__tag.is-muted { background: var(--sky-deep); }
.fixture__tag.is-ink { background: var(--ink); color: #fff; }

/* Bulk-action preview card */
.preview { background: var(--paper); color: var(--ink); border: 1px solid var(--line); border-radius: var(--r-lg); box-shadow: var(--shadow-2); overflow: hidden; width: min(520px, 100%); }
.preview__head { display: flex; justify-content: space-between; gap: 16px; padding: 18px 24px; border-bottom: 1px solid var(--line); font-family: var(--font-mono); font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-70); }
.preview__head b { color: var(--blue); font-weight: 600; }
.preview__grid { display: grid; grid-template-columns: 1fr 1fr; }
.preview__grid > div { padding: 20px 24px; border-bottom: 1px solid var(--line); }
.preview__grid > div:nth-child(odd) { border-right: 1px solid var(--line); }
.preview__grid dt { font-family: var(--font-mono); font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-55); }
.preview__grid dd { margin: 6px 0 0; font-family: var(--font-display); font-weight: 900; font-stretch: 112%; font-size: 1.9rem; letter-spacing: -.02em; line-height: 1; }
.preview__foot { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 18px 24px; background: var(--sky); font-size: .9rem; color: var(--ink-70); flex-wrap: wrap; }
.preview__foot .btn { height: 44px; padding: 0 18px; font-size: .92rem; }

/* Tag cloud (threat model) */
.tags { display: flex; flex-wrap: wrap; gap: 10px; }
.tag { padding: 10px 14px; border: 1px solid var(--line-strong); border-radius: var(--r-pill); font-family: var(--font-mono); font-size: .78rem; letter-spacing: .05em; color: var(--ink-80); }
.section--ink .tag { border-color: rgba(255, 255, 255, .3); color: rgba(255, 255, 255, .85); }

/* Definition rows (trust page) */
.defs { border-top: 2px solid var(--ink); }
.section--ink .defs { border-top-color: rgba(255, 255, 255, .35); }
.defs > div { display: grid; grid-template-columns: 220px 1fr; gap: 24px; padding: 22px 0; border-bottom: 1px solid var(--line); }
.section--ink .defs > div { border-bottom-color: rgba(255, 255, 255, .14); }
.defs dt { font-family: var(--font-mono); font-size: .76rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--blue); padding-top: 4px; }
.section--ink .defs dt { color: var(--volt); }
.defs dd { margin: 0; color: var(--ink-80); }
.section--ink .defs dd { color: rgba(255, 255, 255, .85); }
.defs dd p + p { margin-top: 10px; }

@media (max-width: 700px) {
  .fixture { grid-template-columns: 80px 1fr; }
  .fixture__side { grid-column: 1 / -1; justify-items: start; grid-auto-flow: column; }
  .defs > div { grid-template-columns: 1fr; gap: 8px; }
  .preview__grid { grid-template-columns: 1fr; }
  .preview__grid > div:nth-child(odd) { border-right: 0; }
}

/* ==========================================================================
   Footer
   ========================================================================== */

.footer { background: var(--ink); color: #fff; padding-block: clamp(56px, 7vw, 96px) 32px; }
.footer__top {
  display: grid; grid-template-columns: 1.4fr repeat(3, minmax(0, 1fr));
  gap: clamp(28px, 5vw, 64px);
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255, 255, 255, .14);
}
.footer__tag { margin-top: 18px; color: rgba(255, 255, 255, .72); max-width: 32ch; }
.footer h4 { font-family: var(--font-mono); font-size: .74rem; letter-spacing: .14em; text-transform: uppercase; color: var(--volt); margin-bottom: 18px; font-weight: 600; }
.footer li + li { margin-top: 12px; }
.footer li a { color: rgba(255, 255, 255, .82); transition: color .2s; }
.footer li a:hover { color: #fff; text-decoration: underline; text-underline-offset: 4px; }
.footer__status { display: inline-flex; align-items: center; gap: 8px; }
.footer__status::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--volt); box-shadow: 0 0 0 4px rgba(195, 248, 74, .2); }
.footer__bottom {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 16px;
  padding-top: 28px;
  font-size: .9rem;
  color: rgba(255, 255, 255, .62);
}
.footer__bottom p { max-width: 70ch; }

/* ==========================================================================
   Page enter
   ========================================================================== */

main { animation: pageIn .6s var(--ease-out) both; }
@keyframes pageIn { from { opacity: 0; } to { opacity: 1; } }

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1040px) {
  .grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer__top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .nav {
    position: fixed; inset: 74px 0 auto 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    padding: 16px var(--gutter) 24px;
    transform: translateY(-8px);
    opacity: 0; pointer-events: none;
    transition: opacity .25s, transform .3s var(--ease-out);
    box-shadow: 0 30px 50px -30px rgba(21, 38, 65, .4);
  }
  .nav ul { flex-direction: column; align-items: stretch; gap: 4px; }
  .nav a { padding: 14px 16px; font-size: 1.05rem; border-radius: 14px; }
  .nav-open .nav { opacity: 1; transform: none; pointer-events: auto; }
  .nav-toggle { display: inline-flex; }
  .header-actions .btn--text { display: none; }
  .grid--3 { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; gap: 36px; }
  .split--reverse .split__copy { order: 1; }
  .split--reverse .split__media { order: 2; }
  .facts { grid-template-columns: 1fr; }
  .compare { grid-template-columns: 1fr; }
  .stub { grid-template-columns: 1fr; }
  .stub__cell + .stub__cell { border-left: 0; border-top: 1px dashed rgba(255, 255, 255, .35); }
  .stub__cell + .stub__cell::before, .stub__cell + .stub__cell::after { display: none; }
  .hero__content { padding-top: 100px; }
  .calc__out { grid-template-columns: 1fr; }
  .calc__out div + div { border-left: 0; border-top: 1px dashed var(--line-strong); }
  .price-table > div { grid-template-columns: 1fr; gap: 10px; }
}

@media (max-width: 600px) {
  .header-actions .btn { height: 42px; padding: 0 16px; font-size: .92rem; }
  .grid--2, .grid--4 { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; }
  .form__grid { grid-template-columns: 1fr; }
  .hero__title { max-width: none; }
  .ticket__actions .btn { flex: 1 1 100%; }
}

/* ==========================================================================
   Reduced motion
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  [data-reveal] { opacity: 1; transform: none; clip-path: none; }
  .hero__title .line > span { transform: none; }
  .hl { background-size: 100% 88%; }
  .flashes { display: none; }
  .ticker__track { animation: none; }
}
