/* ================================================
   HOME PAGE styles
   ================================================ */

/* ---------- HERO BANNER (full-bleed storm photo) ---------- */
.herobanner {
  position: relative;
  width: 100%;
  height: clamp(480px, 56vw, 720px);
  margin-top: 72px; /* clear fixed nav */
  overflow: hidden;
  background: #0b0814;
  border-bottom: 0;
}
.herobanner__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  display: block;
  filter: saturate(1.05) contrast(1.02);
}
/* Subtle scrim, darkens right side so headline is legible, leaves lightning untouched */
.herobanner__scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10,6,20,0) 35%, rgba(10,6,20,0.35) 70%, rgba(10,6,20,0.72) 100%),
    linear-gradient(180deg, rgba(10,6,20,0.45) 0%, rgba(10,6,20,0) 30%, rgba(10,6,20,0) 60%, rgba(10,6,20,0.55) 100%);
  z-index: 1;
  pointer-events: none;
}
.herobanner__overlay {
  position: absolute;
  inset: 0;
  padding: 56px 72px 72px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  pointer-events: none;
  z-index: 2;
}
.herobanner__tag {
  font-family: var(--font-ui);
  color: rgba(243, 232, 255, 0.95);
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  line-height: 1.6;
  max-width: 420px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.9);
  grid-row: 1;
}
.herobanner__headline {
  grid-row: 3;
  justify-self: end;
  text-align: right;
  font-family: var(--font-display);
  font-size: clamp(30px, 4.4vw, 62px);
  font-weight: 400;
  line-height: 1.08;
  color: #f5eef8;
  text-shadow: 0 4px 30px rgba(0,0,0,0.85), 0 0 40px rgba(45,27,78,0.6);
  max-width: 720px;
  padding-right: 140px; /* reserve space for Tweaks FAB */
}
.herobanner__headline span { display: block; white-space: nowrap; }
.herobanner__headline span:nth-child(1) { color: rgba(243, 232, 255, 0.92); }
.herobanner__headline span:nth-child(2) { color: rgba(243, 232, 255, 0.92); }
.herobanner__headline em {
  font-style: italic;
  color: #7DD3FC; /* Ice Blue */
  text-shadow: 0 4px 30px rgba(0,0,0,0.85), 0 0 50px rgba(125, 211, 252, 0.35);
}
.herobanner__fade {
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 200px;
  background: linear-gradient(180deg, transparent 0%, rgba(11,10,20,0.4) 40%, var(--ink) 100%);
  z-index: 3;
  pointer-events: none;
}

/* Remove hero top padding since banner handles spacing */
.hero { padding-top: 80px !important; min-height: auto !important; padding-bottom: 40px !important; }
/* Soft bleed into marquee */
.hero::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 160px;
  background: linear-gradient(180deg, transparent, rgba(20,19,38,0.4));
  pointer-events: none;
  z-index: 0;
}

@media (max-width: 900px) {
  .herobanner { height: 420px; }
  .herobanner__overlay { padding: 28px 24px 40px; }
  .herobanner__headline {
    font-size: clamp(24px, 6.5vw, 38px);
    padding-right: 0;
    padding-bottom: 50px;
    justify-self: stretch;
    text-align: right;
  }
  .herobanner__headline span { white-space: normal; }
  .herobanner__tag { font-size: 10px; letter-spacing: 0.22em; }
  .herobanner__scrim {
    background:
      linear-gradient(180deg, rgba(10,6,20,0.55) 0%, rgba(10,6,20,0.1) 35%, rgba(10,6,20,0.1) 55%, rgba(10,6,20,0.85) 100%);
  }
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 140px 44px 80px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__banner {
  position: absolute;
  inset: 0;
  background: url('assets/hero-banner.svg') center/cover no-repeat;
  opacity: 0;
  pointer-events: none;
  z-index: 0;
  transition: opacity 800ms ease;
}
.hero__banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(11,10,20,0.35) 0%, transparent 30%, transparent 60%, rgba(11,10,20,0.85) 100%),
    linear-gradient(90deg, rgba(11,10,20,0.7) 0%, transparent 40%, transparent 70%, rgba(11,10,20,0.5) 100%);
  pointer-events: none;
}
body[data-banner="on"] .hero__banner { opacity: 1; }
body[data-banner="on"] .hero__ring { opacity: 0.6; }
.hero__inner {
  position: relative;
  z-index: 2;
  max-width: 1320px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero__ring {
  position: absolute;
  width: 900px; height: 900px;
  top: 50%; right: -200px;
  transform: translateY(-50%);
  border-radius: 50%;
  border: 1px solid rgba(125, 211, 252, 0.12);
  box-shadow:
    0 0 180px rgba(59, 130, 246, 0.18),
    inset 0 0 120px rgba(45, 27, 78, 0.45);
  pointer-events: none;
  z-index: 1;
}
.hero__ring--inner {
  width: 640px; height: 640px;
  right: -80px;
  border-color: rgba(59, 130, 246, 0.18);
  animation: ringRotate 220s linear infinite;
}
@keyframes ringRotate {
  to { transform: translateY(-50%) rotate(360deg); }
}
body[data-motion="off"] .hero__ring--inner { animation: none; }

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 30px;
}

