:root {
  --navy: #04152a;
  --navy-2: #061f3d;
  --navy-3: #0a315a;
  --orange: #ff7a00;
  --orange-2: #ff9d22;
  --white: #ffffff;
  --mist: #d9e5f2;
  --line: rgba(255, 255, 255, 0.16);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.34);
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  margin: 0;
  background: var(--navy);
  color: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
}

h3 {
  hyphens: auto;
  overflow-wrap: anywhere;
}

img {
  display: block;
  max-width: 100%;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 20;
  background: var(--orange);
  color: var(--navy);
  padding: 10px 14px;
  font-weight: 800;
}

.skip-link:focus {
  top: 16px;
}

.site-header,
.legal-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 54px);
  background: rgba(4, 21, 42, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  transition: background 180ms ease, padding 180ms ease;
}

.site-header.is-scrolled {
  padding-top: 12px;
  padding-bottom: 12px;
  background: rgba(4, 21, 42, 0.94);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: lowercase;
}

.brand span span,
.footer-brand span {
  color: var(--orange);
}

.brand-mark {
  width: 28px;
  height: 32px;
  border: 3px solid var(--white);
  border-radius: 8px 8px 12px 12px;
  position: relative;
}

.brand-mark::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 8px;
  width: 13px;
  height: 7px;
  border-left: 3px solid var(--orange);
  border-bottom: 3px solid var(--orange);
  transform: rotate(-45deg);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 0.95rem;
  font-weight: 800;
}

.site-nav a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
}

.site-nav a:hover {
  color: var(--white);
}

.nav-cta {
  color: var(--navy) !important;
  background: var(--orange);
  padding: 10px 16px;
  border-radius: 8px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: transparent;
  border-radius: 8px;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
}

.hero {
  position: relative;
  min-height: 0;
  isolation: isolate;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 140px clamp(18px, 5vw, 64px) 64px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: var(--navy);
}

.hero-bg::before,
.hero-bg::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.hero-bg::before {
  top: 0;
  left: 0;
  width: 120px;
  height: 120px;
  background:
    linear-gradient(135deg, var(--orange) 0 34%, transparent 34%),
    linear-gradient(135deg, transparent 0 40%, rgba(255, 122, 0, 0.82) 40% 42%, transparent 42% 48%, rgba(255, 122, 0, 0.82) 48% 50%, transparent 50%);
}

.hero-bg::after {
  right: 0;
  bottom: 0;
  width: 420px;
  height: 420px;
  background:
    repeating-linear-gradient(135deg, rgba(0, 96, 178, 0.25) 0 2px, transparent 2px 26px);
  opacity: 0.6;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 160px;
  z-index: -1;
  background: linear-gradient(0deg, var(--navy), rgba(4, 21, 42, 0));
}

.hero-content {
  width: min(960px, 100%);
}

.hero-layout {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  gap: clamp(28px, 5vw, 64px);
}

.eyebrow,
.section-kicker {
  color: var(--orange);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0;
}

.hero h1,
.section h2,
.legal-main h1 {
  margin: 0;
  line-height: 0.95;
  letter-spacing: 0;
}

.hero h1 {
  font-size: 6rem;
  max-width: 900px;
}

.hero-copy {
  width: min(680px, 100%);
  margin: 24px 0 0;
  color: var(--mist);
  font-size: 1.25rem;
}

.hero-actions,
.ticket-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 900;
  border: 1px solid transparent;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--orange);
  color: var(--navy);
  box-shadow: 0 14px 34px rgba(255, 122, 0, 0.26);
}

.button-primary:hover {
  background: var(--orange-2);
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.34);
  color: var(--white);
  background: rgba(255, 255, 255, 0.05);
}

.event-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(720px, 100%);
  margin: 42px 0 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.event-strip div {
  padding: 18px;
  background: rgba(4, 21, 42, 0.72);
}

.event-strip dt {
  margin: 0 0 4px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.78rem;
  text-transform: uppercase;
  font-weight: 900;
}

.event-strip dd {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 900;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 22px;
  width: 28px;
  height: 46px;
  border: 2px solid rgba(255, 255, 255, 0.48);
  border-radius: 20px;
  transform: translateX(-50%);
}

.scroll-cue::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 9px;
  width: 4px;
  height: 9px;
  border-radius: 2px;
  background: var(--orange);
  transform: translateX(-50%);
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(72px, 9vw, 112px) clamp(18px, 4vw, 32px);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1fr);
  gap: clamp(34px, 6vw, 76px);
  align-items: center;
}

