:root {
  --font-display: 'Baloo 2', 'Nunito', system-ui, sans-serif;
  --font-body: 'Nunito', system-ui, sans-serif;
  --white: #ffffff;
  --night: #06051d;
  --midnight: #0b0d32;
  --panel: rgba(14, 18, 58, 0.82);
  --panel-solid: #111548;
  --green: #05785f;
  --green-bright: #00c991;
  --mint: #65ffd0;
  --gold: #ffce2e;
  --orange: #ff7624;
  --red: #ef3340;
  --pink: #ff61be;
  --blue: #27c0ff;
  --purple: #8b54ff;
  --shadow: 0 1.25rem 4rem rgba(0, 0, 0, 0.4);
  --shadow-soft: 0 0.9rem 2.5rem rgba(0, 0, 0, 0.28);
  --radius: 1.65rem;
  --radius-lg: 2.4rem;
  --cut: polygon(
    0 0,
    calc(100% - 1.25rem) 0,
    100% 1.25rem,
    100% 100%,
    1.25rem 100%,
    0 calc(100% - 1.25rem)
  );
  --cut-small: polygon(
    0 0,
    calc(100% - 0.85rem) 0,
    100% 0.85rem,
    100% 100%,
    0.85rem 100%,
    0 calc(100% - 0.85rem)
  );
  --container: min(72rem, calc(100% - 2rem));
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-color: var(--gold) var(--midnight);
  scrollbar-width: thin;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--white);
  background:
    radial-gradient(
      circle at top left,
      rgba(0, 201, 145, 0.22),
      transparent 28rem
    ),
    radial-gradient(
      circle at 90% 20%,
      rgba(255, 97, 190, 0.18),
      transparent 28rem
    ),
    linear-gradient(135deg, #07102e 0%, #11113d 44%, #050416 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(
        circle,
        rgba(255, 255, 255, 0.16) 0 0.08rem,
        transparent 0.09rem
      )
      0 0 / 3.6rem 3.6rem,
    linear-gradient(
      115deg,
      rgba(255, 206, 46, 0.08),
      transparent 35%,
      rgba(39, 192, 255, 0.08)
    );
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent 82%);
  z-index: -2;
}

::-webkit-scrollbar {
  width: 0.85rem;
}

::-webkit-scrollbar-track {
  background: var(--midnight);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(var(--gold), var(--orange), var(--pink));
  border: 0.18rem solid var(--midnight);
  border-radius: 999rem;
}

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

a {
  color: var(--white);
  text-decoration-thickness: 0.12em;
  text-underline-offset: 0.22em;
}

a:hover {
  text-decoration-color: var(--gold);
}

button,
input,
textarea {
  font: inherit;
}

button {
  color: var(--white);
}

:focus-visible {
  outline: 0.22rem solid var(--gold);
  outline-offset: 0.22rem;
}

.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 200;
  transform: translateY(-150%);
  background: var(--gold);
  color: var(--night);
  padding: 0.9rem 1.2rem;
  border-radius: 999rem;
  font-weight: 900;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 5rem 0;
}

.section-with-decor {
  overflow: hidden;
}

.decor-image {
  position: absolute;
  pointer-events: none;
  user-select: none;
  filter: saturate(1.05);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 0.75rem;
  font-size: 0.86rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 900;
  color: var(--white);
}

.eyebrow::before {
  content: '';
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  box-shadow: 0 0 1rem rgba(255, 206, 46, 0.75);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--font-display);
  line-height: 0.98;
  letter-spacing: -0.02em;
  color: var(--white);
}

h1 {
  font-size: clamp(2.45rem, 12vw, 4.25rem);
  text-shadow: 0 0.25rem 0 rgba(0, 0, 0, 0.18);
}

h2 {
  font-size: clamp(2rem, 8vw, 3.3rem);
  text-shadow: 0 0.18rem 0 rgba(0, 0, 0, 0.18);
}

h3 {
  font-size: clamp(1.35rem, 5vw, 1.8rem);
}

p,
li,
small,
summary,
address {
  color: var(--white);
  font-size: 1.02rem;
  line-height: 1.65;
}

small {
  display: block;
  font-size: 0.92rem;
}

strong {
  color: var(--white);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 0.75rem 0;
  transition:
    padding 220ms ease,
    backdrop-filter 220ms ease,
    background 220ms ease;
}

.site-header.is-scrolled {
  padding: 0.45rem 0;
  background: rgba(6, 5, 29, 0.82);
  backdrop-filter: blur(1.2rem);
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.22);
}

.header-shell {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  gap: 1rem;
  padding: 0.7rem;
  border: 0.12rem solid rgba(255, 255, 255, 0.16);
  background: rgba(9, 13, 47, 0.72);
  clip-path: var(--cut-small);
  box-shadow: var(--shadow-soft);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 10.5rem;
  min-height: 3.2rem;
  text-decoration: none;
}

.brand img {
  width: 10.5rem;
}

.nav-toggle {
  justify-self: end;
  display: inline-grid;
  gap: 0.28rem;
  width: 3.4rem;
  height: 3.4rem;
  place-content: center;
  border: 0.12rem solid rgba(255, 255, 255, 0.24);
  background: linear-gradient(
    135deg,
    rgba(255, 118, 36, 0.92),
    rgba(255, 97, 190, 0.92)
  );
  border-radius: 1rem;
  box-shadow: 0 0.7rem 1.3rem rgba(239, 51, 64, 0.28);
  cursor: pointer;
}

