:root {
  --bg: #050505;
  --panel: #0d0d0d;
  --panel-2: #15130d;
  --text: #ffffff;
  --muted: #c9c4b7;
  --gold: #ffd21f;
  --gold-2: #ffe86b;
  --gold-deep: #f2b900;
  --gold-rgb: 255, 210, 31;
  --gold-light-rgb: 255, 232, 107;
  --line: rgba(var(--gold-rgb), 0.34);
  --glow-line: rgba(var(--gold-rgb), 0.74);
  --glow-soft: 0 0 22px rgba(var(--gold-rgb), 0.18), 0 0 54px rgba(var(--gold-rgb), 0.12);
  --glow-strong: 0 0 0 1px rgba(var(--gold-rgb), 0.28), 0 0 28px rgba(var(--gold-rgb), 0.28), 0 0 72px rgba(var(--gold-rgb), 0.16);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
  --radius: 8px;
  --header-h: 76px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 15% 8%, rgba(var(--gold-rgb), 0.2), transparent 28rem),
    radial-gradient(circle at 84% 24%, rgba(var(--gold-light-rgb), 0.14), transparent 24rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 20rem);
  z-index: -1;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
p { color: var(--muted); margin: 0; }
h1, h2, h3 { letter-spacing: 0; line-height: 1.08; margin: 0; }
h1 { font-size: clamp(2.5rem, 7vw, 5.8rem); max-width: 12ch; }
h2 { font-size: clamp(2rem, 4vw, 3.8rem); }
h3 { font-size: 1.25rem; }
.text-yellow {
  color: var(--gold-2);
  text-shadow: 0 0 22px rgba(var(--gold-rgb), 0.34);
}

.container { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }
.section { padding: 104px 0; scroll-margin-top: var(--header-h); }
.center { display: flex; justify-content: center; margin-top: 34px; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  height: var(--header-h);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: center;
  padding: 0 max(20px, calc((100vw - 1160px) / 2));
  z-index: 30;
  background: rgba(5, 5, 5, 0.72);
  border-bottom: 1px solid rgba(var(--gold-rgb), 0.48);
  box-shadow: 0 0 34px rgba(var(--gold-rgb), 0.14);
  backdrop-filter: blur(18px);
}

.brand { display: inline-flex; align-items: center; gap: 12px; font-weight: 800; }
.brand-logo {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(var(--gold-rgb), 0.42);
  border-radius: 8px;
  background: #000;
  box-shadow: 0 0 28px rgba(var(--gold-rgb), 0.28);
}
.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 42%;
}
.brand-mark {
  width: 36px;
  height: 36px;
  display: inline-grid;
  place-items: center;
  color: #090909;
  background: linear-gradient(135deg, var(--gold-deep), var(--gold), var(--gold-2), #ffc400);
  border-radius: 7px;
  box-shadow: 0 0 34px rgba(var(--gold-rgb), 0.38);
}
.brand-mark.large { width: 88px; height: 88px; font-size: 2.4rem; }

.desktop-nav { justify-self: end; display: flex; align-items: center; gap: 24px; color: var(--muted); font-size: 0.95rem; }
.desktop-nav a, .site-footer nav a { transition: color 0.2s ease; }
.desktop-nav a:hover, .site-footer nav a:hover { color: var(--gold-2); }

.language-switcher {
  position: relative;
}
.language-button {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 0;
  border: 1px solid rgba(var(--gold-rgb), 0.58);
  border-radius: var(--radius);
  color: #fff4b2;
  background: rgba(var(--gold-rgb), 0.08);
  box-shadow: 0 0 18px rgba(var(--gold-rgb), 0.12);
  cursor: pointer;
  font-weight: 800;
  font: inherit;
}
.language-button::after {
  content: "▾";
  margin-left: 8px;
  color: var(--gold-2);
  font-size: 0.72rem;
}
.language-menu {
  position: fixed;
  top: calc(var(--header-h) - 6px);
  right: max(20px, calc((100vw - 1160px) / 2));
  z-index: 42;
  display: grid;
  min-width: 178px;
  padding: 8px;
  border: 1px solid rgba(var(--gold-rgb), 0.66);
  border-radius: var(--radius);
  background: rgba(5, 5, 5, 0.96);
  box-shadow: var(--shadow), 0 0 30px rgba(var(--gold-rgb), 0.16);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
  pointer-events: none;
}
.language-switcher.open .language-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
.language-switcher:hover .language-menu,
.language-switcher:focus-within .language-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
.language-menu a {
  padding: 9px 10px;
  border-radius: 6px;
  color: #f7f0dc;
  font-weight: 750;
}
.language-menu a:hover,
.language-menu a.active {
  color: #060606;
  background: var(--gold);
}
.mobile-language {
  display: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border: 1px solid rgba(var(--gold-light-rgb), 0.6);
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--gold-deep) 0%, var(--gold) 36%, var(--gold-2) 68%, #ffc400 100%);
  color: #080808;
  font-weight: 850;
  box-shadow: 0 14px 40px rgba(var(--gold-rgb), 0.26), inset 0 1px 0 rgba(255, 244, 196, 0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 18px 58px rgba(var(--gold-rgb), 0.4), inset 0 1px 0 rgba(255, 244, 196, 0.55); filter: saturate(1.08); }
.btn:active { transform: translateY(0); }
.btn-small { min-height: 42px; padding: 0 18px; font-size: 0.92rem; }
.btn-large { min-height: 56px; padding: 0 28px; }
.btn-secondary { background: rgba(255, 255, 255, 0.03); color: var(--text); border-color: var(--line); box-shadow: none; }
.btn-with-price {
  flex-direction: column;
  gap: 4px;
  padding-block: 8px;
  line-height: 1.05;
}
.btn-price {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 20px;
  padding: 3px 9px;
  border-radius: 999px;
  background: rgba(5, 5, 5, 0.88);
  color: var(--gold-2);
  font-size: 0.76rem;
  font-weight: 950;
  box-shadow: 0 0 18px rgba(var(--gold-rgb), 0.32);
}

.header-boost-cta {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  min-height: 52px;
  padding: 7px 18px 8px;
  overflow: hidden;
  border: 1px solid rgba(var(--gold-rgb), 0.92);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 232, 107, 0.98), rgba(255, 210, 31, 0.96) 54%, rgba(242, 185, 0, 0.98)),
    #ffd21f;
  color: #060606;
  box-shadow: 0 0 0 1px rgba(255, 244, 196, 0.26), 0 0 30px rgba(var(--gold-rgb), 0.42), 0 14px 42px rgba(0, 0, 0, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}
