:root {
  color-scheme: dark;
  --bg: #04070f;
  --panel: rgba(6, 13, 25, 0.88);
  --panel-2: rgba(9, 18, 34, 0.86);
  --line: rgba(121, 164, 222, 0.28);
  --line-strong: rgba(47, 213, 255, 0.48);
  --text: #f5f8ff;
  --muted: #a9b6c9;
  --cyan: #2ed5ff;
  --blue: #3d7cff;
  --violet: #914dff;
  --gold: #ffc13c;
  --radius: 8px;
  --max: 1260px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 50% 10%, rgba(47, 213, 255, 0.16), transparent 32rem),
    radial-gradient(circle at 12% 78%, rgba(145, 77, 255, 0.14), transparent 24rem),
    var(--bg);
}

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

img {
  display: block;
  max-width: 100%;
  height: auto;
}

p,
h1,
h2,
h3,
a,
small {
  overflow-wrap: anywhere;
}

.page-shell {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 34px 0;
}

.concept-frame {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 68px);
  border: 1px solid var(--line);
  border-radius: 12px;
  background:
    linear-gradient(rgba(3, 7, 14, 0.24), rgba(3, 7, 14, 0.82)),
    url("assets/textures/lab-hero-bg.webp");
  background-position: center;
  background-size: cover;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.48);
}

.home-frame {
  background:
    linear-gradient(115deg, rgba(3, 7, 14, 0.22) 0%, rgba(3, 7, 14, 0.78) 44%, rgba(3, 7, 14, 0.34) 100%),
    linear-gradient(90deg, rgba(47, 213, 255, 0.16), transparent 28%, rgba(145, 77, 255, 0.16)),
    url("assets/textures/lab-hero-bg.webp");
  background-position: center;
  background-size: cover;
}

.concept-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle at 50% 42%, black, transparent 78%);
  pointer-events: none;
}

.tower-frame {
  background:
    linear-gradient(90deg, rgba(4, 7, 14, 0.72), rgba(4, 7, 14, 0.5), rgba(4, 7, 14, 0.86)),
    url("assets/textures/tower-stone-bg.webp");
  background-position: center top;
  background-size: cover;
}

.legal-frame {
  background:
    linear-gradient(rgba(3, 7, 14, 0.34), rgba(3, 7, 14, 0.88)),
    url("assets/textures/lab-hero-bg.webp");
  background-position: center;
  background-size: cover;
}

.frame-nav,
.home-hero,
.featured-game,
.studio-snapshot,
.content-section,
.principles,
.final-cta,
.tower-hero,
.game-features,
.frame-footer,
.legal-page,
.subpage-hero {
  position: relative;
  z-index: 1;
}

.frame-nav,
.frame-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 22px;
}

.frame-nav {
  z-index: 10;
}

.site-header {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 900;
}

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

.brand.mini img {
  width: 26px;
  height: 26px;
}

.site-nav,
.frame-footer nav {
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-nav a,
.frame-footer a,
.frame-footer small {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
}

.site-nav a {
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 9px 11px;
}

.site-nav a:hover {
  border-color: var(--line);
  color: var(--text);
  background: rgba(255, 255, 255, 0.045);
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
}

.site-nav .nav-cta {
  color: #fff;
  background: linear-gradient(135deg, var(--cyan), var(--blue), var(--violet));
  box-shadow: 0 12px 34px rgba(61, 124, 255, 0.32);
}

.site-nav a[aria-current="page"] {
  border-color: rgba(47, 213, 255, 0.34);
  color: var(--text);
  background: rgba(47, 213, 255, 0.08);
}

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

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--text);
}

.home-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 1.08fr);
  gap: 28px;
  align-items: center;
  min-height: 270px;
  padding: 10px 38px 0;
}

.hero-copy,
.hero-brand-art,
.tower-copy,
.phone-showcase {
  min-width: 0;
}

.section-label {
  margin: 0 0 12px;
  color: var(--cyan);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1 {
  max-width: 580px;
  margin: 0;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: clamp(2.8rem, 4.4vw, 4.35rem);
  line-height: 0.94;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 strong {
  color: var(--cyan);
}

.hero-text,
.featured-game p,
.principles p,
.game-features p,
.tower-copy .hero-text,
.legal-page p {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.58;
}

.hero-text {
  max-width: 470px;
  margin: 18px 0 0;
}

.hero-actions,
.store-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.button,
.store-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: var(--radius);
  font-weight: 900;
}

.button {
  padding: 0 18px;
  font-size: 0.86rem;
}

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--cyan), var(--blue), var(--violet));
  box-shadow: 0 16px 38px rgba(61, 124, 255, 0.32);
}

.button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(2, 6, 14, 0.46);
}

.button-ghost {
  border: 1px solid transparent;
  color: var(--muted);
  background: transparent;
}

.hero-brand-art {
  position: relative;
  display: grid;
  min-height: 270px;
  place-items: center;
  isolation: isolate;
}

