:root {
  --ink: #f4f6f8;
  --muted: #9aa4af;
  --black: #05070a;
  --panel: #0b1016;
  --play: #1599ff;
  --grow: #5acb43;
  --build: #ff770f;
  --font-geist-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, Helvetica, sans-serif;
  --font-geist-mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

* {
  box-sizing: border-box;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

html {
  scroll-behavior: smooth;
  background: var(--black);
}

body {
  margin: 0;
  background: var(--black);
  color: var(--ink);
  font-family: var(--font-geist-sans), Arial, Helvetica, sans-serif;
  overflow-x: hidden;
}

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

button,
a,
summary {
  -webkit-tap-highlight-color: transparent;
}

.shell {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.category-shell {
  width: min(1560px, calc(100% - 64px));
  margin-inline: auto;
}

.worlds-shell {
  width: 100%;
  margin-inline: auto;
}

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 30;
  height: var(--martlverse-header-height, 86px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(24px, 4vw, 64px);
  background: linear-gradient(180deg, rgba(1, 3, 6, 0.94), rgba(1, 3, 6, 0.62), transparent);
  transition: background-color 180ms ease, box-shadow 180ms ease;
}

.martlverse-header-solid .site-header {
  background: rgba(3, 6, 9, 0.97);
}

.martlverse-header-transparent .site-header {
  background: transparent;
}

.martlverse-header-sticky .site-header {
  position: fixed;
  background: rgba(3, 6, 9, 0.94);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.09);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.martlverse-header-sticky.martlverse-header-transparent .site-header {
  background: rgba(3, 6, 9, 0.72);
}

.brand-mark {
  width: var(--martlverse-header-logo-width, 70px);
  height: min(calc(var(--martlverse-header-height, 86px) - 20px), 74px);
  overflow: hidden;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  background: url("../images/martlverse-m-transparent.webp") center / 126% 126% no-repeat;
}

.brand-mark-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-mark-image-default {
  visibility: hidden;
}

.brand-mark-image-custom {
  visibility: visible;
}

.brand-mark.has-custom-header-logo {
  background: none;
}

.desktop-nav {
  display: block;
}

.primary-menu {
  margin: 0;
  padding: 0;
  list-style: none;
}

.desktop-nav .primary-menu {
  display: flex;
  gap: var(--martlverse-header-menu-gap, 42px);
  align-items: center;
}

.desktop-nav li,
.mobile-nav-panel li {
  margin: 0;
}

.desktop-nav a,
.mobile-nav-panel a {
  position: relative;
  font-family: var(--font-geist-mono), monospace;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -9px;
  height: 2px;
  background: #fff;
  transition: right 180ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  right: 0;
}

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

.hero {
  position: relative;
  width: 100%;
  min-height: min(900px, 100svh);
  display: flex;
  align-items: center;
  background-color: #03070b;
  background-image: url("../images/martlverse-earth-hero.webp");
  background-size: cover;
  background-position: center;
  isolation: isolate;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(1, 3, 6, 0.02), transparent 66%, #05070a 100%);
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(circle at 50% 58%, transparent 0 38%, rgba(2, 5, 9, 0.12) 75%, rgba(2, 5, 9, 0.28) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 74px;
}

.kicker {
  margin: 0 0 16px;
  color: #bcc4cc;
  font-family: var(--font-geist-mono), monospace;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.hero .kicker {
  color: #fff;
  opacity: 0.74;
}

.hero h1,
.section-heading h2,
.dispatch-panel h2,
.contact-inner h2 {
  margin: 0;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-weight: 900;
  letter-spacing: 0.025em;
  line-height: 0.92;
}

.hero h1 {
  max-width: 920px;
  font-size: clamp(68px, 10.5vw, 156px);
  text-shadow: 0 6px 44px rgba(0, 0, 0, 0.65);
}

.hero-claim {
  margin: 24px 0 0;
  font-family: var(--font-geist-mono), monospace;
  font-size: clamp(15px, 1.4vw, 21px);
  font-weight: 700;
  letter-spacing: 0.14em;
}

.hero-copy {
  margin: 18px 0 34px;
  color: #c4cbd2;
  font-size: clamp(16px, 1.3vw, 20px);
}

.primary-button,
.secondary-button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 0 27px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  font-family: var(--font-geist-mono), monospace;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.primary-button {
  background: #f6f7f8;
  color: #080b0f;
}

.primary-button:hover,
.primary-button:focus-visible {
  background: #fff;
  transform: translateY(-2px);
}

.primary-button svg,
.text-link svg,
.world-card a svg {
  width: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.hero-worlds-claim {
  position: absolute;
  inset: auto 0 25px;
  z-index: 2;
  text-align: center;
}

.hero-worlds-claim .kicker { margin-bottom: 7px; font-size: 9px; }

.hero-worlds-claim h2 {
  margin: 0;
  font-family: var(--font-geist-sans), Arial, sans-serif;
  font-size: clamp(20px, 2vw, 30px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: .01em;
  text-shadow: 0 4px 30px rgba(0,0,0,.9);
}

.hero-worlds-claim h2 span { color: #aab3bc; font-weight: 420; }

.hero-worlds-claim a {
  width: 30px;
  height: 25px;
  display: inline-grid;
  place-items: center;
  margin-top: 9px;
}

.hero-worlds-claim a i {
  width: 10px;
  height: 10px;
  border-right: 1px solid rgba(255,255,255,.72);
  border-bottom: 1px solid rgba(255,255,255,.72);
  transform: rotate(45deg);
}

.worlds-section {
  position: relative;
  padding: 0;
  border-top: 16px solid #05070a;
  background:
    radial-gradient(circle at 15% 20%, rgba(21, 153, 255, 0.08), transparent 25%),
    radial-gradient(circle at 52% 34%, rgba(90, 203, 67, 0.06), transparent 23%),
    radial-gradient(circle at 90% 30%, rgba(255, 119, 15, 0.07), transparent 26%),
    #05070a;
}

.worlds-section::before,
.dispatch-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.15;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, transparent, black 25%, black 70%, transparent);
}

.section-heading {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 72px;
  align-items: end;
  margin-bottom: 58px;
}

.section-heading h2,
.dispatch-panel h2,
.contact-inner h2 {
  font-size: clamp(45px, 6vw, 82px);
}

.section-heading h2 {
  font-family: var(--font-geist-sans), Arial, sans-serif;
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 760;
  line-height: 1.02;
  letter-spacing: -0.035em;
}

.section-heading h2 span { color: #737e89; font-weight: 420; }

.section-heading > p,
.contact-inner > p:not(.kicker) {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.three-worlds {
  position: relative;
  z-index: 1;
  height: 390px;
  overflow: hidden;
  border: 0;
  box-shadow: none;
}

.three-worlds::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 45%, rgba(2, 4, 7, 0.84) 100%);
}

.three-worlds-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease, filter 700ms ease;
}

.three-worlds:hover .three-worlds-image {
  transform: scale(1.012);
  filter: saturate(1.08);
}

.world-hotspot {
  --accent: #fff;
  position: absolute;
  inset-block: 0;
  z-index: 2;
  width: 33.333%;
  margin: 0;
  border: 1px solid transparent;
  transition: background 240ms ease, border-color 240ms ease;
}

.world-hotspot.play { left: 0; --accent: var(--play); }
.world-hotspot.grow { left: 33.333%; --accent: var(--grow); }
.world-hotspot.build { right: 0; --accent: var(--build); }

.world-hotspot:hover,
.world-hotspot:focus-visible {
  background: linear-gradient(180deg, transparent 36%, color-mix(in srgb, var(--accent) 17%, transparent));
  border-color: color-mix(in srgb, var(--accent) 70%, transparent);
}

.world-label {
  position: absolute;
  inset: 50% clamp(14px, 2.2vw, 34px) auto;
  display: grid;
  justify-items: center;
  text-align: center;
  transform: translateY(-49%);
  color: #fff;
  text-shadow: 0 3px 18px #000;
}

.world-icon {
  width: clamp(46px, 4.3vw, 66px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  margin-bottom: clamp(8px, 1vw, 13px);
  border: 2px solid color-mix(in srgb, var(--accent) 86%, white);
  border-radius: 50%;
  color: var(--accent);
  background: rgba(2, 6, 10, 0.64);
  box-shadow: 0 0 0 7px rgba(0, 0, 0, 0.18), 0 0 28px color-mix(in srgb, var(--accent) 34%, transparent);
  backdrop-filter: blur(8px);
}

.world-icon svg {
  width: 56%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.world-label small,
.world-label i {
  font-family: var(--font-geist-mono), monospace;
  font-size: clamp(7px, 0.72vw, 10px);
  font-weight: 800;
  letter-spacing: 0.12em;
  font-style: normal;
  text-transform: uppercase;
}

.world-label small { color: var(--accent); }

.world-label strong {
  margin-top: 5px;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(28px, 3.5vw, 52px);
  letter-spacing: 0.05em;
}

.world-label i {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 14px;
  color: var(--accent);
  opacity: 0;
  transform: translateY(7px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.world-label svg { width: 18px; fill: none; stroke: currentColor; stroke-width: 1.8; }

.world-hotspot:hover .world-label i,
.world-hotspot:focus-visible .world-label i { opacity: 1; transform: none; }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-geist-mono), monospace;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 180ms ease, border-color 180ms ease;
}

.text-link:hover,
.text-link:focus-visible {
  color: #fff;
  border-color: currentColor;
}

.projects-section,
.videos-section {
  position: relative;
  padding: 104px 0;
}

.projects-section {
  padding-top: 76px;
  background: #05070a;
}
.videos-section { background: #05070a; }

.content-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 48px;
}

.content-heading h2 {
  margin: 0;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(30px, 3.4vw, 48px);
  line-height: .94;
  letter-spacing: .025em;
}

.content-heading h2,
.dispatch-panel h2 {
  font-family: var(--font-geist-sans), Arial, sans-serif;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 720;
  line-height: 1;
  letter-spacing: -0.025em;
}

.content-heading .text-link { margin-top: 0; }

.section-description {
  max-width: 660px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.project-grid,
.video-grid,
.blog-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.project-card,
.video-card,
.blog-card {
  --accent: #fff;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  background: linear-gradient(180deg, #0d1218, #090d12);
  display: flex;
  flex-direction: column;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}
.project-card:hover,
.project-card:focus-within,
.video-card:hover,
.video-card:focus-within,
.blog-card:hover,
.blog-card:focus-within {
  transform: translateY(-5px);
  border-color: color-mix(in srgb, var(--accent) 65%, transparent);
  box-shadow: 0 18px 42px rgba(0,0,0,.28);
}
.project-card.play,.video-card.play { --accent: var(--play); }
.project-card.grow,.video-card.grow { --accent: var(--grow); }
.project-card.build,.video-card.build { --accent: var(--build); }

.project-visual,
.video-thumb {
  position: relative;
  min-height: 220px;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 14px;
  padding: 24px;
  overflow: hidden;
  background-image: linear-gradient(180deg, transparent, rgba(2,4,7,.86)), url("../images/hero-three-worlds.webp");
  background-size: 300% 100%;
}
.play .project-visual,.play .video-thumb { background-position: left center; }
.grow .project-visual,.grow .video-thumb { background-position: center center; }
.build .project-visual,.build .video-thumb { background-position: right center; }
.project-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, color-mix(in srgb, var(--accent) 12%, transparent), transparent 46%);
}
.project-visual span { position: relative; z-index: 1; }
.project-world {
  color: var(--accent);
  font-family: var(--font-geist-mono),monospace;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.project-status {
  padding: 6px 8px;
  border: 1px solid rgba(255,255,255,.35);
  color: #fff;
  background: rgba(3,6,9,.56);
  font-family: var(--font-geist-mono),monospace;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  backdrop-filter: blur(7px);
}
.project-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 26px;
}
.project-body > p { min-height: 42px; margin: 13px 0 0; color: var(--muted); font-size: 13px; line-height: 1.6; }
.project-body h3,.video-body h3 { margin: 0; font-size: 21px; line-height: 1.35; }
.progress-label { display: flex; justify-content: space-between; margin-top: auto; padding-top: 26px; color: var(--muted); font: 800 9px var(--font-geist-mono),monospace; letter-spacing: .14em; text-transform: uppercase; }
.progress-label strong { color: var(--accent); }
.progress-track { height: 3px; margin-top: 10px; background: rgba(255,255,255,.1); }
.progress-track i { display: block; height: 100%; background: var(--accent); box-shadow: 0 0 12px var(--accent); }
.project-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  color: var(--accent);
  font: 800 9px var(--font-geist-mono),monospace;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.project-link svg {
  width: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  transition: transform 180ms ease;
}
.project-link:hover svg,
.project-link:focus-visible svg { transform: translateX(4px); }

.video-thumb {
  min-height: 205px;
  align-items: center;
  justify-content: center;
}

.video-thumb::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, color-mix(in srgb, var(--accent) 14%, transparent), transparent 48%);
}

.video-world,
.video-duration,
.play-button {
  position: absolute;
  z-index: 1;
}

.video-world {
  left: 20px;
  top: 19px;
  color: var(--accent);
  font: 900 9px var(--font-geist-mono), monospace;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.video-duration {
  right: 16px;
  bottom: 14px;
  padding: 5px 7px;
  color: #fff;
  background: rgba(2, 5, 8, .78);
  font: 800 9px var(--font-geist-mono), monospace;
  letter-spacing: .08em;
  backdrop-filter: blur(7px);
}

.play-button {
  width: 62px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid var(--accent);
  border-radius: 50%;
  color: #fff;
  background: rgba(2, 5, 8, .72);
  box-shadow: 0 0 26px color-mix(in srgb, var(--accent) 24%, transparent);
  backdrop-filter: blur(7px);
  transition: transform 180ms ease, background 180ms ease;
}

.play-button i {
  width: 0;
  height: 0;
  margin-left: 4px;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 11px solid currentColor;
}

.play-button:hover,
.play-button:focus-visible {
  transform: scale(1.08);
  background: color-mix(in srgb, var(--accent) 28%, rgba(2, 5, 8, .84));
}

.video-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 25px 26px 27px;
}

.video-body small {
  display: block;
  margin-bottom: 12px;
  color: var(--muted);
  font: 800 9px var(--font-geist-mono), monospace;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.video-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  padding-top: 24px;
  color: var(--accent);
  font: 800 9px var(--font-geist-mono), monospace;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.video-link svg {
  width: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  transition: transform 180ms ease;
}

.video-link:hover svg,
.video-link:focus-visible svg {
  transform: translateX(4px);
}

.blog-section {
  position: relative;
  padding: 104px 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 45%, rgba(21, 153, 255, 0.09), transparent 25%),
    radial-gradient(circle at 92% 45%, rgba(255, 119, 15, 0.08), transparent 26%),
    #090d12;
}

.blog-section::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .08;
  background-image: linear-gradient(rgba(255,255,255,.2) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.2) 1px, transparent 1px);
  background-size: 72px 72px;
  pointer-events: none;
}

.blog-section > .shell,
.blog-section > .category-shell {
  position: relative;
  z-index: 2;
}

.blog-card {
  --accent: #fff;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(8, 12, 17, .92);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.blog-card.play { --accent: var(--play); }
.blog-card.grow { --accent: var(--grow); }
.blog-card.build { --accent: var(--build); }
.blog-visual {
  position: relative;
  min-height: 175px;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 12px;
  padding: 22px;
  background-image: linear-gradient(180deg, transparent, rgba(2,4,7,.9)), url("../images/hero-three-worlds.webp");
  background-size: 300% 100%;
}

.blog-card.play .blog-visual { background-position: left center; }
.blog-card.grow .blog-visual { background-position: center center; }
.blog-card.build .blog-visual { background-position: right center; }
.blog-visual .dispatch-tag { color: var(--accent); }
.blog-type {
  padding: 6px 8px;
  border: 1px solid rgba(255,255,255,.32);
  color: #fff;
  background: rgba(3,6,9,.58);
  font: 800 8px var(--font-geist-mono), monospace;
  letter-spacing: .11em;
  text-transform: uppercase;
  backdrop-filter: blur(7px);
}

.blog-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 26px;
}

.blog-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.blog-body small {
  color: var(--muted);
  font: 800 9px var(--font-geist-mono), monospace;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.blog-body h3 { margin: 13px 0 12px; font-size: 21px; line-height: 1.35; }
.blog-body p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.65; }
.blog-body a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  padding-top: 24px;
  color: var(--accent);
  font: 800 10px var(--font-geist-mono), monospace;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.blog-body a svg { width: 18px; fill: none; stroke: currentColor; stroke-width: 1.8; }

.text-link {
  margin-top: 32px;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

.dispatch-section {
  position: relative;
  padding: 120px 0;
  background: #05070a;
}

.dispatch-panel {
  position: relative;
  z-index: 1;
}

.dispatch-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 55px;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.13);
}

.dispatch-grid article {
  min-height: 250px;
  padding: 32px;
  background: #090d12;
}

.dispatch-tag {
  display: inline-flex;
  padding: 6px 9px;
  border: 1px solid currentColor;
  font-family: var(--font-geist-mono), monospace;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.play-tag { color: var(--play); }
.grow-tag { color: var(--grow); }
.build-tag { color: var(--build); }

.dispatch-grid article > p {
  margin: 50px 0 10px;
  color: var(--muted);
  font-size: 12px;
}

.dispatch-grid h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.4;
}

.contact-section {
  position: relative;
  padding: 64px 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 48%, rgba(21, 153, 255, 0.09), transparent 30%),
    #08111a;
}

