:root {
  --bg: #090806;
  --bg-soft: #18100d;
  --paper: #f2eadf;
  --paper-2: #dfcfba;
  --ink: #1b1510;
  --muted: #736659;
  --line: rgba(255, 255, 255, 0.14);
  --fire: #ff7a1a;
  --ember: #f0422d;
  --gold: #f6c350;
  --acid: #b7ff5a;
  --violet: #6f5cff;
  --moss: #596d4c;
  --sky: #7fa8b8;
  --radius: 8px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.28);

  /* Layout container system.
     --page-x is the base side gutter (unchanged on phones/laptops).
     --gutter floors at --page-x, then grows on wide screens so that section
     CONTENT never exceeds --container while section BACKGROUNDS stay full-bleed.
     Implemented as horizontal padding, so it works for both grid and block sections. */
  --container: 1320px;
  --page-x: clamp(18px, 5vw, 72px);
  --gutter: max(var(--page-x), calc((100% - var(--container)) / 2));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  overflow-x: hidden;
  font-family: Manrope, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 8%, rgba(111, 92, 255, 0.14), transparent 22%),
    radial-gradient(circle at 90% 14%, rgba(255, 122, 26, 0.12), transparent 20%),
    var(--bg);
  letter-spacing: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.22;
  background:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: linear-gradient(180deg, transparent, #000 12%, #000 82%, transparent);
}

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

/* <picture> is only a format-switch wrapper — keep it out of the box tree so the
   inner <img> still participates in its container's layout exactly as before. */
picture {
  display: contents;
}

/* Keyboard accessibility: theme-aware focus ring (mouse users unaffected via :focus-visible). */
:where(a, button, summary, [tabindex]):focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
  border-radius: 6px;
}

.button:focus-visible {
  outline-color: #fff8eb;
  box-shadow: 0 0 0 5px rgba(246, 195, 80, 0.35);
}

/* Skip-to-content link: off-screen until focused. */
.skip-link {
  position: fixed;
  left: 14px;
  top: -64px;
  z-index: 100;
  padding: 10px 16px;
  color: #1a100a;
  font-weight: 800;
  background: var(--gold);
  border-radius: var(--radius);
  transition: top 160ms ease;
}

.skip-link:focus-visible {
  top: 14px;
  outline: 3px solid #fff8eb;
  outline-offset: 2px;
}

/* Fixed header offset for in-page anchor jumps (#campfire, #gifts, #og, #faq). */
:where(#top, [id]) {
  scroll-margin-top: 88px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 14px var(--gutter);
  color: #fff8eb;
  /* Near-opaque bg instead of backdrop-filter: a fixed backdrop-filter re-blurs
     the whole page behind the header on every scroll frame (main scroll-jank cause). */
  background: rgba(10, 8, 7, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transform: translateZ(0);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: Unbounded, Manrope, sans-serif;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  color: #1a100a;
  background: linear-gradient(135deg, var(--gold), var(--fire));
  border-radius: 7px;
}

.header-nav {
  display: flex;
  justify-content: center;
  gap: 22px;
  color: rgba(255, 248, 235, 0.78);
  font-size: 14px;
}

.header-nav a:hover,
.inline-link:hover {
  color: var(--gold);
}

.header-cta {
  padding: 10px 16px;
  font-weight: 700;
  color: #1a100a;
  background: linear-gradient(135deg, var(--gold), var(--acid));
  border-radius: var(--radius);
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.header-cta:hover {
  transform: translateY(-2px);
  filter: saturate(1.18);
  box-shadow: 0 12px 32px rgba(246, 195, 80, 0.22);
}

.section-dark {
  position: relative;
  color: #fff8eb;
  background: var(--bg);
}

.section-light {
  position: relative;
  color: var(--ink);
  background: var(--paper);
}

.section-dark::after,
.section-light::after {
  content: "";
  position: absolute;
  left: var(--gutter);
  right: var(--gutter);
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 122, 26, 0.52), rgba(111, 92, 255, 0.42), transparent);
  pointer-events: none;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-content: end;
  padding: 120px var(--gutter) 34px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 74%, rgba(255, 112, 24, 0.22), transparent 18%),
    radial-gradient(circle at 50% 90%, rgba(255, 199, 84, 0.12), transparent 28%),
    radial-gradient(circle at 16% 28%, rgba(127, 168, 184, 0.14), transparent 22%),
    radial-gradient(circle at 78% 24%, rgba(111, 92, 255, 0.18), transparent 20%),
    linear-gradient(180deg, rgba(8, 7, 6, 0.45), rgba(8, 7, 6, 0.94));
}

.hero-bg-note,
.creator-bg-note {
  position: absolute;
  inset: 88px var(--gutter) auto;
  min-height: clamp(300px, 33vw, 430px);
  display: grid;
  place-items: center;
  padding: 24px;
  color: rgba(255, 248, 235, 0.28);
  border: 1px solid rgba(255, 248, 235, 0.14);
  border-radius: var(--radius);
  /* url() fallback first; image-set (avif/webp) overrides where supported — hero bg 284KB -> ~27KB */
  background:
    linear-gradient(180deg, rgba(9, 8, 6, 0.04), rgba(9, 8, 6, 0.62)),
    linear-gradient(90deg, rgba(9, 8, 6, 0.18), transparent 28%, transparent 72%, rgba(9, 8, 6, 0.22)),
    url("./assets/hero-campfire.png") center / cover no-repeat;
  background:
    linear-gradient(180deg, rgba(9, 8, 6, 0.04), rgba(9, 8, 6, 0.62)),
    linear-gradient(90deg, rgba(9, 8, 6, 0.18), transparent 28%, transparent 72%, rgba(9, 8, 6, 0.22)),
    image-set(
      url("./assets/opt/hero-campfire.avif") type("image/avif"),
      url("./assets/opt/hero-campfire.webp") type("image/webp"),
      url("./assets/hero-campfire.png") type("image/png")
    ) center / cover no-repeat;
  image-rendering: pixelated;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.04),
    0 0 70px rgba(255, 122, 26, 0.12);
}

.hero-bg-note::before,
.proof-visual::before,
.illustration-frame::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(246, 195, 80, 0.18);
  border-radius: 6px;
  pointer-events: none;
}

.hero-bg-note::before {
  content: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 980px;
}

.hero-orbit {
  position: absolute;
  z-index: 1;
  display: grid;
  place-items: center;
  width: clamp(120px, 15vw, 210px);
  aspect-ratio: 1;
  padding: 18px;
  color: rgba(255, 248, 235, 0.22);
  text-align: center;
  font-size: 13px;
  border: 1px dashed rgba(255, 248, 235, 0.14);
  background: rgba(255, 255, 255, 0.025);
  backdrop-filter: blur(8px);
  box-shadow: 0 0 34px rgba(111, 92, 255, 0.1);
}

