:root {
  color-scheme: dark;
  --ink: #111111;
  --coal: #171412;
  --coal-2: #211b18;
  --green: #183d34;
  --green-2: #0d2722;
  --paper: #f6eddc;
  --paper-dim: #d8cab1;
  --gold: #d8a84d;
  --gold-2: #f2d17a;
  --crimson: #8e2635;
  --line: rgba(246, 237, 220, 0.16);
  --glass: rgba(18, 16, 14, 0.62);
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.38);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    linear-gradient(135deg, rgba(142, 38, 53, 0.12), transparent 28%),
    linear-gradient(180deg, var(--coal) 0%, #0f0d0b 48%, var(--green-2) 100%);
  color: var(--paper);
  font-family: var(--sans);
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(246, 237, 220, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(246, 237, 220, 0.055) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, black, transparent 80%);
}

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

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

button,
input {
  font: inherit;
}

.particle-field,
.cursor-light {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

.particle-field {
  z-index: -1;
  opacity: 0.55;
}

.cursor-light {
  z-index: -2;
  background: radial-gradient(circle at var(--x, 50%) var(--y, 30%), rgba(216, 168, 77, 0.22), transparent 28rem);
  transition: opacity 220ms ease;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem clamp(1rem, 4vw, 3.5rem);
  border-bottom: 1px solid transparent;
  transition: background 220ms ease, border-color 220ms ease, backdrop-filter 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(14, 12, 10, 0.78);
  border-color: var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  min-height: 44px;
  color: var(--paper);
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid rgba(216, 168, 77, 0.72);
  border-radius: 50%;
  background: rgba(17, 17, 17, 0.46);
  color: var(--gold-2);
  font-family: var(--serif);
  font-size: 1.45rem;
  line-height: 1;
  box-shadow: 0 0 28px rgba(216, 168, 77, 0.22);
}

.site-nav {
  display: none;
  align-items: center;
  gap: clamp(1rem, 3vw, 2rem);
  color: rgba(246, 237, 220, 0.78);
  font-size: 0.92rem;
  font-weight: 700;
}

.site-nav a,
.header-action {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.site-nav a {
  position: relative;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.45rem;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-action {
  gap: 0.5rem;
  padding: 0 0.85rem;
  border: 1px solid rgba(216, 168, 77, 0.4);
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.36);
  color: var(--paper);
  font-size: 0.86rem;
  font-weight: 800;
}

.header-action span {
  display: none;
}

.hero {
  position: relative;
  min-height: 92svh;
  display: grid;
  align-items: end;
  padding: 7.5rem 1rem 5.2rem;
  overflow: hidden;
  isolation: isolate;
}

.hero-image {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 55% 58%;
  filter: saturate(1.04) contrast(1.02);
  transform: scale(1.04);
  animation: slow-drift 16s ease-in-out infinite alternate;
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(9, 8, 7, 0.9) 0%, rgba(9, 8, 7, 0.58) 48%, rgba(9, 8, 7, 0.36) 100%),
    linear-gradient(180deg, rgba(9, 8, 7, 0.28) 0%, rgba(9, 8, 7, 0.14) 46%, #12100e 100%);
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 8rem;
  z-index: -1;
  background: linear-gradient(to bottom, transparent, #12100e);
}

.hero-content,
.section-inner {
  width: min(1120px, calc(100% - 2rem));
  margin-inline: auto;
}

.hero-content {
  padding-bottom: 0.4rem;
}

.eyebrow {
  margin: 0 0 0.9rem;
  color: var(--gold-2);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: var(--serif);
  font-weight: 700;
  line-height: 0.94;
  letter-spacing: 0;
}

h1 {
  max-width: min(100%, 11ch);
  margin-bottom: 1.1rem;
  font-size: clamp(4.25rem, 18vw, 9.5rem);
  color: #fff6e4;
  text-shadow: 0 3px 34px rgba(0, 0, 0, 0.72);
  text-wrap: balance;
}

h2 {
  margin-bottom: 1.2rem;
  font-size: clamp(2.45rem, 9vw, 5.6rem);
  text-wrap: balance;
}

h3 {
  margin-bottom: 0.65rem;
  color: var(--paper);
  font-size: 1.05rem;
  line-height: 1.22;
}

.hero-lead {
  max-width: 42rem;
  margin-bottom: 1.55rem;
  color: rgba(255, 249, 235, 0.92);
  font-size: clamp(1.02rem, 3.6vw, 1.25rem);
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.76);
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 24rem;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  min-height: 52px;
  padding: 0 1.1rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 900;
  isolation: isolate;
  overflow: hidden;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button::before {
  content: "";
  display: none;
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.22), transparent);
  transform: translateX(-120%);
  transition: transform 520ms ease;
}

.button:hover::before,
.button:focus-visible::before {
  transform: translateX(120%);
}

.button.primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-2) 56%, #fff0b6);
  color: #17110b;
  box-shadow: 0 16px 36px rgba(216, 168, 77, 0.25);
}