.hero__pretitle {
  font-family: var(--font-ui);
  font-weight: 300;
  font-size: 12px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--lightning);
  margin-bottom: 20px;
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(68px, 9.5vw, 148px);
  line-height: 0.92;
  color: var(--off-white);
  letter-spacing: -0.015em;
  text-shadow: 0 2px 40px rgba(0,0,0,0.4);
}
.hero__title span {
  color: var(--off-white);
}

.hero__tag {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(48px, 6.5vw, 96px);
  line-height: 1.0;
  color: var(--off-white);
  letter-spacing: -0.01em;
}
.hero__tag em {
  font-style: italic;
  color: var(--lightning);
}

.hero__lede {
  margin-top: 28px;
  font-size: 17px;
  line-height: 1.7;
  color: var(--silver);
  opacity: 0.88;
  max-width: 52ch;
}

.hero__ctas {
  margin-top: 36px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero__release {
  margin-top: 44px;
  padding-top: 28px;
  border-top: 1px solid rgba(229, 231, 235, 0.1);
  max-width: 440px;
}
.hero__release-row {
  display: flex;
  align-items: baseline;
  gap: 14px;
}
.hero__date {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--off-white);
  font-style: italic;
}
.hero__counter {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.hero__counter-cell {
  text-align: left;
  border-left: 1px solid rgba(125, 211, 252, 0.35);
  padding-left: 12px;
}
.hero__counter-n {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 30px;
  color: var(--off-white);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.hero__counter-l {
  font-family: var(--font-ui);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fog);
  margin-top: 6px;
}

/* Hero cover */
.hero__art {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1200px;
}
.hero__cover-wrap {
  position: relative;
  width: 420px;
  max-width: 100%;
  transform-style: preserve-3d;
  animation: coverFloat 9s ease-in-out infinite;
}
body[data-motion="off"] .hero__cover-wrap { animation: none; }
@keyframes coverFloat {
  0%, 100% { transform: translateY(0) rotate(-1.2deg); }
  50% { transform: translateY(-14px) rotate(0.4deg); }
}
.hero__cover {
  width: 100%;
  border-radius: 2px;
  box-shadow:
    0 40px 80px rgba(0,0,0,0.7),
    0 0 80px rgba(59, 130, 246, 0.25),
    0 0 0 1px rgba(229, 231, 235, 0.08);
  position: relative;
  z-index: 2;
}
.hero__cover-glow {
  position: absolute;
  inset: -40px;
  background: radial-gradient(ellipse at center, rgba(59, 130, 246, 0.5), transparent 60%);
  filter: blur(40px);
  z-index: 0;
  animation: coverGlow 6s ease-in-out infinite;
}
@keyframes coverGlow {
  0%, 100% { opacity: 0.55; }
  50% { opacity: 0.9; }
}
body[data-motion="off"] .hero__cover-glow { animation: none; opacity: 0.4; }

.hero__cover-cta {
  position: relative;
  z-index: 3;
  margin-top: 28px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  background: var(--ice-blue);
  color: var(--ink);
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border-radius: 2px;
  width: 100%;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(125, 211, 252, 0.25);
  transition: all 240ms cubic-bezier(.2,.7,.2,1);
}
.hero__cover-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(125, 211, 252, 0.4);
}
.hero__cover-cta-arrow {
  transition: transform 240ms ease;
}
.hero__cover-cta:hover .hero__cover-cta-arrow { transform: translateX(4px); }