.hero-orbit.one {
  top: 18%;
  left: 8%;
  border-radius: 50%;
  transform: rotate(-9deg);
}

.hero-orbit.two {
  right: 12%;
  top: 23%;
  border-radius: 8px;
  transform: rotate(8deg);
}

.hero-orbit.three {
  right: 24%;
  bottom: 33%;
  width: clamp(100px, 12vw, 160px);
  border-radius: 50% 50% 8px 8px;
  transform: rotate(-4deg);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-family: Unbounded, Manrope, sans-serif;
  font-size: clamp(15px, 1.25vw, 18px);
  font-weight: 900;
  line-height: 1.25;
  text-transform: uppercase;
  text-shadow: 0 0 22px rgba(246, 195, 80, 0.18);
}

.section-light .eyebrow,
.eyebrow.dark {
  color: #6b3b00;
  text-shadow: none;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: Unbounded, Manrope, sans-serif;
}

h1 {
  margin-bottom: 18px;
  max-width: 760px;
  font-size: clamp(58px, 13vw, 168px);
  line-height: 0.84;
  letter-spacing: 0;
  text-shadow: 0 0 38px rgba(255, 138, 34, 0.26);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(32px, 4.8vw, 68px);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 22px;
  line-height: 1.1;
}

.hero-lead {
  max-width: 540px;
  color: rgba(255, 248, 235, 0.84);
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 700;
  line-height: 1.2;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  border: 0;
  border-radius: var(--radius);
  font-weight: 800;
  cursor: pointer;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    filter 180ms ease,
    background 180ms ease;
}

.button:hover {
  transform: translateY(-3px);
  filter: saturate(1.16) brightness(1.05);
}

.button:active {
  transform: translateY(0);
}

.button-primary {
  color: #1a100a;
  background: linear-gradient(135deg, var(--gold), var(--fire));
  box-shadow: 0 14px 34px rgba(255, 122, 26, 0.24);
}

.button-fire {
  color: #fff8eb;
  background: linear-gradient(135deg, var(--ember), #b825ff 140%);
  box-shadow: 0 14px 34px rgba(240, 66, 45, 0.28);
}

.button-primary:hover,
.button-fire:hover {
  box-shadow:
    0 18px 42px rgba(255, 122, 26, 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.18) inset;
}

.button-ghost {
  color: #fff8eb;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(100, 182, 200, 0.13));
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.live-strip {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 64px;
}

.live-strip div {
  position: relative;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.05)),
    rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.live-strip div::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, transparent 0 28%, rgba(255, 255, 255, 0.12) 42%, transparent 58%);
  transform: translateX(-120%);
  transition: transform 500ms ease;
}

.live-strip div:hover::before {
  transform: translateX(120%);
}

.metric {
  display: block;
  margin-bottom: 5px;
  color: var(--gold);
  font-size: 26px;
  font-weight: 800;
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(280px, 0.7fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
  padding: clamp(72px, 10vw, 130px) var(--gutter);
}

.intro {
  margin-top: -1px;
  padding-top: clamp(86px, 11vw, 150px);
  background:
    radial-gradient(circle at 12% 22%, rgba(255, 122, 26, 0.18), transparent 18%),
    radial-gradient(circle at 86% 14%, rgba(111, 92, 255, 0.14), transparent 20%),
    linear-gradient(160deg, #24150e 0 43%, #eadcc8 43% 100%);
}

/* The intro eyebrow sits on the section's DARK top, so the default dark-brown
   .eyebrow.dark colour is invisible — give it the warm gold used on dark sections. */
.intro .eyebrow {
  color: var(--gold);
  text-shadow: 0 0 22px rgba(246, 195, 80, 0.22);
}

.angled {
  position: relative;
  overflow: hidden;
}

.angled::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(111deg, rgba(89, 109, 76, 0.12) 0 40%, transparent 40%),
    radial-gradient(circle at 82% 20%, rgba(255, 138, 34, 0.16), transparent 18%);
  pointer-events: none;
}

.intro::after,
.activities::before,
.roadmap::before {
  content: "TOTEMS / FIRE / GIFTS / OG";
  position: absolute;
  left: var(--gutter);
  right: var(--gutter);
  top: 22px;
  color: rgba(255, 248, 235, 0.1);
  font-family: Unbounded, Manrope, sans-serif;
  font-size: clamp(18px, 3vw, 44px);
  font-weight: 800;
  pointer-events: none;
}

.intro .section-copy {
  max-width: 720px;
  padding: clamp(20px, 3vw, 34px);
  border: 1px solid rgba(255, 248, 235, 0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 248, 237, 0.14), rgba(33, 20, 15, 0.58)),
    radial-gradient(circle at 16% 18%, rgba(255, 122, 26, 0.14), transparent 28%),
    rgba(33, 20, 15, 0.42);
  box-shadow:
    0 24px 70px rgba(33, 20, 15, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  color: #fff8eb;
}

.intro .section-copy h2 {
  max-width: 680px;
}

.intro-hook {
  position: relative;
  margin: 20px 0 0;
  padding-left: 18px;
  color: rgba(255, 248, 235, 0.88);
  font-weight: 900;
}

.intro-hook::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35em;
  width: 7px;
  height: 24px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--fire), var(--gold));
  box-shadow: 0 0 18px rgba(255, 122, 26, 0.22);
}

