/* Landing — graphic panels: solid outline + same-color opaque shadow (STYLEGUIDE.md) */
.landing-main {
  overflow-x: clip;
}

/* ---------- Panel system (Bakbak-first landing) ---------- */
body.landing.arcade {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  line-height: 1.58;
}

body.landing .eg-panel {
  --eg-line: var(--eg-ink);
  --eg-b: var(--eg-w);
  --eg-s: var(--eg-shift);
  border: var(--eg-b) solid var(--eg-line);
  box-shadow: var(--eg-s) var(--eg-s) 0 var(--eg-line);
  background: #fff;
  color: var(--ink);
}

body.landing .eg-panel--tight {
  --eg-b: var(--eg-w-tight);
  --eg-s: var(--eg-shift-tight);
}

body.landing .eg-line-leaf {
  --eg-line: var(--eg-leaf);
}

body.landing .eg-line-purple {
  --eg-line: var(--eg-purple);
}

body.landing .eg-line-gold {
  --eg-line: var(--eg-gold);
}

body.landing .eg-line-mint {
  --eg-line: var(--eg-mint);
}

body.landing .eg-panel--on-dark {
  --eg-line: var(--eg-cream);
  background: rgba(6, 4, 14, 0.82);
  color: #faf8ff;
}

body.landing .eg-panel--hero-copy {
  padding: clamp(1.75rem, 4.5vw, 2.85rem);
  max-width: 34rem;
}

body.landing .eg-panel--inset {
  padding: clamp(1.75rem, 4vw, 3rem);
}

body.landing .eg-panel--statement {
  padding: clamp(2.25rem, 5vw, 3.75rem);
  text-align: center;
  max-width: 52rem;
  margin-inline: auto;
}

body.landing .eg-panel--chapter {
  padding: clamp(1.25rem, 2.5vw, 1.75rem);
  margin-bottom: clamp(28px, 5vw, 44px);
}

body.landing .eg-panel--pxl-frame {
  border-radius: 0;
}

body.landing .eg-block-tag {
  display: block;
  width: min(168px, 42vw);
  height: 14px;
  margin: 0 0 1.35rem;
  background: linear-gradient(90deg, var(--eg-purple), var(--eg-gold), var(--eg-leaf));
  border: var(--eg-w-tight) solid var(--purple-950);
  box-shadow: var(--eg-shift-tight) var(--eg-shift-tight) 0 var(--purple-950);
}

body.landing .eg-block-tag--center {
  margin-left: auto;
  margin-right: auto;
}

body.landing .eg-block-tag--on-dark {
  border-color: var(--eg-cream);
  box-shadow: var(--eg-shift-tight) var(--eg-shift-tight) 0 var(--eg-cream);
}

/* Section transitions — full-width color bars */
body.landing .im-statement {
  border-top: 8px solid var(--eg-ink);
}

body.landing .im-try-pxl {
  border-top: 8px solid var(--eg-leaf);
}

body.landing .im-chapters {
  border-top: 8px solid var(--eg-gold);
}

body.landing .im-subjects {
  border-top: 8px solid var(--eg-purple);
}

body.landing .im-world {
  border-top: 8px solid var(--eg-mint);
}

body.landing .im-showcase {
  border-top: 8px solid var(--eg-gold);
}

body.landing .im-pricing-wrap {
  border-top: 8px solid var(--eg-ink);
}

body.landing .im-stories {
  border-top: 8px solid var(--eg-leaf);
}

body.landing .im-faq-wrap {
  border-top: 8px solid var(--eg-purple);
}

body.landing .im-finale {
  border-top: 8px solid var(--eg-gold);
}

body.landing .site-header {
  border-bottom: 4px solid var(--eg-ink);
}

body.landing .parent-banner {
  border-bottom: 3px solid var(--eg-ink);
}

/* Landing buttons: rounded + soft, close shadow (inherits radius from .btn sizes) */
body.landing .btn {
  border-radius: 12px;
  font-family: var(--font-display);
  border-width: 2px;
  border-style: solid;
  box-shadow: var(--shadow-pop-sm);
}

body.landing .btn:hover {
  filter: brightness(1.03);
}

body.landing .btn-primary {
  border-color: #0d3d2a;
  box-shadow: 4px 4px 0 #0d3d2a;
}

body.landing .btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 5px 5px 0 #0d3d2a;
}

body.landing .btn-ghost {
  background: #fff;
  border-color: var(--eg-ink);
  box-shadow: 3px 3px 0 var(--eg-ink);
}

body.landing .btn-ghost:hover {
  background: var(--surface-lavender);
  border-color: var(--eg-ink);
  box-shadow: 4px 4px 0 var(--eg-ink);
}

body.landing .btn-secondary {
  border: 2px solid var(--eg-ink);
  box-shadow: 3px 3px 0 var(--eg-ink);
}

body.landing .btn-secondary:hover {
  box-shadow: 4px 4px 0 var(--eg-ink);
}

body.landing .btn:active {
  transform: translateY(1px);
  box-shadow: 2px 2px 0 var(--eg-ink);
}

body.landing .btn-primary:active {
  box-shadow: 2px 2px 0 #0d3d2a;
}

body.landing .btn-lg {
  border-radius: 16px;
  box-shadow: 5px 5px 0 #0d3d2a;
}

body.landing .btn-lg.btn-ghost {
  box-shadow: 4px 4px 0 var(--eg-ink);
}

body.landing .im-btn-glow {
  box-shadow: 5px 5px 0 #0d3d2a;
}

/* Legacy class — same look as .eg-block-tag (prefer .eg-block-tag in new markup) */
body.landing .lg-stripe {
  display: block;
  width: min(168px, 42vw);
  height: 14px;
  margin: 0 0 1.35rem;
  background: linear-gradient(90deg, var(--eg-purple), var(--eg-gold), var(--eg-leaf));
  border: var(--eg-w-tight) solid var(--purple-950);
  box-shadow: var(--eg-shift-tight) var(--eg-shift-tight) 0 var(--purple-950);
  border-radius: 0;
}

body.landing .lg-stripe--center {
  margin-left: auto;
  margin-right: auto;
}

body.landing .lg-stripe--on-dark {
  border-color: var(--eg-cream);
  box-shadow: var(--eg-shift-tight) var(--eg-shift-tight) 0 var(--eg-cream);
}

.im-chapter-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
}

.im-chapter--flip .im-chapter-inner {
  direction: rtl;
}

.im-chapter--flip .im-chapter-inner > * {
  direction: ltr;
}

/* Warm paper grain — no diagonal tech grid */
body.landing.arcade::before {
  opacity: 0.65;
  background-image:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(255, 255, 255, 0.85), transparent 50%),
    radial-gradient(ellipse 50% 45% at 8% 90%, rgba(238, 248, 242, 0.5), transparent 55%),
    radial-gradient(ellipse 45% 40% at 92% 75%, rgba(244, 240, 255, 0.45), transparent 52%),
    repeating-linear-gradient(0deg, transparent 0 4px, rgba(109, 40, 217, 0.012) 4px 5px),
    repeating-linear-gradient(90deg, transparent 0 4px, rgba(31, 157, 106, 0.01) 4px 5px);
}

body.landing .hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.28;
  mix-blend-mode: multiply;
  background:
    radial-gradient(ellipse 70% 55% at 15% 85%, rgba(210, 198, 186, 0.55), transparent 52%),
    radial-gradient(ellipse 55% 45% at 82% 18%, rgba(255, 255, 255, 0.4), transparent 48%),
    radial-gradient(ellipse 40% 35% at 48% 48%, rgba(200, 190, 220, 0.12), transparent 60%);
}

[id="interests"],
[id="journey-world"],
[id="journey-showcase"],
[id="journey-grow"],
[id="gen-z-communities"],
[id="try-pxl"],
[id="subjects"],
[id="pricing"],
[id="roadmap"],
[id="statement"],
[id="chapters"],
[id="world"],
[id="showcase"],
[id="stories"],
[id="faq"] {
  scroll-margin-top: calc(var(--header-h) + 52px);
}

/* Cinematic hero */
body.landing .hero.im-hero {
  min-height: min(100dvh, 900px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-bottom: 4.5rem;
}

body.landing .im-hero-title {
  font-size: clamp(2.25rem, 6.2vw, 3.95rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

body.landing .im-hero-eyebrow {
  font-family: var(--font-mono);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.68rem;
}

body.landing .im-hero-sub {
  font-size: 1.08rem;
  font-weight: 500;
  line-height: 1.6;
  max-width: 38rem;
  color: var(--text-dim);
}

body.landing .im-hero-sub strong {
  color: var(--ink);
  font-weight: 700;
}

body.landing .im-hero-pills li {
  border-radius: 999px;
  border-width: 2px;
}

.im-scroll-hint {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-dim);
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  text-decoration: none;
  z-index: 6;
  opacity: 0.85;
  animation: im-scroll-pulse 2.4s ease-in-out infinite;
}

.im-scroll-hint-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(180deg, var(--lime), transparent);
  border-radius: 1px;
}

.im-scroll-hint:hover {
  color: var(--lime);
  opacity: 1;
}

@keyframes im-scroll-pulse {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
    opacity: 0.75;
  }
  50% {
    transform: translateX(-50%) translateY(6px);
    opacity: 1;
  }
}

/* Statement band — cinematic beat */
.im-statement {
  position: relative;
  padding: clamp(72px, 14vw, 140px) 0;
  border-bottom: 2px solid var(--stroke);
}

.im-statement-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 65% 50% at 30% 40%, rgba(255, 252, 248, 0.9), transparent 58%),
    radial-gradient(ellipse 50% 40% at 75% 65%, rgba(232, 224, 214, 0.5), transparent 52%),
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(201, 162, 39, 0.14), transparent 55%),
    radial-gradient(ellipse 50% 40% at 100% 80%, rgba(109, 40, 217, 0.08), transparent 50%),
    linear-gradient(180deg, #ffffff 0%, var(--surface-beige) 100%);
  pointer-events: none;
}

/* Vine garland — bottom edge */
.im-statement-bg::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 18px;
  opacity: 0.26;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 160 14' preserveAspectRatio='none'%3E%3Cpath d='M0 9 Q40 2 80 9 T160 9' fill='none' stroke='%231f9d6a' stroke-width='1'/%3E%3Cpath d='M0 11 Q50 5 100 11 T200 11' fill='none' stroke='%236d28d9' stroke-width='0.7' opacity='0.65'/%3E%3C/svg%3E")
    repeat-x;
  background-size: 180px 100%;
  pointer-events: none;
}

.im-statement-bg::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 22px;
  opacity: 0.18;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 20' preserveAspectRatio='none'%3E%3Cpath d='M0 14 Q50 4 100 14 T200 14' fill='none' stroke='%23c9a227' stroke-width='0.7' opacity='0.9'/%3E%3C/svg%3E")
    repeat-x;
  background-size: 220px 100%;
  pointer-events: none;
}

.im-statement-inner {
  position: relative;
  max-width: 52rem;
  margin-inline: auto;
  text-align: center;
}

.im-kicker {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--leaf-700);
  margin: 0 0 14px;
}

.im-kicker--gold {
  color: var(--gold);
}

.im-kicker--dim {
  color: var(--text-dim);
}

.im-statement-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.8vw, 3.35rem);
  font-weight: 400;
  line-height: 1.08;
  margin: 0 0 22px;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.im-statement-title em {
  font-style: normal;
  background: linear-gradient(105deg, var(--leaf-700), var(--gold), var(--purple-600));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.im-statement-lede {
  margin: 0;
  font-size: 1.125rem;
  line-height: 1.65;
  font-weight: 500;
  color: var(--text-dim);
  max-width: 40rem;
  margin-inline: auto;
}

/* PXL embed — try the editor on egg.ac */
.im-try-pxl {
  position: relative;
  padding: clamp(48px, 9vw, 88px) 0 clamp(56px, 10vw, 96px);
  background: linear-gradient(180deg, var(--surface-beige) 0%, #fff 40%, var(--surface-lavender) 100%);
  border-bottom: 2px solid var(--stroke);
}

.im-try-pxl-head {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 28px;
}

.im-try-pxl-title {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4.2vw, 2.85rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin: 0 0 14px;
  color: var(--ink);
}

.im-try-pxl-lede {
  margin: 0 0 16px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text-dim);
}

.im-try-pxl-lede a {
  color: var(--purple-600);
  font-weight: 600;
  text-decoration: none;
}

.im-try-pxl-lede a:hover {
  text-decoration: underline;
}

.im-try-pxl-actions {
  margin: 0;
}

.im-try-pxl-frame {
  position: relative;
  height: min(75vh, 720px);
  min-height: 420px;
  border-radius: 22px;
  overflow: hidden;
  border: 2px solid var(--stroke);
  background: #0f0a18;
  box-shadow:
    var(--shadow-pop-sm),
    0 0 0 1px rgba(109, 40, 217, 0.06),
    0 28px 56px rgba(30, 22, 51, 0.1);
}

.im-try-pxl-iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.im-try-pxl-foot {
  margin: 16px 0 0;
  text-align: center;
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--text-dim);
}

.im-try-pxl-foot a {
  color: var(--purple-600);
  font-weight: 600;
  text-decoration: none;
}

.im-try-pxl-foot a:hover {
  text-decoration: underline;
}

@media (max-width: 720px) {
  .im-try-pxl-frame {
    height: min(68vh, 560px);
    min-height: 360px;
  }
}

body.arcade .im-try-pxl-title {
  font-weight: 400;
}

.im-section-title {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.6vw, 2.65rem);
  font-weight: 400;
  line-height: 1.1;
  margin: 0 0 12px;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.im-section-title--light {
  color: var(--ink);
}

.im-section-lede {
  margin: 0;
  font-size: 1.06rem;
  line-height: 1.6;
  font-weight: 500;
  color: var(--text-dim);
  max-width: 36rem;
}

.im-section-lede--dim {
  color: var(--text-dim);
}

/* Chapters — alternating feature rows (Discord-style) */
.im-chapters {
  position: relative;
  padding: clamp(56px, 10vw, 100px) 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 100%, rgba(255, 255, 255, 0.35), transparent 55%),
    linear-gradient(180deg, #fff 0%, var(--surface-beige) 35%, var(--surface-lavender) 70%, var(--surface-mint) 100%);
  border-bottom: 2px solid var(--stroke);
}

/* Vine band under section title area */
.im-chapters::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: clamp(52px, 9vw, 88px);
  height: 16px;
  opacity: 0.12;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 180 14' preserveAspectRatio='none'%3E%3Cpath d='M0 8 C45 0 90 14 135 7 S180 4 180 10' fill='none' stroke='%231f9d6a' stroke-width='0.85'/%3E%3Cpath d='M0 11 C60 3 120 12 180 8' fill='none' stroke='%236d28d9' stroke-width='0.55' opacity='0.7'/%3E%3C/svg%3E")
    repeat-x;
  background-size: 240px 100%;
  pointer-events: none;
}

.im-chapters-head {
  text-align: center;
  max-width: 40rem;
  margin-inline: auto;
  margin-bottom: clamp(36px, 6vw, 56px);
}

.im-chapter {
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: clamp(28px, 5vw, 48px);
  padding: clamp(22px, 3.5vw, 32px);
  background: var(--surface-raised);
  border-radius: 24px;
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow-soft);
}

.im-chapter--a {
  border-left: 5px solid var(--leaf-500);
}

.im-chapter--b {
  border-left: 5px solid var(--purple-600);
}

.im-chapter--c {
  border-left: 5px solid var(--gold);
}

.im-chapter--d {
  border-left: 5px solid var(--leaf-300);
}

.im-chapter-visual {
  position: relative;
  min-height: 240px;
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  overflow: hidden;
  color: var(--violet);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.im-chapter-visual--studio {
  background: linear-gradient(145deg, #ede4f8 0%, #c8efd9 100%);
}

.im-chapter-visual--gear {
  background: linear-gradient(145deg, #f0e6d8 0%, #e4d8f7 100%);
  color: var(--purple-600);
}

.im-chapter-visual--stage {
  background: linear-gradient(145deg, #d4f0e4 0%, #e8e0d4 100%);
  color: var(--leaf-700);
}

.im-chapter-visual--live {
  background: linear-gradient(145deg, #ddd6fe 0%, #a78bfa 35%, #5ecf8c 100%);
  color: #3b2f5c;
}

.im-chapter-glow {
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.5), transparent 45%);
  pointer-events: none;
  animation: im-glow-drift 10s ease-in-out infinite;
}

.im-chapter-glow--pink {
  background: radial-gradient(circle at 60% 30%, rgba(167, 139, 250, 0.4), transparent 50%);
}

.im-chapter-glow--cyan {
  background: radial-gradient(circle at 30% 60%, rgba(94, 207, 140, 0.38), transparent 50%);
}

.im-chapter-glow--violet {
  background: radial-gradient(circle at 50% 40%, rgba(124, 58, 237, 0.35), transparent 50%);
}

@keyframes im-glow-drift {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(4%, -3%) scale(1.05);
  }
}

.im-chapter-svg {
  position: relative;
  width: 100%;
  max-width: 300px;
  height: auto;
  margin: auto;
  z-index: 1;
}

.im-chapter-copy {
  padding: 8px 4px;
}

.im-chapter-num {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--purple-600);
  margin-bottom: 8px;
}

.im-chapter-title {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 400;
  margin: 0 0 12px;
  color: var(--ink);
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.im-chapter-text {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.6;
  font-weight: 500;
  color: var(--text-dim);
}

/* Subjects carousel — digital subjects × studio devices */
.im-subjects {
  position: relative;
  padding: clamp(56px, 10vw, 96px) 0 clamp(48px, 8vw, 72px);
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(109, 40, 217, 0.06), transparent 55%),
    linear-gradient(180deg, var(--surface-mint) 0%, #fff 45%, var(--surface-lavender) 100%);
  border-bottom: 2px solid var(--stroke);
  overflow: hidden;
}

.im-subjects-head {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto clamp(32px, 5vw, 48px);
}

.im-subjects-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 2.85rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 0 0 16px;
  color: var(--ink);
}

.im-subjects-lede {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.65;
  font-weight: 500;
  color: var(--text-dim);
  max-width: 38rem;
  margin-inline: auto;
}

.im-subjects-viewport {
  position: relative;
  margin-top: 8px;
}

.im-subjects-viewport::before,
.im-subjects-viewport::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 48px;
  width: clamp(24px, 5vw, 48px);
  z-index: 2;
  pointer-events: none;
}

.im-subjects-viewport::before {
  left: 0;
  background: linear-gradient(90deg, var(--surface-mint) 0%, transparent 100%);
}

.im-subjects-viewport::after {
  right: 0;
  background: linear-gradient(-90deg, var(--surface-lavender) 0%, transparent 100%);
}

.im-subjects-rail {
  display: flex;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: clamp(20px, 5vw, 72px);
  gap: 0;
  padding: 12px 0 28px;
  padding-inline: clamp(20px, 5vw, 72px);
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(109, 40, 217, 0.35) transparent;
  outline: none;
}

.im-subjects-rail:focus-visible {
  box-shadow: inset 0 0 0 2px var(--purple-600);
  border-radius: 12px;
}

.im-subjects-rail::-webkit-scrollbar {
  height: 6px;
}

.im-subjects-rail::-webkit-scrollbar-thumb {
  background: rgba(109, 40, 217, 0.3);
  border-radius: 999px;
}

.im-subjects-track {
  display: flex;
  flex-direction: row;
  gap: 16px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.im-subject-card {
  flex: 0 0 min(280px, 82vw);
  scroll-snap-align: start;
  scroll-snap-stop: always;
  padding: 24px 22px 26px;
  border-radius: 22px;
  border: 1px solid var(--stroke);
  background: #fff;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition:
    transform 0.3s var(--ease-out),
    border-color 0.25s ease,
    box-shadow 0.3s ease;
}

.im-subject-card:hover {
  transform: translateY(-5px);
  border-color: rgba(109, 40, 217, 0.22);
  box-shadow: var(--shadow-pop-sm), 0 20px 48px rgba(30, 22, 51, 0.08);
}

.im-subject-device {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--purple-600);
  background: linear-gradient(145deg, var(--surface-lavender), var(--surface-mint));
  border: 1px solid rgba(109, 40, 217, 0.12);
}

.im-subject-device svg {
  width: 32px;
  height: 32px;
}

.im-subject-device-name {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--leaf-700);
}

.im-subject-name {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.15;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.im-subject-blurb {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--text-dim);
}

.im-subjects-hint {
  margin: 0;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-dim);
  opacity: 0.85;
  padding-top: 4px;
}

@media (prefers-reduced-motion: reduce) {
  .im-subject-card {
    transition: none;
  }

  .im-subject-card:hover {
    transform: none;
  }
}

/* World — dark “arena” band: HoYoverse-style punch + clean scroll sweep (no literal train SVG) */
.im-world {
  --world-progress: 0;
  --world-pop: 0;
  position: relative;
  padding: clamp(40px, 7vw, 64px) 0 clamp(72px, 12vw, 128px);
  border-bottom: none;
  overflow: hidden;
  background: #0c0614;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.im-world::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  z-index: 8;
  background: linear-gradient(90deg, transparent, #34d399, #e8c84a, #c4b5fd, transparent);
  pointer-events: none;
}

.im-world-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 120% 90% at 50% -30%, rgba(124, 58, 237, 0.45), transparent 52%),
    radial-gradient(ellipse 80% 70% at 100% 40%, rgba(31, 157, 106, 0.22), transparent 48%),
    radial-gradient(ellipse 70% 60% at 0% 80%, rgba(201, 162, 39, 0.12), transparent 50%),
    linear-gradient(168deg, #140a22 0%, #1a0f2e 38%, #0f1f18 72%, #0a1410 100%);
  pointer-events: none;
  z-index: 0;
}

