:root {
  --bg: #05060b;
  --bg-2: #0a0c14;
  --surface: rgba(255, 255, 255, 0.105);
  --surface-strong: rgba(255, 255, 255, 0.17);
  --line: rgba(255, 255, 255, 0.24);
  --text: #ffffff;
  --text-soft: #f6f8ff;
  --yellow: #fff200;
  --red: #ff1515;
  --blue: #001eff;
  --green: #31ff00;
  --orange: #ff9d00;
  --purple: #b800ff;
  --rose: #96356d;
  --steel: #5871ad;
  --gold: #c6a066;
  --violet: #6f55ff;
  --cyan: #64d6ff;
  --radius: 1.5rem;
  --clip: polygon(
    0 0,
    calc(100% - 1.15rem) 0,
    100% 1.15rem,
    100% 100%,
    1.15rem 100%,
    0 calc(100% - 1.15rem)
  );
  --shadow: 0 1.8rem 5rem rgba(0, 0, 0, 0.45);
  --container: 72rem;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
  font-size: 16px;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(
      circle at 12% 12%,
      rgba(184, 0, 255, 0.22),
      transparent 28rem
    ),
    radial-gradient(
      circle at 82% 4%,
      rgba(49, 255, 0, 0.12),
      transparent 24rem
    ),
    linear-gradient(180deg, #030409 0%, #090a12 48%, #05060b 100%);
  color: var(--text);
  font-family:
    Inter,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
}

body::selection {
  background: var(--purple);
  color: var(--text);
}

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

::-webkit-scrollbar-track {
  background: #07080d;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--purple), var(--blue), var(--green));
  border: 0.2rem solid #07080d;
  border-radius: 999rem;
}

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

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

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

:focus-visible {
  outline: 0.2rem solid var(--yellow);
  outline-offset: 0.25rem;
}

.container {
  width: min(100% - 1.5rem, var(--container));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 5rem 0;
  isolation: isolate;
  overflow-x: hidden;
}

.section
  > *:not(.section-decorator):not(.hero-bg-grid):not(.hero-orb):not(
    .hero-ribbon
  ):not(.cinema-backdrop):not(.motion-bg):not(.page-hero-media):not(
    .mechanics-rail
  ):not(.cta-finale-bg):not(.invite-floaters):not(.gallery-cta-bg):not(
    .reply-timeline-bg
  ):not(.notfound-bg):not(.section-media-slab):not(.demo-deco-wrap) {
  position: relative;
  z-index: 2;
}

.section-heading {
  display: grid;
  gap: 0.8rem;
  margin-bottom: 2rem;
}

.section-heading h2,
.hero-copy h1,
.page-hero h1,
h1,
h2,
h3 {
  margin: 0;
  font-family: 'Baloo 2', Inter, sans-serif;
  line-height: 0.98;
  letter-spacing: -0.035em;
  color: var(--text);
}

h1 {
  font-size: clamp(2.6rem, 9vw, 4.7rem);
}

h2 {
  font-size: clamp(2rem, 6vw, 3.1rem);
}

h3 {
  font-size: 1.35rem;
}

p {
  margin: 0;
  color: var(--text-soft);
  font-size: 1rem;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

.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;
}

.skip-link {
  position: fixed;
  top: 0.85rem;
  left: 0.85rem;
  z-index: 1000;
  transform: translateY(-160%);
  border-radius: 999rem;
  padding: 0.85rem 1.25rem;
  background: var(--yellow);
  color: #05060b;
  font-weight: 900;
  transition: transform 180ms ease;
}

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

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

.site-header.is-scrolled {
  padding: 0.45rem 0;
  background: rgba(5, 6, 11, 0.78);
  backdrop-filter: blur(1.2rem);
  border-bottom: 0.0625rem solid rgba(255, 255, 255, 0.12);
}

.header-shell {
  min-height: 4.45rem;
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  gap: 0.8rem;
  padding: 0.55rem 0.55rem 0.55rem 0.75rem;
  border: 0.0625rem solid rgba(255, 255, 255, 0.14);
  border-radius: 1.55rem;
  background: rgba(255, 255, 255, 0.075);
  box-shadow: 0 0.8rem 2rem rgba(0, 0, 0, 0.25);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  width: 10.5rem;
  transition: transform 220ms ease;
}

.brand-mark:hover {
  transform: translateY(-0.12rem) rotate(-0.5deg);
}

.nav-toggle {
  justify-self: end;
  display: inline-grid;
  place-items: center;
  gap: 0.22rem;
  width: 3.35rem;
  height: 3.35rem;
  border: 0.0625rem solid rgba(255, 255, 255, 0.18);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.11);
  color: var(--text);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 1.3rem;
  height: 0.16rem;
  background: var(--text);
  border-radius: 999rem;
  transition:
    transform 200ms ease,
    opacity 200ms ease;
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(0.38rem) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-0.38rem) rotate(-45deg);
}

.site-nav {
  grid-column: 1 / -1;
  display: none;
}

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

.site-nav ul {
  display: grid;
  gap: 0.45rem;
  list-style: none;
  padding: 0.75rem 0.2rem 0.2rem;
}

.site-nav a {
  position: relative;
  display: block;
  padding: 0.95rem 1rem;
  border-radius: 1rem;
  color: var(--text);
  font-weight: 800;
  overflow: hidden;
  transition:
    transform 220ms ease,
    background 220ms ease;
}

.site-nav a::before {
  content: '';
  position: absolute;
  inset: auto 1rem 0.55rem 1rem;
  height: 0.18rem;
  border-radius: 999rem;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(
    90deg,
    var(--yellow),
    var(--red),
    var(--blue),
    var(--green),
    var(--orange)
  );
  transition: transform 220ms ease;
}

.site-nav a:hover,
.site-nav a[aria-current='page'] {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-0.08rem);
}

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

.header-action {
  display: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  min-height: 3.35rem;
  padding: 0.92rem 1.25rem;
  border: 0;
  border-radius: 1.05rem;
  color: var(--text);
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 0.85rem 1.8rem rgba(0, 0, 0, 0.3);
  transition:
    transform 200ms ease,
    box-shadow 200ms ease,
    filter 200ms ease,
    background 200ms ease;
  text-align: center;
}

.btn:hover {
  transform: translateY(-0.16rem);
  box-shadow: 0 1.2rem 2.4rem rgba(0, 0, 0, 0.42);
}

.btn-primary,
.btn-play {
  background: linear-gradient(
    135deg,
    var(--purple),
    var(--blue) 42%,
    var(--green)
  );
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.12);
  border: 0.0625rem solid rgba(255, 255, 255, 0.22);
}

.btn-header {
  min-height: 2.95rem;
  padding: 0.75rem 1rem;
  font-size: 0.88rem;
}

.play-triangle {
  width: 0;
  height: 0;
  border-top: 0.45rem solid transparent;
  border-bottom: 0.45rem solid transparent;
  border-left: 0.72rem solid var(--text);
  filter: drop-shadow(0 0 0.4rem rgba(255, 255, 255, 0.5));
}

.clipped-card {
  clip-path: var(--clip);
}

.glass-card {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.16),
    rgba(255, 255, 255, 0.07)
  );
  border: 0.0625rem solid var(--line);
  box-shadow: var(--shadow);
  backdrop-filter: blur(1.2rem);
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.75rem;
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow::before,
.section-kicker::before {
  content: '';
  width: 0.85rem;
  height: 0.85rem;
  border-radius: 0.2rem;
  background: conic-gradient(
    from 20deg,
    var(--yellow),
    var(--red),
    var(--blue),
    var(--green),
    var(--orange),
    var(--yellow)
  );
  box-shadow: 0 0 1.1rem rgba(184, 0, 255, 0.7);
}