.intro-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.intro-chips span {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 12px 15px;
  color: #fff8eb;
  font-size: 13px;
  font-weight: 900;
  border: 1px solid transparent;
  border-radius: 8px;
  background:
    radial-gradient(circle at 22% 12%, rgba(255, 122, 26, 0.32), transparent 32%) padding-box,
    linear-gradient(rgba(18, 12, 10, 0.86), rgba(18, 12, 10, 0.86)) padding-box,
    linear-gradient(120deg, var(--fire), var(--gold), var(--violet), var(--acid), var(--fire)) border-box;
  background-size: 100% 100%, 100% 100%, 240% 100%;
  box-shadow:
    0 14px 34px rgba(33, 20, 15, 0.26),
    0 0 24px rgba(255, 122, 26, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
  animation: chipBorderFlow 6s ease-in-out infinite;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.intro-chips span:nth-child(2) {
  animation-delay: 700ms;
}

.intro-chips span:nth-child(3) {
  animation-delay: 1400ms;
}

.intro-chips span:hover {
  transform: translateY(-2px);
  box-shadow:
    0 18px 38px rgba(33, 20, 15, 0.32),
    0 0 32px rgba(255, 122, 26, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

@keyframes chipBorderFlow {
  0%,
  100% {
    background-position: 0 0, 0 0, 0% 50%;
  }

  50% {
    background-position: 0 0, 0 0, 100% 50%;
  }
}

.angled > * {
  position: relative;
}

.section-copy p:not(.eyebrow),
.proof-copy p,
.og-copy p,
.wood-panel p,
.faq p {
  color: inherit;
  font-size: 18px;
  line-height: 1.65;
}

.illustration-frame,
.proof-visual,
.card-visual,
.avatar-placeholder {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 340px;
  padding: 24px;
  color: rgba(29, 23, 19, 0.55);
  text-align: center;
  border: 1px dashed rgba(29, 23, 19, 0.32);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 138, 34, 0.12), rgba(127, 168, 184, 0.14)),
    var(--paper-2);
}

.illustration-frame.large {
  min-height: 500px;
}

.tilted {
  transform: rotate(2deg);
  box-shadow: -20px 24px 0 rgba(89, 109, 76, 0.18), var(--shadow);
}

.intro-scene {
  min-height: clamp(420px, 44vw, 560px);
  color: rgba(255, 248, 235, 0.56);
  border-color: rgba(255, 248, 235, 0.18);
  background: #0b0b12;
  box-shadow:
    -20px 24px 0 rgba(89, 109, 76, 0.14),
    0 34px 90px rgba(89, 55, 27, 0.22);
  overflow: hidden;
}

.intro-scene img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 47% 50%;
  image-rendering: pixelated;
}

.intro-scene::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(8, 7, 6, 0.18), transparent 30%, rgba(8, 7, 6, 0.2)),
    linear-gradient(90deg, rgba(8, 7, 6, 0.24), transparent 24%, transparent 76%, rgba(8, 7, 6, 0.2));
  pointer-events: none;
}

.intro-scene::after {
  content: "";
  position: absolute;
  inset: auto 22px 18px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(246, 195, 80, 0.42), transparent);
}

.intro-scene span {
  position: relative;
  z-index: 1;
  max-width: 360px;
}

.screenshot {
  min-height: 420px;
  transform: rotate(-0.35deg);
  box-shadow: 12px 14px 0 rgba(255, 138, 34, 0.13);
}

.campfire,
.activities,
.faq {
  padding: clamp(72px, 10vw, 130px) var(--gutter);
}

.activities {
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 20%, rgba(111, 92, 255, 0.18), transparent 18%),
    radial-gradient(circle at 88% 8%, rgba(255, 122, 26, 0.22), transparent 20%),
    linear-gradient(160deg, #21140f 0 43%, #f2eadf 43% 100%);
}

.activities .section-heading {
  color: #fff8eb;
  max-width: 760px;
}

.activities .section-heading .eyebrow {
  color: var(--acid);
  text-shadow: 0 0 24px rgba(183, 255, 90, 0.22);
}

.activities .section-subcopy {
  max-width: 560px;
  margin: 12px 0 0;
  color: rgba(255, 248, 235, 0.72);
  font-size: 18px;
  line-height: 1.55;
}

.campfire {
  background:
    radial-gradient(circle at 18% 28%, rgba(111, 92, 255, 0.14), transparent 20%),
    radial-gradient(circle at 80% 72%, rgba(255, 122, 26, 0.12), transparent 24%),
    var(--bg);
}

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

.cards-grid,
.roadmap-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.activities .cards-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.campfire-stage {
  display: grid;
  grid-template-columns: minmax(320px, 1.25fr) minmax(300px, 0.95fr);
  grid-template-areas:
    "riddle news"
    "riddle gift"
    "riddle posts";
  gap: 16px;
  align-items: stretch;
}

.panel,
.activity-card,
.roadmap-steps article,
.wood-panel,
.faq details {
  border-radius: var(--radius);
}

.panel {
  position: relative;
  min-height: 150px;
  padding: 22px;
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.05)),
    rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.panel::after {
  content: "";
  position: absolute;
  inset: auto 18px 14px;
  height: 2px;
  background: linear-gradient(90deg, var(--fire), transparent);
  opacity: 0.42;
}

.active-riddle {
  grid-area: riddle;
  display: flex;
  flex-direction: column;
  min-height: 520px;
  background:
    radial-gradient(circle at 50% 20%, rgba(111, 92, 255, 0.18), transparent 24%),
    radial-gradient(circle at 20% 18%, rgba(255, 138, 34, 0.18), transparent 24%),
    rgba(255, 255, 255, 0.08);
}

.riddle-art {
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  min-height: 285px;
  margin-bottom: 18px;
  color: rgba(255, 248, 235, 0.42);
  text-align: center;
  border: 1px solid rgba(255, 248, 235, 0.22);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 45%, rgba(246, 195, 80, 0.16), transparent 30%),
    linear-gradient(135deg, rgba(111, 92, 255, 0.16), rgba(255, 122, 26, 0.1));
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.06),
    0 22px 60px rgba(0, 0, 0, 0.28);
}

.riddle-art img {
  width: 100%;
  height: 100%;
  min-height: 285px;
  object-fit: cover;
  object-position: 50% 50%;
  image-rendering: pixelated;
}

.riddle-art::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(7, 8, 12, 0.02), rgba(7, 8, 12, 0.32)),
    linear-gradient(90deg, rgba(7, 8, 12, 0.24), transparent 24%, transparent 76%, rgba(7, 8, 12, 0.2));
}

.riddle-preview {
  max-width: 34rem;
}

.riddle-triggers {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 8px 0 22px;
}

.riddle-triggers span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 12px;
  color: #fff8eb;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid transparent;
  border-radius: 8px;
  background:
    linear-gradient(rgba(13, 11, 18, 0.9), rgba(13, 11, 18, 0.9)) padding-box,
    linear-gradient(120deg, var(--fire), var(--gold), var(--violet), var(--acid), var(--fire)) border-box;
  background-size: 100% 100%, 240% 100%;
  box-shadow:
    0 12px 30px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  animation: chipBorderFlow 7s ease-in-out infinite;
}

.riddle-triggers span:nth-child(2) {
  animation-delay: 800ms;
}

.riddle-triggers span:nth-child(3) {
  animation-delay: 1600ms;
}

.active-riddle .text-button {
  align-self: flex-start;
  margin-top: auto;
}

.campfire-stage .panel:not(.active-riddle) {
  display: flex;
  flex-direction: column;
}

.campfire-stage .panel:not(.active-riddle)::after {
  content: none;
}