.nav-toggle span {
  width: 1.45rem;
  height: 0.18rem;
  background: var(--white);
  border-radius: 999rem;
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.nav-toggle[aria-expanded='true'] span:nth-child(1) {
  transform: translateY(0.46rem) rotate(45deg);
}

.nav-toggle[aria-expanded='true'] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded='true'] span:nth-child(3) {
  transform: translateY(-0.46rem) rotate(-45deg);
}

.primary-nav {
  grid-column: 1 / -1;
  display: grid;
  gap: 1rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 260ms ease;
}

.primary-nav.is-open {
  max-height: 32rem;
}

.primary-nav ul {
  list-style: none;
  margin: 0;
  padding: 0.6rem 0 0;
  display: grid;
  gap: 0.45rem;
}

.primary-nav a,
.nav-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.2rem;
  padding: 0.7rem 1rem;
  font-weight: 900;
  text-decoration: none;
  border-radius: 999rem;
}

.primary-nav li a::after {
  content: '';
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 0.42rem;
  height: 0.22rem;
  background: linear-gradient(90deg, var(--gold), var(--pink), var(--blue));
  border-radius: 999rem;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.primary-nav li a:hover::after,
.primary-nav li a[aria-current='page']::after {
  transform: scaleX(1);
}

.nav-cta {
  background: linear-gradient(135deg, var(--green-bright), var(--green));
  box-shadow: 0 0.75rem 1.4rem rgba(0, 201, 145, 0.3);
  clip-path: var(--cut-small);
}

.play-triangle {
  width: 0;
  height: 0;
  border-top: 0.45rem solid transparent;
  border-bottom: 0.45rem solid transparent;
  border-left: 0.72rem solid var(--white);
  margin-right: 0.55rem;
}

.notched-panel,
.notched-card,
.stack-card,
.map-card,
.review-cards article,
.contact-mini,
.status-card {
  position: relative;
  border: 0.12rem solid rgba(255, 255, 255, 0.16);
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.12),
    rgba(255, 255, 255, 0.045)
  );
  backdrop-filter: blur(1rem);
  box-shadow: var(--shadow);
  clip-path: var(--cut);
}

.notched-panel::before,
.notched-card::before,
.map-card::before,
.review-cards article::before,
.status-card::before {
  content: '';
  position: absolute;
  inset: 0.55rem;
  border: 0.1rem solid rgba(255, 255, 255, 0.08);
  clip-path: var(--cut-small);
  pointer-events: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.45rem;
  padding: 0.95rem 1.35rem;
  border: 0;
  border-radius: 999rem;
  color: var(--white);
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 170ms ease,
    filter 170ms ease,
    box-shadow 170ms ease;
  text-align: center;
  text-shadow: 0 0.12rem 0 rgba(0, 0, 0, 0.32);
}

.button:hover {
  transform: translateY(-0.15rem) scale(1.01);
  filter: saturate(1.08);
}

.button-primary {
  background: linear-gradient(
    135deg,
    var(--gold),
    var(--orange) 50%,
    var(--red)
  );
  box-shadow:
    0 0.9rem 1.8rem rgba(255, 118, 36, 0.34),
    inset 0 -0.22rem 0 rgba(0, 0, 0, 0.2);
}

.button-secondary {
  background: linear-gradient(135deg, var(--blue), var(--purple));
  box-shadow:
    0 0.9rem 1.8rem rgba(39, 192, 255, 0.26),
    inset 0 -0.22rem 0 rgba(0, 0, 0, 0.2);
}

.button-ghost {
  background: rgba(255, 255, 255, 0.11);
  border: 0.12rem solid rgba(255, 255, 255, 0.25);
}

.button-xl {
  width: 100%;
  min-height: 3.85rem;
  font-size: 1.08rem;
}

.hero {
  padding: 4rem 0 5.5rem;
  min-height: 44rem;
}

.hero-decor {
  opacity: 0.16;
  border-radius: var(--radius-lg);
  transform: rotate(-8deg);
}

.hero-decor-left {
  left: -7rem;
  top: 4rem;
  width: 18rem;
}

.hero-decor-right {
  right: 2rem;
  bottom: 3rem;
  width: 17rem;
  opacity: 0.2;
  transform: rotate(12deg);
}

.hero-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.hero-copy {
  padding: 1.35rem;
}

.hero-lead {
  margin: 1.1rem 0 1.4rem;
  font-size: 1.08rem;
}

.hero-actions {
  display: grid;
  gap: 0.85rem;
  margin-bottom: 1.2rem;
}

.hero-facts {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.hero-facts li {
  padding: 0.95rem;
  border: 0.1rem solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.08);
  border-radius: 1.15rem;
}

.hero-facts strong,
.hero-facts span {
  display: block;
}

.hero-facts strong {
  font-size: 1rem;
}

.hero-facts span {
  font-size: 0.88rem;
}

.hero-stage {
  position: relative;
  min-height: 34rem;
}