.reveal {
  opacity: 0;
  transform: translateY(1.6rem);
  transition:
    opacity 600ms ease,
    transform 600ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.section-decorator,
.hero-bg-grid,
.hero-orb,
.hero-ribbon,
.cinema-backdrop,
.motion-bg,
.page-hero-media,
.mechanics-rail {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.hero-section {
  min-height: 46rem;
  display: grid;
  align-items: center;
  padding-top: 3.5rem;
  overflow: hidden;
}

.hero-bg-grid {
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 4rem 4rem;
  mask-image: radial-gradient(circle at center, black 0%, transparent 72%);
  animation: gridDrift 18s linear infinite;
}

.hero-orb {
  width: 18rem;
  height: 18rem;
  border-radius: 50%;
  filter: blur(0.3rem);
}

.orb-one {
  left: -7rem;
  top: 7rem;
  background: radial-gradient(circle, rgba(184, 0, 255, 0.38), transparent 68%);
}

.orb-two {
  right: -8rem;
  bottom: 4rem;
  background: radial-gradient(circle, rgba(49, 255, 0, 0.24), transparent 70%);
}

.hero-ribbon {
  right: -8rem;
  top: 7rem;
  display: flex;
  gap: 1rem;
  opacity: 0.13;
  transform: rotate(-8deg);
  animation: ribbonFloat 16s ease-in-out infinite alternate;
}

.ribbon-shot {
  width: 8.5rem;
  border-radius: 1.25rem;
  border: 0.0625rem solid rgba(255, 255, 255, 0.3);
}

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

.hero-copy {
  max-width: 40rem;
}

.hero-lead {
  margin-top: 1.2rem;
  font-size: 1.12rem;
}

.hero-actions,
.contact-line-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.6rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.25rem;
}

.hero-badges span {
  padding: 0.65rem 0.85rem;
  border-radius: 999rem;
  border: 0.0625rem solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.1);
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 800;
}

.phone-stage {
  position: relative;
  min-height: 36rem;
}

.phone-card {
  position: absolute;
  overflow: hidden;
  border-radius: 2.15rem;
  border: 0.09rem solid rgba(255, 255, 255, 0.24);
  background: rgba(0, 0, 0, 0.48);
  box-shadow: 0 2rem 5rem rgba(0, 0, 0, 0.58);
}

.main-phone {
  width: min(72vw, 18rem);
  right: 2rem;
  top: 1rem;
  z-index: 2;
  transform: rotate(3deg);
}

.ghost-phone {
  width: min(58vw, 14.5rem);
  left: 0.3rem;
  top: 6.5rem;
  opacity: 0.72;
  transform: rotate(-7deg);
}

.phone-image {
  width: 100%;
}

.mini-orbit-card {
  position: absolute;
  left: 1rem;
  bottom: 0.8rem;
  z-index: 3;
  width: min(72vw, 15rem);
  padding: 0.75rem;
  border-radius: 1.4rem;
  background: rgba(255, 255, 255, 0.14);
  border: 0.0625rem solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(1rem);
  box-shadow: var(--shadow);
  animation: cardBob 4s ease-in-out infinite;
}

.mini-grid-image {
  border-radius: 1rem;
}

.mini-orbit-card span {
  display: block;
  margin-top: 0.6rem;
  font-weight: 900;
}

.logic-strip {
  padding-top: 2.5rem;
}

.strip-grid {
  display: grid;
  gap: 1.5rem;
}

.logic-cards,
.rule-cards,
.pattern-grid,
.visual-card-grid {
  display: grid;
  gap: 1rem;
}

.logic-card,
.rule-card,
.pattern-card,
.visual-frame,
.screen-frame,
.flow-card,
.result-card {
  padding: 1.1rem;
  background: rgba(255, 255, 255, 0.095);
  border: 0.0625rem solid rgba(255, 255, 255, 0.18);
}

.logic-card span,
.flow-number {
  color: var(--yellow);
  font-weight: 1000;
}

.logic-card p,
.rule-card p,
.pattern-card p,
.flow-card p,
.faq-list p {
  margin-top: 0.45rem;
}

.dot-field {
  inset: 0;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.18) 0 0.08rem,
    transparent 0.08rem
  );
  background-size: 2.2rem 2.2rem;
  opacity: 0.16;
  mask-image: linear-gradient(
    90deg,
    transparent,
    black 18%,
    black 82%,
    transparent
  );
}

.ring-decorator {
  width: 22rem;
  height: 22rem;
  right: -9rem;
  top: 3rem;
  border: 0.12rem solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  box-shadow:
    inset 0 0 0 2rem rgba(184, 0, 255, 0.05),
    0 0 5rem rgba(0, 30, 255, 0.18);
}

.play-flow {
  display: grid;
  gap: 1rem;
}

.flow-card {
  display: grid;
  gap: 1rem;
  align-items: center;
  overflow: hidden;
}

.image-button {
  width: 100%;
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--text);
  border-radius: 1.15rem;
  overflow: hidden;
}

.image-button img {
  transition:
    transform 380ms ease,
    filter 380ms ease;
}

.image-button:hover img,
.image-button:focus-visible img {
  transform: scale(1.04);
  filter: saturate(1.18) contrast(1.06);
}

.flow-image,
.gallery-image,
.visual-frame-image,
.rule-image {
  width: 100%;
  border-radius: 1.05rem;
}

.feature-cinema {
  min-height: 38rem;
  overflow: hidden;
}

.cinema-backdrop {
  inset: 0;
  display: flex;
  gap: 1rem;
  justify-content: center;
  opacity: 0.14;
  filter: saturate(1.25);
  animation: slowPan 22s ease-in-out infinite alternate;
}

.cinema-shot {
  width: 12rem;
  border-radius: 1.4rem;
  object-fit: cover;
}

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

.feature-copy,
.motion-copy {
  padding: 1.4rem;
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.5);
  border: 0.0625rem solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(0.9rem);
}

.feature-stack {
  display: grid;
  gap: 0.9rem;
}

.feature-stack article,
.faq-list details {
  padding: 1.2rem;
}

.gallery-mosaic {
  display: grid;
  gap: 1rem;
}

.gallery-item {
  margin: 0;
  padding: 0.7rem;
  border-radius: 1.3rem;
  background: rgba(255, 255, 255, 0.08);
  border: 0.0625rem solid rgba(255, 255, 255, 0.16);
}

.gallery-item figcaption,
.screen-frame figcaption,
.visual-frame figcaption {
  margin-top: 0.55rem;
  color: var(--text);
  font-weight: 800;
  font-size: 0.92rem;
}

.gallery-item.tall .gallery-image {
  aspect-ratio: 9 / 16;
  object-fit: cover;
}

.gallery-item.square .gallery-image,
.visual-frame-image {
  aspect-ratio: 1;
  object-fit: cover;
}

.beam-decorator {
  inset: 8% -20% auto -20%;
  height: 12rem;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 242, 0, 0.14),
    rgba(255, 21, 21, 0.13),
    rgba(0, 30, 255, 0.15),
    transparent
  );
  transform: rotate(-4deg);
  filter: blur(0.25rem);
}

.audience-grid,
.studio-grid,
.contact-grid,
.split-layout,
.value-grid,
.decision-grid,
.faq-grid {
  display: grid;
  gap: 1.5rem;
  align-items: center;
}

.audience-visual {
  position: relative;
  overflow: hidden;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.1);
  border: 0.0625rem solid rgba(255, 255, 255, 0.18);
}

.audience-phone {
  width: min(100%, 18rem);
  margin-inline: auto;
  border-radius: 1.7rem;
  box-shadow: var(--shadow);
}

.palette-dots {
  position: absolute;
  left: 50%;
  bottom: 1.3rem;
  transform: translateX(-50%);
  display: flex;
  gap: 0.45rem;
}

.palette-dots span,
.pattern-token {
  display: block;
  width: 1.3rem;
  height: 1.3rem;
  border-radius: 999rem;
  box-shadow: 0 0 1rem currentColor;
}