.campfire-stage .panel:not(.active-riddle) .inline-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  width: 100%;
  margin-top: auto;
  padding-top: 16px;
  font-weight: 900;
}

.campfire-stage .panel:not(.active-riddle) .inline-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: min(180px, 100%);
  height: 2px;
  background: linear-gradient(90deg, var(--fire), rgba(246, 195, 80, 0.7), transparent);
  opacity: 0.72;
}

.campfire-stage .panel:nth-of-type(2) {
  grid-area: news;
}

.campfire-stage .panel:nth-of-type(3) {
  grid-area: gift;
}

.campfire-stage .panel:nth-of-type(4) {
  grid-area: posts;
}

.panel-topline,
.roadmap-steps span,
.small-note {
  display: block;
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.text-button {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0;
  color: var(--gold);
  font: inherit;
  font-weight: 800;
  background: transparent;
  border: 0;
  cursor: pointer;
  transition: color 180ms ease, transform 180ms ease;
}

.text-button:hover {
  color: var(--acid);
  transform: translateX(3px);
}

.riddle-full {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.riddle-full a {
  color: var(--gold);
  font-weight: 800;
}

.activity-card {
  position: relative;
  overflow: hidden;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(255, 248, 237, 0.96)),
    #fff8ed;
  box-shadow: 0 12px 34px rgba(29, 23, 19, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.activity-card::before {
  content: none;
}

.activity-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 46px rgba(29, 23, 19, 0.14);
}

.activity-card h3,
.activity-card p {
  padding: 0 22px;
}

.activity-card h3 {
  margin-top: 34px;
}

.activity-card p {
  padding-bottom: 22px;
  color: var(--muted);
  line-height: 1.55;
}

.card-visual {
  position: relative;
  min-height: 158px;
  margin-bottom: 20px;
  border-width: 0 0 1px;
  border-radius: 0;
  overflow: hidden;
  background: #1d1713;
}

.card-visual img {
  display: block;
  width: 100%;
  height: 158px;
  object-fit: cover;
  image-rendering: pixelated;
}

.card-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(9, 8, 6, 0), rgba(9, 8, 6, 0.24)),
    linear-gradient(90deg, rgba(9, 8, 6, 0.18), transparent 28%, transparent 72%, rgba(9, 8, 6, 0.16));
}

.card-icon {
  position: absolute;
  top: 139px;
  left: 22px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 12px 0 9px;
  color: #fff8eb;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid transparent;
  border-radius: 999px;
  background:
    linear-gradient(rgba(17, 12, 10, 0.9), rgba(17, 12, 10, 0.9)) padding-box,
    linear-gradient(120deg, var(--fire), var(--gold), var(--violet), var(--acid)) border-box;
  box-shadow:
    0 14px 30px rgba(29, 23, 19, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.card-icon::before {
  width: 10px;
  height: 10px;
  background: var(--gold);
  box-shadow: 0 0 14px rgba(246, 195, 80, 0.34);
}

.card-visual.path {
  background: #1d1713;
}

.card-visual.wood {
  background: #1d1713;
}

.card-visual.activity {
  background: #1d1713;
}

.card-visual.chat {
  background: #1d1713;
}

.path-icon::before,
.wood-icon::before,
.activity-icon::before,
.chat-icon::before {
  content: "";
  display: block;
}

.path-icon::before {
  border-radius: 2px;
  transform: rotate(45deg);
}

.wood-icon::before {
  border-radius: 999px 999px 999px 3px;
  transform: rotate(-35deg);
}

.activity-icon::before {
  width: 12px;
  height: 6px;
  border-radius: 999px;
}

.chat-icon::before {
  width: 12px;
  height: 9px;
  border-radius: 999px 999px 999px 3px;
}

.center-action {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.proof {
  display: grid;
  grid-template-columns: minmax(280px, 0.86fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
  padding: clamp(72px, 10vw, 130px) var(--gutter);
}

.proof::before {
  content: "GIFTS";
  position: absolute;
  left: var(--gutter);
  top: 36px;
  color: rgba(246, 195, 80, 0.08);
  font-family: Unbounded, Manrope, sans-serif;
  font-size: clamp(70px, 14vw, 190px);
  font-weight: 900;
  line-height: 0.8;
  pointer-events: none;
}

.proof-visual {
  position: relative;
  overflow: hidden;
  min-height: clamp(420px, 42vw, 540px);
  padding: 0;
  color: rgba(255, 248, 235, 0.48);
  border: 1px solid rgba(255, 248, 235, 0.18);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 52% 50%, rgba(255, 138, 34, 0.3), transparent 28%),
    radial-gradient(circle at 30% 70%, rgba(127, 168, 184, 0.12), transparent 22%),
    rgba(255, 255, 255, 0.06);
  box-shadow:
    18px 22px 0 rgba(111, 92, 255, 0.08),
    0 28px 90px rgba(0, 0, 0, 0.28);
}

.proof-visual::before {
  content: none;
}

.proof-visual img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: clamp(420px, 42vw, 540px);
  object-fit: cover;
  object-position: 50% 50%;
  image-rendering: pixelated;
}

.proof-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 45%, rgba(255, 199, 84, 0.24) 0 24%, transparent 48%),
    radial-gradient(circle at 50% 50%, transparent 0 46%, rgba(8, 7, 6, 0.5) 86%),
    linear-gradient(180deg, rgba(8, 7, 6, 0.06), rgba(8, 7, 6, 0.34)),
    linear-gradient(90deg, rgba(8, 7, 6, 0.3), transparent 30%, transparent 70%, rgba(8, 7, 6, 0.3));
  mix-blend-mode: normal;
}

.proof-copy .eyebrow {
  color: #bfc6ff;
  text-shadow: 0 0 24px rgba(111, 92, 255, 0.28);
}

.proof-copy h2 {
  display: grid;
  gap: 8px;
}

.gift-count {
  display: inline-block;
  width: max-content;
  color: transparent;
  font-size: clamp(58px, 9vw, 118px);
  line-height: 0.9;
  background:
    linear-gradient(135deg, var(--gold), var(--fire) 42%, var(--violet) 74%, var(--acid));
  -webkit-background-clip: text;
  background-clip: text;
  filter: drop-shadow(0 18px 36px rgba(255, 122, 26, 0.18));
}

.proof-list {
  display: grid;
  gap: 10px;
  margin-bottom: 22px;
}