.section h2 {
  font-size: 3rem;
  line-height: 1.08;
  hyphens: auto;
  overflow-wrap: anywhere;
}

.section p {
  color: var(--mist);
  font-size: 1.08rem;
}

.proof-list,
.audience-grid,
.timeline {
  display: grid;
  gap: 14px;
}

.proof-list div,
.audience-grid div,
.timeline article,
.faq details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
  padding: 22px;
}

.proof-list strong,
.audience-grid h3,
.timeline h3 {
  display: block;
  margin: 12px 0 8px;
  font-size: 1.18rem;
}

.proof-list p,
.audience-grid p,
.timeline p {
  margin: 0;
}

.icon-shield,
.icon-target,
.icon-rocket {
  display: inline-block;
  width: 42px;
  height: 42px;
  border: 2px solid var(--white);
  border-radius: 8px;
  position: relative;
}

.icon-shield::after,
.icon-target::after,
.icon-rocket::after {
  content: "";
  position: absolute;
  inset: 10px;
  border-left: 4px solid var(--orange);
  border-bottom: 4px solid var(--orange);
  transform: rotate(-45deg);
}

.icon-target {
  border-radius: 50%;
}

.icon-target::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 2px solid var(--white);
  border-radius: 50%;
}

.icon-rocket {
  transform: rotate(-35deg);
  border-radius: 50% 50% 8px 50%;
}

.dark-band,
.ticket-panel {
  max-width: none;
  background:
    linear-gradient(135deg, rgba(255, 122, 0, 0.18), rgba(255, 122, 0, 0) 32%),
    linear-gradient(90deg, var(--navy-2), var(--navy-3));
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 5vw, 64px);
  padding-left: clamp(18px, 6vw, 80px);
  padding-right: clamp(18px, 6vw, 80px);
}

.band-copy,
.ticket-panel > div:first-child {
  width: min(720px, 100%);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 36px;
}

.timeline {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.timeline span {
  display: inline-flex;
  color: var(--orange);
  font-weight: 900;
  border-bottom: 2px solid var(--orange);
  margin-bottom: 14px;
}

.audience-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.discount-banner {
  background: var(--orange);
  color: var(--navy);
  padding: 64px clamp(18px, 5vw, 64px);
}

.discount-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  align-items: center;
  gap: 48px;
}

.discount-amount {
  display: flex;
  align-items: baseline;
  justify-content: center;
  font-weight: 900;
  line-height: 1;
  font-size: 12rem;
  white-space: nowrap;
}

.discount-amount span:last-child {
  font-size: 5rem;
}

.discount-copy {
  min-width: 0;
  border-left: 2px solid rgba(4, 21, 42, 0.25);
  padding-left: 48px;
}

.discount-copy .section-kicker {
  color: var(--navy);
  margin-top: 0;
}

.discount-copy h2,
.certificate-inner h2 {
  font-size: 2.75rem;
  line-height: 1.08;
  margin: 0;
}

.discount-copy > p {
  max-width: 540px;
  font-size: 1.125rem;
}

.coupon-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  border-top: 1px solid rgba(4, 21, 42, 0.3);
  padding-top: 20px;
  margin-top: 24px;
}

.coupon-label,
.coupon-code {
  display: block;
}

.coupon-label {
  font-size: 0.875rem;
  margin-bottom: 4px;
}

.coupon-code {
  font-size: 1.75rem;
  font-weight: 900;
  user-select: all;
}

.copy-code {
  font: inherit;
  font-weight: 700;
  border: 1px solid var(--navy);
  border-radius: 4px;
  padding: 10px 14px;
  min-height: 44px;
  background: transparent;
  color: var(--navy);
  cursor: pointer;
}

.copy-code:hover {
  background: rgba(255, 255, 255, 0.35);
}

.copy-status {
  min-height: 3em;
}

.discount-copy .copy-status,
.discount-copy .discount-note {
  font-size: 0.875rem;
}

.button-dark {
  background: var(--navy);
  color: var(--white);
  gap: 12px;
}

.button-dark:hover {
  background: var(--navy-3);
}

.certificate-section {
  background: var(--white);
  color: var(--navy);
  padding: 80px clamp(18px, 5vw, 64px);
}

.certificate-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 64px;
  align-items: start;
}