.header-boost-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0 28%, rgba(255, 255, 255, 0.42) 43%, transparent 58% 100%);
  transform: translateX(-110%);
  animation: cta-shine 3.6s ease-in-out infinite;
}
.header-boost-cta span,
.header-boost-cta strong {
  position: relative;
  z-index: 1;
  white-space: nowrap;
}
.header-boost-cta span {
  font-size: 0.68rem;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.header-boost-cta strong {
  margin-top: 4px;
  font-size: 0.92rem;
  line-height: 1;
  font-weight: 950;
}
.header-boost-cta:hover {
  transform: translateY(-2px);
  filter: saturate(1.08);
  box-shadow: 0 0 0 1px rgba(255, 244, 196, 0.36), 0 0 44px rgba(var(--gold-rgb), 0.58), 0 18px 52px rgba(0, 0, 0, 0.34);
}

@keyframes cta-shine {
  0%, 46% { transform: translateX(-110%); }
  72%, 100% { transform: translateX(110%); }
}

.menu-toggle, .mobile-nav { display: none; }

.hero { min-height: 100vh; display: flex; align-items: center; padding-top: 136px; overflow: hidden; }
.hero .container { width: min(1340px, calc(100% - 40px)); }
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(500px, 1.18fr);
  align-items: center;
  gap: clamp(28px, 4vw, 58px);
}
.hero-copy { position: relative; z-index: 2; }
.hero-copy h1 {
  max-width: 9.2ch;
  line-height: 0.82;
  font-size: clamp(3rem, 6vw, 5.65rem);
}
.eyebrow { color: var(--gold-2); text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.78rem; font-weight: 850; margin-bottom: 16px; }
.hero-copy .eyebrow {
  color: #ffea3d;
  text-shadow: 0 0 18px rgba(var(--gold-rgb), 0.48), 0 0 42px rgba(var(--gold-rgb), 0.2);
}
.hero-subtitle { max-width: 680px; margin-top: 22px; font-size: 1.13rem; }
.benefit-pills { display: flex; flex-wrap: wrap; gap: 10px; margin: 28px 0; }
.benefit-pills span, .trust-row span, .advantage-grid span, .tag-grid span {
  border: 1px solid rgba(var(--gold-rgb), 0.58);
  background: rgba(255, 255, 255, 0.035);
  color: #eee8d9;
  border-radius: 999px;
  padding: 9px 13px;
  font-size: 0.92rem;
  box-shadow: 0 0 18px rgba(var(--gold-rgb), 0.12);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.microcopy { margin-top: 14px; font-size: 0.95rem; }
.hero-visual {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border: 1px solid rgba(var(--gold-rgb), 0.78);
  border-radius: var(--radius);
  background: #050505;
  box-shadow: var(--glow-strong), 0 30px 86px rgba(0, 0, 0, 0.48);
}
.hero-visual img {
  width: 100%;
  aspect-ratio: 1.34 / 1;
  object-fit: cover;
  object-position: center;
}
.reward-proof-section {
  padding: 58px 0 66px;
  overflow: hidden;
  border-block: 1px solid rgba(var(--gold-rgb), 0.42);
  background:
    radial-gradient(circle at 80% 20%, rgba(var(--gold-rgb), 0.14), transparent 24rem),
    rgba(255, 255, 255, 0.012);
  box-shadow: inset 0 1px 0 rgba(255, 232, 107, 0.14), var(--glow-soft);
}
.reward-proof-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  align-items: center;
  gap: clamp(28px, 5vw, 70px);
}
.reward-proof-copy h2 {
  max-width: 10ch;
}
.reward-proof-copy p {
  max-width: 600px;
  margin-top: 18px;
  font-size: 1.06rem;
}
.reward-proof-copy small {
  display: block;
  max-width: 610px;
  margin-top: 16px;
  color: rgba(255, 244, 198, 0.72);
  font-size: 0.86rem;
  line-height: 1.45;
}
.reward-shot-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}
.reward-shot {
  flex: 0 1 clamp(150px, 13vw, 190px);
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(var(--gold-rgb), 0.74);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--glow-strong), 0 24px 70px rgba(0, 0, 0, 0.42);
}
.reward-shot img {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  object-position: top center;
}
.reward-shot-contain img {
  aspect-ratio: 1 / 1;
  object-fit: contain;
  background: #fff;
}
.reward-shot-offset {
  transform: translateY(26px);
  opacity: 0.92;
}
.video-showcase-section {
  padding: 76px 0 84px;
  overflow: hidden;
  border-block: 1px solid rgba(var(--gold-rgb), 0.48);
  background:
    radial-gradient(circle at 18% 0%, rgba(var(--gold-rgb), 0.14), transparent 28rem),
    rgba(255, 255, 255, 0.014);
  box-shadow: inset 0 1px 0 rgba(255, 232, 107, 0.18), inset 0 -1px 0 rgba(255, 232, 107, 0.12), var(--glow-soft);
}
.video-row {
  display: flex;
  width: max-content;
  overflow: visible;
  gap: 16px;
  padding: 4px 0 10px;
  animation: video-scroll 76s linear infinite;
  will-change: transform;
}
.video-card {
  flex: 0 0 clamp(178px, 16vw, 248px);
  overflow: hidden;
  border: 1px solid rgba(var(--gold-rgb), 0.72);
  border-radius: var(--radius);
  background: #050505;
  box-shadow: var(--glow-strong), 0 18px 54px rgba(0, 0, 0, 0.34);
}
.video-card video {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  background: #000;
}