.proof-list p {
  display: grid;
  grid-template-columns: 44px 1fr;
  grid-template-areas:
    "icon title"
    "icon text";
  gap: 4px;
  margin: 0;
  padding: 14px 16px 14px 14px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  background:
    linear-gradient(rgba(15, 12, 11, 0.88), rgba(15, 12, 11, 0.88)) padding-box,
    linear-gradient(120deg, rgba(255, 122, 26, 0.55), rgba(246, 195, 80, 0.34), rgba(111, 92, 255, 0.44)) border-box;
  box-shadow:
    0 14px 34px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.proof-list strong {
  grid-area: title;
  color: #fff8eb;
  font-family: Unbounded, Manrope, sans-serif;
  font-size: 14px;
}

.proof-list span {
  grid-area: text;
  color: rgba(255, 248, 235, 0.68);
}

.mini-icon {
  grid-area: icon;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  color: #fff8eb;
  background:
    linear-gradient(rgba(14, 11, 18, 0.94), rgba(14, 11, 18, 0.94)) padding-box,
    linear-gradient(135deg, var(--fire), var(--gold), var(--violet), var(--acid)) border-box;
  border: 1px solid transparent;
  box-shadow:
    0 0 24px rgba(111, 92, 255, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  font-style: normal;
}

.mini-icon::before {
  color: #fff8eb;
  font-family: Unbounded, Manrope, sans-serif;
  font-size: 11px;
  font-weight: 900;
}

.mini-icon.tg::before {
  content: "TG";
}

.mini-icon.eye::before {
  content: "";
  width: 15px;
  height: 9px;
  border: 2px solid #fff8eb;
  border-radius: 999px 999px 8px 8px;
  box-shadow: inset 0 0 0 3px rgba(255, 248, 235, 0.16);
}

.mini-icon.fire::before {
  content: "";
  width: 13px;
  height: 16px;
  border-radius: 999px 999px 999px 3px;
  background: linear-gradient(145deg, var(--gold), var(--fire) 62%, #fff8eb 63%);
  transform: rotate(-35deg);
}

.roadmap {
  display: block;
  padding: clamp(58px, 8vw, 104px) var(--gutter) clamp(64px, 8vw, 110px);
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 22%, rgba(111, 92, 255, 0.2), transparent 18%),
    radial-gradient(circle at 86% 14%, rgba(255, 122, 26, 0.18), transparent 20%),
    linear-gradient(160deg, #17101e 0 43%, #eadcc8 43% 100%);
}

.roadmap-top {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.56fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
}

.roadmap .section-copy {
  max-width: 860px;
}

.roadmap .eyebrow {
  color: #ff4fa3;
  text-shadow: 0 0 24px rgba(255, 79, 163, 0.34);
}

.roadmap h2 {
  color: #fff8eb;
  max-width: 840px;
}

.roadmap .section-copy p.roadmap-lead {
  position: relative;
  display: inline-block;
  max-width: 620px;
  margin-top: 20px;
  padding: 12px 24px;
  color: var(--fire);
  font-size: 18px;
  line-height: 1.6;
  font-weight: 600;
  isolation: isolate;
  /* The lead crosses the dark→beige split. Instead of a flat dark plate, the
     orange carries its own legibility with a crisp dark outline, which frees the
     backing to be purely decorative: an iridescent brand-colour wash (::before)
     that's denser on the dark left and dissolves to transparent on the beige
     right — a design element, not a patch. */
  text-shadow:
    0 0 1px rgba(6, 4, 2, 0.85),
    0 1px 2px rgba(6, 4, 2, 0.7),
    0 0 8px rgba(6, 4, 2, 0.35);
}

.roadmap .section-copy p.roadmap-lead::before {
  content: "";
  position: absolute;
  inset: -2px 0;
  z-index: -1;
  border-radius: 16px;
  /* fire → violet → gold → acid, sliding slowly for a gentle iridescent "перелив" */
  background: linear-gradient(105deg,
    rgba(255, 122, 26, 0.42) 0%,
    rgba(111, 92, 255, 0.4) 32%,
    rgba(246, 195, 80, 0.34) 56%,
    rgba(183, 255, 90, 0.22) 76%,
    rgba(183, 255, 90, 0) 100%);
  background-size: 185% 100%;
  /* fade the whole wash out toward the right so it never sits as a block on beige */
  -webkit-mask: linear-gradient(90deg, #000 0%, #000 38%, rgba(0, 0, 0, 0.4) 72%, transparent 100%);
  mask: linear-gradient(90deg, #000 0%, #000 38%, rgba(0, 0, 0, 0.4) 72%, transparent 100%);
  /* the prefers-reduced-motion block further down freezes this animation */
  animation: roadmapLeadAura 9s ease-in-out infinite alternate;
}

@keyframes roadmapLeadAura {
  from {
    background-position: 0% 50%;
  }

  to {
    background-position: 100% 50%;
  }
}

.roadmap-visual-slot {
  position: relative;
  display: grid;
  place-items: center;
  width: min(100%, 520px);
  aspect-ratio: 1;
  justify-self: end;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 18% 50%, rgba(255, 122, 26, 0.24), transparent 24%) padding-box,
    radial-gradient(circle at 72% 42%, rgba(111, 92, 255, 0.22), transparent 22%) padding-box,
    linear-gradient(rgba(18, 12, 10, 0.88), rgba(18, 12, 10, 0.88)) padding-box,
    linear-gradient(120deg, var(--fire), var(--gold), var(--violet), var(--acid)) border-box;
  box-shadow:
    0 18px 48px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.roadmap-visual-slot::before {
  content: none;
}

.roadmap-visual-slot img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 48% 50%;
  image-rendering: pixelated;
}

.roadmap-visual-slot::after {
  content: none;
}

.roadmap-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: clamp(22px, 4vw, 44px);
  padding: 38px 0 28px;
}

.roadmap-steps::before {
  content: "";
  position: absolute;
  top: 48%;
  left: -6%;
  right: -6%;
  height: 74px;
  border-radius: 999px 999px 999px 18px;
  background:
    linear-gradient(90deg, rgba(255, 122, 26, 0.12), rgba(246, 195, 80, 0.18), rgba(111, 92, 255, 0.16), rgba(183, 255, 90, 0.12));
  filter: blur(1px);
  transform: rotate(-2deg);
  box-shadow: 0 0 50px rgba(111, 92, 255, 0.12);
}

.roadmap-steps article {
  position: relative;
  min-height: 220px;
  padding: 64px 20px 20px;
  overflow: visible;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(255, 248, 237, 0.96)),
    #fff8ed;
  border: 1px solid transparent;
  border-radius: var(--radius);
  box-shadow:
    0 18px 46px rgba(29, 23, 19, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.62);
}

.roadmap-steps article:not(:first-child) {
  filter: saturate(0.88);
}

.roadmap-steps article:first-child {
  border-width: 3px;
  background:
    radial-gradient(circle at 16% 18%, rgba(255, 122, 26, 0.42), transparent 30%) padding-box,
    radial-gradient(circle at 86% 12%, rgba(255, 79, 163, 0.3), transparent 24%) padding-box,
    linear-gradient(rgba(255, 248, 237, 0.95), rgba(255, 248, 237, 0.99)) padding-box,
    linear-gradient(120deg, #ff4fa3, var(--fire), var(--gold), var(--violet), var(--acid), #ff4fa3) border-box;
  background-size: 100% 100%, 100% 100%, 100% 100%, 260% 100%;
  box-shadow:
    0 0 0 2px rgba(255, 79, 163, 0.32),
    0 0 0 8px rgba(246, 195, 80, 0.12),
    0 30px 90px rgba(255, 122, 26, 0.46),
    0 0 110px rgba(246, 195, 80, 0.36),
    0 0 82px rgba(255, 79, 163, 0.32),
    0 0 60px rgba(111, 92, 255, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
  animation: chipBorderFlow 6s ease-in-out infinite;
}

.roadmap-steps article:first-child::before {
  background:
    radial-gradient(circle at 18% 12%, rgba(255, 79, 163, 0.32), transparent 26%),
    radial-gradient(circle at 72% 20%, rgba(246, 195, 80, 0.34), transparent 28%),
    linear-gradient(120deg, rgba(255, 122, 26, 0.28), transparent 34%);
}

.roadmap-steps article:first-child span {
  background:
    linear-gradient(rgba(17, 12, 10, 0.96), rgba(17, 12, 10, 0.96)) padding-box,
    linear-gradient(120deg, #ff4fa3, var(--fire), var(--gold), var(--acid), #ff4fa3) border-box;
  box-shadow:
    0 0 0 2px rgba(255, 79, 163, 0.26),
    0 18px 42px rgba(255, 79, 163, 0.34),
    0 0 46px rgba(246, 195, 80, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.roadmap-steps article::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(120deg, rgba(255, 122, 26, 0.2), transparent 28%),
    radial-gradient(circle at 90% 12%, rgba(111, 92, 255, 0.22), transparent 22%);
  pointer-events: none;
}

.roadmap-steps article > * {
  position: relative;
  z-index: 1;
}

.roadmap-steps article:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -48px;
  top: 48%;
  width: 56px;
  height: 18px;
  background-image: radial-gradient(circle, rgba(24, 16, 13, 0.42) 0 3px, transparent 4px);
  background-size: 14px 14px;
  transform: rotate(-9deg);
  opacity: 0.75;
}

.roadmap-steps span {
  position: absolute;
  top: -44px;
  left: 18px;
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0 14px;
  color: #fff8eb;
  font-family: Unbounded, Manrope, sans-serif;
  font-size: clamp(22px, 3.1vw, 42px);
  font-weight: 900;
  line-height: 0.9;
  text-transform: uppercase;
  border: 1px solid transparent;
  border-radius: 10px 10px 10px 3px;
  background:
    linear-gradient(rgba(17, 12, 10, 0.94), rgba(17, 12, 10, 0.94)) padding-box,
    linear-gradient(120deg, var(--fire), var(--gold), var(--violet), var(--acid)) border-box;
  z-index: 4;
  box-shadow:
    0 16px 34px rgba(0, 0, 0, 0.22),
    0 0 28px rgba(255, 122, 26, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.roadmap-steps article:nth-child(2) {
  transform: translateY(24px);
}

.roadmap-steps article:nth-child(3) {
  transform: translateY(-16px);
}

.roadmap-steps article:nth-child(2) span {
  background:
    linear-gradient(rgba(17, 12, 10, 0.9), rgba(17, 12, 10, 0.9)) padding-box,
    linear-gradient(120deg, var(--acid), var(--gold), var(--violet)) border-box;
}

.roadmap-steps article:nth-child(3) span {
  background:
    linear-gradient(rgba(17, 12, 10, 0.88), rgba(17, 12, 10, 0.88)) padding-box,
    linear-gradient(120deg, var(--violet), var(--fire), var(--gold)) border-box;
}

.roadmap-steps p {
  color: var(--muted);
  line-height: 1.55;
}

.og {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(390px, 0.46fr);
  gap: clamp(28px, 4vw, 58px);
  align-items: start;
  min-height: clamp(620px, 66vw, 720px);
  padding: clamp(140px, 13vw, 178px) var(--gutter) clamp(56px, 7vw, 88px);
  overflow: hidden;
  background:
    radial-gradient(circle at 22% 40%, rgba(246, 195, 80, 0.18), transparent 24%),
    radial-gradient(circle at 76% 26%, rgba(111, 92, 255, 0.22), transparent 22%),
    linear-gradient(135deg, #070606 0%, #17090d 48%, #0a0807 100%);
}

.og::before {
  content: "ORIGINAL GANGSTER";
  position: absolute;
  left: 50%;
  top: 30px;
  transform: translateX(-50%);
  width: max-content;
  max-width: calc(100% - clamp(36px, 10vw, 144px));
  color: rgba(255, 248, 235, 0.07);
  font-family: Unbounded, Manrope, sans-serif;
  font-size: clamp(28px, 5.4vw, 82px);
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
  padding-bottom: 18px;
  border-bottom: 3px solid rgba(246, 195, 80, 0.18);
  box-shadow: none;
  pointer-events: none;
}

.og::after {
  content: none;
}

.og-symbol {
  display: none;
}

.og-symbol span {
  transform: none;
}

.og-symbol::before {
  content: none;
}

.og-symbol small {
  display: none;
}

.og-badge-art {
  position: absolute;
  /* Floor at the content gutter so the decoration never escapes the centered
     content band into the dead side-margin on wide/ultra-wide screens.
     (100vw, not var(--gutter): its 100% resolves against the wrong box for an
     absolutely-positioned child, so compute the centering margin from the viewport.) */
  left: max(calc((100vw - var(--container)) / 2), clamp(300px, 33vw, 560px));
  top: clamp(132px, 14vw, 190px);
  z-index: 0;
  width: clamp(300px, 34vw, 540px);
  transform: rotate(18deg);
  opacity: 0.38;
  filter:
    drop-shadow(0 28px 70px rgba(246, 195, 80, 0.18))
    drop-shadow(0 0 54px rgba(255, 122, 26, 0.12));
  pointer-events: none;
}

.og-badge-art img {
  display: block;
  width: 100%;
  height: auto;
}

.og-copy {
  grid-column: 1;
  grid-row: 1;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  max-width: 690px;
  min-height: auto;
  padding-top: 0;
}

.og-copy h2 {
  max-width: 650px;
  margin-bottom: 22px;
  font-size: clamp(42px, 5.1vw, 72px);
  line-height: 0.92;
}

.og-copy h2 span {
  display: block;
  white-space: nowrap;
}

.og-copy .button {
  align-self: flex-start;
  margin-top: 12px;
}

.og-perks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0 18px;
}

.og-perks span {
  padding: 12px 14px;
  color: #fff8eb;
  font-size: 13px;
  font-weight: 900;
  border: 1px solid transparent;
  border-radius: 8px;
  background:
    radial-gradient(circle at 22% 12%, rgba(255, 122, 26, 0.28), transparent 32%) padding-box,
    linear-gradient(rgba(18, 12, 10, 0.88), rgba(18, 12, 10, 0.88)) padding-box,
    linear-gradient(120deg, var(--fire), var(--gold), var(--violet), var(--acid), var(--fire)) border-box;
  background-size: 100% 100%, 100% 100%, 240% 100%;
  box-shadow:
    0 14px 34px rgba(0, 0, 0, 0.22),
    0 0 24px rgba(255, 122, 26, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
  animation: chipBorderFlow 7s ease-in-out infinite;
}

.og-perks span:nth-child(2) {
  animation-delay: 900ms;
}

.og-stamp {
  position: absolute;
  left: clamp(38%, 42vw, 48%);
  bottom: clamp(48px, 5vw, 72px);
  z-index: 2;
  width: fit-content;
  margin: 0;
  padding: 14px 20px;
  color: #11100d;
  font-family: Unbounded, Manrope, sans-serif;
  font-size: clamp(28px, 4.2vw, 60px);
  font-weight: 900;
  line-height: 0.92;
  border: 2px solid rgba(17, 16, 13, 0.24);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.42), transparent 42%),
    linear-gradient(135deg, var(--acid), var(--gold) 72%, var(--fire));
  box-shadow:
    0 18px 44px rgba(183, 255, 90, 0.18),
    0 0 0 1px rgba(255, 255, 255, 0.26) inset;
  text-align: center;
  transform: rotate(-7deg);
}

.wood-panel {
  grid-column: 2;
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 22px;
  transform: translateY(44px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(111, 92, 255, 0.11)),
    rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 24px 60px rgba(0, 0, 0, 0.22);
}

.threshold-callout {
  display: grid;
  gap: 4px;
  margin-bottom: 16px;
  padding: 18px;
  border: 1px solid rgba(246, 195, 80, 0.24);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 82% 22%, rgba(246, 195, 80, 0.16), transparent 24%),
    linear-gradient(135deg, rgba(240, 66, 45, 0.16), rgba(246, 195, 80, 0.1));
}

/* Caption only (direct child). The number lives in a <span> inside <strong>
   and must inherit the strong's large size — so scope this to the direct child. */
.threshold-callout > span {
  color: rgba(255, 248, 235, 0.68);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.threshold-callout strong {
  color: #fff8eb;
  font-family: Unbounded, Manrope, sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1;
}

.threshold-callout em {
  color: var(--gold);
  font-style: normal;
  font-weight: 800;
}

.rank-board {
  display: grid;
  gap: 8px;
  margin: 22px 0 14px;
}

.rank-board div {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.18);
}

.rank-board .you {
  border-color: rgba(246, 195, 80, 0.44);
  background:
    linear-gradient(135deg, rgba(255, 122, 26, 0.16), rgba(183, 255, 90, 0.08)),
    rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 28px rgba(246, 195, 80, 0.12);
}

.rank-board span {
  color: var(--gold);
  font-weight: 900;
}

.rank-board strong {
  font-family: Unbounded, Manrope, sans-serif;
  font-size: 18px;
}

.rank-board em {
  color: rgba(255, 248, 235, 0.64);
  font-style: normal;
  font-size: 12px;
}

.wood-stats {
  display: grid;
  gap: 12px;
  margin-bottom: 22px;
  color: rgba(255, 248, 235, 0.72);
  font-size: 13px;
}

.wood-stats span {
  position: relative;
  padding-left: 18px;
}

.wood-stats span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 14px rgba(246, 195, 80, 0.4);
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq details {
  padding: 20px 22px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.76), rgba(255, 248, 237, 0.94)),
    #fff8ed;
  border: 1px solid rgba(29, 23, 19, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.faq details:hover {
  transform: translateX(4px);
  box-shadow: 0 12px 30px rgba(29, 23, 19, 0.08);
}

.faq summary {
  font-weight: 800;
  cursor: pointer;
}

.faq details p {
  margin: 14px 0 0;
  color: var(--muted);
}

.creator {
  position: relative;
  min-height: 92svh;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: clamp(430px, 38vw, 540px) var(--gutter) 72px;
  overflow: hidden;
}

.creator::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 34%, rgba(233, 65, 36, 0.2), transparent 24%),
    radial-gradient(circle at 14% 80%, rgba(111, 92, 255, 0.16), transparent 20%),
    linear-gradient(180deg, rgba(11, 10, 9, 0.35), rgba(11, 10, 9, 0.9));
}

.creator-card {
  position: relative;
  z-index: 1;
  max-width: 760px;
  text-align: center;
}

.avatar-placeholder {
  width: 160px;
  height: 160px;
  min-height: 160px;
  margin: 0 auto 24px;
  padding: 0;
  overflow: hidden;
  border: 2px solid rgba(246, 195, 80, 0.42);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  box-shadow:
    0 0 0 8px rgba(246, 195, 80, 0.08),
    0 24px 70px rgba(255, 122, 26, 0.24);
}

.avatar-placeholder img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 54%;
  transform: scale(1.55);
  transform-origin: center 54%;
  image-rendering: pixelated;
}

blockquote {
  margin: 26px 0;
  color: rgba(255, 248, 235, 0.84);
  font-size: 22px;
  line-height: 1.45;
}

.creator-text {
  max-width: 650px;
  margin: 0 auto 24px;
  color: rgba(255, 248, 235, 0.82);
  font-size: 18px;
  line-height: 1.65;
}

.creator-card .hero-actions {
  justify-content: center;
}

.legend-line {
  margin-top: 34px;
  color: rgba(255, 248, 235, 0.54);
  font-size: 13px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 22px var(--gutter);
  color: rgba(255, 248, 235, 0.64);
  background: #080706;
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  /* No blur() here: animating filter:blur on ~27 elements during scroll is a
     GPU paint spike. Fade + rise read the same and stay on the compositor. */
  transition:
    opacity 700ms ease,
    transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  transform: translateY(34px);
}

.reveal-right {
  transform: translateY(34px);
}

.reveal-left.is-visible,
.reveal-right.is-visible {
  transform: translateY(0);
}

.stagger-1 {
  transition-delay: 90ms;
}

.stagger-2 {
  transition-delay: 180ms;
}

.stagger-3 {
  transition-delay: 270ms;
}

.hero .eyebrow,
.hero h1,
.hero-lead,
.hero-actions,
.live-strip {
  animation: heroRise 760ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.hero h1 {
  animation-delay: 90ms;
}

.hero-lead {
  animation-delay: 170ms;
}

.hero-actions {
  animation-delay: 250ms;
}

.live-strip {
  animation-delay: 360ms;
}

.hero-orbit {
  animation: floatToken 5.5s ease-in-out infinite;
}

.hero-orbit.two {
  animation-duration: 6.4s;
  animation-delay: 600ms;
}

.hero-orbit.three {
  animation-duration: 7.2s;
  animation-delay: 1100ms;
}

/* emberPulse (box-shadow) / stampPulse (filter) removed: both animate paint
   properties forever — the ember one sat inside the fixed header and forced a
   continuous repaint. The transform-based drifts (floatToken/ogDrift) stay. */

.og-symbol {
  animation: ogDrift 7s ease-in-out infinite;
}

@keyframes heroRise {
  from {
    opacity: 0;
    transform: translateY(24px);
    filter: blur(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes floatToken {
  0%,
  100% {
    translate: 0 0;
  }

  50% {
    translate: 0 -12px;
  }
}

@keyframes emberPulse {
  0%,
  100% {
    box-shadow: 0 0 0 rgba(255, 122, 26, 0);
  }

  50% {
    box-shadow: 0 0 28px rgba(255, 122, 26, 0.34);
  }
}

@keyframes stampPulse {
  0%,
  100% {
    filter: saturate(1) brightness(1);
  }

  50% {
    filter: saturate(1.18) brightness(1.05);
  }
}

@keyframes ogDrift {
  0%,
  100% {
    translate: 0 0;
  }

  50% {
    translate: 10px -6px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
    filter: none;
  }
}

/* Mid-zone (laptops / large tablets): relax the 4-up activity grid before the
   single-column mobile collapse at 860px takes over. */
@media (max-width: 1080px) {
  .activities .cards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .reveal.reveal-left,
  .reveal.reveal-right {
    transform: translateY(28px);
  }

  .reveal.reveal-left.is-visible,
  .reveal.reveal-right.is-visible {
    transform: translateY(0);
  }

  .header-nav {
    display: none;
  }

  .hero {
    padding-top: 96px;
  }

  .live-strip,
  .intro,
  .proof,
  .roadmap-top,
  .cards-grid,
  .roadmap-steps {
    grid-template-columns: 1fr;
  }

  .roadmap-visual-slot {
    justify-self: start;
    width: min(100%, 360px);
  }

  .roadmap-steps {
    padding-top: 0;
  }

  .roadmap-steps::before {
    top: 42px;
    bottom: 42px;
    left: 18px;
    right: auto;
    width: 68px;
    height: auto;
    transform: none;
  }

  .roadmap-steps article,
  .roadmap-steps article:nth-child(2),
  .roadmap-steps article:nth-child(3) {
    transform: none;
  }

  .roadmap-steps article {
    min-height: auto;
    padding-top: 68px;
    margin-left: 22px;
  }

  .roadmap-steps article::before {
    inset: 0;
  }

  .roadmap-steps span {
    top: -30px;
    left: 18px;
    font-size: clamp(21px, 7vw, 34px);
  }

  .roadmap-steps article:not(:last-child)::after {
    right: auto;
    left: -34px;
    top: auto;
    bottom: -30px;
    transform: rotate(82deg);
  }

  .activities .cards-grid {
    grid-template-columns: 1fr;
  }

  .campfire-stage {
    grid-template-columns: 1fr;
    grid-template-areas:
      "riddle"
      "news"
      "gift"
      "posts";
  }

  .hero-bg-note {
    min-height: 38svh;
  }

  .hero-content {
    padding-top: 34svh;
  }

  .illustration-frame.large,
  .proof-visual {
    min-height: 320px;
  }

  .tilted,
  .screenshot,
  .activity-card:nth-child(even) {
    transform: none;
  }

  .hero-orbit {
    opacity: 0.74;
  }

  .og::before {
    top: 24px;
    max-width: calc(100% - 32px);
    font-size: clamp(20px, 6vw, 28px);
    padding-bottom: 12px;
  }

  .og {
    display: flex;
    flex-direction: column;
    min-height: auto;
    padding: 92px 18px 44px;
    gap: 18px;
  }

  .og-symbol {
    display: none;
  }

  .og-badge-art {
    left: 50%;
    top: 214px;
    width: min(72vw, 260px);
    opacity: 0.12;
    transform: translateX(-50%) rotate(0deg);
  }

  .og-stamp {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    z-index: 3;
    order: 2;
    align-self: flex-start;
    margin: 2px 0 0 12px;
    font-size: clamp(24px, 8vw, 34px);
  }

  .og-copy,
  .wood-panel {
    grid-column: auto;
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .wood-panel {
    order: 3;
    transform: none;
    padding: 16px;
  }

  .og-copy {
    order: 1;
    min-height: auto;
    padding-top: 0;
  }

  .og-copy h2 {
    max-width: 100%;
    margin-bottom: 16px;
    font-size: clamp(33px, 10.2vw, 42px);
    line-height: 0.98;
  }

  .og-copy p {
    max-width: 100%;
    font-size: 15px;
  }

  .og-perks {
    margin: 16px 0 16px;
  }

  .og-perks span {
    width: 100%;
  }

  .og-copy .button {
    width: 100%;
    max-width: 100%;
    justify-content: center;
    margin-top: 4px;
  }

  .rank-board div {
    grid-template-columns: 54px minmax(0, 1fr) auto;
    gap: 8px;
    padding: 10px;
  }

  .og::after {
    right: 18px;
    top: 40px;
    font-size: 18px;
  }
}

@media (max-width: 520px) {
  .site-header {
    padding: 12px 14px;
  }

  .brand span:last-child {
    display: none;
  }

  .header-cta {
    padding: 9px 12px;
  }

  h1 {
    font-size: 54px;
  }

  h2 {
    font-size: 36px;
  }

  .button {
    width: 100%;
  }

  .hero-actions,
  .wood-stats,
  .site-footer {
    flex-direction: column;
    align-items: stretch;
  }
}