.palette-dots span:nth-child(1),
.yellow-token {
  background: var(--yellow);
  color: var(--yellow);
}
.palette-dots span:nth-child(2) {
  background: var(--red);
  color: var(--red);
}
.palette-dots span:nth-child(3),
.blue-token {
  background: var(--blue);
  color: var(--blue);
}
.palette-dots span:nth-child(4) {
  background: var(--green);
  color: var(--green);
}
.palette-dots span:nth-child(5) {
  background: var(--orange);
  color: var(--orange);
}
.purple-token {
  background: var(--purple);
  color: var(--purple);
}

.audience-copy p,
.studio-copy p,
.split-copy p,
.value-grid p,
.decision-grid p {
  margin-top: 0.9rem;
}

.mini-stats {
  display: grid;
  gap: 0.7rem;
  margin-top: 1.25rem;
}

.mini-stats span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1rem;
  border: 0.0625rem solid rgba(255, 255, 255, 0.18);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
}

.mini-stats strong {
  font-family: 'Baloo 2', Inter, sans-serif;
  font-size: 1.45rem;
  line-height: 1;
}

.color-lanes {
  inset: auto 0 10% 0;
  height: 0.7rem;
  background: linear-gradient(
    90deg,
    var(--yellow),
    var(--red),
    var(--blue),
    var(--green),
    var(--orange),
    var(--purple)
  );
  opacity: 0.35;
  filter: blur(0.05rem);
}

.studio-card {
  padding: 1.3rem;
}

.studio-card img {
  width: 8rem;
  margin-bottom: 1rem;
}

.studio-card p {
  margin-top: 0.85rem;
}

.studio-copy .btn {
  margin-top: 1.25rem;
}

.studio-lines {
  inset: 0;
  background:
    radial-gradient(
      circle at 20% 30%,
      rgba(198, 160, 102, 0.2),
      transparent 18rem
    ),
    linear-gradient(
      120deg,
      transparent 0 35%,
      rgba(111, 85, 255, 0.18) 35% 36%,
      transparent 36% 100%
    );
}

.faq-list {
  display: grid;
  gap: 0.8rem;
}

.faq-list summary {
  color: var(--text);
  font-weight: 900;
  cursor: pointer;
  font-size: 1.05rem;
}

.contact-lab {
  overflow: hidden;
}

.contact-media {
  inset: 0;
}

.floating-shot {
  position: absolute;
  right: -2rem;
  top: 10%;
  width: 9rem;
  border-radius: 1.3rem;
  opacity: 0.16;
  animation: floatSoft 8s ease-in-out infinite;
}

.floating-tile {
  position: absolute;
  left: -3rem;
  bottom: 6%;
  width: 10rem;
  border-radius: 1.2rem;
  opacity: 0.2;
  animation: floatSoft 9s ease-in-out infinite reverse;
}

.contact-copy .contact-points {
  display: grid;
  gap: 0.55rem;
  margin-top: 1rem;
  list-style: none;
}

.contact-points li {
  position: relative;
  padding-left: 1.3rem;
  color: var(--text);
  font-weight: 700;
}

.contact-points li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 0.15rem;
  background: var(--green);
}

.contact-panel {
  padding: 1rem;
}

.question-track {
  display: grid;
  gap: 0.85rem;
  list-style: none;
}

.wizard-step {
  display: none;
  padding: 1rem;
  border-radius: 1.2rem;
  background: rgba(0, 0, 0, 0.22);
  border: 0.0625rem solid rgba(255, 255, 255, 0.14);
}

.wizard-step.is-active,
.wizard-step.is-complete {
  display: block;
}

.wizard-step.is-complete {
  opacity: 0.65;
}

.step-count {
  display: inline-grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: 0.7rem;
  background: linear-gradient(135deg, var(--purple), var(--blue));
  font-weight: 900;
  margin-bottom: 0.55rem;
}

.choice-grid {
  display: grid;
  gap: 0.65rem;
  margin-top: 0.85rem;
}

.choice-button {
  min-height: 3.3rem;
  padding: 0.85rem 1rem;
  border: 0.0625rem solid rgba(255, 255, 255, 0.18);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.09);
  color: var(--text);
  font-weight: 850;
  text-align: left;
  transition:
    transform 200ms ease,
    background 200ms ease,
    border-color 200ms ease;
}

.choice-button:hover,
.choice-button.is-selected {
  transform: translateY(-0.08rem);
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 242, 0, 0.72);
}

.contact-form {
  display: grid;
  gap: 0.9rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 0.0625rem solid rgba(255, 255, 255, 0.16);
}

.contact-form[hidden] {
  display: none;
}

.form-intro {
  padding: 0.8rem 1rem;
  border-radius: 1rem;
  background: rgba(49, 255, 0, 0.13);
  border: 0.0625rem solid rgba(49, 255, 0, 0.34);
  color: var(--text);
  font-weight: 800;
}

.form-row {
  display: grid;
  gap: 0.85rem;
}

.form-row label,
.consent-line {
  display: grid;
  gap: 0.45rem;
  color: var(--text);
  font-weight: 800;
}

input,
textarea,
select {
  width: 100%;
  border: 0.0625rem solid rgba(255, 255, 255, 0.2);
  border-radius: 1rem;
  background: rgba(0, 0, 0, 0.32);
  color: var(--text);
  padding: 0.9rem 1rem;
  min-height: 3.25rem;
}

textarea {
  resize: vertical;
}

.field-help {
  color: var(--text);
  font-size: 0.85rem;
  font-weight: 700;
}

.conditional-field.is-hidden,
.bot-field {
  display: none;
}

.consent-line {
  grid-template-columns: auto 1fr;
  align-items: start;
  font-size: 0.92rem;
}

.consent-line input {
  width: 1.2rem;
  height: 1.2rem;
  min-height: auto;
  margin-top: 0.22rem;
  accent-color: var(--purple);
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.page-hero,
.legal-hero {
  overflow: hidden;
  padding-top: 5rem;
}

.page-hero-content {
  max-width: 48rem;
}

.page-hero-content .btn {
  margin-top: 1.4rem;
}

.page-hero-media {
  right: 4%;
  bottom: -3rem;
  opacity: 0.18;
}

.page-float-shot {
  width: 12rem;
  border-radius: 1.5rem;
  transform: rotate(8deg);
}

.split-visual,
.decision-board {
  position: relative;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.09);
  border: 0.0625rem solid rgba(255, 255, 255, 0.18);
  min-height: 20rem;
}

.layered-base {
  width: 78%;
  border-radius: 1rem;
}

.layered-over {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  width: 56%;
  border-radius: 1rem;
  box-shadow: var(--shadow);
}

.rule-card {
  display: grid;
  gap: 0.8rem;
}

.phone-cut {
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center 55%;
}

.value-image-cluster {
  position: relative;
  min-height: 29rem;
}

.cluster-shot {
  position: absolute;
  width: 13rem;
  border-radius: 1.5rem;
  border: 0.0625rem solid rgba(255, 255, 255, 0.2);
  box-shadow: var(--shadow);
}

.cluster-shot:first-child {
  left: 0;
  top: 0;
  transform: rotate(-5deg);
}

.cluster-shot.shifted {
  right: 0;
  bottom: 0;
  transform: rotate(6deg);
}

.mechanics-rail {
  right: -4rem;
  bottom: 2rem;
  display: flex;
  gap: 0.9rem;
  opacity: 0.2;
  animation: slowPan 18s ease-in-out infinite alternate;
}

.rail-image {
  width: 9rem;
  border-radius: 1rem;
}

.decision-board {
  overflow: hidden;
}

.decision-image {
  width: min(100%, 24rem);
  margin-inline: auto;
  border-radius: 1rem;
}

.decision-markers {
  position: absolute;
  left: 1.3rem;
  top: 1.3rem;
  display: grid;
  gap: 0.5rem;
}