.hero__cover-caption {
  position: absolute;
  bottom: -36px;
  left: 0; right: 0;
  display: flex;
  justify-content: space-between;
  color: var(--silver);
  opacity: 0.8;
  z-index: 3;
}

.hero__portrait {
  position: relative;
  width: 480px;
  max-width: 100%;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.6);
}
.hero__portrait img { width: 100%; display: block; }
.hero__portrait::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(11,10,20,0.6) 100%);
  pointer-events: none;
}
.hero__portrait-label {
  position: absolute;
  bottom: 24px; left: 24px;
  z-index: 2;
}

.hero__scroll {
  position: absolute;
  bottom: 36px;
  right: 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--fog);
  z-index: 3;
}
.hero__scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(180deg, var(--lightning), transparent);
  animation: scrollPulse 2.4s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}
body[data-motion="off"] .hero__scroll-line { animation: none; }

@media (max-width: 1100px) {
  .hero__inner { grid-template-columns: 1fr; gap: 60px; }
  .hero__art { order: 2; }
  .hero__copy { order: 1; }
  .hero__ring { display: none; }
  .hero { padding: 120px 32px 60px; }
  .hero__cover-wrap { width: 340px; }
  .hero__title { font-size: 88px; }
  .hero__scroll { display: none; }
}
@media (max-width: 768px) {
  .hero { padding: 110px 24px 60px; }
  .hero__cover-wrap { width: 280px; }
  .hero__title { font-size: 68px; }
}

/* ---------- Marquee ---------- */
.marquee {
  overflow: hidden;
  border-top: 0;
  border-bottom: 0;
  padding: 24px 0;
  background: linear-gradient(180deg, rgba(11,10,20,1) 0%, rgba(20,19,38,0.55) 50%, rgba(11,10,20,1) 100%);
  position: relative;
}
.marquee::before, .marquee::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  pointer-events: none;
  z-index: 2;
}
.marquee::before { left: 0; background: linear-gradient(90deg, rgba(11,10,20,1), transparent); }
.marquee::after { right: 0; background: linear-gradient(270deg, rgba(11,10,20,1), transparent); }
.marquee__track {
  display: flex;
  gap: 40px;
  white-space: nowrap;
  animation: marquee 70s linear infinite;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  color: var(--silver);
  opacity: 0.7;
}
body[data-motion="off"] .marquee__track { animation: none; }
@keyframes marquee {
  to { transform: translateX(-33.333%); }
}
.marquee__item {
  display: inline-flex;
  align-items: center;
  gap: 40px;
}
.marquee__sep { color: var(--lightning); font-style: normal; }