.hero-brand-art img {
  width: min(580px, 100%);
  max-height: 340px;
  object-fit: contain;
  filter: drop-shadow(0 20px 60px rgba(46, 213, 255, 0.28));
  mix-blend-mode: screen;
}

.featured-game {
  display: grid;
  grid-template-columns: minmax(260px, 0.92fr) minmax(230px, 0.78fr) minmax(320px, 1.14fr);
  gap: 24px;
  align-items: center;
  margin: 8px 22px 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(3, 8, 16, 0.76);
  overflow: hidden;
}

.studio-snapshot {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin: 8px 22px 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(121, 164, 222, 0.18);
  overflow: hidden;
}

.studio-snapshot article {
  min-height: 86px;
  padding: 18px;
  background: rgba(3, 8, 16, 0.82);
}

.studio-snapshot strong,
.spotlight-points span {
  display: block;
  color: var(--text);
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
}

.studio-snapshot span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.45;
}

.spotlight-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0 16px;
}

.spotlight-points span {
  border: 1px solid rgba(47, 213, 255, 0.28);
  border-radius: 999px;
  background: rgba(47, 213, 255, 0.08);
  color: #dff8ff;
  padding: 7px 10px;
  font-size: 0.68rem;
}

.featured-logo,
.featured-copy {
  padding: 16px 20px;
}

.featured-logo img {
  width: min(340px, 100%);
  filter: drop-shadow(0 16px 38px rgba(0, 0, 0, 0.5));
}

.featured-copy h2 {
  margin: 0 0 10px;
  font-size: 1.6rem;
}

.featured-shot {
  position: relative;
  display: grid;
  place-items: center;
  height: 210px;
  overflow: hidden;
  border-left: 1px solid var(--line);
  background: rgba(3, 8, 16, 0.76);
}

.featured-shot::before {
  content: "";
  position: absolute;
  inset: -18px;
  background:
    linear-gradient(90deg, rgba(47, 213, 255, 0.12), transparent 34%, rgba(145, 77, 255, 0.12)),
    url("assets/visuals/home-towerrun-showcase.webp");
  background-position: center 58%;
  background-size: cover;
  filter: blur(10px) brightness(0.46);
  transform: scale(1.06);
}

.featured-shot img {
  position: relative;
  z-index: 1;
  width: auto;
  height: 100%;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 18px 38px rgba(0, 0, 0, 0.46));
}

.principles,
.game-features {
  margin: 18px 22px 0;
}

.content-section,
.final-cta {
  margin: 18px 22px 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(3, 8, 16, 0.68);
}

.content-section {
  padding: 26px;
}

.release-strip {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 0 22px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(121, 164, 222, 0.18);
  overflow: hidden;
}

.release-strip article {
  padding: 18px;
  background: rgba(3, 8, 16, 0.78);
}

.release-strip strong,
.contact-grid h3 {
  display: block;
  color: var(--text);
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
}

.release-strip span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.84rem;
}

.build-focus,
.tower-loop {
  display: grid;
  grid-template-columns: minmax(260px, 0.76fr) minmax(0, 1.24fr);
  gap: 26px;
  align-items: start;
}

.focus-header h2,
.player-promise h2,
.now-building h2,
.final-cta h2 {
  margin: 0;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1;
  text-transform: uppercase;
}

.focus-header p:last-child,
.player-promise p,
.now-building p,
.final-cta p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.58;
}

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

.focus-grid article {
  min-height: 154px;
  border: 1px solid rgba(121, 164, 222, 0.24);
  border-radius: var(--radius);
  background: rgba(6, 14, 27, 0.62);
  padding: 18px;
}

.focus-grid span {
  color: var(--cyan);
  font-size: 1.1rem;
  font-weight: 900;
}

.focus-grid h3 {
  margin: 16px 0 8px;
  font-size: 0.95rem;
  text-transform: uppercase;
}

.focus-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

.player-promise,
.now-building,
.final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.player-promise p,
.now-building p {
  max-width: 560px;
}

.now-building {
  background:
    linear-gradient(135deg, rgba(47, 213, 255, 0.1), rgba(145, 77, 255, 0.08)),
    rgba(3, 8, 16, 0.74);
}

.now-building::before {
  content: "";
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--cyan);
  box-shadow: 0 0 24px rgba(47, 213, 255, 0.9);
}

.status-copy {
  flex: 1;
}