.decision-markers span {
  width: 2rem;
  height: 2rem;
  border-radius: 999rem;
  background: var(--purple);
  box-shadow: 0 0 1.5rem rgba(184, 0, 255, 0.8);
}

.decision-markers span:nth-child(2) {
  background: var(--steel);
}

.decision-markers span:nth-child(3) {
  background: var(--rose);
}

.callout {
  margin-top: 1rem;
  padding: 1rem;
  background: rgba(255, 242, 0, 0.1);
  border: 0.0625rem solid rgba(255, 242, 0, 0.28);
  color: var(--text);
  font-weight: 800;
}

.motion-section {
  overflow: hidden;
}

.motion-bg {
  inset: 0;
  display: flex;
  gap: 1.3rem;
  justify-content: center;
  opacity: 0.16;
  animation: ribbonFloat 14s ease-in-out infinite alternate;
}

.motion-shot {
  width: 11rem;
  border-radius: 1.4rem;
}

.gallery-hero,
.contact-page-hero,
.mechanics-hero,
.compact-hero {
  min-height: 24rem;
}

.screenshot-wall {
  display: grid;
  gap: 1rem;
}

.screen-frame {
  margin: 0;
}

.screen-wall-image {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  border-radius: 1rem;
}

.visual-frame {
  margin: 0;
}

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

.legal-content {
  padding-top: 1rem;
}

.legal-content h2 {
  margin-top: 2rem;
  font-size: 1.75rem;
}

.legal-content p {
  margin-top: 0.8rem;
}

.legal-content a {
  text-decoration: underline;
  text-decoration-color: var(--purple);
  text-underline-offset: 0.25rem;
}

.result-section {
  min-height: 34rem;
  display: grid;
  align-items: center;
}

.result-card {
  max-width: 48rem;
  padding: 1.4rem;
}

.result-summary {
  display: grid;
  gap: 0.7rem;
  margin: 1.2rem 0;
}

.result-summary div {
  display: grid;
  gap: 0.25rem;
  padding: 0.8rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.08);
}

.result-summary dt,
.result-summary dd {
  margin: 0;
}

.result-summary dt {
  font-weight: 900;
  color: var(--yellow);
}

.error-list {
  display: grid;
  gap: 0.5rem;
  margin: 1rem 0;
  padding-left: 1.1rem;
}

.site-footer {
  position: relative;
  overflow: hidden;
  padding: 3rem 0 1.2rem;
  background: #030409;
  border-top: 0.0625rem solid rgba(255, 255, 255, 0.12);
}

.footer-glow {
  position: absolute;
  inset: -12rem auto auto 50%;
  width: 28rem;
  height: 28rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184, 0, 255, 0.28), transparent 70%);
  transform: translateX(-50%);
}

.footer-grid {
  position: relative;
  display: grid;
  gap: 1.4rem;
}

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

.footer-col {
  display: grid;
  gap: 0.5rem;
  align-content: start;
}

.footer-col h2 {
  font-size: 1.25rem;
}

.footer-col a,
.footer-col span,
.footer-bottom p {
  color: var(--text);
  font-style: normal;
  font-size: 0.94rem;
}

.footer-bottom {
  position: relative;
  display: grid;
  gap: 0.35rem;
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 0.0625rem solid rgba(255, 255, 255, 0.12);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: none;
  place-items: center;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(1rem);
}

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

.lightbox-frame {
  width: min(100%, 48rem);
  margin: 0;
  display: grid;
  gap: 0.85rem;
  justify-items: center;
}

.lightbox-frame img {
  max-height: 78vh;
  width: auto;
  border-radius: 1.4rem;
  border: 0.0625rem solid rgba(255, 255, 255, 0.24);
  box-shadow: var(--shadow);
}

.lightbox-frame figcaption {
  color: var(--text);
  font-weight: 900;
  text-align: center;
}

.lightbox-close {
  position: absolute;
  right: 1rem;
  top: 1rem;
  display: grid;
  place-items: center;
  width: 3.3rem;
  height: 3.3rem;
  border: 0.0625rem solid rgba(255, 255, 255, 0.22);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.12);
  color: var(--text);
  font-size: 2rem;
  line-height: 1;
}

.cookie-banner {
  position: fixed;
  left: 0.75rem;
  right: 0.75rem;
  bottom: 0.75rem;
  z-index: 1100;
  display: none;
  gap: 1rem;
  padding: 1rem;
  border: 0.0625rem solid rgba(255, 255, 255, 0.22);
  border-radius: 1.25rem;
  background: rgba(6, 7, 14, 0.88);
  box-shadow: var(--shadow);
  backdrop-filter: blur(1.2rem);
}

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

.cookie-banner h2 {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

@keyframes gridDrift {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 4rem 4rem;
  }
}

@keyframes ribbonFloat {
  from {
    transform: translate3d(0, 0, 0) rotate(-8deg);
  }
  to {
    transform: translate3d(-2rem, 1rem, 0) rotate(-4deg);
  }
}

@keyframes cardBob {
  0%,
  100% {
    transform: translateY(0) rotate(-1deg);
  }
  50% {
    transform: translateY(-0.55rem) rotate(1deg);
  }
}

@keyframes slowPan {
  from {
    transform: translateX(-2rem) rotate(-2deg);
  }
  to {
    transform: translateX(2rem) rotate(2deg);
  }
}

@keyframes floatSoft {
  0%,
  100% {
    transform: translateY(0) rotate(-5deg);
  }
  50% {
    transform: translateY(-1rem) rotate(4deg);
  }
}

@media (min-width: 560px) {
  .two-cols,
  .choice-grid,
  .mini-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-mosaic,
  .screenshot-wall,
  .visual-card-grid,
  .rule-cards,
  .pattern-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .btn {
    min-height: 3.1rem;
  }
}