.phone-card {
  position: absolute;
  border-radius: 2rem;
  padding: 0.42rem;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.45),
    rgba(255, 255, 255, 0.08)
  );
  box-shadow: var(--shadow);
  transform-origin: center;
  animation: floatCard 5.5s ease-in-out infinite;
}

.phone-card img {
  border-radius: 1.65rem;
  aspect-ratio: 9 / 16;
  object-fit: cover;
}

.phone-card-main {
  left: 13%;
  top: 0;
  width: 56%;
  z-index: 3;
}

.phone-card-top {
  right: 0;
  top: 2rem;
  width: 39%;
  z-index: 2;
  transform: rotate(7deg);
  animation-delay: -1.5s;
}

.phone-card-bottom {
  left: 0;
  bottom: 0;
  width: 41%;
  z-index: 1;
  transform: rotate(-9deg);
  animation-delay: -3s;
}

@keyframes floatCard {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -0.85rem;
  }
}

.intro-strip {
  padding-top: 0;
}

.intro-grid {
  display: grid;
  gap: 1.4rem;
  align-items: center;
}

.intro-media {
  padding: 0.6rem;
  transform: rotate(-2deg);
}

.intro-media img,
.feature-card img,
.cast-card img,
.map-card img {
  border-radius: 1.4rem;
  object-fit: cover;
}

.intro-copy {
  padding: 1rem 0;
}

.mini-scoreboard {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.2rem;
}

.mini-scoreboard span {
  display: inline-flex;
  align-items: center;
  min-height: 3rem;
  padding: 0.8rem 1rem;
  background: linear-gradient(
    135deg,
    rgba(0, 201, 145, 0.8),
    rgba(39, 192, 255, 0.72)
  );
  border: 0.12rem solid rgba(255, 255, 255, 0.16);
  border-radius: 999rem;
  font-weight: 900;
}

.section-heading {
  max-width: 49rem;
  margin-bottom: 2rem;
}

.center-heading {
  text-align: center;
  margin-inline: auto;
}

.center-heading .eyebrow {
  justify-content: center;
}

.section-orbit,
.gallery-decor,
.wide-decor,
.download-decor,
.modes-decor,
.villain-decor,
.support-decor {
  opacity: 0.12;
  border-radius: 2rem;
}

.orbit-one {
  width: 18rem;
  right: -7rem;
  top: 5rem;
  transform: rotate(10deg);
  opacity: 0.28;
  z-index: -1;
}

.feature-grid {
  display: grid;
  gap: 1rem;
}

.feature-card {
  padding: 0.85rem;
}

.feature-card h3,
.feature-card p {
  padding-inline: 0.4rem;
}

.feature-card h3 {
  margin-top: 1rem;
}

.feature-card p {
  margin-bottom: 0.4rem;
}

.chase-grid,
.power-grid,
.review-grid,
.contact-grid,
.subhero-grid,
.split-feature,
.villain-grid,
.faq-grid,
.status-grid {
  display: grid;
  gap: 1.5rem;
  align-items: center;
}

.chase-copy,
.contact-panel,
.subhero-copy,
.villain-copy,
.status-card {
  padding: 1.35rem;
}

.story-beats {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: grid;
  gap: 0.75rem;
}

.story-beats li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: start;
  padding: 0.8rem;
  border: 0.1rem solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  border-radius: 1rem;
}

.story-beats span {
  display: inline-grid;
  width: 2.25rem;
  height: 2.25rem;
  place-items: center;
  border-radius: 50%;
  background: var(--pink);
  font-weight: 900;
}

.comic-stack {
  position: relative;
  min-height: 26rem;
}

.comic-frame {
  position: absolute;
  width: min(75%, 23rem);
  border: 0.35rem solid rgba(255, 255, 255, 0.7);
  border-radius: 2rem;
  box-shadow: var(--shadow);
  object-fit: cover;
}

.comic-frame-one {
  top: 0;
  left: 0;
  transform: rotate(-8deg);
}

.comic-frame-two {
  right: 0;
  bottom: 0;
  transform: rotate(7deg);
}

.world-layout {
  position: relative;
}

.wide-decor {
  right: -5rem;
  top: 1rem;
  width: 18rem;
}

.world-cards {
  display: grid;
  gap: 1rem;
}

.map-card {
  padding: 0.85rem;
}

.map-card h3,
.map-card p {
  padding-inline: 0.35rem;
}

.large-map-card img {
  max-height: 40rem;
  width: 100%;
  object-fit: cover;
  object-position: top;
}

.accent-card {
  background: linear-gradient(
    145deg,
    rgba(255, 206, 46, 0.22),
    rgba(255, 97, 190, 0.12)
  );
}

.notched-device {
  padding: 0.55rem;
  border-radius: 2rem;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.38),
    rgba(255, 255, 255, 0.08)
  );
  box-shadow: var(--shadow);
}

.notched-device img,
.power-visual img,
.faq-visual img {
  border-radius: 1.55rem;
  max-height: 43rem;
  width: 100%;
  object-fit: cover;
  object-position: top;
}

.power-list {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.2rem;
}

.power-list article {
  position: relative;
  padding: 1rem 1rem 1rem 3rem;
  border: 0.1rem solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  border-radius: 1.2rem;
}

.power-list h3 {
  font-size: 1.35rem;
}