.contact-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .12;
  background-image: radial-gradient(circle, rgba(255,255,255,.8) 0 1px, transparent 1.5px);
  background-size: 52px 52px;
  mask-image: linear-gradient(90deg, black, transparent 62%);
}

.community-shell {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 34px;
}

.community-copy {
  width: 100%;
  text-align: center;
}

.community-copy h2 {
  margin: 0;
  font-family: var(--font-geist-sans), Arial, sans-serif;
  font-size: clamp(18px, 1.45vw, 23px);
  font-weight: 650;
  letter-spacing: .08em;
  line-height: 1.32;
}

.community-copy .kicker {
  margin-bottom: 10px;
  font-size: 9px;
}

.contact-actions {
  display: flex;
  gap: 14px;
  margin-top: 40px;
}

.secondary-button {
  color: #fff;
  background: rgba(255, 255, 255, 0.03);
}

.secondary-button:hover,
.secondary-button:focus-visible {
  background: rgba(255, 255, 255, 0.1);
}

.community-channels {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px clamp(18px, 2.4vw, 40px);
}

.world-socials {
  --world: #fff;
  min-width: 0;
  text-align: center;
}

.world-socials.play { --world: var(--play); }
.world-socials.grow { --world: var(--grow); }
.world-socials.build { --world: var(--build); }