@media (min-width: 760px) {
  .section {
    padding: 6.5rem 0;
  }

  .header-shell {
    grid-template-columns: auto 1fr auto;
  }

  .nav-toggle {
    display: none;
  }

  .site-nav {
    display: block;
    grid-column: auto;
    justify-self: center;
  }

  .site-nav ul {
    display: flex;
    align-items: center;
    padding: 0;
    gap: 0.2rem;
  }

  .site-nav a {
    padding: 0.82rem 0.9rem;
    font-size: 0.92rem;
  }

  .header-action {
    display: block;
  }

  .hero-grid,
  .strip-grid,
  .feature-grid,
  .audience-grid,
  .studio-grid,
  .contact-grid,
  .split-layout,
  .value-grid,
  .decision-grid,
  .faq-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

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

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

  .flow-card {
    grid-template-columns: 0.9fr 1.1fr;
  }

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

  .gallery-item.tall {
    grid-row: span 2;
  }

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

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

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

  .footer-grid {
    grid-template-columns: 1.6fr 0.8fr 0.9fr 1.1fr;
  }

  .footer-bottom {
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .cookie-banner {
    grid-template-columns: 1fr auto;
    align-items: center;
  }
}

@media (min-width: 980px) {
  .hero-section {
    padding-top: 4.5rem;
  }

  .brand-mark {
    width: 12rem;
  }

  .hero-copy h1 {
    max-width: 42rem;
  }

  .main-phone {
    right: 5rem;
    width: 19.5rem;
  }

  .ghost-phone {
    left: 1.5rem;
    width: 15.5rem;
  }

  .mini-orbit-card {
    left: 3rem;
    width: 15.5rem;
  }

  .cinema-shot {
    width: 15rem;
  }

  .floating-shot {
    width: 12rem;
  }

  .floating-tile {
    width: 13rem;
  }
}

@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;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* ═══════════════════════════════════════════════════
   INDEX — Quick Features
═══════════════════════════════════════════════════ */
.qf-header {
  margin-bottom: 1.75rem;
}

.qf-stripe {
  inset: 0;
  background: linear-gradient(
    135deg,
    transparent 0 35%,
    rgba(255, 242, 0, 0.055) 35% 36%,
    transparent 36% 55%,
    rgba(0, 30, 255, 0.05) 55% 56%,
    transparent 56%
  );
}

.qf-track {
  display: grid;
  gap: 0.85rem;
}

.qf-pill {
  display: grid;
  grid-template-columns: 2.6rem 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1.1rem 1.2rem;
  background: rgba(255, 255, 255, 0.07);
  border: 0.0625rem solid rgba(255, 255, 255, 0.14);
}

.qf-num {
  width: 2.4rem;
  height: 2.4rem;
  display: grid;
  place-items: center;
  border-radius: 0.75rem;
  font-family: 'Baloo 2', Inter, sans-serif;
  font-size: 0.95rem;
  font-weight: 900;
  flex-shrink: 0;
}

.qf-pill:nth-child(1) .qf-num {
  background: rgba(255, 242, 0, 0.18);
  color: var(--yellow);
}
.qf-pill:nth-child(2) .qf-num {
  background: rgba(255, 21, 21, 0.18);
  color: var(--red);
}
.qf-pill:nth-child(3) .qf-num {
  background: rgba(0, 30, 255, 0.22);
  color: var(--cyan);
}
.qf-pill:nth-child(4) .qf-num {
  background: rgba(49, 255, 0, 0.16);
  color: var(--green);
}
.qf-pill:nth-child(5) .qf-num {
  background: rgba(255, 157, 0, 0.18);
  color: var(--orange);
}
.qf-pill:nth-child(6) .qf-num {
  background: rgba(184, 0, 255, 0.18);
  color: var(--purple);
}

.qf-pill-title {
  color: var(--text);
  font-weight: 900;
  font-size: 1rem;
  line-height: 1.2;
}

.qf-pill-desc {
  margin-top: 0.3rem;
  font-size: 0.9rem;
  color: var(--text-soft);
}

/* ═══════════════════════════════════════════════════
   INDEX — Palette Band
═══════════════════════════════════════════════════ */
.palette-band {
  overflow: hidden;
}

.palette-beam {
  inset: 0;
  background:
    radial-gradient(
      ellipse at 50% 0%,
      rgba(255, 242, 0, 0.12),
      transparent 55%
    ),
    radial-gradient(
      ellipse at 80% 100%,
      rgba(184, 0, 255, 0.1),
      transparent 45%
    );
}

.palette-header {
  margin-bottom: 1.75rem;
}

.palette-header p:last-of-type {
  margin-top: 0.75rem;
  max-width: 48rem;
}

.palette-strip {
  display: grid;
  gap: 0.55rem;
}

.palette-col {
  padding: 1.4rem 1.1rem;
  border-radius: 1.1rem;
}

.palette-col-name {
  font-family: 'Baloo 2', Inter, sans-serif;
  font-size: 1.25rem;
  font-weight: 900;
  line-height: 1;
  color: var(--text);
  letter-spacing: -0.02em;
}

.palette-col-role {
  margin-top: 0.45rem;
  font-size: 0.88rem;
  color: var(--text-soft);
}

.pc-yellow {
  background: rgba(255, 242, 0, 0.13);
  border: 0.0625rem solid rgba(255, 242, 0, 0.28);
}
.pc-red {
  background: rgba(255, 21, 21, 0.13);
  border: 0.0625rem solid rgba(255, 21, 21, 0.28);
}
.pc-blue {
  background: rgba(0, 30, 255, 0.18);
  border: 0.0625rem solid rgba(100, 214, 255, 0.32);
}
.pc-green {
  background: rgba(49, 255, 0, 0.11);
  border: 0.0625rem solid rgba(49, 255, 0, 0.26);
}
.pc-orange {
  background: rgba(255, 157, 0, 0.13);
  border: 0.0625rem solid rgba(255, 157, 0, 0.28);
}
.pc-purple {
  background: rgba(184, 0, 255, 0.15);
  border: 0.0625rem solid rgba(184, 0, 255, 0.32);
}

/* ═══════════════════════════════════════════════════
   INDEX — CTA Finale
═══════════════════════════════════════════════════ */
.cta-finale {
  overflow: hidden;
  text-align: center;
}

.cta-finale-bg {
  position: absolute;
  inset: 0;
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  align-items: center;
  opacity: 0.09;
  filter: saturate(1.3);
  animation: slowPan 24s ease-in-out infinite alternate;
}

.cta-finale-shot {
  width: 8.5rem;
  border-radius: 1.3rem;
  flex-shrink: 0;
}

.cta-inner {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 1.1rem;
  justify-items: center;
  max-width: 44rem;
  margin-inline: auto;
}

.cta-inner h2,
.gal-cta-box h2 {
  text-align: center;
}

.cta-inner-lead {
  max-width: 38rem;
  text-align: center;
  font-size: 1.05rem;
}

.cta-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
}

/* ═══════════════════════════════════════════════════
   GRA — Level Timeline
═══════════════════════════════════════════════════ */
.level-timeline {
  overflow: hidden;
}

.timeline-orb {
  width: 20rem;
  height: 20rem;
  left: -8rem;
  top: 4rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 30, 255, 0.18), transparent 68%);
  filter: blur(0.5rem);
}

.lt-track {
  display: grid;
  gap: 1.1rem;
  margin-top: 1rem;
}

.lt-step {
  background: rgba(255, 255, 255, 0.07);
  border: 0.0625rem solid rgba(255, 255, 255, 0.14);
  border-radius: 1.3rem;
  overflow: hidden;
}

.lt-step-image {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  border-radius: 0;
  display: block;
}

.lt-step-body {
  padding: 1rem 1.1rem 1.2rem;
}

.lt-step-num {
  font-family: 'Baloo 2', Inter, sans-serif;
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--yellow);
  line-height: 1;
  margin: 0;
}

.lt-step-title {
  font-weight: 900;
  color: var(--text);
  font-size: 1.05rem;
  margin: 0.2rem 0 0;
}

.lt-step-desc {
  font-size: 0.9rem;
  margin-top: 0.45rem;
  color: var(--text-soft);
}

/* ═══════════════════════════════════════════════════
   GRA — Design Manifesto
═══════════════════════════════════════════════════ */
.manifesto-section {
}

.manifesto-glow {
  width: 22rem;
  height: 22rem;
  right: -6rem;
  top: 2rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184, 0, 255, 0.18), transparent 70%);
  filter: blur(0.6rem);
}

.manifesto-layout {
  display: grid;
  gap: 2rem;
  align-items: start;
  margin-top: 1.25rem;
}

.manifesto-list {
  display: grid;
  gap: 1.2rem;
}

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

.manifesto-num {
  font-family: 'Baloo 2', Inter, sans-serif;
  font-size: 2.6rem;
  font-weight: 900;
  line-height: 1;
  color: var(--purple);
  margin: 0;
  opacity: 0.7;
}

.manifesto-title {
  font-weight: 900;
  font-size: 1.1rem;
  color: var(--text);
  margin: 0;
  padding-top: 0.3rem;
}

.manifesto-desc {
  margin-top: 0.45rem;
  font-size: 0.95rem;
  color: var(--text-soft);
}

.manifesto-visual {
  border-radius: 1.3rem;
  overflow: hidden;
  margin: 0;
  padding: 0;
  border: 0.0625rem solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.08);
}

.manifesto-img {
  width: 100%;
  display: block;
  border-radius: 0;
}

/* ═══════════════════════════════════════════════════
   GRA — Game Invite CTA
═══════════════════════════════════════════════════ */
.game-invite {
  overflow: hidden;
}

.invite-floaters {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.11;
  animation: floatSoft 10s ease-in-out infinite;
}

.invite-float-img {
  position: absolute;
  border-radius: 1.4rem;
}

.invite-float-a {
  width: 10rem;
  left: -2rem;
  top: 2.5rem;
  transform: rotate(-8deg);
}

.invite-float-b {
  width: 9rem;
  right: -1.5rem;
  bottom: 1.5rem;
  transform: rotate(7deg);
}