.power-dot {
  position: absolute;
  left: 1rem;
  top: 1.25rem;
  width: 1.3rem;
  height: 1.3rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--pink));
  box-shadow: 0 0 1.2rem rgba(255, 97, 190, 0.75);
}

.gallery-decor {
  left: -6rem;
  top: 8rem;
  width: 17rem;
  transform: rotate(-10deg);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.gallery-tile {
  position: relative;
  display: block;
  min-height: 13rem;
  overflow: hidden;
  border-radius: 1.35rem;
  border: 0.14rem solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  text-decoration: none;
  box-shadow: var(--shadow-soft);
  clip-path: var(--cut-small);
}

.gallery-tile img {
  width: 100%;
  height: 100%;
  min-height: 13rem;
  object-fit: cover;
  transition:
    transform 240ms ease,
    filter 240ms ease;
}

.gallery-tile span {
  position: absolute;
  inset-inline: 0.5rem;
  bottom: 0.5rem;
  padding: 0.7rem;
  border-radius: 1rem;
  background: rgba(7, 10, 33, 0.82);
  color: var(--white);
  font-weight: 900;
  font-size: 0.85rem;
  line-height: 1.25;
}

.gallery-tile:hover img {
  transform: scale(1.05);
  filter: saturate(1.15);
}

.review-cards {
  display: grid;
  gap: 1rem;
}

.review-cards article {
  padding: 1.2rem;
}

.review-cards strong {
  display: inline-flex;
  padding: 0.4rem 0.65rem;
  margin-bottom: 0.75rem;
  border-radius: 999rem;
  background: linear-gradient(135deg, var(--green-bright), var(--blue));
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.download-decor {
  width: 16rem;
  right: -4rem;
  bottom: 0;
  transform: rotate(14deg);
}

.download-panel {
  display: grid;
  gap: 1rem;
  align-items: center;
  padding: 1.35rem;
  background: linear-gradient(
    135deg,
    rgba(255, 206, 46, 0.22),
    rgba(255, 97, 190, 0.16),
    rgba(0, 201, 145, 0.14)
  );
}

.contact-grid {
  align-items: start;
}

.contact-visual img {
  border-radius: 2rem;
  box-shadow: var(--shadow);
  max-height: 42rem;
  width: 100%;
  object-fit: cover;
  object-position: top;
}

.contact-wizard {
  margin-top: 1.25rem;
}

.wizard-progress {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.wizard-progress span {
  flex: 1;
  height: 0.6rem;
  border-radius: 999rem;
  background: rgba(255, 255, 255, 0.17);
  overflow: hidden;
}

.wizard-progress span.is-active {
  background: linear-gradient(90deg, var(--gold), var(--orange), var(--pink));
  box-shadow: 0 0 1rem rgba(255, 206, 46, 0.38);
}

.wizard-step h3 {
  margin-bottom: 0.9rem;
}

.option-grid {
  display: grid;
  gap: 0.7rem;
}

.option-grid button {
  min-height: 3.4rem;
  padding: 0.9rem 1rem;
  border: 0.12rem solid rgba(255, 255, 255, 0.18);
  background: linear-gradient(
    135deg,
    rgba(39, 192, 255, 0.36),
    rgba(139, 84, 255, 0.28)
  );
  border-radius: 1.2rem;
  font-weight: 900;
  cursor: pointer;
  transition:
    transform 170ms ease,
    background 170ms ease;
}

.option-grid button:hover {
  transform: translateY(-0.12rem);
  background: linear-gradient(
    135deg,
    rgba(255, 206, 46, 0.55),
    rgba(255, 97, 190, 0.36)
  );
}

.contact-form {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
}

.contact-form.is-hidden {
  display: none;
}

.form-summary {
  padding: 1rem;
  border-radius: 1.15rem;
  background: rgba(0, 201, 145, 0.18);
  border: 0.1rem solid rgba(101, 255, 208, 0.3);
  font-weight: 800;
}

.field-grid {
  display: grid;
  gap: 1rem;
}

.field {
  display: grid;
  gap: 0.45rem;
}

label {
  font-weight: 900;
  color: var(--white);
}

input,
textarea {
  width: 100%;
  min-height: 3.35rem;
  border: 0.12rem solid rgba(255, 255, 255, 0.22);
  border-radius: 1rem;
  padding: 0.85rem 1rem;
  color: var(--white);
  background: rgba(255, 255, 255, 0.11);
  transition:
    border-color 170ms ease,
    box-shadow 170ms ease,
    background 170ms ease;
}

textarea {
  min-height: 9rem;
  resize: vertical;
}

input:focus,
textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 0.25rem rgba(255, 206, 46, 0.22);
  background: rgba(255, 255, 255, 0.16);
}

input[aria-invalid='true'],
textarea[aria-invalid='true'] {
  border-color: var(--red);
  box-shadow: 0 0 0 0.25rem rgba(239, 51, 64, 0.2);
}

[data-context-field] {
  display: none;
}

.contact-form.context-business [data-context-field='business'],
.contact-form.context-media [data-context-field='media'],
.contact-form.context-player [data-context-field='player'] {
  display: grid;
}

.checkbox-field {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.7rem;
  align-items: start;
  padding: 0.9rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.08);
}

.checkbox-field input {
  width: 1.2rem;
  height: 1.2rem;
  min-height: auto;
  margin-top: 0.2rem;
  accent-color: var(--green-bright);
}

.form-actions {
  display: grid;
  gap: 0.75rem;
}

.form-note {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 800;
}

.site-footer {
  position: relative;
  overflow: hidden;
  padding: 4rem 0 1.4rem;
  background: linear-gradient(
    180deg,
    rgba(6, 5, 29, 0),
    rgba(6, 5, 29, 0.95) 18%,
    #040414 100%
  );
}

.footer-deco-one {
  width: 16rem;
  right: -5rem;
  top: 2rem;
  opacity: 0.12;
  transform: rotate(12deg);
}

.footer-shell {
  width: var(--container);
  margin-inline: auto;
  display: grid;
  gap: 1rem;
}

.footer-panel {
  padding: 1.15rem;
  border: 0.1rem solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.07);
  border-radius: 1.45rem;
}