@keyframes video-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.tools-marquee-section {
  padding: 42px 0 72px;
  overflow: hidden;
  border-block: 1px solid rgba(var(--gold-rgb), 0.46);
  background:
    linear-gradient(90deg, rgba(var(--gold-rgb), 0.08), transparent 24%, transparent 76%, rgba(var(--gold-rgb), 0.08)),
    rgba(255, 255, 255, 0.018);
  box-shadow: inset 0 1px 0 rgba(255, 232, 107, 0.16), inset 0 -1px 0 rgba(255, 232, 107, 0.12), var(--glow-soft);
}
.tools-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}
.tools-heading .eyebrow { margin-bottom: 8px; }
.tools-heading h2 {
  max-width: 760px;
  font-size: clamp(1.6rem, 3vw, 2.8rem);
}
.tools-marquee {
  position: relative;
  width: 100%;
}
.tools-marquee::before,
.tools-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: min(14vw, 180px);
  z-index: 2;
  pointer-events: none;
}
.tools-marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg), transparent);
}
.tools-marquee::after {
  right: 0;
  background: linear-gradient(270deg, var(--bg), transparent);
}
.tools-track {
  display: flex;
  width: max-content;
  gap: 14px;
  padding: 4px 14px;
  animation: tools-scroll 34s linear infinite;
}
.tools-marquee:hover .tools-track { animation-play-state: paused; }
.tool-card {
  flex: 0 0 auto;
  min-width: 188px;
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 14px 16px;
  border: 1px solid rgba(var(--gold-rgb), 0.66);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025)),
    #080808;
  box-shadow: var(--glow-soft), 0 16px 42px rgba(0, 0, 0, 0.22);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}
.tool-card strong {
  color: #f7f0df;
  font-size: 0.98rem;
  white-space: nowrap;
}
.tool-logo {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 244, 196, 0.2);
  border-radius: 10px;
  background: var(--logo-bg, #ffffff);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.38), 0 10px 24px rgba(0, 0, 0, 0.2);
}
.tool-logo img {
  width: 25px;
  height: 25px;
  object-fit: contain;
}

@keyframes tools-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.section-heading { max-width: 780px; margin-bottom: 42px; }
.section-heading p:not(.eyebrow) { margin-top: 16px; font-size: 1.05rem; }