.invite-card {
  position: relative;
  z-index: 2;
  max-width: 46rem;
  margin-inline: auto;
  padding: 2rem 1.75rem;
}

.invite-card p {
  margin-top: 0.9rem;
}

.invite-card-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

/* ═══════════════════════════════════════════════════
   MECHANIKA — Level Simulation
═══════════════════════════════════════════════════ */
.sim-dots {
  inset: 0;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.18) 0 0.07rem,
    transparent 0.07rem
  );
  background-size: 2.6rem 2.6rem;
  opacity: 0.12;
  mask-image: linear-gradient(
    180deg,
    transparent,
    black 20%,
    black 80%,
    transparent
  );
}

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

.sim-tile {
  position: relative;
  border-radius: 1.25rem;
  overflow: hidden;
  border: 0.0625rem solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.07);
  margin: 0;
}

.sim-image {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 0;
  display: block;
}

.sim-overlay-num {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 0.7rem;
  background: rgba(0, 0, 0, 0.72);
  display: grid;
  place-items: center;
  font-family: 'Baloo 2', Inter, sans-serif;
  font-weight: 900;
  color: var(--yellow);
  font-size: 0.95rem;
  line-height: 1;
  pointer-events: none;
  backdrop-filter: blur(0.4rem);
}

.sim-caption {
  padding: 0.75rem 0.9rem;
  font-weight: 800;
  font-size: 0.88rem;
  color: var(--text);
  line-height: 1.35;
}

/* ═══════════════════════════════════════════════════
   MECHANIKA — Strategy Guide
═══════════════════════════════════════════════════ */
.strategy-stripe {
  inset: auto 0 0 0;
  height: 0.55rem;
  background: linear-gradient(
    90deg,
    var(--purple),
    var(--blue),
    var(--yellow),
    var(--red),
    var(--green)
  );
  opacity: 0.28;
  filter: blur(0.04rem);
}

.strategy-layout {
  display: grid;
  gap: 1.5rem;
  align-items: start;
  margin-top: 1rem;
}

.strategy-list {
  display: grid;
  gap: 0.85rem;
}

.strategy-entry {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 0.85rem;
  align-items: start;
  padding: 1rem 1.1rem;
  background: rgba(255, 255, 255, 0.07);
  border: 0.0625rem solid rgba(255, 255, 255, 0.13);
}

.strategy-entry-num {
  font-family: 'Baloo 2', Inter, sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--yellow);
  line-height: 1.1;
  margin: 0;
}

.strategy-entry-title {
  font-weight: 900;
  color: var(--text);
  font-size: 0.98rem;
  margin: 0;
}

.strategy-entry-desc {
  margin-top: 0.4rem;
  font-size: 0.9rem;
  color: var(--text-soft);
}

.strategy-aside {
  display: none;
}

.strategy-aside-img {
  width: 100%;
  display: block;
  border-radius: 1.2rem;
}

/* ═══════════════════════════════════════════════════
   MECHANIKA — Challenge Split
═══════════════════════════════════════════════════ */
.challenge-orb {
  width: 18rem;
  height: 18rem;
  right: -5rem;
  bottom: 2rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 242, 0, 0.14), transparent 68%);
  filter: blur(0.5rem);
}

.challenge-split {
  display: grid;
  gap: 1.75rem;
  align-items: center;
}

.challenge-copy h2 {
  margin-top: 0.5rem;
}

.challenge-copy p {
  margin-top: 0.9rem;
}

.challenge-copy .btn {
  display: inline-flex;
  margin-top: 1.4rem;
}

.challenge-visual {
  position: relative;
  padding: 1.1rem;
  background: rgba(255, 255, 255, 0.08);
  border: 0.0625rem solid rgba(255, 255, 255, 0.16);
  overflow: hidden;
}

.challenge-glow {
  position: absolute;
  inset: 15% 10%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184, 0, 255, 0.38), transparent 70%);
  filter: blur(1.6rem);
  z-index: 0;
}

.challenge-visual-img {
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: 1rem;
  display: block;
}

/* ═══════════════════════════════════════════════════
   GALERIA — Color Analysis
═══════════════════════════════════════════════════ */
.ca-beam {
  inset: 0;
  background:
    radial-gradient(
      ellipse at 50% 100%,
      rgba(111, 85, 255, 0.12),
      transparent 55%
    ),
    radial-gradient(
      ellipse at 10% 50%,
      rgba(255, 21, 21, 0.08),
      transparent 40%
    );
}

.ca-grid {
  display: grid;
  gap: 0.65rem;
  margin-top: 1rem;
}

.ca-swatch {
  padding: 1.35rem 1.1rem;
  border-radius: 1.1rem;
}

.ca-swatch-name {
  font-family: 'Baloo 2', Inter, sans-serif;
  font-size: 1.2rem;
  font-weight: 900;
  line-height: 1;
  color: var(--text);
}

.ca-swatch-role {
  margin-top: 0.45rem;
  font-size: 0.88rem;
  color: var(--text-soft);
}

.cas-yellow {
  background: rgba(255, 242, 0, 0.13);
  border: 0.0625rem solid rgba(255, 242, 0, 0.3);
}
.cas-red {
  background: rgba(255, 21, 21, 0.13);
  border: 0.0625rem solid rgba(255, 21, 21, 0.3);
}
.cas-blue {
  background: rgba(0, 30, 255, 0.18);
  border: 0.0625rem solid rgba(100, 214, 255, 0.38);
}
.cas-green {
  background: rgba(49, 255, 0, 0.11);
  border: 0.0625rem solid rgba(49, 255, 0, 0.28);
}
.cas-orange {
  background: rgba(255, 157, 0, 0.13);
  border: 0.0625rem solid rgba(255, 157, 0, 0.28);
}
.cas-purple {
  background: rgba(184, 0, 255, 0.15);
  border: 0.0625rem solid rgba(184, 0, 255, 0.34);
}

/* ═══════════════════════════════════════════════════
   GALERIA — Brand Showcase
═══════════════════════════════════════════════════ */
.brand-lines {
  inset: 0;
  background:
    linear-gradient(
      60deg,
      transparent 0 40%,
      rgba(198, 160, 102, 0.1) 40% 41%,
      transparent 41% 100%
    ),
    linear-gradient(
      60deg,
      transparent 0 60%,
      rgba(111, 85, 255, 0.08) 60% 61%,
      transparent 61% 100%
    );
}

.brand-items {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
}

.brand-card {
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  min-height: 14rem;
  justify-content: center;
  border-radius: 1.3rem;
}

.brand-card img {
  max-width: 12rem;
  max-height: 7rem;
  width: auto;
  height: auto;
  object-fit: contain;
}

.brand-card figcaption {
  margin-top: 0;
}

.brand-card-dark {
  background: rgba(3, 4, 9, 0.92);
  border: 0.0625rem solid rgba(255, 255, 255, 0.18);
}

.brand-card-mid {
  background: rgba(255, 255, 255, 0.14);
  border: 0.0625rem solid rgba(255, 255, 255, 0.28);
}

.brand-card-label {
  font-weight: 900;
  color: var(--text);
  font-size: 0.95rem;
  margin: 0;
}

.brand-card-desc {
  font-size: 0.85rem;
  color: var(--text-soft);
  margin-top: 0.25rem;
}

/* ═══════════════════════════════════════════════════
   GALERIA — Gallery CTA
═══════════════════════════════════════════════════ */
.gallery-cta-section {
  overflow: hidden;
  text-align: center;
}

.gallery-cta-bg {
  position: absolute;
  right: -3rem;
  top: 50%;
  transform: translateY(-50%) rotate(8deg);
  opacity: 0.11;
  pointer-events: none;
  z-index: 0;
}

.gal-cta-shot {
  width: 11rem;
  border-radius: 1.5rem;
}