/* ---------- Launch section ---------- */
.launch {
  position: relative;
}
.launch::before {
  content: "";
  position: absolute;
  right: -200px; top: 10%;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59,130,246,0.1), transparent 70%);
  pointer-events: none;
}
.launch__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 100px;
  align-items: center;
}
.launch__meta-row {
  margin-top: 36px;
  display: flex;
  gap: 40px;
  padding: 20px 0;
  border-top: 1px solid rgba(229, 231, 235, 0.1);
  border-bottom: 1px solid rgba(229, 231, 235, 0.1);
}
.launch__meta-cell {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.launch__heat { font-size: 18px; }
.launch__meta-val {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--off-white);
}
.launch__tropes {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.trope-chip {
  font-family: var(--font-ui);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 7px 12px;
  border: 1px solid rgba(229, 231, 235, 0.18);
  color: var(--silver);
  border-radius: 2px;
  transition: all 200ms ease;
}
.trope-chip:hover {
  border-color: var(--lightning);
  color: var(--lightning);
}
.launch__ctas {
  margin-top: 40px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.launch__cover {
  position: relative;
  display: flex;
  justify-content: center;
}
.launch__cover-stack {
  position: relative;
  width: 100%;
  max-width: 440px;
}
.launch__cover-stack img {
  width: 100%;
  border-radius: 2px;
  box-shadow:
    0 50px 100px rgba(0,0,0,0.6),
    0 0 0 1px rgba(229,231,235,0.1),
    0 0 60px rgba(59,130,246,0.25);
  position: relative;
  z-index: 2;
  transition: transform 600ms cubic-bezier(.2,.7,.2,1);
}
.launch__cover-stack:hover img {
  transform: translate(-8px, -8px);
}
.launch__cover-bg {
  position: absolute;
  inset: 30px -20px -20px 30px;
  background: linear-gradient(135deg, rgba(59,130,246,0.1), rgba(45,27,78,0.3));
  border: 1px solid rgba(125, 211, 252, 0.3);
  border-radius: 2px;
  z-index: 1;
}
.launch__cover-spine {
  margin-top: 24px;
  text-align: center;
  color: var(--fog);
}

@media (max-width: 920px) {
  .launch__grid { grid-template-columns: 1fr; gap: 60px; }
  .launch__meta-row { flex-wrap: wrap; gap: 20px; }
}

/* ---------- Series strip ---------- */
.series-strip__head {
  max-width: 800px;
  margin-bottom: 80px;
}
.series-strip__shelf {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.shelf-card {
  position: relative;
  cursor: pointer;
  transition: transform 400ms cubic-bezier(.2,.7,.2,1);
}
.shelf-card:hover { transform: translateY(-6px); }
.shelf-card__cover-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  aspect-ratio: 3 / 4;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}
.shelf-card__cover-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(.2,.7,.2,1), filter 400ms;
}
.shelf-card:hover .shelf-card__cover-wrap img {
  transform: scale(1.06);
}
.shelf-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(11,10,20,0.95) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity 300ms ease;
}
.shelf-card:hover .shelf-card__overlay { opacity: 1; }
.shelf-card__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  color: var(--off-white);
  margin-top: 6px;
  line-height: 1;
}
.shelf-card__couple {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 14px;
  color: var(--silver);
  margin-top: 8px;
}
.shelf-card__status {
  font-family: var(--font-ui);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(229,231,235,0.1);
}
.shelf-card__label {
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-ui);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fog);
}
.shelf-card__dot {
  width: 3px; height: 3px;
  border-radius: 50%;
  background: var(--accent);
}

/* Series tweak variants on home */
body[data-series="fan"] .series-strip__shelf {
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
  padding: 40px 0;
  gap: 0;
}
body[data-series="fan"] .shelf-card {
  width: 19%;
  margin: 0 -2%;
}
body[data-series="fan"] .shelf-card:nth-child(1) { transform: rotate(-6deg) translateY(20px); }
body[data-series="fan"] .shelf-card:nth-child(2) { transform: rotate(-3deg) translateY(6px); z-index: 2; }
body[data-series="fan"] .shelf-card:nth-child(3) { transform: rotate(0deg); z-index: 3; }
body[data-series="fan"] .shelf-card:nth-child(4) { transform: rotate(3deg) translateY(6px); z-index: 2; }
body[data-series="fan"] .shelf-card:nth-child(5) { transform: rotate(6deg) translateY(20px); }
body[data-series="fan"] .shelf-card:hover { transform: translateY(-14px) rotate(0deg) scale(1.05); z-index: 5; }

body[data-series="feature"] .series-strip__shelf {
  grid-template-columns: 2.2fr 1fr 1fr 1fr 1fr;
}
body[data-series="feature"] .shelf-card:first-child .shelf-card__cover-wrap {
  aspect-ratio: auto;
  height: 100%;
}

body[data-series="timeline"] .series-strip__shelf {
  grid-template-columns: repeat(5, 1fr);
  position: relative;
  padding-top: 80px;
}
body[data-series="timeline"] .series-strip__shelf::before {
  content: "";
  position: absolute;
  top: 40px; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--b1), var(--b2), var(--b3), var(--b4), var(--b5));
  opacity: 0.5;
}
body[data-series="timeline"] .shelf-card::before {
  content: "";
  position: absolute;
  top: -47px; left: 50%;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 16px var(--accent);
  transform: translateX(-50%);
}

@media (max-width: 920px) {
  .series-strip__shelf { grid-template-columns: repeat(2, 1fr); }
  body[data-series="fan"] .series-strip__shelf,
  body[data-series="feature"] .series-strip__shelf,
  body[data-series="timeline"] .series-strip__shelf {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
  }
  body[data-series="fan"] .shelf-card {
    width: auto; margin: 0; transform: none !important;
  }
}

