:root {
  --ink: #07060b;
  --ink-2: #100a15;
  --panel: rgba(24, 13, 29, 0.78);
  --panel-solid: #170d1c;
  --red: #ff263c;
  --red-deep: #a4081f;
  --gold: #ffd76a;
  --gold-2: #b97717;
  --white: #fffdf7;
  --muted: #cfc2d1;
  --line: rgba(255, 215, 106, 0.2);
  --success: #53e69d;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
  --radius: 24px;
  --container: min(1180px, calc(100% - 32px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 50% -10%, rgba(255, 38, 60, 0.2), transparent 32rem),
    radial-gradient(circle at 88% 30%, rgba(255, 215, 106, 0.08), transparent 25rem),
    linear-gradient(180deg, #09060d 0%, #110815 55%, #07060b 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  content: "";
  opacity: 0.12;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(to bottom, black, transparent 75%);
}

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

img {
  height: auto;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button,
input,
summary {
  font: inherit;
}

button {
  color: inherit;
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

::selection {
  color: #11070b;
  background: var(--gold);
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 200;
  padding: 10px 16px;
  color: #111;
  background: #fff;
  border-radius: 10px;
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 96px 0;
}

.section-tight {
  padding: 66px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 24px;
  height: 1px;
  content: "";
  background: currentColor;
  box-shadow: 0 0 12px currentColor;
}

.section-heading {
  max-width: 730px;
  margin-bottom: 34px;
}

.section-heading.center {
  margin-inline: auto;
  text-align: center;
}

h1,
h2,
h3 {
  margin-top: 0;
  line-height: 1.12;
  text-wrap: balance;
}

h1 {
  margin-bottom: 20px;
  font-size: clamp(2.5rem, 7vw, 5.8rem);
  letter-spacing: -0.055em;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4vw, 3.65rem);
  letter-spacing: -0.045em;
}

h3 {
  margin-bottom: 10px;
  font-size: clamp(1.15rem, 2vw, 1.5rem);
}

p {
  margin-top: 0;
}

.muted,
.section-heading p,
.hero-copy,
.article-body p,
.article-body li {
  color: var(--muted);
}

.gradient-text {
  color: transparent;
  background: linear-gradient(105deg, #fff 8%, #ffe69b 48%, #f03e51 95%);
  -webkit-background-clip: text;
  background-clip: text;
  filter: drop-shadow(0 0 25px rgba(255, 215, 106, 0.18));
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  background: linear-gradient(180deg, rgba(7, 6, 11, 0.96), rgba(7, 6, 11, 0.72));
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.35);
}

.nav-wrap {
  display: flex;
  align-items: center;
  min-height: 76px;
  gap: 26px;
}

.brand {
  position: relative;
  z-index: 2;
  flex: 0 0 auto;
}

.brand img {
  width: 166px;
  height: 48px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
}

.site-nav a {
  position: relative;
  padding: 10px 12px;
  color: #e8dfe9;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  border-radius: 12px;
  transition: color 0.2s ease, background 0.2s ease;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.07);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 9px;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  border-radius: 14px;
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  content: "";
  background: var(--white);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] span {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"]::before {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"]::after {
  transform: translateY(-7px) rotate(-45deg);
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 19px;
  overflow: hidden;
  color: #12070b;
  font-size: 0.86rem;
  font-weight: 950;
  letter-spacing: 0.035em;
  text-align: center;
  background: linear-gradient(135deg, #fff3b9, #ffc63d 48%, #d78918);
  border: 0;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(255, 198, 61, 0.2), inset 0 1px 0 #fff8d2;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn::after {
  position: absolute;
  top: -120%;
  left: -45%;
  width: 35%;
  height: 340%;
  content: "";
  background: rgba(255, 255, 255, 0.55);
  transform: rotate(24deg);
  transition: left 0.55s ease;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 35px rgba(255, 198, 61, 0.34), inset 0 1px 0 #fff8d2;
}

.btn:hover::after {
  left: 125%;
}

.btn-red {
  color: #fff;
  background: linear-gradient(135deg, #ff4b5d, #e3132b 50%, #960317);
  box-shadow: 0 10px 30px rgba(255, 38, 60, 0.25), inset 0 1px 0 rgba(255,255,255,.3);
}

.btn-ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: none;
}

.btn-small {
  min-height: 42px;
  padding: 9px 14px;
  font-size: 0.78rem;
}

.hero {
  position: relative;
  display: grid;
  min-height: 790px;
  padding: 148px 0 88px;
  overflow: hidden;
  place-items: center;
  isolation: isolate;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -3;
  content: "";
  background:
    linear-gradient(180deg, transparent 64%, #100915),
    radial-gradient(circle at 50% 42%, rgba(185, 119, 23, 0.2), transparent 25%),
    conic-gradient(from 210deg at 50% 42%, transparent, rgba(255, 37, 61, 0.12), transparent 30%);
}

.fx-canvas {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(380px, 0.96fr);
  align-items: center;
  gap: 44px;
}

.hero-copy-wrap {
  position: relative;
  z-index: 4;
}

.hero h1 span {
  display: block;
}

.hero-copy {
  max-width: 650px;
  margin-bottom: 28px;
  font-size: clamp(1rem, 1.6vw, 1.18rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.flush-actions {
  margin: 0;
}

.center-link {
  margin-top: 26px;
  text-align: center;
}

.error-hero {
  min-height: 100vh;
}

.error-content {
  text-align: center;
}

.error-content .hero-copy {
  margin-inline: auto;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 11px;
  color: #e9dfe9;
  font-size: 0.76rem;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 999px;
}

.trust-chip::before {
  width: 7px;
  height: 7px;
  content: "";
  background: var(--success);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--success);
}

.wing-stage {
  position: relative;
  display: grid;
  min-height: 460px;
  place-items: center;
  perspective: 900px;
}

.halo {
  position: absolute;
  width: min(40vw, 410px);
  aspect-ratio: 1;
  background:
    radial-gradient(circle at 40% 35%, #fff4bd 0 3%, transparent 4%),
    radial-gradient(circle at 50% 50%, rgba(255, 45, 64, 0.8), rgba(120, 0, 20, 0.8) 45%, transparent 72%);
  border: 1px solid rgba(255, 215, 106, 0.5);
  border-radius: 50%;
  box-shadow:
    0 0 45px rgba(255, 38, 60, 0.38),
    0 0 110px rgba(255, 215, 106, 0.16),
    inset 0 0 70px rgba(0, 0, 0, 0.45);
  animation: halo-pulse 4s ease-in-out infinite;
}

.hero-seal {
  position: relative;
  z-index: 3;
  display: grid;
  width: min(27vw, 270px);
  aspect-ratio: 1;
  padding: 32px;
  text-align: center;
  background: radial-gradient(circle, rgba(26, 12, 29, 0.9), rgba(8, 5, 11, 0.94));
  border: 1px solid rgba(255, 215, 106, 0.48);
  border-radius: 50%;
  box-shadow: inset 0 0 45px rgba(255, 215, 106, 0.09), 0 0 35px rgba(0, 0, 0, 0.6);
  place-items: center;
}

.hero-seal::before,
.hero-seal::after {
  position: absolute;
  inset: 10px;
  content: "";
  border: 1px dashed rgba(255, 215, 106, 0.35);
  border-radius: 50%;
  animation: spin 30s linear infinite;
}

.hero-seal::after {
  inset: 20px;
  border-style: solid;
  border-color: rgba(255, 255, 255, 0.08);
  animation-direction: reverse;
}

.seal-content {
  position: relative;
  z-index: 2;
}

.seal-kicker {
  display: block;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.seal-mark {
  display: block;
  margin: 5px 0;
  font-family: Georgia, serif;
  font-size: clamp(3rem, 7vw, 5.6rem);
  font-weight: 900;
  line-height: 0.9;
  text-shadow: 0 0 18px rgba(255, 215, 106, 0.44);
}

.seal-sub {
  display: block;
  color: #e5d7e6;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.angel-wings {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: min(59vw, 760px);
  max-width: none;
  pointer-events: none;
  filter:
    drop-shadow(0 0 10px rgba(255, 255, 255, 0.35))
    drop-shadow(0 20px 34px rgba(76, 39, 91, 0.58));
  transform: translate(-50%, -50%);
  transform-origin: center;
  animation: angel-breathe 5s ease-in-out infinite;
}

.scroll-cue {
  position: absolute;
  bottom: 34px;
  left: 50%;
  display: grid;
  width: 34px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  transform: translateX(-50%);
  place-items: start center;
}

.scroll-cue::after {
  width: 5px;
  height: 9px;
  margin-top: 10px;
  content: "";
  background: var(--gold);
  border-radius: 999px;
  box-shadow: 0 0 10px var(--gold);
  animation: scroll-dot 1.8s ease-in-out infinite;
}

.marquee {
  position: relative;
  overflow: hidden;
  background: linear-gradient(90deg, #8f0418, #ed1a32 48%, #8f0418);
  border-block: 1px solid rgba(255, 215, 106, 0.34);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: ticker 26s linear infinite;
}

.marquee-track span {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding: 13px 20px;
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.marquee-track span::after {
  color: var(--gold);
  content: "✦";
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.stat {
  padding: 30px 24px;
  text-align: center;
  background: rgba(18, 10, 22, 0.9);
}

.stat strong {
  display: block;
  margin-bottom: 4px;
  color: var(--gold);
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  line-height: 1;
}

.stat span {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.feature-card,
.article-card,
.info-card {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255,255,255,.055), transparent 38%),
    var(--panel);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  box-shadow: 0 14px 45px rgba(0,0,0,.24);
  backdrop-filter: blur(10px);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.feature-card:hover,
.article-card:hover {
  border-color: rgba(255, 215, 106, 0.5);
  box-shadow: 0 18px 50px rgba(0,0,0,.4), 0 0 32px rgba(255, 215, 106, 0.08);
  transform: translateY(-7px);
}

.feature-card {
  padding: 28px;
}

.feature-card::after {
  position: absolute;
  right: -60px;
  bottom: -70px;
  width: 150px;
  aspect-ratio: 1;
  content: "";
  background: radial-gradient(circle, rgba(255, 38, 60, 0.18), transparent 68%);
}

.card-icon {
  position: relative;
  display: grid;
  width: 64px;
  height: 64px;
  margin-bottom: 22px;
  color: var(--gold);
  background:
    radial-gradient(circle at 32% 25%, rgba(255, 244, 184, .18), transparent 34%),
    linear-gradient(145deg, #3b1724, #170c1b 65%);
  border: 1px solid rgba(255, 215, 106, .5);
  border-radius: 19px;
  box-shadow:
    0 12px 28px rgba(0, 0, 0, .4),
    0 0 24px rgba(255, 215, 106, .12),
    inset 0 1px 0 rgba(255, 255, 255, .16);
  place-items: center;
}

.card-icon::after {
  position: absolute;
  inset: 4px;
  pointer-events: none;
  content: "";
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 15px;
}

.card-icon svg {
  position: relative;
  z-index: 1;
  width: 47px;
  height: 47px;
  overflow: visible;
  filter: drop-shadow(0 3px 5px rgba(0,0,0,.42));
}

.icon-card-back,
.icon-card-front,
.icon-wheel,
.icon-book,
.icon-shield,
.icon-mic {
  fill: rgba(255, 215, 106, .08);
  stroke: #ffd76a;
  stroke-width: 2.3;
  stroke-linejoin: round;
}

.icon-card-front {
  fill: #fff5ce;
  stroke: #d99721;
}

.icon-suit,
.icon-ball,
.icon-hub {
  fill: #e51f39;
  stroke: #fff0b1;
  stroke-width: 1.4;
}

.icon-line,
.icon-spokes,
.icon-rays,
.icon-check {
  fill: none;
  stroke: #ffd76a;
  stroke-width: 2.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-wheel-inner {
  fill: #2b0f1a;
  stroke: #fff0b1;
  stroke-width: 2;
}

.icon-spokes {
  stroke-width: 1.5;
  opacity: .7;
}

.icon-mic {
  fill: rgba(255, 215, 106, .08);
}

.icon-book {
  fill: rgba(255, 245, 206, .13);
}

.icon-spark {
  fill: #fff3bd;
  stroke: #e6a228;
  stroke-width: 1.4;
}

.icon-shield {
  fill: rgba(255, 38, 60, .13);
}

.icon-check {
  stroke: #fff5d1;
  stroke-width: 4;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--gold);
  font-weight: 900;
}

.text-link::after {
  content: "→";
  transition: transform 0.2s ease;
}

.text-link:hover::after {
  transform: translateX(5px);
}

.promo-shell {
  position: relative;
  padding: 10px;
  background: linear-gradient(135deg, rgba(255,215,106,.35), rgba(255,255,255,.05), rgba(255,38,60,.3));
  border-radius: 28px;
  box-shadow: 0 25px 80px rgba(0,0,0,.5);
}

.promo-slider {
  position: relative;
  overflow: hidden;
  background: #21070c;
  border-radius: 20px;
}

.promo-track {
  display: flex;
  transition: transform 0.7s cubic-bezier(.2,.8,.2,1);
}

.promo-slide {
  position: relative;
  flex: 0 0 100%;
}

.promo-slide img {
  width: 100%;
  aspect-ratio: 2000 / 426;
  object-fit: cover;
}

.promo-slide::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background: linear-gradient(110deg, rgba(255,255,255,.1), transparent 25% 75%, rgba(255,210,80,.12));
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 18px;
}

.slider-btn {
  display: grid;
  width: 42px;
  height: 42px;
  padding: 0;
  color: var(--white);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 50%;
  cursor: pointer;
  place-items: center;
}

.slider-dots {
  display: flex;
  gap: 8px;
}

.slider-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  background: rgba(255,255,255,.26);
  border: 0;
  border-radius: 99px;
  cursor: pointer;
  transition: width .2s ease, background .2s ease;
}

.slider-dot.is-active {
  width: 26px;
  background: var(--gold);
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: start;
  gap: 52px;
}

.sticky-copy {
  position: sticky;
  top: 116px;
}

.steps {
  display: grid;
  gap: 16px;
  counter-reset: steps;
}

.step {
  position: relative;
  padding: 24px 24px 24px 80px;
  background: var(--panel);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 20px;
  counter-increment: steps;
}

.step::before {
  position: absolute;
  top: 22px;
  left: 22px;
  display: grid;
  width: 40px;
  height: 40px;
  color: #16090e;
  font-weight: 950;
  content: "0" counter(steps);
  background: linear-gradient(135deg, #fff1b2, #d28a17);
  border-radius: 12px;
  place-items: center;
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.article-card {
  display: flex;
  flex-direction: column;
  padding: 25px;
}

.article-card .tag {
  align-self: flex-start;
}

.article-card h3 {
  margin-top: 17px;
}

.article-card p {
  color: var(--muted);
  font-size: .91rem;
}

.article-card .text-link {
  margin-top: auto;
}

.tag {
  display: inline-flex;
  padding: 5px 9px;
  color: var(--gold);
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .09em;
  text-transform: uppercase;
  background: rgba(255,215,106,.08);
  border: 1px solid rgba(255,215,106,.18);
  border-radius: 99px;
}

.faq-list {
  display: grid;
  max-width: 860px;
  margin: 0 auto;
  gap: 10px;
}

.faq-list details {
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 17px;
}

.faq-list details[open] {
  border-color: rgba(255,215,106,.35);
}

.faq-list summary {
  position: relative;
  padding: 20px 54px 20px 22px;
  font-weight: 850;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 22px;
  color: var(--gold);
  font-size: 1.4rem;
  content: "+";
  transform: translateY(-50%);
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-answer {
  padding: 0 22px 20px;
  color: var(--muted);
}

.cta-panel {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 28px;
  padding: clamp(30px, 6vw, 60px);
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 50%, rgba(255,215,106,.22), transparent 25%),
    linear-gradient(125deg, #5f0312, #d11129 60%, #7d0718);
  border: 1px solid rgba(255,215,106,.46);
  border-radius: 32px;
  box-shadow: 0 30px 80px rgba(0,0,0,.46);
}

.cta-panel::before {
  position: absolute;
  top: -90px;
  right: 20%;
  width: 220px;
  height: 220px;
  content: "";
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 50%;
  box-shadow: 0 0 0 35px rgba(255,255,255,.03), 0 0 0 70px rgba(255,255,255,.02);
}

.cta-panel > * {
  position: relative;
  z-index: 1;
}

.cta-panel h2 {
  margin-bottom: 8px;
}

.cta-panel p {
  max-width: 680px;
  margin-bottom: 0;
  color: #ffe9eb;
}

.site-footer {
  padding: 70px 0 24px;
  background: #08060a;
  border-top: 1px solid rgba(255,255,255,.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr .8fr .8fr 1fr;
  gap: 42px;
}

.footer-brand img {
  width: 166px;
  margin-bottom: 16px;
}

.footer-brand p {
  max-width: 360px;
  color: var(--muted);
  font-size: .9rem;
}

.footer-title {
  margin-bottom: 14px;
  color: var(--gold);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 9px;
}

.footer-links a {
  color: #cfc4d0;
  font-size: .88rem;
}

.footer-links a:hover {
  color: var(--white);
}

.social-row {
  display: flex;
  gap: 10px;
}

.social-btn {
  display: grid;
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 13px;
  transition: transform .2s ease, background .2s ease;
  place-items: center;
}

.social-btn:hover {
  background: rgba(255,215,106,.13);
  transform: translateY(-3px);
}

.social-btn svg {
  width: 21px;
  height: 21px;
  fill: currentColor;
}

.responsible-note {
  margin-top: 44px;
  padding: 18px 0;
  color: #a99eaa;
  font-size: .78rem;
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 22px;
  color: #857c86;
  font-size: .75rem;
}

.age-badge {
  display: inline-grid;
  width: 38px;
  height: 38px;
  margin-right: 8px;
  color: #ff6c78;
  font-weight: 950;
  border: 2px solid #e62a3d;
  border-radius: 50%;
  place-items: center;
}

.livechat-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 90;
  width: min(370px, calc(100vw - 30px));
  filter: drop-shadow(0 20px 34px rgba(0,0,0,.55));
  animation: chat-float 3.4s ease-in-out infinite;
}

.livechat-float::after {
  position: absolute;
  inset: 15% 8% 0;
  z-index: -1;
  content: "";
  background: rgba(255, 38, 60, .42);
  border-radius: 50%;
  filter: blur(20px);
  animation: glow 1.8s ease-in-out infinite;
}

.livechat-card {
  position: relative;
  display: block;
  min-height: 188px;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 15%, rgba(255, 215, 106, .2), transparent 28%),
    linear-gradient(132deg, rgba(61, 7, 20, .98), rgba(22, 9, 26, .98) 55%, rgba(92, 4, 22, .98));
  border: 1px solid rgba(255, 215, 106, .55);
  border-radius: 26px;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.14),
    inset 0 0 40px rgba(255,38,60,.08);
}

.livechat-card::before {
  position: absolute;
  inset: 8px;
  pointer-events: none;
  content: "";
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 19px;
}

.livechat-card::after {
  position: absolute;
  top: -90%;
  left: -20%;
  width: 18%;
  height: 280%;
  pointer-events: none;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.22), transparent);
  transform: rotate(24deg);
  animation: chat-shine 4.8s ease-in-out infinite;
}

.chat-hostess {
  position: absolute;
  bottom: -47px;
  left: -11px;
  z-index: 2;
  width: 168px;
  max-width: none;
  filter: drop-shadow(7px 9px 10px rgba(0,0,0,.38));
  transition: transform .25s ease;
}

.livechat-card:hover .chat-hostess {
  transform: translateY(-4px) scale(1.02);
}

.chat-content {
  position: relative;
  z-index: 3;
  display: flex;
  min-height: 188px;
  margin-left: 143px;
  padding: 15px 16px 14px 4px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.chat-logo {
  width: 92px;
  height: auto;
  margin-bottom: 7px;
  border-radius: 4px;
}

.chat-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 3px;
  color: #ffd76a;
  font-size: .61rem;
  font-weight: 950;
  letter-spacing: .13em;
}

.chat-eyebrow i {
  width: 7px;
  height: 7px;
  background: #52e99c;
  border-radius: 50%;
  box-shadow: 0 0 10px #52e99c;
  animation: chat-status 1.3s ease-in-out infinite;
}

.chat-title {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 950;
  line-height: 1.05;
  letter-spacing: -.025em;
  text-transform: uppercase;
}

.chat-copy {
  margin-top: 5px;
  color: #dacddc;
  font-size: .72rem;
  line-height: 1.35;
}

.chat-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 9px;
  padding: 7px 10px;
  color: #1b090e;
  font-size: .67rem;
  font-weight: 950;
  letter-spacing: .055em;
  background: linear-gradient(135deg, #fff1b1, #e8a527);
  border-radius: 9px;
  box-shadow: 0 7px 20px rgba(255, 215, 106, .18);
}

.chat-cta b {
  font-size: .9rem;
}

.chat-orbit {
  position: absolute;
  top: -52px;
  right: -55px;
  width: 170px;
  height: 170px;
  border: 1px solid rgba(255,215,106,.14);
  border-radius: 50%;
  box-shadow: 0 0 0 23px rgba(255,255,255,.025), 0 0 0 46px rgba(255,255,255,.015);
}

.chat-close {
  position: absolute;
  top: -10px;
  right: -9px;
  z-index: 6;
  display: grid;
  width: 31px;
  height: 31px;
  padding: 0;
  color: #fff;
  font-weight: 900;
  background: #12090e;
  border: 1px solid rgba(255,215,106,.55);
  border-radius: 50%;
  cursor: pointer;
  place-items: center;
}

.back-top {
  position: fixed;
  right: 22px;
  bottom: 235px;
  z-index: 80;
  display: grid;
  width: 42px;
  height: 42px;
  color: #13090d;
  font-weight: 950;
  background: var(--gold);
  border: 0;
  border-radius: 50%;
  box-shadow: 0 8px 28px rgba(255,215,106,.24);
  opacity: 0;
  pointer-events: none;
  cursor: pointer;
  transform: translateY(10px);
  transition: opacity .2s ease, transform .2s ease;
}

.back-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* Article pages */
.page-hero {
  position: relative;
  padding: 150px 0 76px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(7,6,11,.3), #100915),
    radial-gradient(circle at 72% 34%, rgba(255,38,60,.26), transparent 25%),
    radial-gradient(circle at 28% 20%, rgba(255,215,106,.1), transparent 22%);
}

.page-hero::after {
  position: absolute;
  right: 4vw;
  bottom: -30%;
  width: 380px;
  aspect-ratio: 1;
  pointer-events: none;
  content: "✦";
  color: rgba(255,215,106,.08);
  font-size: 28rem;
  line-height: 1;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
  color: #b9adba;
  font-size: .8rem;
}

.breadcrumbs a {
  color: var(--gold);
}

.breadcrumbs span::before {
  margin-right: 8px;
  color: #6c616d;
  content: "/";
}

.page-hero h1 {
  max-width: 850px;
  font-size: clamp(2.5rem, 6vw, 5rem);
}

.page-lead {
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.2rem);
}

.reading-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 24px;
  color: #aca1ad;
  font-size: .78rem;
  font-weight: 750;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  align-items: start;
  gap: 52px;
}

.article-body {
  min-width: 0;
}

.article-body h2 {
  margin-top: 54px;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.article-body h3 {
  margin-top: 34px;
}

.article-body p,
.article-body li {
  font-size: 1rem;
}

.article-body ul,
.article-body ol {
  padding-left: 1.25rem;
}

.article-body li + li {
  margin-top: 9px;
}

.callout {
  position: relative;
  margin: 34px 0;
  padding: 24px 26px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(255,215,106,.1), rgba(255,255,255,.035));
  border: 1px solid rgba(255,215,106,.25);
  border-left: 4px solid var(--gold);
  border-radius: 16px;
}

.callout strong {
  display: block;
  margin-bottom: 6px;
  color: var(--gold);
}

.callout p:last-child {
  margin-bottom: 0;
}

.comparison {
  width: 100%;
  margin: 30px 0;
  overflow: hidden;
  border-collapse: collapse;
  background: rgba(255,255,255,.035);
  border: 1px solid var(--line);
  border-radius: 16px;
}

.comparison th,
.comparison td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.comparison th {
  color: #14090e;
  background: linear-gradient(135deg, #ffe9a2, #d48a18);
}

.comparison td {
  color: var(--muted);
}

.article-aside {
  position: sticky;
  top: 108px;
  display: grid;
  gap: 16px;
}

.aside-card {
  padding: 22px;
  background: var(--panel);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 18px;
}

.aside-card h2 {
  margin-bottom: 14px;
  font-size: 1rem;
  letter-spacing: .04em;
}

.toc {
  display: grid;
  gap: 9px;
}

.toc a {
  color: #c8bcc9;
  font-size: .84rem;
}

.toc a:hover {
  color: var(--gold);
}

.aside-card .btn {
  width: 100%;
  margin-top: 10px;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.related-grid .article-card {
  min-height: 230px;
}

.search-box {
  display: flex;
  max-width: 640px;
  margin: 0 auto 34px;
  padding: 6px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 16px;
}

.search-box input {
  flex: 1;
  min-width: 0;
  padding: 12px 14px;
  color: #fff;
  background: transparent;
  border: 0;
  outline: 0;
}

.search-box input::placeholder {
  color: #8f8490;
}

.search-empty {
  display: none;
  color: var(--muted);
  text-align: center;
}

@keyframes halo-pulse {
  0%, 100% { transform: scale(.98); filter: hue-rotate(0deg); }
  50% { transform: scale(1.04); filter: hue-rotate(8deg); }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes angel-breathe {
  0%, 100% { transform: translate(-50%, -50%) scale(.98); filter: drop-shadow(0 0 10px rgba(255,255,255,.3)) drop-shadow(0 20px 34px rgba(76,39,91,.55)); }
  50% { transform: translate(-50%, -52%) scale(1.025); filter: drop-shadow(0 0 18px rgba(255,255,255,.48)) drop-shadow(0 24px 40px rgba(76,39,91,.68)); }
}

@keyframes chat-shine {
  0%, 58% { left: -28%; opacity: 0; }
  68% { opacity: 1; }
  86%, 100% { left: 125%; opacity: 0; }
}

@keyframes chat-status {
  0%, 100% { opacity: .55; transform: scale(.82); }
  50% { opacity: 1; transform: scale(1.12); }
}

@keyframes ticker {
  to { transform: translateX(-50%); }
}

@keyframes scroll-dot {
  0% { opacity: 0; transform: translateY(0); }
  25% { opacity: 1; }
  80% { opacity: 0; transform: translateY(22px); }
  100% { opacity: 0; }
}

@keyframes chat-float {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-10px) rotate(1deg); }
}

@keyframes glow {
  0%, 100% { opacity: .45; transform: scale(.9); }
  50% { opacity: .9; transform: scale(1.05); }
}

@media (max-width: 1080px) {
  .site-nav {
    gap: 2px;
  }

  .site-nav a {
    padding-inline: 8px;
    font-size: .76rem;
  }

  .nav-actions .btn-ghost {
    display: none;
  }

  .article-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }

  .footer-grid > :last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 860px) {
  .section {
    padding: 76px 0;
  }

  .nav-toggle {
    display: block;
    margin-left: auto;
  }

  .site-nav {
    position: fixed;
    top: 76px;
    right: 16px;
    left: 16px;
    display: grid;
    padding: 14px;
    background: rgba(14, 8, 17, .98);
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity .2s ease, transform .2s ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 12px;
  }

  .nav-actions .btn-small {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 125px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-copy {
    margin-inline: auto;
  }

  .hero-actions,
  .trust-row {
    justify-content: center;
  }

  .wing-stage {
    min-height: 390px;
  }

  .halo {
    width: min(65vw, 360px);
  }

  .hero-seal {
    width: min(43vw, 230px);
  }

  .angel-wings {
    width: min(92vw, 720px);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .card-grid,
  .related-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .split {
    grid-template-columns: 1fr;
  }

  .sticky-copy {
    position: static;
  }

  .cta-panel {
    grid-template-columns: 1fr;
  }

  .article-layout {
    grid-template-columns: 1fr;
  }

  .article-aside {
    position: static;
    grid-row: 1;
  }
}

@media (max-width: 620px) {
  :root {
    --container: min(100% - 22px, 1180px);
    --radius: 20px;
  }

  html {
    scroll-padding-top: 82px;
  }

  .brand img {
    width: 138px;
    height: auto;
  }

  .nav-wrap {
    min-height: 68px;
  }

  .site-nav {
    top: 68px;
  }

  .hero {
    padding-top: 110px;
  }

  .hero h1 {
    font-size: clamp(2.55rem, 14vw, 4.3rem);
  }

  .hero-actions .btn {
    width: 100%;
  }

  .wing-stage {
    min-height: 300px;
  }

  .angel-wings {
    width: min(118vw, 650px);
  }

  .hero-seal {
    width: 42vw;
    padding: 20px;
  }

  .seal-mark {
    font-size: 3rem;
  }

  .scroll-cue {
    display: none;
  }

  .stats-grid,
  .card-grid,
  .article-grid,
  .related-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid > :last-child {
    grid-column: auto;
  }

  .promo-shell {
    padding: 5px;
    border-radius: 18px;
  }

  .promo-slider {
    border-radius: 14px;
  }

  .promo-slide img {
    min-height: 178px;
    object-position: center;
  }

  .step {
    padding: 72px 20px 22px;
  }

  .comparison {
    display: block;
    overflow-x: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .livechat-float {
    right: 9px;
    bottom: 9px;
    width: min(292px, calc(100vw - 18px));
  }

  .livechat-card,
  .chat-content {
    min-height: 154px;
  }

  .chat-hostess {
    bottom: -39px;
    left: -8px;
    width: 134px;
  }

  .chat-content {
    margin-left: 112px;
    padding: 11px 10px 10px 2px;
  }

  .chat-logo {
    width: 76px;
    margin-bottom: 4px;
  }

  .chat-title {
    font-size: .96rem;
  }

  .chat-copy {
    max-width: 140px;
    font-size: .64rem;
  }

  .chat-cta {
    margin-top: 6px;
    padding: 6px 8px;
    font-size: .6rem;
  }

  .back-top {
    right: 12px;
    bottom: 180px;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
}