.gal-cta-box {
  position: relative;
  z-index: 2;
  max-width: 44rem;
  margin-inline: auto;
  display: grid;
  gap: 1.1rem;
  justify-items: center;
}

.gal-cta-box p {
  max-width: 36rem;
  text-align: center;
}

/* ═══════════════════════════════════════════════════
   KONTAKT — Direct Contact Cards
═══════════════════════════════════════════════════ */
.dc-grid-bg {
  inset: 0;
  background:
    radial-gradient(
      circle at 15% 50%,
      rgba(49, 255, 0, 0.1),
      transparent 30rem
    ),
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size:
    auto,
    5rem 5rem,
    5rem 5rem;
  opacity: 0.8;
}

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

.dc-card {
  padding: 1.5rem;
  display: grid;
  gap: 0.6rem;
  align-content: start;
}

.dc-card-type {
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--yellow);
  margin: 0;
}

.dc-card h3 {
  font-size: 1.15rem;
  margin: 0;
  word-break: break-word;
}

.dc-card p {
  font-size: 0.9rem;
  margin-top: 0.35rem;
}

.dc-card .btn {
  justify-self: start;
  min-height: 2.85rem;
  padding: 0.75rem 1.1rem;
  font-size: 0.9rem;
}

/* ═══════════════════════════════════════════════════
   KONTAKT — Reply Timeline
═══════════════════════════════════════════════════ */
.reply-timeline-section {
  overflow: hidden;
}

.reply-timeline-bg {
  position: absolute;
  right: -4rem;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  opacity: 0.1;
  pointer-events: none;
  z-index: 0;
}

.rt-tile {
  width: 11rem;
  border-radius: 1.2rem;
}

.rt-layout {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 1.75rem;
  align-items: start;
}

.rt-layout > div:first-child > p:last-of-type {
  margin-top: 0.75rem;
}

.rt-track {
  display: grid;
  gap: 0.85rem;
}

.rt-step {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1.1rem 1.2rem;
  border-radius: 1.1rem;
  background: rgba(255, 255, 255, 0.07);
  border: 0.0625rem solid rgba(255, 255, 255, 0.13);
}

.rt-step-num {
  width: 2.85rem;
  height: 2.85rem;
  display: grid;
  place-items: center;
  border-radius: 0.85rem;
  font-family: 'Baloo 2', Inter, sans-serif;
  font-weight: 900;
  font-size: 1.05rem;
  background: linear-gradient(135deg, var(--purple), var(--blue));
  color: var(--text);
  flex-shrink: 0;
}

.rt-step-title {
  font-weight: 900;
  color: var(--text);
  font-size: 1rem;
  margin: 0;
  padding-top: 0.25rem;
}

.rt-step-desc {
  font-size: 0.9rem;
  margin-top: 0.4rem;
  color: var(--text-soft);
}

/* ═══════════════════════════════════════════════════
   KONTAKT — Pre-contact FAQ
═══════════════════════════════════════════════════ */
.pcf-stripe {
  inset: 0;
  background: radial-gradient(
    circle at 90% 20%,
    rgba(255, 157, 0, 0.1),
    transparent 30rem
  );
}

.pcf-layout {
  display: grid;
  gap: 2rem;
  align-items: start;
}

.pcf-heading > p:last-of-type {
  margin-top: 0.75rem;
  max-width: 32rem;
}

.pcf-list {
  display: grid;
  gap: 0.65rem;
  margin-top: 0;
}

.pcf-item {
  border-radius: 1.2rem;
  overflow: hidden;
}

.pcf-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.05rem 1.2rem;
  background: rgba(255, 255, 255, 0.08);
  border: 0.0625rem solid rgba(255, 255, 255, 0.15);
  border-radius: 1.2rem;
  cursor: pointer;
  font-weight: 900;
  color: var(--text);
  font-size: 0.98rem;
  list-style: none;
  transition: background 200ms ease;
}

.pcf-item summary::-webkit-details-marker {
  display: none;
}

.pcf-item summary::after {
  content: '+';
  color: var(--yellow);
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 1;
  transition: transform 220ms ease;
  flex-shrink: 0;
}

.pcf-item[open] summary::after {
  transform: rotate(45deg);
}

.pcf-item[open] summary {
  border-radius: 1.2rem 1.2rem 0 0;
  border-bottom-color: transparent;
  background: rgba(255, 255, 255, 0.12);
}

.pcf-item-body {
  padding: 1rem 1.2rem 1.1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 0.0625rem solid rgba(255, 255, 255, 0.12);
  border-top: none;
  border-radius: 0 0 1.2rem 1.2rem;
}

.pcf-item-body p {
  margin: 0;
}

.pcf-item-body a {
  color: var(--text);
  text-decoration: underline;
  text-decoration-color: var(--purple);
  text-underline-offset: 0.25rem;
}

/* ═══════════════════════════════════════════════════
   404 Page
═══════════════════════════════════════════════════ */
.notfound-section {
  min-height: 38rem;
  align-items: center;
}

.notfound-grid {
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 4rem 4rem;
  mask-image: radial-gradient(circle at center, black 0%, transparent 70%);
}

.notfound-bg {
  position: absolute;
  right: 5%;
  bottom: 0;
  opacity: 0.07;
  pointer-events: none;
  z-index: 0;
}

.notfound-visual {
  width: 16rem;
  border-radius: 1.5rem;
}

.notfound-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.4rem;
}

.notfound-play {
  margin-top: 1rem;
}

/* ═══════════════════════════════════════════════════
   Legal — table styles
═══════════════════════════════════════════════════ */
.legal-content table,
.cookie-table {
  border-collapse: collapse;
  width: 100%;
  font-size: 0.88rem;
  overflow-x: auto;
  display: block;
}

.legal-content th,
.legal-content td {
  text-align: left;
  padding: 0.65rem 0.85rem;
  border: 0.0625rem solid rgba(255, 255, 255, 0.18);
  color: var(--text-soft);
}

.legal-content th {
  font-weight: 900;
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
}

.legal-content code {
  background: rgba(255, 255, 255, 0.1);
  padding: 0.1rem 0.4rem;
  border-radius: 0.35rem;
  font-family: monospace;
  font-size: 0.85em;
}

.legal-content ul {
  padding-left: 1.2rem;
  display: grid;
  gap: 0.4rem;
  margin-top: 0.6rem;
  list-style: disc;
}

.legal-content li {
  color: var(--text-soft);
  padding-left: 0.25rem;
}

