:root {
  --bg: #070706;
  --cream: #f6f1e8;
  --ember: #ff6a1a;
  --steel: #141412;
  --char: #2a2a26;
  --hair: rgba(246, 241, 232, 0.1);
  --mute: rgba(246, 241, 232, 0.58);
  --display: "Bebas Neue", Impact, "Arial Narrow", sans-serif;
  --body: "Manrope", system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body {
  margin: 0;
  background: var(--bg);
  color: var(--cream);
  font-family: var(--body);
  min-height: 100%;
}
body { overflow-x: hidden; }
html.locked, html.locked body { overflow: hidden; height: 100%; }
img { max-width: 100%; display: block; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; }

.kicker {
  margin: 0;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--mute);
}

h1, h2, h3 {
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: 0.02em;
  margin: 0;
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.5rem;
  padding: 0.9rem 1.6rem;
  border: 0;
  border-radius: 999px;
  background: var(--ember);
  color: var(--bg);
  font-family: var(--body);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  cursor: pointer;
  width: 100%;
  max-width: 28rem;
  touch-action: manipulation;
}
.pill:hover { filter: brightness(1.08); }
.pill:active { transform: scale(0.985); }
.ghost-pill {
  background: transparent;
  color: var(--cream);
  border: 1px solid var(--hair);
  max-width: 28rem;
}
.ghost-pill:hover { border-color: rgba(255, 106, 26, 0.7); color: var(--ember); }

.reel {
  position: fixed;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  background: #000;
  pointer-events: none;
  opacity: 1;
}
body.is-live .reel {
  position: absolute;
  inset: auto;
  top: 0;
  left: 0;
  right: 0;
  height: 100svh;
  z-index: 0;
}

.gate {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.5rem 1.25rem calc(1.5rem + env(safe-area-inset-bottom));
  background: #000;
  gap: 1.1rem;
}
.gate-logo {
  width: min(38vw, 9.5rem);
  height: auto;
  filter: drop-shadow(0 0 28px rgba(255, 106, 26, 0.28));
}
.gate h1 {
  font-size: clamp(2.55rem, 12.2vw, 8.2rem);
  line-height: 0.84;
  letter-spacing: 0.01em;
  width: 100%;
}
.gate h1 .need {
  display: block;
  white-space: nowrap;
}
.gate h1 span:last-child {
  display: block;
  color: var(--ember);
  font-size: 1.16em;
}
.gate-sub {
  margin: 0.2rem 0 0.4rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mute);
}
.gate-again {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ember);
}
.gate-again[hidden] { display: none; }
.gate .pill { font-size: 1.12rem; min-height: 3.75rem; }
.gate[hidden] { display: none; }