.status-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.status-tags span {
  border: 1px solid rgba(47, 213, 255, 0.28);
  border-radius: 999px;
  background: rgba(47, 213, 255, 0.08);
  color: #dff8ff;
  padding: 7px 10px;
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-lanes {
  display: grid;
  grid-template-columns: minmax(240px, 0.72fr) minmax(0, 1.28fr);
  gap: 24px;
}

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

.contact-grid article {
  border: 1px solid rgba(121, 164, 222, 0.24);
  border-radius: var(--radius);
  background: rgba(6, 14, 27, 0.62);
  padding: 18px;
}

.contact-grid p {
  margin: 10px 0 14px;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

.contact-grid a {
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.gameplay-gallery {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(220px, 0.56fr) minmax(0, 1.44fr);
  gap: 22px;
  align-items: center;
  margin: 18px 22px 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(3, 8, 16, 0.68);
  padding: 24px;
}

.gameplay-gallery h2 {
  margin: 0;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: clamp(1.65rem, 2.5vw, 2.5rem);
  line-height: 1;
  text-transform: uppercase;
}

.gallery-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.gallery-strip figure {
  min-width: 0;
  margin: 0;
  border: 1px solid rgba(121, 164, 222, 0.26);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(9, 18, 34, 0.74), rgba(2, 7, 16, 0.94)),
    rgba(6, 14, 27, 0.76);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.32);
  overflow: hidden;
}

.gallery-strip img {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  object-fit: cover;
  display: block;
}

.gallery-strip figure:first-child img {
  object-position: center 48%;
}

.gallery-strip figure:last-child img {
  object-position: center 50%;
}

.gallery-strip figcaption {
  border-top: 1px solid rgba(121, 164, 222, 0.2);
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  padding: 10px;
  text-transform: uppercase;
}

.final-cta {
  padding: 28px;
  background:
    linear-gradient(135deg, rgba(47, 213, 255, 0.14), rgba(145, 77, 255, 0.14)),
    rgba(3, 8, 16, 0.76);
}

.final-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.principle-grid,
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.principle-grid article,
.feature-grid article {
  min-height: 126px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(6, 14, 27, 0.76);
  padding: 14px;
}

.principle-grid span,
.feature-grid span {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  color: var(--cyan);
  filter: drop-shadow(0 0 16px rgba(47, 213, 255, 0.38));
}

.feature-grid span {
  color: var(--gold);
  filter: drop-shadow(0 0 16px rgba(255, 193, 60, 0.36));
}

.card-icon svg {
  width: 42px;
  height: 42px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.card-icon.violet {
  color: #c85dff;
  filter: drop-shadow(0 0 16px rgba(200, 93, 255, 0.36));
}

.card-icon.gold {
  color: var(--gold);
}

.principle-grid h3,
.feature-grid h2 {
  margin: 12px 0 6px;
  font-size: 0.94rem;
  text-transform: uppercase;
}

.principle-grid p,
.feature-grid p {
  margin: 0;
  font-size: 0.82rem;
}

.tower-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(390px, 0.9fr);
  gap: 36px;
  align-items: center;
  min-height: 600px;
  padding: 36px 42px 26px;
}

.tower-logo {
  width: min(520px, 100%);
  margin: 0 auto 20px 0;
  filter: drop-shadow(0 20px 45px rgba(0, 0, 0, 0.62));
}

.tower-copy h1 {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.tower-copy .hero-line {
  max-width: 410px;
  margin: 0;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  font-weight: 900;
  line-height: 1.08;
  text-transform: uppercase;
}

.tower-copy .hero-text {
  max-width: 430px;
  margin: 14px 0 0;
}

.store-button {
  flex-direction: column;
  align-items: flex-start;
  min-width: 152px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(3, 8, 16, 0.72);
  color: var(--text);
  padding: 9px 14px;
}

.store-button span {
  font-size: 0.72rem;
  font-weight: 800;
}

.store-button strong {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.store-button.is-disabled {
  cursor: not-allowed;
  opacity: 0.92;
}

.community-line {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.phone-showcase {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 540px;
}

.phone-frame {
  position: relative;
  width: min(372px, 80%);
  border: 12px solid #111722;
  border-radius: 44px;
  background: #070b12;
  box-shadow:
    0 30px 90px rgba(0, 0, 0, 0.66),
    0 0 0 1px rgba(255, 255, 255, 0.18),
    inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.phone-frame::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  z-index: 3;
  width: 92px;
  height: 20px;
  border-radius: 999px;
  background: #080b10;
  transform: translateX(-50%);
}

.phone-frame > img {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  object-position: center center;
}

.phone-hud {
  position: absolute;
  top: 22px;
  right: 18px;
  left: 18px;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  color: white;
  font-weight: 900;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

.game-features {
  padding-bottom: 18px;
}

.frame-footer {
  margin-top: 12px;
  border-top: 1px solid rgba(121, 164, 222, 0.18);
}

.frame-footer nav {
  flex-wrap: wrap;
  justify-content: flex-end;
}

.legal-page {
  width: min(860px, calc(100% - 32px));
  margin: 34px auto 54px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(3, 8, 16, 0.74);
  padding: 34px;
}

.legal-page h1 {
  margin: 0;
  font-size: clamp(2.6rem, 7vw, 5.2rem);
}

.legal-page section {
  margin-top: 28px;
  border-top: 1px solid var(--line);
  padding-top: 22px;
}

.legal-page h2 {
  margin: 0 0 10px;
  font-size: 1rem;
  text-transform: uppercase;
}

.legal-page a {
  color: var(--cyan);
  font-weight: 900;
}

.support-list {
  display: grid;
  gap: 10px;
  margin: 14px 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.55;
}

.support-page .button {
  margin-top: 26px;
}

.button:hover,
.product-card a:hover,
.product-row a:hover,
.update-list a:hover,
.contact-grid a:hover {
  filter: brightness(1.08);
}

.subpage-hero {
  width: min(1040px, calc(100% - 44px));
  margin: 44px auto 0;
  padding: 42px 0 18px;
}

.subpage-hero h1 {
  max-width: 850px;
  font-size: clamp(2.7rem, 5.2vw, 5.4rem);
}

.subpage-hero p {
  max-width: 720px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.55;
}

.split-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(260px, 0.65fr);
  gap: 28px;
  align-items: center;
}

.split-hero img {
  width: min(430px, 100%);
  filter: drop-shadow(0 22px 70px rgba(47, 213, 255, 0.24));
  mix-blend-mode: screen;
}

.visual-panel {
  position: relative;
  justify-self: end;
  width: min(520px, 100%);
  overflow: hidden;
  border: 1px solid rgba(121, 164, 222, 0.32);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(47, 213, 255, 0.08), transparent 38%),
    rgba(5, 12, 24, 0.82);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

.visual-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 34%),
    linear-gradient(90deg, rgba(47, 213, 255, 0.12), transparent 42%, rgba(145, 77, 255, 0.14));
  opacity: 0.42;
  pointer-events: none;
}

.visual-panel img,
.split-hero .visual-panel img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  filter: none;
  mix-blend-mode: normal;
}

.visual-panel--hero {
  width: 100%;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.42);
}