.card-grid, .steps { display: grid; gap: 18px; }
.card-grid.six { grid-template-columns: repeat(3, 1fr); }
.feature-card, .step-card, .not-for, .brand-points article, .price-card, details {
  border: 1px solid rgba(var(--gold-rgb), 0.62);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025));
  box-shadow: var(--glow-soft), 0 18px 54px rgba(0, 0, 0, 0.22);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}
.feature-card, .step-card { padding: 26px; transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease; }
.feature-card:hover, .step-card:hover, details:hover, .brand-points article:hover, .tool-card:hover {
  transform: translateY(-5px);
  border-color: var(--glow-line);
  box-shadow: var(--glow-strong), 0 22px 60px rgba(0, 0, 0, 0.28);
}
.feature-card .icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 7px;
  background: rgba(var(--gold-rgb), 0.16);
  color: var(--gold-2);
}
.feature-card p, .step-card p { margin-top: 12px; }

.program-section { background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent); }
.program-list { display: grid; gap: 12px; }
details { padding: 0; overflow: hidden; }
summary { list-style: none; cursor: pointer; display: grid; grid-template-columns: 110px 1fr auto; gap: 18px; align-items: center; padding: 22px 24px; }
summary::-webkit-details-marker { display: none; }
summary span { color: var(--gold-2); font-weight: 850; }
summary em { color: #090909; background: var(--gold-2); border-radius: 999px; padding: 6px 10px; font-style: normal; font-size: 0.82rem; }
details p { padding: 0 24px 22px 152px; }

.split-grid, .brand-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 44px; align-items: start; }
.check-list { columns: 2; list-style: none; margin: 0; padding: 0; }
.check-list li { break-inside: avoid; position: relative; padding: 0 0 14px 30px; color: #f3efe4; }
.check-list li::before { content: "\2713"; position: absolute; left: 0; color: var(--gold-2); font-weight: 900; }
.check-list.compact { columns: 2; margin: 28px 0; text-align: left; }

.tag-grid, .advantage-grid { display: flex; flex-wrap: wrap; gap: 12px; }
.not-for { margin-top: 28px; padding: 26px; }
.not-for ul { color: var(--muted); margin: 14px 0 0; padding-left: 20px; }
.steps { grid-template-columns: repeat(3, 1fr); }
.step-card span { color: var(--gold-2); font-size: 3rem; font-weight: 900; line-height: 1; }
.premium-band { background: rgba(var(--gold-rgb), 0.06); border-block: 1px solid rgba(var(--gold-rgb), 0.22); }
.advantage-grid span { border-radius: var(--radius); }

.creation-marquee {
  position: relative;
  display: grid;
  gap: 18px;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
}
.creation-marquee::before,
.creation-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: min(14vw, 180px);
  z-index: 2;
  pointer-events: none;
}
.creation-marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg), transparent);
}
.creation-marquee::after {
  right: 0;
  background: linear-gradient(270deg, var(--bg), transparent);
}
.creation-track {
  display: flex;
  width: max-content;
  gap: 16px;
  padding-inline: 18px;
  animation: creation-scroll 54s linear infinite;
}
.creation-track.reverse {
  animation-direction: reverse;
  animation-duration: 48s;
}
.creation-marquee:hover .creation-track { animation-play-state: paused; }
.creation-track figure {
  flex: 0 0 auto;
  width: clamp(180px, 18vw, 280px);
  aspect-ratio: 9 / 16;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(var(--gold-rgb), 0.7);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
  box-shadow: var(--glow-strong), 0 18px 54px rgba(0, 0, 0, 0.32);
}
.creation-track img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.creation-track figure:hover img { transform: scale(1.04); }
.disclaimer { margin-top: 18px; font-size: 0.94rem; }

@keyframes creation-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.brand-points {
  display: grid;
  gap: 12px;
}
.brand-points article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 4px 14px;
  padding: 18px;
}
.brand-points span {
  grid-row: span 2;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 7px;
  background: linear-gradient(135deg, var(--gold-deep) 0%, var(--gold) 36%, var(--gold-2) 68%, #ffc400 100%);
  color: #080808;
  font-weight: 950;
}
.brand-points strong {
  color: var(--text);
  line-height: 1.2;
}
.brand-points p {
  font-size: 0.95rem;
}

.offer-section { padding-top: 60px; }
.price-card {
  width: min(760px, 100%);
  margin: 0 auto;
  padding: 42px;
  text-align: center;
  border-color: rgba(var(--gold-rgb), 0.9);
  background: linear-gradient(180deg, rgba(var(--gold-rgb), 0.22), rgba(255, 255, 255, 0.035));
  box-shadow: var(--glow-strong), 0 26px 80px rgba(0, 0, 0, 0.36);
}
.price { margin-top: 18px; font-size: clamp(3rem, 8vw, 5.4rem); line-height: 1; font-weight: 950; color: var(--gold-2); }
.trust-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 20px; }

