:root {
  --ink: #0b0d0f;
  --ink-soft: #171a1d;
  --paper: #f2efe8;
  --paper-soft: #e7e3da;
  --white: #fffdf8;
  --acid: #c9ff3d;
  --amber: #ffb45a;
  --rose: #e98b86;
  --forest: #102a22;
  --moss: #70ca8d;
  --muted: #a5a59f;
  --line-dark: rgba(255, 255, 255, 0.14);
  --line-light: rgba(11, 13, 15, 0.16);
  --max: 1240px;
  --pad: clamp(1.25rem, 4vw, 4rem);
  --display: "Iowan Old Style", Baskerville, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--ink); }
body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: 0.24em; }
a:hover { text-decoration-color: var(--acid); }
img, video { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; }
::selection { background: var(--acid); color: var(--ink); }
:focus-visible { outline: 3px solid var(--acid); outline-offset: 4px; }

.skip-link {
  position: fixed;
  z-index: 1000;
  left: 1rem;
  top: 1rem;
  padding: 0.75rem 1rem;
  transform: translateY(-200%);
  background: var(--acid);
  color: var(--ink);
  font-weight: 800;
}
.skip-link:focus { transform: translateY(0); }
.section-shell { width: min(100%, var(--max)); margin-inline: auto; padding-inline: var(--pad); }

.site-header { position: absolute; z-index: 100; top: 0; width: 100%; color: var(--white); }
.header-inner {
  display: flex;
  width: min(100%, var(--max));
  min-height: 96px;
  margin-inline: auto;
  padding-inline: var(--pad);
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line-dark);
}
.brand { display: inline-flex; align-items: center; gap: 0.7rem; color: inherit; text-decoration: none; }
.brand-mark {
  position: relative;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 0.72rem;
  line-height: 1;
}
.brand-mark i {
  position: absolute;
  width: 54px;
  height: 18px;
  border-top: 1px solid currentColor;
  border-radius: 50%;
  transform: rotate(-24deg);
}
.brand-mark b { font-weight: 850; letter-spacing: -0.08em; }
.brand-mark em {
  position: absolute;
  right: -3px;
  bottom: 2px;
  padding: 2px;
  background: var(--acid);
  color: var(--ink);
  font-size: 0.52rem;
  font-style: normal;
  font-weight: 900;
}
.brand-type { display: grid; line-height: 1; text-transform: uppercase; }
.brand-type strong { font-size: 0.88rem; letter-spacing: 0.1em; }
.brand-type small {
  margin-top: 0.24rem;
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.3em;
}
.desktop-nav { display: flex; min-height: 44px; align-items: center; gap: clamp(1rem, 2.4vw, 2rem); }
.desktop-nav a {
  position: relative;
  padding: 0.5rem 0;
  color: #e7e5dd;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}
.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0.2rem;
  left: 0;
  height: 1px;
  content: "";
  transform: scaleX(0);
  background: var(--acid);
  transform-origin: right;
  transition: transform 180ms ease;
}
.desktop-nav a:hover::after, .desktop-nav a:focus-visible::after { transform: scaleX(1); transform-origin: left; }
.desktop-nav .language-link { padding: 0.58rem 0.82rem; border: 1px solid var(--line-dark); }
.mobile-menu { display: none; }

.hero {
  position: relative;
  display: grid;
  min-height: min(900px, 100svh);
  overflow: hidden;
  padding: clamp(9rem, 18vh, 13rem) var(--pad) clamp(4rem, 10vh, 7rem);
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.55fr);
  align-items: center;
  gap: 4rem;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px) 0 0 / 44px 44px,
    radial-gradient(circle at 78% 54%, rgba(201, 255, 61, 0.12), transparent 28%),
    var(--ink);
  color: var(--white);
}
.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 34%;
  height: 10px;
  content: "";
  background: var(--acid);
}
.hero-content {
  position: relative;
  z-index: 2;
  width: min(760px, 100%);
  margin-left: max(0px, calc((100vw - var(--max)) / 2));
}
.eyebrow { margin: 0 0 1.2rem; font-size: 0.72rem; font-weight: 800; letter-spacing: 0.19em; text-transform: uppercase; }
.hero .eyebrow { color: var(--acid); }
.hero h1, .page-hero h1, .game-hero h1, .section-heading h2, .manifesto h2, .end-cta h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.94;
}
.hero h1 { max-width: 820px; font-size: clamp(4.2rem, 9vw, 9.5rem); }
.hero-intro {
  max-width: 660px;
  margin: 2rem 0 0;
  color: #cac9c4;
  font-size: clamp(1.08rem, 1.6vw, 1.35rem);
  line-height: 1.6;
}
.hero-actions { display: flex; margin-top: 2.2rem; flex-wrap: wrap; gap: 0.8rem; }
.button {
  display: inline-flex;
  min-height: 52px;
  padding: 0.85rem 1.2rem;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  border: 1px solid currentColor;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}