/* ---------- About ---------- */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 100px;
  align-items: center;
}
.about__photo-frame {
  position: relative;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(229,231,235,0.08);
  aspect-ratio: 3 / 4;
}
.about__photo-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.5s ease;
}
.about__photo-frame:hover img { transform: scale(1.04); }
.about__photo-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(11,10,20,0.4));
  pointer-events: none;
}
.about__photo-badge {
  position: absolute;
  top: 20px; right: 20px;
  background: rgba(11, 10, 20, 0.85);
  backdrop-filter: blur(10px);
  padding: 12px 16px;
  border: 1px solid rgba(125, 211, 252, 0.3);
  border-radius: 2px;
  text-align: center;
  color: var(--off-white);
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.about__photo-caption {
  margin-top: 22px;
  color: var(--fog);
  text-align: center;
  font-size: 14px;
  letter-spacing: 0.22em;
  line-height: 1.5;
}
.about__photo-caption span {
  display: inline-block;
  margin-top: 8px;
  font-size: 20px;
  line-height: 1.4;
}
.about__pills {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.about__pill {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding: 14px 0;
  border-top: 1px solid rgba(229,231,235,0.08);
  color: var(--silver);
}
.about__pill:last-child { border-bottom: 1px solid rgba(229,231,235,0.08); }
.about__pill > span:first-child { flex-shrink: 0; min-width: 100px; }

@media (max-width: 920px) {
  .about__grid { grid-template-columns: 1fr; gap: 60px; }
}

/* ---------- Chasers ---------- */
.chasers {
  position: relative;
}
.chasers__frame {
  position: relative;
  background:
    radial-gradient(ellipse at top, rgba(59,130,246,0.12), transparent 65%),
    radial-gradient(ellipse at bottom, rgba(45,27,78,0.35), transparent 70%);
  border: 0;
  border-radius: 2px;
  padding: 100px 60px;
  overflow: hidden;
}
.chasers__frame::before {
  content: "";
  position: absolute;
  top: 0; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(125, 211, 252, 0.25), transparent);
}
.chasers__frame::after {
  content: "";
  position: absolute;
  bottom: 0; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(125, 211, 252, 0.18), transparent);
}
.chasers__ring {
  position: absolute;
  top: 50%; left: 50%;
  width: 800px; height: 800px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid rgba(125, 211, 252, 0.18);
  box-shadow: inset 0 0 120px rgba(59,130,246,0.15);
  pointer-events: none;
}
.chasers__ring::before {
  content: "";
  position: absolute;
  inset: 40px;
  border-radius: 50%;
  border: 1px dashed rgba(125, 211, 252, 0.15);
}
.chasers__inner { position: relative; z-index: 2; max-width: 860px; margin: 0 auto; text-align: center; }
.chasers__form {
  margin-top: 44px;
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 10px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.chasers__form input {
  padding: 16px 20px;
  background: rgba(11, 10, 20, 0.6);
  border: 1px solid rgba(229, 231, 235, 0.22);
  color: var(--off-white);
  font-family: var(--font-ui);
  font-size: 14px;
  letter-spacing: 0.04em;
  border-radius: 2px;
  outline: none;
  transition: border-color 200ms ease;
  min-width: 0;
}
.chasers__form input::placeholder { color: var(--fog); }
.chasers__form input:focus { border-color: var(--ice-blue); }
.chasers__thanks {
  padding: 24px;
  text-align: center;
}
.chasers__perks {
  margin-top: 72px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: left;
}
.chasers__perk-num {
  font-family: var(--font-display);
  font-size: 14px;
  font-style: italic;
  color: var(--ice-blue);
  margin-bottom: 10px;
}
.chasers__perk-title {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--off-white);
  margin-bottom: 6px;
}
.chasers__perk-body {
  font-size: 13px;
  color: var(--silver);
  opacity: 0.82;
  line-height: 1.6;
}
.chasers__foot {
  margin-top: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.chasers__dot {
  width: 3px; height: 3px;
  border-radius: 50%;
  background: var(--lightning);
}

@media (max-width: 768px) {
  .chasers__frame { padding: 60px 24px; }
  .chasers__form { grid-template-columns: 1fr; }
  .chasers__perks { grid-template-columns: 1fr 1fr; gap: 28px; }
  .chasers__ring { width: 500px; height: 500px; }
}