.im-world-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 18' preserveAspectRatio='none'%3E%3Cpath d='M0 12 Q50 2 100 12 T200 12' fill='none' stroke='%2334d399' stroke-width='0.9' opacity='0.5'/%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 120' preserveAspectRatio='none'%3E%3Cpath d='M6 0 Q2 45 18 88 T28 120' fill='none' stroke='%23a78bfa' stroke-width='0.5' opacity='0.35'/%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 120' preserveAspectRatio='none'%3E%3Cpath d='M94 0 Q98 48 82 90 T72 120' fill='none' stroke='%2334d399' stroke-width='0.45' opacity='0.3'/%3E%3C/svg%3E");
  background-size:
    200px 16px,
    80px 50%,
    80px 50%;
  background-position:
    0 0,
    0 12%,
    100% 12%;
  background-repeat: repeat-x, no-repeat, no-repeat;
  pointer-events: none;
}

.im-world-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background-image: linear-gradient(115deg, transparent 40%, rgba(255, 255, 255, 0.04) 50%, transparent 60%);
  background-size: 200% 100%;
  pointer-events: none;
}

/* Full-bleed transition strip — blurred light sweep (scroll: --world-progress) */
.im-world-reveal {
  position: relative;
  z-index: 4;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  height: clamp(56px, 9vw, 76px);
  margin-bottom: clamp(1rem, 3vw, 1.75rem);
  overflow: hidden;
  pointer-events: none;
}

.im-world-reveal-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(124, 58, 237, 0.15) 0%, transparent 55%, rgba(31, 157, 106, 0.08) 100%);
}

.im-world-reveal-sweep {
  position: absolute;
  top: -40%;
  left: 0;
  width: min(52vw, 420px);
  height: 180%;
  background: linear-gradient(
    100deg,
    transparent 0%,
    rgba(255, 255, 255, 0.06) 35%,
    rgba(200, 180, 255, 0.35) 50%,
    rgba(167, 243, 208, 0.28) 62%,
    transparent 100%
  );
  filter: blur(20px);
  transform: translateX(calc((100vw + 100%) * var(--world-progress) - 100%));
  will-change: transform;
}

.im-world-reveal-sheen {
  position: absolute;
  top: 22%;
  left: 0;
  width: min(28vw, 200px);
  height: 44%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  opacity: 0.55;
  transform: translateX(calc((100vw + 100%) * var(--world-progress) - 100%)) skewX(-12deg);
  will-change: transform;
}

.im-world-reveal-chrome {
  position: absolute;
  left: 6%;
  right: 6%;
  bottom: 10px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, transparent, rgba(52, 211, 153, 0.5), rgba(232, 200, 74, 0.7), rgba(196, 181, 253, 0.6), transparent);
  box-shadow: 0 0 24px rgba(124, 58, 237, 0.35);
}

/* Content “locks in” as you scroll (--world-pop) */
.im-world-inner {
  position: relative;
  z-index: 3;
  opacity: calc(0.55 + 0.45 * var(--world-pop));
  transform: translateY(calc((1 - var(--world-pop)) * 48px)) scale(calc(0.96 + 0.04 * var(--world-pop)));
  transform-origin: 50% 0;
}

.im-world .shell {
  position: relative;
}

.im-world-head {
  text-align: center;
  max-width: 46rem;
  margin: 0 auto clamp(28px, 5vw, 44px);
  padding-bottom: 0;
  border-bottom: none;
}

.im-kicker-world {
  color: #a7f3d0;
  letter-spacing: 0.18em;
  margin-bottom: 14px;
}

.im-world-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0 0 20px;
  color: #faf8ff;
  text-shadow: 0 0 48px rgba(124, 58, 237, 0.2);
}

.im-world-title-accent {
  font-style: normal;
  background: linear-gradient(105deg, #6ee7b7, #fbbf24, #c4b5fd);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 28px rgba(167, 243, 208, 0.35));
}

.im-world-lede {
  margin: 0 auto;
  font-size: clamp(1.02rem, 2.1vw, 1.2rem);
  line-height: 1.65;
  color: rgba(245, 240, 255, 0.78);
  max-width: 40rem;
}

.im-world-lede strong {
  color: #fff;
  font-weight: 700;
}

.im-world-lede em {
  color: #a7f3d0;
  font-style: normal;
  font-weight: 600;
}

.im-spotlight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.im-spotlight {
  padding: 26px 24px;
  border-radius: 22px;
  border: 1px solid var(--stroke);
  background: #fff;
  box-shadow: var(--shadow-soft);
  transition:
    transform 0.35s var(--ease-out),
    border-color 0.3s ease,
    box-shadow 0.35s ease;
}

.im-spotlight:hover {
  transform: translateY(-6px);
  border-color: rgba(31, 157, 106, 0.35);
  box-shadow: var(--shadow-soft);
}

.im-spotlight-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--surface-mint);
  border: 2px solid rgba(109, 40, 217, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--leaf-700);
  margin-bottom: 16px;
}

.im-spotlight-icon svg {
  width: 22px;
  height: 22px;
}

.im-spotlight-title {
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 400;
  margin: 0 0 10px;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.im-spotlight p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--text-dim);
}

/* World section: glass cards on dark (promo-site energy) */
.im-world .im-spotlight-grid {
  gap: 20px;
}

.im-world .im-spotlight {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.35);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.im-world .im-spotlight:hover {
  border-color: rgba(167, 243, 208, 0.35);
  box-shadow:
    0 0 0 1px rgba(167, 243, 208, 0.2),
    0 28px 56px rgba(0, 0, 0, 0.4),
    0 0 72px rgba(124, 58, 237, 0.22);
  transform: translateY(-8px);
}

.im-world .im-spotlight-icon {
  background: rgba(124, 58, 237, 0.2);
  border-color: rgba(255, 255, 255, 0.2);
  color: #a7f3d0;
}

.im-world .im-spotlight-title {
  color: #faf8ff;
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  font-weight: 400;
}

.im-world .im-spotlight p {
  color: rgba(230, 225, 245, 0.75);
}

/* Live showcase — portal, stage, step-through rail */
.im-showcase {
  --showcase-depth: 0;
  position: relative;
  padding: clamp(56px, 10vw, 100px) 0 clamp(48px, 9vw, 88px);
  background: #05030a;
  border-bottom: 2px solid rgba(251, 191, 36, 0.15);
  overflow: hidden;
}

.im-showcase-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 90% 70% at 50% -10%, rgba(251, 191, 36, 0.12), transparent 52%),
    radial-gradient(ellipse 60% 50% at 15% 80%, rgba(124, 58, 237, 0.2), transparent 50%),
    radial-gradient(ellipse 55% 45% at 88% 75%, rgba(52, 211, 153, 0.08), transparent 48%),
    linear-gradient(180deg, #12081c 0%, #06030e 45%, #030208 100%);
  z-index: 0;
}

.im-showcase-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background: radial-gradient(ellipse 50% 40% at 30% 20%, rgba(255, 255, 255, 0.04), transparent 55%);
  mix-blend-mode: overlay;
  pointer-events: none;
}

.im-showcase-hero {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 44rem;
  margin: 0 auto clamp(8px, 2vw, 20px);
}

.im-kicker-showcase {
  color: #fcd34d;
  letter-spacing: 0.16em;
  text-shadow: 0 0 24px rgba(251, 191, 36, 0.35);
}

.im-showcase-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.8vw, 3.15rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0 0 18px;
  color: #fffaf0;
  text-shadow:
    0 0 60px rgba(196, 181, 253, 0.25),
    0 2px 20px rgba(0, 0, 0, 0.5);
}

.im-showcase-lede {
  margin: 0;
  font-size: clamp(1.02rem, 2vw, 1.12rem);
  line-height: 1.65;
  color: rgba(250, 245, 255, 0.78);
}

.im-showcase-lede strong {
  color: #fef3c7;
  font-weight: 700;
}

.im-showcase-lede em {
  color: #a7f3d0;
  font-style: normal;
  font-weight: 600;
}

.im-showcase-visual {
  position: relative;
  z-index: 1;
  max-width: min(920px, 100%);
  margin: clamp(12px, 3vw, 28px) auto clamp(20px, 4vw, 36px);
  height: min(46vh, 440px);
  min-height: 280px;
}

.im-showcase-portal-scale {
  position: relative;
  width: 100%;
  height: 100%;
  transform: scale(calc(0.88 + var(--showcase-depth) * 0.12));
  transform-origin: 50% 45%;
  transition: transform 0.12s linear;
  will-change: transform;
}

.im-showcase-svg {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  box-shadow:
    0 0 0 1px rgba(251, 191, 36, 0.12),
    0 24px 80px rgba(0, 0, 0, 0.55),
    0 0 120px rgba(124, 58, 237, 0.15);
}

.im-showcase-rings {
  transform-origin: 450px 248px;
  animation: im-showcase-breathe 7s ease-in-out infinite;
}

@keyframes im-showcase-breathe {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.018);
    opacity: 0.94;
  }
}

.im-showcase-portal-shine {
  position: absolute;
  inset: 0;
  border-radius: 20px;
  pointer-events: none;
  background: radial-gradient(ellipse 42% 48% at 50% 38%, rgba(255, 255, 255, 0.14), transparent 65%);
  mix-blend-mode: screen;
  opacity: calc(0.35 + var(--showcase-depth) * 0.45);
  transition: opacity 0.15s linear;
}

.im-showcase-rail-hint {
  position: relative;
  z-index: 2;
  margin: 0 auto 10px;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(253, 230, 138, 0.55);
}

.im-showcase-rail-wrap {
  position: relative;
  z-index: 2;
  margin-bottom: clamp(28px, 5vw, 44px);
}

.im-showcase-rail-wrap::before,
.im-showcase-rail-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 24px;
  width: clamp(28px, 6vw, 56px);
  z-index: 3;
  pointer-events: none;
}