.visual-panel--hero img {
  min-height: 360px;
}

.visual-panel--wide img {
  aspect-ratio: 16 / 9;
}

.story-feature {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(320px, 1.2fr);
  gap: 24px;
  align-items: center;
}

.story-feature h2 {
  margin: 0;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1;
  text-transform: uppercase;
}

.story-feature p:last-child {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.58;
}

.product-preview,
.roadmap-faq,
.faq-section,
.updates-preview {
  display: grid;
  gap: 22px;
  align-items: start;
}

.product-preview,
.roadmap-faq {
  grid-template-columns: minmax(240px, 0.62fr) minmax(0, 1.38fr);
}

.faq-section {
  grid-template-columns: minmax(220px, 0.46fr) minmax(0, 1.54fr);
}

.updates-preview {
  grid-template-columns: minmax(220px, 0.52fr) minmax(0, 1.28fr) auto;
  align-items: center;
}

.product-grid,
.update-grid,
.faq-grid,
.product-list,
.update-list,
.process-timeline {
  display: grid;
  gap: 12px;
}

.brand-kit {
  display: grid;
  grid-template-columns: minmax(240px, 0.58fr) minmax(0, 1.42fr);
  gap: 22px;
}

.brand-kit .product-grid {
  grid-template-columns: repeat(3, 1fr);
}

.update-grid {
  grid-template-columns: repeat(3, 1fr);
}

.faq-grid {
  grid-template-columns: repeat(4, 1fr);
}

.process-timeline {
  grid-template-columns: repeat(5, 1fr);
}

.product-card,
.product-row,
.update-grid article,
.faq-grid article,
.update-list article,
.process-timeline article {
  border: 1px solid rgba(121, 164, 222, 0.24);
  border-radius: var(--radius);
  background: rgba(6, 14, 27, 0.62);
}

.product-card,
.product-row,
.update-grid article,
.faq-grid article,
.update-list article,
.process-timeline article {
  padding: 18px;
}

.product-card {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
}

.product-card-featured {
  background:
    linear-gradient(135deg, rgba(47, 213, 255, 0.1), rgba(145, 77, 255, 0.1)),
    rgba(6, 14, 27, 0.7);
}

.product-card img,
.product-mark {
  width: 74px;
  height: 74px;
  border: 1px solid rgba(121, 164, 222, 0.28);
  border-radius: var(--radius);
  object-fit: cover;
}

.product-mark {
  display: grid;
  place-items: center;
  color: var(--cyan);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 2.2rem;
  font-weight: 900;
  background: radial-gradient(circle, rgba(47, 213, 255, 0.2), rgba(145, 77, 255, 0.12));
}

.product-row {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
}

.product-row img,
.product-row .product-mark {
  width: 110px;
  height: 110px;
}