.certificate-inner .section-kicker {
  color: #a34500;
}

.certificate-copy {
  border-left: 4px solid var(--orange);
  padding-left: 28px;
}

.certificate-copy h3 {
  font-size: 1.35rem;
  margin-top: 0;
}

.certificate-copy p {
  font-size: 1.08rem;
}

.text-link {
  font-weight: 800;
  text-underline-offset: 4px;
}

:focus-visible {
  outline: 3px solid currentColor;
  outline-offset: 4px;
}

.button {
  text-align: center;
}

.hero-layout > *,
.split > *,
.certificate-inner > * {
  min-width: 0;
}

.ticket-panel {
  position: relative;
  flex-wrap: wrap;
}

.ticket-actions {
  margin-top: 0;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq summary {
  cursor: pointer;
  font-weight: 900;
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  float: right;
  color: var(--orange);
}

.faq details[open] summary::after {
  content: "-";
}

.faq details p {
  margin-bottom: 0;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding: 44px clamp(18px, 5vw, 64px) 110px;
  color: rgba(255, 255, 255, 0.76);
  border-top: 1px solid var(--line);
  background: #020b17;
}

.site-footer p {
  max-width: 620px;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  justify-content: flex-end;
  gap: 16px;
}

.site-footer a {
  color: var(--white);
  font-weight: 800;
}

.sticky-cta {
  position: fixed;
  left: 50%;
  bottom: 18px;
  z-index: 9;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 10px 10px 10px 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(4, 21, 42, 0.92);
  box-shadow: var(--shadow);
  transform: translate(-50%, 120px);
  transition: transform 180ms ease;
  backdrop-filter: blur(16px);
}

.sticky-cta.is-visible {
  transform: translate(-50%, 0);
}

.sticky-cta span {
  font-weight: 900;
  text-align: center;
}

.legal-page {
  background:
    linear-gradient(135deg, rgba(255, 122, 0, 0.12), transparent 30%),
    var(--navy);
}

.legal-header {
  position: sticky;
}

.legal-main {
  max-width: 900px;
  margin: 0 auto;
  padding: 72px clamp(18px, 5vw, 40px) 100px;
}

.legal-main h1 {
  font-size: 3rem;
  overflow-wrap: anywhere;
}

.legal-note,
.legal-main section {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
  padding: 22px;
}

.legal-main section {
  margin-top: 18px;
}

.legal-main h2 {
  margin-top: 0;
}

@media (max-width: 920px) {
  .site-nav {
    position: fixed;
    inset: 74px 18px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(4, 21, 42, 0.98);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .nav-toggle {
    display: block;
  }

  .hero {
    min-height: auto;
    padding-top: 116px;
  }

  .hero-layout,
  .discount-inner,
  .certificate-inner {
    grid-template-columns: 1fr;
  }

  .discount-inner {
    gap: 24px;
  }

  .discount-amount {
    justify-content: flex-start;
    font-size: 9rem;
  }

  .discount-copy {
    padding-left: 0;
    border-left: 0;
  }

  .split,
  .dark-band,
  .ticket-panel,
  .site-footer {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: stretch;
  }

  .timeline,
  .audience-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .event-strip {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 620px) {
  .hero {
    padding-bottom: 40px;
  }

  .event-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 28px;
  }

  .event-strip div {
    padding: 12px;
  }

  .event-strip div:last-child {
    grid-column: 1 / -1;
  }

  .event-strip dd {
    font-size: 1rem;
  }

  .section h2,
  .discount-copy h2,
  .certificate-inner h2 {
    font-size: 2rem;
  }

  .discount-banner,
  .certificate-section {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .discount-amount {
    font-size: 7rem;
  }

  .discount-amount span:last-child {
    font-size: 3.5rem;
  }

  .coupon-code {
    font-size: 1.5rem;
  }

  .certificate-copy {
    padding-left: 18px;
  }

  .copy-status {
    min-height: 4.5em;
  }

  .hero h1 {
    font-size: 3.25rem;
  }

  .hero-actions,
  .ticket-actions,
  .sticky-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .timeline,
  .audience-grid {
    grid-template-columns: 1fr;
  }

  .sticky-cta {
    left: 12px;
    right: 12px;
    bottom: 12px;
    transform: translateY(140px);
  }

  .sticky-cta.is-visible {
    transform: translateY(0);
  }

  .site-footer {
    padding-bottom: 150px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