.faq-list { display: grid; gap: 12px; }
.faq-list summary { display: block; padding: 20px 22px; font-weight: 800; }
.faq-list p { padding: 0 22px 20px; }
.faq-list a { color: var(--gold-2); text-decoration: underline; }

.final-cta {
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(var(--gold-rgb), 0.24), transparent 34rem),
    #050505;
}
.final-cta p { margin: 18px auto 26px; max-width: 680px; }

.site-footer { border-top: 1px solid rgba(var(--gold-rgb), 0.26); padding: 42px 0 26px; background: #030303; }
.footer-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 30px; align-items: start; }
.site-footer nav { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 12px 22px; color: var(--muted); }
.site-footer p { margin-top: 14px; }
.copyright { text-align: center; margin-top: 32px; font-size: 0.9rem; }

.mobile-sticky-cta { display: none; }
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

.thanks-page {
  min-height: 100vh;
  overflow-x: hidden;
}
.thanks-header {
  grid-template-columns: auto;
}
.thanks-main {
  min-height: 100vh;
}
.thanks-hero {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 124px 20px 58px;
  background:
    radial-gradient(circle at 50% 18%, rgba(var(--gold-rgb), 0.28), transparent 26rem),
    radial-gradient(circle at 18% 72%, rgba(var(--gold-light-rgb), 0.14), transparent 24rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), transparent 44%);
}
.thanks-card {
  position: relative;
  width: min(900px, 100%);
  padding: clamp(30px, 5vw, 58px);
  overflow: hidden;
  border: 1px solid rgba(var(--gold-rgb), 0.82);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(var(--gold-rgb), 0.12), rgba(255, 255, 255, 0.035)),
    rgba(5, 5, 5, 0.92);
  box-shadow: var(--glow-strong), 0 34px 100px rgba(0, 0, 0, 0.56);
  text-align: center;
}
.thanks-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  pointer-events: none;
  background: linear-gradient(110deg, transparent 0 30%, rgba(255, 232, 107, 0.16) 44%, transparent 58% 100%);
}
.thanks-badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid rgba(var(--gold-rgb), 0.68);
  border-radius: 999px;
  background: rgba(var(--gold-rgb), 0.12);
  color: var(--gold-2);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: var(--glow-soft);
}
.thanks-check {
  position: relative;
  width: 86px;
  height: 86px;
  display: grid;
  place-items: center;
  margin: 26px auto 22px;
  border: 1px solid rgba(var(--gold-rgb), 0.9);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-deep), var(--gold), var(--gold-2));
  color: #080808;
  font-size: 3.2rem;
  font-weight: 950;
  line-height: 1;
  box-shadow: 0 0 42px rgba(var(--gold-rgb), 0.44), 0 18px 48px rgba(0, 0, 0, 0.34);
}
.thanks-card h1 {
  position: relative;
  max-width: none;
  font-size: clamp(2.45rem, 6vw, 5rem);
}
.thanks-lead {
  position: relative;
  max-width: 720px;
  margin: 20px auto 0;
  color: #fff4c6;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}
.access-code {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 14px auto 0;
  padding: 12px 18px;
  border: 1px solid rgba(var(--gold-rgb), 0.78);
  border-radius: 8px;
  background: rgba(var(--gold-rgb), 0.16);
  color: var(--gold);
  font-size: clamp(1.45rem, 4vw, 2.15rem);
  letter-spacing: 0;
  box-shadow: var(--glow-soft);
}
.thanks-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 34px;
  text-align: left;
}
.thanks-steps article,
.thanks-note {
  border: 1px solid rgba(var(--gold-rgb), 0.58);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
  box-shadow: var(--glow-soft);
}
.thanks-steps article {
  padding: 20px;
}
.thanks-steps span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  border-radius: 7px;
  background: linear-gradient(135deg, var(--gold-deep), var(--gold), var(--gold-2));
  color: #080808;
  font-weight: 950;
}
.thanks-steps strong,
.thanks-note strong {
  color: var(--text);
}
.thanks-steps p,
.thanks-note p {
  margin-top: 8px;
  font-size: 0.95rem;
}
.thanks-note {
  position: relative;
  margin-top: 16px;
  padding: 18px 20px;
  text-align: left;
}
.thanks-actions {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

.login-page {
  min-height: 100vh;
  overflow-x: hidden;
}
.login-header {
  grid-template-columns: auto 1fr;
}
.login-main {
  min-height: 100vh;
}
.login-hero {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 126px 20px 64px;
  background:
    radial-gradient(circle at 24% 18%, rgba(var(--gold-rgb), 0.22), transparent 25rem),
    radial-gradient(circle at 78% 78%, rgba(var(--gold-light-rgb), 0.16), transparent 24rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), transparent 42%);
}
.login-shell {
  width: min(1120px, 100%);
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 28px;
  align-items: center;
}
.login-copy {
  padding: clamp(6px, 2vw, 24px);
}
.login-copy h1 {
  max-width: 10ch;
  font-size: clamp(3.4rem, 8vw, 6.6rem);
  line-height: 0.92;
  overflow-wrap: anywhere;
}
.login-copy p {
  max-width: 580px;
  margin-top: 22px;
  color: #fff4c6;
  font-size: 1.08rem;
}
.access-highlight {
  display: grid;
  gap: 6px;
  max-width: 520px;
  margin-top: 28px;
  padding: 18px 20px;
  border: 1px solid rgba(var(--gold-rgb), 0.7);
  border-radius: var(--radius);
  background: rgba(var(--gold-rgb), 0.08);
  box-shadow: var(--glow-soft);
}
.access-highlight strong {
  color: var(--gold-2);
}
.access-highlight span {
  color: var(--muted);
}
.login-card {
  position: relative;
  display: grid;
  gap: 16px;
  padding: clamp(26px, 4vw, 42px);
  overflow: hidden;
  border: 1px solid rgba(var(--gold-rgb), 0.82);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(var(--gold-rgb), 0.14), rgba(255, 255, 255, 0.04)),
    rgba(5, 5, 5, 0.94);
  box-shadow: var(--glow-strong), 0 34px 100px rgba(0, 0, 0, 0.52);
}
.login-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  pointer-events: none;
  background: linear-gradient(110deg, transparent 0 28%, rgba(255, 232, 107, 0.14) 43%, transparent 58% 100%);
}
.form-head,
.login-card label,
.login-card .btn,
.login-card .microcopy,
.support-link,
.login-message {
  position: relative;
}
.form-head {
  display: grid;
  gap: 6px;
  margin-bottom: 6px;
}
.form-head span {
  color: var(--gold-2);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.form-head strong {
  color: var(--text);
  font-size: clamp(1.55rem, 3vw, 2.3rem);
  line-height: 1.08;
}
.login-card label {
  display: grid;
  gap: 8px;
  color: #fff7d1;
  font-weight: 800;
}
.login-card input,
.login-card textarea {
  width: 100%;
  min-height: 54px;
  padding: 0 16px;
  border: 1px solid rgba(var(--gold-rgb), 0.58);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.62);
  color: var(--text);
  font: inherit;
  outline: none;
  box-shadow: inset 0 0 0 1px rgba(255, 232, 107, 0.06), 0 0 18px rgba(var(--gold-rgb), 0.09);
}
.login-card textarea {
  min-height: 150px;
  padding: 14px 16px;
  resize: vertical;
}
.login-card input:focus,
.login-card textarea:focus {
  border-color: rgba(var(--gold-rgb), 0.92);
  box-shadow: var(--glow-soft);
}
.login-card input::placeholder,
.login-card textarea::placeholder {
  color: rgba(255, 255, 255, 0.38);
}
.login-message {
  display: none;
  margin-top: 2px;
  padding: 12px 14px;
  border: 1px solid rgba(var(--gold-rgb), 0.58);
  border-radius: var(--radius);
  background: rgba(var(--gold-rgb), 0.08);
  color: #fff4c6;
  font-size: 0.95rem;
}
.login-message.visible {
  display: block;
}
.support-link {
  color: var(--gold-2);
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.hidden-field {
  display: none;
}
.training-space {
  display: none;
  padding: 96px 0 110px;
  background:
    radial-gradient(circle at 16% 12%, rgba(var(--gold-rgb), 0.18), transparent 24rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0));
}
.login-page.is-connected .training-space {
  display: block;
}
.login-page.is-connected .login-hero {
  display: none;
}
.training-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 1fr);
  gap: 22px;
  margin-top: 34px;
}
.module-list {
  display: grid;
  gap: 10px;
}
.module-button {
  display: grid;
  gap: 5px;
  width: 100%;
  padding: 16px;
  border: 1px solid rgba(var(--gold-rgb), 0.42);
  border-radius: var(--radius);
  background: rgba(5, 5, 5, 0.72);
  color: var(--text);
  text-align: left;
  cursor: pointer;
  box-shadow: 0 0 18px rgba(var(--gold-rgb), 0.08);
}
.module-button span {
  color: var(--gold-2);
  font-size: 0.74rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.module-button strong {
  font-size: 1rem;
}
.module-button.active,
.module-button:hover {
  border-color: rgba(var(--gold-rgb), 0.92);
  background: rgba(var(--gold-rgb), 0.12);
  box-shadow: var(--glow-soft);
}
.training-player-card {
  scroll-margin-top: 96px;
  display: grid;
  gap: 16px;
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid rgba(var(--gold-rgb), 0.82);
  border-radius: var(--radius);
  background: rgba(5, 5, 5, 0.86);
  box-shadow: var(--glow-strong), var(--shadow);
}
.training-player-head {
  display: grid;
  gap: 6px;
}
.training-player-head span {
  color: var(--gold-2);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.training-player-head strong {
  font-size: clamp(1.35rem, 2.6vw, 2rem);
}
.training-video {
  width: 100%;
  max-height: 68vh;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(var(--gold-rgb), 0.46);
  border-radius: var(--radius);
  background: #000;
  box-shadow: 0 0 26px rgba(var(--gold-rgb), 0.16);
}
.training-description {
  margin: 0;
  padding: 16px 18px;
  border: 1px solid rgba(var(--gold-rgb), 0.36);
  border-radius: 8px;
  background: rgba(var(--gold-rgb), 0.08);
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

@media (max-width: 980px) {
  :root { --header-h: 76px; }
  .site-header {
    height: var(--header-h);
    grid-template-columns: auto minmax(0, 1fr);
    gap: 10px;
    align-content: stretch;
    align-items: center;
    padding: 10px 20px;
  }
  .brand { justify-self: start; white-space: nowrap; }
  .desktop-nav {
    justify-self: stretch;
    display: flex;
    gap: 8px;
    min-width: 0;
    overflow-x: auto;
    padding: 7px;
    border: 1px solid rgba(var(--gold-rgb), 0.72);
    border-radius: var(--radius);
    background: rgba(var(--gold-rgb), 0.08);
    box-shadow: inset 0 0 0 1px rgba(255, 232, 107, 0.12), 0 0 24px rgba(var(--gold-rgb), 0.12);
    scrollbar-width: none;
  }
  .desktop-nav::-webkit-scrollbar { display: none; }
  .desktop-nav a {
    flex: 0 0 auto;
    padding: 6px 9px;
    border: 1px solid rgba(var(--gold-rgb), 0.26);
    border-radius: 7px;
    background: rgba(5, 5, 5, 0.58);
    color: #fff4b2;
    font-size: 0.86rem;
    font-weight: 750;
  }
  .language-switcher {
    flex: 0 0 auto;
  }
  .language-button {
    min-height: 33px;
    padding: 0 10px;
    font-size: 0.86rem;
  }
  .site-header > .btn-small, .menu-toggle { display: none; }
  .mobile-nav {
    position: absolute;
    top: var(--header-h);
    left: 20px;
    right: 20px;
    display: none;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(5, 5, 5, 0.96);
    box-shadow: var(--shadow);
  }
  .mobile-nav.open { display: grid; gap: 14px; }
  .mobile-language {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding-top: 4px;
  }
  .mobile-language span {
    flex-basis: 100%;
    color: var(--gold-2);
    font-weight: 850;
  }
  .mobile-language a {
    min-width: 46px;
    padding: 7px 10px;
    border: 1px solid rgba(var(--gold-rgb), 0.58);
    border-radius: 7px;
    color: #fff4b2;
    text-align: center;
    background: rgba(var(--gold-rgb), 0.08);
  }
  .hero-grid, .split-grid, .brand-grid, .footer-grid { grid-template-columns: 1fr; }
  h1 { max-width: 13ch; }
  .hero-copy h1 { max-width: 9.2ch; line-height: 0.84; }
  .hero-visual { width: min(100%, 720px); margin: 0 auto; }
  .reward-proof-grid {
    grid-template-columns: 1fr;
  }
  .reward-proof-copy h2 {
    max-width: 14ch;
  }
  .reward-shot-row {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding: 4px 4px 34px;
    scrollbar-width: none;
  }
  .reward-shot-row::-webkit-scrollbar { display: none; }
  .reward-shot {
    flex-basis: min(230px, 48vw);
  }
  .card-grid.six, .steps { grid-template-columns: 1fr 1fr; }
  details p { padding-left: 24px; }
  summary { grid-template-columns: 1fr; gap: 8px; }
  .footer-grid nav { justify-content: flex-start; }
  .tools-heading { display: block; }
  .tool-card { min-width: 168px; }
  .video-card {
    flex: 0 0 min(220px, 66vw);
  }
  .thanks-steps { grid-template-columns: 1fr; }
  .login-shell { grid-template-columns: 1fr; }
  .login-copy h1 { max-width: none; }
  .training-layout { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  :root { --header-h: 74px; }
  .container { width: min(100% - 28px, 1160px); }
  .section { padding: 72px 0; }
  .site-header { gap: 10px; padding: 8px 14px; }
  .brand { gap: 8px; font-size: 0.86rem; }
  .brand-logo { width: 38px; height: 38px; }
  .desktop-nav { padding: 6px; }
  .desktop-nav a { padding: 6px 8px; font-size: 0.8rem; }
  .hero { padding-top: 116px; }
  .hero .container { width: min(100% - 28px, 1160px); }
  .hero-copy h1 { max-width: 9ch; line-height: 0.88; }
  .hero-visual img { aspect-ratio: 1 / 1; }
  .reward-proof-section { padding: 48px 0 52px; }
  .reward-shot {
    flex-basis: min(190px, 64vw);
  }
  .reward-shot-offset {
    transform: none;
  }
  .hero-actions, .btn-large { width: 100%; }
  .btn { width: 100%; }
  .card-grid.six, .steps { grid-template-columns: 1fr; }
  .check-list, .check-list.compact { columns: 1; }
  .price-card { padding: 30px 20px; }
  .mobile-sticky-cta {
    position: fixed;
    left: 14px;
    right: 14px;
    bottom: 14px;
    z-index: 35;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    border-radius: var(--radius);
    background: linear-gradient(135deg, var(--gold-deep) 0%, var(--gold) 36%, var(--gold-2) 68%, #ffc400 100%);
    color: #080808;
    font-weight: 900;
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.45);
  }
  .site-footer { padding-bottom: 88px; }
  .video-row.reveal {
    opacity: 1;
    transform: none;
  }
  .video-row {
    gap: 12px;
    min-height: 306px;
    animation-duration: 48s;
  }
  .video-card {
    flex-basis: min(172px, 54vw);
  }
  .video-card video {
    min-height: 306px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .tools-track {
    width: auto;
    flex-wrap: wrap;
    justify-content: center;
    animation: none;
  }
  .tools-track .tool-card:nth-child(n + 13) { display: none; }
  .video-row {
    width: auto;
    flex-wrap: wrap;
    justify-content: center;
    animation: none;
  }
  .video-row .video-card:nth-child(n + 10) { display: none; }
  .creation-track {
    width: auto;
    flex-wrap: wrap;
    justify-content: center;
    animation: none;
  }
  .creation-track figure:nth-child(n + 9) { display: none; }
}

.blog-hero {
  padding-top: 150px;
  background:
    radial-gradient(circle at 18% 10%, rgba(255, 213, 36, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(255, 213, 36, 0.08), transparent 58%);
}

.blog-hero .container {
  max-width: 980px;
}

.blog-hero h1 {
  max-width: 980px;
  margin: 12px 0 20px;
  font-size: clamp(2.8rem, 7vw, 6.5rem);
  line-height: 0.95;
}

.blog-hero p:not(.eyebrow) {
  max-width: 840px;
  color: var(--muted);
  font-size: clamp(1.02rem, 2vw, 1.2rem);
}

.blog-section {
  padding-top: 28px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.blog-card {
  border: 1px solid rgba(255, 213, 36, 0.42);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255, 213, 36, 0.08), rgba(255, 255, 255, 0.03));
  box-shadow: 0 0 34px rgba(255, 213, 36, 0.08);
  padding: 28px;
}

.blog-card h2 {
  margin: 10px 0 16px;
  font-size: clamp(1.55rem, 3vw, 2.2rem);
  line-height: 1.08;
}

.blog-card p {
  color: var(--muted);
}

.blog-card p + p {
  margin-top: 14px;
}

.blog-card a,
.seo-content a {
  color: var(--gold);
  font-weight: 800;
}

.seo-article-hero h1 {
  max-width: 1050px;
}

.seo-article {
  padding-top: 30px;
}

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

.seo-content,
.seo-side-card,
.seo-highlight {
  border: 1px solid rgba(255, 213, 36, 0.42);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255, 213, 36, 0.08), rgba(255, 255, 255, 0.03));
  box-shadow: 0 0 34px rgba(255, 213, 36, 0.08);
}

.seo-content {
  padding: clamp(24px, 4vw, 42px);
}

.seo-content h2 {
  margin: 34px 0 14px;
  font-size: clamp(1.45rem, 3vw, 2.25rem);
  line-height: 1.08;
}

.seo-content h2:first-child {
  margin-top: 0;
}

.seo-content p {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.75;
}

.seo-content p + p {
  margin-top: 14px;
}

.seo-highlight {
  margin-top: 34px;
  padding: clamp(22px, 4vw, 32px);
}

.seo-side-card {
  position: sticky;
  top: 118px;
  padding: 24px;
}

.seo-side-card h2 {
  margin: 10px 0 18px;
  font-size: 1.5rem;
}

.seo-side-card ul {
  display: grid;
  gap: 12px;
  padding-left: 18px;
  color: var(--muted);
}

@media (max-width: 780px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .blog-hero {
    padding-top: 118px;
  }

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

  .seo-side-card {
    position: static;
  }
}