.button:hover { transform: translateY(-2px); text-decoration: none; }
.button.primary { border-color: var(--acid); background: var(--acid); color: var(--ink); }
.button.primary:hover { background: var(--white); border-color: var(--white); }
.button.quiet { color: currentColor; }
.button.disabled { cursor: not-allowed; opacity: 0.7; }
.development-note { display: flex; margin: 2rem 0 0; align-items: center; gap: 0.6rem; color: #93938f; font-size: 0.78rem; }
.development-note span { width: 8px; height: 8px; border-radius: 50%; background: var(--amber); }
.hero-emblem {
  position: relative;
  z-index: 2;
  display: grid;
  width: min(30vw, 430px);
  aspect-ratio: 1;
  place-items: center;
  justify-self: center;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 50%;
  color: var(--white);
}
.hero-emblem::before, .hero-emblem::after {
  position: absolute;
  content: "";
  border: 1px solid var(--line-dark);
  border-radius: 50%;
}
.hero-emblem::before { width: 120%; height: 46%; transform: rotate(-22deg); }
.hero-emblem::after { width: 46%; height: 120%; transform: rotate(28deg); }
.hero-emblem span { font-size: clamp(4rem, 9vw, 8rem); font-weight: 900; letter-spacing: -0.1em; line-height: 1; }
.hero-emblem i {
  position: absolute;
  right: 8%;
  bottom: 20%;
  padding: 0.4rem;
  background: var(--acid);
  color: var(--ink);
  font-size: clamp(1rem, 3vw, 2.4rem);
  font-style: normal;
  font-weight: 900;
}
.hero-emblem b {
  position: absolute;
  bottom: -2.5rem;
  padding: 0 1rem;
  background: var(--ink);
  color: var(--muted);
  font-size: 0.65rem;
  letter-spacing: 0.4em;
}
.hero-field { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.field-ring { position: absolute; border: 1px solid rgba(255, 255, 255, 0.06); border-radius: 50%; }
.field-ring.r1 { right: -18vw; bottom: -42vw; width: 92vw; height: 92vw; }
.field-ring.r2 { right: -3vw; bottom: -24vw; width: 58vw; height: 58vw; }
.field-ring.r3 { top: 10%; left: -12%; width: 25vw; height: 25vw; }
.field-star { position: absolute; width: 4px; height: 4px; border-radius: 50%; background: var(--acid); }
.field-star.s1 { top: 24%; right: 39%; }
.field-star.s2 { right: 10%; bottom: 16%; }
.field-star.s3 { top: 48%; left: 6%; }

.games-section { padding-top: clamp(5rem, 10vw, 9rem); padding-bottom: clamp(6rem, 12vw, 11rem); }
.section-heading {
  display: grid;
  margin-bottom: 3.5rem;
  grid-template-columns: 0.4fr 1fr 0.75fr;
  align-items: end;
  gap: 2rem;
}
.section-heading .eyebrow { align-self: start; color: #65645e; }
.section-heading h2 { font-size: clamp(3rem, 6vw, 6rem); }
.section-heading > p:last-child { margin: 0; color: #555650; }
.games-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.2rem; }
.game-card { min-width: 0; overflow: hidden; border: 1px solid var(--line-light); background: var(--white); }
.game-card-link { display: block; height: 100%; text-decoration: none; }
.game-card-link:hover { text-decoration: none; }
.game-card-copy { padding: clamp(1.5rem, 3vw, 2.5rem); }
.card-meta {
  display: flex;
  margin-bottom: 1.4rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: #65645f;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.game-card h3 { margin: 0; font-family: var(--display); font-size: clamp(2.6rem, 5vw, 5rem); font-weight: 400; letter-spacing: -0.05em; }
.game-card p { max-width: 560px; margin: 1rem 0 1.5rem; color: #50514d; }
.text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-decoration: underline;
  text-transform: uppercase;
}
.game-visual { position: relative; display: grid; min-height: 540px; overflow: hidden; place-items: center; isolation: isolate; background: var(--ink-soft); }
.game-visual.compact { min-height: 360px; }
.game-art { position: absolute; z-index: -3; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 500ms cubic-bezier(0.22, 1, 0.36, 1); }
.game-card-link:hover .game-art { transform: scale(1.025); }
.game-visual.craft-flow.compact .game-art { object-position: center 54%; }
.game-visual.craft-flow:not(.compact) .game-art { object-position: center 58%; }
.game-visual.coregrove.compact .game-art { object-position: center 48%; }
.game-visual.coregrove:not(.compact) .game-art { object-position: center; }
.visual-shade { position: absolute; z-index: -2; inset: 0; background: linear-gradient(180deg, rgba(8, 10, 10, 0.02) 35%, rgba(8, 10, 10, 0.7)); }
.craft-flow .visual-shade { background: linear-gradient(180deg, rgba(35, 20, 12, 0.02) 40%, rgba(35, 20, 12, 0.66)); }
.visual-grain {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.12;
  background-image: radial-gradient(#fff 0.55px, transparent 0.55px);
  background-size: 5px 5px;
  mix-blend-mode: soft-light;
}
.visual-orbit { position: absolute; border: 1px solid currentColor; border-radius: 50%; opacity: 0.42; }
.orbit-one { width: 72%; height: 36%; transform: rotate(-18deg); }
.orbit-two { width: 36%; height: 76%; transform: rotate(22deg); }
.craft-flow .visual-orbit { border-style: dashed; }
.coregrove .visual-orbit { box-shadow: 0 0 38px rgba(112, 202, 141, 0.16); }
.game-monogram { font-family: var(--display); font-size: clamp(5rem, 11vw, 10rem); letter-spacing: -0.1em; }
.visual-caption { position: absolute; right: 1.5rem; bottom: 1.4rem; padding: 0.5rem 0.65rem; background: rgba(11, 13, 15, 0.74); color: var(--white); font-size: 0.58rem; font-weight: 800; letter-spacing: 0.22em; text-transform: uppercase; backdrop-filter: blur(8px); }

.manifesto {
  display: grid;
  padding-top: clamp(4rem, 8vw, 7rem);
  padding-bottom: clamp(4rem, 8vw, 7rem);
  grid-template-columns: 0.2fr 0.8fr 0.75fr;
  align-items: start;
  gap: 2rem;
  border-top: 1px solid var(--line-light);
}
.manifesto-number { color: #807f78; font-size: 0.72rem; }
.manifesto h2 { max-width: 550px; font-size: clamp(2.8rem, 5vw, 5rem); }
.manifesto > p { margin: 0; color: #4e4f4b; font-size: 1.1rem; }

.page-hero {
  max-width: none;
  padding-top: clamp(11rem, 18vw, 15rem);
  padding-bottom: clamp(5rem, 10vw, 9rem);
  background: var(--ink);
  color: var(--white);
}
.page-hero > * { width: min(100%, calc(var(--max) - 2 * var(--pad))); margin-inline: auto; }
.page-hero .eyebrow { color: var(--acid); }
.page-hero h1 { max-width: 1000px; font-size: clamp(4rem, 8vw, 8rem); }
.page-hero > p:last-child {
  max-width: 720px;
  margin-top: 2rem;
  margin-left: max(var(--pad), calc((100vw - var(--max)) / 2 + var(--pad)));
  color: #babbb6;
  font-size: clamp(1.05rem, 1.7vw, 1.3rem);
}

.game-hero {
  display: grid;
  width: 100%;
  max-width: none;
  min-height: 820px;
  padding-top: 10rem;
  padding-bottom: 4rem;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1fr);
  align-items: center;
  gap: 3rem;
  background: var(--ink);
  color: var(--white);
}
.game-hero-copy { margin-left: max(0px, calc((100vw - var(--max)) / 2)); }
.game-hero .card-meta { color: #adada7; }
.game-hero h1 { font-size: clamp(5rem, 10vw, 10rem); }
.game-tagline { max-width: 600px; margin: 1.5rem 0 0; font-family: var(--display); font-size: clamp(1.9rem, 3.6vw, 3.5rem); line-height: 1.05; }
.game-summary { max-width: 600px; color: #bdbdb8; font-size: 1.06rem; }
.game-hero .game-visual { min-height: 610px; }
.game-quote { padding-top: clamp(4rem, 9vw, 8rem); padding-bottom: clamp(4rem, 9vw, 8rem); text-align: center; }
.game-quote p { max-width: 1000px; margin: 0 auto; font-family: var(--display); font-size: clamp(2.8rem, 6vw, 6rem); letter-spacing: -0.04em; line-height: 1; }

.features-section { padding-top: 5rem; padding-bottom: 7rem; border-top: 1px solid var(--line-light); }
.features-grid, .values, .support-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
.feature, .values article, .support-grid article { padding: clamp(1.5rem, 3vw, 2.5rem); border: 1px solid var(--line-light); background: var(--white); }
.feature > span, .values article > span, .support-grid article > span { color: #777770; font-size: 0.68rem; font-weight: 800; letter-spacing: 0.14em; }
.feature h3, .values h2, .support-grid h2 {
  margin: 3rem 0 0.8rem;
  font-family: var(--display);
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1;
}
.feature p, .values p, .support-grid p { color: #565752; }

.media-stage { display: grid; padding-top: 3rem; padding-bottom: 8rem; grid-template-columns: minmax(0, 1.5fr) minmax(260px, 0.5fr); gap: 1rem; }
.game-gallery { display: grid; min-width: 0; gap: 1rem; }
.craft-gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.core-gallery { grid-template-columns: 1fr; }
.gallery-card { position: relative; min-width: 0; min-height: 620px; margin: 0; overflow: hidden; background: var(--ink-soft); }
.core-gallery .world-map { min-height: 390px; }
.core-gallery .battle-map { min-height: 280px; }
.gallery-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.craft-gallery .gallery-card img { object-position: center 54%; }
.gallery-card::after { position: absolute; inset: 0; content: ""; background: linear-gradient(180deg, transparent 52%, rgba(8, 10, 10, 0.72)); pointer-events: none; }
.gallery-card figcaption { position: absolute; z-index: 1; right: 1.25rem; bottom: 1.15rem; left: 1.25rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; color: var(--white); font-size: 0.74rem; font-weight: 800; letter-spacing: 0.09em; text-transform: uppercase; }
.gallery-card figcaption span { color: var(--acid); }
.facts-panel { padding: 2rem; background: var(--ink); color: var(--white); }
.facts-panel .eyebrow { color: var(--acid); }
.facts-panel dl { margin: 2rem 0 0; }
.facts-panel dl > div { display: grid; padding: 1rem 0; grid-template-columns: 1fr 1fr; gap: 1rem; border-top: 1px solid var(--line-dark); }
.facts-panel dt { color: #999a95; font-size: 0.72rem; font-weight: 750; text-transform: uppercase; }
.facts-panel dd { margin: 0; }
.end-cta { padding-top: clamp(5rem, 10vw, 9rem); padding-bottom: clamp(5rem, 10vw, 9rem); background: var(--ink); color: var(--white); }
.end-cta h2 { max-width: 900px; font-size: clamp(3.5rem, 7vw, 7rem); }
.end-cta > p:not(.eyebrow) { max-width: 650px; color: #bdbdb7; }

/* Product pages */
.product-page {
  --product-accent: #f2b06f;
  --product-deep: #17110f;
  min-width: 0;
  overflow: clip;
  padding-top: 96px;
  background: #f5f4f0;
}
.product-core { --product-accent: #78f2b1; --product-deep: #06130f; }
.product-nav {
  position: sticky;
  z-index: 90;
  top: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(10, 10, 10, 0.82);
  color: var(--white);
  backdrop-filter: saturate(140%) blur(18px);
}
.product-nav > div {
  display: flex;
  width: min(100%, var(--max));
  min-height: 64px;
  margin-inline: auto;
  padding: 0.55rem var(--pad);
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.product-identity { display: flex; min-width: 0; align-items: center; gap: 0.7rem; text-decoration: none; }
.product-icon { width: 40px; height: 40px; border-radius: 10px; object-fit: cover; box-shadow: 0 5px 18px rgba(0, 0, 0, 0.35); }
.product-identity span { display: grid; line-height: 1.1; }
.product-identity strong { font-size: 0.86rem; letter-spacing: -0.01em; }
.product-identity small { margin-top: 0.2rem; color: #999; font-size: 0.62rem; }
.product-links { display: flex; align-items: center; gap: clamp(1rem, 3vw, 2.2rem); }
.product-links a { color: #d6d6d3; font-size: 0.7rem; font-weight: 750; text-decoration: none; }
.product-links a:hover { color: var(--product-accent); }
.product-hero {
  position: relative;
  display: grid;
  min-height: calc(100svh - 64px);
  grid-template-columns: minmax(320px, 0.72fr) minmax(460px, 1.28fr);
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 28% 40%, color-mix(in srgb, var(--product-accent) 15%, transparent), transparent 35%),
    var(--product-deep);
  color: var(--white);
}
.product-hero-copy {
  position: relative;
  z-index: 3;
  width: min(690px, 100%);
  padding: clamp(5rem, 9vw, 9rem) clamp(2rem, 5vw, 6.5rem);
  padding-left: max(var(--pad), calc((100vw - var(--max)) / 2 + var(--pad)));
}
.product-overline { margin: 0 0 1rem; color: var(--product-accent); font-size: 0.69rem; font-weight: 800; letter-spacing: 0.17em; text-transform: uppercase; }
.product-hero h1, .product-intro h2, .feature-copy h2, .sticky-copy h2, .collection-heading h2,
.story-panel-copy h2, .tower-heading h2, .progression-copy h2, .fair-heading h2, .product-end h2,
.bento-large h2 {
  margin: 0;
  font-family: var(--sans);
  font-weight: 720;
  letter-spacing: -0.065em;
  line-height: 0.95;
}
.product-hero h1 { max-width: 760px; font-size: clamp(4rem, 7vw, 8.2rem); }
.product-lead { max-width: 640px; margin: 1.8rem 0 0; color: #c5c4c0; font-size: clamp(1rem, 1.45vw, 1.28rem); line-height: 1.55; }
.status-chip { display: inline-flex; margin-top: 2rem; padding: 0.48rem 0.72rem; border: 1px solid rgba(255, 255, 255, 0.18); border-radius: 999px; color: #aaa9a5; font-size: 0.66rem; font-weight: 700; }
.product-hero-stage { position: relative; height: 100%; min-height: 680px; overflow: hidden; isolation: isolate; }
.product-hero-art { position: absolute; z-index: -2; inset: 0; width: 100%; height: 100%; object-fit: cover; transform: scale(var(--scroll-scale, 1)); transform-origin: 55% 55%; will-change: transform; }
.product-craft .product-hero-art { object-position: center 57%; }
.product-core .product-hero-art { object-position: 45% center; }
.product-hero-stage::after { position: absolute; z-index: -1; inset: 0; content: ""; background: linear-gradient(90deg, var(--product-deep), transparent 36%), linear-gradient(0deg, rgba(0, 0, 0, 0.38), transparent 45%); }
.hero-glow { position: absolute; inset: 0; background: radial-gradient(circle at 68% 52%, color-mix(in srgb, var(--product-accent) 26%, transparent), transparent 28%); mix-blend-mode: screen; }
.floating-app-icon { position: absolute; right: clamp(2rem, 7vw, 7rem); bottom: clamp(2rem, 7vw, 6rem); width: clamp(82px, 9vw, 132px); height: auto; border-radius: 25%; box-shadow: 0 28px 70px rgba(45, 20, 8, 0.45); transform: translateY(var(--scroll-lift, 0)); }
.core-splash-object { position: absolute; right: clamp(-3rem, 3vw, 4rem); bottom: -3%; width: min(78%, 820px); filter: drop-shadow(0 38px 70px rgba(0, 0, 0, 0.66)); transform: translateY(var(--scroll-lift, 0)) scale(var(--scroll-scale, 1)); transform-origin: center bottom; }
.product-intro { max-width: 1120px; padding-top: clamp(7rem, 15vw, 13rem); padding-bottom: clamp(6rem, 13vw, 11rem); text-align: center; }
.product-intro h2 { max-width: 1000px; margin-inline: auto; font-size: clamp(4rem, 8.5vw, 9rem); }
.product-intro > p:last-child { max-width: 750px; margin: 2rem auto 0; color: #5c5d59; font-size: clamp(1.08rem, 1.8vw, 1.35rem); }
.product-stats {
  display: grid;
  width: min(100% - 2 * var(--pad), var(--max));
  margin: 0 auto clamp(7rem, 14vw, 12rem);
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}
.product-stats div { display: flex; min-height: 180px; padding: 2rem; flex-direction: column-reverse; justify-content: center; border-left: 1px solid var(--line-light); text-align: center; }
.product-stats div:first-child { border-left: 0; }
.product-stats dt { color: #73736d; font-size: 0.68rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; }
.product-stats dd { margin: 0 0 0.4rem; font-size: clamp(1.65rem, 3vw, 3rem); font-weight: 760; letter-spacing: -0.05em; line-height: 1; }
.product-feature-split { display: grid; padding-bottom: clamp(8rem, 15vw, 14rem); grid-template-columns: minmax(0, 0.72fr) minmax(420px, 1.28fr); align-items: center; gap: clamp(3rem, 8vw, 8rem); }
.feature-copy h2, .sticky-copy h2, .collection-heading h2, .tower-heading h2, .fair-heading h2 { font-size: clamp(3.5rem, 6vw, 7rem); }
.feature-copy p:last-child, .sticky-copy p:last-of-type, .collection-heading p:last-child, .tower-heading p:last-child, .fair-heading + p { color: #5b5c57; font-size: 1.08rem; }
.feature-media { position: relative; min-height: min(75vw, 850px); margin: 0; overflow: hidden; border-radius: 28px; background: #d8d3c9; box-shadow: 0 30px 80px rgba(42, 30, 20, 0.12); }
.feature-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 54%; }
.feature-media::after { position: absolute; inset: 0; content: ""; background: linear-gradient(180deg, transparent 62%, rgba(20, 12, 7, 0.68)); }
.feature-media figcaption { position: absolute; z-index: 1; right: 1.5rem; bottom: 1.4rem; left: 1.5rem; color: #fff; font-size: 0.66rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; }
.scroll-story { position: relative; min-height: 190svh; background: #0b0c0b; color: #fff; }
.sticky-story { position: sticky; top: 0; display: grid; min-height: 100svh; padding: clamp(5rem, 9vw, 8rem) var(--pad); grid-template-columns: minmax(280px, 0.68fr) minmax(480px, 1.32fr); align-items: center; gap: clamp(3rem, 7vw, 7rem); }
.sticky-copy { width: min(100%, 620px); margin-left: max(0px, calc((100vw - var(--max)) / 2)); }
.sticky-copy p:last-of-type { color: #a7a8a3; }
.progress-label { display: flex; margin-top: 2rem; justify-content: space-between; color: #8f918d; font-size: 0.64rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; }
.comparison-frame { position: relative; width: min(100%, 720px); aspect-ratio: 3 / 4; margin: 0; overflow: hidden; justify-self: center; border-radius: 28px; background: #161616; box-shadow: 0 40px 100px rgba(0, 0, 0, 0.48); }
.comparison-frame img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 53%; }
.comparison-after { clip-path: inset(0 var(--scroll-cut, 100%) 0 0); }
.comparison-line { position: absolute; z-index: 2; top: 0; bottom: 0; left: var(--scroll-pct, 0%); width: 2px; background: rgba(255, 255, 255, 0.82); box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.16); }
.collection-section { padding-top: clamp(8rem, 15vw, 14rem); padding-bottom: clamp(8rem, 15vw, 14rem); }
.collection-heading { display: grid; margin-bottom: clamp(4rem, 8vw, 7rem); grid-template-columns: 0.2fr 1fr 0.8fr; gap: 2rem; align-items: end; }
.collection-heading .product-overline { align-self: start; }
.collection-heading h2 { grid-column: 2; }
.collection-heading p:last-child { margin: 0; }
.object-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
.object-tile, .tower-tile { position: relative; display: grid; min-height: 360px; margin: 0; place-items: center; overflow: hidden; border-radius: 24px; background: #ebe7dd; }
.object-tile:nth-child(3n + 2) { background: #e9ddd0; }
.object-tile:nth-child(3n) { background: #dce8e2; }
.object-tile img { width: min(78%, 300px); filter: drop-shadow(0 24px 22px rgba(61, 42, 28, 0.17)); transition: transform 500ms cubic-bezier(0.22, 1, 0.36, 1); }
.object-tile:hover img, .tower-tile:hover img { transform: translateY(-7px) scale(1.035); }
.object-tile figcaption, .tower-tile figcaption { position: absolute; right: 1.2rem; bottom: 1.1rem; left: 1.2rem; color: #65635e; font-size: 0.64rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; }
.story-panel { display: grid; padding: clamp(2rem, 5vw, 5rem); grid-template-columns: minmax(0, 1.4fr) minmax(320px, 0.6fr); align-items: center; gap: clamp(3rem, 7vw, 8rem); background: #11100f; color: #fff; }
.story-panel-media { min-height: min(61vw, 760px); overflow: hidden; border-radius: 28px; }
.story-wide { width: 100%; height: 100%; min-height: inherit; object-fit: cover; transform: scale(var(--scroll-scale, 1)); }
.story-panel-copy { max-width: 520px; padding-right: max(0px, calc((100vw - var(--max)) / 2)); }
.story-panel-copy h2 { font-size: clamp(3.4rem, 5vw, 6rem); }
.story-panel-copy p:last-child { color: #aaa9a5; }
.feature-bento { display: grid; padding-top: clamp(8rem, 14vw, 12rem); padding-bottom: clamp(8rem, 14vw, 12rem); grid-template-columns: 1.4fr 0.6fr; gap: 1rem; }
.feature-bento article { display: flex; min-height: 270px; padding: clamp(2rem, 5vw, 4rem); flex-direction: column; justify-content: flex-end; border-radius: 28px; background: #e8e4dc; }
.feature-bento .bento-large { min-height: 550px; grid-row: span 2; background: linear-gradient(140deg, #d8d2c6, #f5f1e9); }
.bento-large h2 { max-width: 780px; font-size: clamp(3.5rem, 6vw, 7rem); }
.bento-large p:last-child { max-width: 650px; color: #5a5b56; }
.feature-bento article:not(.bento-large) strong { font-size: clamp(3rem, 6vw, 6rem); letter-spacing: -0.06em; line-height: 1; }
.feature-bento article:not(.bento-large) span { margin-top: 0.7rem; color: #666761; }
.fair-section { padding-top: clamp(7rem, 13vw, 12rem); padding-bottom: clamp(7rem, 13vw, 12rem); }
.fair-heading { max-width: 1050px; margin-bottom: clamp(4rem, 8vw, 7rem); }
.fair-grid, .mode-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
.fair-grid article, .mode-grid article { min-height: 350px; padding: clamp(1.8rem, 3.5vw, 3rem); border: 1px solid var(--line-light); border-radius: 22px; background: #fff; }
.fair-grid article > span, .mode-grid article > span { color: var(--product-accent); font-size: 0.66rem; font-weight: 850; letter-spacing: 0.14em; }
.fair-grid h3, .mode-grid h3 { margin: 5rem 0 0.8rem; font-size: clamp(1.8rem, 3vw, 3rem); letter-spacing: -0.045em; line-height: 1; }
.fair-grid p, .mode-grid p { color: #5d5e59; }
.product-end { padding: clamp(8rem, 15vw, 14rem) 0; background: #11100f; color: #fff; text-align: center; }
.product-end h2 { max-width: 1050px; margin-inline: auto; font-size: clamp(4.3rem, 9vw, 10rem); }
.product-end p:not(.product-overline) { color: #aaa9a5; }
.product-end .button { width: auto; margin-top: 1.6rem; }

/* Coregrove product language */
.product-core .product-intro, .product-core .product-stats, .product-core .tower-section,
.product-core .mode-grid, .product-core .fair-section { color: #e9f2ed; }
.product-core .product-intro > p:last-child, .product-core .product-stats dt,
.product-core .tower-heading p:last-child, .product-core .mode-grid p, .product-core .fair-grid p { color: #90a098; }
.product-core { background: #07110e; }
.product-core .product-stats { border-color: rgba(255, 255, 255, 0.14); }
.product-core .product-stats div { border-color: rgba(255, 255, 255, 0.14); }
.world-story { background: #06100d; }
.world-stage { position: relative; min-height: min(66vw, 760px); overflow: hidden; border-radius: 28px; background: #020806; box-shadow: 0 40px 100px rgba(0, 0, 0, 0.55); }
.world-map-art { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: var(--scroll-inverse, 1); transform: scale(var(--scroll-scale, 1)); }
.map-stack { position: absolute; inset: 8%; display: grid; grid-template-columns: repeat(3, 1fr); align-items: center; gap: 0.8rem; opacity: var(--scroll-opacity, 0); transform: translateY(var(--scroll-lift, 25px)); }
.map-stack figure { position: relative; min-width: 0; margin: 0; overflow: hidden; border: 1px solid rgba(255, 255, 255, 0.18); border-radius: 18px; background: #11221b; box-shadow: 0 24px 55px rgba(0, 0, 0, 0.48); }
.map-stack figure:nth-child(2) { transform: translateY(-8%); }
.map-stack img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.map-stack figcaption { padding: 0.8rem 1rem; color: #b8c9c0; font-size: 0.62rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; }
.tower-section { padding-top: clamp(9rem, 16vw, 15rem); padding-bottom: clamp(9rem, 16vw, 15rem); background: radial-gradient(circle at 50% 38%, rgba(60, 225, 139, 0.08), transparent 34%); }
.tower-heading { max-width: 1000px; margin-bottom: clamp(4rem, 9vw, 8rem); }
.tower-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1rem; }
.tower-tile { min-height: 320px; background: linear-gradient(145deg, #10231b, #09140f); border: 1px solid rgba(255, 255, 255, 0.1); }
.tower-tile:nth-child(n + 5) { grid-column: span 1; }
.tower-tile:last-child { grid-column: 2 / span 2; }
.tower-tile img { width: min(88%, 310px); filter: drop-shadow(0 24px 25px rgba(0, 0, 0, 0.6)); transition: transform 500ms cubic-bezier(0.22, 1, 0.36, 1); }
.tower-tile figcaption { color: #94a39c; }
.progression-panel { display: grid; padding: clamp(5rem, 10vw, 10rem) max(var(--pad), calc((100vw - var(--max)) / 2 + var(--pad))); grid-template-columns: minmax(300px, 0.75fr) minmax(0, 1.25fr); align-items: center; gap: clamp(4rem, 10vw, 10rem); background: #e7ece7; color: #0d1713; }
.progression-art { position: relative; display: grid; min-height: 620px; place-items: center; border-radius: 50%; background: radial-gradient(circle, rgba(27, 163, 102, 0.24), transparent 60%); }
.progression-art::before, .progression-art::after { position: absolute; content: ""; border: 1px solid rgba(12, 72, 47, 0.18); border-radius: 50%; }
.progression-art::before { width: 76%; height: 76%; }
.progression-art::after { width: 105%; height: 38%; transform: rotate(-22deg); }
.worldtree-art { position: relative; z-index: 1; width: min(66%, 370px); filter: drop-shadow(0 28px 30px rgba(12, 75, 47, 0.22)); }
.progression-copy { max-width: 740px; }
.progression-copy h2 { font-size: clamp(3.7rem, 6.5vw, 7rem); }
.progression-copy > p:not(.product-overline) { color: #506058; font-size: 1.08rem; }
.progression-copy ul { margin: 2rem 0 0; padding: 0; list-style: none; border-top: 1px solid rgba(11, 31, 22, 0.18); }
.progression-copy li { padding: 1rem 0; border-bottom: 1px solid rgba(11, 31, 22, 0.18); font-weight: 700; }
.core-story { background: #020504; }
.mode-grid { padding-top: clamp(8rem, 14vw, 12rem); padding-bottom: 0; }
.product-core .mode-grid article, .product-core .fair-grid article { border-color: rgba(255, 255, 255, 0.11); background: #0d1914; }
.core-end { background: radial-gradient(circle at 50% 60%, rgba(69, 223, 143, 0.14), transparent 38%), #020604; }

.motion-ready .reveal-on-scroll { opacity: 0; transform: translateY(34px) scale(0.985); transition: opacity 850ms cubic-bezier(0.22, 1, 0.36, 1), transform 850ms cubic-bezier(0.22, 1, 0.36, 1); transition-delay: calc(var(--delay, 0) * 90ms); }
.motion-ready .reveal-on-scroll.is-visible { opacity: 1; transform: translateY(0) scale(1); }

/* Cinematic product showcase v5 */
.showcase {
  --scene-accent: #ffb07a;
  --scene-bg: #070707;
  padding-top: 96px;
  background: var(--scene-bg);
  color: #f5f5f7;
  font-family: var(--sans);
  overflow: visible;
}
.showcase.product-core { --scene-accent: #78f2b1; --scene-bg: #030806; }
.showcase .product-nav { background: rgba(8, 8, 8, 0.78); }
.showcase .product-links a:hover { color: var(--scene-accent); }
.showcase-scene { position: relative; height: 210svh; background: var(--scene-bg); }
.showcase-frame-scene { height: 390svh; }
.showcase-map-scene { height: 500svh; }
.showcase-compare-scene { height: 250svh; }
.showcase-collection-scene, .showcase-story-scene, .showcase-tree-scene { height: 230svh; }
.showcase-tower-scene { height: 300svh; }
.showcase-sticky {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100svh;
  overflow: hidden;
  isolation: isolate;
  background: var(--scene-bg);
}
.showcase-hero-media, .showcase-frame-stack, .showcase-story-media { position: absolute; inset: 0; }
.showcase-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 56%;
  transform: scale(var(--scene-scale, 1.03));
  filter: saturate(0.92) brightness(0.76);
  will-change: transform, filter;
}
.product-core .showcase-hero-image { object-position: center; filter: saturate(1.12) brightness(0.84); }
.showcase-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.16), rgba(0, 0, 0, 0.72)), radial-gradient(circle at 50% 50%, transparent 10%, rgba(0, 0, 0, 0.34) 82%);
}
.showcase-hero-object {
  position: absolute;
  right: 4vw;
  bottom: -6vh;
  width: min(56vw, 820px);
  filter: drop-shadow(0 45px 80px rgba(0, 0, 0, 0.72));
  transform: translateY(var(--scene-object-y, 40px)) scale(var(--scene-object-scale, 0.92));
  will-change: transform;
}
.product-core .showcase-hero-object {
  right: -2vw;
  bottom: -10vh;
  width: min(64vw, 900px);
  opacity: 0.78;
  mix-blend-mode: screen;
  -webkit-mask-image: radial-gradient(ellipse at center, #000 34%, rgba(0, 0, 0, 0.94) 48%, transparent 76%);
  mask-image: radial-gradient(ellipse at center, #000 34%, rgba(0, 0, 0, 0.94) 48%, transparent 76%);
  filter: brightness(1.28) saturate(1.3) drop-shadow(0 45px 80px rgba(0, 0, 0, 0.72));
}
.showcase-hero-copy {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  width: min(1120px, calc(100% - 2 * var(--pad)));
  text-align: center;
  transform: translate(-50%, calc(-50% + var(--scene-copy-y, 0px)));
  opacity: var(--scene-copy-opacity, 1);
  will-change: transform, opacity;
}
.product-core .showcase-hero-copy { z-index: 4; text-shadow: 0 3px 30px rgba(0, 0, 0, 0.86); }
.showcase-kicker, .showcase-story-copy > span, .showcase-tree-copy > span, .showcase-tower-copy > span, .showcase-facts-heading > span {
  display: block;
  margin-bottom: 1rem;
  color: var(--scene-accent);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.showcase-hero-copy h1, .showcase-statement p, .showcase-captions h2, .showcase-compare-copy h2,
.showcase-collection-copy h2, .showcase-story-copy h2, .showcase-tower-copy h2, .showcase-tree-copy h2,
.showcase-facts-heading h2, .showcase-end h2 {
  margin: 0;
  font-family: var(--sans);
  font-weight: 720;
  letter-spacing: -0.068em;
  line-height: 0.93;
}
.showcase-hero-copy h1 { font-size: clamp(4.6rem, 9.5vw, 10.6rem); }
.showcase-hero-copy > p:not(.showcase-kicker) { max-width: 700px; margin: 1.5rem auto 0; color: rgba(255, 255, 255, 0.78); font-size: clamp(1rem, 1.7vw, 1.35rem); }
.showcase-badge { display: inline-flex; margin-top: 1.7rem; padding: 0.55rem 0.85rem; border: 1px solid rgba(255, 255, 255, 0.28); border-radius: 999px; color: rgba(255, 255, 255, 0.7); font-size: 0.68rem; font-weight: 720; backdrop-filter: blur(14px); }
.showcase-scroll-cue { position: absolute; z-index: 4; bottom: 2rem; left: 50%; display: flex; align-items: center; gap: 0.6rem; color: rgba(255, 255, 255, 0.54); font-size: 0.62rem; font-weight: 800; letter-spacing: 0.15em; text-transform: uppercase; transform: translateX(-50%); }
.showcase-scroll-cue span { position: relative; width: 1px; height: 32px; overflow: hidden; background: rgba(255, 255, 255, 0.2); }
.showcase-scroll-cue span::after { position: absolute; inset: 0; content: ""; background: #fff; animation: scrollCue 1.8s ease-in-out infinite; }
@keyframes scrollCue { 0% { transform: translateY(-100%); } 55%, 100% { transform: translateY(100%); } }

.showcase-statement {
  display: grid;
  min-height: 110svh;
  padding: 8rem var(--pad);
  place-content: center;
  background: #f5f5f7;
  color: #1d1d1f;
  text-align: center;
}
.product-core .showcase-statement { background: #07110d; color: #f5f5f7; }
.showcase-statement p { font-size: clamp(4.8rem, 10.8vw, 12rem); }
.showcase-statement strong { color: var(--scene-accent); font-weight: inherit; }
.showcase-statement small { margin-top: 2rem; color: #747478; font-size: clamp(0.8rem, 1.4vw, 1rem); font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
.product-core .showcase-statement small { color: #839188; }

.showcase-frame { position: absolute; inset: 0; margin: 0; opacity: var(--frame-opacity, 0); transform: scale(var(--frame-scale, 1.08)); will-change: opacity, transform; }
.showcase-frame:first-child { --frame-opacity: 1; }
.showcase-frame img { width: 100%; height: 100%; object-fit: cover; object-position: center 54%; filter: brightness(0.62) saturate(0.9); }
.showcase-map-scene .showcase-frame img { object-fit: cover; object-position: center; filter: brightness(0.54) saturate(1.12); }
.showcase-map-scene .showcase-frame:first-child img { object-fit: cover; }
.showcase-captions {
  position: absolute;
  z-index: 4;
  right: max(var(--pad), calc((100vw - var(--max)) / 2 + var(--pad)));
  bottom: 10vh;
  left: max(var(--pad), calc((100vw - var(--max)) / 2 + var(--pad)));
}
.showcase-captions article { position: absolute; bottom: 0; left: 0; max-width: 760px; opacity: var(--caption-opacity, 0); transform: translateY(var(--caption-y, 45px)); will-change: opacity, transform; }
.showcase-captions article:first-child { --caption-opacity: 1; --caption-y: 0px; }
.showcase-captions span { color: var(--scene-accent); font-size: 0.68rem; font-weight: 800; letter-spacing: 0.16em; }
.showcase-captions h2 { margin-top: 0.8rem; font-size: clamp(4rem, 8.5vw, 9rem); }
.showcase-captions p { max-width: 630px; color: rgba(255, 255, 255, 0.72); font-size: clamp(1rem, 1.6vw, 1.22rem); }
.showcase-dots { position: absolute; z-index: 6; right: var(--pad); bottom: 3rem; display: flex; gap: 0.45rem; }
.showcase-dots i { width: 28px; height: 3px; border-radius: 999px; background: rgba(255, 255, 255, 0.24); }
.showcase-dots i.is-active { background: var(--scene-accent); }

.showcase-compare-copy { position: absolute; z-index: 4; top: 50%; left: max(var(--pad), calc((100vw - var(--max)) / 2 + var(--pad))); width: min(42vw, 640px); transform: translateY(-50%); }
.showcase-compare-copy > span, .showcase-collection-copy > span { display: block; margin-bottom: 0.8rem; color: var(--scene-accent); font-size: clamp(2rem, 4vw, 4.5rem); font-weight: 760; letter-spacing: -0.05em; }
.showcase-compare-copy h2, .showcase-collection-copy h2 { font-size: clamp(3.8rem, 7vw, 7.8rem); }
.showcase-compare-copy p, .showcase-collection-copy p { max-width: 560px; color: rgba(255, 255, 255, 0.66); }
.showcase-compare { position: absolute; top: 50%; right: max(var(--pad), calc((100vw - var(--max)) / 2 + var(--pad))); width: min(42vw, 610px); aspect-ratio: 3 / 4; margin: 0; overflow: hidden; border-radius: 32px; transform: translateY(-50%) scale(var(--scene-scale, 0.92)); box-shadow: 0 45px 100px rgba(0, 0, 0, 0.58); }
.showcase-compare > img, .showcase-compare-after, .showcase-compare-after img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.showcase-compare-after { clip-path: inset(0 var(--compare-cut, 100%) 0 0); }
.showcase-compare-rule { position: absolute; z-index: 4; top: 0; bottom: 0; left: var(--compare-position, 0%); width: 2px; background: #fff; box-shadow: 0 0 18px rgba(0, 0, 0, 0.5); }
.showcase-compare figcaption { position: absolute; z-index: 5; right: 1rem; bottom: 1rem; left: 1rem; display: flex; justify-content: space-between; color: #fff; font-size: 0.62rem; letter-spacing: 0.12em; text-transform: uppercase; text-shadow: 0 2px 10px #000; }

.showcase-collection-copy { position: absolute; z-index: 5; top: 8vh; left: 50%; width: min(940px, calc(100% - 2 * var(--pad))); text-align: center; transform: translateX(-50%); }
.showcase-collection-copy p { margin-inline: auto; }
.showcase-object-orbit { position: absolute; z-index: 2; inset: 32vh 0 0; perspective: 1200px; }
.showcase-object-orbit .object-tile {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: clamp(150px, 17vw, 290px);
  min-height: auto;
  aspect-ratio: 1;
  margin: 0;
  place-items: center;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  opacity: var(--object-opacity, 1);
  transform: translate(calc(-50% + var(--object-x, 0px)), calc(-50% + var(--object-y, 0px))) scale(var(--object-scale, 1));
  will-change: transform, opacity;
  transition: none !important;
}
.showcase-object-orbit .object-tile img { width: 100%; filter: drop-shadow(0 28px 28px rgba(0, 0, 0, 0.48)); }
.showcase-object-orbit .object-tile figcaption { display: none; }

.showcase-story-media img { width: 100%; height: 100%; object-fit: cover; filter: brightness(var(--story-brightness, 0.62)) saturate(0.9); transform: scale(var(--scene-scale, 1.06)); will-change: transform, filter; }
.showcase-story-media::after { position: absolute; inset: 0; content: ""; background: linear-gradient(90deg, rgba(0, 0, 0, 0.78), transparent 65%), linear-gradient(0deg, rgba(0, 0, 0, 0.55), transparent 60%); }
.showcase-story-copy { position: absolute; z-index: 3; top: 50%; left: max(var(--pad), calc((100vw - var(--max)) / 2 + var(--pad))); width: min(640px, calc(100% - 2 * var(--pad))); opacity: var(--scene-copy-opacity, 0); transform: translateY(calc(-50% + var(--scene-copy-y, 40px))); }
.showcase-story-copy h2 { font-size: clamp(4rem, 7.5vw, 8rem); }
.showcase-story-copy p { color: rgba(255, 255, 255, 0.7); font-size: 1.08rem; }

.showcase-tower-copy { position: absolute; z-index: 4; top: 8vh; left: 50%; width: min(1000px, calc(100% - 2 * var(--pad))); text-align: center; transform: translateX(-50%); }
.showcase-tower-copy h2 { font-size: clamp(4rem, 8vw, 8.8rem); }
.showcase-tower-copy p { max-width: 690px; margin-inline: auto; color: #8da097; }
.showcase-tower-stage { position: absolute; inset: 32vh 3vw 8vh; display: flex; align-items: center; justify-content: center; }
.showcase-tower-stage .tower-tile { position: absolute; display: grid; width: clamp(150px, 18vw, 310px); min-height: auto; aspect-ratio: 1; margin: 0; place-items: center; overflow: visible; border: 0; background: transparent; opacity: var(--tower-opacity, 1); transform: translate(var(--tower-x, 0px), var(--tower-y, 0px)) scale(var(--tower-scale, 1)); will-change: transform, opacity; }
.showcase-tower-stage .tower-tile { transition: none !important; }
.showcase-tower-stage .tower-tile img { width: 100%; filter: drop-shadow(0 30px 32px rgba(0, 0, 0, 0.68)); }
.showcase-tower-stage .tower-tile figcaption { position: absolute; bottom: -1rem; left: 50%; width: max-content; color: #9aa8a1; transform: translateX(-50%); }
.showcase-fusion-label { position: absolute; z-index: 4; right: var(--pad); bottom: 2rem; display: flex; align-items: center; gap: 1rem; color: #7f8d85; font-size: 0.65rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; }
.showcase-fusion-label b { color: var(--scene-accent); font-size: 1.4rem; }

.showcase-tree-art { position: absolute; top: 50%; left: 28%; display: grid; width: min(42vw, 590px); aspect-ratio: 1; place-items: center; transform: translate(-50%, -50%) scale(var(--tree-scale, 0.45)); }
.showcase-tree-art::before { position: absolute; inset: 0; border: 1px solid rgba(120, 242, 177, 0.2); border-radius: 50%; content: ""; box-shadow: 0 0 90px rgba(78, 225, 145, 0.14) inset, 0 0 120px rgba(78, 225, 145, 0.12); }
.showcase-tree-art img { position: relative; z-index: 2; width: 58%; filter: drop-shadow(0 32px 40px rgba(39, 211, 119, 0.28)); }
.showcase-tree-art i { position: absolute; border: 1px solid rgba(120, 242, 177, 0.14); border-radius: 50%; }
.showcase-tree-art i:nth-of-type(1) { inset: 12%; }
.showcase-tree-art i:nth-of-type(2) { width: 108%; height: 32%; transform: rotate(-22deg); }
.showcase-tree-art i:nth-of-type(3) { width: 32%; height: 108%; transform: rotate(28deg); }
.showcase-tree-copy { position: absolute; top: 50%; right: max(var(--pad), calc((100vw - var(--max)) / 2 + var(--pad))); width: min(48vw, 690px); opacity: var(--scene-copy-opacity, 0); transform: translateY(calc(-50% + var(--scene-copy-y, 35px))); }
.showcase-tree-copy h2 { font-size: clamp(4rem, 7vw, 7.8rem); }
.showcase-tree-copy p { color: #8ea097; }
.showcase-tree-copy ul { display: flex; margin: 2rem 0 0; padding: 1.2rem 0 0; gap: 2rem; border-top: 1px solid rgba(255, 255, 255, 0.15); list-style: none; color: #91a098; }
.showcase-tree-copy li b { display: block; color: #fff; font-size: 2rem; letter-spacing: -0.05em; }

.showcase-facts { padding: clamp(8rem, 14vw, 14rem) var(--pad); background: #f5f5f7; color: #1d1d1f; }
.product-core .showcase-facts { background: #07110d; color: #f5f5f7; }
.showcase-facts-heading { width: min(100%, var(--max)); margin: 0 auto clamp(5rem, 9vw, 9rem); }
.showcase-facts-heading h2 { max-width: 1100px; font-size: clamp(4.5rem, 9.5vw, 10rem); }
.showcase-set-showcase {
  width: min(100%, var(--max));
  margin: calc(clamp(5rem, 9vw, 9rem) * -0.35) auto clamp(5rem, 9vw, 9rem);
}
.showcase-set-showcase > p {
  margin: 0 0 1.4rem;
  color: #8b9b92;
  font-size: 0.78rem;
  font-weight: 760;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.showcase-set-gallery {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
}
.showcase-set-gallery figure {
  display: grid;
  min-width: 0;
  margin: 0;
  padding: clamp(0.8rem, 2vw, 1.4rem);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 26px;
  background: radial-gradient(circle at 50% 35%, rgba(120, 242, 177, 0.11), transparent 48%), #0c1b14;
}
.showcase-set-gallery img {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: contain;
  filter: drop-shadow(0 20px 22px rgba(0, 0, 0, 0.5));
}
.showcase-set-gallery figcaption {
  margin-top: 0.4rem;
  color: #b7c2bc;
  font-size: 0.68rem;
  font-weight: 760;
  letter-spacing: 0.1em;
  text-align: center;
  text-transform: uppercase;
}
.showcase-fact-grid { display: grid; width: min(100%, var(--max)); margin-inline: auto; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
.showcase-fact-grid article { display: flex; min-height: 360px; padding: clamp(2rem, 5vw, 4.5rem); flex-direction: column; justify-content: flex-end; border-radius: 32px; background: #fff; }
.product-core .showcase-fact-grid article { background: #0c1b14; }
.showcase-fact-grid strong { color: var(--scene-accent); font-size: clamp(4.5rem, 9vw, 9rem); font-weight: 740; letter-spacing: -0.07em; line-height: 0.85; }
.showcase-fact-grid p { max-width: 480px; margin: 1.3rem 0 0; color: #67676b; font-size: 1.05rem; }
.product-core .showcase-fact-grid p { color: #8b9b92; }
.showcase-end { display: grid; min-height: 100svh; padding: 7rem var(--pad); place-items: center; background: radial-gradient(circle at 50% 42%, rgba(255, 176, 122, 0.15), transparent 30%), #080706; text-align: center; }
.showcase-end.core-end { background: radial-gradient(circle at 50% 42%, rgba(120, 242, 177, 0.14), transparent 30%), #020604; }
.showcase-end > div { width: min(1100px, 100%); }
.showcase-end img { width: clamp(90px, 10vw, 150px); margin: 0 auto 1.4rem; border-radius: 25%; box-shadow: 0 25px 70px rgba(0, 0, 0, 0.48); }
.showcase-end p { color: var(--scene-accent); font-size: 0.72rem; font-weight: 800; letter-spacing: 0.15em; text-transform: uppercase; }
.showcase-end h2 { font-size: clamp(4.5rem, 9vw, 9.5rem); }
.showcase-end .button { width: auto; margin-top: 2rem; }

@media (max-width: 900px) {
  .showcase-hero-copy h1 { font-size: clamp(4rem, 13vw, 7rem); }
  .showcase-hero-object { right: -16vw; width: 90vw; opacity: 0.72; }
  .showcase-captions { bottom: 12vh; }
  .showcase-captions h2 { font-size: clamp(3.7rem, 11vw, 6.5rem); }
  .showcase-compare-copy { top: 12vh; right: var(--pad); left: var(--pad); width: auto; transform: none; }
  .showcase-compare-copy h2 { max-width: 800px; font-size: clamp(3.5rem, 10vw, 6rem); }
  .showcase-compare-copy p { display: none; }
  .showcase-compare { top: auto; right: 50%; bottom: 4vh; width: min(70vw, 520px); height: 64vh; aspect-ratio: auto; transform: translateX(50%) scale(var(--scene-scale, 0.92)); }
  .showcase-story-copy { top: auto; right: var(--pad); bottom: 9vh; transform: translateY(var(--scene-copy-y, 40px)); }
  .showcase-story-media::after { background: linear-gradient(0deg, rgba(0, 0, 0, 0.82), transparent 70%); }
  .showcase-tree-art { top: 34%; left: 50%; width: min(70vw, 520px); }
  .showcase-tree-copy { top: auto; right: var(--pad); bottom: 8vh; left: var(--pad); width: auto; transform: translateY(var(--scene-copy-y, 35px)); }
  .showcase-tree-copy h2 { font-size: clamp(3.6rem, 10vw, 6rem); }
}

@media (max-width: 720px) {
  .showcase { padding-top: 78px; }
  .showcase-scene { height: 180svh; }
  .showcase-frame-scene { height: 330svh; }
  .showcase-map-scene { height: 420svh; }
  .showcase-compare-scene, .showcase-collection-scene, .showcase-story-scene, .showcase-tree-scene { height: 200svh; }
  .showcase-tower-scene { height: 260svh; }
  .showcase-hero-image { object-position: center 58%; }
  .showcase-hero-copy { top: 42%; text-align: left; }
  .showcase-hero-copy h1 { font-size: clamp(3.6rem, 16vw, 5.5rem); }
  .showcase-hero-copy > p:not(.showcase-kicker) { margin-left: 0; }
  .showcase-scroll-cue { left: var(--pad); transform: none; }
  .showcase-statement { min-height: 90svh; text-align: left; }
  .showcase-statement p { font-size: clamp(3.8rem, 17vw, 6rem); }
  .showcase-frame img { object-position: center; }
  .showcase-captions { right: var(--pad); bottom: 10vh; left: var(--pad); }
  .showcase-captions h2 { font-size: clamp(3.5rem, 15vw, 5.3rem); }
  .showcase-dots { right: var(--pad); bottom: 3.2rem; }
  .showcase-compare-copy { top: 9vh; }
  .showcase-compare { width: calc(100% - 2 * var(--pad)); height: 61vh; border-radius: 20px; }
  .showcase-collection-copy { top: 7vh; text-align: left; }
  .showcase-collection-copy h2 { font-size: clamp(3.8rem, 15vw, 5.6rem); }
  .showcase-object-orbit { inset: 35vh 0 0; }
  .showcase-object-orbit .object-tile { width: clamp(110px, 34vw, 170px); }
  .showcase-story-copy h2 { font-size: clamp(3.8rem, 14vw, 5.5rem); }
  .showcase-story-media img { object-position: center; }
  .showcase-tower-copy { top: 7vh; text-align: left; }
  .showcase-tower-copy h2 { font-size: clamp(3.7rem, 15vw, 5.5rem); }
  .showcase-tower-stage { inset: 35vh 0 8vh; }
  .showcase-tower-stage .tower-tile { width: clamp(120px, 36vw, 190px); }
  .showcase-fusion-label { display: none; }
  .showcase-tree-copy ul { gap: 1rem; }
  .showcase-tree-copy li { font-size: 0.72rem; }
  .showcase-fact-grid { grid-template-columns: 1fr; }
  .showcase-fact-grid article { min-height: 250px; border-radius: 22px; }
  .showcase-facts-heading h2, .showcase-end h2 { font-size: clamp(4rem, 16vw, 6rem); }
}

@media (prefers-reduced-motion: reduce) {
  .showcase-scene, .showcase-frame-scene, .showcase-map-scene, .showcase-compare-scene,
  .showcase-collection-scene, .showcase-story-scene, .showcase-tree-scene, .showcase-tower-scene { height: auto; }
  .showcase-sticky { position: relative; height: auto; min-height: 100svh; overflow: visible; }
  .showcase-frame-stack, .showcase-captions { position: relative; inset: auto; }
  .showcase-frame { position: relative; min-height: 75svh; opacity: 1 !important; transform: none !important; }
  .showcase-captions article { position: relative; margin: 0; padding: 4rem var(--pad); opacity: 1 !important; transform: none !important; }
  .showcase-compare-after { clip-path: none; }
  .showcase-compare-rule, .showcase-scroll-cue, .showcase-dots { display: none; }
}

.studio-story { display: grid; padding-top: clamp(5rem, 9vw, 8rem); padding-bottom: clamp(5rem, 9vw, 8rem); grid-template-columns: 0.7fr 1.3fr; align-items: center; gap: clamp(3rem, 8vw, 8rem); }
.portrait-mark {
  position: relative;
  display: grid;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid var(--line-light);
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
}
.portrait-mark::after { position: absolute; width: 115%; height: 38%; border: 1px solid var(--acid); border-radius: 50%; content: ""; transform: rotate(-18deg); }
.portrait-mark span { font-family: var(--display); font-size: clamp(4rem, 9vw, 8rem); }
.portrait-mark small { position: absolute; bottom: 12%; color: var(--acid); font-size: 0.58rem; font-weight: 800; letter-spacing: 0.2em; text-transform: uppercase; }
.story-copy h2 { margin: 0 0 1.5rem; font-family: var(--display); font-size: clamp(3.2rem, 6vw, 6rem); font-weight: 400; letter-spacing: -0.04em; }
.story-copy > p:not(.eyebrow) { max-width: 760px; color: #454641; font-size: 1.08rem; }
.values { padding-bottom: 8rem; }

.press-list { display: grid; padding-top: 6rem; padding-bottom: 8rem; gap: 1rem; }
.press-game { display: grid; overflow: hidden; grid-template-columns: minmax(320px, 0.7fr) minmax(0, 1fr); align-items: center; border: 1px solid var(--line-light); background: var(--white); }
.press-game .game-visual { min-height: 370px; }
.press-game > div:last-child { padding: clamp(2rem, 6vw, 5rem); }
.press-game h2 { margin: 0; font-family: var(--display); font-size: clamp(3rem, 6vw, 6rem); font-weight: 400; letter-spacing: -0.04em; }
.press-game p:not(.eyebrow) { max-width: 680px; color: #51524e; }
.press-kit { display: grid; padding-top: 6rem; padding-bottom: 5rem; grid-template-columns: 1fr 0.55fr; gap: 4rem; }
.press-kit h2, .legal-page h2 { margin: 2.5rem 0 0.6rem; font-family: var(--display); font-size: clamp(2rem, 3vw, 3rem); font-weight: 400; }
.download-note { display: grid; margin-bottom: 8rem; padding-top: 3rem; padding-bottom: 3rem; grid-template-columns: auto 1fr; gap: 2rem; border-top: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); }
.download-note > span { font-size: 2rem; }
.download-note h2 { margin: 0; font-family: var(--display); font-size: 2.5rem; font-weight: 400; }
.support-grid { padding-top: 6rem; padding-bottom: 8rem; }
.small-note { font-size: 0.78rem; }
.legal-page { max-width: 900px; padding-top: 12rem; padding-bottom: 8rem; }
.legal-page h1 { margin: 0 0 3rem; font-family: var(--display); font-size: clamp(4rem, 8vw, 7rem); font-weight: 400; letter-spacing: -0.04em; line-height: 0.95; }
.legal-warning { margin: 0 0 4rem; padding: 1.5rem; border-left: 5px solid var(--amber); background: #fff4df; }
.legal-warning strong { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; }
.legal-warning p { margin-bottom: 0; }

.site-footer { padding: clamp(4rem, 8vw, 7rem) var(--pad) 2rem; background: var(--ink); color: var(--white); }
.footer-grid, .footer-bottom { width: min(100%, calc(var(--max) - 2 * var(--pad))); margin-inline: auto; }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(3, 0.7fr); gap: 2rem; }
.footer-grid > div { display: flex; flex-direction: column; align-items: flex-start; gap: 0.55rem; }
.footer-grid h2 { margin: 0 0 1rem; color: #888984; font-size: 0.64rem; letter-spacing: 0.18em; text-transform: uppercase; }
.footer-grid a:not(.brand) { min-height: 34px; color: #d4d4ce; font-size: 0.85rem; text-decoration: none; }
.footer-grid p { max-width: 300px; color: #8f908c; font-size: 0.82rem; }
.footer-bottom { display: flex; margin-top: 4rem; padding-top: 1.5rem; justify-content: space-between; gap: 1rem; border-top: 1px solid var(--line-dark); color: #797a75; font-size: 0.68rem; }

.reveal { animation: reveal 700ms both cubic-bezier(0.22, 1, 0.36, 1); }
.delay-1 { animation-delay: 80ms; }
.delay-2 { animation-delay: 160ms; }
.delay-3 { animation-delay: 240ms; }
@keyframes reveal {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 980px) {
  .desktop-nav { display: none; }
  .mobile-menu { position: relative; display: block; }
  .mobile-menu summary {
    display: grid;
    width: 48px;
    height: 48px;
    cursor: pointer;
    place-content: center;
    gap: 7px;
    border: 1px solid var(--line-dark);
    list-style: none;
  }
  .mobile-menu summary::-webkit-details-marker { display: none; }
  .mobile-menu summary span { width: 20px; height: 1px; background: currentColor; }
  .mobile-menu nav {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    display: grid;
    width: min(82vw, 320px);
    padding: 1rem;
    border: 1px solid var(--line-dark);
    background: var(--ink-soft);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.4);
  }
  .mobile-menu nav a { min-height: 48px; padding: 0.8rem; color: var(--white); text-decoration: none; }
  .hero { grid-template-columns: 1fr; }
  .hero-emblem { position: absolute; right: -8rem; bottom: 7rem; width: 330px; opacity: 0.25; }
  .section-heading { grid-template-columns: 1fr; }
  .section-heading h2 { max-width: 720px; }
  .section-heading > p:last-child { max-width: 650px; }
  .manifesto { grid-template-columns: 0.2fr 1fr; }
  .manifesto > p { grid-column: 2; }
  .game-hero { grid-template-columns: 1fr; }
  .game-hero-copy { margin-left: 0; }
  .game-hero .game-visual { min-height: 520px; }
  .media-stage, .studio-story, .press-kit { grid-template-columns: 1fr; }
  .core-gallery .world-map { min-height: min(56vw, 520px); }
  .core-gallery .battle-map { min-height: min(56vw, 420px); }
  .portrait-mark { width: min(500px, 80vw); justify-self: center; }
  .press-game { grid-template-columns: minmax(260px, 0.7fr) 1fr; }
  .footer-grid { grid-template-columns: 1.3fr repeat(2, 1fr); }
  .footer-grid > div:last-child { grid-column: 2; }
  .product-hero { min-height: auto; grid-template-columns: 1fr; }
  .product-hero-copy { width: min(850px, 100%); padding-top: 6rem; padding-bottom: 5rem; }
  .product-hero-stage { min-height: min(92vw, 760px); }
  .product-hero-stage::after { background: linear-gradient(180deg, var(--product-deep), transparent 22%), linear-gradient(0deg, rgba(0, 0, 0, 0.4), transparent 45%); }
  .product-feature-split { grid-template-columns: 1fr; }
  .feature-copy { max-width: 720px; }
  .feature-media { min-height: min(118vw, 920px); }
  .sticky-story { padding-top: 6rem; padding-bottom: 6rem; grid-template-columns: 1fr; align-content: center; }
  .sticky-copy { width: min(100%, 760px); margin-left: 0; }
  .comparison-frame { height: min(66vh, 720px); width: auto; }
  .collection-heading { grid-template-columns: 1fr; }
  .collection-heading h2 { grid-column: 1; }
  .collection-heading p:last-child { max-width: 720px; }
  .story-panel { grid-template-columns: 1fr; }
  .story-panel-copy { max-width: 760px; padding: 0 1rem 2rem; }
  .story-panel-media { min-height: min(70vw, 700px); }
  .world-stage { min-height: min(70vw, 720px); }
  .tower-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .tower-tile:last-child { grid-column: 2; }
  .progression-panel { grid-template-columns: 1fr; }
  .progression-art { width: min(620px, 80vw); min-height: auto; aspect-ratio: 1; justify-self: center; }
}

@media (max-width: 720px) {
  .header-inner { min-height: 78px; }
  .brand-type { display: none; }
  .hero { min-height: 820px; padding-top: 9rem; align-items: start; }
  .hero h1 { font-size: clamp(3.6rem, 19vw, 6.4rem); }
  .hero-actions { display: grid; }
  .button { width: 100%; }
  .hero-emblem { right: -9rem; bottom: 8rem; width: 290px; }
  .games-grid, .features-grid, .values, .support-grid { grid-template-columns: 1fr; }
  .game-visual, .game-visual.compact { min-height: 330px; }
  .manifesto { grid-template-columns: 1fr; }
  .manifesto > p { grid-column: 1; }
  .page-hero h1 { font-size: clamp(3.4rem, 16vw, 5.8rem); }
  .page-hero > p:last-child { margin-inline: auto; }
  .game-hero { min-height: auto; padding-top: 8rem; }
  .game-hero h1 { font-size: clamp(4.2rem, 22vw, 7rem); }
  .game-hero .game-visual { min-height: 390px; }
  .craft-gallery { grid-template-columns: 1fr; }
  .gallery-card { min-height: 520px; }
  .core-gallery .world-map, .core-gallery .battle-map { min-height: 56vw; }
  .press-game { grid-template-columns: 1fr; }
  .press-game .game-visual { min-height: 280px; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid > div:first-child { grid-column: 1 / -1; margin-bottom: 1rem; }
  .footer-grid > div:last-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
  .product-page { padding-top: 78px; }
  .product-nav > div { min-height: 58px; }
  .product-links { gap: 0.9rem; }
  .product-links a:nth-child(2) { display: none; }
  .product-icon { width: 36px; height: 36px; }
  .product-hero { min-height: auto; }
  .product-hero-copy { padding: 4.5rem var(--pad) 3.5rem; }
  .product-hero h1 { font-size: clamp(3.5rem, 16vw, 5.5rem); }
  .product-hero-stage { min-height: 116vw; }
  .product-craft .product-hero-art { object-position: center 58%; }
  .core-splash-object { right: -10%; width: 105%; }
  .product-intro { text-align: left; }
  .product-intro h2 { font-size: clamp(3.5rem, 16vw, 5.8rem); }
  .product-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .product-stats div { min-height: 140px; padding: 1.2rem; border-bottom: 1px solid var(--line-light); }
  .product-stats div:nth-child(odd) { border-left: 0; }
  .product-core .product-stats div { border-color: rgba(255, 255, 255, 0.14); }
  .feature-copy h2, .sticky-copy h2, .collection-heading h2, .tower-heading h2, .fair-heading h2 { font-size: clamp(3.2rem, 15vw, 5.4rem); }
  .feature-media { min-height: 130vw; border-radius: 18px; }
  .scroll-story { min-height: 165svh; }
  .sticky-story { min-height: 100svh; padding: 4.5rem var(--pad) 3rem; }
  .sticky-copy p:last-of-type { font-size: 0.94rem; }
  .comparison-frame { width: min(100%, 390px); height: auto; aspect-ratio: 3 / 4; border-radius: 18px; }
  .object-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .object-tile { min-height: 220px; border-radius: 16px; }
  .object-tile:last-child { grid-column: 1 / -1; }
  .story-panel { padding: var(--pad); }
  .story-panel-media { min-height: 78vw; border-radius: 18px; }
  .story-panel-copy { padding-inline: 0; }
  .feature-bento { grid-template-columns: 1fr; }
  .feature-bento .bento-large { min-height: 520px; grid-row: auto; }
  .feature-bento article { min-height: 220px; border-radius: 18px; }
  .fair-grid, .mode-grid { grid-template-columns: 1fr; }
  .fair-grid article, .mode-grid article { min-height: 270px; }
  .fair-grid h3, .mode-grid h3 { margin-top: 3rem; }
  .product-end h2 { font-size: clamp(4rem, 17vw, 6.5rem); }
  .world-stage { min-height: 84vw; border-radius: 18px; }
  .map-stack { inset: 6%; grid-template-columns: 1fr 1fr; }
  .map-stack figure:first-child { display: none; }
  .map-stack figure:nth-child(2) { transform: none; }
  .tower-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .tower-tile { min-height: 220px; border-radius: 16px; }
  .tower-tile:last-child { grid-column: 1 / -1; }
  .progression-panel { padding-inline: var(--pad); }
  .progression-art { width: 84vw; }
  .progression-copy h2 { font-size: clamp(3.4rem, 15vw, 5.6rem); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .motion-ready .reveal-on-scroll { opacity: 1; transform: none; }
  .product-hero-art, .core-splash-object, .story-wide, .world-map-art, .map-stack { transform: none; }
  .comparison-after { clip-path: none; }
  .comparison-line { display: none; }
}

@media (prefers-contrast: more) {
  :root {
    --muted: #c9c9c4;
    --line-dark: rgba(255, 255, 255, 0.45);
    --line-light: rgba(11, 13, 15, 0.45);
  }
}

/* Damnright Worlds brand system and responsive product corrections v6 */
:root {
  --dw-navy: #071e3d;
  --dw-navy-deep: #031226;
  --dw-red: #d71920;
  --dw-white: #f7f8fa;
  --dw-ice: #eef3f8;
  --ink: var(--dw-navy);
  --ink-soft: var(--dw-navy-deep);
  --paper: var(--dw-ice);
  --paper-soft: #e2eaf2;
  --white: var(--dw-white);
  --acid: var(--dw-red);
}

body { background: var(--dw-ice); }
::selection { background: var(--dw-red); color: var(--dw-white); }
:focus-visible { outline-color: var(--dw-red); }

.site-header {
  background: linear-gradient(180deg, rgba(7, 30, 61, 0.99), rgba(7, 30, 61, 0.95));
  color: var(--dw-white);
  backdrop-filter: blur(18px) saturate(130%);
}
.header-inner { min-height: 112px; border-color: rgba(247, 248, 250, 0.14); }
.brand-picture { display: block; line-height: 0; }
.brand-logo {
  display: block;
  width: clamp(190px, 18vw, 260px);
  min-width: 160px;
  height: auto;
}
.desktop-nav a { color: rgba(247, 248, 250, 0.78); letter-spacing: 0; text-transform: none; }
.desktop-nav a::after { height: 2px; background: var(--dw-red); }
.desktop-nav .language-link { border-color: rgba(247, 248, 250, 0.16); }

.hero {
  min-height: min(920px, 100svh);
  grid-template-columns: minmax(0, 760px) 1fr;
  background:
    radial-gradient(circle at 78% 48%, rgba(25, 70, 125, 0.58), transparent 27%),
    radial-gradient(circle at 18% 92%, rgba(215, 25, 32, 0.12), transparent 28%),
    linear-gradient(145deg, var(--dw-navy) 0%, #04162f 62%, #020d1d 100%);
}
.hero::after {
  right: -12vw;
  bottom: -46vw;
  width: 76vw;
  height: 76vw;
  border: 1px solid rgba(247, 248, 250, 0.08);
  border-radius: 50%;
  background: transparent;
  box-shadow: 0 0 0 9vw rgba(247, 248, 250, 0.022), 0 0 0 19vw rgba(247, 248, 250, 0.014);
}
.hero-content { width: min(820px, 100%); }
.hero .eyebrow,
.games-section .section-heading .eyebrow,
.manifesto .eyebrow {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  color: rgba(247, 248, 250, 0.68);
}
.hero .eyebrow::before,
.games-section .section-heading .eyebrow::before,
.manifesto .eyebrow::before {
  width: 38px;
  height: 3px;
  flex: 0 0 auto;
  background: var(--dw-red);
  content: "";
}
.hero h1 {
  font-family: var(--sans);
  font-size: clamp(4.8rem, 8vw, 8.6rem);
  font-weight: 760;
  letter-spacing: -0.075em;
  line-height: 0.91;
}
.hero h1 span { color: rgba(247, 248, 250, 0.52); }
.hero-intro { color: rgba(247, 248, 250, 0.7); }
.hero-actions .button.primary { border-color: var(--dw-white); background: var(--dw-white); color: var(--dw-navy); }
.hero-actions .button.primary:hover { border-color: var(--dw-white); background: transparent; color: var(--dw-white); }
.hero-actions .button span { color: var(--dw-red); }
.development-note span { background: var(--dw-red); }
.hero-brand-mark {
  position: relative;
  z-index: 1;
  width: min(16vw, 220px);
  justify-self: end;
  opacity: 0.13;
  filter: saturate(0.7) contrast(1.05);
  transform: rotate(5deg);
}

.games-section { background: var(--dw-ice); }
.section-heading { grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr); }
.section-heading > * { min-width: 0; }
.section-heading .eyebrow { grid-column: 1; color: #66758a; }
.section-heading h2 {
  grid-column: 1;
  color: var(--dw-navy);
  font-family: var(--sans);
  font-size: clamp(3.5rem, 6vw, 5.8rem);
  font-weight: 750;
  letter-spacing: -0.065em;
  line-height: 0.96;
}
.section-heading > p:last-child { grid-column: 2; color: #66758a; font-size: 1.05rem; }
.game-card {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  border: 0;
  border-radius: 34px;
  background: var(--dw-navy-deep);
  box-shadow: 0 32px 80px rgba(7, 30, 61, 0.13);
}
.game-card-link { position: relative; }
.game-card .game-visual.compact { position: absolute; inset: 0; min-height: 100%; }
.game-card .visual-shade,
.game-card .craft-flow .visual-shade { background: linear-gradient(180deg, rgba(3, 18, 38, 0.04) 26%, rgba(3, 18, 38, 0.92) 100%); }
.game-card .visual-caption { display: none; }
.game-card-copy { position: absolute; z-index: 3; right: 0; bottom: 0; left: 0; padding: clamp(1.8rem, 4vw, 2.8rem); color: var(--dw-white); }
.game-card .card-meta { justify-content: flex-start; color: rgba(247, 248, 250, 0.68); }
.game-card .card-meta::before { width: 24px; height: 3px; flex: 0 0 auto; background: var(--dw-red); content: ""; }
.game-card h3 { color: var(--dw-white); font-family: var(--sans); font-weight: 740; }
.game-card p { color: rgba(247, 248, 250, 0.75); }
.game-card .text-link { color: var(--dw-white); text-decoration-color: var(--dw-red); }

.manifesto {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  color: var(--dw-white);
  background: var(--dw-navy);
  border: 0;
  box-shadow: 0 0 0 100vmax var(--dw-navy);
  clip-path: inset(0 -100vmax);
}
.manifesto h2 { max-width: 800px; color: var(--dw-white); font-family: var(--sans); font-weight: 740; }
.manifesto > p { color: rgba(247, 248, 250, 0.68); }
.page-hero, .site-footer { background: var(--dw-navy); }
.page-hero .eyebrow { color: #ff6a6f; }
.footer-brand .brand-logo { width: 220px; }
.footer-grid h2 { color: #8fa0b5; }
.footer-grid a:not(.brand), .footer-grid p { color: rgba(247, 248, 250, 0.68); }

.product-page, .showcase { padding-top: 112px; }
.product-nav > div { min-height: 72px; }
.product-identity { gap: 0.85rem; }
.product-icon {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  border-radius: 12px;
  object-fit: contain;
  image-rendering: auto;
}
.product-identity strong { font-size: 0.94rem; }
.product-identity small { font-size: 0.66rem; }

.showcase-object-orbit { inset: 32vh 0 4vh; }
.showcase-object-orbit .object-tile { width: clamp(170px, 17vw, 260px); }
.showcase-object-orbit .object-tile img {
  width: 100%;
  max-width: none;
  height: auto;
  object-fit: contain;
}
.showcase-object-orbit .object-tile:nth-child(-n + 3) img { transform: scale(1.13); }
.showcase-object-orbit .object-tile:nth-child(n + 4):nth-child(-n + 6) img { transform: scale(1.2); }
.showcase-object-orbit .object-tile:nth-child(n + 7) img { transform: scale(1.08); }

/* Scene positioning must win over the generic reveal animation. */
.motion-ready .showcase-object-orbit .object-tile.reveal-on-scroll {
  opacity: var(--object-opacity, 0);
  transform: translate(var(--object-x, 0px), var(--object-y, 0px)) scale(var(--object-scale, 1));
  transition: none !important;
}

.showcase-tower-stage { inset: 34vh 3vw 9vh; }
.showcase-tower-stage .tower-tile { width: clamp(190px, 20vw, 300px); }
.showcase-tower-stage .tower-tile img {
  width: 100%;
  max-width: none;
  height: 100%;
  object-fit: contain;
}
.showcase-tower-stage .tower-tile figcaption { bottom: -1.35rem; font-size: 0.72rem; }
.motion-ready .showcase-tower-stage .tower-tile.reveal-on-scroll {
  opacity: var(--tower-opacity, 0);
  transform: translate(var(--tower-x, 0px), var(--tower-y, 0px)) scale(var(--tower-scale, 1));
  transition: none !important;
}
.showcase-end img {
  width: clamp(126px, 13vw, 180px);
  height: auto;
  aspect-ratio: 1;
  object-fit: contain;
}

@media (max-width: 980px) {
  .hero-brand-mark { position: absolute; right: 1rem; bottom: 3rem; width: 190px; }
  .section-heading { grid-template-columns: 1fr; }
  .section-heading > p:last-child { grid-column: 1; max-width: 720px; }
  .showcase-set-gallery { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 720px) {
  .header-inner { min-height: 88px; }
  .brand-logo { width: 180px; min-width: 160px; }
  .mobile-menu summary { width: 44px; height: 44px; border-color: rgba(247, 248, 250, 0.2); }
  .hero { min-height: 780px; padding-top: 9rem; grid-template-columns: 1fr; }
  .hero h1 { font-size: clamp(4rem, 18vw, 5.8rem); }
  .hero-brand-mark { right: 1rem; bottom: 2rem; width: 140px; opacity: 0.09; }
  .games-section { padding-top: 6rem; }
  .section-heading h2 { font-size: clamp(2.55rem, 11vw, 4rem); }
  .game-card { min-height: 590px; border-radius: 24px; }
  .game-card h3 { font-size: clamp(3rem, 15vw, 4.6rem); }
  .manifesto { grid-template-columns: 1fr; }
  .manifesto h2 { font-size: clamp(3rem, 13vw, 4.5rem); }
  .product-page, .showcase { padding-top: 88px; }
  .product-nav > div { min-height: 68px; padding-block: 0.45rem; }
  .product-icon { width: 44px; height: 44px; flex-basis: 44px; border-radius: 11px; }
  .product-links { gap: 1rem; }
  .product-links a { font-size: 0.72rem; }
  .product-core .showcase-hero-object {
    right: -32vw;
    bottom: -5vh;
    width: 112vw;
    opacity: 0.42;
  }
  .showcase-captions h2 { font-size: clamp(3rem, 11.5vw, 4.4rem); }
  .showcase-compare-copy h2,
  .showcase-collection-copy h2,
  .showcase-story-copy h2,
  .showcase-tower-copy h2,
  .showcase-tree-copy h2 { font-size: clamp(3rem, 11.5vw, 4.4rem); }
  .showcase-compare-copy { top: 7vh; }
  .showcase-compare { height: 58vh; }
  .showcase-collection-copy { top: 5vh; }
  .showcase-object-orbit { inset: 38vh 0 4vh; }
  .showcase-object-orbit .object-tile { width: clamp(92px, 25vw, 132px); }
  .showcase-tower-copy { top: 5vh; }
  .showcase-tower-copy p { font-size: 0.92rem; line-height: 1.45; }
  .showcase-tower-stage { inset: 39vh 0 8vh; }
  .showcase-tower-stage .tower-tile { width: clamp(112px, 28vw, 148px); }
  .showcase-tower-stage .tower-tile figcaption { bottom: -0.7rem; font-size: 0.56rem; }
  .showcase-tree-art { top: 30%; width: min(64vw, 360px); }
  .showcase-tree-copy { bottom: 6vh; }
  .showcase-tree-copy ul { margin-top: 1rem; padding-top: 0.8rem; }
  .showcase-facts-heading h2,
  .showcase-end h2 { font-size: clamp(3.2rem, 12vw, 4.6rem); }
  .showcase-set-showcase { margin-top: -1rem; }
  .showcase-set-gallery {
    margin-inline: calc(var(--pad) * -1);
    padding-inline: var(--pad);
    grid-auto-columns: min(68vw, 250px);
    grid-auto-flow: column;
    grid-template-columns: none;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline mandatory;
    scrollbar-width: none;
  }
  .showcase-set-gallery::-webkit-scrollbar { display: none; }
  .showcase-set-gallery figure { scroll-snap-align: start; }
  .showcase-end img { width: 132px; }
  .showcase-fact-grid article { min-height: 220px; }
}

/* Product clarity, homepage art direction and mobile pacing v8 */
.hero-games {
  position: relative;
  z-index: 2;
  width: min(38vw, 560px);
  height: min(66vh, 610px);
  justify-self: end;
}
.hero-game-preview {
  position: absolute;
  display: block;
  overflow: hidden;
  border: 1px solid rgba(247, 248, 250, 0.16);
  border-radius: 30px;
  background: #06152b;
  color: var(--dw-white);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.42);
  text-decoration: none;
  transition: border-color 220ms ease, transform 320ms cubic-bezier(.2,.7,.2,1);
}
.hero-game-preview::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 42%, rgba(2, 13, 29, 0.88) 100%);
}
.hero-game-preview:hover { border-color: rgba(247, 248, 250, 0.42); text-decoration: none; transform: translateY(-8px); }
.hero-game-preview img { width: 100%; height: 100%; object-fit: cover; transition: transform 700ms cubic-bezier(.2,.7,.2,1); }
.hero-game-preview:hover img { transform: scale(1.035); }
.hero-game-preview > span { position: absolute; z-index: 2; right: 1.35rem; bottom: 1.2rem; left: 1.35rem; display: flex; align-items: flex-end; justify-content: space-between; gap: 1rem; }
.hero-game-preview b { font-size: clamp(1.1rem, 2vw, 1.5rem); }
.hero-game-preview small { color: rgba(247, 248, 250, 0.66); font-size: 0.66rem; font-weight: 720; letter-spacing: 0.08em; text-transform: uppercase; }
.hero-craft { top: 0; left: 0; width: 61%; height: 78%; transform: rotate(-2deg); }
.hero-craft:hover { transform: rotate(-2deg) translateY(-8px); }
.hero-craft img { object-position: center 56%; }
.hero-core { right: 0; bottom: 0; width: 66%; height: 59%; transform: rotate(2deg); }
.hero-core:hover { transform: rotate(2deg) translateY(-8px); }
.hero-core img { object-position: center; }
.hero-games .hero-brand-mark { position: absolute; z-index: -1; top: -7%; right: -7%; width: 170px; opacity: 0.08; transform: rotate(7deg); }

.manifesto-detail > p { margin-top: 0; color: rgba(247, 248, 250, 0.68); }
.manifesto-detail ul { display: flex; margin: 1.6rem 0 1.8rem; padding: 0; flex-wrap: wrap; gap: 0.55rem; list-style: none; }
.manifesto-detail li { padding: 0.55rem 0.72rem; border: 1px solid rgba(247, 248, 250, 0.15); color: rgba(247, 248, 250, 0.76); font-size: 0.72rem; }
.manifesto-detail .text-link { color: var(--dw-white); text-decoration-color: var(--dw-red); }

.product-links a { display: inline-flex; min-height: 44px; align-items: center; }

.showcase-loop {
  padding: clamp(7rem, 12vw, 11rem) var(--pad);
  background: #f5f5f7;
  color: #1d1d1f;
}
.product-core .showcase-loop { background: #07110d; color: #f5f5f7; }
.showcase-loop-heading,
.showcase-loop ol { width: min(100%, var(--max)); margin-inline: auto; }
.showcase-loop-heading > span { color: var(--scene-accent); font-size: 0.7rem; font-weight: 800; letter-spacing: 0.15em; text-transform: uppercase; }
.showcase-loop-heading h2 { max-width: 1060px; margin: 0.8rem 0 3.5rem; font-size: clamp(3.7rem, 7.6vw, 8rem); }
.showcase-loop ol { display: grid; padding: 0; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1px; list-style: none; background: #d7d7da; }
.product-core .showcase-loop ol { background: rgba(255, 255, 255, 0.12); }
.showcase-loop li { min-width: 0; padding: clamp(1.5rem, 3vw, 2.5rem); background: #f5f5f7; }
.product-core .showcase-loop li { background: #07110d; }
.showcase-loop li > b { color: var(--scene-accent); font-size: 0.72rem; letter-spacing: 0.12em; }
.showcase-loop h3 { margin: 3.2rem 0 0.8rem; font-size: clamp(1.25rem, 2vw, 1.7rem); letter-spacing: -0.035em; }
.showcase-loop li p { margin: 0; color: #69696d; font-size: 0.92rem; }
.product-core .showcase-loop li p { color: #8da097; }

.showcase-tower-stage { inset: 31vh 3vw 23vh; }
.fusion-formulas {
  position: absolute;
  z-index: 6;
  right: max(var(--pad), calc((100vw - var(--max)) / 2 + var(--pad)));
  bottom: 3vh;
  left: max(var(--pad), calc((100vw - var(--max)) / 2 + var(--pad)));
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
}
.fusion-formula {
  display: grid;
  min-width: 0;
  min-height: 104px;
  padding: 0.75rem;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 0.25rem;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 18px;
  background: rgba(8, 22, 16, 0.78);
  opacity: 0.46;
  backdrop-filter: blur(18px);
  transition: opacity 220ms ease, border-color 220ms ease, transform 220ms ease;
}
.fusion-formula.is-active { border-color: rgba(120, 242, 177, 0.42); opacity: 1; transform: translateY(-4px); }
.fusion-formula > span { display: grid; min-width: 0; place-items: center; }
.fusion-formula img { width: min(66px, 5vw); height: auto; aspect-ratio: 1; object-fit: contain; filter: drop-shadow(0 12px 12px rgba(0, 0, 0, 0.42)); }
.fusion-formula small { overflow: hidden; max-width: 100%; color: #aebbb4; font-size: 0.58rem; font-weight: 760; text-overflow: ellipsis; text-transform: uppercase; white-space: nowrap; }
.fusion-formula > b { color: #78f2b1; font-size: 1rem; }
.fusion-result img { transform: scale(1.12); }

.showcase-end-note { max-width: 650px; margin: 1.2rem auto 0; color: rgba(255, 255, 255, 0.62) !important; font-size: 1rem !important; font-weight: 400 !important; letter-spacing: 0 !important; line-height: 1.65; text-transform: none !important; }
.showcase-end-actions { display: flex; margin-top: 2rem; flex-wrap: wrap; justify-content: center; gap: 0.8rem; }
.showcase-end-actions .button { margin-top: 0; }
.showcase-end-actions .button.primary { border-color: #fff; background: #fff; color: #111; }

@media (max-width: 980px) {
  .hero { grid-template-columns: minmax(0, 1fr) minmax(300px, 0.65fr); }
  .hero-games { width: min(40vw, 430px); height: 510px; }
  .showcase-loop ol { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 720px) {
  .hero { min-height: auto; padding-bottom: 4rem; grid-template-columns: 1fr; }
  .hero-content { padding-bottom: 2rem; }
  .hero-games { width: 100%; height: 390px; justify-self: stretch; }
  .hero-craft { left: 2%; width: 57%; height: 82%; }
  .hero-core { right: 1%; width: 61%; height: 58%; }
  .hero-game-preview { border-radius: 22px; }
  .hero-game-preview > span { right: 0.9rem; bottom: 0.85rem; left: 0.9rem; display: block; }
  .hero-game-preview small { display: block; margin-top: 0.2rem; }
  .hero-games .hero-brand-mark { top: -1rem; right: 0; width: 108px; }
  .manifesto-detail ul { margin-top: 1.2rem; }
  .showcase-loop { padding-block: 5.5rem; }
  .showcase-loop-heading h2 { font-size: clamp(3rem, 12vw, 4.5rem); }
  .showcase-loop ol { grid-template-columns: 1fr; }
  .showcase-loop h3 { margin-top: 1.8rem; }

  /* Shorter tracks preserve the scenes without making mobile pages feel endless. */
  .showcase-scene { height: 145svh; }
  .showcase-frame-scene { height: 260svh; }
  .showcase-map-scene { height: 330svh; }
  .showcase-compare-scene,
  .showcase-collection-scene,
  .showcase-story-scene,
  .showcase-tree-scene { height: 165svh; }
  .showcase-tower-scene { height: 220svh; }

  .product-links { max-width: 68%; gap: 0.55rem; }
  .product-links a { min-height: 44px; font-size: 0.62rem; white-space: nowrap; }
  .product-identity small { display: none; }
  .product-identity strong { font-size: 0.76rem; }
  .showcase-tower-copy h2 { font-size: clamp(2.7rem, 10.5vw, 4rem); }
  .showcase-tower-stage { inset: 35vh 0 27vh; }
  .showcase-tower-stage .tower-tile { width: clamp(102px, 26vw, 138px); }
  .fusion-formulas { right: var(--pad); bottom: 2.5vh; left: var(--pad); grid-template-columns: 1fr; gap: 0.35rem; }
  .fusion-formula { min-height: 58px; padding: 0.3rem 0.55rem; border-radius: 12px; opacity: 0.34; }
  .fusion-formula img { width: 38px; }
  .fusion-formula small { font-size: 0.49rem; }
  .showcase-end-actions { flex-direction: column; align-items: stretch; }
  .showcase-end-actions .button { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-game-preview,
  .hero-game-preview:hover,
  .hero-game-preview img,
  .hero-game-preview:hover img,
  .fusion-formula,
  .fusion-formula.is-active { transform: none; transition: none; }
  .fusion-formula { opacity: 1; }
}