.im-showcase-rail-wrap::before {
  left: 0;
  background: linear-gradient(90deg, #05030a 0%, transparent 100%);
}

.im-showcase-rail-wrap::after {
  right: 0;
  background: linear-gradient(-90deg, #05030a 0%, transparent 100%);
}

.im-showcase-rail {
  display: flex;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: clamp(20px, 5vw, 72px);
  padding: 8px 0 32px;
  padding-inline: clamp(20px, 5vw, 72px);
  scrollbar-width: thin;
  scrollbar-color: rgba(251, 191, 36, 0.35) transparent;
  outline: none;
}

.im-showcase-rail:focus-visible {
  box-shadow: inset 0 0 0 2px rgba(251, 191, 36, 0.45);
  border-radius: 12px;
}

.im-showcase-rail::-webkit-scrollbar {
  height: 6px;
}

.im-showcase-rail::-webkit-scrollbar-thumb {
  background: rgba(251, 191, 36, 0.35);
  border-radius: 999px;
}

.im-showcase-track {
  display: flex;
  flex-direction: row;
  gap: 18px;
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: showcase-step;
}

.im-showcase-step {
  flex: 0 0 min(300px, 85vw);
  scroll-snap-align: start;
  scroll-snap-stop: always;
  padding: 24px 22px 26px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition:
    transform 0.35s var(--ease-out),
    border-color 0.3s ease,
    box-shadow 0.35s ease;
}

.im-showcase-step:hover {
  transform: translateY(-4px);
  border-color: rgba(253, 230, 138, 0.25);
  box-shadow: 0 28px 56px rgba(0, 0, 0, 0.45);
}

.im-showcase-step--portal {
  border-color: rgba(196, 181, 253, 0.45);
  box-shadow:
    0 0 0 1px rgba(124, 58, 237, 0.25),
    0 24px 56px rgba(124, 58, 237, 0.12);
  background: linear-gradient(165deg, rgba(124, 58, 237, 0.12) 0%, rgba(255, 255, 255, 0.03) 100%);
}

.im-showcase-step-num {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: #fcd34d;
  margin-bottom: 12px;
}

.im-showcase-step-title {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: #fffaf0;
}

.im-showcase-step-copy {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: rgba(230, 225, 245, 0.72);
}

.im-showcase-outro {
  position: relative;
  z-index: 2;
  text-align: center;
}

.im-showcase-tagline {
  margin: 0 0 20px;
  font-size: 1.05rem;
  color: rgba(250, 245, 255, 0.8);
}

.im-showcase-tagline strong {
  color: #fef3c7;
}

@media (prefers-reduced-motion: reduce) {
  .im-showcase-rings {
    animation: none;
  }

  .im-showcase-portal-scale {
    transition: none;
    transform: scale(1);
  }

  .im-showcase-step {
    transition: none;
  }

  .im-showcase-step:hover {
    transform: none;
  }

  [data-showcase-depth] {
    --showcase-depth: 1 !important;
  }
}

@media (max-width: 720px) {
  .im-showcase-visual {
    height: min(40vh, 360px);
    min-height: 240px;
  }
}

/* Pricing — clean comparison */
.im-pricing-wrap {
  padding: clamp(56px, 9vw, 96px) 0;
  background: linear-gradient(180deg, #ffffff 0%, var(--surface-lavender) 100%);
  border-bottom: 2px solid var(--stroke);
}

.im-pricing-head {
  text-align: center;
  max-width: 38rem;
  margin: 0 auto 36px;
}

.im-pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  max-width: 880px;
  margin-inline: auto;
}

.im-price {
  position: relative;
  padding: 32px 28px;
  border-radius: 24px;
  border: 1px solid var(--stroke);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.im-price--pro {
  background: linear-gradient(165deg, #fff 0%, #f4f0ff 100%);
  border-color: rgba(109, 40, 217, 0.22);
  box-shadow: var(--shadow-soft), 0 0 0 1px rgba(109, 40, 217, 0.08);
}

.im-price-ribbon {
  position: absolute;
  top: 16px;
  right: 18px;
  margin: 0;
  font-family: var(--font-mono);
  font-size: 0.58rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #fff;
  background: var(--purple-800);
  padding: 6px 10px;
  border-radius: 8px;
  border: 2px solid var(--gold);
}

.im-price-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--purple-600);
  margin: 0 0 8px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.im-price-amount {
  font-family: var(--font-display);
  font-size: 2.35rem;
  font-weight: 400;
  margin: 0 0 12px;
  color: #12081f;
  line-height: 1;
}

.im-price-amount strong {
  color: var(--purple-600);
}

.im-price-unit {
  font-size: 1rem;
  color: #6b5a7a;
}

.im-price-desc {
  margin: 0 0 18px;
  font-size: 0.95rem;
  color: #5c4d70;
  line-height: 1.45;
}

.im-price-list {
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
  font-size: 0.9rem;
  color: #3d3350;
}

.im-price-list li {
  padding: 8px 0;
  border-top: 1px dashed rgba(0, 0, 0, 0.1);
}

.im-price-list li:first-child {
  border-top: 0;
  padding-top: 0;
}

.im-price-list li::before {
  content: "→ ";
  color: var(--leaf-500);
  font-weight: 700;
}

.im-price-foot {
  text-align: center;
  margin: 28px 0 0;
  font-size: 0.88rem;
  color: #6b5a7a;
}

/* Stories row */
.im-stories {
  padding: clamp(48px, 8vw, 80px) 0;
  background: linear-gradient(180deg, var(--surface-beige) 0%, #fff 50%, var(--surface-mint) 100%);
  border-bottom: 2px solid var(--stroke);
}

.im-stories-head {
  text-align: center;
  max-width: 36rem;
  margin: 0 auto 32px;
}

.im-stories-head .im-section-title {
  color: var(--ink);
}

.im-stories-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.im-story-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 24px 22px;
  border-radius: 22px;
  border: 1px solid var(--stroke);
  background: #fff;
  text-decoration: none;
  color: inherit;
  box-shadow: var(--shadow-soft);
  transition:
    transform 0.3s var(--ease-out),
    border-color 0.25s ease,
    background 0.25s ease;
}

.im-story-card:hover {
  transform: translate(-3px, -3px);
  border-color: rgba(31, 157, 106, 0.35);
  background: var(--surface-mint);
}

.im-story-tag {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--purple-600);
}

.im-story-title {
  font-family: var(--font-display);
  font-size: 1.06rem;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.im-story-meta {
  font-size: 0.82rem;
  color: var(--leaf-700);
  margin-top: auto;
}

.im-stories-note {
  margin: 20px 0 0;
  font-size: 0.82rem;
  color: var(--text-dim);
  text-align: center;
}

/* FAQ */
.im-faq-wrap {
  padding: clamp(48px, 8vw, 88px) 0;
  background: linear-gradient(180deg, var(--surface-beige) 0%, var(--surface-lavender) 100%);
  border-bottom: 2px solid var(--stroke);
}

.im-faq-shell {
  max-width: 640px;
}

.im-faq-head {
  text-align: center;
  margin: 0 auto 28px;
  max-width: 28rem;
}

.im-faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.im-faq-item {
  border: 2px solid var(--stroke);
  border-radius: 14px;
  padding: 0 18px;
  background: #fff;
  box-shadow: var(--shadow-pop-sm);
}

.im-faq-item summary {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 400;
  padding: 16px 0;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  color: #1a1030;
}

.im-faq-item summary::-webkit-details-marker {
  display: none;
}

.im-faq-item summary::after {
  content: "+";
  font-size: 1.2rem;
  color: var(--purple-600);
  flex-shrink: 0;
}

.im-faq-item[open] summary::after {
  content: "−";
}

.im-faq-item p {
  margin: 0 0 16px;
  font-size: 0.92rem;
  line-height: 1.5;
  color: #5b4a75;
}

.im-faq-item p a {
  color: #5b21b6;
  font-weight: 600;
}

/* Finale CTA */
.im-finale {
  position: relative;
  padding: clamp(72px, 14vw, 120px) 0;
  text-align: center;
  border-bottom: 2px solid var(--stroke);
  overflow: hidden;
}

.im-finale-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 70% at 50% 100%, rgba(31, 157, 106, 0.12), transparent 55%),
    radial-gradient(ellipse 60% 50% at 0% 0%, rgba(201, 162, 39, 0.14), transparent 50%),
    linear-gradient(145deg, #f4f0ff 0%, #ffffff 40%, #f7f3eb 100%);
  pointer-events: none;
}

.im-finale-inner {
  position: relative;
  z-index: 1;
  max-width: 36rem;
  margin-inline: auto;
  text-align: center;
}

.im-finale-kicker {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--purple-600);
  margin: 0 0 12px;
}

.im-finale-title {
  font-family: var(--font-display);
  font-size: clamp(1.95rem, 4vw, 2.85rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 14px;
  color: var(--ink);
}

.im-finale-copy {
  margin: 0 0 28px;
  font-size: 1.05rem;
  color: var(--text-dim);
}

.im-finale-btn {
  min-width: 220px;
}

/* Stagger reveals (head is first child; articles follow) */
.im-chapters .im-chapter:nth-child(2) {
  transition-delay: 0ms;
}
.im-chapters .im-chapter:nth-child(3) {
  transition-delay: 0.06s;
}
.im-chapters .im-chapter:nth-child(4) {
  transition-delay: 0.12s;
}
.im-chapters .im-chapter:nth-child(5) {
  transition-delay: 0.18s;
}

.im-spotlight:nth-child(1) {
  transition-delay: 0ms;
}
.im-spotlight:nth-child(2) {
  transition-delay: 0.07s;
}
.im-spotlight:nth-child(3) {
  transition-delay: 0.14s;
}

.im-story-card:nth-child(1) {
  transition-delay: 0ms;
}
.im-story-card:nth-child(2) {
  transition-delay: 0.06s;
}
.im-story-card:nth-child(3) {
  transition-delay: 0.12s;
}

.im-faq-item:nth-child(1) {
  transition-delay: 0ms;
}
.im-faq-item:nth-child(2) {
  transition-delay: 0.04s;
}
.im-faq-item:nth-child(3) {
  transition-delay: 0.08s;
}
.im-faq-item:nth-child(4) {
  transition-delay: 0.12s;
}

.im-pricing-grid .im-price:nth-child(1) {
  transition-delay: 0ms;
}
.im-pricing-grid .im-price:nth-child(2) {
  transition-delay: 0.1s;
}

body.arcade .im-faq-item summary {
  font-weight: 400;
}

.im-showcase-step:nth-child(1) {
  transition-delay: 0ms;
}
.im-showcase-step:nth-child(2) {
  transition-delay: 0.05s;
}
.im-showcase-step:nth-child(3) {
  transition-delay: 0.1s;
}
.im-showcase-step:nth-child(4) {
  transition-delay: 0.15s;
}
.im-showcase-step:nth-child(5) {
  transition-delay: 0.2s;
}

@media (max-width: 900px) {
  .im-chapter-inner,
  .im-chapter--flip .im-chapter-inner {
    grid-template-columns: 1fr;
    direction: ltr;
  }

  .im-chapter--flip .im-chapter-inner > * {
    direction: ltr;
  }

  .im-spotlight-grid,
  .im-stories-row,
  .im-pricing-grid {
    grid-template-columns: 1fr;
  }

  .im-chapter-visual {
    min-height: 200px;
    order: -1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .im-scroll-hint {
    animation: none;
  }

  .im-chapter-glow {
    animation: none;
  }

  [data-world-station] {
    --world-progress: 1 !important;
    --world-pop: 1 !important;
  }

  .im-world-reveal-sweep,
  .im-world-reveal-sheen {
    will-change: auto;
  }
}

/* ---------- Landing tail: win over legacy component shadows + hard panels everywhere ---------- */
body.landing .im-chapter {
  background: transparent;
  border: none;
  box-shadow: none;
  border-radius: 0;
  padding: 0;
}

body.landing .im-chapter--a,
body.landing .im-chapter--b,
body.landing .im-chapter--c,
body.landing .im-chapter--d {
  border-left: none;
}

body.landing .im-chapter-inner.eg-panel {
  padding: clamp(1.2rem, 2.4vw, 1.85rem);
}

body.landing .im-try-pxl-frame.eg-panel {
  border-radius: 0;
  border-width: var(--eg-b);
  border-style: solid;
  border-color: var(--eg-line);
  box-shadow: var(--eg-s) var(--eg-s) 0 var(--eg-line);
  background: #0f0a18;
}

body.landing .im-hero-title {
  font-size: clamp(2.65rem, 7.5vw, 4.65rem);
  line-height: 1.02;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

body.landing .im-statement-title {
  font-size: clamp(2.15rem, 5.2vw, 3.65rem);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.05;
}

body.landing .im-try-pxl-title {
  text-transform: uppercase;
  letter-spacing: 0.035em;
  font-size: clamp(2rem, 4.5vw, 3.1rem);
  line-height: 1.05;
}

body.landing .im-section-title,
body.landing .im-subjects-title {
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.06;
  font-size: clamp(2rem, 4.2vw, 3.05rem);
}

body.landing .im-world-title {
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: clamp(2.1rem, 5vw, 3.45rem);
}

body.landing .im-showcase-title {
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: clamp(2.2rem, 5.2vw, 3.55rem);
}

body.landing .im-finale-title {
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: clamp(2.05rem, 4.2vw, 3rem);
}

body.landing .im-hero-pills li {
  border-radius: 0;
  border-width: 2px;
  border-style: solid;
  border-color: var(--eg-ink);
  box-shadow: 5px 5px 0 var(--eg-ink);
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

body.landing .im-showcase-svg {
  border-radius: 0;
  border: var(--eg-w-tight) solid var(--eg-gold);
  box-shadow: var(--eg-shift-tight) var(--eg-shift-tight) 0 var(--eg-gold);
}

body.landing .im-showcase-portal-shine {
  border-radius: 0;
}

body.landing .shell.im-showcase-outro.eg-panel {
  max-width: min(40rem, 100%);
  margin-left: auto;
  margin-right: auto;
  padding: clamp(1.65rem, 3.5vw, 2.35rem);
}

body.landing .im-subject-card {
  border-radius: 0;
  --eg-line: var(--eg-ink);
  border: var(--eg-w-tight) solid var(--eg-line);
  box-shadow: var(--eg-shift-tight) var(--eg-shift-tight) 0 var(--eg-line);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

body.landing .im-subjects-track .im-subject-card:nth-child(4n + 1) {
  --eg-line: var(--eg-leaf);
}

body.landing .im-subjects-track .im-subject-card:nth-child(4n + 2) {
  --eg-line: var(--eg-purple);
}

body.landing .im-subjects-track .im-subject-card:nth-child(4n + 3) {
  --eg-line: var(--eg-gold);
}

body.landing .im-subjects-track .im-subject-card:nth-child(4n + 4) {
  --eg-line: var(--eg-mint);
}

body.landing .im-subject-card,
body.landing .im-subject-card:nth-child(n) {
  border-color: var(--eg-line);
  box-shadow: var(--eg-shift-tight) var(--eg-shift-tight) 0 var(--eg-line);
}

body.landing .im-subject-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: calc(var(--eg-shift-tight) + 3px) calc(var(--eg-shift-tight) + 3px) 0 var(--eg-line);
  border-color: var(--eg-line);
}

body.landing .im-world .im-spotlight {
  border-radius: 0;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  background: rgba(6, 4, 14, 0.82);
  border: var(--eg-w-tight) solid var(--eg-cream);
  box-shadow: var(--eg-shift-tight) var(--eg-shift-tight) 0 var(--eg-cream);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

body.landing .im-world .im-spotlight:hover {
  transform: translate(-2px, -2px);
  box-shadow: calc(var(--eg-shift-tight) + 2px) calc(var(--eg-shift-tight) + 2px) 0 var(--eg-cream);
  border-color: var(--eg-cream);
}

body.landing .im-showcase-step {
  border-radius: 0;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  --eg-line: var(--eg-cream);
  background: rgba(6, 4, 14, 0.82);
  border: var(--eg-w-tight) solid var(--eg-line);
  box-shadow: var(--eg-shift-tight) var(--eg-shift-tight) 0 var(--eg-line);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

body.landing .im-showcase-step:hover {
  transform: translate(-2px, -2px);
  box-shadow: calc(var(--eg-shift-tight) + 2px) calc(var(--eg-shift-tight) + 2px) 0 var(--eg-line);
  border-color: var(--eg-line);
}

body.landing .im-showcase-step--portal {
  --eg-line: var(--eg-purple);
  background: rgba(6, 4, 14, 0.9);
}

body.landing .im-price {
  border-radius: 0;
  --eg-line: var(--eg-ink);
  border: var(--eg-w-tight) solid var(--eg-line);
  box-shadow: var(--eg-shift-tight) var(--eg-shift-tight) 0 var(--eg-line);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

body.landing .im-price:hover {
  transform: translate(-2px, -2px);
  box-shadow: calc(var(--eg-shift-tight) + 2px) calc(var(--eg-shift-tight) + 2px) 0 var(--eg-line);
}

body.landing .im-price--pro {
  --eg-line: var(--eg-purple);
  border-color: var(--eg-line);
  box-shadow: var(--eg-shift-tight) var(--eg-shift-tight) 0 var(--eg-line);
  background: #fff;
}

body.landing .im-story-card {
  border-radius: 0;
  --eg-line: var(--eg-ink);
  border: var(--eg-w-tight) solid var(--eg-line);
  box-shadow: var(--eg-shift-tight) var(--eg-shift-tight) 0 var(--eg-line);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

body.landing .im-stories-row .im-story-card:nth-child(3n + 1) {
  --eg-line: var(--eg-leaf);
}

body.landing .im-stories-row .im-story-card:nth-child(3n + 2) {
  --eg-line: var(--eg-purple);
}

body.landing .im-stories-row .im-story-card:nth-child(3n + 3) {
  --eg-line: var(--eg-gold);
}

body.landing .im-story-card,
body.landing .im-story-card:nth-child(n) {
  border-color: var(--eg-line);
  box-shadow: var(--eg-shift-tight) var(--eg-shift-tight) 0 var(--eg-line);
}

body.landing .im-story-card:hover {
  transform: translate(-2px, -2px);
  box-shadow: calc(var(--eg-shift-tight) + 2px) calc(var(--eg-shift-tight) + 2px) 0 var(--eg-line);
  border-color: var(--eg-line);
  background: #fff;
}

body.landing .im-chapter-title {
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: clamp(1.28rem, 2.6vw, 1.72rem);
  line-height: 1.12;
}

body.landing .im-faq-item {
  border-radius: 0;
  border: var(--eg-w-tight) solid var(--eg-ink);
  box-shadow: var(--eg-shift-tight) var(--eg-shift-tight) 0 var(--eg-ink);
  background: #fff;
}

body.landing .im-faq-list .im-faq-item:nth-child(4n + 2) {
  border-color: var(--eg-leaf);
  box-shadow: var(--eg-shift-tight) var(--eg-shift-tight) 0 var(--eg-leaf);
}

body.landing .im-faq-list .im-faq-item:nth-child(4n + 3) {
  border-color: var(--eg-purple);
  box-shadow: var(--eg-shift-tight) var(--eg-shift-tight) 0 var(--eg-purple);
}

body.landing .im-faq-list .im-faq-item:nth-child(4n + 4) {
  border-color: var(--eg-gold);
  box-shadow: var(--eg-shift-tight) var(--eg-shift-tight) 0 var(--eg-gold);
}

/* ========== Slim landing: minimal boxes, Teko headlines, interest finder ========== */
body.landing.landing--slim .motion-field {
  opacity: 0.5;
}

body.landing.landing--slim .motion-shape,
body.landing.landing--slim .motion-blox {
  color: var(--purple-400);
  opacity: 0.52;
}

body.landing.landing--slim .motion-shape--1,
body.landing.landing--slim .motion-shape--2,
body.landing.landing--slim .motion-shape--5,
body.landing.landing--slim .motion-shape--7 {
  color: var(--purple-600);
}

body.landing.landing--slim .motion-shape--3,
body.landing.landing--slim .motion-shape--6 {
  color: #9f8ae8;
}

body.landing.landing--slim .motion-shape--4 {
  color: var(--gold);
  opacity: 0.42;
}

body.landing.landing--slim .motion-blox {
  box-shadow: 2px 2px 0 rgba(109, 40, 217, 0.22);
}

body.landing.landing--slim .site-header {
  border-bottom-color: rgba(91, 33, 182, 0.4);
}

body.landing.landing--slim .site-header.is-scrolled {
  border-bottom-color: rgba(91, 33, 182, 0.52);
  box-shadow: 0 8px 28px rgba(45, 26, 77, 0.1);
}

/* Slim landing pages: full nav at top; after scroll, bar fades/collapses and fixed float UI (logo + CTA) */
body.landing.landing--slim .site-header {
  z-index: 400;
  transition:
    min-height 0.38s var(--ease-out),
    max-height 0.38s var(--ease-out),
    opacity 0.28s ease,
    border-width 0.2s ease,
    box-shadow 0.25s ease;
}

body.landing.landing--slim.is-header-floating .site-header {
  min-height: 0 !important;
  max-height: 0 !important;
  padding-block: 0;
  margin: 0;
  border-width: 0;
  border-bottom: 0 solid transparent;
  box-shadow: none;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
}

body.landing.landing--slim.is-header-floating .site-header .header-inner {
  padding-block: 0;
  min-height: 0;
}

body.landing.landing--slim .header-cta {
  border-radius: 999px;
  padding: 0.5rem 1.25rem;
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

@media (max-width: 720px) {
  body.landing.landing--slim .header-cta {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    padding: 0.42rem 0.9rem;
    font-size: 0.8125rem;
  }
}

body.landing.landing--slim .header-float-ui {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 450;
  padding: max(10px, env(safe-area-inset-top, 0px)) 0 8px;
  pointer-events: none;
  transition: opacity 0.28s ease, visibility 0.28s ease;
}

body.landing.landing--slim .header-float-ui[aria-hidden="true"] {
  opacity: 0;
  visibility: hidden;
}

body.landing.landing--slim .header-float-ui:not([aria-hidden="true"]) {
  opacity: 1;
  visibility: visible;
}

body.landing.landing--slim .header-float-ui__track {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  pointer-events: none;
}

body.landing.landing--slim .header-float-ui__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.94);
  border: 2px solid var(--stroke);
  box-shadow: 0 4px 20px rgba(45, 26, 77, 0.12);
  backdrop-filter: blur(12px);
  text-decoration: none;
  pointer-events: auto;
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s ease;
}

body.landing.landing--slim .header-float-ui__logo:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(109, 40, 217, 0.18);
}

body.landing.landing--slim .header-float-ui__logo img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(109, 40, 217, 0.2));
}

body.landing.landing--slim .header-float-ui__cta {
  pointer-events: auto;
  border-radius: 999px;
  padding: 0.5rem 1.2rem;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: 4px 4px 0 #3d1d76;
}

@media (prefers-reduced-motion: reduce) {
  body.landing.landing--slim .site-header,
  body.landing.landing--slim .header-float-ui {
    transition: none;
  }
}

body.landing.landing--slim .parent-banner {
  border-bottom-color: rgba(109, 40, 217, 0.28);
}

body.landing.landing--slim .hero .hero-bg::after {
  background:
    radial-gradient(ellipse 78% 62% at 86% 10%, rgba(109, 40, 217, 0.18), transparent 54%),
    radial-gradient(ellipse 58% 48% at 6% 88%, rgba(167, 139, 250, 0.12), transparent 52%),
    radial-gradient(ellipse 70% 55% at 15% 85%, rgba(220, 210, 235, 0.5), transparent 52%),
    radial-gradient(ellipse 55% 45% at 82% 18%, rgba(255, 255, 255, 0.42), transparent 48%),
    radial-gradient(ellipse 40% 35% at 48% 48%, rgba(124, 58, 237, 0.1), transparent 60%);
}

body.landing.landing--slim .hero .hero-grid {
  background-image: linear-gradient(rgba(109, 40, 217, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(91, 33, 182, 0.055) 1px, transparent 1px);
}

body.landing.landing--slim .im-head-valorant {
  font-family: var(--font-valorant);
  font-weight: 700;
  line-height: 0.88;
  letter-spacing: 0.065em;
  text-transform: uppercase;
  margin: 0;
  color: var(--purple-950);
}

body.landing.landing--slim .hero .im-head-valorant.im-hero-title {
  font-size: clamp(2.75rem, 8.5vw, 5.35rem);
  line-height: 0.88;
  letter-spacing: 0.07em;
}

body.landing.landing--slim .eg-slim-h2 {
  font-size: clamp(2.75rem, 7.5vw, 4.85rem);
  line-height: 0.9;
  margin: 0 0 0.85rem;
}

body.landing.landing--slim .hero.im-hero.im-hero--slim {
  min-height: 0;
  min-height: auto;
  padding-top: clamp(0.5rem, 2vh, 1.25rem);
  padding-bottom: clamp(1.25rem, 3vh, 2.25rem);
  justify-content: center;
  overflow-x: clip;
}

body.landing.landing--slim .hero-inner--slim {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, min(46vw, 540px));
  grid-template-rows: 1fr;
  column-gap: clamp(1.5rem, 4vw, 3rem);
  row-gap: 0;
  align-items: center;
  min-height: min(74vh, 720px);
  padding-block: clamp(0.25rem, 1.5vh, 0.75rem);
  padding-inline: clamp(1.75rem, 7vw, 4.25rem);
}

body.landing.landing--slim .hero-inner--slim .hero-copy {
  grid-column: 1;
  grid-row: 1;
  align-self: center;
  position: relative;
  z-index: 2;
  max-width: min(40rem, 100%);
  padding-right: clamp(0.5rem, 2vw, 1.25rem);
}

body.landing.landing--slim .eg-hero-visual {
  grid-column: 2;
  grid-row: 1;
  justify-self: stretch;
  align-self: center;
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  pointer-events: none;
  line-height: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

/* Desktop: row1 = eyebrow+title | hero.png (stack bottom = top of description row); row2 = lede; row3 = CTA | eggs */
@media (min-width: 721px) {
  body.landing.landing--slim .hero-inner--slim {
    align-items: stretch;
    align-content: start;
    grid-template-columns: minmax(0, 1fr) minmax(260px, min(44vw, 520px));
    grid-template-rows: auto auto auto;
    column-gap: clamp(1.6rem, 4.5vw, 3.35rem);
    row-gap: 0;
  }

  body.landing.landing--slim .hero-inner--slim > .hero-copy {
    display: contents;
  }

  body.landing.landing--slim .hero-inner--slim > .eg-hero-visual {
    display: contents;
  }

  body.landing.landing--slim .hero-copy__head {
    grid-column: 1;
    grid-row: 1;
    align-self: start;
    justify-self: start;
    position: relative;
    z-index: 2;
    max-width: min(42.5rem, 100%);
    padding-right: clamp(0.35rem, 1.2vw, 0.85rem);
    min-width: 0;
    margin-bottom: clamp(0.65rem, 1.8vh, 1rem);
  }

  body.landing.landing--slim .hero-copy .hero-lede {
    grid-column: 1;
    grid-row: 2;
    align-self: start;
    justify-self: start;
    max-width: min(42.5rem, 100%);
    padding-right: clamp(0.35rem, 1.2vw, 0.85rem);
    min-width: 0;
    margin-top: 0;
  }

  body.landing.landing--slim .hero-copy .hero-actions {
    grid-column: 1;
    grid-row: 3;
    align-self: start;
    justify-self: start;
    margin-top: 0;
  }

  body.landing.landing--slim .eg-hero-visual__stack {
    grid-column: 2;
    grid-row: 1;
    align-self: end;
    justify-self: end;
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 0;
    width: 100%;
    max-width: 100%;
  }

  /* Keep row-1 height driven by the headline block so stack bottom meets the lede row start */
  body.landing.landing--slim .eg-hero-visual__img {
    max-height: min(52vh, 500px);
    object-position: 56% center;
  }

  body.landing.landing--slim .eg-hero-eggs {
    grid-column: 2;
    grid-row: 3;
    align-self: start;
    justify-self: end;
    margin-left: 0;
    margin-right: 0;
    margin-top: clamp(-1.35rem, -3.2vh, -0.45rem);
  }
}

/* Hero: only hero.png floats — eggs are siblings, not part of this motion */
body.landing.landing--slim .eg-hero-visual__stack {
  display: block;
  width: 100%;
  max-width: 100%;
  margin-inline: auto;
  flex-shrink: 0;
  margin-top: clamp(-0.85rem, -1.9vh, -0.4rem);
  margin-bottom: clamp(0.7rem, 2vh, 1.2rem);
  animation: eg-hero-crew-float 6.5s ease-in-out infinite;
}

body.landing.landing--slim .eg-hero-visual__img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: min(88vh, 820px);
  margin-inline: auto;
  object-fit: contain;
  object-position: center center;
  filter: drop-shadow(0 20px 48px rgba(45, 26, 77, 0.22));
  position: relative;
  z-index: 1;
}

body.landing.landing--slim .eg-hero-visual-stack--reduced {
  animation: none;
}

/* Hero: eggs in flow under hero.png — desktop grid bottom-aligns this strip with the primary CTA */
body.landing.landing--slim .eg-hero-eggs {
  position: relative;
  left: auto;
  top: auto;
  bottom: auto;
  transform: none;
  width: min(440px, calc(100% - clamp(1rem, 5vw, 2.5rem)));
  max-width: calc(100% - clamp(1rem, 5vw, 2.5rem));
  min-width: 0;
  flex-shrink: 0;
  min-height: clamp(6.25rem, 18vw, 9rem);
  max-height: min(34vh, 300px);
  margin-top: clamp(-1rem, -2.6vh, -0.35rem);
  margin-inline: auto;
  padding: clamp(18px, 4.5vw, 34px) clamp(0.35rem, 1.8vw, 0.75rem) clamp(0.35rem, 1.4vw, 0.65rem);
  box-sizing: border-box;
  z-index: 2;
  filter: drop-shadow(0 14px 32px rgba(45, 26, 77, 0.28));
  pointer-events: none;
}

body.landing.landing--slim .eg-hero-egg {
  position: absolute;
  width: clamp(74px, 21vw, 120px);
  z-index: 1;
  transition: transform 0.45s cubic-bezier(0.22, 0.82, 0.28, 1);
  transform-origin: 50% 100%;
}

body.landing.landing--slim .eg-hero-egg.is-chat-active {
  z-index: 4;
  transform: scale(1.08) translateY(-4px);
}

body.landing.landing--slim .eg-hero-egg--hat {
  left: 2%;
  bottom: 12%;
  top: auto;
}

body.landing.landing--slim .eg-hero-egg--pirate {
  left: auto;
  right: 2%;
  bottom: 26%;
  top: auto;
}

body.landing.landing--slim .eg-hero-egg--sprout {
  left: 50%;
  bottom: 4%;
  top: auto;
  transform: translateX(-50%);
}

body.landing.landing--slim .eg-hero-egg--sprout.is-chat-active {
  transform: translateX(-50%) scale(1.08) translateY(-4px);
}

body.landing.landing--slim .eg-hero-egg--crown {
  left: auto;
  right: 22%;
  bottom: 10%;
  top: auto;
}

body.landing.landing--slim .eg-hero-egg__img {
  display: block;
  width: 100%;
  height: auto;
}

body.landing.landing--slim .eg-hero-egg__bubble {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) scale(0.94);
  min-width: 6.5rem;
  max-width: min(200px, 46vw);
  padding: 0.45rem 0.55rem 0.5rem;
  font-family: var(--font-body);
  font-size: clamp(0.68rem, 2.1vw, 0.8rem);
  font-weight: 600;
  line-height: 1.35;
  text-align: center;
  color: #1a1030;
  background: #ffffff;
  border: 2px solid #1a1030;
  border-radius: 12px;
  box-shadow: 3px 4px 0 rgba(26, 16, 48, 0.12);
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.35s ease,
    transform 0.35s cubic-bezier(0.22, 0.82, 0.28, 1);
}

body.landing.landing--slim .eg-hero-egg--pirate .eg-hero-egg__bubble,
body.landing.landing--slim .eg-hero-egg--crown .eg-hero-egg__bubble {
  left: auto;
  right: 0;
  transform: translateX(0) scale(0.94);
  text-align: right;
}

body.landing.landing--slim .eg-hero-egg__bubble::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  background: #ffffff;
  border-right: 2px solid #1a1030;
  border-bottom: 2px solid #1a1030;
  bottom: -6px;
  left: 50%;
  margin-left: -7px;
  transform: rotate(45deg);
}

body.landing.landing--slim .eg-hero-egg--pirate .eg-hero-egg__bubble::after,
body.landing.landing--slim .eg-hero-egg--crown .eg-hero-egg__bubble::after {
  left: auto;
  right: 14px;
  margin-left: 0;
}

body.landing.landing--slim .eg-hero-egg.is-chat-active .eg-hero-egg__bubble {
  opacity: 1;
}

body.landing.landing--slim .eg-hero-egg--hat.is-chat-active .eg-hero-egg__bubble,
body.landing.landing--slim .eg-hero-egg--sprout.is-chat-active .eg-hero-egg__bubble {
  transform: translateX(-50%) scale(1);
}

body.landing.landing--slim .eg-hero-egg--pirate.is-chat-active .eg-hero-egg__bubble,
body.landing.landing--slim .eg-hero-egg--crown.is-chat-active .eg-hero-egg__bubble {
  transform: translateX(0) scale(1);
}

body.landing.landing--slim .eg-hero-eggs--reduced {
  animation: none;
}

body.landing.landing--slim .eg-hero-eggs--reduced .eg-hero-egg {
  transform: none;
}

body.landing.landing--slim .eg-hero-eggs--reduced .eg-hero-egg--sprout {
  transform: translateX(-50%);
}

body.landing.landing--slim .eg-hero-eggs--reduced .eg-hero-egg__bubble {
  display: none;
}

@keyframes eg-hero-crew-float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

@media (prefers-reduced-motion: reduce) {
  body.landing.landing--slim .eg-hero-visual__stack {
    animation: none;
    transform: none;
  }

  body.landing.landing--slim .eg-hero-egg {
    transform: none;
  }

  body.landing.landing--slim .eg-hero-egg--sprout {
    transform: translateX(-50%);
  }

  body.landing.landing--slim .eg-hero-egg__bubble {
    display: none;
  }
}

@media (max-width: 720px) {
  body.landing.landing--slim .hero-copy .hero-actions {
    margin-top: clamp(1rem, 2.5vh, 1.5rem);
  }
}

body.landing.landing--slim .im-hero-sub {
  font-family: var(--font-display);
  font-size: clamp(0.98rem, 2.2vw, 1.08rem);
  line-height: 1.55;
  margin-top: clamp(0.65rem, 1.8vh, 1rem);
}

body.landing.landing--slim .hero-copy .im-hero-eyebrow {
  margin-bottom: clamp(0.35rem, 1vh, 0.65rem);
}

body.landing.landing--slim .im-scroll-hint {
  bottom: 0.35rem;
  color: var(--purple-700);
}

body.landing.landing--slim .im-scroll-hint:hover {
  color: var(--purple-600);
}

body.landing.landing--slim .im-scroll-hint-line {
  background: linear-gradient(180deg, var(--purple-500), transparent);
}

body.landing.landing--slim .im-kicker {
  color: var(--purple-800);
}

body.landing.landing--slim .eg-slim-section {
  padding: clamp(52px, 9vw, 100px) 0;
  border-bottom: 1px solid rgba(109, 40, 217, 0.14);
}

body.landing.landing--slim .eg-slim-section--paper {
  background: linear-gradient(180deg, #ffffff 0%, #f2edfc 48%, var(--surface-lavender) 100%);
}

/* Home FAQ (eggacademy.co.nz copy, accordion) */
body.landing .eg-home-faq {
  border-top: 8px solid var(--eg-purple);
}

body.landing.landing--slim .eg-home-faq .im-faq-shell {
  margin-inline: auto;
}

body.landing.landing--slim .eg-home-faq__head {
  max-width: min(36rem, 100%);
  margin-inline: auto;
  margin-bottom: clamp(1.25rem, 3vw, 2rem);
}

body.landing.landing--slim .eg-home-faq__intro {
  margin-bottom: 0;
}

body.landing.landing--slim .eg-home-faq .im-faq-item p:last-child {
  margin-bottom: 12px;
}

body.landing.landing--slim .eg-home-faq .im-faq-item ul.eg-home-faq__ul {
  margin: 0 0 16px;
  padding-left: 1.25rem;
  font-size: 0.92rem;
  line-height: 1.5;
  color: #5b4a75;
}

body.landing.landing--slim .eg-home-faq .im-faq-item ul.eg-home-faq__ul li {
  margin-bottom: 0.35em;
}

body.landing.landing--slim .eg-home-faq .im-faq-item ul.eg-home-faq__ul li:last-child {
  margin-bottom: 0;
}

/* Home — roadmap (horizontal band before Gen Z stat) */
body.landing.landing--slim .eg-roadmap {
  padding: clamp(32px, 5vw, 56px) 0;
  background: linear-gradient(180deg, #f7f4ff 0%, #faf8ff 42%, #ffffff 100%);
  border-bottom: 1px solid rgba(109, 40, 217, 0.12);
}

body.landing.landing--slim .eg-roadmap__head {
  text-align: center;
  max-width: min(40rem, 100%);
  margin-inline: auto;
  margin-bottom: clamp(1.1rem, 2.5vw, 1.5rem);
}

body.landing.landing--slim .eg-roadmap__eyebrow {
  margin: 0 0 0.35rem;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(91, 74, 117, 0.75);
}

body.landing.landing--slim .eg-roadmap__head .eg-slim-h2 {
  margin-bottom: 0.5rem;
}

body.landing.landing--slim .eg-roadmap__intro {
  margin: 0;
  font-size: clamp(0.88rem, 1.75vw, 0.98rem);
  line-height: 1.4;
  color: var(--text-dim);
}

/* Full-bleed horizontal track with edge fades */
body.landing.landing--slim .eg-roadmap__track-shell {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-bottom: clamp(0.65rem, 1.8vw, 1rem);
  padding-bottom: 0.15rem;
}

body.landing.landing--slim .eg-roadmap__track-shell::before,
body.landing.landing--slim .eg-roadmap__track-shell::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: clamp(36px, 6vw, 56px);
  z-index: 2;
  pointer-events: none;
}

body.landing.landing--slim .eg-roadmap__track-shell::before {
  left: 0;
  background: linear-gradient(90deg, #f7f4ff 0%, rgba(247, 244, 255, 0) 100%);
}

body.landing.landing--slim .eg-roadmap__track-shell::after {
  right: 0;
  background: linear-gradient(270deg, #faf8ff 0%, rgba(250, 248, 255, 0) 100%);
}

body.landing.landing--slim .eg-roadmap__phases {
  --eg-road-card-w: clamp(10.25rem, 36vw, 15rem);
  list-style: none;
  margin: 0;
  padding: 0.35rem var(--shell-gutter) 0.5rem;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: clamp(0.85rem, 2.2vw, 1.15rem);
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x proximity;
  scroll-padding-inline: var(--shell-gutter);
  scroll-behavior: smooth;
  overscroll-behavior-x: contain;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(109, 40, 217, 0.28) transparent;
  counter-reset: roadmap-step;
}

body.landing.landing--slim .eg-roadmap__phases:focus-visible {
  outline: 2px solid var(--purple-500);
  outline-offset: 4px;
}

body.landing.landing--slim .eg-roadmap__phases::-webkit-scrollbar {
  height: 7px;
}

body.landing.landing--slim .eg-roadmap__phases::-webkit-scrollbar-track {
  margin-inline: var(--shell-gutter);
  background: rgba(109, 40, 217, 0.06);
  border-radius: 99px;
}

body.landing.landing--slim .eg-roadmap__phases::-webkit-scrollbar-thumb {
  background: linear-gradient(90deg, var(--purple-400), var(--leaf-500));
  border-radius: 99px;
  opacity: 0.75;
}

body.landing.landing--slim .eg-roadmap__phase-wrap {
  counter-increment: roadmap-step;
  margin: 0;
  padding: 0;
  flex: 0 0 var(--eg-road-card-w);
  min-width: 0;
  display: flex;
  scroll-snap-align: start;
  scroll-snap-stop: normal;
}

body.landing.landing--slim .eg-roadmap__phase {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  width: 100%;
  margin: 0;
  padding: 1rem 0.95rem 1.35rem;
  background: linear-gradient(160deg, #ffffff 0%, #fcfbff 100%);
  border: 1px solid rgba(109, 40, 217, 0.16);
  border-radius: 18px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 10px 28px rgba(45, 26, 77, 0.07);
  overflow: hidden;
  transition:
    transform 0.4s var(--ease-out),
    box-shadow 0.4s var(--ease-out),
    border-color 0.35s ease;
}

body.landing.landing--slim .eg-roadmap__phase-wrap:nth-child(odd) .eg-roadmap__phase {
  transform: rotate(-0.4deg);
}

body.landing.landing--slim .eg-roadmap__phase-wrap:nth-child(even) .eg-roadmap__phase {
  transform: rotate(0.4deg);
}

body.landing.landing--slim .eg-roadmap__phase::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--purple-500) 0%, var(--leaf-500) 55%, var(--purple-400) 100%);
  opacity: 0.88;
  pointer-events: none;
}

body.landing.landing--slim .eg-roadmap__phase::after {
  content: counter(roadmap-step, decimal-leading-zero);
  position: absolute;
  right: 0.5rem;
  bottom: 0.2rem;
  font-family: var(--font-display);
  font-size: clamp(2.35rem, 7vw, 3rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.05em;
  color: var(--purple-600);
  opacity: 0.09;
  pointer-events: none;
}

body.landing.landing--slim .eg-roadmap__phase--highlight {
  border-color: rgba(91, 33, 182, 0.32);
  background: linear-gradient(168deg, #ffffff 0%, #f3edff 48%, #e9ddff 100%);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.85) inset,
    0 0 0 1px rgba(167, 139, 250, 0.22),
    0 14px 36px rgba(67, 27, 122, 0.12);
}

body.landing.landing--slim .eg-roadmap__phase--highlight::before {
  height: 6px;
  opacity: 1;
  background: linear-gradient(90deg, var(--purple-600) 0%, #c4b5fd 45%, var(--leaf-500) 100%);
}

body.landing.landing--slim .eg-roadmap__phase--highlight-soft {
  border-color: rgba(109, 40, 217, 0.24);
  background: linear-gradient(165deg, #ffffff 0%, #faf8ff 50%, #f0e8ff 100%);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.88) inset,
    0 0 0 1px rgba(167, 139, 250, 0.14),
    0 11px 30px rgba(67, 27, 122, 0.08);
}

body.landing.landing--slim .eg-roadmap__phase--highlight-soft::before {
  height: 5px;
  background: linear-gradient(90deg, var(--purple-500) 0%, #ddd6fe 50%, var(--leaf-300) 100%);
}

body.landing.landing--slim .eg-roadmap__label {
  margin: 0 0 0.4rem;
  display: inline-flex;
  align-self: flex-start;
  padding: 0.2rem 0.55rem 0.18rem;
  font-family: var(--font-body);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--purple-700);
  background: rgba(109, 40, 217, 0.09);
  border: 1px solid rgba(109, 40, 217, 0.14);
  border-radius: 999px;
}

body.landing.landing--slim .eg-roadmap__phase--highlight .eg-roadmap__label,
body.landing.landing--slim .eg-roadmap__phase--highlight-soft .eg-roadmap__label {
  color: var(--purple-800);
  background: rgba(91, 33, 182, 0.12);
  border-color: rgba(91, 33, 182, 0.2);
}

body.landing.landing--slim .eg-roadmap__phase-text {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: clamp(0.84rem, 1.25vw, 0.93rem);
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0.01em;
  color: rgba(45, 26, 77, 0.88);
  flex: 1 1 auto;
}

body.landing.landing--slim .eg-roadmap__phase-text strong {
  color: var(--purple-950);
  font-weight: 800;
}

body.landing.landing--slim .eg-roadmap__phase--highlight .eg-roadmap__phase-text strong,
body.landing.landing--slim .eg-roadmap__phase--highlight-soft .eg-roadmap__phase-text strong {
  color: var(--purple-900);
}

@media (hover: hover) and (pointer: fine) {
  body.landing.landing--slim .eg-roadmap__phase-wrap:hover .eg-roadmap__phase {
    transform: translateY(-6px) rotate(0deg);
    border-color: rgba(109, 40, 217, 0.26);
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.95) inset,
      0 16px 40px rgba(45, 26, 77, 0.11);
  }

  body.landing.landing--slim .eg-roadmap__phase-wrap:hover .eg-roadmap__phase--highlight {
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.9) inset,
      0 0 0 1px rgba(167, 139, 250, 0.28),
      0 20px 48px rgba(67, 27, 122, 0.14);
  }
}

@media (prefers-reduced-motion: reduce) {
  body.landing.landing--slim .eg-roadmap__phases {
    scroll-behavior: auto;
    scroll-snap-type: none;
  }

  body.landing.landing--slim .eg-roadmap__phase {
    transition: none;
  }

  body.landing.landing--slim .eg-roadmap__phase-wrap:nth-child(odd) .eg-roadmap__phase,
  body.landing.landing--slim .eg-roadmap__phase-wrap:nth-child(even) .eg-roadmap__phase,
  body.landing.landing--slim .eg-roadmap__phase-wrap:hover .eg-roadmap__phase {
    transform: none;
  }
}

body.landing.landing--slim .eg-roadmap__goal {
  margin: 0 auto;
  max-width: min(36rem, 100%);
  padding: 0.5rem 0.85rem;
  text-align: center;
  font-size: clamp(0.82rem, 1.25vw, 0.9rem);
  line-height: 1.35;
  color: var(--text-dim);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(109, 40, 217, 0.1);
  border-radius: 999px;
}

body.landing.landing--slim .eg-roadmap__goal strong {
  color: var(--purple-950);
}

/* Home — live sessions (hours + platform mockup) */
body.landing.landing--slim .eg-live-sessions {
  padding: clamp(28px, 4vw, 52px) 0;
  background: linear-gradient(165deg, #fffdf8 0%, #f7f2ff 40%, #ebe4ff 100%);
  border-bottom: 1px solid rgba(109, 40, 217, 0.14);
}

body.page-home .eg-live-sessions__inner {
  max-width: min(980px, 100%);
  margin-inline: auto;
}

body.page-home .eg-live-sessions__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.44fr) minmax(0, 1fr);
  gap: clamp(1rem, 2.5vw, 1.65rem);
  align-items: center;
}

body.page-home .eg-live-sessions__content {
  display: flex;
  flex-direction: column;
  gap: clamp(0.65rem, 1.5vw, 0.95rem);
  min-width: 0;
}

body.page-home .eg-live-sessions__head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin: 0;
  padding: 0;
  border: none;
  text-align: left;
}

body.page-home .eg-live-sessions__eyebrow {
  margin: 0 0 0.3rem;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(91, 33, 182, 0.88);
}

body.page-home .eg-live-sessions__title {
  margin: 0 0 0.55rem;
  font-size: clamp(1.2rem, 2.5vw, 1.72rem);
  line-height: 1.08;
  letter-spacing: 0.02em;
  color: var(--ink);
}

body.page-home .eg-live-sessions__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 0.5rem;
  margin: 0;
  justify-content: flex-start;
}

body.page-home .eg-live-sessions__badge {
  display: inline-block;
  padding: 0.35rem 0.7rem;
  font-family: var(--font-display);
  font-size: clamp(0.85rem, 1.65vw, 0.98rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--ink);
  background: #fff;
  border: 2px solid rgba(109, 40, 217, 0.35);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 4px 14px rgba(45, 26, 77, 0.07);
}

body.page-home .eg-live-sessions__body {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  text-align: left;
  width: 100%;
  gap: 0.85rem;
}

body.page-home .eg-live-sessions__summary {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  border: none;
}

body.page-home .eg-live-sessions__summary-row {
  display: grid;
  grid-template-columns: minmax(4.5rem, 6rem) minmax(0, 1fr);
  gap: 0.55rem 0.75rem;
  align-items: start;
  margin: 0;
  font-size: clamp(0.9rem, 1.45vw, 0.98rem);
  line-height: 1.42;
  color: var(--text-dim);
}

body.page-home .eg-live-sessions__summary-tag {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(91, 33, 182, 0.85);
  padding-top: 0.2em;
}

body.page-home .eg-live-sessions__summary-copy {
  margin: 0;
  min-width: 0;
}

body.page-home .eg-live-sessions__summary-copy strong {
  color: var(--ink);
  font-weight: 700;
}

body.page-home .eg-live-sessions__week {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem 1rem;
  margin: 0;
  padding: 0.85rem 0 0;
  border-top: 1px solid rgba(109, 40, 217, 0.14);
  background: none;
  box-shadow: none;
}

body.page-home .eg-live-sessions__week-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  margin: 0;
  padding: 0 0 0 0.7rem;
  border: none;
  border-radius: 0;
  border-left: 3px solid rgba(109, 40, 217, 0.38);
  background: transparent;
  box-shadow: none;
}

body.page-home .eg-live-sessions__week-when {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: rgba(91, 33, 182, 0.9);
}

body.page-home .eg-live-sessions__week-what {
  font-size: clamp(0.88rem, 1.4vw, 0.96rem);
  font-weight: 600;
  line-height: 1.35;
  color: var(--ink);
}

body.page-home .eg-live-sessions__note {
  margin-top: 1rem;
  max-width: 52ch;
  font-size: clamp(0.88rem, 1.45vw, 0.98rem);
  line-height: 1.5;
  color: rgba(24, 20, 40, 0.78);
}

body.page-home .eg-live-sessions__art {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: min(380px, 100%);
  justify-self: end;
}

body.page-home .eg-live-sessions__art img {
  display: block;
  width: 100%;
  height: auto;
}

@media (max-width: 760px) {
  body.page-home .eg-live-sessions__layout {
    grid-template-columns: 1fr;
    gap: 1rem;
    text-align: center;
  }

  body.page-home .eg-live-sessions__art {
    max-width: min(300px, 85vw);
    margin-inline: auto;
    justify-self: center;
  }

  body.page-home .eg-live-sessions__head,
  body.page-home .eg-live-sessions__body {
    align-items: center;
    text-align: center;
  }

  body.page-home .eg-live-sessions__badges {
    justify-content: center;
  }

  body.page-home .eg-live-sessions__summary-row {
    grid-template-columns: 1fr;
    gap: 0.2rem;
    text-align: center;
  }

  body.page-home .eg-live-sessions__summary-tag {
    padding-top: 0;
  }

  body.page-home .eg-live-sessions__week {
    grid-template-columns: 1fr;
    padding-top: 0.75rem;
    gap: 0.75rem;
  }

  body.page-home .eg-live-sessions__week-item {
    padding-left: 0.65rem;
    text-align: left;
    align-items: flex-start;
  }

  body.page-home .eg-live-sessions__note {
    margin-inline: auto;
    max-width: 42ch;
    text-align: center;
  }
}

/* Gen Z research strip — art + quote, wide low band (matches old site layout, slim landing polish) */
body.landing.landing--slim .eg-gen-z-stat {
  padding: clamp(36px, 6vw, 72px) 0;
}

body.landing.landing--slim .eg-gen-z-stat__inner {
  max-width: min(1080px, 100%);
  margin-inline: auto;
}

body.landing.landing--slim .eg-gen-z-stat__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.12fr);
  gap: clamp(1.25rem, 4vw, 3rem);
  align-items: center;
}