.product-card span,
.product-row .section-label,
.update-grid span,
.update-list span,
.process-timeline span {
  display: block;
  color: var(--cyan);
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.product-card h3,
.update-grid h3,
.faq-grid h3,
.contact-grid h3 {
  margin: 6px 0;
  text-transform: uppercase;
}

.product-row h2,
.update-list h2,
.process-timeline h2 {
  margin: 8px 0;
  font-family: "Space Grotesk", Inter, sans-serif;
  text-transform: uppercase;
}

.product-card p,
.update-grid p,
.faq-grid p,
.update-list p,
.process-timeline p,
.product-row p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.product-card a,
.product-row a:not(.button),
.update-list a {
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-page-grid {
  display: block;
}

.contact-page-grid .contact-grid {
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 980px) {
  .page-shell {
    width: min(760px, calc(100% - 24px));
  }

  .nav-toggle {
    position: fixed;
    top: 16px;
    right: auto;
    left: 64px;
    z-index: 35;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-color: rgba(47, 213, 255, 0.9);
    background: rgba(5, 12, 22, 0.96);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.36);
  }

  .nav-toggle span {
    background: #ffffff;
  }

  .site-nav {
    position: fixed;
    top: 68px;
    right: 16px;
    left: 16px;
    z-index: 34;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(4, 8, 16, 0.96);
    padding: 8px;
  }

  .site-nav.is-open {
    display: flex;
  }

  .home-hero,
  .tower-hero,
  .featured-game,
  .build-focus,
  .product-preview,
  .tower-loop,
  .roadmap-faq,
  .faq-section,
  .brand-kit,
  .story-feature,
  .contact-lanes,
  .gameplay-gallery,
  .player-promise,
  .now-building,
  .final-cta,
  .updates-preview,
  .split-hero,
  .product-row {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: flex-start;
  }

  .home-hero,
  .tower-hero {
    padding: 28px 24px;
  }

  .featured-shot {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .principle-grid,
  .feature-grid,
  .studio-snapshot,
  .focus-grid,
  .release-strip,
  .contact-grid,
  .gallery-strip,
  .update-grid,
  .faq-grid,
  .brand-kit .product-grid,
  .process-timeline,
  .contact-page-grid .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gameplay-gallery > div:first-child,
  .release-strip article:last-child {
    grid-column: 1 / -1;
  }

  .final-cta-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .page-shell {
    width: 100%;
    padding: 0;
  }

  .concept-frame {
    min-height: 100vh;
    border: 0;
    border-radius: 0;
  }

  .brand span {
    display: none;
  }

  .frame-nav,
  .frame-footer {
    padding: 14px 16px;
  }

  h1 {
    max-width: min(100%, 20rem);
    font-size: clamp(2.15rem, 10vw, 2.72rem);
    line-height: 0.98;
  }

  .hero-text {
    max-width: min(100%, 20rem);
  }

  .home-hero {
    min-height: auto;
    padding-right: 20px;
    padding-left: 20px;
    overflow: hidden;
  }

  .hero-brand-art {
    min-height: 220px;
    overflow: hidden;
  }

  .hero-brand-art img {
    width: 108%;
    max-width: none;
    max-height: 310px;
    object-fit: contain;
  }

  .featured-game,
  .studio-snapshot,
  .content-section,
  .release-strip,
  .gameplay-gallery,
  .principles,
  .game-features,
  .final-cta {
    margin-right: 16px;
    margin-left: 16px;
  }

  .studio-snapshot,
  .focus-grid,
  .release-strip,
  .contact-grid,
  .gallery-strip,
  .update-grid,
  .faq-grid,
  .brand-kit .product-grid,
  .process-timeline,
  .contact-page-grid .contact-grid {
    grid-template-columns: 1fr;
  }

  .studio-snapshot article {
    min-height: auto;
    padding: 16px;
  }

  .content-section,
  .final-cta,
  .gameplay-gallery {
    padding: 22px 18px;
  }

  .subpage-hero {
    width: calc(100% - 32px);
    margin-top: 22px;
    padding-top: 24px;
  }

  .subpage-hero h1 {
    max-width: 100%;
    font-size: clamp(2.05rem, 10vw, 2.8rem);
  }

  .subpage-hero,
  .subpage-hero p {
    max-width: calc(100vw - 32px);
  }

  .subpage-hero p {
    font-size: 0.98rem;
  }

  .product-card,
  .product-row {
    grid-template-columns: 1fr;
  }

  .product-row img,
  .product-row .product-mark {
    width: 92px;
    height: 92px;
  }

  .gallery-strip img,
  .gallery-strip figure:first-child img {
    height: 180px;
  }

  .focus-header h2,
  .player-promise h2,
  .now-building h2,
  .final-cta h2 {
    font-size: clamp(1.55rem, 8vw, 2.1rem);
  }

  .featured-logo,
  .featured-copy {
    padding: 18px;
  }

  .principle-grid,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .tower-hero {
    min-height: auto;
    padding-top: 28px;
    padding-right: 20px;
    padding-left: 20px;
    overflow: visible;
  }

  .tower-copy .hero-line {
    max-width: 21rem;
    font-size: clamp(1.35rem, 7vw, 1.62rem);
    line-height: 1.12;
  }

  .tower-copy .hero-text {
    max-width: 21rem;
  }

  .tower-logo {
    width: min(360px, 100%);
    margin-right: auto;
    margin-left: auto;
  }

  .phone-showcase {
    min-height: 390px;
  }

  .phone-frame {
    width: min(310px, 82%);
    border-width: 8px;
  }

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

  .frame-footer nav {
    justify-content: flex-start;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .site-header {
    width: calc(100% - 32px);
  }

  .legal-page {
    width: min(340px, calc(100% - 32px));
    max-width: calc(100vw - 32px);
    margin-right: auto;
    margin-left: auto;
    padding: 22px 16px;
  }

  .legal-page h1 {
    font-size: clamp(2.1rem, 10vw, 2.7rem);
  }

.legal-page p,
  .support-list {
    max-width: 100%;
    font-size: 0.9rem;
    line-height: 1.48;
    word-break: normal;
    overflow-wrap: anywhere;
  }
}

/* Premium website pass */
.premium-home-hero {
  grid-template-columns: minmax(430px, 0.88fr) minmax(480px, 1.12fr);
  align-items: start;
  min-height: 520px;
  padding-top: 46px;
  padding-bottom: 18px;
}

.premium-home-hero h1 {
  max-width: 640px;
  font-size: clamp(2.9rem, 4.25vw, 4.75rem);
}

.premium-home-hero .hero-text {
  max-width: 560px;
  font-size: 1.05rem;
}

.platform-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 28px;
  color: #d7e3f6;
}

.platform-badges span {
  position: relative;
  padding-left: 26px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.platform-badges span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 14px;
  height: 14px;
  border: 1px solid rgba(47, 213, 255, 0.52);
  border-radius: 3px;
  background: rgba(47, 213, 255, 0.12);
  box-shadow: 0 0 18px rgba(47, 213, 255, 0.32);
  transform: translateY(-50%);
}

.hero-product-stage {
  position: relative;
  display: grid;
  min-height: 420px;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.58fr);
  align-items: center;
  isolation: isolate;
}

.hero-product-stage::before,
.hero-product-stage::after,
.premium-tower-hero .phone-showcase::before {
  content: "";
  position: absolute;
  pointer-events: none;
}

.hero-product-stage::before {
  inset: 6% 6% 0 12%;
  z-index: -2;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(47, 213, 255, 0.22), transparent 58%);
  filter: blur(8px);
}