.footer-brand-panel img {
  width: 12rem;
  margin-bottom: 1rem;
}

.footer-panel h2 {
  font-size: 1.55rem;
  margin-bottom: 0.75rem;
}

.footer-links {
  display: grid;
  gap: 0.55rem;
}

.footer-links a {
  min-height: 2.6rem;
  display: inline-flex;
  align-items: center;
  font-weight: 900;
}

.footer-bottom {
  width: var(--container);
  margin: 1.25rem auto 0;
  padding-top: 1rem;
  border-top: 0.1rem solid rgba(255, 255, 255, 0.14);
}

.footer-bottom p {
  font-size: 0.88rem;
  margin: 0;
}

.cookie-consent {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 180;
  display: none;
  gap: 1rem;
  padding: 1rem;
  border: 0.12rem solid rgba(255, 255, 255, 0.18);
  background: rgba(8, 11, 38, 0.94);
  backdrop-filter: blur(1rem);
  border-radius: 1.4rem;
  box-shadow: var(--shadow);
}

.cookie-consent.is-visible {
  display: grid;
}

.cookie-consent p {
  margin: 0.25rem 0 0;
  font-size: 0.92rem;
}

.cookie-actions {
  display: grid;
  gap: 0.7rem;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 250;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.84);
}

.lightbox.is-open {
  display: flex;
}

.lightbox-figure {
  margin: 0;
  max-width: min(92vw, 58rem);
  max-height: 88vh;
  display: grid;
  gap: 0.7rem;
  place-items: center;
}

.lightbox-figure img {
  max-height: 78vh;
  width: auto;
  border-radius: 1.4rem;
  box-shadow: var(--shadow);
}

.lightbox-figure figcaption {
  padding: 0.8rem 1rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.11);
  color: var(--white);
  font-weight: 900;
  text-align: center;
}

.lightbox-close,
.lightbox-arrow {
  position: absolute;
  border: 0;
  background: linear-gradient(135deg, var(--orange), var(--pink));
  color: var(--white);
  border-radius: 999rem;
  width: 3.2rem;
  height: 3.2rem;
  font-size: 2rem;
  font-weight: 900;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
}

.lightbox-close {
  top: 1rem;
  right: 1rem;
}

.lightbox-arrow {
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-prev {
  left: 1rem;
}

.lightbox-next {
  right: 1rem;
}

.subhero {
  position: relative;
  padding: 4rem 0 3rem;
  overflow: hidden;
}

.subhero-decor {
  right: -7rem;
  top: 2rem;
  width: 17rem;
  opacity: 0.14;
  border-radius: 2rem;
  transform: rotate(10deg);
}

.subhero-image {
  border-radius: 2rem;
  box-shadow: var(--shadow);
  border: 0.25rem solid rgba(255, 255, 255, 0.18);
}

.layered-images {
  position: relative;
  min-height: 31rem;
}

.layered-images img {
  position: absolute;
  border-radius: 2rem;
  box-shadow: var(--shadow);
  border: 0.28rem solid rgba(255, 255, 255, 0.22);
}

.layered-images img:first-child {
  left: 0;
  top: 0;
  width: 58%;
  max-height: 30rem;
  object-fit: cover;
  object-position: top;
}

.layered-images img:last-child {
  right: 0;
  bottom: 0;
  width: 60%;
}

.rule-list,
.mode-cards,
.cast-grid {
  display: grid;
  gap: 1rem;
}

.rule-list article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.8rem;
  align-items: center;
  padding: 1rem;
  border: 0.1rem solid rgba(255, 255, 255, 0.14);
  border-radius: 1.2rem;
  background: rgba(255, 255, 255, 0.08);
}

.rule-list span {
  display: grid;
  place-items: center;
  min-width: 4rem;
  min-height: 4rem;
  border-radius: 1.2rem;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  font-family: var(--font-display);
  font-weight: 900;
  text-shadow: 0 0.12rem 0 rgba(0, 0, 0, 0.24);
}

.mode-cards .notched-card,
.cast-card {
  padding: 1rem;
}

.modes-decor {
  left: -5rem;
  top: 2rem;
  width: 16rem;
}

.compact-download-image {
  width: 9rem;
  border-radius: 1.5rem;
  box-shadow: var(--shadow-soft);
}

.cast-card img {
  margin-bottom: 1rem;
}