body.landing.landing--slim .eg-gen-z-stat__art {
  display: flex;
  justify-content: center;
  align-items: center;
}

body.landing.landing--slim .eg-gen-z-stat__art img {
  display: block;
  width: 100%;
  max-width: min(420px, 100%);
  height: auto;
  object-fit: contain;
}

body.landing.landing--slim .eg-gen-z-stat__quote {
  margin: 0;
  padding: 0;
  border: none;
}

body.landing.landing--slim .eg-gen-z-stat__quote p {
  margin: 0 0 0.9rem;
  font-family: var(--font-display);
  font-size: clamp(1.02rem, 2.35vw, 1.32rem);
  line-height: 1.48;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.015em;
}

body.landing.landing--slim .eg-gen-z-stat__quote footer {
  margin: 0;
  font-family: var(--font-mono);
  font-size: clamp(0.62rem, 1.1vw, 0.72rem);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dim);
}

body.landing.landing--slim .eg-gen-z-stat__peer {
  margin: clamp(1.25rem, 3vw, 1.75rem) 0 0;
  max-width: min(68ch, 100%);
  margin-inline: auto;
  text-align: center;
  font-size: clamp(0.95rem, 1.8vw, 1.05rem);
  line-height: 1.5;
  color: var(--text-dim);
}

body.landing.landing--slim .eg-home-testimonials {
  padding: clamp(32px, 5vw, 56px) 0;
}

body.landing.landing--slim .eg-home-testimonials__video {
  margin-top: clamp(0.75rem, 2.5vw, 1.25rem);
  margin-bottom: clamp(1.25rem, 3vw, 1.75rem);
  max-width: min(880px, 100%);
  margin-inline: auto;
}

body.landing.landing--slim .eg-home-testimonials__video-inner {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 14px;
  border: 2px solid rgba(109, 40, 217, 0.14);
  background: #0f0a1a;
  box-shadow: 0 14px 40px rgba(45, 20, 90, 0.1);
}

body.landing.landing--slim .eg-home-testimonials__video-el {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

body.landing.landing--slim .eg-home-testimonials__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(0.85rem, 2vw, 1.15rem);
  margin-top: clamp(0.5rem, 2vw, 1rem);
}

body.landing.landing--slim .eg-home-testimonial {
  margin: 0;
  padding: clamp(0.95rem, 2vw, 1.15rem) clamp(1rem, 2.2vw, 1.2rem);
  border-radius: 14px;
  border: 2px solid rgba(109, 40, 217, 0.14);
  background: #fff;
  box-shadow: 0 10px 28px rgba(45, 20, 90, 0.06);
}