.hero-product-stage::after {
  right: 7%;
  bottom: 4%;
  left: 32%;
  z-index: -1;
  height: 116px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(145, 77, 255, 0.42), transparent 64%);
  filter: blur(10px);
}

.hero-logo-stack {
  position: relative;
  display: grid;
  justify-items: center;
  text-align: center;
}

.hero-bkaselabs-logo {
  width: min(310px, 72%);
  filter: drop-shadow(0 24px 70px rgba(47, 213, 255, 0.34));
  mix-blend-mode: screen;
}

.hero-towerrun-logo {
  width: min(290px, 64%);
  margin-top: -28px;
  filter: drop-shadow(0 20px 45px rgba(0, 0, 0, 0.62));
}

.hero-logo-stack p {
  max-width: 310px;
  margin: -6px 0 0;
  color: #f5f8ff;
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-phone-card {
  position: relative;
  display: grid;
  justify-items: center;
}

.mini-phone {
  width: min(220px, 86%);
  transform: rotate(5deg);
}

.hero-stat-card,
.tower-signal-card {
  position: absolute;
  z-index: 3;
  border: 1px solid rgba(121, 164, 222, 0.38);
  border-radius: var(--radius);
  background: rgba(5, 12, 22, 0.82);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(10px);
}

.hero-stat-card {
  right: 0;
  min-width: 132px;
  padding: 12px 14px;
}

.hero-stat-card span,
.tower-signal-card span {
  display: block;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-stat-card strong,
.tower-signal-card strong {
  display: block;
  margin-top: 8px;
  color: var(--cyan);
  font-size: 1.45rem;
  font-weight: 900;
}

.hero-stat-card.coin-route strong,
.tower-signal-card.signal-coin strong {
  color: var(--gold);
}

.best-score {
  top: 28%;
}

.coin-route {
  top: 50%;
}

.current-focus-rail {
  position: relative;
  z-index: 1;
  margin: 12px 22px 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(3, 8, 16, 0.72);
  padding: 22px;
}

.focus-rail-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.focus-rail-grid article,
.journey-steps article,
.depth-grid article,
.loop-rail article {
  position: relative;
  border: 1px solid rgba(121, 164, 222, 0.25);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(47, 213, 255, 0.06), transparent 42%),
    rgba(6, 14, 27, 0.72);
  padding: 18px;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.focus-rail-grid article:hover,
.journey-steps article:hover,
.depth-grid article:hover,
.loop-rail article:hover,
.product-card:hover,
.update-grid article:hover,
.contact-grid article:hover {
  border-color: rgba(47, 213, 255, 0.46);
  background:
    linear-gradient(135deg, rgba(47, 213, 255, 0.11), rgba(145, 77, 255, 0.06)),
    rgba(6, 14, 27, 0.78);
  transform: translateY(-3px);
}

.focus-rail-grid h2,
.depth-grid h3,
.loop-rail h3 {
  margin: 12px 0 8px;
  font-size: 0.95rem;
  text-transform: uppercase;
}

.focus-rail-grid p,
.depth-grid p,
.loop-rail p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.52;
}

.rail-icon {
  display: block;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(47, 213, 255, 0.48);
  border-radius: 10px;
  background:
    radial-gradient(circle at 50% 50%, rgba(47, 213, 255, 0.46), transparent 24%),
    rgba(47, 213, 255, 0.08);
  box-shadow: 0 0 24px rgba(47, 213, 255, 0.22);
}

.rail-icon.pad {
  border-color: rgba(145, 77, 255, 0.5);
  background:
    radial-gradient(circle at 42% 50%, rgba(145, 77, 255, 0.55), transparent 18%),
    radial-gradient(circle at 62% 50%, rgba(145, 77, 255, 0.55), transparent 18%),
    rgba(145, 77, 255, 0.08);
}

.rail-icon.rocket {
  border-color: rgba(255, 193, 60, 0.54);
  background:
    linear-gradient(135deg, transparent 42%, rgba(255, 193, 60, 0.65) 43%, rgba(255, 193, 60, 0.65) 56%, transparent 57%),
    rgba(255, 193, 60, 0.08);
}

.premium-featured-game {
  grid-template-columns: minmax(260px, 0.72fr) minmax(280px, 0.7fr) minmax(380px, 1.38fr);
  min-height: 270px;
  background:
    linear-gradient(90deg, rgba(3, 8, 16, 0.88), rgba(3, 8, 16, 0.5)),
    url("assets/textures/tower-stone-bg.webp");
  background-position: center;
  background-size: cover;
}

.premium-featured-game .featured-shot {
  height: 270px;
}

.journey-steps,
.depth-grid,
.loop-rail {
  display: grid;
  gap: 14px;
}

.journey-steps {
  grid-template-columns: repeat(4, 1fr);
  counter-reset: step;
}

.journey-steps article::after,
.loop-rail article::after {
  content: "";
  position: absolute;
  top: 36px;
  right: -18px;
  width: 22px;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), transparent);
}

