:root {
  --bg: #080605;
  --panel: rgba(28, 21, 19, 0.9);
  --panel-strong: #181210;
  --line: rgba(255, 125, 56, 0.28);
  --line-strong: rgba(255, 109, 39, 0.72);
  --text: #fff5ea;
  --muted: #ceb6a4;
  --orange: #ff7a18;
  --red: #e32418;
  --gold: #ffd2a0;
  color-scheme: dark;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  background:
    radial-gradient(circle at 14% 12%, rgba(231, 58, 20, 0.2), transparent 31rem),
    radial-gradient(circle at 88% 34%, rgba(255, 122, 24, 0.12), transparent 28rem),
    linear-gradient(180deg, #060403, var(--bg) 54%, #100807);
  color: var(--text);
  font-family: "Avenir Next", "Trebuchet MS", "Segoe UI", sans-serif;
}
body::before {
  position: fixed;
  inset: 0;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(255, 122, 24, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 122, 24, 0.03) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: radial-gradient(circle at 50% 16%, #000, transparent 70%);
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
p, h1, h2 { margin-top: 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 0 1rem;
  backdrop-filter: blur(18px);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(1200px, 100%);
  margin: 0 auto;
  padding: 0.45rem 0.75rem 0.5rem;
  border: 1px solid var(--line);
  border-top: 0;
  border-radius: 0 0 28px 28px;
  background: rgba(9, 7, 6, 0.8);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.35);
}
.brand {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.brand::before {
  position: absolute;
  inset: 50% auto auto 46%;
  z-index: -1;
  width: 185px;
  height: 65px;
  border-radius: 999px;
  content: "";
  background: radial-gradient(circle, rgba(255, 82, 35, 0.26), transparent 67%);
  filter: blur(16px);
  transform: translate(-50%, -50%);
}
.brand img { width: clamp(155px, 19vw, 214px); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0.82rem 1.25rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 800;
  transition: border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}
.button.primary {
  border-color: rgba(255, 122, 24, 0.7);
  background: linear-gradient(125deg, var(--orange), var(--red));
  color: #1d0905;
}
.button:hover {
  border-color: var(--line-strong);
  box-shadow: 0 0 34px rgba(255, 97, 26, 0.24);
  transform: translateY(-1px);
}
.header-cta { white-space: nowrap; }

.funnel {
  width: min(1240px, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(2.4rem, 6vw, 4.8rem) 0 3.5rem;
}
.intro {
  max-width: 850px;
  margin: 0 auto clamp(1.8rem, 4vw, 2.8rem);
  text-align: center;
}
.eyebrow {
  margin-bottom: 0.9rem;
  color: #ff9552;
  font-size: 0.77rem;
  font-weight: 900;
  letter-spacing: 0.33em;
  text-transform: uppercase;
}
h1 {
  margin-bottom: 1rem;
  font-size: clamp(2.55rem, 6vw, 5.15rem);
  line-height: 0.98;
  letter-spacing: -0.065em;
}
.lead {
  max-width: 700px;
  margin: 0 auto;
  color: var(--muted);
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  line-height: 1.65;
}
.video-stage {
  max-width: 1160px;
  margin: 0 auto;
}
.video-shell {
  position: relative;
  padding: clamp(0.35rem, 1vw, 0.6rem);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: clamp(22px, 3vw, 34px);
  background:
    radial-gradient(circle at 16% 0%, rgba(255, 122, 24, 0.2), transparent 33%),
    var(--panel);
  box-shadow: 0 32px 96px rgba(0, 0, 0, 0.48);
}
.video-shell video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: clamp(16px, 2.2vw, 26px);
  background: #000;
}
.replay-copy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  margin: 1.1rem auto 0;
  color: var(--muted);
  font-size: 0.92rem;
  text-align: center;
}
.status-dot {
  width: 8px;
  height: 8px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #25cb8e;
  box-shadow: 0 0 12px #25cb8e;
}
.conversion {
  max-width: 900px;
  margin: clamp(3rem, 7vw, 5rem) auto 0;
  padding: clamp(1.6rem, 4vw, 3rem);
  border: 1px solid var(--line);
  border-radius: clamp(22px, 3vw, 34px);
  background:
    radial-gradient(circle at 0% 12%, rgba(255, 122, 24, 0.15), transparent 40%),
    var(--panel-strong);
  text-align: center;
}
.conversion h2 {
  margin-bottom: 0.85rem;
  font-size: clamp(2rem, 4vw, 3.55rem);
  line-height: 1.02;
  letter-spacing: -0.055em;
}
.conversion > p:not(.eyebrow) {
  max-width: 640px;
  margin: 0 auto 1.8rem;
  color: var(--muted);
  line-height: 1.65;
}
.conversion-cta { min-width: min(270px, 100%); }
.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem 1.4rem;
  padding: 0 1rem 2.2rem;
  color: var(--muted);
  font-size: 0.78rem;
}
.site-footer a {
  color: rgba(206, 182, 164, 0.85);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-page {
  width: min(900px, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(2.5rem, 7vw, 5rem) 0 4rem;
}
.legal-card {
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: clamp(1.4rem, 4vw, 2.8rem);
  background: var(--panel);
}
.legal-card h1 {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 700;
}
.legal-card h2 {
  margin: 1.75rem 0 0.5rem;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.legal-card p,
.legal-card li {
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.65;
}
.legal-card strong { font-weight: 600; color: var(--muted); }
.legal-card a {
  color: rgba(206, 182, 164, 0.9);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.legal-card ul { padding-left: 1.25rem; }
.legal-toplink {
  display: inline-flex;
  margin-bottom: 1.5rem;
  color: rgba(206, 182, 164, 0.85);
  font-size: 0.82rem;
}
.legal-card .eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.28em;
}

@media (max-width: 640px) {
  .site-header { padding: 0 0.45rem; }
  .header-inner { padding-inline: 0.5rem; border-radius: 0 0 22px 22px; }
  .header-cta { min-height: 44px; padding: 0.68rem 0.8rem; font-size: 0.88rem; }
  .funnel { width: min(100% - 1rem, 1240px); }
  .replay-copy { align-items: flex-start; font-size: 0.86rem; }
}