.intro {
  position: fixed;
  inset: 0;
  z-index: 30;
  background: transparent;
  pointer-events: none;
}
.intro[hidden] { display: none; }
.intro-chrome {
  position: absolute;
  top: calc(0.7rem + env(safe-area-inset-top));
  right: 0.8rem;
  z-index: 5;
  display: flex;
  gap: 0.45rem;
  pointer-events: auto;
}
.ghost {
  appearance: none;
  background: rgba(0, 0, 0, 0.35);
  color: var(--cream);
  border: 1px solid var(--hair);
  border-radius: 999px;
  padding: 0.4rem 0.85rem;
  font-family: var(--body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
}
.ghost:hover { border-color: var(--ember); color: var(--ember); }
.intro.is-out {
  opacity: 0;
  transition: opacity 0.4s linear;
  pointer-events: none;
}

.site { position: relative; z-index: 10; }
.site[hidden] { display: none; }

.hdr {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 12;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-areas:
    "brand offers"
    "nav nav";
  align-items: center;
  gap: 0.55rem 0.8rem;
  padding: calc(0.85rem + env(safe-area-inset-top)) 1rem 0.85rem;
  border-bottom: 1px solid var(--hair);
  background: linear-gradient(to bottom, rgba(7, 7, 6, 0.72), rgba(7, 7, 6, 0.18));
}
.brand { grid-area: brand; }
nav { grid-area: nav; }
.header-offers { grid-area: offers; }
.header-offers {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.65rem 0.95rem;
}
.header-offers a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  text-decoration: none;
  color: var(--mute);
  font-size: 0.78rem;
  font-weight: 600;
  white-space: nowrap;
}
.header-offers a:hover { color: var(--ember); }
.offer-credit-line {
  margin: 0.7rem 0 0;
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--mute);
  line-height: 1.45;
}
.offer-credit-line a {
  color: inherit;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 0.16em;
}
.offer-credit-line a:hover { color: var(--ember); }
.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}
.brand img { width: 2.55rem; height: 2.55rem; object-fit: contain; }
.brand span {
  font-family: var(--display);
  font-size: 1.35rem;
  letter-spacing: 0.06em;
}
nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.1rem;
  font-size: 0.78rem;
  font-weight: 600;
}
nav a { text-decoration: none; color: var(--mute); }
nav a:hover { color: var(--ember); }
.hdr-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.5rem;
  padding: 0.4rem 0.95rem;
  border-radius: 999px;
  background: var(--ember);
  color: var(--bg);
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 7.5rem 1.15rem 0;
  background: #070706;
}
.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(7, 7, 6, 0.55) 0%, rgba(7, 7, 6, 0.18) 32%, rgba(7, 7, 6, 0.82) 78%, #070706 100%);
  pointer-events: none;
}
.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 44rem;
  padding-bottom: 1.4rem;
}
.hero h1 {
  font-size: clamp(3.4rem, 16vw, 8.6rem);
  line-height: 0.86;
  margin: 0.55rem 0 0.85rem;
}
.lede {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.55;
  color: var(--mute);
  max-width: 34rem;
}
.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-top: 1.35rem;
}
.hero-actions .pill,
.hero-actions .ghost-pill {
  width: 100%;
  max-width: 28rem;
  min-height: 3.5rem;
}