.villain-decor {
  right: -8rem;
  top: 4rem;
  width: 18rem;
}

.villain-image {
  border-radius: 2rem;
  box-shadow: var(--shadow);
  max-height: 40rem;
  width: 100%;
  object-fit: cover;
  object-position: top;
}

details {
  border: 0.1rem solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  border-radius: 1.15rem;
  padding: 1rem;
  margin-bottom: 0.85rem;
}

summary {
  cursor: pointer;
  font-weight: 900;
  font-family: var(--font-display);
  font-size: 1.25rem;
}

.support-decor {
  right: -5rem;
  bottom: 0;
  width: 16rem;
}

.contact-mini {
  display: grid;
  gap: 1rem;
  padding: 1.35rem;
}

.legal-hero {
  padding: 4rem 0 2rem;
}

.legal-panel {
  padding: 1.35rem;
}

.legal-date {
  font-weight: 900;
  margin-bottom: 0;
}

.legal-content {
  padding: 1rem 0 4rem;
}

.legal-text {
  max-width: 54rem;
}

.legal-text h2 {
  margin-top: 2rem;
  font-size: clamp(1.5rem, 5vw, 2rem);
}

.legal-text p {
  margin: 0.75rem 0;
}

.status-hero {
  padding-bottom: 5rem;
}

.status-summary,
.error-list {
  padding: 1rem;
  border-radius: 1.1rem;
  border: 0.1rem solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.09);
}

.error-list {
  margin: 1rem 0;
}

.status-image {
  border-radius: 2rem;
  box-shadow: var(--shadow);
}

@media (min-width: 540px) {
  .hero-actions,
  .form-actions,
  .cookie-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .button-xl {
    width: auto;
  }

  .hero-facts,
  .mini-scoreboard {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

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

@media (min-width: 760px) {
  :root {
    --container: min(72rem, calc(100% - 3rem));
  }

  .header-shell {
    grid-template-columns: auto 1fr;
    padding: 0.65rem 0.8rem;
  }

  .nav-toggle {
    display: none;
  }

  .primary-nav {
    grid-column: auto;
    max-height: none;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 0.6rem;
    overflow: visible;
  }

  .primary-nav ul {
    display: flex;
    align-items: center;
    padding: 0;
  }

  .primary-nav a,
  .nav-cta {
    min-height: 2.9rem;
    padding: 0.6rem 0.82rem;
    font-size: 0.96rem;
  }

  .hero-grid,
  .intro-grid,
  .chase-grid,
  .power-grid,
  .review-grid,
  .contact-grid,
  .subhero-grid,
  .split-feature,
  .villain-grid,
  .faq-grid,
  .status-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero {
    padding-top: 5rem;
  }

  .hero-copy,
  .contact-panel,
  .subhero-copy,
  .legal-panel,
  .status-card {
    padding: 2rem;
  }

  .hero-stage {
    min-height: 42rem;
  }

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

  .feature-card-raised {
    transform: translateY(-1.2rem);
  }

  .world-cards {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: stretch;
  }

  .large-map-card {
    grid-row: span 2;
  }

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

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

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

  .download-panel,
  .contact-mini {
    grid-template-columns: auto 1fr auto;
  }

  .footer-shell {
    grid-template-columns: 1.4fr 1fr 0.8fr;
  }

  .cookie-consent {
    left: auto;
    width: min(47rem, calc(100% - 2rem));
    align-items: center;
  }
}

@media (min-width: 1040px) {
  .hero {
    min-height: 48rem;
  }

  .hero-decor-left {
    width: 26rem;
  }

  .hero-decor-right {
    width: 23rem;
  }

  .hero-stage {
    min-height: 48rem;
  }

  .section {
    padding: 6.5rem 0;
  }

  .gallery-grid {
    gap: 1rem;
  }

  .gallery-tile {
    min-height: 15rem;
  }

  .gallery-tile img {
    min-height: 15rem;
  }
}

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

/* =============================================
   NEW SECTIONS — index.php
   ============================================= */

.center-eyebrow {
  display: flex;
  justify-content: center;
}

.stats-strip-section {
  padding: 3rem 0;
  background: linear-gradient(
    135deg,
    rgba(0, 201, 145, 0.12),
    rgba(255, 206, 46, 0.1)
  );
  border-top: 0.1rem solid rgba(255, 255, 255, 0.1);
  border-bottom: 0.1rem solid rgba(255, 255, 255, 0.1);
}

.stats-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  text-align: center;
}

.stat-item {
  padding: 1.35rem 1rem;
  border: 0.12rem solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  border-radius: 1.4rem;
  clip-path: var(--cut-small);
}

.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 8vw, 3.2rem);
  font-weight: 900;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.stat-label {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--white);
  margin-top: 0.4rem;
  opacity: 0.85;
}

.modes-diagonal-grid {
  display: grid;
  gap: 1rem;
}

.mode-diag-card {
  display: grid;
  gap: 0;
  border: 0.12rem solid rgba(255, 255, 255, 0.16);
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0.04)
  );
  backdrop-filter: blur(0.8rem);
  border-radius: 1.65rem;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.mode-diag-card img {
  width: 100%;
  max-height: 14rem;
  object-fit: cover;
}

.mode-diag-copy {
  padding: 1.15rem;
}

