:root {
  --night: #03111d;
  --deep: #010811;
  --blue: #061f35;
  --blue-soft: #0a2f4d;
  --gold: #f2c35b;
  --gold-soft: #ffe09a;
  --cream: #f5fbff;
  --muted: rgba(245, 251, 255, 0.72);
  --line: rgba(255, 224, 154, 0.18);
  --glass: rgba(4, 20, 35, 0.72);
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.44);
  --font: "Montserrat", Arial, sans-serif;
  --display: "Bodoni Moda", Didot, "Bodoni 72", serif;
  --handwritten: "Allura", cursive;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 12% 8%, rgba(242, 195, 91, 0.08), transparent 28rem),
    radial-gradient(circle at 86% 36%, rgba(8, 47, 79, 0.24), transparent 34rem),
    linear-gradient(180deg, var(--deep) 0%, var(--night) 34%, #01060d 100%);
  color: var(--cream);
  font-family: var(--font);
  font-weight: 400;
}

img,
svg {
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.section-shell {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  margin-bottom: -12vh;
  overflow: hidden;
  isolation: isolate;
  background: var(--deep);
}

.hero-cover {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.04) contrast(1.04);
}

.hero::after {
  position: absolute;
  inset: auto 0 -1px;
  height: 42vh;
  background: linear-gradient(
    180deg,
    rgba(3, 23, 37, 0) 0%,
    rgba(1, 8, 17, 0.5) 42%,
    var(--deep) 82%,
    var(--night) 100%
  );
  content: "";
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--gold-soft);
  font-size: clamp(0.72rem, 1vw, 0.82rem);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  max-width: 940px;
  margin-bottom: 10px;
  font-family: var(--display);
  font-size: clamp(2.95rem, 6.5vw, 5.7rem);
  font-weight: 600;
  letter-spacing: 0.03em;
  line-height: 0.9;
  text-wrap: balance;
}

h2 {
  margin-bottom: 26px;
  font-family: var(--display);
  font-size: clamp(2rem, 4.2vw, 3.7rem);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.1;
  text-wrap: balance;
}

.script {
  margin: 12px 0 24px;
  color: var(--gold);
  font-family: var(--handwritten);
  font-size: clamp(2.65rem, 5.6vw, 4.7rem);
  font-style: normal;
  font-weight: 400;
  line-height: 0.82;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 17px 30px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 700;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    background 220ms ease;
}

.buy-button {
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  color: #061728;
  box-shadow: 0 18px 42px rgba(242, 195, 91, 0.28);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 24px 58px rgba(242, 195, 91, 0.38);
}

.intro {
  width: min(980px, calc(100% - 40px));
  padding: calc(clamp(84px, 11vw, 138px) + 12vh) 0 clamp(54px, 7vw, 92px);
}

.intro h2,
.checkout-copy h2,
.final h2 {
  max-width: 850px;
}

.intro p:not(.script),
.checkout-copy p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(1rem, 1.45vw, 1.14rem);
  font-weight: 300;
  line-height: 1.9;
}

.event-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding-bottom: clamp(62px, 9vw, 108px);
}

.event-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: center;
  min-height: 128px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(255, 224, 154, 0.1), rgba(6, 31, 53, 0.2)),
    rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(242, 195, 91, 0.98), rgba(255, 224, 154, 0.72));
  color: #1d1405;
}

.icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.event-card p {
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.event-card strong {
  display: block;
  color: var(--cream);
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  font-weight: 700;
  line-height: 1.22;
}

.checkout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(310px, 390px);
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
  padding: clamp(42px, 8vw, 86px);
  border: 1px solid var(--line);
  border-radius: 32px;
  background:
    radial-gradient(circle at 92% 18%, rgba(242, 195, 91, 0.2), transparent 18rem),
    linear-gradient(140deg, rgba(255, 224, 154, 0.09), rgba(6, 31, 53, 0.22) 44%, rgba(255, 255, 255, 0.035)),
    var(--glass);
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
}

.price-panel {
  padding: clamp(26px, 4vw, 36px);
  border: 1px solid rgba(242, 195, 91, 0.26);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 247, 227, 0.1), rgba(255, 247, 227, 0.04));
  text-align: center;
}

.price-panel p {
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.price {
  color: var(--gold);
  font-family: var(--display);
  font-size: clamp(5.4rem, 10vw, 8.4rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.9;
  text-shadow: 0 0 34px rgba(242, 195, 91, 0.34);
}

.price span {
  margin-right: 8px;
  color: var(--gold-soft);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700;
  vertical-align: super;
}

.price-panel small {
  display: block;
  margin: 12px 0 24px;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 500;
}

.buy-button {
  width: 100%;
}

.final {
  width: min(860px, calc(100% - 40px));
  padding: clamp(72px, 10vw, 118px) 0 clamp(92px, 12vw, 150px);
  text-align: center;
}

.final .script {
  max-width: 760px;
  margin: 0 auto 18px;
  font-size: clamp(1.8rem, 3.3vw, 2.8rem);
  line-height: 1.08;
}

.final h2 {
  margin-right: auto;
  margin-bottom: 0;
  margin-left: auto;
  color: rgba(245, 251, 255, 0.9);
  font-size: clamp(1.75rem, 3.7vw, 3.15rem);
  font-weight: 500;
  line-height: 1.18;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 800ms ease,
    transform 800ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal,
  .button {
    transition: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 880px) {
  .hero {
    min-height: 100svh;
  }

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

  .checkout {
    padding: 28px;
    border-radius: 26px;
  }
}

@media (max-width: 560px) {
  .section-shell {
    width: min(100% - 28px, 1120px);
  }

  .hero {
    min-height: 100svh;
    margin-bottom: -8vh;
  }

  .hero::after {
    height: 34vh;
  }

  .hero-cover {
    object-position: center top;
  }

  h1 {
    font-size: clamp(2.25rem, 10.6vw, 3.25rem);
    line-height: 0.95;
  }

  h2 {
    font-size: clamp(1.62rem, 7.2vw, 2.2rem);
    line-height: 1.18;
  }

  .script {
    margin-bottom: 20px;
    font-size: clamp(2.55rem, 13vw, 3.85rem);
  }

  .final {
    width: min(100% - 28px, 860px);
    padding-top: 58px;
  }

  .final .script {
    margin-bottom: 16px;
    font-size: clamp(1.9rem, 9vw, 2.55rem);
  }

  .final h2 {
    font-size: clamp(1.55rem, 7vw, 2.1rem);
    line-height: 1.22;
  }

  .intro {
    padding-top: calc(64px + 8vh);
  }

  .intro p:not(.script),
  .checkout-copy p:not(.eyebrow) {
    font-size: 1rem;
    line-height: 1.78;
  }

  .button {
    width: 100%;
    min-height: 56px;
  }

  .event-card {
    min-height: 112px;
    padding: 20px;
    border-radius: 18px;
  }

  .checkout {
    width: min(100% - 28px, 1120px);
    padding: 22px;
  }

  .price-panel {
    padding: 22px 18px;
  }
}