.button.ghost {
  border-color: rgba(246, 237, 220, 0.34);
  background: rgba(17, 17, 17, 0.34);
  color: var(--paper);
  backdrop-filter: blur(10px);
}

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

.hero-scroll {
  display: none;
  margin-top: 2.4rem;
  width: 28px;
  height: 46px;
  border: 1px solid rgba(246, 237, 220, 0.34);
  border-radius: 999px;
  place-items: start center;
  padding-top: 0.55rem;
}

.hero-scroll span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold-2);
  animation: scroll-dot 1.5s ease-in-out infinite;
}

.intro-band,
.signal-section,
.premiere-section,
.quote-band,
.signup-section {
  position: relative;
  padding: clamp(4.5rem, 10vw, 7.5rem) 0;
}

.intro-band {
  background:
    linear-gradient(180deg, #12100e, var(--coal-2)),
    var(--coal-2);
}

.two-column,
.premiere-layout,
.signup-layout {
  display: grid;
  gap: clamp(1.4rem, 4vw, 3rem);
}

.intro-text,
.premiere-copy p,
.signup-copy p,
.signal-card p {
  color: rgba(246, 237, 220, 0.74);
}

.intro-text {
  align-self: end;
  font-size: clamp(1rem, 2.5vw, 1.18rem);
}

.signal-section {
  background:
    linear-gradient(135deg, rgba(24, 61, 52, 0.72), transparent 55%),
    linear-gradient(180deg, var(--coal-2), #151715);
}

.signal-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
}

.signal-card {
  min-height: 215px;
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(246, 237, 220, 0.075), rgba(246, 237, 220, 0.025)),
    rgba(17, 17, 17, 0.28);
  box-shadow: var(--shadow);
  transform-style: preserve-3d;
  transition: transform 220ms ease, border-color 220ms ease;
}

.signal-card:hover {
  border-color: rgba(216, 168, 77, 0.42);
  transform: translateY(-4px);
}

.signal-card i {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 1.2rem;
  place-items: center;
  border-radius: 50%;
  background: rgba(216, 168, 77, 0.12);
  color: var(--gold-2);
  font-size: 1.2rem;
}

.premiere-section {
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(142, 38, 53, 0.28), transparent 42%),
    #151715;
}

.premiere-section::before {
  content: "";
  position: absolute;
  width: min(58vw, 580px);
  aspect-ratio: 1;
  right: -22vw;
  top: 8%;
  border: 1px solid rgba(216, 168, 77, 0.28);
  border-radius: 50%;
  opacity: 0.5;
}

.countdown {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.countdown div {
  min-height: 116px;
  display: grid;
  align-content: center;
  justify-items: center;
  border: 1px solid rgba(216, 168, 77, 0.25);
  border-radius: 8px;
  background:
    linear-gradient(160deg, rgba(246, 237, 220, 0.08), rgba(246, 237, 220, 0.025)),
    rgba(17, 17, 17, 0.3);
}

.countdown strong {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 12vw, 5rem);
  line-height: 0.9;
}