.world-socials > p {
  margin: 0 0 22px;
  padding-bottom: 10px;
  border-bottom: 1px solid color-mix(in srgb, var(--world) 60%, transparent);
  color: var(--world);
  font: 900 12px var(--font-geist-mono), monospace;
  letter-spacing: .2em;
}

.world-socials > div {
  display: grid;
  gap: 7px;
  justify-items: center;
}

.world-socials .community-channel {
  --channel: var(--world);
  width: min(100%, 230px);
  display: grid;
  grid-template-columns: 48px 104px;
  column-gap: 14px;
  justify-content: center;
  text-align: left;
}

.world-socials .community-channel > span:not(.channel-symbol) {
  width: 104px;
}

.community-shared {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 230px));
  justify-content: center;
  gap: clamp(28px, 5vw, 70px);
  padding-top: 19px;
  border-top: 1px solid rgba(255,255,255,.1);
}

.community-shared .community-channel {
  width: min(100%, 230px);
  min-width: 0;
  display: grid;
  grid-template-columns: 48px 104px;
  column-gap: 14px;
  justify-content: center;
  justify-self: center;
  text-align: left;
}

.community-channel {
  --channel: #fff;
  position: relative;
  min-height: 66px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 4px;
  overflow: hidden;
  border: 0;
  background: transparent;
  transition: transform 220ms ease;
}

.community-channel::before {
  display: none;
}

.community-channel:hover,
.community-channel:focus-visible {
  z-index: 2;
  transform: translateY(-3px);
  background: transparent;
}

.community-channel:hover .channel-symbol,
.community-channel:focus-visible .channel-symbol {
  border-color: var(--channel);
  transform: scale(1.04);
}