body.landing.landing--slim .eg-home-testimonial p {
  margin: 0 0 0.65rem;
  font-size: clamp(0.92rem, 1.55vw, 1.02rem);
  line-height: 1.45;
  font-weight: 600;
  color: var(--text);
}

body.landing.landing--slim .eg-home-testimonial footer {
  margin: 0;
  font-family: var(--font-mono);
  font-size: clamp(0.62rem, 1.05vw, 0.72rem);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-dim);
}

@media (max-width: 720px) {
  body.landing.landing--slim .eg-gen-z-stat__layout {
    grid-template-columns: 1fr;
    gap: clamp(1rem, 3vw, 1.5rem);
    text-align: center;
  }

  body.landing.landing--slim .eg-gen-z-stat__art img {
    max-width: min(300px, 88vw);
    margin-inline: auto;
  }

  body.landing.landing--slim .eg-gen-z-stat__quote footer {
    text-align: center;
  }
}

body.landing.landing--slim .eg-slim-section--split-pricing {
  background: linear-gradient(180deg, #ddd4f8 0%, #efe8ff 40%, #faf8ff 100%);
}

body.landing.landing--slim .eg-slim-finale {
  text-align: center;
  background:
    radial-gradient(ellipse 95% 85% at 50% 115%, rgba(109, 40, 217, 0.22), transparent 55%),
    linear-gradient(145deg, #e8e0fc 0%, #faf8ff 48%, #ebe4ff 100%);
}

body.landing.landing--slim .eg-slim-finale .im-head-valorant {
  font-size: clamp(2.85rem, 8vw, 4.6rem);
}

body.landing.landing--slim .eg-slim-finale-copy {
  margin: 0 0 1.5rem;
  font-size: 1.15rem;
  color: var(--text-dim);
}

body.landing.landing--slim .eg-slim-finale-meta {
  margin: 1.5rem 0 0;
  font-size: 0.95rem;
}

body.landing.landing--slim .eg-slim-finale-meta a {
  color: var(--purple-600);
  font-weight: 600;
  text-decoration: none;
}

body.landing.landing--slim .eg-slim-finale-meta a:hover {
  text-decoration: underline;
}

body.landing.landing--slim .eg-slim-lede {
  margin: 0;
  font-size: 1.12rem;
  line-height: 1.65;
  color: var(--text-dim);
}

body.landing.landing--slim .eg-slim-lede strong,
body.landing.landing--slim .eg-slim-intro strong {
  color: var(--purple-950);
}

body.landing.landing--slim .eg-slim-intro {
  margin: 0 0 1.75rem;
  font-size: 1.08rem;
  line-height: 1.6;
  color: var(--text-dim);
  max-width: 42rem;
}

body.landing.landing--slim .eg-slim-intro a {
  color: var(--purple-600);
  font-weight: 600;
}

body.landing.landing--slim #pricing .eg-slim-intro:not(:last-of-type) {
  margin-bottom: 0.85rem;
}

body.landing.landing--slim #pricing .shell > .eg-slim-h2 {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: clamp(0.85rem, 2vw, 1.15rem);
}

body.landing.landing--slim #pricing .shell > .eg-slim-intro {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

body.landing.landing--slim #interests .shell {
  --shell: min(1440px, calc(100% - (2 * var(--shell-gutter))));
}

body.landing.landing--slim .eg-interest-landing {
  position: relative;
  margin-top: clamp(1rem, 3vw, 1.75rem);
}

body.landing.landing--slim .eg-interest-landing__anim {
  position: relative;
  min-height: clamp(220px, 32vw, 300px);
  border: 2px solid rgba(91, 33, 182, 0.35);
  background: linear-gradient(165deg, #fff 0%, #faf8ff 45%, #f3fcf8 100%);
  box-shadow:
    inset 0 0 0 1px rgba(167, 139, 250, 0.14),
    0 16px 48px rgba(45, 26, 77, 0.08);
  overflow: hidden;
}

body.landing.landing--slim .eg-interest-float-tag {
  position: absolute;
  pointer-events: none;
  padding: 8px 14px;
  font-family: var(--font-display, "Bakbak One", system-ui, sans-serif);
  font-size: clamp(0.85rem, 2.2vw, 1.05rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--purple-800);
  background: rgba(255, 255, 255, 0.92);
  border: 2px solid rgba(109, 40, 217, 0.35);
  box-shadow: 0 6px 20px rgba(45, 26, 77, 0.12);
  white-space: nowrap;
  transform: translate(-50%, -50%) rotate(var(--tag-rot, 0deg)) scale(0.92);
  opacity: 0;
  animation: eg-interest-tag-pop 4.2s ease-in-out forwards;
}

@media (prefers-reduced-motion: reduce) {
  body.landing.landing--slim .eg-interest-float-tag {
    animation: none;
    opacity: 0.95;
    transform: translate(-50%, -50%) rotate(0deg) scale(1);
  }
}

@keyframes eg-interest-tag-pop {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(var(--tag-rot, 0deg)) scale(0.82) translateY(14px);
  }
  12% {
    opacity: 1;
  }
  72% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(var(--tag-rot, 0deg)) scale(1) translateY(-36px);
  }
}

body.landing.landing--slim .eg-interest-landing__cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

body.landing.landing--slim .eg-interest-landing__hint {
  margin: 0;
  max-width: 28rem;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-dim);
}

/* Finder modal (builder) */
body.landing.landing--slim .eg-interest-finder-modal {
  position: fixed;
  inset: 0;
  z-index: 12000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: max(12px, env(safe-area-inset-top)) max(12px, env(safe-area-inset-right))
    max(12px, env(safe-area-inset-bottom)) max(12px, env(safe-area-inset-left));
  box-sizing: border-box;
}

body.landing.landing--slim .eg-interest-finder-modal[hidden] {
  display: none;
}

body.landing.landing--slim .eg-interest-finder-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(30, 22, 51, 0.5);
  backdrop-filter: blur(4px);
}

body.landing.landing--slim .eg-interest-finder-modal__panel {
  position: relative;
  z-index: 1;
  width: min(640px, 100%);
  max-height: min(92vh, 880px);
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding: 1rem 1rem 1.1rem;
  border: 2px solid rgba(109, 40, 217, 0.3);
  background: #fff;
  box-shadow: 0 24px 64px rgba(45, 26, 77, 0.2);
  overflow: hidden;
}

body.landing.landing--slim .eg-interest-finder-modal__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-shrink: 0;
}

body.landing.landing--slim .eg-interest-finder-modal__title {
  margin: 0;
  font-family: var(--font-display, "Bakbak One", system-ui, sans-serif);
  font-size: clamp(1.05rem, 3vw, 1.25rem);
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--ink);
}

body.landing.landing--slim .eg-interest-finder-modal__lede {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.45;
  color: rgba(45, 26, 77, 0.72);
  flex-shrink: 0;
}

body.landing.landing--slim .eg-interest-finder-modal .eg-interest-finder {
  display: flex;
  flex-direction: column;
  min-height: 0;
  flex: 1;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  padding-right: 2px;
}

body.landing.landing--slim .eg-interest-name-label {
  display: block;
  margin: 0 0 6px;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
}

body.landing.landing--slim .eg-interest-name-input {
  width: 100%;
  box-sizing: border-box;
  font-family: var(--font-display);
  font-size: 1rem;
  padding: 12px 14px;
  margin-bottom: 10px;
  border: 2px solid rgba(91, 33, 182, 0.45);
  border-radius: 0;
  background: #fff;
}

body.landing.landing--slim .eg-interest-name-input:focus {
  outline: 2px solid var(--purple-600);
  outline-offset: 2px;
}

body.landing.landing--slim .eg-interest-finder {
  max-width: none;
  width: 100%;
}

body.landing.landing--slim .eg-interest-search {
  width: 100%;
  font-family: var(--font-display);
  font-size: 1.05rem;
  padding: 14px 18px;
  border: 2px solid rgba(91, 33, 182, 0.55);
  border-radius: 0;
  background: #fff;
  margin-bottom: 10px;
  box-shadow: inset 0 0 0 1px rgba(167, 139, 250, 0.12);
}

body.landing.landing--slim .eg-interest-search:focus {
  outline: 2px solid var(--purple-600);
  outline-offset: 2px;
}

body.landing.landing--slim .eg-interest-live {
  min-height: 1.25rem;
  margin: 0 0 12px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-dim);
}

body.landing.landing--slim .eg-interest-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

body.landing.landing--slim .eg-interest-finder-modal .eg-interest-chips-window {
  max-height: min(320px, 40vh);
  margin-bottom: 0.85rem;
}

body.landing.landing--slim .eg-interest-chips-window {
  max-height: min(380px, 50vh);
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  border: 2px solid rgba(91, 33, 182, 0.4);
  background: linear-gradient(180deg, #ffffff 0%, #faf8ff 100%);
  margin-bottom: clamp(1rem, 2.5vw, 1.35rem);
  box-shadow:
    inset 0 0 0 1px rgba(167, 139, 250, 0.12),
    inset 0 -12px 16px -12px rgba(45, 26, 77, 0.06);
  -webkit-overflow-scrolling: touch;
}

@media (max-width: 640px) {
  body.landing.landing--slim .eg-interest-chips-window {
    max-height: min(320px, 52vh);
  }
}

body.landing.landing--slim .eg-interest-map {
  padding-top: 0.25rem;
}

body.landing.landing--slim .eg-interest-map__status {
  margin: 0 0 0.75rem;
  min-height: 1.25rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-dim);
}

body.landing.landing--slim .eg-interest-map__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
}

/* Interest map modal */
body.landing.landing--slim .eg-interest-map-modal {
  position: fixed;
  inset: 0;
  z-index: 12100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: max(16px, env(safe-area-inset-top)) max(16px, env(safe-area-inset-right))
    max(16px, env(safe-area-inset-bottom)) max(16px, env(safe-area-inset-left));
  box-sizing: border-box;
}

body.landing.landing--slim .eg-interest-map-modal[hidden] {
  display: none;
}

body.landing.landing--slim .eg-interest-map-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(30, 22, 51, 0.55);
  backdrop-filter: blur(4px);
}

body.landing.landing--slim .eg-interest-map-modal__panel {
  position: relative;
  z-index: 1;
  width: min(520px, 100%);
  max-height: min(94vh, 920px);
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding: 1rem 0.95rem 1.05rem;
  border: 2px solid rgba(109, 40, 217, 0.28);
  background: #fff;
  box-shadow: 0 24px 64px rgba(45, 26, 77, 0.22);
  overflow: hidden;
}

body.landing.landing--slim .eg-interest-map-modal__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-shrink: 0;
}

body.landing.landing--slim .eg-interest-map-modal__title {
  margin: 0;
  font-family: var(--font-display, "Bakbak One", system-ui, sans-serif);
  font-size: clamp(1.15rem, 2.5vw, 1.45rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--ink);
}

body.landing.landing--slim .eg-interest-map-modal__x {
  flex-shrink: 0;
}

body.landing.landing--slim .eg-interest-map-modal__status {
  margin: 0;
  min-height: 1.2em;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-dim);
  flex-shrink: 0;
}

body.landing.landing--slim .eg-interest-map-modal__preview {
  flex: 1;
  min-height: 0;
  margin: 0;
  border: 2px solid rgba(109, 40, 217, 0.18);
  background: var(--surface-lavender, #f5f0ff);
  overflow: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

body.landing.landing--slim .eg-interest-map-modal__preview[hidden] {
  display: none;
}

body.landing.landing--slim .eg-interest-map-modal__preview img {
  display: block;
  width: 100%;
  max-width: 360px;
  height: auto;
  margin: 0 auto;
  vertical-align: top;
}

body.landing.landing--slim .eg-interest-map-modal__foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  flex-shrink: 0;
  padding-top: 0.15rem;
}

/* Tag spotlight (Egg Academy posts + profile counts) */
body.landing.landing--slim .eg-tag-spotlight-layer {
  position: fixed;
  inset: 0;
  z-index: 12500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: max(12px, env(safe-area-inset-top)) max(12px, env(safe-area-inset-right))
    max(12px, env(safe-area-inset-bottom)) max(12px, env(safe-area-inset-left));
  box-sizing: border-box;
}

body.landing.landing--slim .eg-tag-spotlight-layer[hidden] {
  display: none;
}

body.landing.landing--slim .eg-tag-spotlight-layer__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(30, 22, 51, 0.55);
  backdrop-filter: blur(6px);
}

body.landing.landing--slim .eg-tag-spotlight {
  position: relative;
  z-index: 1;
  width: min(480px, 100%);
  max-height: min(88vh, 720px);
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding: 1rem 1rem 1.1rem;
  border: 2px solid rgba(109, 40, 217, 0.35);
  background: linear-gradient(180deg, #ffffff 0%, #faf8ff 100%);
  box-shadow:
    0 24px 72px rgba(45, 26, 77, 0.28),
    0 0 0 1px rgba(167, 139, 250, 0.2);
  overflow: hidden;
}

body.landing.landing--slim .eg-tag-spotlight__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  flex-shrink: 0;
}

body.landing.landing--slim .eg-tag-spotlight__head-text {
  min-width: 0;
}

body.landing.landing--slim .eg-tag-spotlight__title {
  margin: 0;
  font-family: var(--font-display, "Bakbak One", system-ui, sans-serif);
  font-size: clamp(1.1rem, 3vw, 1.35rem);
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--ink);
}

body.landing.landing--slim .eg-tag-spotlight__stats {
  margin: 0.35rem 0 0;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(45, 26, 77, 0.55);
  line-height: 1.4;
}

body.landing.landing--slim .eg-tag-spotlight__body {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

body.landing.landing--slim .eg-tag-spotlight__status {
  margin: 0;
  min-height: 1.1rem;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-dim);
}

body.landing.landing--slim .eg-tag-spotlight__empty {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(45, 26, 77, 0.75);
}

body.landing.landing--slim .eg-tag-spotlight__empty a {
  color: var(--purple-700);
  font-weight: 600;
}

body.landing.landing--slim .eg-tag-spotlight__card {
  display: flex;
  gap: 12px;
  padding: 10px;
  border: 2px solid rgba(109, 40, 217, 0.18);
  background: #fff;
  box-shadow: 0 8px 24px rgba(45, 26, 77, 0.06);
  animation: eg-spotlight-card-in 0.45s var(--ease-out, ease) both;
}

body.landing.landing--slim .eg-tag-spotlight__card:nth-child(2) {
  animation-delay: 0.06s;
}

body.landing.landing--slim .eg-tag-spotlight__card:nth-child(3) {
  animation-delay: 0.12s;
}

@keyframes eg-spotlight-card-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

body.landing.landing--slim .eg-tag-spotlight__card-thumb {
  flex-shrink: 0;
  width: 88px;
  height: 88px;
  border-radius: 8px;
  overflow: hidden;
  background: rgba(109, 40, 217, 0.08);
}

body.landing.landing--slim .eg-tag-spotlight__card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

body.landing.landing--slim .eg-tag-spotlight__card-main {
  min-width: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

body.landing.landing--slim .eg-tag-spotlight__card-main h4 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.25;
}

body.landing.landing--slim .eg-tag-spotlight__card-by {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(45, 26, 77, 0.5);
}

body.landing.landing--slim .eg-tag-spotlight__card-desc {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.45;
  color: rgba(45, 26, 77, 0.72);
}

body.landing.landing--slim .eg-tag-spotlight__card-link {
  align-self: flex-start;
  margin-top: 4px;
}

@media (prefers-reduced-motion: reduce) {
  body.landing.landing--slim .eg-tag-spotlight__card {
    animation: none;
  }
}

body.landing.landing--slim .eg-cat-pill {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 14px;
  border: 2px solid var(--stroke);
  border-radius: 0;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  transition:
    background 0.15s ease,
    border-color 0.15s ease;
}

body.landing.landing--slim .eg-cat-pill:hover {
  border-color: var(--ink);
}

body.landing.landing--slim .eg-cat-pill.is-active {
  background: var(--purple-800);
  color: #fff;
  border-color: var(--purple-950);
}

body.landing.landing--slim .eg-interest-chips {
  list-style: none;
  margin: 0;
  padding: 12px 14px 14px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(118px, 1fr));
  gap: 10px 12px;
  align-content: start;
  will-change: transform;
  transform: translateY(calc((var(--eg-chips-scroll, 0) - 0.5) * -12px));
  transition: transform 0.2s ease-out;
}

@media (min-width: 600px) {
  body.landing.landing--slim .eg-interest-chips {
    grid-template-columns: repeat(auto-fill, minmax(132px, 1fr));
    gap: 12px 14px;
  }
}

@media (min-width: 1000px) {
  body.landing.landing--slim .eg-interest-chips {
    grid-template-columns: repeat(auto-fill, minmax(128px, 1fr));
  }
}

body.landing.landing--slim .eg-interest-chip-wrap {
  display: flex;
  align-items: stretch;
  gap: 6px;
  min-width: 0;
  transition:
    transform 0.22s var(--ease-out, ease),
    filter 0.2s ease;
}

body.landing.landing--slim .eg-interest-chip-wrap.is-hit {
  transform: scale(1.02);
  z-index: 1;
}

body.landing.landing--slim .eg-interest-chip-wrap.is-muted {
  filter: saturate(0.88);
}

body.landing.landing--slim .eg-interest-chip-wrap.is-muted .eg-interest-chip {
  opacity: 0.82;
}

body.landing.landing--slim .eg-interest-chip-wrap.is-muted .eg-interest-chip__spotlight {
  opacity: 0.92;
}

body.landing.landing--slim .eg-interest-chip__spotlight {
  flex-shrink: 0;
  width: 2.25rem;
  min-height: 3.25rem;
  padding: 0;
  margin: 0;
  border: 2px solid rgba(109, 40, 217, 0.35);
  border-radius: 10px;
  background: linear-gradient(160deg, #faf5ff 0%, #ede9fe 100%);
  color: var(--purple-700);
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(91, 33, 182, 0.12);
  transition:
    transform 0.18s ease,
    background 0.18s ease,
    border-color 0.18s ease;
}

body.landing.landing--slim .eg-interest-chip__spotlight:hover {
  transform: scale(1.06);
  border-color: rgba(109, 40, 217, 0.55);
  background: linear-gradient(160deg, #fff 0%, #f3e8ff 100%);
}

body.landing.landing--slim .eg-interest-chip__spotlight:focus-visible {
  outline: 2px solid var(--purple-600);
  outline-offset: 2px;
}

body.landing.landing--slim .eg-interest-chip {
  --eg-chip-line: var(--eg-line, var(--purple-500));
  flex: 1;
  min-width: 0;
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  line-height: 1.25;
  text-transform: none;
  padding: 12px 12px 14px;
  min-height: 3.25rem;
  border: 2px solid rgba(109, 40, 217, 0.2);
  border-radius: 10px;
  background: linear-gradient(165deg, #ffffff 0%, #f5f0ff 100%);
  color: var(--purple-950);
  cursor: pointer;
  text-align: center;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 10px 28px rgba(45, 26, 77, 0.09),
    0 2px 8px rgba(91, 33, 182, 0.06);
  transition:
    transform 0.2s var(--ease-out, ease),
    box-shadow 0.2s ease,
    background 0.15s ease,
    border-color 0.15s ease,
    opacity 0.2s ease,
    filter 0.2s ease;
}

body.landing.landing--slim .eg-interest-chip::before {
  content: "";
  display: block;
  width: 2rem;
  height: 3px;
  margin: 0 auto 8px;
  border-radius: 2px;
  background: var(--eg-chip-line);
  opacity: 0.85;
}

body.landing.landing--slim .eg-interest-chip:hover {
  border-color: rgba(109, 40, 217, 0.45);
  transform: translateY(-3px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 16px 36px rgba(45, 26, 77, 0.12),
    0 4px 12px rgba(91, 33, 182, 0.1);
}

body.landing.landing--slim .eg-interest-chip:focus-visible {
  outline: 2px solid var(--purple-600);
  outline-offset: 3px;
}

body.landing.landing--slim .eg-interest-chip.is-on {
  background: linear-gradient(165deg, var(--purple-700) 0%, var(--purple-800) 100%);
  color: #fff;
  border-color: var(--purple-950);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.15) inset,
    0 12px 28px rgba(45, 26, 77, 0.28);
}

body.landing.landing--slim .eg-interest-chip.is-on::before {
  background: #fff;
  opacity: 0.95;
}

/* Legacy .is-dim removed — filtering uses .eg-interest-chip-wrap.is-muted (softer). */
body.landing.landing--slim .eg-interest-chip-wrap.is-hit .eg-interest-chip {
  opacity: 1;
  filter: none;
}

@media (prefers-reduced-motion: reduce) {
  body.landing.landing--slim .eg-interest-chip {
    transition: opacity 0.15s ease, filter 0.15s ease, border-color 0.15s ease;
  }

  body.landing.landing--slim .eg-interest-chip:hover {
    transform: none;
  }

  body.landing.landing--slim .eg-interest-chips {
    transform: none;
    transition: none;
  }

  body.landing.landing--slim .eg-interest-chip-wrap.is-hit {
    transform: none;
  }
}

body.landing.landing--slim .eg-subject-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 10px 14px;
}

body.landing.landing--slim .eg-subject-grid li {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px 14px 14px;
  background: linear-gradient(180deg, #ffffff 0%, #faf7ff 100%);
  border-bottom: 3px solid var(--purple-600);
  border-left: 1px solid rgba(109, 40, 217, 0.1);
}

body.landing.landing--slim .eg-subject-pill {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--purple-950);
}

body.landing.landing--slim .eg-subject-note {
  font-size: 0.86rem;
  color: var(--text-dim);
}

body.landing.landing--slim .eg-pxl-frame {
  position: relative;
  height: min(72vh, 640px);
  min-height: 380px;
  border-radius: 0;
  overflow: hidden;
  border: 3px solid rgba(91, 33, 182, 0.75);
  box-shadow: 0 0 0 1px rgba(167, 139, 250, 0.2);
  background: #0f0a18;
}

body.landing.landing--slim .eg-pxl-iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

body.landing.landing--slim .eg-pxl-foot {
  margin: 14px 0 0;
  text-align: center;
}

body.landing.landing--slim .eg-price-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.15rem, 3.5vw, 1.85rem);
  max-width: min(56rem, 100%);
  margin-inline: auto;
  margin-top: clamp(1.75rem, 4.5vw, 2.75rem);
  align-items: stretch;
}