.mode-diag-copy h3 {
  margin-bottom: 0.5rem;
}

.mode-diag-card-1 {
  border-color: rgba(255, 206, 46, 0.3);
}
.mode-diag-card-2 {
  border-color: rgba(255, 97, 190, 0.3);
}
.mode-diag-card-3 {
  border-color: rgba(39, 192, 255, 0.3);
}
.mode-diag-card-4 {
  border-color: rgba(139, 84, 255, 0.3);
}

.highlight-grid {
  display: grid;
  gap: 1.5rem;
  align-items: center;
}

.highlight-copy {
  padding: 1.35rem;
}

.highlight-copy p {
  margin: 0.75rem 0;
}

.highlight-images {
  position: relative;
  min-height: 26rem;
}

.highlight-img {
  position: absolute;
  border-radius: 1.65rem;
  box-shadow: var(--shadow);
  border: 0.28rem solid rgba(255, 255, 255, 0.18);
  object-fit: cover;
}

.highlight-img-top {
  top: 0;
  right: 0;
  width: 62%;
  max-height: 24rem;
  object-position: top;
}

.highlight-img-bottom {
  bottom: 0;
  left: 0;
  width: 52%;
  transform: rotate(-5deg);
}

/* =============================================
   NEW SECTIONS — gra.php
   ============================================= */

.progression-timeline {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1rem;
}

.timeline-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
}

.timeline-marker {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  flex-shrink: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.05rem;
  box-shadow: 0 0.5rem 1.5rem rgba(255, 118, 36, 0.35);
  margin-top: 0.85rem;
}

.timeline-content {
  padding: 1rem;
}

.timeline-content h3 {
  margin-bottom: 0.5rem;
}

.compare-grid {
  display: grid;
  gap: 0;
  border: 0.12rem solid rgba(255, 255, 255, 0.16);
  border-radius: 1.45rem;
  overflow: hidden;
}

.compare-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
  padding: 1rem;
  border-bottom: 0.1rem solid rgba(255, 255, 255, 0.1);
}

.compare-row:last-child {
  border-bottom: none;
}

.compare-header {
  background: linear-gradient(
    135deg,
    rgba(255, 206, 46, 0.22),
    rgba(255, 97, 190, 0.14)
  );
  font-weight: 900;
  font-family: var(--font-display);
}

.compare-row:not(.compare-header):nth-child(even) {
  background: rgba(255, 255, 255, 0.05);
}

.diff-dot {
  font-size: 1rem;
  letter-spacing: 0.12em;
}

.diff-easy {
  color: var(--green-bright);
}
.diff-mid {
  color: var(--gold);
}
.diff-hard {
  color: var(--red);
}

.cluster-layout {
  display: grid;
  gap: 1.5rem;
  align-items: center;
}

.cluster-copy p {
  margin: 0.75rem 0;
}

.cluster-points {
  margin: 1rem 0 1.4rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.65rem;
}

.cluster-points li {
  padding: 0.85rem 1rem;
  border: 0.1rem solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.07);
  border-radius: 1rem;
}

.cluster-images {
  position: relative;
  min-height: 32rem;
}

.cluster-img {
  position: absolute;
  border-radius: 1.65rem;
  box-shadow: var(--shadow);
  border: 0.28rem solid rgba(255, 255, 255, 0.2);
  object-fit: cover;
}

.cluster-img-main {
  left: 10%;
  top: 0;
  width: 52%;
  max-height: 30rem;
  object-position: top;
}

.cluster-img-alt {
  right: 0;
  bottom: 0;
  width: 46%;
}

.cluster-img-top {
  left: 0;
  top: 1.5rem;
  width: 38%;
  max-height: 18rem;
  object-position: top;
  transform: rotate(-6deg);
}

.cluster-decor {
  right: -5rem;
  bottom: 0;
  width: 14rem;
  transform: rotate(12deg);
}

/* =============================================
   NEW SECTIONS — postacie.php
   ============================================= */

.roles-diagonal {
  display: grid;
  gap: 1rem;
}

.role-band {
  display: grid;
  gap: 0;
  border-radius: 1.65rem;
  overflow: hidden;
  border: 0.12rem solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.09),
    rgba(255, 255, 255, 0.03)
  );
  box-shadow: var(--shadow-soft);
}

.role-band-image img {
  width: 100%;
  max-height: 13rem;
  object-fit: cover;
}

.role-band-copy {
  padding: 1.15rem;
}

.role-band-copy h3 {
  margin-bottom: 0.5rem;
}

.role-band-1 {
  border-color: rgba(0, 201, 145, 0.3);
}
.role-band-2 {
  border-color: rgba(255, 97, 190, 0.3);
}
.role-band-3 {
  border-color: rgba(39, 192, 255, 0.3);
}

.callout-grid {
  display: grid;
  gap: 1.5rem;
  align-items: center;
}

.callout-images {
  position: relative;
  min-height: 28rem;
}

.callout-main {
  border-radius: 1.65rem;
  box-shadow: var(--shadow);
  border: 0.28rem solid rgba(255, 255, 255, 0.2);
  width: 60%;
  max-height: 28rem;
  object-fit: cover;
  object-position: top;
}