.countdown span {
  color: var(--paper-dim);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.quote-band {
  background:
    linear-gradient(90deg, rgba(17, 17, 17, 0.8), rgba(24, 61, 52, 0.78)),
    var(--green);
}

blockquote {
  position: relative;
  max-width: 940px;
  color: var(--paper);
  font-family: var(--serif);
  font-size: clamp(2rem, 8.6vw, 5rem);
  font-weight: 600;
  line-height: 1.02;
  text-wrap: balance;
}

.quote-mark {
  display: block;
  color: var(--crimson);
  font-size: 5rem;
  line-height: 0.75;
}

.signup-section {
  background:
    linear-gradient(180deg, #141612, #0f0d0b);
}

.signup-form {
  align-self: center;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(246, 237, 220, 0.055);
}

.signup-form label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--gold-2);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.input-row {
  display: grid;
  gap: 0.75rem;
}

.input-row input {
  width: 100%;
  min-height: 54px;
  border: 1px solid rgba(246, 237, 220, 0.24);
  border-radius: 999px;
  padding: 0 1rem;
  background: rgba(17, 17, 17, 0.42);
  color: var(--paper);
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.input-row input::placeholder {
  color: rgba(246, 237, 220, 0.48);
}

.input-row input:focus {
  border-color: rgba(216, 168, 77, 0.86);
  box-shadow: 0 0 0 4px rgba(216, 168, 77, 0.14);
}

.form-note {
  min-height: 1.6em;
  margin: 0.85rem 0 0;
  color: rgba(246, 237, 220, 0.66);
  font-size: 0.88rem;
}

.form-note.success {
  color: var(--gold-2);
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #0f0d0b;
  padding: 1.4rem 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-inner p {
  margin: 0;
  color: rgba(246, 237, 220, 0.6);
  font-size: 0.9rem;
}

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

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

@keyframes slow-drift {
  from {
    transform: scale(1.04) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.09) translate3d(-1.2%, -0.8%, 0);
  }
}

@keyframes scroll-dot {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.45;
  }
  50% {
    transform: translateY(18px);
    opacity: 1;
  }
}

@media (min-width: 560px) {
  .header-action span,
  .site-nav,
  .hero-scroll {
    display: inline-flex;
  }

  .hero-scroll {
    display: grid;
  }

  .hero-actions {
    flex-direction: row;
    max-width: none;
  }

  .button {
    padding-inline: 1.35rem;
  }

  .input-row {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
  }

  .input-row .button {
    min-width: 172px;
  }
}

@media (min-width: 760px) {
  .two-column,
  .premiere-layout,
  .signup-layout {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.82fr);
    align-items: center;
  }

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

  .signup-form {
    padding: 1.25rem;
  }

  .footer-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

@media (min-width: 1024px) {
  .hero {
    padding-bottom: 6rem;
  }

  .hero-content,
  .section-inner {
    width: min(1160px, calc(100% - 7rem));
  }

  .hero-lead {
    font-size: 1.28rem;
  }
}

@media (max-width: 559px) {
  .site-header {
    padding-top: 0.65rem;
    padding-bottom: 0.65rem;
  }

  .brand span:last-child {
    max-width: 34vw;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .header-action {
    width: 44px;
    justify-content: center;
    padding: 0;
    border-radius: 50%;
  }

  .hero {
    min-height: 91svh;
    padding-top: 6.8rem;
    padding-bottom: 4rem;
  }

  .hero-image {
    object-position: 64% 54%;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(9, 8, 7, 0.34) 0%, rgba(9, 8, 7, 0.54) 38%, rgba(9, 8, 7, 0.94) 100%),
      linear-gradient(90deg, rgba(9, 8, 7, 0.72), rgba(9, 8, 7, 0.22));
  }

  h1 {
    max-width: 100%;
    font-size: clamp(3.7rem, 17vw, 4.4rem);
  }

  .signal-card {
    min-height: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