.journey-steps article:last-child::after,
.loop-rail article:last-child::after {
  display: none;
}

body.reveal-ready [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 420ms ease, transform 420ms ease;
}

body.reveal-ready [data-reveal].is-visible,
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.premium-tower-hero {
  grid-template-columns: minmax(360px, 0.86fr) minmax(500px, 1.14fr);
  min-height: 570px;
  padding-top: 22px;
  padding-bottom: 16px;
  background:
    radial-gradient(circle at 66% 48%, rgba(255, 193, 60, 0.16), transparent 18rem),
    radial-gradient(circle at 78% 58%, rgba(47, 213, 255, 0.16), transparent 18rem);
}

.premium-tower-hero .tower-logo {
  width: min(440px, 100%);
}

.premium-tower-hero .phone-showcase::before {
  right: 7%;
  bottom: 6%;
  left: 12%;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(47, 213, 255, 0.38), transparent 68%);
  filter: blur(8px);
}

.premium-tower-hero .phone-frame {
  width: min(338px, 74%);
  transform: rotate(6deg);
}

.tower-signal-card {
  right: 0;
  width: 172px;
  padding: 13px 14px;
}

.signal-score {
  top: 24%;
}

.signal-coin {
  top: 45%;
}

.signal-session {
  top: 66%;
}

.premium-game-features {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(3, 8, 16, 0.68);
  padding: 24px;
}

.feature-heading {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1fr);
  gap: 24px;
  align-items: end;
  margin-bottom: 20px;
}

.feature-heading h2 {
  margin: 0;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: clamp(1.7rem, 3vw, 3rem);
  line-height: 1;
  text-transform: uppercase;
}

.feature-heading p {
  margin: 0;
  color: var(--muted);
  line-height: 1.58;
}

.feature-grid h3 {
  margin: 12px 0 6px;
  font-size: 0.94rem;
  text-transform: uppercase;
}

.gameplay-depth {
  display: grid;
  grid-template-columns: minmax(250px, 0.58fr) minmax(0, 1.42fr);
  gap: 24px;
}

.depth-grid {
  grid-template-columns: repeat(3, 1fr);
}

.depth-grid span {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.premium-gallery .gallery-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  overflow: visible;
  padding-bottom: 0;
}

.premium-gallery .gallery-strip figure {
  min-width: 0;
}

.premium-gallery .gallery-strip img,
.premium-gallery .gallery-strip figure:first-child img {
  aspect-ratio: 16 / 9;
  height: auto;
}

.premium-gallery {
  grid-template-columns: 1fr;
  align-items: start;
}

.premium-gallery > div:first-child {
  max-width: 720px;
}