.callout-badge {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 48%;
  border-radius: 1.4rem;
  box-shadow: var(--shadow);
  border: 0.28rem solid rgba(255, 206, 46, 0.4);
  transform: rotate(5deg);
}

.callout-copy {
  padding: 1.35rem;
}

.callout-copy p {
  margin: 0.75rem 0;
}

.tone-layout {
  display: grid;
  gap: 1.5rem;
}

.tone-heading {
  padding: 1.35rem;
}

.tone-heading p {
  margin: 0.75rem 0 0;
}

.tone-pills {
  display: grid;
  gap: 0.85rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.tone-pill {
  padding: 1.1rem;
  border: 0.12rem solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.07);
  border-radius: 1.2rem;
}

.tone-pill p {
  margin: 0.35rem 0 0;
}

.pill-label {
  display: inline-flex;
  padding: 0.35rem 0.7rem;
  border-radius: 999rem;
  background: linear-gradient(135deg, var(--purple), var(--blue));
  font-weight: 900;
  font-size: 0.88rem;
  margin-bottom: 0.35rem;
}

/* =============================================
   NEW SECTIONS — galeria.php
   ============================================= */

.featured-stack {
  display: grid;
  gap: 1rem;
}

.featured-card {
  position: relative;
  display: block;
  border-radius: 1.65rem;
  overflow: hidden;
  border: 0.14rem solid rgba(255, 255, 255, 0.18);
  box-shadow: var(--shadow-soft);
  text-decoration: none;
  clip-path: var(--cut);
}

.featured-card img {
  width: 100%;
  max-height: 22rem;
  object-fit: cover;
  transition:
    transform 240ms ease,
    filter 240ms ease;
}

.featured-card:hover img {
  transform: scale(1.04);
  filter: saturate(1.12);
}

.featured-label {
  position: absolute;
  inset-inline: 0.75rem;
  bottom: 0.75rem;
  padding: 0.75rem 1rem;
  background: rgba(6, 5, 29, 0.86);
  border-radius: 1.1rem;
  backdrop-filter: blur(0.6rem);
}

.featured-label strong {
  display: block;
  font-size: 1.05rem;
  color: var(--gold);
}

.featured-label span {
  font-size: 0.88rem;
  color: var(--white);
  opacity: 0.85;
}

.context-cards {
  display: grid;
  gap: 1rem;
}

.context-card {
  overflow: hidden;
}

.context-card img {
  width: 100%;
  max-height: 14rem;
  object-fit: cover;
  border-radius: 1.2rem 1.2rem 0 0;
  margin-bottom: 0;
}

.context-card-body {
  padding: 1rem;
}

.context-card-body h3 {
  margin-bottom: 0.5rem;
}

/* =============================================
   NEW SECTIONS — pomoc.php
   ============================================= */

.tips-grid {
  display: grid;
  gap: 1rem;
}

.tip-card {
  padding: 1.15rem 1.15rem 1.15rem 4.2rem;
  position: relative;
}

.tip-number {
  position: absolute;
  left: 1rem;
  top: 1rem;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--red), var(--orange));
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.2rem;
  box-shadow: 0 0.4rem 1rem rgba(239, 51, 64, 0.35);
}

.tip-card h3 {
  margin-bottom: 0.5rem;
}

.where-compare {
  display: grid;
  gap: 1.5rem;
  align-items: start;
  margin-top: 1.5rem;
}

.where-col {
  padding: 1.35rem;
  border: 0.12rem solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.07);
  border-radius: 1.65rem;
  clip-path: var(--cut);
  display: grid;
  gap: 1rem;
}

.where-col-us {
  border-color: rgba(0, 201, 145, 0.35);
  background: linear-gradient(
    145deg,
    rgba(0, 201, 145, 0.14),
    rgba(255, 255, 255, 0.04)
  );
}

.where-col-gp {
  border-color: rgba(255, 206, 46, 0.35);
  background: linear-gradient(
    145deg,
    rgba(255, 206, 46, 0.12),
    rgba(255, 255, 255, 0.04)
  );
}

.where-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.where-header img {
  width: 7rem;
}

.gp-icon {
  display: grid;
  place-items: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  font-size: 1rem;
  color: var(--night);
}

.where-list {
  margin: 0;
  padding: 0 0 0 1.25rem;
  display: grid;
  gap: 0.45rem;
}

.where-list li {
  font-weight: 700;
}

.where-divider {
  display: none;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.35);
  text-align: center;
  align-self: center;
}

/* =============================================
   RESPONSIVE — new sections
   ============================================= */

@media (min-width: 540px) {
  .stats-strip {
    grid-template-columns: repeat(4, 1fr);
  }

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

  .tips-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .modes-diagonal-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .tone-pills {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (min-width: 760px) {
  .progression-timeline {
    grid-template-columns: repeat(2, 1fr);
  }

  .compare-row {
    grid-template-columns: 0.7fr 2fr 0.7fr 1.5fr;
  }

  .cluster-layout,
  .highlight-grid,
  .callout-grid,
  .tone-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .role-band-image img {
    max-height: 16rem;
  }

  .where-compare {
    grid-template-columns: 1fr auto 1fr;
  }

  .where-divider {
    display: block;
  }

  .mode-diag-card {
    grid-template-rows: auto 1fr;
  }
}