.community-channel.discord { --channel: #7289ff; }
.community-channel.twitch { --channel: #9146ff; }
.community-channel.newsletter { --channel: #dce4ec; }

.channel-symbol {
  position: static;
  flex: 0 0 auto;
  width: 48px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid color-mix(in srgb, var(--channel) 75%, white);
  border-radius: 50%;
  color: var(--channel);
  background: transparent;
  box-shadow: none;
  transition: border-color 180ms ease, transform 180ms ease;
}

.channel-symbol svg {
  width: 21px;
  height: 21px;
  fill: currentColor;
}

.youtube .channel-symbol svg,
.twitch .channel-symbol svg,
.discord .channel-symbol svg {
  width: 22px;
  height: 22px;
}

.instagram .channel-symbol svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.instagram .channel-symbol .instagram-dot {
  fill: currentColor;
  stroke: none;
}

.newsletter .channel-symbol svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.community-channel span:not(.channel-symbol) { display: flex; flex-direction: column; gap: 6px; }
.community-channel small {
  color: var(--channel);
  font: 800 9px var(--font-geist-mono), monospace;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.community-channel strong { font-size: 12px; letter-spacing: .16em; text-transform: uppercase; }

.site-footer {
  position: relative;
  padding: 70px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: #030507;
}

.footer-main {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: clamp(40px, 7vw, 100px);
  padding-bottom: 64px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 15px;
  color: #fff;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.footer-brand img {
  display: block;
  width: 54px;
  height: 54px;
  max-width: none;
  flex: 0 0 54px;
  object-fit: contain;
  transform: none;
}

.footer-intro > p {
  margin: 24px 0 0;
  color: #929ba4;
  font-size: 13px;
  line-height: 1.75;
}

.footer-nav { display: flex; flex-direction: column; align-items: flex-start; }
.footer-nav p { margin: 0 0 8px; color: #fff; font: 900 10px var(--font-geist-mono),monospace; letter-spacing: .18em; text-transform: uppercase; }
.footer-nav a { color: #929ba4; font-size: 13px; transition: color 180ms ease, transform 180ms ease; }
.footer-nav a:hover { color: #fff; transform: translateX(3px); }
.footer-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}
.footer-menu li { margin: 0; padding: 0; }
.footer-menu a { display: inline-block; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-top: 26px;
  border-top: 1px solid rgba(255,255,255,.1);
  color: #929ba4;
  font: 800 9px var(--font-geist-mono),monospace;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.footer-bottom p { margin: 0; }
.footer-bottom a { color: #929ba4; }
.footer-bottom span { margin-left: 8px; color: #fff; }

.footer-spectrum { position: absolute; inset: auto 0 0; height: 3px; display: grid; grid-template-columns: repeat(3,1fr); }
.footer-spectrum i:nth-child(1) { background: var(--play); box-shadow: 0 0 14px var(--play); }
.footer-spectrum i:nth-child(2) { background: var(--grow); box-shadow: 0 0 14px var(--grow); }
.footer-spectrum i:nth-child(3) { background: var(--build); box-shadow: 0 0 14px var(--build); }

.admin-bar .site-header {
  top: 32px;
}

.content-page {
  min-height: 70vh;
  padding: 160px 0 110px;
  background:
    radial-gradient(circle at 12% 12%, rgba(21, 153, 255, .09), transparent 28%),
    radial-gradient(circle at 88% 18%, rgba(255, 119, 15, .07), transparent 27%),
    #05070a;
}

.content-page h1 {
  max-width: 980px;
  margin: 0 0 44px;
  font-size: clamp(42px, 6vw, 82px);
  line-height: 1.02;
  letter-spacing: -.045em;
}

.standard-entry,
.single-entry {
  max-width: 980px;
  margin: 0 auto;
}

.standard-entry + .standard-entry {
  margin-top: 70px;
  padding-top: 70px;
  border-top: 1px solid rgba(255,255,255,.12);
}

.standard-entry h1 {
  margin-bottom: 22px;
  font-size: clamp(34px, 4vw, 58px);
}

.standard-entry > p,
.entry-content {
  color: #c0c8d0;
  font-size: clamp(16px, 1.25vw, 19px);
  line-height: 1.8;
}

.entry-content > * {
  max-width: 780px;
  margin-inline: auto;
}

.entry-content > .alignwide {
  max-width: 1180px;
}

.entry-content > .alignfull {
  max-width: none;
}

.entry-content a {
  color: var(--play);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/*
 * Gutenberg homepage.
 *
 * The legacy front-page markup remains untouched. These rules only normalize
 * WordPress block wrappers so the editor pattern renders like the original
 * homepage.
 */
.martlverse-block-home,
.martlverse-block-home > *,
.martlverse-block-home .wp-block-group,
.martlverse-block-home .wp-block-cover,
.martlverse-block-home .wp-block-image,
.martlverse-block-home .wp-block-heading,
.martlverse-block-home p {
  margin-block-start: 0;
  margin-block-end: 0;
}

.martlverse-block-home > .alignfull {
  width: 100%;
  margin-inline: 0;
}

.martlverse-block-home .hero.wp-block-cover {
  min-height: min(900px, 100svh) !important;
  padding: 0;
  background-image: none;
}

.martlverse-block-home .hero > .wp-block-cover__background {
  display: none;
}

.martlverse-block-home .hero > .wp-block-cover__image-background {
  z-index: -2;
}

.martlverse-block-home .hero > .wp-block-cover__inner-container {
  position: static;
  width: 100%;
}

.martlverse-block-home .hero-worlds-claim {
  width: min(1180px, calc(100% - 48px));
}

.martlverse-block-home .hero-worlds-claim > * {
  margin-block-start: 0;
}

.martlverse-block-home .three-worlds-image {
  margin: 0;
}

.martlverse-block-home .world-hotspot {
  margin: 0;
}

.martlverse-block-home .three-worlds-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.martlverse-block-home .content-heading > .wp-block-group {
  margin: 0;
}

.martlverse-block-home .wp-block-shortcode {
  margin: 0;
}

.entry-content img,
.entry-hero img {
  width: 100%;
  height: auto;
}

.entry-hero {
  margin: 0 0 56px;
}

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

.archive-card {
  --accent: #fff;
  border: 1px solid rgba(255,255,255,.12);
  background: #0b1016;
  transition: transform 220ms ease, border-color 220ms ease;
}

.archive-card.play { --accent: var(--play); }
.archive-card.grow { --accent: var(--grow); }
.archive-card.build { --accent: var(--build); }

.archive-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent);
}

.archive-card-image {
  display: block;
  aspect-ratio: 3 / 2;
  overflow: hidden;
}

.archive-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.archive-card > div {
  padding: 26px;
}

.archive-card small {
  color: var(--accent);
  font: 800 9px var(--font-geist-mono), monospace;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.archive-card h2 {
  margin: 13px 0;
  font-size: 22px;
  line-height: 1.35;
}

.archive-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.nav-links {
  display: flex;
  gap: 10px;
  margin-top: 50px;
}

.page-numbers {
  min-width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.14);
}

.page-numbers.current {
  color: #05070a;
  background: #fff;
}

:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 5px;
}

@media (max-width: 1300px) {
  .project-grid,
  .video-grid,
  .blog-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .project-grid > :nth-child(n + 4),
  .video-grid > :nth-child(n + 4),
  .blog-grid > :nth-child(n + 4) {
    display: none;
  }
}

@media (max-width: 900px) {
  .projects-section {
    padding-block: 64px 68px;
  }

  .videos-section,
  .blog-section {
    padding-block: 68px;
  }

  .desktop-nav {
    display: none;
  }

  .mobile-nav-toggle {
    width: 44px;
    height: 44px;
    display: grid;
    align-content: center;
    justify-items: end;
    gap: 8px;
    padding: 7px;
    border: 0;
    color: #fff;
    background: transparent;
    cursor: pointer;
  }

  .mobile-nav-toggle span {
    width: 30px;
    height: 2px;
    background: currentColor;
    transition: transform 180ms ease, width 180ms ease;
  }

  .mobile-nav-toggle span:last-child { width: 20px; }

  .mobile-nav-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(5px) rotate(45deg);
  }

  .mobile-nav-toggle[aria-expanded="true"] span:last-child {
    width: 30px;
    transform: translateY(-5px) rotate(-45deg);
  }

  .mobile-nav-panel {
    position: absolute;
    top: clamp(68px, var(--martlverse-header-height, 86px), 88px);
    right: 20px;
    min-width: 220px;
    display: block;
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(4, 7, 10, 0.97);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.55);
  }

  .mobile-nav-panel[hidden] {
    display: none;
  }

  .mobile-nav-panel .primary-menu {
    display: grid;
    gap: 24px;
  }

  .hero {
    min-height: 780px;
    background-position: 43% center;
  }

  .hero-shade {
    background: linear-gradient(90deg, rgba(2, 5, 9, 0.64), rgba(2, 5, 9, 0.16));
  }

  .hero-world-labels { display: none; }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .three-worlds { width: 100%; height: 330px; }

  .world-label { inset: 50% 10px auto; transform: translateY(-38%); }
  .world-label small { display: none; }
  .world-label i { display: none; }
  .world-icon { width: clamp(44px, 8vw, 62px); margin-bottom: 8px; }

  .dispatch-grid {
    grid-template-columns: 1fr;
  }

  .dispatch-grid article {
    min-height: 220px;
  }

  .project-grid,.video-grid,.blog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .project-grid > :nth-child(n + 3),
  .video-grid > :nth-child(n + 3),
  .blog-grid > :nth-child(n + 3) { display: none; }

  .community-shell { gap: 30px; }
  .community-copy { text-align: center; }
  .community-channels { width: 100%; }

  .footer-main { grid-template-columns: 2fr repeat(3, 1fr); gap: 36px; }
  .archive-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 620px) {
  .shell {
    width: min(100% - 32px, 1180px);
  }

  .category-shell { width: calc(100% - 32px); }
  .project-grid,.video-grid,.blog-grid { grid-template-columns: 1fr; }
  .project-grid > :nth-child(n + 2),
  .video-grid > :nth-child(n + 2),
  .blog-grid > :nth-child(n + 2) { display: none; }

  .worlds-shell { width: 100%; }
  .three-worlds { height: 270px; }
  .worlds-section { padding: 0; border-top-width: 10px; }
  .projects-section { padding-block: 48px 54px; }
  .videos-section,
  .blog-section { padding-block: 54px; }
  .section-heading { margin-bottom: 32px; }
  .section-heading h2 span { display: block; }
  .content-heading { align-items: start; flex-direction: column; margin-bottom: 34px; }
  .site-header {
    height: clamp(68px, var(--martlverse-header-height, 74px), 88px);
    padding-inline: 16px;
  }

  .admin-bar .site-header {
    top: 46px;
  }

  .brand-mark {
    width: min(var(--martlverse-header-logo-width, 58px), 72px);
    height: min(calc(var(--martlverse-header-height, 74px) - 18px), 62px);
  }

  .hero {
    min-height: 720px;
    align-items: flex-end;
    padding-bottom: 112px;
  }

  .hero h1 {
    font-size: clamp(54px, 17vw, 88px);
  }

  .hero-claim {
    line-height: 1.65;
  }

  .hero-worlds-claim { bottom: 24px; }
  .hero-worlds-claim .kicker { font-size: 9px; }
  .hero-worlds-claim h2 { font-size: clamp(19px, 6vw, 27px); }

  .primary-button,
  .secondary-button {
    width: 100%;
  }

  .dispatch-section,
  .contact-section {
    padding-block: 88px;
  }

  .worlds-section { padding: 0 0 48px; }

  .section-heading {
    gap: 24px;
    margin-bottom: 42px;
  }

  .section-heading h2,
  .dispatch-panel h2 {
    font-size: 46px;
  }

  .community-copy h2 {
    font-size: clamp(18px, 5.5vw, 23px);
  }

  .world-card-content {
    inset: auto 26px 28px;
  }

  .world-card h3 {
    font-size: 62px;
  }

  .world-label strong { font-size: clamp(22px, 9vw, 38px); }
  .world-icon { width: 42px; border-width: 1.5px; box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.18); }

  .contact-actions {
    flex-direction: column;
  }

  .community-shell { gap: 28px; }
  .community-channels { grid-template-columns: 1fr; gap: 26px; }
  .world-socials > div { grid-template-columns: 1fr 1fr; gap: 12px; }
  .world-socials .community-channel { width: 100%; }
  .community-shared {
    grid-column: auto;
    display: grid;
    grid-template-columns: minmax(0, 360px);
    justify-content: center;
    gap: 12px;
    padding-top: 24px;
  }
  .community-shared .community-channel { min-width: 0; }
  .community-channel { min-height: 58px; }

  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-intro { grid-column: 1 / -1; }
  .footer-main .footer-nav:last-child { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .content-page { padding: 130px 0 80px; }
  .archive-grid { grid-template-columns: 1fr; }
}

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

/*
 * Martl Play – editable Gutenberg page.
 *
 * Every visible content element in this layout is a native core block. The
 * selectors below provide the visual system without locking editor content.
 */
.martlverse-block-page,
.martlverse-block-page > *,
.martlverse-block-page .wp-block-group,
.martlverse-block-page .wp-block-cover,
.martlverse-block-page .wp-block-image,
.martlverse-block-page .wp-block-heading,
.martlverse-block-page .wp-block-columns,
.martlverse-block-page p {
  margin-block-start: 0;
  margin-block-end: 0;
}

.martlverse-block-page > .alignfull {
  width: 100%;
  margin-inline: 0;
}

.martlverse-block-page {
  --play-blue: #168cff;
  --play-blue-bright: #38a4ff;
  --play-border: rgba(68, 158, 255, 0.24);
  --play-panel: #08111d;
  --play-panel-soft: #0b1624;
  background:
    radial-gradient(circle at 12% 34%, rgba(20, 118, 255, 0.08), transparent 28%),
    #030810;
  color: #f6f8fb;
}

.play-shell,
.play-content-section > .wp-block-group,
.play-content-section > .wp-block-columns,
.play-topic-section > .wp-block-columns {
  width: min(1560px, calc(100% - 112px));
  max-width: none;
  margin-inline: auto;
}

.play-page-hero.wp-block-cover {
  min-height: min(700px, 88svh) !important;
  padding: 0;
  isolation: isolate;
  background: #030810;
}

.play-page-hero > .wp-block-cover__background {
  display: none;
}

.play-page-hero > .wp-block-cover__image-background {
  z-index: -2;
  object-position: center center;
}

.play-page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(1, 5, 12, 0.9) 0%, rgba(1, 5, 12, 0.66) 29%, rgba(1, 5, 12, 0.08) 60%, transparent 78%),
    linear-gradient(180deg, rgba(1, 5, 12, 0.14), transparent 65%, #030810 100%);
}

.play-page-hero > .wp-block-cover__inner-container {
  width: 100%;
}

.play-hero-copy {
  display: flex;
  min-height: min(700px, 88svh);
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-top: 76px;
}

.play-hero-copy > * {
  width: min(590px, 43vw);
}

.play-breadcrumb,
.play-section-kicker {
  color: var(--play-blue-bright);
  font-family: var(--font-geist-mono), monospace;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.play-breadcrumb {
  margin-bottom: 34px;
}

.play-hero-title {
  margin: 0;
  color: #fff;
  font-family: var(--font-geist-sans), Arial, sans-serif;
  font-size: clamp(76px, 9vw, 142px);
  font-weight: 280;
  letter-spacing: 0.12em;
  line-height: 0.9;
  text-shadow: 0 8px 42px rgba(0, 0, 0, 0.82);
}

.play-accent-line {
  width: 82px;
  height: 4px;
  margin: 30px 0 28px;
  border: 0;
  background: var(--play-blue);
}

.play-hero-claim {
  color: #fff;
  font-family: var(--font-geist-sans), Arial, sans-serif;
  font-size: clamp(18px, 1.7vw, 28px);
  font-weight: 520;
  letter-spacing: 0.28em;
  line-height: 1.45;
}

.play-hero-description {
  max-width: 530px;
  margin-top: 20px;
  color: #b9c4d0;
  font-size: 16px;
  line-height: 1.72;
}

.play-hero-actions {
  margin-top: 30px;
}

.wp-block-button.play-outline-button .wp-block-button__link,
.wp-block-button.play-small-button .wp-block-button__link {
  border: 1px solid rgba(35, 148, 255, 0.95);
  border-radius: 2px;
  color: #fff;
  background: rgba(4, 15, 28, 0.76);
  box-shadow: inset 0 0 22px rgba(23, 137, 255, 0.05);
  font-family: var(--font-geist-mono), monospace;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-decoration: none;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.wp-block-button.play-outline-button .wp-block-button__link {
  padding: 16px 22px;
}

.wp-block-button.play-small-button .wp-block-button__link {
  padding: 12px 17px;
  font-size: 10px;
}

.wp-block-button.play-outline-button .wp-block-button__link:hover,
.wp-block-button.play-outline-button .wp-block-button__link:focus-visible,
.wp-block-button.play-small-button .wp-block-button__link:hover,
.wp-block-button.play-small-button .wp-block-button__link:focus-visible {
  border-color: #78c2ff;
  background: rgba(15, 118, 224, 0.28);
  transform: translateY(-2px);
}

.play-topic-section {
  padding: 0;
  border-top: 1px solid var(--play-border);
  border-bottom: 1px solid var(--play-border);
  background: rgba(4, 11, 20, 0.94);
}

.play-topic-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
}

.play-topic-grid > .wp-block-column {
  min-width: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.055);
}

.play-topic-grid > .wp-block-column:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.055);
}

.play-topic-card {
  position: relative;
  display: grid;
  min-height: 110px;
  grid-template-columns: 58px 1fr;
  grid-template-rows: auto auto;
  align-content: center;
  column-gap: 18px;
  padding: 22px 25px;
  transition: background 180ms ease;
}

.play-topic-card:hover {
  background: rgba(20, 128, 255, 0.07);
}

.play-topic-card.is-active::after {
  content: "";
  position: absolute;
  inset: auto 0 -1px;
  height: 3px;
  background: var(--play-blue);
  box-shadow: 0 0 18px rgba(22, 140, 255, 0.75);
}

.play-topic-icon {
  width: 50px;
  height: 50px;
  grid-row: 1 / 3;
  display: grid;
  place-items: center;
  align-self: center;
  border: 1px solid rgba(45, 158, 255, 0.56);
  border-radius: 9px;
  color: var(--play-blue-bright);
  background: rgba(11, 65, 129, 0.18);
  font-family: var(--font-geist-mono), monospace;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.play-topic-card h3 {
  align-self: end;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.2;
}

.play-topic-card > p:not(.play-topic-icon) {
  align-self: start;
  margin-top: 7px;
  color: #8190a0;
  font-size: 11px;
  line-height: 1.25;
}

.play-content-section {
  position: relative;
  padding: 74px 0 82px;
  overflow: hidden;
  border-bottom: 1px solid rgba(65, 148, 235, 0.13);
}

.play-content-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.15;
  background-image:
    linear-gradient(rgba(66, 135, 211, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(66, 135, 211, 0.12) 1px, transparent 1px);
  background-size: 76px 76px;
  mask-image: linear-gradient(90deg, black, transparent 30%, transparent 70%, black);
}

.play-project-section {
  background:
    radial-gradient(circle at 0 40%, rgba(17, 111, 220, 0.12), transparent 32%),
    #050b14;
}

.play-video-section {
  background:
    radial-gradient(circle at 95% 30%, rgba(20, 118, 255, 0.08), transparent 28%),
    #030810;
}

.play-guide-section {
  background:
    radial-gradient(circle at 20% 0, rgba(20, 118, 255, 0.09), transparent 34%),
    #050b14;
}

.play-section-heading {
  position: relative;
  z-index: 1;
  align-items: flex-end;
  margin-bottom: 34px;
}

.play-section-heading h2 {
  margin-top: 8px;
  color: #f7f9fc;
  font-size: clamp(28px, 3vw, 46px);
  font-weight: 420;
  letter-spacing: 0.16em;
  line-height: 1.1;
}

.play-featured-project {
  position: relative;
  z-index: 1;
  min-height: 390px;
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--play-border);
  border-radius: 5px;
  background: rgba(5, 13, 23, 0.88);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.28);
}

.play-featured-project > .wp-block-column {
  margin: 0;
}

.play-featured-image,
.play-featured-image img {
  width: 100%;
  height: 100%;
  min-height: 390px;
}

.play-featured-image img {
  display: block;
  object-fit: cover;
  object-position: 78% center;
}

.play-featured-copy {
  display: flex;
  height: 100%;
  flex-direction: column;
  justify-content: center;
  padding: clamp(34px, 4vw, 66px);
}

.play-card-badge {
  width: fit-content;
  margin-bottom: 18px;
  padding: 5px 8px;
  border-radius: 2px;
  color: #dff1ff;
  background: #116fd9;
  font-family: var(--font-geist-mono), monospace;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.09em;
}

.play-featured-copy h3 {
  color: #fff;
  font-size: clamp(23px, 2.4vw, 38px);
  font-weight: 420;
  letter-spacing: 0.12em;
  line-height: 1.25;
}

.play-featured-copy > p:not(.play-card-badge) {
  max-width: 650px;
  margin-top: 18px;
  color: #aeb9c6;
  font-size: 15px;
  line-height: 1.7;
}

.play-project-meta {
  margin-top: 34px;
  gap: 28px;
}

.play-project-meta p {
  color: #c3ccd6;
  font-size: 12px;
}

.play-project-meta .play-meta-label {
  margin-bottom: 5px;
  color: #6e7e90;
  font-family: var(--font-geist-mono), monospace;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.play-progress-line {
  width: 72%;
  height: 4px;
  margin-top: 34px;
  margin-left: 0;
  border: 0;
  background: linear-gradient(90deg, var(--play-blue) 64%, rgba(108, 126, 145, 0.2) 64%);
  box-shadow: 0 0 18px rgba(22, 140, 255, 0.22);
}

.play-teaser-grid {
  position: relative;
  z-index: 1;
  gap: 18px;
  margin-top: 18px;
}

.play-teaser-card,
.play-video-card,
.play-guide-card {
  overflow: hidden;
  border: 1px solid rgba(72, 146, 224, 0.2);
  border-radius: 5px;
  background: rgba(6, 14, 24, 0.84);
  transition: border-color 180ms ease, transform 180ms ease, background 180ms ease;
}

.play-teaser-card:hover,
.play-video-card:hover,
.play-guide-card:hover {
  border-color: rgba(42, 153, 255, 0.58);
  background: rgba(9, 24, 40, 0.9);
  transform: translateY(-3px);
}

.play-teaser-image,
.play-teaser-image img {
  width: 100%;
  height: 190px;
}

.play-teaser-image img {
  display: block;
  object-fit: cover;
}

.crop-left img {
  object-position: 20% center;
}

.crop-center img {
  object-position: 55% center;
}

.crop-right img {
  object-position: 78% center;
}

.crop-far-right img {
  object-position: 94% center;
}

.play-teaser-card h3 {
  padding: 22px 22px 0;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.play-teaser-card > p {
  padding: 10px 22px 20px;
  color: #8e9aa7;
  font-size: 12px;
}

.play-teaser-card hr {
  width: calc(100% - 44px);
  height: 3px;
  margin: 0 22px 22px;
  border: 0;
  background: linear-gradient(90deg, var(--play-blue) 34%, rgba(108, 126, 145, 0.18) 34%);
}

.play-video-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.play-video-image {
  min-height: 200px !important;
  padding: 0;
}

.play-video-image .wp-block-cover__background {
  background-color: rgba(0, 5, 12, 0.2) !important;
}

.play-video-image .wp-block-cover__inner-container {
  display: grid;
  place-items: center;
}

.play-button-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  padding-left: 4px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  color: #fff;
  background: rgba(2, 8, 16, 0.72);
  font-size: 17px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.42);
}

.play-video-card h3 {
  padding: 20px 20px 0;
  color: #fff;
  font-size: 14px;
  font-weight: 650;
  line-height: 1.45;
}

.play-video-card > p {
  padding: 9px 20px 20px;
  color: #7f8b98;
  font-size: 11px;
}

.play-guide-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.play-guide-card {
  position: relative;
  min-height: 178px;
  padding: 26px 22px 22px 86px;
}

.play-guide-icon {
  position: absolute;
  top: 28px;
  left: 22px;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(44, 152, 255, 0.42);
  border-radius: 10px;
  color: var(--play-blue-bright);
  background: rgba(15, 78, 151, 0.18);
  font-family: var(--font-geist-mono), monospace;
  font-size: 10px;
  font-weight: 900;
}

.play-guide-card h3 {
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.4;
}

.play-guide-card > p:not(.play-guide-icon) {
  margin-top: 13px;
  color: #8c99a6;
  font-size: 12px;
  line-height: 1.55;
}

@media (max-width: 1180px) {
  .play-shell,
  .play-content-section > .wp-block-group,
  .play-content-section > .wp-block-columns,
  .play-topic-section > .wp-block-columns {
    width: min(100% - 64px, 1560px);
  }

  .play-topic-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .play-topic-grid > .wp-block-column {
    border-bottom: 1px solid rgba(255, 255, 255, 0.055);
  }

  .play-topic-grid > .wp-block-column:nth-child(4),
  .play-topic-grid > .wp-block-column:nth-child(5) {
    grid-column: span 1;
  }

  .play-guide-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .play-guide-grid > .wp-block-column:nth-child(4),
  .play-guide-grid > .wp-block-column:nth-child(5) {
    min-height: 160px;
  }
}

@media (max-width: 900px) {
  .play-page-hero.wp-block-cover {
    min-height: 670px !important;
  }

  .play-page-hero > .wp-block-cover__image-background {
    object-position: 64% center;
  }

  .play-page-hero::before {
    background:
      linear-gradient(90deg, rgba(1, 5, 12, 0.92) 0%, rgba(1, 5, 12, 0.69) 44%, rgba(1, 5, 12, 0.16) 78%),
      linear-gradient(180deg, rgba(1, 5, 12, 0.12), transparent 55%, #030810 100%);
  }

  .play-hero-copy {
    min-height: 670px;
  }

  .play-hero-copy > * {
    width: min(520px, 64vw);
  }

  .play-hero-title {
    font-size: clamp(66px, 13vw, 108px);
  }

  .play-topic-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .play-topic-card {
    min-height: 102px;
    grid-template-columns: 48px 1fr;
    column-gap: 14px;
    padding: 20px 18px;
  }

  .play-topic-icon {
    width: 44px;
    height: 44px;
  }

  .play-content-section {
    padding: 62px 0 68px;
  }

  .play-featured-project {
    display: grid;
    grid-template-columns: 1fr;
  }

  .play-featured-project > .wp-block-column {
    width: 100%;
  }

  .play-featured-image,
  .play-featured-image img {
    min-height: 330px;
    height: 330px;
  }

  .play-featured-copy {
    padding: 40px;
  }

  .play-teaser-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .play-teaser-grid > .wp-block-column:last-child {
    grid-column: 1 / -1;
  }

  .play-video-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .play-guide-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .play-guide-grid > .wp-block-column:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  .play-shell,
  .play-content-section > .wp-block-group,
  .play-content-section > .wp-block-columns,
  .play-topic-section > .wp-block-columns {
    width: calc(100% - 32px);
  }

  .play-page-hero.wp-block-cover {
    min-height: 690px !important;
    align-items: flex-end;
  }

  .play-page-hero > .wp-block-cover__image-background {
    object-position: 71% center;
  }

  .play-page-hero::before {
    background:
      linear-gradient(90deg, rgba(1, 5, 12, 0.86) 0%, rgba(1, 5, 12, 0.58) 58%, rgba(1, 5, 12, 0.22) 100%),
      linear-gradient(180deg, rgba(1, 5, 12, 0.12) 5%, rgba(1, 5, 12, 0.05) 34%, rgba(1, 5, 12, 0.88) 80%, #030810 100%);
  }

  .play-hero-copy {
    min-height: 690px;
    justify-content: flex-end;
    padding: 116px 0 52px;
  }

  .play-hero-copy > * {
    width: 100%;
  }

  .play-breadcrumb {
    margin-bottom: 20px;
    font-size: 9px;
  }

  .play-hero-title {
    font-size: clamp(62px, 21vw, 88px);
    letter-spacing: 0.08em;
  }

  .play-accent-line {
    width: 62px;
    margin: 21px 0;
  }

  .play-hero-claim {
    font-size: 16px;
    letter-spacing: 0.18em;
    line-height: 1.5;
  }

  .play-hero-description {
    margin-top: 14px;
    font-size: 14px;
    line-height: 1.55;
  }

  .play-hero-actions {
    margin-top: 22px;
  }

  .play-hero-actions .wp-block-button,
  .play-hero-actions .wp-block-button__link {
    width: 100%;
  }

  .play-topic-grid {
    grid-template-columns: 1fr;
  }

  .play-topic-grid > .wp-block-column {
    border-right: 1px solid rgba(255, 255, 255, 0.055);
  }

  .play-topic-card {
    min-height: 86px;
    padding: 16px 18px;
  }

  .play-topic-card.is-active::after {
    inset: 0 auto 0 -1px;
    width: 3px;
    height: auto;
  }

  .play-content-section {
    padding: 50px 0 56px;
  }

  .play-section-heading {
    display: grid;
    gap: 22px;
    align-items: start;
    margin-bottom: 28px;
  }

  .play-section-heading h2 {
    font-size: 29px;
    letter-spacing: 0.12em;
  }

  .play-featured-image,
  .play-featured-image img {
    min-height: 245px;
    height: 245px;
  }

  .play-featured-copy {
    padding: 28px 22px;
  }

  .play-featured-copy h3 {
    font-size: 23px;
    letter-spacing: 0.08em;
  }

  .play-project-meta {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: 26px;
  }

  .play-project-meta > .wp-block-column {
    min-width: 0;
  }

  .play-project-meta p {
    overflow-wrap: anywhere;
    font-size: 10px;
  }

  .play-teaser-grid,
  .play-video-grid,
  .play-guide-grid {
    grid-template-columns: 1fr;
  }

  .play-teaser-grid > .wp-block-column:last-child,
  .play-guide-grid > .wp-block-column:last-child {
    grid-column: auto;
  }

  .play-teaser-image,
  .play-teaser-image img {
    height: 210px;
  }

  .play-video-image {
    min-height: 220px !important;
  }

  .play-guide-card {
    min-height: 142px;
  }
}

/*
 * Martl Play – visual alignment with the Martlverse homepage.
 *
 * The content order and native Gutenberg structure stay unchanged. These
 * overrides reuse the homepage's quieter surfaces, typography, borders and
 * spacing while keeping blue as the Play accent.
 */
.martlverse-block-page {
  --play-border: rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(circle at 7% 42%, rgba(21, 153, 255, 0.055), transparent 25%),
    #05070a;
}

.play-shell,
.play-content-section > .wp-block-group,
.play-content-section > .wp-block-columns,
.play-topic-section > .wp-block-columns {
  width: min(1560px, calc(100% - 64px));
}

.play-page-hero.wp-block-cover {
  min-height: min(820px, 100svh) !important;
  background: #03070b;
}

.play-page-hero::before {
  background:
    linear-gradient(90deg, rgba(1, 4, 8, 0.9) 0%, rgba(1, 4, 8, 0.68) 30%, rgba(1, 4, 8, 0.1) 61%, transparent 78%),
    linear-gradient(180deg, rgba(1, 3, 6, 0.05), transparent 66%, #05070a 100%);
}

.play-hero-copy {
  min-height: min(820px, 100svh);
  padding-top: 74px;
}

.play-hero-copy > * {
  width: min(620px, 46vw);
}

.play-breadcrumb,
.play-section-kicker {
  color: var(--play);
  font-size: 10px;
  letter-spacing: 0.18em;
}

.play-breadcrumb {
  margin-bottom: 18px;
  opacity: 0.92;
}

.play-hero-title {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(76px, 10.5vw, 150px);
  font-weight: 900;
  letter-spacing: 0.025em;
  line-height: 0.92;
}

.play-accent-line {
  width: 70px;
  height: 3px;
  margin: 24px 0 24px;
}

.play-hero-claim {
  font-family: var(--font-geist-mono), monospace;
  font-size: clamp(16px, 1.4vw, 21px);
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.55;
}

.play-hero-description {
  max-width: 570px;
  margin-top: 16px;
  color: #c4cbd2;
  font-size: clamp(15px, 1.15vw, 17px);
  line-height: 1.7;
}

.play-hero-actions {
  margin-top: 28px;
}

.wp-block-button.play-outline-button .wp-block-button__link {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  padding: 0 27px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 0;
  color: #080b0f;
  background: #f6f7f8;
  box-shadow: none;
  font-size: 11px;
  letter-spacing: 0.12em;
}

.wp-block-button.play-outline-button .wp-block-button__link:hover,
.wp-block-button.play-outline-button .wp-block-button__link:focus-visible {
  border-color: #fff;
  color: #05070a;
  background: #fff;
}

.wp-block-button.play-small-button .wp-block-button__link {
  padding: 0 0 6px;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 0;
  color: #f4f6f8;
  background: transparent;
  box-shadow: none;
  font-size: 10px;
  letter-spacing: 0.12em;
}

.wp-block-button.play-small-button .wp-block-button__link:hover,
.wp-block-button.play-small-button .wp-block-button__link:focus-visible {
  border-color: var(--play);
  color: var(--play);
  background: transparent;
}

.play-topic-section {
  border-color: rgba(255, 255, 255, 0.12);
  background: #070b10;
}

.play-topic-grid > .wp-block-column,
.play-topic-grid > .wp-block-column:last-child {
  border-color: rgba(255, 255, 255, 0.09);
}

.play-topic-card {
  min-height: 108px;
  grid-template-columns: 54px 1fr;
  column-gap: 17px;
  padding: 21px 24px;
}

.play-topic-card:hover {
  background: rgba(255, 255, 255, 0.025);
}

.play-topic-card.is-active::after {
  height: 2px;
  box-shadow: 0 0 12px rgba(21, 153, 255, 0.55);
}

.play-topic-icon {
  width: 48px;
  height: 48px;
  border: 1px solid color-mix(in srgb, var(--play) 78%, white);
  border-radius: 50%;
  color: var(--play);
  background: rgba(2, 6, 10, 0.64);
  box-shadow: 0 0 18px rgba(21, 153, 255, 0.16);
}

.play-topic-card h3 {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.play-topic-card > p:not(.play-topic-icon) {
  color: var(--muted);
  font-size: 10px;
}

.play-content-section {
  padding: 104px 0;
  border-bottom: 0;
}

.play-content-section::before {
  display: none;
}

.play-project-section,
.play-video-section {
  background: #05070a;
}

.play-project-section {
  padding-top: 76px;
}

.play-guide-section {
  background:
    radial-gradient(circle at 8% 45%, rgba(21, 153, 255, 0.075), transparent 25%),
    #090d12;
}

.play-section-heading {
  margin-bottom: 48px;
}

.play-section-heading h2 {
  margin-top: 7px;
  color: #f4f6f8;
  font-family: var(--font-geist-sans), Arial, sans-serif;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 720;
  letter-spacing: -0.025em;
  line-height: 1;
}

.play-featured-project,
.play-teaser-card,
.play-video-card,
.play-guide-card {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0;
  background: linear-gradient(180deg, #0d1218, #090d12);
  box-shadow: none;
}

.play-featured-project {
  min-height: 390px;
}

.play-featured-project:hover,
.play-featured-project:focus-within,
.play-teaser-card:hover,
.play-video-card:hover,
.play-guide-card:hover {
  border-color: color-mix(in srgb, var(--play) 65%, transparent);
  background: linear-gradient(180deg, #0d1218, #090d12);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
}

.play-card-badge {
  padding: 6px 8px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 0;
  color: var(--play);
  background: rgba(3, 6, 9, 0.56);
}

.play-featured-copy h3 {
  font-size: clamp(24px, 2.4vw, 36px);
  font-weight: 720;
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.play-featured-copy > p:not(.play-card-badge) {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.play-project-meta .play-meta-label {
  color: var(--play);
}

.play-teaser-grid,
.play-video-grid,
.play-guide-grid {
  gap: 22px;
}

.play-teaser-card h3,
.play-video-card h3,
.play-guide-card h3 {
  letter-spacing: 0;
}

.play-teaser-card h3,
.play-video-card h3 {
  font-size: 14px;
  line-height: 1.4;
}

.play-teaser-card > p,
.play-video-card > p,
.play-guide-card > p:not(.play-guide-icon) {
  color: var(--muted);
}

.play-button-icon {
  width: 58px;
  height: 58px;
  border-color: var(--play);
  background: rgba(2, 5, 8, 0.72);
  box-shadow: 0 0 24px rgba(21, 153, 255, 0.2);
}

.play-guide-card {
  min-height: 178px;
}

.play-guide-icon {
  border-color: color-mix(in srgb, var(--play) 70%, white);
  border-radius: 50%;
  color: var(--play);
  background: rgba(2, 6, 10, 0.64);
}

@media (max-width: 1180px) {
  .play-shell,
  .play-content-section > .wp-block-group,
  .play-content-section > .wp-block-columns,
  .play-topic-section > .wp-block-columns {
    width: calc(100% - 64px);
  }
}

@media (max-width: 900px) {
  .play-page-hero.wp-block-cover,
  .play-hero-copy {
    min-height: 720px !important;
  }

  .play-page-hero > .wp-block-cover__image-background {
    object-position: 64% center;
  }

  .play-hero-title {
    font-size: clamp(66px, 15vw, 108px);
  }

  .play-content-section {
    padding-block: 68px;
  }

  .play-project-section {
    padding-top: 64px;
  }

  .play-featured-project {
    min-height: 0;
  }
}

@media (max-width: 620px) {
  .play-shell,
  .play-content-section > .wp-block-group,
  .play-content-section > .wp-block-columns,
  .play-topic-section > .wp-block-columns {
    width: calc(100% - 32px);
  }

  .play-page-hero.wp-block-cover,
  .play-hero-copy {
    min-height: 720px !important;
  }

  .play-hero-copy {
    padding: 112px 0 54px;
  }

  .play-hero-title {
    font-size: clamp(68px, 24vw, 96px);
    letter-spacing: 0.025em;
  }

  .play-accent-line {
    margin-block: 20px;
  }

  .play-hero-claim {
    font-size: 15px;
    letter-spacing: 0.12em;
  }

  .play-topic-card {
    min-height: 84px;
  }

  .play-content-section {
    padding-block: 54px;
  }

  .play-project-section {
    padding-top: 48px;
  }

  .play-section-heading {
    margin-bottom: 34px;
  }

  .play-section-heading h2 {
    font-size: 30px;
    letter-spacing: -0.025em;
  }
}