@media (max-width: 980px) {
  .premium-gallery .gallery-strip {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 6px;
  }

  .premium-gallery .gallery-strip figure {
    flex: 0 0 min(360px, 84vw);
    scroll-snap-align: start;
  }
}

.premium-loop {
  grid-template-columns: 1fr;
  gap: 22px;
  background:
    linear-gradient(rgba(3, 8, 16, 0.78), rgba(3, 8, 16, 0.9)),
    url("assets/textures/tower-stone-bg.webp");
  background-position: center;
  background-size: cover;
}

.loop-rail {
  position: relative;
  grid-template-columns: repeat(4, 1fr);
}

.loop-rail::before {
  content: "";
  position: absolute;
  top: -20px;
  right: 8%;
  left: 8%;
  height: 34px;
  border-top: 2px dotted rgba(47, 213, 255, 0.64);
  border-radius: 50% 50% 0 0;
  pointer-events: none;
}

.loop-rail article {
  min-height: 142px;
}

.loop-rail span {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(47, 213, 255, 0.42);
  border-radius: 50%;
  color: var(--cyan);
  font-weight: 900;
}

.media-kit-strip .product-grid {
  align-items: stretch;
}

@media (hover: hover) {
  .button {
    transition: transform 180ms ease, filter 180ms ease, box-shadow 180ms ease;
  }

  .button:hover {
    transform: translateY(-2px);
  }
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  .premium-home-hero,
  .hero-product-stage,
  .premium-tower-hero,
  .feature-heading,
  .story-feature,
  .gameplay-depth {
    grid-template-columns: 1fr;
  }

  .hero-product-stage,
  .visual-panel--hero img {
    min-height: auto;
  }

  .visual-panel {
    justify-self: start;
    width: 100%;
  }

  .hero-stat-card,
  .tower-signal-card {
    position: static;
    width: auto;
    margin: 10px 0 0;
  }

  .focus-rail-grid,
  .journey-steps,
  .depth-grid,
  .loop-rail {
    grid-template-columns: repeat(2, 1fr);
  }

  .journey-steps article::after,
  .loop-rail article::after,
  .loop-rail::before {
    display: none;
  }
}

@media (max-width: 560px) {
  .frame-nav {
    max-width: 100vw;
    overflow: visible;
  }

  .nav-toggle {
    position: fixed;
    top: 16px;
    right: auto;
    left: 64px;
    z-index: 35;
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-color: rgba(47, 213, 255, 0.9);
    background: rgba(5, 12, 22, 0.96);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.36);
  }

  .nav-toggle span {
    background: #ffffff;
  }

  .premium-home-hero h1 {
    width: min(100%, calc(100vw - 40px));
    max-width: 100%;
    font-size: clamp(2.05rem, 9.2vw, 2.55rem);
    line-height: 1.04;
  }

  .subpage-hero h1 {
    width: min(100%, calc(100vw - 32px));
    max-width: 100%;
    font-size: clamp(1.65rem, 7.4vw, 2.05rem);
    line-height: 1.05;
  }

  .subpage-hero {
    width: calc(100vw - 32px) !important;
    max-width: calc(100vw - 32px);
  }

  .subpage-hero p,
  .contact-grid p,
  .product-row p,
  .player-promise p {
    width: 100%;
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .subpage-hero p {
    width: calc(100vw - 32px) !important;
  }

  .visual-panel img {
    aspect-ratio: 4 / 3;
  }

  .visual-panel--wide img {
    aspect-ratio: 16 / 10;
  }

  .contact-grid article,
  .product-row,
  .player-promise,
  .story-feature,
  .content-section {
    max-width: calc(100vw - 32px);
  }

  .premium-home-hero .hero-text {
    width: min(100%, calc(100vw - 40px));
    max-width: 100%;
    font-size: 0.96rem;
  }

  .premium-home-hero {
    grid-template-columns: minmax(0, 1fr);
    padding-top: 68px;
  }

  .platform-badges {
    max-width: calc(100vw - 40px);
    gap: 8px 12px;
  }

  .platform-badges span {
    font-size: 0.64rem;
  }

  .current-focus-rail {
    margin-right: 16px;
    margin-left: 16px;
    padding: 18px;
  }

  .focus-rail-grid,
  .journey-steps,
  .depth-grid,
  .loop-rail {
    grid-template-columns: 1fr;
  }

  .hero-product-stage {
    margin-top: 8px;
  }

  .hero-bkaselabs-logo {
    width: min(330px, 88vw);
  }

  .hero-towerrun-logo {
    width: min(290px, 78vw);
  }

  .mini-phone,
  .premium-tower-hero .phone-frame {
    width: min(290px, 80vw);
    transform: rotate(0);
  }

  .premium-tower-hero {
    min-height: auto;
  }

  .premium-game-features {
    margin-right: 16px;
    margin-left: 16px;
    padding: 18px;
  }

  .premium-gallery .gallery-strip figure {
    flex-basis: min(280px, 82vw);
  }
}