body.landing.landing--slim .eg-price-block {
  --eg-price-pad-x: clamp(1.35rem, 3.8vw, 1.85rem);
  --eg-price-pad-y: clamp(1.35rem, 3.5vw, 1.75rem);
  --eg-price-card-border: rgba(109, 40, 217, 0.22);
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 0;
  overflow: hidden;
  background: #fdfcff;
  border: 1px solid var(--eg-price-card-border);
  border-radius: 20px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.88) inset,
    0 18px 48px rgba(45, 26, 77, 0.07),
    0 6px 16px rgba(109, 40, 217, 0.06);
  transition:
    transform 0.22s cubic-bezier(0.22, 0.82, 0.28, 1),
    box-shadow 0.22s ease,
    border-color 0.22s ease;
}

@media (prefers-reduced-motion: no-preference) {
  body.landing.landing--slim .eg-price-block:hover {
    transform: translateY(-3px);
    border-color: rgba(109, 40, 217, 0.32);
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.95) inset,
      0 24px 56px rgba(45, 26, 77, 0.1),
      0 10px 24px rgba(109, 40, 217, 0.1);
  }
}

body.landing.landing--slim .eg-price-block--live {
  --eg-price-card-border: rgba(91, 33, 182, 0.42);
  background: linear-gradient(180deg, #faf7ff 0%, #f3edff 38%, #ebe4ff 100%);
  box-shadow:
    0 0 0 1px rgba(167, 139, 250, 0.35),
    0 20px 52px rgba(67, 27, 122, 0.12),
    0 8px 22px rgba(109, 40, 217, 0.1);
}

@media (prefers-reduced-motion: no-preference) {
  body.landing.landing--slim .eg-price-block--live:hover {
    border-color: rgba(76, 29, 149, 0.48);
    box-shadow:
      0 0 0 1px rgba(139, 92, 246, 0.45),
      0 26px 64px rgba(67, 27, 122, 0.16),
      0 12px 28px rgba(109, 40, 217, 0.14);
  }
}

/* Tier title + price/meta — single header band */
body.landing.landing--slim .eg-price-head {
  margin: 0;
  padding: 1.15rem var(--eg-price-pad-x) 1.05rem;
  text-align: center;
  border-bottom: 1px solid rgba(109, 40, 217, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.72) 0%, rgba(250, 248, 255, 0.5) 100%);
}

body.landing.landing--slim .eg-price-name {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.2vw, 1.4rem);
  font-weight: 700;
  margin: 0 0 0.3rem;
  letter-spacing: 0.02em;
  color: var(--purple-950);
  line-height: 1.2;
}

body.landing.landing--slim .eg-price-head__meta {
  margin: 0;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--purple-600);
}

body.landing.landing--slim .eg-price-head--member {
  border-bottom-color: rgba(255, 255, 255, 0.22);
  background: linear-gradient(125deg, #5b21b6 0%, #6d28d9 42%, #7c3aed 100%);
}

body.landing.landing--slim .eg-price-head--member .eg-price-name {
  color: #faf8ff;
  margin-bottom: 0.35rem;
}

body.landing.landing--slim .eg-price-head__price {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3.2vw, 1.65rem);
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #fefce8;
  line-height: 1.15;
  text-shadow: 0 1px 0 rgba(45, 26, 77, 0.2);
}

body.landing.landing--slim .eg-price-art {
  margin: 0;
  padding: 0;
  line-height: 0;
  border-bottom: 1px solid rgba(109, 40, 217, 0.1);
  background: #f5f3ff;
}

body.landing.landing--slim .eg-price-art--member {
  border-bottom-color: rgba(91, 33, 182, 0.2);
  background: linear-gradient(180deg, rgba(91, 33, 182, 0.08) 0%, rgba(237, 233, 254, 0.5) 100%);
}

body.landing.landing--slim .eg-price-art img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center center;
}

body.landing.landing--slim .eg-price-block__body {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  padding: var(--eg-price-pad-y) var(--eg-price-pad-x) 0.25rem;
}

body.landing.landing--slim .eg-price-desc {
  margin: 0 0 1.1rem;
  color: var(--text-dim);
  line-height: 1.58;
  font-size: clamp(0.94rem, 1.9vw, 1.02rem);
  text-align: center;
  max-width: 36ch;
  margin-left: auto;
  margin-right: auto;
}

body.landing.landing--slim .eg-price-bullets {
  list-style: none;
  margin: 0 0 0.5rem;
  padding: 0;
  color: var(--text-dim);
  font-size: 0.94rem;
  line-height: 1.48;
  flex: 1 1 auto;
  width: 100%;
  max-width: 22rem;
  margin-left: auto;
  margin-right: auto;
}

body.landing.landing--slim .eg-price-bullets li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.5rem;
  text-align: left;
}

body.landing.landing--slim .eg-price-bullets li:last-child {
  margin-bottom: 0;
}

body.landing.landing--slim .eg-price-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.52em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--purple-500);
  opacity: 0.75;
}

body.landing.landing--slim .eg-price-block--live .eg-price-bullets li::before {
  background: var(--purple-600);
  opacity: 0.85;
}

body.landing.landing--slim .eg-price-foot {
  margin: 0;
  margin-top: auto;
  padding: 1.1rem var(--eg-price-pad-x) var(--eg-price-pad-y);
  text-align: center;
  border-top: 1px solid rgba(109, 40, 217, 0.1);
  background: rgba(255, 255, 255, 0.35);
}

body.landing.landing--slim .eg-price-foot--member {
  border-top-color: rgba(91, 33, 182, 0.18);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.25) 0%, rgba(237, 233, 254, 0.55) 100%);
}

body.landing.landing--slim .eg-price-foot__btn {
  width: 100%;
  max-width: min(20rem, 100%);
  justify-content: center;
  margin-inline: auto;
}

body.landing.landing--slim .eg-price-foot--member .eg-price-foot__btn {
  max-width: min(22rem, 100%);
  font-weight: 700;
}

@media (prefers-reduced-motion: reduce) {
  body.landing.landing--slim .eg-price-block {
    transition: none;
  }

  body.landing.landing--slim .eg-price-block:hover {
    transform: none;
  }
}

/* Purple-forward CTAs on slim landing */
body.landing.landing--slim .btn-primary {
  background: linear-gradient(155deg, var(--purple-500) 0%, var(--purple-600) 40%, var(--purple-800) 100%);
  color: #faf8ff;
  border-color: #3d1d76;
  box-shadow: 4px 4px 0 #3d1d76;
}

body.landing.landing--slim .btn-primary:hover {
  filter: brightness(1.07);
  transform: translateY(-1px);
  box-shadow: 5px 5px 0 #3d1d76;
}

body.landing.landing--slim .btn-primary:active {
  transform: translateY(1px);
  box-shadow: 2px 2px 0 #3d1d76;
}

body.landing.landing--slim .btn-ghost {
  border-color: var(--purple-600);
  box-shadow: 3px 3px 0 var(--purple-600);
}

body.landing.landing--slim .btn-ghost:hover {
  background: #f3efff;
  border-color: var(--purple-800);
  box-shadow: 4px 4px 0 var(--purple-800);
}

body.landing.landing--slim .btn-secondary {
  border-color: var(--purple-600);
  box-shadow: 3px 3px 0 var(--purple-600);
}

body.landing.landing--slim .btn-secondary:hover {
  box-shadow: 4px 4px 0 var(--purple-600);
}

body.landing.landing--slim .btn:active:not(.btn-primary) {
  box-shadow: 2px 2px 0 var(--purple-800);
}

body.landing.landing--slim .btn-lg {
  box-shadow: 5px 5px 0 #3d1d76;
}

body.landing.landing--slim .btn-lg.btn-ghost {
  box-shadow: 4px 4px 0 var(--purple-600);
}

body.landing.landing--slim .im-btn-glow {
  box-shadow: 5px 5px 0 #3d1d76;
}

body.landing.landing--slim .site-footer {
  border-top: 2px solid rgba(109, 40, 217, 0.18);
  background: linear-gradient(180deg, #ebe4ff 0%, #faf8ff 55%, #ffffff 100%);
}

body.landing.landing--slim .logo-text {
  color: var(--purple-950);
}

@media (max-width: 900px) {
  body.landing.landing--slim .eg-price-split {
    grid-template-columns: 1fr;
  }

  body.landing.landing--slim .hero .im-head-valorant.im-hero-title {
    font-size: clamp(2.35rem, 11vw, 3.85rem);
  }
}

@media (max-width: 720px) {
  body.landing.landing--slim .hero-inner--slim {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    min-height: 0;
    align-items: start;
    padding-inline: clamp(1.25rem, 5vw, 2rem);
    justify-items: stretch;
    row-gap: 0.75rem;
  }

  body.landing.landing--slim .hero-inner--slim .hero-copy {
    grid-column: 1;
    grid-row: 1;
    padding-right: 0;
    max-width: none;
  }

  body.landing.landing--slim .eg-hero-visual {
    grid-column: 1;
    grid-row: 2;
    justify-self: center;
    align-self: center;
    align-items: center;
    max-width: min(100%, 480px);
    margin-top: 0.75rem;
  }

  body.landing.landing--slim .eg-hero-visual__stack {
    margin-top: clamp(0.35rem, 1.8vh, 1.1rem);
    margin-bottom: clamp(0.2rem, 0.9vh, 0.6rem);
  }

  body.landing.landing--slim .eg-hero-visual__img {
    max-height: min(50vh, 420px);
  }

  body.landing.landing--slim .eg-hero-eggs {
    width: min(360px, calc(100% - clamp(0.75rem, 4vw, 1.75rem)));
    max-width: calc(100% - clamp(0.75rem, 4vw, 1.75rem));
    max-height: min(36vh, 270px);
    min-height: clamp(6rem, 26vw, 8.5rem);
    margin-top: clamp(-1.25rem, -3vh, -0.45rem);
    padding: clamp(16px, 4vw, 26px) clamp(0.25rem, 1.2vw, 0.5rem) clamp(0.3rem, 1.2vw, 0.55rem);
  }

  body.landing.landing--slim .eg-hero-visual {
    justify-content: center;
  }
}

/* ========== About page — virtual studio + founder PNGtubers ========== */
body.page-about .eg-about-page-hero {
  padding-top: clamp(40px, 6vw, 72px);
}

body.page-about .eg-about-founders {
  padding-top: clamp(36px, 5vw, 56px);
  border-bottom: 1px solid rgba(109, 40, 217, 0.14);
}

body.landing.landing--slim.page-about .eg-about-founders > .shell {
  margin-bottom: clamp(1rem, 3vw, 1.75rem);
}

body.page-about .eg-about-studio {
  position: relative;
}

body.page-about .eg-about-studio__sticky {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(0.75rem, 2vw, 1.25rem);
  padding-inline: clamp(1rem, 4vw, 1.5rem);
  /* Room below the frame when founder cards extend past the studio box */
  padding-bottom: clamp(1.25rem, 5vw, 2.75rem);
}

body.page-about .eg-about-studio__stage {
  position: relative;
  width: 100%;
  max-width: min(960px, 100%);
  aspect-ratio: 1024 / 576;
  margin: 0;
  border-radius: 12px;
  overflow: visible;
  box-shadow:
    0 24px 60px rgba(45, 26, 77, 0.18),
    0 0 0 1px rgba(109, 40, 217, 0.1);
  background: #1a0f2e;
}

body.page-about .eg-about-studio__sticky[data-about-tilt-hover] {
  cursor: grab;
}

body.page-about .eg-about-studio__sticky[data-about-tilt-hover]:active {
  cursor: grabbing;
}

body.page-about .eg-about-studio__stage[data-about-tilt-zone] {
  --about-parallax-x: 0px;
  --about-parallax-y: 0px;
  --about-parallax-z: 0px;
  perspective: 1100px;
  perspective-origin: 50% 42%;
}

body.page-about .eg-about-studio__tilt-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
  transform-style: preserve-3d;
  transform-origin: center center;
  will-change: transform;
}

body.page-about .eg-about-studio__tilt-hint {
  margin: 0;
  max-width: min(960px, 100%);
  padding: 0 clamp(2%, 3vw, 4%);
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
  text-align: center;
}

@media (prefers-reduced-motion: reduce) {
  body.page-about .eg-about-studio__sticky[data-about-tilt-hover] {
    cursor: default;
  }

  body.page-about .eg-about-studio__stage[data-about-tilt-zone] {
    perspective: none;
  }

  body.page-about .eg-about-studio__tilt-inner {
    transform: none;
    will-change: auto;
    transition: none;
  }

  body.page-about .eg-about-studio__tilt-hint {
    display: none;
  }

  body.page-about .eg-about-studio__bg {
    transform: none;
  }

  body.page-about .eg-about-studio__stage[data-about-tilt-zone] {
    --about-parallax-x: 0px;
    --about-parallax-y: 0px;
    --about-parallax-z: 0px;
  }
}

body.page-about .eg-about-studio__bg {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  transform: translate3d(var(--about-parallax-x), var(--about-parallax-y), var(--about-parallax-z)) scale(1.06);
  transform-origin: center center;
}

@keyframes eg-founder-sheen {
  0% {
    transform: translateX(-120%) skewX(-12deg);
    opacity: 0;
  }

  15% {
    opacity: 0.45;
  }

  100% {
    transform: translateX(220%) skewX(-12deg);
    opacity: 0;
  }
}

@keyframes eg-founder-float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-4px);
  }
}

body.page-about .eg-about-hit {
  position: absolute;
  z-index: 4;
  pointer-events: auto;
  cursor: pointer;
  border-radius: 12px;
  transform-style: preserve-3d;
  transform-origin: bottom center;
  will-change: transform;
  transition: filter 0.28s cubic-bezier(0.22, 0.82, 0.28, 1);
}

body.page-about .eg-about-hit:focus {
  outline: none;
}

body.page-about .eg-about-hit:focus-visible {
  outline: 2px solid var(--purple-600);
  outline-offset: 6px;
}

body.page-about .eg-about-hit:hover {
  filter: brightness(1.05) drop-shadow(0 14px 32px rgba(45, 26, 77, 0.2));
}

body.page-about .eg-about-hit__chip {
  position: absolute;
  z-index: 2;
  bottom: 8px;
  right: 10px;
  padding: 5px 9px 4px;
  font-family: var(--font-mono);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--purple-950);
  background: linear-gradient(180deg, #ffffff 0%, #ede9fe 100%);
  border: 2px solid rgba(91, 33, 182, 0.4);
  border-radius: 6px;
  box-shadow: 0 2px 10px rgba(45, 26, 77, 0.12);
  pointer-events: none;
  transition:
    transform 0.25s cubic-bezier(0.22, 0.82, 0.28, 1),
    box-shadow 0.25s ease;
}

body.page-about .eg-about-hit:hover .eg-about-hit__chip,
body.page-about .eg-about-hit:focus-visible .eg-about-hit__chip {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(91, 33, 182, 0.2);
}

body.page-about .eg-about-hit--juni {
  left: 11%;
  bottom: 17%;
  width: min(33vw, 300px);
  max-width: 32%;
  transform: translate3d(var(--about-parallax-x), var(--about-parallax-y), var(--about-parallax-z)) translateZ(32px) scale(0.9);
}

body.page-about .eg-about-hit--kane {
  right: 11%;
  bottom: 18%;
  width: min(33vw, 300px);
  max-width: 32%;
  transform: translate3d(var(--about-parallax-x), var(--about-parallax-y), var(--about-parallax-z)) translateZ(32px) scale(0.9);
}

@media (min-width: 720px) {
  body.page-about .eg-about-hit--juni {
    left: 13.5%;
    bottom: 19%;
    width: min(27%, 308px);
    max-width: 29%;
  }

  body.page-about .eg-about-hit--kane {
    right: 13%;
    bottom: 20%;
    width: min(27%, 308px);
    max-width: 29%;
  }
}

body.page-about .eg-about-studio__char {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: bottom center;
  pointer-events: none;
  transform-origin: bottom center;
  opacity: 1;
}

body.page-about .eg-about-studio__char--juni {
  transform: none;
}

body.page-about .eg-about-studio__char--kane {
  transform: scaleX(-1);
}

body.page-about .eg-about-founder-cards {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 8;
  overflow: visible;
}

body.page-about .eg-founder-card {
  position: absolute;
  top: auto;
  bottom: 5%;
  width: min(400px, calc(52% - 12px));
  max-width: min(54%, 420px);
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transform: translate3d(0, 14px, 0) scale(0.94) rotate(-0.4deg);
  transform-origin: bottom center;
  filter: drop-shadow(0 18px 42px rgba(45, 26, 77, 0.14));
  transition:
    opacity 0.42s cubic-bezier(0.22, 0.82, 0.28, 1),
    transform 0.45s cubic-bezier(0.22, 0.82, 0.28, 1),
    filter 0.45s ease,
    visibility 0.42s step-end;
}

/* Juni (left): card on the right half, nudged left toward her */
body.page-about .eg-founder-card--juni {
  right: 5%;
  left: auto;
  bottom: 3%;
  transform-origin: bottom right;
  transform: translate3d(12px, 14px, 0) scale(0.94) rotate(-0.4deg);
}

/* Kane (right): card on the left half, nudged right toward him — low anchor so tall card stays in view */
body.page-about .eg-founder-card--kane {
  left: 5%;
  right: auto;
  bottom: 0.5%;
  transform-origin: bottom left;
  transform: translate3d(-12px, 14px, 0) scale(0.94) rotate(0.4deg);
}

body.page-about .eg-founder-card::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 12px;
  left: 14px;
  right: -10px;
  bottom: -12px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(91, 33, 182, 0.55) 0%, rgba(52, 211, 153, 0.35) 100%);
  opacity: 0;
  transform: rotate(-2.5deg) scale(0.92);
  transition:
    opacity 0.45s cubic-bezier(0.22, 0.82, 0.28, 1),
    transform 0.5s cubic-bezier(0.22, 0.82, 0.28, 1);
  pointer-events: none;
}

body.page-about .eg-founder-card--kane::before {
  left: -10px;
  right: 14px;
  transform: rotate(2.5deg) scale(0.92);
}

body.page-about .eg-founder-card.is-visible {
  pointer-events: auto;
  opacity: 1;
  visibility: visible;
  transform: translate3d(0, 0, 0) scale(1) rotate(0deg);
  transition:
    opacity 0.42s cubic-bezier(0.22, 0.82, 0.28, 1),
    transform 0.45s cubic-bezier(0.22, 0.82, 0.28, 1),
    filter 0.45s ease,
    visibility 0s step-start;
}

body.page-about .eg-founder-card--kane.is-visible {
  transform: translate3d(0, 0, 0) scale(1) rotate(0deg);
}

body.page-about .eg-founder-card.is-visible::before {
  opacity: 1;
  transform: rotate(-2deg) scale(1);
}

body.page-about .eg-founder-card--kane.is-visible::before {
  transform: rotate(2deg) scale(1);
}

body.page-about .eg-founder-card__inner {
  position: relative;
  z-index: 1;
  padding: clamp(1.08rem, 2.9vw, 1.35rem) clamp(1.08rem, 2.9vw, 1.45rem)
    clamp(1.35rem, 4.2vw, 1.95rem);
  background: linear-gradient(165deg, #ffffff 0%, #f7f2ff 52%, #ebe4ff 100%);
  border: 2px solid rgba(91, 33, 182, 0.48);
  border-radius: 12px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.92) inset,
    0 22px 52px rgba(45, 26, 77, 0.14),
    0 0 0 1px rgba(167, 139, 250, 0.22);
  overflow: hidden;
  animation: none;
}

body.page-about .eg-founder-card.is-visible .eg-founder-card__inner {
  animation: eg-founder-float 6s ease-in-out 0.5s infinite;
}

body.page-about .eg-founder-card__inner::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 5px;
  background: linear-gradient(180deg, var(--purple-600) 0%, var(--eg-mint) 100%);
  border-radius: 10px 0 0 10px;
  pointer-events: none;
}

body.page-about .eg-founder-card--kane .eg-founder-card__inner::before {
  left: auto;
  right: 0;
  border-radius: 0 10px 10px 0;
}

body.page-about .eg-founder-card--kane .eg-founder-card__inner {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
}

body.page-about .eg-founder-card--kane .eg-founder-card__body {
  align-self: stretch;
  text-align: right;
}