/* ═══════════════════════════════════════════════════
   Responsive — new sections
═══════════════════════════════════════════════════ */
@media (min-width: 560px) {
  .qf-track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

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

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

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

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

@media (min-width: 760px) {
  .qf-track {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

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

  .manifesto-layout {
    grid-template-columns: 1fr 0.65fr;
  }

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

  .strategy-layout {
    grid-template-columns: 1fr 0.62fr;
  }

  .strategy-aside {
    display: block;
  }

  .challenge-split {
    grid-template-columns: 1fr 0.82fr;
  }

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

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

  .rt-layout {
    grid-template-columns: 1fr 0.58fr;
  }

  .pcf-layout {
    grid-template-columns: 0.7fr 1fr;
    gap: 3rem;
  }

  .pcf-heading > p:last-of-type {
    max-width: none;
  }
}

@media (min-width: 980px) {
  .palette-strip {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

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

/* ============================================================
   DEMO SECTION
   ============================================================ */

.section-decorator.demo-sparks {
  inset: -3rem -4rem auto auto;
  width: 30rem;
  height: 30rem;
  background:
    radial-gradient(
      circle at 68% 32%,
      rgba(184, 0, 255, 0.15) 0%,
      transparent 52%
    ),
    radial-gradient(
      circle at 28% 72%,
      rgba(49, 255, 0, 0.07) 0%,
      transparent 48%
    );
  border-radius: 50%;
}

.demo-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.demo-header h2 {
  margin-top: 0.45rem;
}

.demo-lead {
  max-width: 50rem;
  margin-inline: auto;
  margin-top: 0.7rem;
  font-size: 1.05rem;
}

.demo-arena {
  display: grid;
  gap: 2rem;
}

/* ── Grids ─────────────────────────────────────── */

.demo-grids {
  display: grid;
  gap: 1.5rem;
}

.demo-grid-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.demo-label {
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.48);
}

.demo-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.28rem;
  padding: 0.7rem;
  background: rgba(255, 255, 255, 0.04);
  border: 0.0625rem solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
}

.demo-cell {
  aspect-ratio: 1;
  border-radius: 0.3rem;
  background: rgba(255, 255, 255, 0.07);
  border: 0.0625rem solid rgba(255, 255, 255, 0.09);
  transition:
    background 200ms ease,
    border-color 200ms ease;
}

.demo-cell[data-color='yellow'] {
  background: var(--yellow);
  border-color: var(--yellow);
}
.demo-cell[data-color='red'] {
  background: var(--red);
  border-color: var(--red);
}
.demo-cell[data-color='blue'] {
  background: var(--blue);
  border-color: var(--blue);
}
.demo-cell[data-color='green'] {
  background: var(--green);
  border-color: var(--green);
}
.demo-cell[data-color='orange'] {
  background: var(--orange);
  border-color: var(--orange);
}
.demo-cell[data-color='purple'] {
  background: var(--purple);
  border-color: var(--purple);
}
.demo-cell[data-color='rose'] {
  background: var(--rose);
  border-color: var(--rose);
}
.demo-cell[data-color='steel'] {
  background: var(--steel);
  border-color: var(--steel);
}

/* ── Controls wrapper ────────────────────────────── */

.demo-controls-wrap {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.demo-ctrl-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.44);
  margin-bottom: 0.5rem;
}

/* ── Color picker ──────────────────────────────── */

.demo-colors-group {
  background: rgba(255, 255, 255, 0.045);
  border: 0.0625rem solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  padding: 0.95rem 1.1rem;
}

.demo-colors {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}

.demo-swatch {
  width: 2.55rem;
  height: 2.55rem;
  border-radius: 50%;
  border: 2px solid transparent;
  transition:
    transform 140ms ease,
    border-color 140ms ease,
    box-shadow 140ms ease;
  flex-shrink: 0;
}

.demo-swatch[data-color-key='yellow'] {
  background: var(--yellow);
}
.demo-swatch[data-color-key='red'] {
  background: var(--red);
}
.demo-swatch[data-color-key='blue'] {
  background: var(--blue);
}
.demo-swatch[data-color-key='green'] {
  background: var(--green);
}
.demo-swatch[data-color-key='orange'] {
  background: var(--orange);
}
.demo-swatch[data-color-key='purple'] {
  background: var(--purple);
}
.demo-swatch[data-color-key='rose'] {
  background: var(--rose);
}
.demo-swatch[data-color-key='steel'] {
  background: var(--steel);
}

.demo-swatch:hover {
  transform: scale(1.14);
}

.demo-swatch.is-active {
  border-color: rgba(255, 255, 255, 0.9);
  transform: scale(1.2);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.26);
}

/* ── Axis controls (rows / columns) ─────────────── */

.demo-axes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  background: rgba(255, 255, 255, 0.045);
  border: 0.0625rem solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  padding: 0.95rem 1.1rem;
}

.demo-axis-btns {
  display: flex;
  flex-direction: column;
  gap: 0.38rem;
}

.demo-axis-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.46rem;
  padding: 0.58rem 0.8rem;
  min-height: 2.65rem;
  border: 0.0625rem solid rgba(255, 255, 255, 0.15);
  border-radius: 0.65rem;
  background: rgba(255, 255, 255, 0.07);
  color: var(--text);
  font-size: 0.85rem;
  font-weight: 700;
  text-align: left;
  width: 100%;
  transition:
    background 140ms ease,
    border-color 140ms ease,
    transform 100ms ease;
}

.demo-axis-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-1px);
}

.demo-axis-btn:active {
  transform: scale(0.96);
}

.demo-axis-dot {
  display: inline-block;
  width: 0.72rem;
  height: 0.72rem;
  min-width: 0.72rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
  transition: background 140ms ease;
}

.demo-axis-dot[data-color='yellow'] {
  background: var(--yellow);
}
.demo-axis-dot[data-color='red'] {
  background: var(--red);
}
.demo-axis-dot[data-color='blue'] {
  background: var(--blue);
}
.demo-axis-dot[data-color='green'] {
  background: var(--green);
}
.demo-axis-dot[data-color='orange'] {
  background: var(--orange);
}
.demo-axis-dot[data-color='purple'] {
  background: var(--purple);
}
.demo-axis-dot[data-color='rose'] {
  background: var(--rose);
}
.demo-axis-dot[data-color='steel'] {
  background: var(--steel);
}

/* ── History ────────────────────────────────────── */

.demo-history-wrap {
  background: rgba(255, 255, 255, 0.045);
  border: 0.0625rem solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  padding: 0.95rem 1.1rem;
}

.demo-history-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  max-height: 8rem;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.16) transparent;
}

.demo-history-list::-webkit-scrollbar {
  width: 0.25rem;
}

.demo-history-list::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.18);
  border-radius: 999rem;
}

.demo-history-empty {
  font-size: 0.85rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.3);
}

.demo-history-item {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.85rem;
  color: var(--text-soft);
  line-height: 1.35;
}

.demo-history-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.3rem;
  width: 1.3rem;
  height: 1.3rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  font-size: 0.67rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.65);
  flex-shrink: 0;
}

.demo-history-dot {
  display: inline-block;
  width: 0.58rem;
  height: 0.58rem;
  min-width: 0.58rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
}

.demo-history-dot[data-color='yellow'] {
  background: var(--yellow);
}
.demo-history-dot[data-color='red'] {
  background: var(--red);
}
.demo-history-dot[data-color='blue'] {
  background: var(--blue);
}
.demo-history-dot[data-color='green'] {
  background: var(--green);
}
.demo-history-dot[data-color='orange'] {
  background: var(--orange);
}
.demo-history-dot[data-color='purple'] {
  background: var(--purple);
}
.demo-history-dot[data-color='rose'] {
  background: var(--rose);
}
.demo-history-dot[data-color='steel'] {
  background: var(--steel);
}

/* ── Action buttons ─────────────────────────────── */

.demo-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

/* ── Feedback ───────────────────────────────────── */

.demo-feedback {
  border-radius: 0.75rem;
  padding: 0.85rem 1rem;
  font-weight: 700;
  font-size: 0.9rem;
  line-height: 1.5;
  display: none;
}

.demo-feedback:not(:empty) {
  display: block;
}

.demo-feedback.is-success {
  background: rgba(49, 255, 0, 0.09);
  border: 0.0625rem solid rgba(49, 255, 0, 0.28);
  color: #62ff35;
}

.demo-feedback.is-error {
  background: rgba(150, 53, 109, 0.15);
  border: 0.0625rem solid rgba(150, 53, 109, 0.38);
  color: #e892bb;
}

/* ── Decorative image ───────────────────────────── */

.demo-deco-wrap {
  position: absolute;
  bottom: 2.5rem;
  right: 0;
  width: 7.5rem;
  opacity: 0.1;
  pointer-events: none;
  display: none;
  border-radius: 0.85rem;
  overflow: hidden;
}

.demo-deco-img {
  width: 100%;
  height: auto;
}

/* ── Responsive ─────────────────────────────────── */

@media (min-width: 560px) {
  .demo-grids {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 760px) {
  .demo-arena {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: start;
  }

  .demo-deco-wrap {
    display: block;
    right: -0.5rem;
  }
}

@media (min-width: 980px) {
  .demo-arena {
    grid-template-columns: 1.15fr 0.85fr;
  }

  .demo-deco-wrap {
    width: 10rem;
    opacity: 0.14;
  }
}