.ticker {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-top: 1px solid var(--hair);
  border-bottom: 1px solid var(--hair);
  padding: 0.85rem 0;
  margin: 0 -1.15rem;
  background: rgba(7, 7, 6, 0.55);
}
.ticker-track {
  display: flex;
  gap: 2.4rem;
  width: max-content;
  animation: marquee 22s linear infinite;
  font-family: var(--display);
  font-size: 1.15rem;
  letter-spacing: 0.12em;
  white-space: nowrap;
}
.ticker-track span::before {
  content: "●";
  color: var(--ember);
  margin-right: 0.85rem;
  font-size: 0.55rem;
  vertical-align: middle;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.rise { opacity: 0; transform: translateY(18px); }
.site.is-live .rise {
  animation: rise 0.75s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.site.is-live .r1 { animation-delay: 0.02s; }
.site.is-live .r2 { animation-delay: 0.14s; }
.site.is-live .r3 { animation-delay: 0.22s; }
.site.is-live .r4 { animation-delay: 0.36s; }
.site.is-live .r5 { animation-delay: 0.46s; }
.site.is-live .r6 { animation-delay: 0.62s; }
@keyframes rise {
  to { opacity: 1; transform: none; }
}

.point, .compare, .start {
  padding: 4.2rem 1.15rem 1.2rem;
  border-top: 1px solid var(--hair);
  background: var(--bg);
  position: relative;
  z-index: 2;
}
.point h2, .compare h2, .start h2 {
  font-size: clamp(2.3rem, 9.5vw, 4.6rem);
  line-height: 0.92;
  margin: 0.55rem 0 1.1rem;
  max-width: 18ch;
}
.point p, .start > .lede {
  color: var(--mute);
  line-height: 1.6;
  max-width: 38rem;
}
.struck {
  text-decoration: line-through;
  text-decoration-color: var(--ember);
  text-decoration-thickness: 0.08em;
  color: rgba(246, 241, 232, 0.42);
}
.point ol {
  list-style: none;
  margin: 1.8rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.95rem;
}
.point li {
  display: grid;
  grid-template-columns: 2.2rem 1fr;
  gap: 0.7rem;
  padding-top: 0.9rem;
  border-top: 1px solid var(--hair);
  font-size: 0.98rem;
  line-height: 1.45;
  color: var(--mute);
}
.point li b {
  font-family: var(--display);
  font-weight: 400;
  color: var(--ember);
  font-size: 1.15rem;
  letter-spacing: 0.06em;
}
.point-still {
  margin: 2rem 0 0;
  border: 1px solid var(--hair);
  overflow: hidden;
  background: var(--steel);
  display: grid;
  place-items: center;
  min-height: 16rem;
  padding: 2.5rem;
}
.point-still img {
  width: min(42%, 11rem);
  height: auto;
  filter: drop-shadow(0 0 28px rgba(255, 106, 26, 0.28));
}

.compare h2 { max-width: none; }
.cards {
  display: grid;
  gap: 1rem;
  margin-top: 0.4rem;
}
.card {
  background: var(--steel);
  border: 1px solid var(--hair);
  padding: 1.25rem 1.15rem 1.4rem;
}
.card.forged {
  border-color: var(--ember);
  box-shadow: inset 0 0 0 1px rgba(255, 106, 26, 0.35);
}
.card-label {
  font-family: var(--display);
  letter-spacing: 0.14em;
  font-size: 1.05rem;
  margin: 0 0 0.85rem;
  color: var(--ember);
}
.card.dim .card-label { color: var(--mute); }
.card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.card li {
  padding: 0.7rem 0;
  border-top: 1px solid var(--hair);
  color: var(--mute);
  line-height: 1.4;
}
.card.forged li { color: var(--cream); }

.prices {
  display: grid;
  gap: 1rem;
  margin: 1.8rem 0 1.6rem;
}
.price {
  background: var(--steel);
  border: 1px solid var(--hair);
  padding: 1.2rem 1.15rem 1.35rem;
}
.price:first-child { border-color: var(--ember); }
.price h3 {
  font-size: 1.45rem;
  margin-bottom: 0.35rem;
}
.price p {
  margin: 0;
  color: var(--mute);
  font-size: 0.95rem;
  line-height: 1.45;
}
.price .price-amt {
  font-family: var(--display);
  font-size: clamp(3.2rem, 12vw, 4.4rem);
  line-height: 0.9;
  margin: 0 0 0.35rem;
  color: var(--ember);
}

.foot {
  margin: 0;
  padding: 1.4rem 1.15rem calc(1.6rem + env(safe-area-inset-bottom));
  border-top: 1px solid var(--hair);
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  color: var(--mute);
  font-size: 0.9rem;
  background: var(--bg);
  position: relative;
  z-index: 2;
}
.foot strong { color: var(--cream); font-weight: 600; }
.foot a { color: var(--ember); text-decoration: none; }

@media (min-width: 720px) {
  .gate { gap: 1.3rem; }
  .hero-actions { flex-direction: row; flex-wrap: wrap; }
  .pill, .ghost-pill { width: auto; }
  .gate .pill { width: min(100%, 28rem); }
  .hdr { padding-inline: 2rem; }
  .hero, .point, .compare, .start, .foot { padding-inline: 2rem; }
  .ticker { margin-inline: -2rem; }
}

@media (min-width: 980px) {
  .point {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 3rem;
    align-items: center;
    padding-top: 5rem;
    padding-bottom: 4rem;
  }
  .point-still { margin: 0; min-height: 22rem; }
  .cards, .prices { grid-template-columns: repeat(3, 1fr); }
  .cards { grid-template-columns: 1fr 1fr; }
  .compare, .start { padding-top: 5rem; padding-bottom: 4rem; }
  .hero { padding-left: 2.5rem; padding-right: 2.5rem; }
  .hdr {
    display: flex;
    flex-wrap: nowrap;
  }
  .brand, nav, .header-offers { grid-area: auto; }
  nav { margin-left: 1rem; }
  .header-offers { margin-left: auto; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
  .rise { opacity: 1; transform: none; }
}