body.page-about .eg-founder-card__inner::after {
  content: "";
  position: absolute;
  top: -30%;
  left: 0;
  width: 55%;
  height: 160%;
  background: linear-gradient(
    105deg,
    transparent 0%,
    rgba(255, 255, 255, 0) 42%,
    rgba(255, 255, 255, 0.4) 50%,
    rgba(255, 255, 255, 0) 58%,
    transparent 100%
  );
  transform: translateX(-100%) skewX(-14deg);
  pointer-events: none;
  opacity: 0;
}

body.page-about .eg-founder-card.is-visible .eg-founder-card__inner::after {
  animation: eg-founder-sheen 1.05s ease-out 0.2s forwards;
}

body.page-about .eg-founder-card__inner > * {
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translate3d(0, 14px, 0);
  transition:
    opacity 0.4s cubic-bezier(0.22, 0.82, 0.28, 1),
    transform 0.4s cubic-bezier(0.22, 0.82, 0.28, 1);
}

body.page-about .eg-founder-card.is-visible .eg-founder-card__inner > .eg-founder-card__kicker {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition-delay: 0.07s;
}

body.page-about .eg-founder-card.is-visible .eg-founder-card__inner > .eg-founder-card__title {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition-delay: 0.12s;
}

body.page-about .eg-founder-card.is-visible .eg-founder-card__inner > .eg-founder-card__photo {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition-delay: 0.18s;
}

body.page-about .eg-founder-card.is-visible .eg-founder-card__inner > .eg-founder-card__body {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition-delay: 0.24s;
}

body.page-about .eg-founder-card.is-visible .eg-founder-card__inner > .eg-founder-card__meta {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition-delay: 0.3s;
}

body.page-about .eg-founder-card:not(.is-visible) .eg-founder-card__inner > * {
  transition-delay: 0s;
  transition-duration: 0.18s;
}

body.page-about .eg-founder-card__kicker {
  margin: 0 0 0.35rem;
}

body.page-about .eg-founder-card__title {
  margin: 0 0 0.5rem;
  font-size: clamp(1.3rem, 3.1vw, 1.62rem);
  line-height: 0.95;
  letter-spacing: 0.06em;
  color: var(--purple-950);
}

body.page-about .eg-founder-card__photo {
  margin: 0 0 0.6rem;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid rgba(109, 40, 217, 0.22);
  background: var(--surface-lavender);
  aspect-ratio: 1;
  max-height: min(178px, 42vw);
  width: 100%;
  max-width: min(178px, 44vw);
  box-shadow: 0 8px 24px rgba(91, 33, 182, 0.12);
}

body.page-about .eg-founder-card--kane .eg-founder-card__photo {
  margin-left: auto;
}

body.page-about .eg-founder-card--kane .eg-founder-card__photo img {
  transform: scale(1.38);
  transform-origin: center 22%;
}

body.page-about .eg-founder-card__photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

body.page-about .eg-founder-card__body {
  margin: 0;
  font-family: var(--font-display);
  font-size: 0.9rem;
  line-height: 1.48;
  color: var(--text-dim);
}

body.page-about .eg-founder-card__body + .eg-founder-card__body {
  margin-top: 0.55rem;
}

body.page-about .eg-founder-card__meta {
  margin: 0.6rem 0 0;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--purple-800);
}

@media (max-width: 640px) {
  body.page-about .eg-founder-card {
    left: 50% !important;
    right: auto !important;
    top: auto;
    bottom: clamp(2%, 8vw, 10%);
    width: min(420px, calc(100% - 1.25rem));
    max-width: none;
    transform: translate3d(-50%, 18px, 0) scale(0.94) rotate(0deg);
    transform-origin: bottom center;
  }

  body.page-about .eg-founder-card.is-visible {
    transform: translate3d(-50%, 0, 0) scale(1) rotate(0deg);
  }

  body.page-about .eg-founder-card--juni {
    bottom: clamp(2%, 8vw, 11%);
  }

  body.page-about .eg-founder-card--kane {
    bottom: clamp(0%, 5vw, 9%);
  }

  body.page-about .eg-founder-card--kane .eg-founder-card__inner {
    display: block;
    align-items: unset;
    text-align: left;
  }

  body.page-about .eg-founder-card--kane .eg-founder-card__body {
    align-self: unset;
    text-align: left;
  }

  body.page-about .eg-founder-card--kane .eg-founder-card__photo {
    margin-left: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.page-about .eg-about-hit {
    transition: none;
  }

  body.page-about .eg-founder-card {
    transition: opacity 0.15s ease, visibility 0.15s step-end;
    transform: translate3d(0, 8px, 0) scale(0.98);
  }

  body.page-about .eg-founder-card--kane {
    transform: translate3d(0, 8px, 0) scale(0.98);
  }

  body.page-about .eg-founder-card.is-visible {
    transition: opacity 0.15s ease, visibility 0s step-start;
    transform: translate3d(0, 0, 0) scale(1);
  }

  body.page-about .eg-founder-card::before {
    transition: opacity 0.15s ease;
  }

  body.page-about .eg-founder-card.is-visible .eg-founder-card__inner {
    animation: none;
  }

  body.page-about .eg-founder-card__inner::after {
    display: none;
  }

  body.page-about .eg-founder-card__inner > *,
  body.page-about .eg-founder-card.is-visible .eg-founder-card__inner > * {
    opacity: 1;
    transform: none;
    transition: none;
    transition-delay: 0s;
  }

  @media (max-width: 640px) {
    body.page-about .eg-founder-card {
      transform: translate3d(-50%, 8px, 0) scale(0.98);
    }

    body.page-about .eg-founder-card.is-visible {
      transform: translate3d(-50%, 0, 0) scale(1);
    }
  }
}

body.page-about .eg-about-studio__names {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  max-width: min(960px, 100%);
  gap: 1rem;
  padding: 0 clamp(2%, 3vw, 4%);
}

body.page-about .eg-about-studio__name {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  font-weight: 600;
  color: var(--purple-950);
}

body.page-about .eg-about-studio__name--juni {
  opacity: 1;
}

body.page-about .eg-about-studio__name--kane {
  text-align: right;
  opacity: 1;
}

body.page-about .eg-about-studio__role {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-top: 0.2rem;
}

/* Podcast strip: same width + shadow language as virtual stage, low profile */
body.page-about .eg-about-podcast-extension {
  padding: clamp(0.25rem, 1vw, 0.65rem) clamp(1rem, 4vw, 1.5rem) clamp(0.85rem, 2.5vw, 1.5rem);
  margin-top: clamp(0.05rem, 0.35vw, 0.25rem);
}

body.page-about .eg-about-podcast {
  width: 100%;
  max-width: min(960px, 100%);
  margin-inline: auto;
}

body.page-about .eg-about-podcast__head {
  margin-bottom: clamp(0.45rem, 1.2vw, 0.7rem);
}

body.page-about .eg-about-podcast__kicker {
  margin: 0 0 0.15rem;
}

body.page-about .eg-about-podcast__title {
  margin: 0 0 0.3rem;
  font-size: clamp(1.45rem, 3.5vw, 2.2rem);
  line-height: 0.95;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--purple-950);
}

body.page-about .eg-about-podcast__lede {
  margin: 0;
  max-width: 54rem;
  font-family: var(--font-body);
  font-size: clamp(0.86rem, 1.45vw, 0.96rem);
  line-height: 1.42;
  color: var(--text-dim);
}

body.page-about .eg-about-podcast__lede cite {
  font-style: normal;
  font-weight: 600;
  color: var(--purple-800);
}

body.page-about .eg-about-podcast__band {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 1fr);
  align-items: stretch;
  gap: 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow:
    0 24px 60px rgba(45, 26, 77, 0.18),
    0 0 0 1px rgba(109, 40, 217, 0.1);
  background: #1a0f2e;
}

body.page-about .eg-about-podcast__figure {
  position: relative;
  margin: 0;
  min-height: 152px;
  max-height: clamp(152px, 21vw, 228px);
}

body.page-about .eg-about-podcast__figure img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
}

body.page-about .eg-about-podcast__caption {
  position: absolute;
  inset: auto 0 0 0;
  margin: 0;
  padding: 0.4rem 0.55rem 0.35rem;
  font-family: var(--font-mono);
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
  background: linear-gradient(0deg, rgba(26, 15, 46, 0.94) 0%, transparent 100%);
}

body.page-about .eg-about-podcast__player {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(0.85rem, 2.2vw, 1.35rem);
  min-width: 0;
  min-height: 152px;
  background: #121212;
  border-left: 1px solid rgba(109, 40, 217, 0.22);
}

body.page-about .eg-about-podcast__spotify-link {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.75rem 0.85rem;
  border-radius: 10px;
  text-decoration: none;
  color: #e8e8e8;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  transition:
    background 0.2s ease,
    border-color 0.2s ease;
}

body.page-about .eg-about-podcast__spotify-link:hover {
  background: rgba(30, 215, 96, 0.1);
  border-color: rgba(30, 215, 96, 0.4);
}

body.page-about .eg-about-podcast__spotify-link:focus-visible {
  outline: 2px solid var(--eg-mint);
  outline-offset: 2px;
}

body.page-about .eg-about-podcast__spotify-mark {
  flex-shrink: 0;
  line-height: 0;
}

body.page-about .eg-about-podcast__spotify-copy {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}

body.page-about .eg-about-podcast__spotify-cta {
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.02em;
}

body.page-about .eg-about-podcast__spotify-ep {
  font-family: var(--font-body);
  font-size: 0.8rem;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.78);
}

body.page-about .eg-about-podcast__spotify-meta {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
}

@media (max-width: 640px) {
  body.page-about .eg-about-podcast__band {
    grid-template-columns: 1fr;
  }

  body.page-about .eg-about-podcast__figure {
    min-height: 140px;
    max-height: min(220px, 52vw);
  }

  body.page-about .eg-about-podcast__player {
    min-height: 0;
    border-left: none;
    border-top: 1px solid rgba(109, 40, 217, 0.22);
    padding: 0.75rem 0.75rem 0.85rem;
  }
}

body.page-about .eg-about-contributors {
  padding: clamp(1.25rem, 3vw, 2rem) clamp(1rem, 4vw, 1.5rem) clamp(1.5rem, 4vw, 2.25rem);
  margin-top: clamp(0.5rem, 2vw, 1rem);
}

body.page-about .eg-about-contributors__inner {
  width: 100%;
  max-width: min(960px, 100%);
  margin-inline: auto;
  text-align: center;
}

body.page-about .eg-about-contributors__title {
  margin: 0 0 0.35rem;
  text-align: center;
}

body.page-about .eg-about-contributors__lede {
  margin: 0 auto clamp(0.75rem, 1.8vw, 1.05rem);
  max-width: 38rem;
  padding: 0 0.25rem;
  font-family: var(--font-body);
  font-size: clamp(0.82rem, 1.35vw, 0.92rem);
  line-height: 1.45;
  color: var(--text-dim);
  text-align: center;
}

body.page-about .eg-about-contributors__pit {
  width: 100%;
  max-width: min(920px, 100%);
  margin-inline: auto;
  margin-top: 0.15rem;
}

body.page-about .eg-about-contributors__footnote {
  margin: clamp(1.35rem, 3.8vw, 2.15rem) auto 0;
  max-width: 34rem;
  padding: 0 0.35rem;
  font-family: var(--font-body);
  font-size: clamp(0.74rem, 1.15vw, 0.84rem);
  line-height: 1.4;
  color: var(--text-dim);
  text-align: center;
}

body.page-about .eg-about-contributors__pit-stage {
  position: relative;
  width: 100%;
  min-height: 0;
  overflow: visible;
}

body.page-about .eg-about-contributors__pit-stage.is-contrib-pit {
  min-height: clamp(268px, 42vh, 420px);
  overflow: visible;
  touch-action: none;
  cursor: grab;
}

body.page-about .eg-about-contributors__pit-stage.is-contrib-pit:active {
  cursor: grabbing;
}

body.page-about .eg-about-contributors__cloud {
  list-style: none;
  margin: 0;
  padding: clamp(0.5rem, 2vw, 1rem) 0 clamp(0.25rem, 1vw, 0.5rem);
  max-width: 100%;
}

body.page-about .eg-about-contributors__cloud:not(.has-contrib-pit) {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 0.45rem 0.55rem;
}

body.page-about .eg-about-contributors__cloud.has-contrib-pit {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: inherit;
  padding: 0;
  display: block;
}

body.page-about .eg-about-contributors__bubble {
  margin: 0;
  padding: 0;
  list-style: none;
}

body.page-about .eg-about-contributors__cloud:not(.has-contrib-pit) .eg-about-contributors__bubble {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: eg-about-contrib-drift 11s ease-in-out infinite;
}

body.page-about .eg-about-contributors__cloud.has-contrib-pit .eg-about-contributors__bubble {
  position: absolute;
  left: 0;
  top: 0;
  width: max-content;
  height: max-content;
  animation: none;
  pointer-events: none;
  will-change: transform;
}

body.page-about .eg-about-contributors__cloud:not(.has-contrib-pit) .eg-about-contributors__bubble:nth-child(1) {
  animation-delay: 0s;
  margin-top: 0.2rem;
}

body.page-about .eg-about-contributors__cloud:not(.has-contrib-pit) .eg-about-contributors__bubble:nth-child(2) {
  animation-delay: -1.4s;
  margin-top: -0.1rem;
}

body.page-about .eg-about-contributors__cloud:not(.has-contrib-pit) .eg-about-contributors__bubble:nth-child(3) {
  animation-delay: -2.8s;
  margin-top: 0.28rem;
}

body.page-about .eg-about-contributors__cloud:not(.has-contrib-pit) .eg-about-contributors__bubble:nth-child(4) {
  animation-delay: -0.75s;
  margin-top: -0.22rem;
}

body.page-about .eg-about-contributors__cloud:not(.has-contrib-pit) .eg-about-contributors__bubble:nth-child(5) {
  animation-delay: -3.7s;
  margin-top: 0.12rem;
}

body.page-about .eg-about-contributors__cloud:not(.has-contrib-pit) .eg-about-contributors__bubble:nth-child(6) {
  animation-delay: -2.1s;
  margin-top: -0.15rem;
}

body.page-about .eg-about-contributors__cloud:not(.has-contrib-pit) .eg-about-contributors__bubble:nth-child(7) {
  animation-delay: -4.6s;
  margin-top: 0.22rem;
}

body.page-about .eg-about-contributors__cloud:not(.has-contrib-pit) .eg-about-contributors__bubble:nth-child(8) {
  animation-delay: -3.1s;
  margin-top: -0.08rem;
}

body.page-about .eg-about-contributors__cloud:not(.has-contrib-pit) .eg-about-contributors__bubble:nth-child(9) {
  animation-delay: -1.1s;
  margin-top: 0.26rem;
}

body.page-about .eg-about-contributors__cloud:not(.has-contrib-pit) .eg-about-contributors__bubble:nth-child(10) {
  animation-delay: -4.1s;
  margin-top: -0.12rem;
}

body.page-about .eg-about-contributors__cloud:not(.has-contrib-pit) .eg-about-contributors__bubble:nth-child(11) {
  animation-delay: -2.4s;
  margin-top: 0.18rem;
}

body.page-about .eg-about-contributors__cloud:not(.has-contrib-pit) .eg-about-contributors__bubble:nth-child(12) {
  animation-delay: -1.2s;
  margin-top: -0.08rem;
}

body.page-about .eg-about-contributors__cloud:not(.has-contrib-pit) .eg-about-contributors__bubble:nth-child(13) {
  animation-delay: -3.3s;
  margin-top: 0.22rem;
}

body.page-about .eg-about-contributors__cloud:not(.has-contrib-pit) .eg-about-contributors__bubble:nth-child(14) {
  animation-delay: -0.9s;
  margin-top: -0.12rem;
}

body.page-about .eg-about-contributors__cloud:not(.has-contrib-pit) .eg-about-contributors__bubble:nth-child(15) {
  animation-delay: -2.7s;
  margin-top: 0.16rem;
}

body.page-about .eg-about-contributors__cloud:not(.has-contrib-pit) .eg-about-contributors__bubble:nth-child(16) {
  animation-delay: -1.6s;
  margin-top: -0.06rem;
}

body.page-about .eg-about-contributors__cloud:not(.has-contrib-pit) .eg-about-contributors__bubble:nth-child(17) {
  animation-delay: -3.9s;
  margin-top: 0.2rem;
}

body.page-about .eg-about-contributors__cloud:not(.has-contrib-pit) .eg-about-contributors__bubble:nth-child(18) {
  animation-delay: -2.2s;
  margin-top: -0.14rem;
}

body.page-about .eg-about-contributors__cloud:not(.has-contrib-pit) .eg-about-contributors__bubble:nth-child(19) {
  animation-delay: -0.5s;
  margin-top: 0.12rem;
}

@keyframes eg-about-contrib-drift {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(1px, -3px);
  }
}

body.page-about .eg-about-contributors__bubble-surface {
  --egg-w: clamp(92px, 21vw, 118px);
  --egg-h: calc(var(--egg-w) * 1.34);
  width: var(--egg-w);
  height: var(--egg-h);
  flex-shrink: 0;
  border-radius: 50% 50% 50% 50% / 58% 58% 42% 42%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0.42rem 0.4rem 0.55rem;
  box-sizing: border-box;
  background:
    radial-gradient(95% 55% at 42% 14%, rgba(255, 255, 255, 0.95) 0%, transparent 52%),
    radial-gradient(120% 80% at 50% 88%, rgba(233, 228, 250, 0.55) 0%, transparent 45%),
    linear-gradient(
      168deg,
      rgba(252, 251, 255, 0.99) 0%,
      rgba(244, 241, 252, 0.94) 38%,
      rgba(220, 208, 252, 0.5) 100%
    );
  border: 1px solid rgba(109, 40, 217, 0.12);
  box-shadow:
    0 5px 16px rgba(45, 26, 77, 0.07),
    0 0 0 1px rgba(255, 255, 255, 0.55) inset;
  transition:
    transform 0.22s cubic-bezier(0.34, 1.2, 0.64, 1),
    box-shadow 0.22s ease,
    border-color 0.22s ease;
}

body.page-about .eg-about-contributors__cloud:not(.has-contrib-pit) .eg-about-contributors__bubble:nth-child(odd) .eg-about-contributors__bubble-surface {
  transform: rotate(-2deg);
}

body.page-about .eg-about-contributors__cloud:not(.has-contrib-pit) .eg-about-contributors__bubble:nth-child(even) .eg-about-contributors__bubble-surface {
  transform: rotate(1.5deg);
}

body.page-about .eg-about-contributors__cloud.has-contrib-pit .eg-about-contributors__bubble-surface {
  transform: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

body.page-about .eg-about-contributors__bubble--sm .eg-about-contributors__bubble-surface {
  --egg-w: clamp(84px, 19vw, 106px);
}

body.page-about .eg-about-contributors__bubble--lg .eg-about-contributors__bubble-surface {
  --egg-w: clamp(102px, 24vw, 132px);
}

body.page-about .eg-about-contributors__cloud:not(.has-contrib-pit) .eg-about-contributors__bubble:hover .eg-about-contributors__bubble-surface {
  transform: rotate(0deg) scale(1.03);
  border-color: rgba(109, 40, 217, 0.2);
  box-shadow:
    0 7px 20px rgba(45, 26, 77, 0.09),
    0 0 0 1px rgba(255, 255, 255, 0.65) inset;
}

body.page-about .eg-about-contributors__bubble-name {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(0.78rem, 2.4vw, 0.95rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--purple-800);
  max-width: 100%;
}

body.page-about .eg-about-contributors__bubble-role {
  display: block;
  margin-top: 0.2rem;
  font-family: var(--font-body);
  font-size: clamp(0.52rem, 1.45vw, 0.62rem);
  font-weight: 500;
  line-height: 1.2;
  color: var(--text-dim);
  max-width: 100%;
  overflow-wrap: anywhere;
}

body.page-about .eg-about-contributors__bubble--lg .eg-about-contributors__bubble-role {
  font-size: clamp(0.5rem, 1.25vw, 0.58rem);
  line-height: 1.15;
}

@media (prefers-reduced-motion: reduce) {
  body.page-about .eg-about-contributors__cloud:not(.has-contrib-pit) .eg-about-contributors__bubble {
    animation: none;
  }

  body.page-about .eg-about-contributors__pit-stage.is-contrib-pit {
    cursor: default;
    touch-action: auto;
  }

  body.page-about .eg-about-contributors__cloud.has-contrib-pit .eg-about-contributors__bubble {
    will-change: auto;
  }

  body.page-about .eg-about-contributors__bubble-surface {
    transition:
      border-color 0.2s ease,
      box-shadow 0.2s ease;
  }

  body.page-about .eg-about-contributors__cloud:not(.has-contrib-pit) .eg-about-contributors__bubble:nth-child(odd) .eg-about-contributors__bubble-surface,
  body.page-about
    .eg-about-contributors__cloud:not(.has-contrib-pit)
    .eg-about-contributors__bubble:nth-child(odd)
    .eg-about-contributors__bubble:hover
    .eg-about-contributors__bubble-surface {
    transform: rotate(-2deg);
  }

  body.page-about .eg-about-contributors__cloud:not(.has-contrib-pit) .eg-about-contributors__bubble:nth-child(even) .eg-about-contributors__bubble-surface,
  body.page-about
    .eg-about-contributors__cloud:not(.has-contrib-pit)
    .eg-about-contributors__bubble:nth-child(even)
    .eg-about-contributors__bubble:hover
    .eg-about-contributors__bubble-surface {
    transform: rotate(1.5deg);
  }
}

body.page-about .eg-about-journey {
  max-width: min(52rem, 100%);
}

body.page-about .eg-about-journey__grid {
  display: grid;
  grid-template-columns: minmax(0, min(280px, 44vw)) minmax(0, 1fr);
  gap: clamp(1.25rem, 4vw, 2.75rem);
  align-items: start;
  margin-top: clamp(0.75rem, 2vw, 1.25rem);
}

@media (max-width: 720px) {
  body.page-about .eg-about-journey__grid {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  body.page-about .eg-about-journey__prose {
    text-align: left;
  }

  body.page-about .eg-about-cta {
    justify-content: center;
  }
}

body.page-about .eg-about-journey__map-wrap {
  margin: 0;
  width: 100%;
  max-width: min(280px, 82vw);
}

body.page-about .eg-about-journey__map-inner {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  opacity: 0;
  transform: scale(0.92) translateY(10px);
  filter: drop-shadow(0 12px 28px rgba(91, 33, 182, 0.15));
  overflow: hidden;
  border-radius: 14px;
  background: rgba(237, 233, 254, 0.35);
}

body.page-about .eg-about-journey.is-visible .eg-about-journey__map-inner {
  animation: eg-about-nz-map-in 0.75s cubic-bezier(0.22, 0.82, 0.28, 1) forwards;
}

@keyframes eg-about-nz-map-in {
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

body.page-about .eg-about-journey__nz {
  display: block;
  width: 100%;
  height: 100%;
}

/* Zoom pivot: Christchurch in projected map space (see about.html comment) */
body.page-about .eg-about-journey__nz-world {
  transform: translate(496.5px, 721.3px) scale(1) translate(-496.5px, -721.3px);
  transform-box: view-box;
}

body.page-about .eg-about-journey.is-visible .eg-about-journey__nz-world {
  animation: eg-about-nz-loop 12s ease-in-out infinite;
}

/* Full NZ → zoom Chch → hold → zoom out → pause → repeat */
@keyframes eg-about-nz-loop {
  0%,
  10% {
    transform: translate(496.5px, 721.3px) scale(1) translate(-496.5px, -721.3px);
  }
  33%,
  60% {
    transform: translate(496.5px, 721.3px) scale(3.5) translate(-496.5px, -721.3px);
  }
  82%,
  100% {
    transform: translate(496.5px, 721.3px) scale(1) translate(-496.5px, -721.3px);
  }
}

body.page-about .eg-about-journey__nz-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

body.page-about .eg-about-journey__nz-caption {
  position: absolute;
  left: 50%;
  bottom: 7%;
  width: 92%;
  margin: 0;
  padding: 0.35rem 0.4rem;
  transform: translate3d(-50%, 10px, 0);
  font-family: var(--font-mono);
  font-size: clamp(0.58rem, 1.85vw, 0.72rem);
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1.35;
  text-align: center;
  text-transform: uppercase;
  color: var(--purple-950);
  text-shadow:
    0 0 10px #fff,
    0 0 14px rgba(255, 255, 255, 0.95),
    0 1px 2px rgba(255, 255, 255, 0.9);
  opacity: 0;
}

body.page-about .eg-about-journey.is-visible .eg-about-journey__nz-caption {
  animation: eg-about-nz-caption-loop 12s ease-in-out infinite;
}

@keyframes eg-about-nz-caption-loop {
  0%,
  31% {
    opacity: 0;
    transform: translate3d(-50%, 10px, 0);
  }
  36%,
  53% {
    opacity: 1;
    transform: translate3d(-50%, 0, 0);
  }
  58%,
  100% {
    opacity: 0;
    transform: translate3d(-50%, 8px, 0);
  }
}

body.page-about .eg-about-journey__nz-tagline-rm {
  display: none;
}

body.page-about .eg-about-journey__nz-land {
  fill: rgba(196, 181, 253, 0.5);
  stroke: var(--purple-700);
  stroke-width: 5;
  stroke-linejoin: round;
  stroke-linecap: round;
}

body.page-about .eg-about-journey__nz-land:first-of-type {
  fill: rgba(167, 139, 250, 0.42);
}

body.page-about .eg-about-journey__nz-chch {
  position: absolute;
  left: 49.65%;
  top: 72.13%;
  width: 0;
  height: 0;
  transform: translate(-50%, -50%);
  pointer-events: none;
  opacity: 0;
}

body.page-about .eg-about-journey.is-visible .eg-about-journey__nz-chch {
  animation: eg-about-nz-chch-loop 12s ease-in-out infinite;
}

@keyframes eg-about-nz-chch-loop {
  0%,
  11% {
    opacity: 0;
  }
  14%,
  58% {
    opacity: 1;
  }
  61%,
  100% {
    opacity: 0;
  }
}

body.page-about .eg-about-journey__nz-flag-pin {
  position: absolute;
  left: 50%;
  top: 50%;
  display: block;
  line-height: 0;
  transform: translate(-50%, calc(-100% + 4px));
  filter: drop-shadow(0 4px 8px rgba(45, 26, 77, 0.4));
}

body.page-about .eg-about-journey__nz-ping {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 14px;
  height: 14px;
  margin: -7px 0 0 -7px;
  border-radius: 50%;
  border: 2px solid var(--purple-500);
  opacity: 0;
  transform: scale(0.35);
}

body.page-about .eg-about-journey.is-visible .eg-about-journey__nz-ping--a {
  animation: eg-about-nz-ping-a-loop 12s ease-out infinite;
}

body.page-about .eg-about-journey.is-visible .eg-about-journey__nz-ping--b {
  animation: eg-about-nz-ping-b-loop 12s ease-out infinite;
}

@keyframes eg-about-nz-ping-a-loop {
  0%,
  35% {
    opacity: 0;
    transform: scale(0.35);
  }
  38% {
    opacity: 0.75;
    transform: scale(0.45);
  }
  48% {
    opacity: 0;
    transform: scale(2.7);
  }
  49%,
  52% {
    opacity: 0;
    transform: scale(0.35);
  }
  54% {
    opacity: 0.75;
    transform: scale(0.45);
  }
  63% {
    opacity: 0;
    transform: scale(2.7);
  }
  64%,
  100% {
    opacity: 0;
    transform: scale(0.35);
  }
}

@keyframes eg-about-nz-ping-b-loop {
  0%,
  38% {
    opacity: 0;
    transform: scale(0.35);
  }
  41% {
    opacity: 0.65;
    transform: scale(0.45);
  }
  51% {
    opacity: 0;
    transform: scale(2.5);
  }
  52%,
  100% {
    opacity: 0;
    transform: scale(0.35);
  }
}

body.page-about .eg-about-journey__prose .eg-slim-lede {
  font-size: clamp(1rem, 2.1vw, 1.12rem);
  line-height: 1.65;
  margin-top: 1rem;
}

body.page-about .eg-about-journey__prose .eg-slim-lede:first-of-type {
  margin-top: 0;
}

body.page-about .eg-about-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 16px;
  margin-top: clamp(1.75rem, 4vw, 2.5rem);
}

@media (prefers-reduced-motion: reduce) {
  body.page-about .eg-about-hit--juni {
    transform: translateZ(32px) scale(0.9);
  }

  body.page-about .eg-about-hit--kane {
    transform: translateZ(32px) scale(0.9);
  }

  body.page-about .eg-about-studio__char--kane {
    transform: scaleX(-1);
  }

  body.page-about .eg-about-journey__map-inner {
    animation: none;
    opacity: 1;
    transform: none;
  }

  body.page-about .eg-about-journey__nz-world {
    animation: none;
    transform: translate(496.5px, 721.3px) scale(1) translate(-496.5px, -721.3px);
  }

  body.page-about .eg-about-journey.is-visible .eg-about-journey__nz-world {
    animation: none;
  }

  body.page-about .eg-about-journey__nz-caption {
    display: none;
  }

  body.page-about .eg-about-journey__nz-tagline-rm {
    display: block;
    margin: 0.65rem 0 0;
    text-align: center;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--purple-800);
  }

  body.page-about .eg-about-journey.is-visible .eg-about-journey__nz-chch {
    animation: none;
    opacity: 0;
  }

  body.page-about .eg-about-journey.is-visible .eg-about-journey__nz-ping--a,
  body.page-about .eg-about-journey.is-visible .eg-about-journey__nz-ping--b {
    animation: none;
  }

  body.page-about .eg-about-journey__nz-ping {
    opacity: 0;
  }
}

/* -------------------------------------------------------------------------- */
/* Home marketing journey + For creators page                                 */
/* -------------------------------------------------------------------------- */

body.page-home .eg-mkt-journey {
  position: relative;
  padding: clamp(2.5rem, 7vw, 4.5rem) 0;
  overflow: hidden;
}

body.page-home .eg-mkt-journey__inner {
  position: relative;
  max-width: min(1100px, 100%);
  margin-inline: auto;
}

body.page-home .eg-mkt-journey__rail {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--purple-400), var(--purple-800));
  opacity: 0.35;
  border-radius: 2px;
}

body.page-home .eg-mkt-journey--world .eg-mkt-journey__rail {
  background: linear-gradient(180deg, #a78bfa, #6d28d9);
  opacity: 0.55;
}

body.page-home .eg-mkt-step {
  margin: 0 0 0.75rem;
  padding-left: 1rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--purple-600);
}

body.page-home .eg-mkt-journey--world .eg-mkt-step {
  color: #c4b5fd;
}

body.page-home .eg-mkt-journey__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(260px, 0.95fr);
  gap: clamp(1.25rem, 4vw, 2.75rem);
  align-items: center;
  padding-left: 1rem;
}

@media (max-width: 900px) {
  body.page-home .eg-mkt-journey__grid {
    grid-template-columns: 1fr;
  }

  body.page-home .eg-mkt-journey__grid--reverse .eg-mkt-journey__copy,
  body.page-home .eg-mkt-journey__grid--reverse .eg-mkt-viz {
    order: unset;
  }

  body.page-home .eg-mkt-viz {
    max-width: 420px;
    margin-inline: auto;
  }

  body.page-home .eg-mkt-viz--grow,
  body.page-home .eg-mkt-viz--showcase {
    max-width: min(540px, 100%);
  }
}

body.page-home .eg-mkt-journey__grid--reverse .eg-mkt-journey__copy {
  order: 2;
}

body.page-home .eg-mkt-journey__grid--reverse .eg-mkt-viz {
  order: 1;
}

body.page-home .eg-mkt-journey__h2 {
  margin: 0 0 0.85rem;
  font-size: clamp(1.35rem, 3.2vw, 1.85rem);
  line-height: 1.12;
}

body.page-home .eg-mkt-journey__lede {
  margin: 0 0 1rem;
  font-size: clamp(1rem, 2.1vw, 1.12rem);
  line-height: 1.6;
  color: var(--text-dim);
}

body.page-home .eg-mkt-journey--world .eg-mkt-journey__lede {
  color: rgba(237, 233, 254, 0.82);
}

body.page-home .eg-mkt-bullets {
  margin: 0 0 1.35rem;
  padding-left: 1.15rem;
  line-height: 1.55;
  font-size: 0.95rem;
  color: var(--text-dim);
}

body.page-home .eg-mkt-journey--world .eg-mkt-bullets {
  color: rgba(237, 233, 254, 0.78);
}

body.page-home .eg-mkt-journey--world .eg-mkt-journey__h2 {
  color: #faf5ff;
}

body.page-home .eg-mkt-journey--world {
  background: linear-gradient(155deg, #1a0f2e 0%, #312e81 42%, #0f172a 100%);
  color: #ede9fe;
}

body.page-home .eg-mkt-journey--grow {
  background: linear-gradient(180deg, #faf8ff 0%, #f3e8ff 55%, #ecfdf5 100%);
}

/* Journey UI screenshots (customizer, showcase) — not floating badge art */
body.page-home .eg-mkt-journey__ui-frame {
  width: 100%;
  max-width: min(540px, 100%);
  margin-inline: auto;
  border-radius: 14px;
  overflow: hidden;
  border: 2px solid rgba(45, 27, 78, 0.12);
  box-shadow: 0 20px 48px rgba(26, 16, 48, 0.1);
  background: #fff;
}

body.page-home .eg-mkt-journey__ui-img {
  display: block;
  width: 100%;
  height: auto;
  opacity: 0;
  transform: translateY(12px) scale(0.99);
  transform-origin: 50% 40%;
}

body.page-home .eg-mkt-journey--grow .eg-mkt-journey__inner.is-visible .eg-mkt-journey__ui-img--grow,
body.page-home .eg-mkt-journey--showcase .eg-mkt-journey__inner.is-visible .eg-mkt-journey__ui-img--showcase {
  animation: eg-mkt-ui-shot-in 0.78s cubic-bezier(0.22, 0.82, 0.28, 1) 0.08s forwards;
}

@keyframes eg-mkt-ui-shot-in {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.99);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  body.page-home .eg-mkt-journey__ui-img,
  body.page-home .eg-mkt-journey--grow .eg-mkt-journey__inner.is-visible .eg-mkt-journey__ui-img--grow,
  body.page-home .eg-mkt-journey--showcase .eg-mkt-journey__inner.is-visible .eg-mkt-journey__ui-img--showcase {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

body.page-home .eg-mkt-journey__footer-link {
  margin: 1.25rem 0 0;
  font-size: 0.95rem;
}

body.page-home .eg-mkt-journey--grow .eg-mkt-journey__footer-link a {
  color: var(--purple-700);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

body.page-home .eg-mkt-journey--grow .eg-mkt-journey__footer-link a:hover {
  color: var(--purple-900);
}

body.page-home .eg-price-foot {
  margin: 0;
  padding-top: 2px;
}

body.page-home .eg-mkt-text-link {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--purple-700);
  text-decoration: underline;
  text-underline-offset: 3px;
}

body.page-home .eg-mkt-text-link:hover {
  color: var(--purple-900);
}

/* Journey step badges (transparent PNG artwork, 01 → 03) */
body.page-home .eg-mkt-viz {
  display: flex;
  align-items: center;
  justify-content: center;
}

body.page-home .eg-mkt-journey__badge-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

body.page-home .eg-mkt-journey__badge {
  display: block;
  width: 100%;
  max-width: min(280px, 100%);
  height: auto;
  opacity: 0;
  transform: translate(12px, 20px) scale(0.93) rotate(-4deg);
  transform-origin: 55% 58%;
  filter: drop-shadow(0 14px 28px rgba(15, 10, 40, 0.22));
}

body.page-home .eg-mkt-journey--world .eg-mkt-journey__badge {
  filter: drop-shadow(0 18px 40px rgba(0, 0, 0, 0.42));
}

body.page-home .eg-mkt-journey__badge-wrap--mirror .eg-mkt-journey__badge {
  transform: translate(-14px, 20px) scale(0.93) rotate(4deg);
  transform-origin: 45% 58%;
}

body.page-home .eg-mkt-journey__inner.is-visible .eg-mkt-journey__badge {
  animation: eg-mkt-badge-pop 0.8s cubic-bezier(0.22, 0.82, 0.28, 1) 0.08s forwards;
}

body.page-home .eg-mkt-journey__inner.is-visible .eg-mkt-journey__badge-wrap--mirror .eg-mkt-journey__badge {
  animation: eg-mkt-badge-pop-mirror 0.8s cubic-bezier(0.22, 0.82, 0.28, 1) 0.08s forwards;
}

body.page-home .eg-mkt-journey__inner.is-visible .eg-mkt-journey__badge-wrap {
  animation: eg-mkt-badge-float 3.2s ease-in-out 0.95s infinite alternate;
}

@keyframes eg-mkt-badge-pop {
  from {
    opacity: 0;
    transform: translate(12px, 20px) scale(0.93) rotate(-4deg);
  }

  70% {
    opacity: 1;
    transform: translate(-2px, -4px) scale(1.03) rotate(0.5deg);
  }

  to {
    opacity: 1;
    transform: translate(0, 0) scale(1) rotate(0deg);
  }
}

@keyframes eg-mkt-badge-pop-mirror {
  from {
    opacity: 0;
    transform: translate(-14px, 20px) scale(0.93) rotate(4deg);
  }

  70% {
    opacity: 1;
    transform: translate(2px, -4px) scale(1.03) rotate(-0.5deg);
  }

  to {
    opacity: 1;
    transform: translate(0, 0) scale(1) rotate(0deg);
  }
}

@keyframes eg-mkt-badge-float {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(-6px);
  }
}

@media (prefers-reduced-motion: reduce) {
  body.page-home .eg-mkt-journey__inner.is-visible .eg-mkt-journey__badge-wrap,
  body.page-home .eg-mkt-journey__badge-wrap {
    animation: none;
  }

  body.page-home .eg-mkt-journey__badge,
  body.page-home .eg-mkt-journey__inner.is-visible .eg-mkt-journey__badge,
  body.page-home .eg-mkt-journey__inner.is-visible .eg-mkt-journey__badge-wrap--mirror .eg-mkt-journey__badge {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

/* For creators page */
body.page-creators .eg-creators-hero__inner {
  max-width: min(40rem, 100%);
}

body.page-creators .eg-creators-hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
  margin: 0.5rem 0 1.25rem;
}

body.page-creators .eg-creators-hero__chip {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 12px;
  border: 2px solid rgba(109, 40, 217, 0.35);
  background: #fff;
  color: var(--purple-800);
}

body.page-creators .eg-creators-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 14px;
  align-items: center;
}

body.page-creators .eg-creators-subjects-cta {
  margin-top: 1.5rem;
}

body.page-creators .eg-pxl-foot {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
  justify-content: center;
  align-items: center;
}

body.page-creators .eg-creator-currency-list {
  list-style: none;
  margin: 1.25rem 0 0;
  padding: 0;
  max-width: min(40rem, 100%);
  display: grid;
  gap: 0.75rem;
}

body.page-creators .eg-creator-currency-list li {
  margin: 0;
  padding: 0.85rem 1rem 0.95rem 1.1rem;
  border-left: 3px solid rgba(109, 40, 217, 0.45);
  background: rgba(255, 255, 255, 0.65);
  border-radius: 0 10px 10px 0;
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  line-height: 1.5;
  color: var(--text);
  box-shadow: 0 1px 0 rgba(109, 40, 217, 0.06);
}

body.page-creators .eg-creator-currency-foot {
  margin-top: 1.5rem;
}

/* Creator currency — NZ map–matched frame + hand toss + egg token (about journey pattern) */
body.page-creators .eg-creator-currency {
  max-width: min(52rem, 100%);
  margin-inline: auto;
}

body.page-creators .eg-creator-currency__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, min(280px, 44vw));
  gap: clamp(1.25rem, 4vw, 2.75rem);
  align-items: center;
  margin-top: clamp(0.75rem, 2vw, 1.25rem);
}

@media (max-width: 720px) {
  body.page-creators .eg-creator-currency__grid {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  body.page-creators .eg-creator-currency__copy {
    width: 100%;
    text-align: left;
  }
}

body.page-creators .eg-creator-currency__coin-wrap {
  margin: 0;
  width: 100%;
  max-width: min(280px, 82vw);
  justify-self: end;
}

@media (max-width: 720px) {
  body.page-creators .eg-creator-currency__coin-wrap {
    justify-self: center;
    max-width: min(220px, 70vw);
  }
}

/* Same shell treatment as about NZ map tile */
body.page-creators .eg-creator-currency__viz-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 1;
  padding: 10% 8%;
  opacity: 0;
  transform: scale(0.92) translateY(10px);
  filter: drop-shadow(0 12px 28px rgba(91, 33, 182, 0.15));
  overflow: hidden;
  border-radius: 14px;
  background: rgba(237, 233, 254, 0.35);
  box-sizing: border-box;
}

body.page-creators .eg-cc-coins-motion {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

body.page-creators .eg-cc-coins-art {
  display: block;
  width: 100%;
  max-width: min(240px, 100%);
  height: auto;
  opacity: 0;
  transform: translate(14px, 20px) scale(0.92) rotate(-4deg);
  transform-origin: 55% 58%;
}

body.page-creators .eg-creator-currency.is-visible .eg-creator-currency__viz-inner {
  animation: eg-cc-viz-in 0.75s cubic-bezier(0.22, 0.82, 0.28, 1) forwards;
}

body.page-creators .eg-creator-currency.is-visible .eg-cc-coins-art {
  animation: eg-cc-coins-pop 0.82s cubic-bezier(0.22, 0.82, 0.28, 1) 0.08s forwards;
}

body.page-creators .eg-creator-currency.is-visible .eg-cc-coins-motion {
  animation: eg-cc-coins-float 3.4s ease-in-out 0.95s infinite alternate;
}

@keyframes eg-cc-viz-in {
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@keyframes eg-cc-coins-pop {
  70% {
    opacity: 1;
    transform: translate(-2px, -4px) scale(1.03) rotate(0.5deg);
  }

  to {
    opacity: 1;
    transform: translate(0, 0) scale(1) rotate(0deg);
  }
}

@keyframes eg-cc-coins-float {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(-7px);
  }
}

@media (prefers-reduced-motion: reduce) {
  body.page-creators .eg-creator-currency__viz-inner {
    animation: none;
    opacity: 1;
    transform: none;
  }

  body.page-creators .eg-creator-currency.is-visible .eg-cc-coins-motion,
  body.page-creators .eg-cc-coins-motion {
    animation: none;
  }

  body.page-creators .eg-cc-coins-art,
  body.page-creators .eg-creator-currency.is-visible .eg-cc-coins-art {
    animation: none;
    opacity: 1;
    transform: none;
  }
}
