:root {
  --bg: #f4f6ff;
  --bg-soft: #fbfcff;
  --card: rgba(255, 255, 255, 0.9);
  --card-strong: #ffffff;
  --line: rgba(97, 93, 250, 0.14);
  --line-strong: rgba(97, 93, 250, 0.24);
  --ink: #262843;
  --ink-soft: #45486c;
  --muted: #71759b;
  --brand: #615dfa;
  --brand-deep: #7750f8;
  --brand-strong: #23d2e2;
  --signal: #ffd86b;
  --shadow: 0 34px 88px rgba(67, 61, 126, 0.17);
  --shadow-soft: 0 18px 44px rgba(67, 61, 126, 0.11);
  --radius-xl: 40px;
  --radius-lg: 28px;
  --radius-md: 22px;
  --radius-sm: 18px;
  --container: 1260px;
  --headline: "Titillium Web", "Bahnschrift SemiBold", "Trebuchet MS", sans-serif;
  --body: "Rajdhani", "Segoe UI Variable Text", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

:where(section[id], main[id], aside[id]) {
  scroll-margin-top: 136px;
}

body {
  margin: 0;
  font-family: var(--body);
  color: var(--ink);
  background:
    radial-gradient(circle at 12% -4%, rgba(97, 93, 250, 0.22), transparent 28%),
    radial-gradient(circle at 88% 4%, rgba(35, 210, 226, 0.18), transparent 30%),
    radial-gradient(circle at 52% 110%, rgba(255, 216, 107, 0.18), transparent 28%),
    linear-gradient(180deg, #f5f6ff 0%, #f8fbff 42%, #f7f7fb 100%);
  min-height: 100vh;
}

body.has-modal {
  overflow: hidden;
}

body.has-scrolled .site-header {
  background: rgba(245, 247, 255, 0.78);
}

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

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

.skip-link {
  position: fixed;
  left: 18px;
  top: 14px;
  z-index: 40;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(38, 40, 67, 0.94);
  color: #f7f8ff;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

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

.text-link {
  color: var(--brand-deep);
  font-weight: inherit;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-decoration-color: rgba(119, 80, 248, 0.38);
  text-underline-offset: 0.18em;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.text-link:hover {
  color: var(--brand-strong);
  text-decoration-color: rgba(35, 210, 226, 0.54);
}

.approach-manifest .text-link,
.compare-card-strong .text-link {
  color: #f7f8ff;
  text-decoration-color: rgba(247, 248, 255, 0.42);
}

.approach-manifest .text-link:hover,
.compare-card-strong .text-link:hover {
  color: #dffcff;
  text-decoration-color: rgba(223, 252, 255, 0.72);
}

button,
input,
textarea {
  font: inherit;
}

::selection {
  background: rgba(97, 93, 250, 0.18);
}

.page-shell {
  position: relative;
  overflow: hidden;
  padding-top: 126px;
}

.page-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(97, 93, 250, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(97, 93, 250, 0.03) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.48), transparent 96%);
}

.page-shell::after {
  content: "";
  position: absolute;
  inset: 120px -10% auto;
  height: 960px;
  pointer-events: none;
  background:
    radial-gradient(circle at 14% 18%, rgba(255, 255, 255, 0.78), transparent 18%),
    radial-gradient(circle at 78% 8%, rgba(97, 93, 250, 0.16), transparent 24%),
    radial-gradient(circle at 58% 28%, rgba(35, 210, 226, 0.12), transparent 20%);
  filter: blur(6px);
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  background: transparent;
  backdrop-filter: blur(16px);
  border-bottom: 0;
  transition: background 0.25s ease;
}

.thanks-modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(24, 22, 44, 0.38);
  backdrop-filter: blur(10px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
}

.thanks-modal[hidden] {
  display: none;
}

.thanks-modal.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.thanks-modal-dialog {
  width: min(100%, 520px);
  padding: 28px 28px 24px;
  border-radius: 32px;
  border: 1px solid rgba(97, 93, 250, 0.14);
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 216, 107, 0.16), transparent 32%),
    radial-gradient(circle at 0% 100%, rgba(35, 210, 226, 0.16), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 247, 255, 0.95));
  box-shadow: 0 34px 88px rgba(29, 27, 59, 0.26);
}

.thanks-modal-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.thanks-modal-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(97, 93, 250, 0.12);
  color: var(--brand-deep);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.thanks-modal-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(97, 93, 250, 0.12);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(67, 61, 126, 0.1);
}

.thanks-modal-copy {
  margin-top: 16px;
  display: grid;
  gap: 12px;
}

.thanks-modal-copy h3 {
  margin: 0;
  font-family: var(--headline);
  font-size: clamp(34px, 5vw, 46px);
  line-height: 0.96;
  letter-spacing: -0.04em;
}

.thanks-modal-copy p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.56;
}

.thanks-modal-actions {
  margin-top: 22px;
  display: flex;
  justify-content: flex-start;
}

.project-modal {
  position: fixed;
  inset: 0;
  z-index: 48;
  display: grid;
  place-items: center;
  padding: 20px;
  overflow-y: auto;
  overscroll-behavior: contain;
  background: rgba(24, 22, 44, 0.34);
  backdrop-filter: blur(10px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
}

.project-modal[hidden] {
  display: none;
}

.project-modal.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.project-modal-dialog {
  width: min(100%, 640px);
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  padding: 28px 28px 24px;
  border-radius: 32px;
  border: 1px solid rgba(97, 93, 250, 0.14);
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 216, 107, 0.14), transparent 32%),
    radial-gradient(circle at 0% 100%, rgba(35, 210, 226, 0.14), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 247, 255, 0.95));
  box-shadow: 0 34px 88px rgba(29, 27, 59, 0.24);
}

.project-modal-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.project-modal-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(97, 93, 250, 0.12);
  color: var(--brand-deep);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.project-modal-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(97, 93, 250, 0.12);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(67, 61, 126, 0.1);
}

.project-modal-copy {
  margin-top: 16px;
  display: grid;
  gap: 14px;
}

.project-modal-copy h3 {
  margin: 0;
  font-family: var(--headline);
  font-size: clamp(32px, 5vw, 42px);
  line-height: 0.96;
  letter-spacing: -0.04em;
}

.project-modal-copy p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.56;
}

.project-modal .contact-form {
  margin-top: 2px;
}

.project-modal .form-actions {
  justify-content: flex-start;
}

.project-modal .form-actions .button {
  min-width: 0;
}

.to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 25;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid rgba(97, 93, 250, 0.16);
  border-radius: 999px;
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 216, 107, 0.16), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 247, 255, 0.92));
  box-shadow: 0 20px 40px rgba(67, 61, 126, 0.14);
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px);
  transition: opacity 0.2s ease, transform 0.2s ease, color 0.2s ease;
}

.to-top::before {
  content: "";
  width: 10px;
  height: 10px;
  border-top: 2px solid currentColor;
  border-left: 2px solid currentColor;
  transform: rotate(45deg) translate(1px, 1px);
}

.to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.to-top:hover {
  color: var(--brand);
}

.header-row {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 14px 16px;
  min-height: 86px;
  margin-top: 14px;
  padding: 12px 18px 12px 20px;
  border-radius: 30px;
  border: 1px solid rgba(97, 93, 250, 0.18);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(252, 252, 255, 0.76));
  box-shadow: 0 24px 56px rgba(66, 59, 126, 0.14);
}

.header-row::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 16%, rgba(35, 210, 226, 0.14), transparent 18%),
    radial-gradient(circle at 88% 0%, rgba(97, 93, 250, 0.15), transparent 24%);
}

.header-row > * {
  position: relative;
  z-index: 1;
}

.header-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  justify-self: end;
  gap: 14px 16px;
  min-width: 0;
}

.header-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(97, 93, 250, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 24px rgba(67, 61, 126, 0.08);
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.header-toggle:hover {
  transform: translateY(-1px);
  border-color: rgba(97, 93, 250, 0.2);
  box-shadow: 0 16px 30px rgba(67, 61, 126, 0.12);
}

.header-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--ink);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.header-row.is-menu-open .header-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

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

.header-row.is-menu-open .header-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.scroll-progress {
  height: 4px;
  width: min(calc(100% - 40px), var(--container));
  margin: 10px auto 0;
  border-radius: 999px;
  transform-origin: left center;
  transform: scaleX(0);
  background: linear-gradient(90deg, #23d2e2 0%, #615dfa 58%, #f6d94a 100%);
  box-shadow: 0 10px 24px rgba(97, 93, 250, 0.22);
}

.page-main {
  display: grid;
  gap: 0;
}

.inner-hero {
  position: relative;
  padding: 10px 0 26px;
}

.inner-hero::before {
  content: "";
  position: absolute;
  left: 20px;
  right: 20px;
  top: 0;
  height: 560px;
  border-radius: 52px;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.76), rgba(245, 247, 255, 0.58)),
    url("assets/vikinger-sky.jpg") center top / cover;
  background-blend-mode: screen, normal;
  opacity: 0.42;
}

.inner-hero-shell {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.76fr);
  gap: 28px;
  padding: 42px;
  border-radius: 48px;
  border: 1px solid rgba(97, 93, 250, 0.18);
  background:
    radial-gradient(circle at 100% 0%, rgba(35, 210, 226, 0.12), transparent 24%),
    radial-gradient(circle at 0% 100%, rgba(255, 216, 107, 0.14), transparent 20%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.88), rgba(241, 245, 255, 0.8));
  box-shadow: 0 38px 92px rgba(66, 59, 126, 0.16);
}

.inner-hero-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(97, 93, 250, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(97, 93, 250, 0.04) 1px, transparent 1px);
  background-size: 76px 76px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.28), transparent 92%);
}

.inner-hero-shell > * {
  position: relative;
  z-index: 1;
}

.inner-hero-copy,
.inner-hero-side {
  display: grid;
  align-content: start;
  gap: 18px;
}

.hero-breadcrumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.hero-breadcrumbs a {
  color: var(--brand-deep);
}

.inner-hero-copy h1 {
  margin: 0;
  max-width: 10ch;
  font-family: var(--headline);
  font-size: clamp(52px, 6vw, 82px);
  line-height: 0.9;
  letter-spacing: -0.05em;
}

.inner-hero-copy p {
  margin: 0;
  max-width: 34ch;
  color: var(--ink-soft);
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 1.56;
}

.cases-hero-shell {
  grid-template-columns: minmax(340px, 0.78fr) minmax(0, 1.12fr);
  align-items: center;
}

.cases-hero-stage {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  min-height: 460px;
  border-radius: 34px;
  border: 1px solid rgba(97, 93, 250, 0.14);
  background:
    radial-gradient(circle at 100% 0%, rgba(35, 210, 226, 0.16), transparent 24%),
    radial-gradient(circle at 0% 100%, rgba(255, 216, 107, 0.12), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 247, 255, 0.94));
  box-shadow: 0 28px 68px rgba(67, 61, 126, 0.14);
}

.cases-hero-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(97, 93, 250, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(97, 93, 250, 0.03) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.34), transparent 92%);
}

.cases-hero-browser {
  width: min(calc(100% - 52px), 440px);
  z-index: 1;
}

.cases-hero-shot {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 20px;
  border: 1px solid rgba(97, 93, 250, 0.12);
  box-shadow: 0 18px 34px rgba(67, 61, 126, 0.12);
}

.cases-hero-card {
  position: absolute;
  top: 22px;
  right: 22px;
  z-index: 2;
  display: grid;
  gap: 10px;
  width: min(240px, calc(100% - 44px));
  padding: 18px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 216, 107, 0.22), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 247, 226, 0.9));
  border: 1px solid rgba(255, 216, 107, 0.22);
  box-shadow: 0 20px 40px rgba(67, 61, 126, 0.12);
}

.cases-hero-card span {
  display: block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-deep);
}

.cases-hero-card strong {
  display: block;
  font-family: var(--headline);
  font-size: 28px;
  line-height: 1.04;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.cases-hero-card p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.58;
}

.page-intro-grid,
.detail-grid,
.format-grid,
.story-grid,
.page-link-grid {
  display: grid;
  gap: 16px;
}

.page-intro-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding: 1px;
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(97, 93, 250, 0.18), rgba(35, 210, 226, 0.14), rgba(255, 216, 107, 0.14));
  box-shadow: 0 22px 46px rgba(67, 61, 126, 0.1);
}

.detail-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  padding: 1px;
  border-radius: 30px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(97, 93, 250, 0.16), rgba(35, 210, 226, 0.12));
  box-shadow: 0 22px 46px rgba(67, 61, 126, 0.08);
}

.format-grid {
  gap: 1px;
  padding: 1px;
  border-radius: 30px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(97, 93, 250, 0.16), rgba(35, 210, 226, 0.12), rgba(255, 216, 107, 0.12));
  box-shadow: 0 22px 46px rgba(67, 61, 126, 0.08);
}

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

.fit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.fit-card {
  position: relative;
  overflow: hidden;
  padding: 24px;
  border-radius: 28px;
  border: 1px solid rgba(97, 93, 250, 0.12);
  background:
    radial-gradient(circle at 100% 0%, rgba(35, 210, 226, 0.12), transparent 28%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(246, 249, 255, 0.9));
  box-shadow: 0 22px 44px rgba(67, 61, 126, 0.08);
}

.fit-card-negative {
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 216, 107, 0.16), transparent 28%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(255, 248, 232, 0.9));
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 26px;
  color: var(--ink-soft);
  line-height: 1.55;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, #23d2e2, #86f0a7);
  box-shadow: 0 0 0 5px rgba(35, 210, 226, 0.12);
}

.check-list-negative li::before {
  background: linear-gradient(135deg, #ffd86b, #ff8b6b);
  box-shadow: 0 0 0 5px rgba(255, 216, 107, 0.14);
}

.scope-table {
  display: grid;
  gap: 10px;
}

.scope-row {
  display: grid;
  grid-template-columns: minmax(150px, 0.28fr) minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(97, 93, 250, 0.1);
  box-shadow: 0 12px 28px rgba(67, 61, 126, 0.06);
}

.scope-row strong {
  color: var(--ink);
  font-family: var(--headline);
  font-size: 20px;
  letter-spacing: -0.02em;
}

.scope-row span {
  color: var(--ink-soft);
  line-height: 1.5;
}

.story-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  padding: 1px;
  border-radius: 30px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(97, 93, 250, 0.16), rgba(35, 210, 226, 0.12), rgba(255, 216, 107, 0.12));
  box-shadow: 0 22px 46px rgba(67, 61, 126, 0.08);
}

.detail-card,
.story-card,
.page-link-card {
  position: relative;
  overflow: hidden;
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 24px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(97, 93, 250, 0.12);
  box-shadow: 0 18px 42px rgba(67, 61, 126, 0.1);
}

.page-intro-grid .metric-card {
  min-height: 100%;
  padding: 18px 18px 20px;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
  background: rgba(255, 255, 255, 0.98);
}

.page-intro-grid .metric-card::before {
  display: none;
}

.page-intro-grid .metric-card:nth-child(1) {
  background: linear-gradient(180deg, rgba(242, 248, 255, 0.98), rgba(248, 250, 255, 0.95));
}

.page-intro-grid .metric-card:nth-child(2) {
  background: linear-gradient(180deg, rgba(248, 246, 255, 0.98), rgba(250, 249, 255, 0.95));
}

.page-intro-grid .metric-card:nth-child(3) {
  background: linear-gradient(180deg, rgba(255, 249, 235, 0.98), rgba(255, 252, 245, 0.95));
}

.detail-grid .detail-card,
.format-grid .detail-card,
.story-grid .story-card {
  min-height: 100%;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
  background: rgba(255, 255, 255, 0.98);
}

.detail-grid .detail-card:nth-child(4n + 1),
.format-grid .detail-card:nth-child(3n + 1),
.story-grid .story-card:nth-child(4n + 1) {
  background: linear-gradient(180deg, rgba(242, 248, 255, 0.98), rgba(248, 250, 255, 0.95));
}

.detail-grid .detail-card:nth-child(4n + 2),
.format-grid .detail-card:nth-child(3n + 2),
.story-grid .story-card:nth-child(4n + 2) {
  background: linear-gradient(180deg, rgba(248, 246, 255, 0.98), rgba(250, 249, 255, 0.95));
}

.detail-grid .detail-card:nth-child(4n + 3),
.format-grid .detail-card:nth-child(3n + 3),
.story-grid .story-card:nth-child(4n + 3) {
  background: linear-gradient(180deg, rgba(255, 249, 235, 0.98), rgba(255, 252, 245, 0.95));
}

.detail-grid .detail-card:nth-child(4n + 4),
.story-grid .story-card:nth-child(4n + 4) {
  background: linear-gradient(180deg, rgba(241, 250, 247, 0.98), rgba(247, 252, 250, 0.95));
}

.detail-card h3,
.story-card h3,
.page-link-card h3 {
  margin: 0 0 12px;
  font-family: var(--headline);
  font-size: 30px;
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.detail-card p,
.story-card p,
.page-link-card p,
.page-link-card ul {
  margin: 0;
  color: var(--muted);
  line-height: 1.64;
}

.page-link-card ul {
  padding-left: 18px;
}

.page-link-card .button {
  justify-self: start;
  margin-top: 8px;
}

.page-link-grid {
  display: none;
}

.page-link-thumb {
  position: relative;
  min-height: 198px;
  margin: -4px -4px 6px;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(97, 93, 250, 0.14), rgba(35, 210, 226, 0.1));
  border: 1px solid rgba(97, 93, 250, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.62);
}

.page-link-thumb img:first-child {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 0.92;
}

.page-link-thumb::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(35, 31, 58, 0) 42%, rgba(35, 31, 58, 0.3) 100%),
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: auto, 52px 52px, 52px 52px;
  pointer-events: none;
  z-index: 1;
}

.page-link-mascot {
  position: absolute;
  right: 12px;
  bottom: 10px;
  width: 88px;
  z-index: 2;
  filter: drop-shadow(0 18px 26px rgba(49, 40, 111, 0.24));
}

.page-atlas {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: 20px;
}

.page-atlas-stage {
  display: none;
}

.format-slider {
  margin-top: 28px;
}

.format-slider-shell {
  position: relative;
  min-height: 400px;
  padding: 22px;
  overflow: hidden;
  border-radius: 36px;
  border: 1px solid rgba(97, 93, 250, 0.14);
  background:
    radial-gradient(circle at 100% 0%, rgba(35, 210, 226, 0.16), transparent 24%),
    radial-gradient(circle at 0% 100%, rgba(255, 216, 107, 0.14), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 247, 255, 0.94));
  box-shadow: 0 30px 72px rgba(67, 61, 126, 0.16);
}

.format-slider-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 60px 60px;
}

.format-slide {
  position: absolute;
  inset: 22px;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(260px, 0.76fr);
  align-items: stretch;
  gap: 28px;
  opacity: 0;
  pointer-events: none;
  transform: translateX(24px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.format-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.format-slide-media {
  display: grid;
  place-items: center;
  align-self: center;
  height: clamp(310px, 26vw, 360px);
  min-height: clamp(310px, 26vw, 360px);
  overflow: hidden;
  padding: 0;
  border-radius: 30px;
  background:
    radial-gradient(circle at 100% 0%, rgba(35, 210, 226, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(247, 249, 255, 0.92));
  border: 1px solid rgba(97, 93, 250, 0.1);
  box-shadow: 0 22px 42px rgba(67, 61, 126, 0.1);
}

.format-slide-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.format-slide-copy {
  display: grid;
  align-content: center;
  gap: 14px;
}

.format-slide-copy span {
  display: block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-deep);
}

.format-slide-copy strong {
  display: block;
  margin: 0;
  font-family: var(--headline);
  font-size: clamp(34px, 3.1vw, 46px);
  line-height: 1.02;
  letter-spacing: -0.04em;
  color: var(--ink);
}

.format-slide-copy p {
  margin: 0;
  max-width: 32ch;
  color: var(--ink-soft);
  line-height: 1.6;
}

.format-slider-nav {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 16px;
}

.format-slider-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(97, 93, 250, 0.12);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 24px rgba(67, 61, 126, 0.08);
  color: var(--brand-deep);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.format-slider-button:hover {
  transform: translateY(-1px);
  border-color: rgba(97, 93, 250, 0.2);
  box-shadow: 0 16px 28px rgba(67, 61, 126, 0.1);
}

.format-slider-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex: 0 0 auto;
}

.format-slider-dot {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 999px;
  background: rgba(97, 93, 250, 0.22);
  cursor: pointer;
  transition: width 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.format-slider-dot.is-active {
  width: 34px;
  background: linear-gradient(90deg, #23d2e2, #615dfa, #ffd86b);
}

.format-slider-dot:hover {
  transform: scale(1.05);
}

.page-atlas-main {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 0.96;
}

.page-atlas-overlay {
  position: absolute;
  left: 20px;
  bottom: 20px;
  width: min(48%, 250px);
  border-radius: 24px;
  border: 1px solid rgba(97, 93, 250, 0.14);
  box-shadow: 0 24px 48px rgba(67, 61, 126, 0.22);
  z-index: 2;
}

.page-atlas-mascot {
  display: none;
}

.page-atlas-note {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 3;
  display: grid;
  gap: 10px;
  width: min(290px, calc(100% - 40px));
  padding: 18px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 216, 107, 0.22), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 247, 226, 0.9));
  border: 1px solid rgba(255, 216, 107, 0.22);
  box-shadow: 0 22px 42px rgba(67, 61, 126, 0.14);
}

.page-atlas-note span,
.page-atlas-kicker {
  display: block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-deep);
}

.page-atlas-note strong,
.page-atlas-item strong {
  display: block;
  font-family: var(--headline);
  font-size: 28px;
  line-height: 1.04;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.page-atlas-note p,
.page-atlas-item p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.58;
}

.page-atlas-rail {
  display: grid;
  gap: 1px;
  padding: 1px;
  border-radius: 34px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(97, 93, 250, 0.18), rgba(35, 210, 226, 0.16), rgba(255, 216, 107, 0.16));
  box-shadow: 0 24px 56px rgba(67, 61, 126, 0.1);
}

.page-atlas-item {
  position: relative;
  display: grid;
  gap: 12px;
  padding: 22px 22px 24px 26px;
  background: rgba(255, 255, 255, 0.98);
  text-decoration: none;
}

.page-atlas-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 20px;
  bottom: 20px;
  width: 5px;
  border-radius: 0 8px 8px 0;
  background: linear-gradient(180deg, #23d2e2, #615dfa, #ffd86b);
}

.page-atlas-item:nth-child(1) {
  background: linear-gradient(180deg, rgba(242, 248, 255, 0.98), rgba(248, 250, 255, 0.95));
}

.page-atlas-item:nth-child(2) {
  background: linear-gradient(180deg, rgba(248, 246, 255, 0.98), rgba(250, 249, 255, 0.95));
}

.page-atlas-item:nth-child(3) {
  background: linear-gradient(180deg, rgba(255, 249, 235, 0.98), rgba(255, 252, 245, 0.95));
}

.page-atlas-item:nth-child(4) {
  background: linear-gradient(180deg, rgba(241, 250, 247, 0.98), rgba(247, 252, 250, 0.95));
}

.page-atlas-item:nth-child(5) {
  background: linear-gradient(180deg, rgba(245, 244, 255, 0.98), rgba(249, 248, 255, 0.95));
}

.page-atlas-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.page-atlas-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(97, 93, 250, 0.1);
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 700;
  box-shadow: 0 12px 24px rgba(67, 61, 126, 0.06);
}

.page-summary-card {
  position: relative;
  overflow: hidden;
  display: grid;
  align-content: start;
  gap: 16px;
  padding: 24px;
  border-radius: 32px;
  background:
    radial-gradient(circle at 100% 0%, rgba(35, 210, 226, 0.14), transparent 24%),
    linear-gradient(180deg, rgba(36, 34, 58, 0.98), rgba(76, 58, 145, 0.98));
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 30px 70px rgba(55, 44, 114, 0.24);
}

.page-summary-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.28), transparent 88%);
}

.page-summary-card::after {
  content: "";
  position: absolute;
  inset: auto -8% -18% 46%;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 216, 107, 0.28), transparent 66%);
  filter: blur(10px);
}

.page-summary-card > * {
  position: relative;
  z-index: 1;
}

.page-summary-card h3 {
  margin: 0;
  font-family: var(--headline);
  font-size: 34px;
  line-height: 1.02;
}

.page-summary-card p,
.page-summary-card li {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.64;
}

.page-summary-card ul {
  margin: 0;
  padding-left: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.page-summary-card li {
  position: relative;
  padding: 12px 14px 12px 30px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.page-summary-card li::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 18px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffd86b, #23d2e2);
}

.summary-visual {
  position: relative;
  min-height: 270px;
  margin-top: 4px;
}

.summary-visual::before,
.summary-visual::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.summary-visual::before {
  left: 50%;
  top: 18px;
  width: 168px;
  height: 168px;
  transform: translateX(-50%);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.summary-visual::after {
  right: 8px;
  top: 10px;
  width: 72px;
  height: 72px;
  background: radial-gradient(circle, rgba(35, 210, 226, 0.28), rgba(35, 210, 226, 0));
  filter: blur(4px);
}

.summary-visual-frame {
  position: relative;
  height: 100%;
  min-height: 270px;
  border-radius: 24px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.24),
    0 22px 46px rgba(17, 16, 33, 0.18);
}

.summary-visual-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 0.9;
}

.summary-visual-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(17, 16, 33, 0) 46%, rgba(17, 16, 33, 0.34) 100%),
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: auto, 44px 44px, 44px 44px;
  pointer-events: none;
  z-index: 1;
}

.summary-visual-mascot {
  position: absolute;
  right: 18px;
  bottom: 14px;
  width: 116px;
  z-index: 3;
  filter: drop-shadow(0 22px 30px rgba(17, 16, 33, 0.24));
}

.cta-visual {
  position: relative;
  min-height: 178px;
}

.cta-visual-frame {
  position: relative;
  min-height: 178px;
  border-radius: 24px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(97, 93, 250, 0.12);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.74),
    0 18px 36px rgba(67, 61, 126, 0.1);
}

.cta-visual-frame img {
  width: 100%;
  height: 100%;
  min-height: 178px;
  object-fit: cover;
  object-position: center top;
  opacity: 0.94;
}

.cta-visual-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0) 46%, rgba(38, 40, 67, 0.2) 100%),
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: auto, 44px 44px, 44px 44px;
  pointer-events: none;
  z-index: 1;
}

.cta-visual-mascot {
  position: absolute;
  right: 14px;
  bottom: 10px;
  width: 98px;
  z-index: 2;
  filter: drop-shadow(0 18px 28px rgba(49, 40, 111, 0.22));
}

.cta-banner {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.78fr);
  gap: 20px;
  align-items: stretch;
  padding: 28px 30px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 0% 100%, rgba(35, 210, 226, 0.12), transparent 20%),
    radial-gradient(circle at 100% 0%, rgba(255, 216, 107, 0.18), transparent 24%),
    linear-gradient(135deg, rgba(248, 249, 255, 0.98), rgba(255, 244, 214, 0.74));
  border: 1px solid rgba(97, 93, 250, 0.14);
  box-shadow: 0 24px 56px rgba(67, 61, 126, 0.1);
}

.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(97, 93, 250, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(97, 93, 250, 0.03) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.22), transparent 88%);
}

.cta-banner::after {
  content: "Launch";
  position: absolute;
  right: 26px;
  top: 10px;
  font-family: var(--headline);
  font-size: clamp(64px, 9vw, 120px);
  line-height: 0.8;
  letter-spacing: -0.08em;
  color: rgba(97, 93, 250, 0.05);
  pointer-events: none;
}

.cta-banner > * {
  position: relative;
  z-index: 1;
}

.cta-banner h2,
.cta-banner h3 {
  margin: 0 0 10px;
  font-family: var(--headline);
  font-size: clamp(34px, 4vw, 52px);
  line-height: 0.94;
  letter-spacing: -0.04em;
}

.cta-banner p {
  margin: 0;
  max-width: 40ch;
  color: var(--ink-soft);
  line-height: 1.6;
}

.cta-banner .hero-actions {
  display: grid;
  gap: 1px;
  padding: 1px;
  border-radius: 24px;
  overflow: hidden;
  align-self: stretch;
  background: linear-gradient(135deg, rgba(97, 93, 250, 0.18), rgba(35, 210, 226, 0.16), rgba(255, 216, 107, 0.16));
  box-shadow: 0 20px 40px rgba(67, 61, 126, 0.1);
}

.cta-banner .hero-actions .button {
  width: 100%;
  min-height: 58px;
  border-radius: 0;
  box-shadow: none;
}

.cta-banner .hero-actions .button-primary {
  background: linear-gradient(135deg, #7750f8 0%, #615dfa 48%, #23d2e2 100%);
}

.cta-banner .hero-actions .button-secondary {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 249, 255, 0.94));
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand {
  min-width: 0;
}

.brand-logo {
  width: 50px;
  height: 50px;
  padding: 8px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(241, 244, 255, 0.92));
  border: 1px solid rgba(97, 93, 250, 0.16);
  flex: 0 0 auto;
  filter: drop-shadow(0 14px 28px rgba(97, 93, 250, 0.2));
}

.brand-copy {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.brand-copy strong,
.footer-brand strong {
  font-family: var(--headline);
  font-size: 18px;
  line-height: 1;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.brand-copy span,
.footer-brand > span > span {
  font-size: 12px;
  color: var(--muted);
}

.brand-copy strong,
.brand-copy span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.footer-brand > span {
  display: grid;
  gap: 2px;
}

.header-meta {
  display: grid;
  grid-template-columns: auto auto;
  grid-template-areas:
    "city socials"
    "phone socials";
  align-items: center;
  justify-self: end;
  gap: 3px 12px;
  min-width: 0;
}

.header-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: auto;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.08;
  white-space: nowrap;
}

.header-city {
  grid-area: city;
  color: var(--muted);
  justify-self: end;
  font-size: 13px;
  font-weight: 700;
}

.header-phone-link {
  grid-area: phone;
  justify-self: end;
  color: var(--ink);
  font-size: 16px;
  font-weight: 800;
  line-height: 1;
  transition: color 0.2s ease;
}

.header-phone-link:hover {
  color: var(--brand);
}

.header-socials {
  grid-area: socials;
  display: inline-flex;
  align-items: center;
  align-self: center;
  gap: 6px;
}

.header-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(97, 93, 250, 0.1);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 18px rgba(67, 61, 126, 0.05);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.header-social-link:hover {
  transform: translateY(-1px);
  border-color: rgba(97, 93, 250, 0.18);
  box-shadow: 0 16px 28px rgba(67, 61, 126, 0.08);
}

.header-meta-icon {
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 5px;
  flex-wrap: wrap;
  justify-self: center;
  padding: 4px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(97, 93, 250, 0.08), rgba(35, 210, 226, 0.04));
  border: 1px solid rgba(97, 93, 250, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.58);
}

.site-nav a {
  position: relative;
  z-index: 1;
  padding: 7px 12px;
  border-radius: 999px;
  color: var(--ink-soft);
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.site-nav a:hover {
  background: rgba(255, 255, 255, 0.92);
  color: var(--brand-deep);
  box-shadow: 0 12px 26px rgba(97, 93, 250, 0.1);
}

.site-nav a.is-active {
  background: linear-gradient(135deg, var(--brand-deep), var(--brand));
  color: #ffffff;
  box-shadow: 0 16px 30px rgba(97, 93, 250, 0.24);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-self: end;
}

.button {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  cursor: pointer;
}

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

.button::after {
  content: "";
  position: absolute;
  inset: -40% auto -40% -120%;
  width: 70%;
  transform: rotate(16deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.55), transparent);
  transition: transform 0.55s ease;
}

.button:hover::after {
  transform: translateX(220%) rotate(16deg);
}

.button-primary {
  color: #ffffff;
  background: linear-gradient(135deg, #7750f8 0%, #615dfa 45%, #23d2e2 100%);
  box-shadow: 0 22px 40px rgba(97, 93, 250, 0.28);
}

.button-secondary {
  color: var(--brand-deep);
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(97, 93, 250, 0.16);
  box-shadow: 0 18px 34px rgba(63, 59, 117, 0.08);
}

.eyebrow,
.solution-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow,
.solution-kicker {
  color: var(--brand-deep);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(244, 245, 255, 0.94));
  border: 1px solid rgba(97, 93, 250, 0.14);
  box-shadow: 0 12px 26px rgba(97, 93, 250, 0.1);
}

.solution-kicker-dark {
  color: rgba(255, 255, 255, 0.84);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.section {
  position: relative;
  padding: 40px 0;
}

.section-panel {
  position: relative;
  overflow: hidden;
  padding: 32px;
  border-radius: 44px;
  border: 1px solid rgba(97, 93, 250, 0.16);
  background:
    radial-gradient(circle at 94% 6%, rgba(97, 93, 250, 0.18), transparent 24%),
    radial-gradient(circle at 8% 100%, rgba(35, 210, 226, 0.12), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(244, 247, 255, 0.95));
  box-shadow: var(--shadow);
}

.section-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(97, 93, 250, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(97, 93, 250, 0.03) 1px, transparent 1px);
  background-size: 84px 84px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.34), transparent 92%);
}

.cases-section .section-panel::after,
.faq-brief-shell::after,
.solutions-section .container::after,
.mechanics-section .container::after {
  position: absolute;
  right: 28px;
  top: 20px;
  font-family: var(--headline);
  font-size: clamp(72px, 12vw, 160px);
  line-height: 0.8;
  letter-spacing: -0.08em;
  color: rgba(97, 93, 250, 0.05);
  pointer-events: none;
  z-index: 0;
}

.cases-section .section-panel::after {
  content: "Proof";
}

.faq-brief-shell::after {
  content: "Start";
}

.section-panel > * {
  position: relative;
  z-index: 1;
}

.section-panel-soft {
  background:
    radial-gradient(circle at 0% 100%, rgba(35, 210, 226, 0.14), transparent 24%),
    radial-gradient(circle at 100% 0%, rgba(97, 93, 250, 0.16), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(241, 245, 255, 0.95));
}

.section-head {
  display: grid;
  gap: 14px;
}

.section-head-atlas {
  grid-template-columns: minmax(0, 0.94fr) minmax(280px, 0.72fr);
  align-items: end;
  gap: 20px 32px;
}

.section-head-atlas > .eyebrow,
.section-head-atlas > h2,
.section-head-atlas > p {
  grid-column: 1;
}

.section-head-atlas::after {
  grid-column: 1;
}

.section-head p {
  max-width: 60ch;
}

.atlas-head-visual {
  position: relative;
  grid-column: 2;
  grid-row: 1 / span 4;
  min-height: 286px;
  overflow: hidden;
  border-radius: 34px;
  border: 1px solid rgba(97, 93, 250, 0.12);
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 216, 107, 0.18), transparent 28%),
    radial-gradient(circle at 0% 100%, rgba(35, 210, 226, 0.14), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(243, 247, 255, 0.94));
  box-shadow: 0 24px 56px rgba(67, 61, 126, 0.1);
}

.atlas-head-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(97, 93, 250, 0.12);
}

.atlas-head-ring-sm {
  width: 172px;
  height: 172px;
  right: 52px;
  top: 22px;
}

.atlas-head-ring-lg {
  width: 236px;
  height: 236px;
  right: 18px;
  top: -8px;
  border-color: rgba(35, 210, 226, 0.14);
}

.atlas-head-chip {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(97, 93, 250, 0.12);
  box-shadow: 0 14px 28px rgba(67, 61, 126, 0.08);
  color: var(--brand-deep);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.atlas-head-chip-top {
  left: 22px;
  top: 22px;
}

.atlas-head-chip-right {
  right: 22px;
  top: 84px;
}

.atlas-head-mascot {
  position: absolute;
  right: 52px;
  bottom: 20px;
  width: 168px;
  z-index: 2;
  filter: drop-shadow(0 24px 34px rgba(97, 93, 250, 0.18));
}

.atlas-head-note {
  position: absolute;
  left: 22px;
  right: 176px;
  bottom: 22px;
  z-index: 3;
  display: grid;
  gap: 8px;
  padding: 16px 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(97, 93, 250, 0.12);
  box-shadow: 0 18px 34px rgba(67, 61, 126, 0.08);
}

.atlas-head-note span {
  display: block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand);
}

.atlas-head-note strong {
  display: block;
  margin: 0;
  font-family: var(--headline);
  font-size: 24px;
  line-height: 1.06;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.section-head::after {
  content: "";
  width: 116px;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, #23d2e2, #615dfa, #ffd86b);
  box-shadow: 0 12px 24px rgba(97, 93, 250, 0.16);
}

.hero h1,
.section-head h2,
.brief-card h3,
.final-cta-copy h2,
.calculator-copy h2 {
  margin: 0;
  font-family: var(--headline);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.05em;
  color: var(--ink);
}

.hero h1 {
  max-width: 10.8ch;
  font-size: clamp(58px, 7vw, 90px);
}

.hero-title-line {
  display: block;
  width: max-content;
  max-width: 100%;
}

.hero-title-line-accent {
  position: relative;
  padding-inline: 0.1em 0.16em;
  margin-left: -0.1em;
}

.hero-title-line-accent::after {
  content: "";
  position: absolute;
  left: 0.08em;
  right: 0.02em;
  bottom: 0.1em;
  height: 0.24em;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(35, 210, 226, 0.36), rgba(97, 93, 250, 0.3), rgba(255, 216, 107, 0.34));
  box-shadow: 0 12px 20px rgba(97, 93, 250, 0.1);
  z-index: -1;
}

.section-head h2,
.final-cta-copy h2,
.calculator-copy h2 {
  max-width: 11ch;
  font-size: clamp(42px, 4.8vw, 68px);
}

.section-head p,
.hero-lead,
.hero-note,
.showcase-card p,
.showcase-summary p,
.case-copy p,
.source-note,
.solution-card p,
.approach-manifest p,
.approach-step p,
.compare-card p,
.mechanic-card p,
.result-copy,
.result-box p,
.result-tip p,
.faq-item p,
.brief-card p,
.form-note,
.final-cta-copy p,
.footer-copy {
  margin: 0;
  color: var(--muted);
  line-height: 1.68;
}

.hero {
  position: relative;
  padding: 18px 0 24px;
}

.hero::before {
  content: "";
  position: absolute;
  left: 20px;
  right: 20px;
  top: 12px;
  height: 760px;
  border-radius: 52px;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(245, 247, 255, 0.62)),
    url("assets/vikinger-sky.jpg") center top / cover;
  background-blend-mode: screen, normal;
  opacity: 0.48;
  filter: saturate(0.92);
}

.hero-shell {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(380px, 0.92fr);
  gap: 34px;
  align-items: center;
  padding: 56px 48px 44px;
  border-radius: 52px;
  border: 1px solid rgba(97, 93, 250, 0.18);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.84), rgba(240, 245, 255, 0.78) 42%, rgba(255, 247, 222, 0.82) 100%);
  box-shadow: 0 42px 100px rgba(66, 59, 126, 0.17);
}

.hero-shell::before {
  content: "";
  position: absolute;
  inset: -20% 44% 20% -10%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.88), transparent 70%);
}

.hero-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(97, 93, 250, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(97, 93, 250, 0.04) 1px, transparent 1px);
  background-size: 76px 76px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.3), transparent 92%);
  opacity: 0.72;
}

.hero-shell > * {
  position: relative;
  z-index: 1;
}

.hero-copy {
  display: grid;
  align-content: start;
  gap: 20px;
}

.hero-lead {
  max-width: 38ch;
  font-size: clamp(20px, 2vw, 24px);
  line-height: 1.56;
  color: var(--ink-soft);
}

.hero-metrics,
.metric-row,
.approach-outcomes,
.mechanics-grid,
.final-stats {
  display: grid;
  gap: 12px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-metrics {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding: 1px;
  border-radius: 32px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(97, 93, 250, 0.2), rgba(35, 210, 226, 0.16), rgba(255, 216, 107, 0.16));
  box-shadow: 0 24px 52px rgba(67, 61, 126, 0.1);
}

.metric-card,
.metric-chip,
.case-fact,
.solution-card,
.approach-manifest,
.approach-step,
.compare-card,
.mechanic-card,
.faq-item,
.brief-card,
.calculator-copy,
.calculator-result,
.final-cta-shell {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(12px);
}

.metric-card,
.metric-chip {
  position: relative;
  overflow: hidden;
  padding: 18px;
}

.metric-card::before,
.metric-chip::before {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  top: 0;
  height: 5px;
  border-radius: 0 0 10px 10px;
  background: linear-gradient(90deg, #23d2e2, #615dfa, #ffd86b);
}

.metric-card:nth-child(2n),
.metric-chip:nth-child(2n) {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(243, 248, 255, 0.94));
}

.metric-card:nth-child(3n),
.metric-chip:nth-child(3n) {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(255, 247, 223, 0.9));
}

.metric-card strong,
.metric-chip strong,
.final-stats strong,
.result-metric strong,
.result-format {
  display: block;
  font-family: var(--headline);
  font-size: 32px;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--ink);
}

.metric-card span,
.metric-chip span,
.result-metric span,
.case-fact span,
.solution-lines span,
.approach-outcomes span,
.mechanic-card .mechanic-index,
.showcase-card span,
.showcase-head span,
.showcase-track span,
.final-stats span {
  display: block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.metric-card span,
.metric-chip span,
.case-fact span,
.solution-lines span,
.approach-outcomes span,
.final-stats span {
  margin-top: 10px;
  color: var(--muted);
}

.hero-note {
  max-width: 46ch;
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(97, 93, 250, 0.12);
  box-shadow: 0 18px 36px rgba(72, 67, 128, 0.08);
  font-size: 15px;
}

.hero-showcase {
  --surface-spot: radial-gradient(circle at 76% 18%, rgba(255, 255, 255, 0.22), transparent 24%);
  position: relative;
  overflow: hidden;
  padding: 20px;
  border-radius: 38px;
  background:
    var(--surface-spot),
    radial-gradient(circle at 8% 12%, rgba(35, 210, 226, 0.18), transparent 26%),
    radial-gradient(circle at 94% 8%, rgba(97, 93, 250, 0.2), transparent 28%),
    linear-gradient(180deg, rgba(250, 251, 255, 0.98), rgba(236, 242, 255, 0.95));
  border: 1px solid rgba(97, 93, 250, 0.16);
  box-shadow: 0 36px 82px rgba(65, 60, 124, 0.2);
}

.hero-showcase::before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 30px;
  background-image:
    linear-gradient(rgba(97, 93, 250, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(97, 93, 250, 0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
  opacity: 0.55;
}

.hero-showcase::after {
  content: "";
  position: absolute;
  inset: auto -10% -18% 42%;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 216, 107, 0.32), transparent 66%);
  filter: blur(10px);
}

.hero-showcase > * {
  position: relative;
  z-index: 1;
}

.media-slot {
  position: relative;
  display: block;
  min-height: 180px;
  padding: 0;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(97, 93, 250, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(243, 246, 255, 0.92));
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.74),
    0 18px 36px rgba(67, 61, 126, 0.1);
  opacity: 1 !important;
  filter: none !important;
}

.media-slot::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.02)),
    radial-gradient(circle at 100% 0%, rgba(255, 216, 107, 0.12), transparent 34%);
  pointer-events: none;
}

.media-slot::after {
  display: none;
}

.media-slot-chip {
  display: none !important;
  align-items: center;
  justify-self: start;
  min-height: 30px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(97, 93, 250, 0.12);
  color: var(--brand-deep);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  box-shadow: 0 12px 24px rgba(97, 93, 250, 0.08);
}

.media-slot strong {
  display: none !important;
  font-family: var(--headline);
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: var(--ink);
  text-wrap: balance;
}

.media-slot p {
  display: none !important;
  margin: 0;
  max-width: 28ch;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.56;
  text-wrap: balance;
}

.media-slot-fill {
  width: 100%;
  height: 100%;
  min-height: 100%;
}

.media-slot-browser {
  min-height: 250px;
}

.media-slot-phone {
  min-height: 320px;
}

.media-slot-panel {
  min-height: 220px;
}

.media-slot-compact {
  min-height: 150px;
}

.media-slot-wide {
  min-height: 170px;
}

.showcase-ui-backdrop.media-slot,
.showcase-people.media-slot,
.solutions-stage-main.media-slot,
.solutions-stage-window.media-slot,
.mechanics-stage-main.media-slot,
.mechanics-stage-window.media-slot,
.page-atlas-main.media-slot,
.page-atlas-overlay.media-slot,
.final-cta-stage-main.media-slot,
.final-cta-stage-overlay.media-slot,
.launch-corridor-main.media-slot,
.launch-corridor-overlay.media-slot {
  display: grid;
}

.showcase-ui-backdrop.media-slot {
  min-height: 178px;
  padding: 14px 16px 18px;
}

.showcase-people.media-slot {
  min-height: 170px;
  padding: 18px 20px 20px;
}

.summary-visual-frame > .media-slot,
.page-link-thumb > .media-slot,
.mockup-browser-body > .media-slot,
.mockup-phone-body > .media-slot {
  width: 100%;
  height: 100%;
  border-radius: inherit;
}

.summary-visual-frame > .media-slot,
.page-link-thumb > .media-slot {
  min-height: 100%;
}

.mockup-browser-body > .media-slot {
  min-height: 250px;
}

.mockup-phone-body > .media-slot {
  min-height: 360px;
}

.page-link-thumb > .media-slot {
  min-height: 100%;
}

:where(
  body[data-page="home"] .showcase-ui-backdrop.media-slot,
  body[data-page="home"] .showcase-people.media-slot,
  body[data-page="home"] .mockup-browser-body > .media-slot,
  body[data-page="home"] .mockup-phone-body > .media-slot,
  body[data-page="home"] .solutions-stage-main.media-slot,
  body[data-page="home"] .solutions-stage-window.media-slot,
  body[data-page="home"] .mechanics-stage-main.media-slot,
  body[data-page="home"] .page-atlas-main.media-slot,
  body[data-page="home"] .page-atlas-overlay.media-slot,
  body[data-page="home"] .page-link-thumb > .media-slot,
  body[data-page="home"] .final-cta-stage-main.media-slot,
  body[data-page="home"] .final-cta-stage-overlay.media-slot,
  body[data-page="cases"] .cases-hero-browser .mockup-browser-body > .media-slot,
  body[data-page="cases"] .case-media-browser .mockup-browser-body > .media-slot,
  body[data-page="cases"] .case-media-phone .mockup-phone-body > .media-slot,
  body[data-page="solutions"] .summary-visual-frame > .media-slot,
  body[data-page="solutions"] .solutions-stage-main.media-slot,
  body[data-page="solutions"] .solutions-stage-window.media-slot,
  body[data-page="mechanics"] .summary-visual-frame > .media-slot,
  body[data-page="mechanics"] .mechanics-stage-main.media-slot,
  body[data-page="mechanics"] .mechanics-stage-window.media-slot,
  body[data-page="calculator"] .summary-visual-frame > .media-slot,
  body[data-page="contact"] .summary-visual-frame > .media-slot,
  body[data-page="contact"] .launch-corridor-main.media-slot,
  body[data-page="contact"] .launch-corridor-overlay.media-slot,
  body[data-page="404"] .summary-visual-frame > .media-slot,
  body[data-page="privacy"] .summary-visual-frame > .media-slot
) {
  padding: 0;
  align-content: start;
  border-style: solid;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
}

:where(
  body[data-page="home"] .showcase-ui-backdrop.media-slot,
  body[data-page="home"] .showcase-people.media-slot,
  body[data-page="home"] .mockup-browser-body > .media-slot,
  body[data-page="home"] .mockup-phone-body > .media-slot,
  body[data-page="home"] .solutions-stage-main.media-slot,
  body[data-page="home"] .solutions-stage-window.media-slot,
  body[data-page="home"] .mechanics-stage-main.media-slot,
  body[data-page="home"] .page-atlas-main.media-slot,
  body[data-page="home"] .page-atlas-overlay.media-slot,
  body[data-page="home"] .page-link-thumb > .media-slot,
  body[data-page="home"] .final-cta-stage-main.media-slot,
  body[data-page="home"] .final-cta-stage-overlay.media-slot,
  body[data-page="cases"] .cases-hero-browser .mockup-browser-body > .media-slot,
  body[data-page="cases"] .case-media-browser .mockup-browser-body > .media-slot,
  body[data-page="cases"] .case-media-phone .mockup-phone-body > .media-slot,
  body[data-page="solutions"] .summary-visual-frame > .media-slot,
  body[data-page="solutions"] .solutions-stage-main.media-slot,
  body[data-page="solutions"] .solutions-stage-window.media-slot,
  body[data-page="mechanics"] .summary-visual-frame > .media-slot,
  body[data-page="mechanics"] .mechanics-stage-main.media-slot,
  body[data-page="mechanics"] .mechanics-stage-window.media-slot,
  body[data-page="calculator"] .summary-visual-frame > .media-slot,
  body[data-page="contact"] .summary-visual-frame > .media-slot,
  body[data-page="contact"] .launch-corridor-main.media-slot,
  body[data-page="contact"] .launch-corridor-overlay.media-slot,
  body[data-page="404"] .summary-visual-frame > .media-slot,
  body[data-page="privacy"] .summary-visual-frame > .media-slot
)::before {
  z-index: 1;
  opacity: 0.18;
}

:where(
  body[data-page="home"] .showcase-ui-backdrop.media-slot,
  body[data-page="home"] .showcase-people.media-slot,
  body[data-page="home"] .mockup-browser-body > .media-slot,
  body[data-page="home"] .mockup-phone-body > .media-slot,
  body[data-page="home"] .solutions-stage-main.media-slot,
  body[data-page="home"] .solutions-stage-window.media-slot,
  body[data-page="home"] .mechanics-stage-main.media-slot,
  body[data-page="home"] .page-atlas-main.media-slot,
  body[data-page="home"] .page-atlas-overlay.media-slot,
  body[data-page="home"] .page-link-thumb > .media-slot,
  body[data-page="home"] .final-cta-stage-main.media-slot,
  body[data-page="home"] .final-cta-stage-overlay.media-slot,
  body[data-page="cases"] .cases-hero-browser .mockup-browser-body > .media-slot,
  body[data-page="cases"] .case-media-browser .mockup-browser-body > .media-slot,
  body[data-page="cases"] .case-media-phone .mockup-phone-body > .media-slot,
  body[data-page="solutions"] .summary-visual-frame > .media-slot,
  body[data-page="solutions"] .solutions-stage-main.media-slot,
  body[data-page="solutions"] .solutions-stage-window.media-slot,
  body[data-page="mechanics"] .summary-visual-frame > .media-slot,
  body[data-page="mechanics"] .mechanics-stage-main.media-slot,
  body[data-page="mechanics"] .mechanics-stage-window.media-slot,
  body[data-page="calculator"] .summary-visual-frame > .media-slot,
  body[data-page="contact"] .summary-visual-frame > .media-slot,
  body[data-page="contact"] .launch-corridor-main.media-slot,
  body[data-page="contact"] .launch-corridor-overlay.media-slot,
  body[data-page="404"] .summary-visual-frame > .media-slot,
  body[data-page="privacy"] .summary-visual-frame > .media-slot
)::after {
  inset: auto 0 0 0;
  height: 42%;
  border-radius: 0;
  background:
    linear-gradient(180deg, rgba(24, 23, 52, 0) 0%, rgba(24, 23, 52, 0.36) 100%);
  z-index: 1;
}

:where(
  body[data-page="home"] .showcase-ui-backdrop.media-slot,
  body[data-page="home"] .showcase-people.media-slot,
  body[data-page="home"] .mockup-browser-body > .media-slot,
  body[data-page="home"] .mockup-phone-body > .media-slot,
  body[data-page="home"] .solutions-stage-main.media-slot,
  body[data-page="home"] .solutions-stage-window.media-slot,
  body[data-page="home"] .mechanics-stage-main.media-slot,
  body[data-page="home"] .page-atlas-main.media-slot,
  body[data-page="home"] .page-atlas-overlay.media-slot,
  body[data-page="home"] .page-link-thumb > .media-slot,
  body[data-page="home"] .final-cta-stage-main.media-slot,
  body[data-page="home"] .final-cta-stage-overlay.media-slot,
  body[data-page="cases"] .cases-hero-browser .mockup-browser-body > .media-slot,
  body[data-page="cases"] .case-media-browser .mockup-browser-body > .media-slot,
  body[data-page="cases"] .case-media-phone .mockup-phone-body > .media-slot,
  body[data-page="solutions"] .summary-visual-frame > .media-slot,
  body[data-page="solutions"] .solutions-stage-main.media-slot,
  body[data-page="solutions"] .solutions-stage-window.media-slot,
  body[data-page="mechanics"] .summary-visual-frame > .media-slot,
  body[data-page="mechanics"] .mechanics-stage-main.media-slot,
  body[data-page="mechanics"] .mechanics-stage-window.media-slot,
  body[data-page="calculator"] .summary-visual-frame > .media-slot,
  body[data-page="contact"] .summary-visual-frame > .media-slot,
  body[data-page="contact"] .launch-corridor-main.media-slot,
  body[data-page="contact"] .launch-corridor-overlay.media-slot,
  body[data-page="404"] .summary-visual-frame > .media-slot,
  body[data-page="privacy"] .summary-visual-frame > .media-slot
) strong,
:where(
  body[data-page="home"] .showcase-ui-backdrop.media-slot,
  body[data-page="home"] .showcase-people.media-slot,
  body[data-page="home"] .mockup-browser-body > .media-slot,
  body[data-page="home"] .mockup-phone-body > .media-slot,
  body[data-page="home"] .solutions-stage-main.media-slot,
  body[data-page="home"] .solutions-stage-window.media-slot,
  body[data-page="home"] .mechanics-stage-main.media-slot,
  body[data-page="home"] .page-atlas-main.media-slot,
  body[data-page="home"] .page-atlas-overlay.media-slot,
  body[data-page="home"] .page-link-thumb > .media-slot,
  body[data-page="home"] .final-cta-stage-main.media-slot,
  body[data-page="home"] .final-cta-stage-overlay.media-slot,
  body[data-page="cases"] .cases-hero-browser .mockup-browser-body > .media-slot,
  body[data-page="cases"] .case-media-browser .mockup-browser-body > .media-slot,
  body[data-page="cases"] .case-media-phone .mockup-phone-body > .media-slot,
  body[data-page="solutions"] .summary-visual-frame > .media-slot,
  body[data-page="solutions"] .solutions-stage-main.media-slot,
  body[data-page="solutions"] .solutions-stage-window.media-slot,
  body[data-page="mechanics"] .summary-visual-frame > .media-slot,
  body[data-page="mechanics"] .mechanics-stage-main.media-slot,
  body[data-page="mechanics"] .mechanics-stage-window.media-slot,
  body[data-page="calculator"] .summary-visual-frame > .media-slot,
  body[data-page="contact"] .summary-visual-frame > .media-slot,
  body[data-page="contact"] .launch-corridor-main.media-slot,
  body[data-page="contact"] .launch-corridor-overlay.media-slot,
  body[data-page="404"] .summary-visual-frame > .media-slot,
  body[data-page="privacy"] .summary-visual-frame > .media-slot
) p {
  display: none;
}

:where(
  body[data-page="home"] .showcase-ui-backdrop.media-slot,
  body[data-page="home"] .showcase-people.media-slot,
  body[data-page="home"] .mockup-browser-body > .media-slot,
  body[data-page="home"] .mockup-phone-body > .media-slot,
  body[data-page="home"] .solutions-stage-main.media-slot,
  body[data-page="home"] .solutions-stage-window.media-slot,
  body[data-page="home"] .mechanics-stage-main.media-slot,
  body[data-page="home"] .page-atlas-main.media-slot,
  body[data-page="home"] .page-atlas-overlay.media-slot,
  body[data-page="home"] .page-link-thumb > .media-slot,
  body[data-page="home"] .final-cta-stage-main.media-slot,
  body[data-page="home"] .final-cta-stage-overlay.media-slot,
  body[data-page="cases"] .cases-hero-browser .mockup-browser-body > .media-slot,
  body[data-page="cases"] .case-media-browser .mockup-browser-body > .media-slot,
  body[data-page="cases"] .case-media-phone .mockup-phone-body > .media-slot,
  body[data-page="solutions"] .summary-visual-frame > .media-slot,
  body[data-page="solutions"] .solutions-stage-main.media-slot,
  body[data-page="solutions"] .solutions-stage-window.media-slot,
  body[data-page="mechanics"] .summary-visual-frame > .media-slot,
  body[data-page="mechanics"] .mechanics-stage-main.media-slot,
  body[data-page="mechanics"] .mechanics-stage-window.media-slot,
  body[data-page="calculator"] .summary-visual-frame > .media-slot,
  body[data-page="contact"] .summary-visual-frame > .media-slot,
  body[data-page="contact"] .launch-corridor-main.media-slot,
  body[data-page="contact"] .launch-corridor-overlay.media-slot,
  body[data-page="404"] .summary-visual-frame > .media-slot,
  body[data-page="privacy"] .summary-visual-frame > .media-slot
) .media-slot-chip {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
}

body[data-page="home"] .showcase-ui-backdrop.media-slot {
  background-image: url("assets/generated/pm-hero-fox-cockpit.webp");
  background-size: cover;
  background-position: center center;
}

body[data-page="home"] .showcase-people.media-slot {
  background-image: url("assets/generated/pm-hero-fox-cockpit.webp");
}

body[data-page="home"] .case-media-browser .mockup-browser-body > .media-slot {
  background-image: url("assets/generated/pm-case-sber-fox.webp");
  background-size: cover;
  background-position: center center;
}

body[data-page="home"] .case-media-phone .mockup-phone-body > .media-slot {
  background-image: url("assets/generated/pm-case-dodo-fox.webp");
  background-size: cover;
  background-position: center center;
}

body[data-page="home"] .solutions-stage-main.media-slot {
  background-image: url("assets/generated/pm-solutions-fox-dashboard.webp");
}

body[data-page="home"] .solutions-stage-window.media-slot {
  background-image: url("assets/generated/pm-home-solutions-mobile.webp");
}

body[data-page="home"] .mechanics-stage-main.media-slot {
  background-image: url("assets/generated/pm-mechanics-fox-lab.webp");
}

body[data-page="home"] .page-atlas-main.media-slot {
  background-image: url("assets/generated/pm-final-fox-roadmap.webp");
}

body[data-page="home"] .page-atlas-overlay.media-slot {
  background-image: url("assets/generated/pm-contact-fox-launch.webp");
}

body[data-page="home"] .page-links-grid article:nth-child(1) .page-link-thumb > .media-slot {
  background-image: url("assets/generated/pm-home-thumb-cases.webp");
}

body[data-page="home"] .page-links-grid article:nth-child(2) .page-link-thumb > .media-slot {
  background-image: url("assets/generated/pm-home-thumb-solutions.webp");
}

body[data-page="home"] .page-links-grid article:nth-child(3) .page-link-thumb > .media-slot {
  background-image: url("assets/generated/pm-home-thumb-mechanics.webp");
}

body[data-page="home"] .page-links-grid article:nth-child(4) .page-link-thumb > .media-slot {
  background-image: url("assets/generated/pm-home-thumb-calculator.webp");
}

body[data-page="home"] .page-links-grid article:nth-child(5) .page-link-thumb > .media-slot {
  background-image: url("assets/generated/pm-home-thumb-start.webp");
}

body[data-page="home"] .final-cta-stage-main.media-slot {
  background-image: url("assets/generated/pm-home-final-main.webp");
}

body[data-page="home"] .final-cta-stage-overlay.media-slot {
  background-image: url("assets/generated/pm-home-final-support.webp");
}

body[data-page="cases"] .cases-hero-browser .mockup-browser-body > .media-slot {
  background-image: url("assets/generated/pm-format-case-fox.webp");
  background-position: center center;
}

body[data-page="cases"] .case-media-browser .mockup-browser-body > .media-slot {
  background-image: url("assets/generated/pm-case-sber-fox.webp");
  background-size: cover;
  background-position: center center;
}

body[data-page="cases"] .case-media-phone .mockup-phone-body > .media-slot {
  background-image: url("assets/generated/pm-case-dodo-fox.webp");
  background-size: cover;
  background-position: center center;
}

body[data-page="solutions"] .summary-visual-frame > .media-slot {
  background-image: url("assets/generated/pm-solutions-fox-overview.webp");
}

body[data-page="solutions"] .solutions-stage-main.media-slot {
  background-image: url("assets/generated/pm-solutions-fox-dashboard.webp");
}

body[data-page="solutions"] .solutions-stage-window.media-slot {
  background-image: url("assets/generated/pm-format-solution-fox.webp");
}

body[data-page="mechanics"] .summary-visual-frame > .media-slot {
  background-image: url("assets/generated/pm-mechanics-fox-overview.webp");
}

body[data-page="mechanics"] .mechanics-stage-main.media-slot {
  background-image: url("assets/generated/pm-mechanics-fox-lab.webp");
}

body[data-page="mechanics"] .mechanics-stage-window.media-slot {
  background-image: url("assets/generated/pm-mechanics-fox-lab.webp");
}

body[data-page="calculator"] .summary-visual-frame > .media-slot {
  background-image: url("assets/generated/pm-calculator-fox-console.webp");
}

body[data-page="contact"] .summary-visual-frame > .media-slot {
  background-image: url("assets/generated/pm-contact-fox-brief.webp");
}

body[data-page="contact"] .launch-corridor-main.media-slot {
  background-image: url("assets/generated/pm-contact-fox-launch.webp");
}

body[data-page="contact"] .launch-corridor-overlay.media-slot {
  background-image: url("assets/generated/pm-final-fox-roadmap.webp");
}

body[data-page="404"] .summary-visual-frame > .media-slot {
  background-image: url("assets/generated/pm-notfound-fox-map.webp");
}

body[data-page="privacy"] .summary-visual-frame > .media-slot {
  background-image: url("assets/generated/pm-contact-fox-launch.webp");
}

.showcase-rocket-orb {
  display: block;
  width: 64px;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 32%, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0) 38%),
    linear-gradient(135deg, #23d2e2, #615dfa 58%, #ffd86b);
  box-shadow: 0 16px 24px rgba(65, 60, 124, 0.14);
}

.showcase-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.showcase-head span {
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--brand-deep);
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(97, 93, 250, 0.12);
  box-shadow: 0 12px 24px rgba(97, 93, 250, 0.08);
}

.showcase-main {
  display: grid;
  grid-template-columns: minmax(220px, 0.9fr) minmax(0, 1.1fr);
  gap: 16px;
}

.showcase-stage {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 270px;
  padding: 18px 18px 74px;
  border-radius: 30px;
  background:
    radial-gradient(circle at 50% 20%, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0) 52%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(233, 242, 255, 0.88));
  border: 1px solid rgba(97, 93, 250, 0.12);
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.showcase-ui-backdrop {
  position: relative;
  left: auto;
  right: auto;
  bottom: auto;
  width: 100%;
  max-width: none;
  height: 100%;
  min-height: 100%;
  transform: none;
  opacity: 0.96;
  border-radius: 24px;
  border: 0;
  box-shadow: none;
  filter: saturate(1.02);
  z-index: 1;
}

.showcase-phone-shell {
  position: absolute;
  left: 50%;
  bottom: 90px;
  z-index: 1;
  width: min(100%, 192px);
  transform: translateX(-50%);
  box-shadow: 0 30px 54px rgba(34, 27, 76, 0.22);
}

.showcase-phone-shell .mockup-phone-body > .media-slot {
  min-height: 182px;
}

.showcase-rocket {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 64px;
  z-index: 1;
  filter: drop-shadow(0 16px 24px rgba(65, 60, 124, 0.14));
}

.showcase-people {
  display: none;
}

.showcase-stage::before,
.showcase-stage::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(97, 93, 250, 0.14);
}

.showcase-stage::before {
  width: 180px;
  height: 180px;
  top: 32px;
  left: 50%;
  transform: translateX(-50%);
}

.showcase-stage::after {
  width: 240px;
  height: 240px;
  top: 4px;
  left: 50%;
  transform: translateX(-50%);
  border-color: rgba(35, 210, 226, 0.14);
}

.hero-mascot,
.result-mascot {
  width: 100%;
  max-width: 180px;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 28px 34px rgba(97, 93, 250, 0.22));
}

.stage-chip {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(97, 93, 250, 0.14);
  box-shadow: 0 14px 30px rgba(42, 36, 82, 0.12);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-deep);
}

.stage-chip-top {
  top: 14px;
  left: 14px;
}

.stage-chip-side {
  top: 48px;
  right: 10px;
}

.showcase-track {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 12px;
  z-index: 3;
  padding: 14px;
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(36, 34, 58, 0.98), rgba(77, 62, 151, 0.98));
  box-shadow: 0 24px 42px rgba(39, 31, 87, 0.22);
}

.showcase-track span {
  color: rgba(255, 255, 255, 0.54);
}

.showcase-track strong,
.showcase-summary strong,
.showcase-card strong,
.case-copy h3,
.solution-card h3,
.approach-manifest h3,
.approach-step strong,
.compare-card h3,
.mechanic-card h3,
.brief-card h3 {
  display: block;
  font-family: var(--headline);
  letter-spacing: -0.03em;
}

.showcase-track strong {
  margin-top: 8px;
  color: #f4f6ff;
  font-size: 16px;
  line-height: 1.2;
}

.showcase-rico-note {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 14px 0 0;
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(97, 93, 250, 0.12);
  box-shadow: 0 16px 30px rgba(67, 61, 126, 0.08);
  color: var(--ink-soft);
  line-height: 1.55;
}

.showcase-rico-note strong {
  color: var(--ink);
  font-size: 15px;
  line-height: 1.2;
}

.showcase-summary {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 20px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 100% 0%, rgba(35, 210, 226, 0.14), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(247, 249, 255, 0.95));
  border: 1px solid rgba(97, 93, 250, 0.12);
  box-shadow: 0 20px 40px rgba(67, 61, 126, 0.1);
}

.showcase-summary strong {
  font-size: 30px;
  line-height: 1.02;
}

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

.showcase-summary-grid article {
  display: grid;
  gap: 6px;
  padding: 14px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(248, 250, 255, 0.98), rgba(255, 255, 255, 0.96));
  border: 1px solid rgba(97, 93, 250, 0.1);
}

.showcase-summary-grid strong {
  font-size: 18px;
  line-height: 1;
  letter-spacing: -0.02em;
}

.showcase-summary-grid span {
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.45;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill-row span,
.brief-points span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(22, 21, 31, 0.08);
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 700;
}

.showcase-bottom {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(220px, 0.8fr);
  gap: 12px;
  margin-top: 14px;
}

.showcase-card {
  padding: 18px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(97, 93, 250, 0.12);
  box-shadow: 0 20px 40px rgba(67, 61, 126, 0.1);
}

.showcase-card span {
  color: var(--brand);
}

.showcase-card strong {
  margin-top: 10px;
  font-size: 26px;
  line-height: 1.02;
}

.showcase-card-dark {
  background:
    radial-gradient(circle at 100% 0%, rgba(35, 210, 226, 0.16), transparent 28%),
    linear-gradient(180deg, rgba(36, 34, 58, 0.98), rgba(73, 56, 141, 0.98));
  border-color: rgba(255, 255, 255, 0.08);
}

.showcase-card-dark span,
.showcase-card-dark strong {
  color: #ffffff;
}

.showcase-card-dark p {
  color: rgba(255, 255, 255, 0.74);
}

.mini-lines {
  display: grid;
  gap: 10px;
  margin-top: 10px;
}

.mini-lines strong {
  padding: 12px 14px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(248, 249, 255, 0.98), rgba(240, 243, 255, 0.94));
  border: 1px solid rgba(97, 93, 250, 0.12);
  font-size: 16px;
  line-height: 1.2;
}

.hero-shell {
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
  gap: 24px;
  padding: 44px 40px 38px;
}

.hero-copy {
  gap: 18px;
}

.hero-visual {
  align-self: start;
}

.hero h1 {
  max-width: none;
  font-size: clamp(50px, 6.2vw, 78px);
}

.hero-lead {
  max-width: 38ch;
  font-size: clamp(18px, 1.8vw, 22px);
}

.hero-metrics {
  gap: 10px;
}

.hero-metrics .metric-card {
  min-height: 100%;
  padding: 18px 18px 20px;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.985), rgba(245, 248, 255, 0.95));
}

.hero-metrics .metric-card strong {
  font-size: 29px;
}

.hero-metrics .metric-card::before {
  display: none;
}

.hero-metrics .metric-card:nth-child(1) {
  border-radius: 31px 0 0 31px;
  background: linear-gradient(180deg, rgba(242, 249, 255, 0.98), rgba(248, 250, 255, 0.95));
}

.hero-metrics .metric-card:nth-child(2) {
  background: linear-gradient(180deg, rgba(248, 246, 255, 0.98), rgba(250, 249, 255, 0.95));
}

.hero-metrics .metric-card:nth-child(3) {
  border-radius: 0 31px 31px 0;
  background: linear-gradient(180deg, rgba(255, 248, 234, 0.98), rgba(255, 251, 243, 0.95));
}

.hero-metrics .metric-card span {
  margin-top: 8px;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.42;
  text-transform: none;
}

.hero-note {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: none;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  font-size: 14px;
}

.hero-note span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(97, 93, 250, 0.12);
  box-shadow: 0 14px 28px rgba(67, 61, 126, 0.08);
  color: var(--ink-soft);
  font-weight: 700;
}

.hero-showcase {
  padding: 16px;
  border-radius: 34px;
}

.showcase-head {
  display: none;
}

.showcase-main {
  grid-template-columns: 1fr;
}

.showcase-stage {
  min-height: 272px;
  padding: 14px 14px 62px;
  border-radius: 28px;
}

.showcase-ui-backdrop {
  height: 100%;
  min-height: 100%;
  opacity: 0.98;
}

.showcase-phone-shell {
  bottom: 78px;
  width: min(100%, 174px);
  padding: 10px;
  border-radius: 34px;
}

.showcase-phone-shell .mockup-phone-sensor {
  height: 16px;
  margin: 0 auto 8px;
}

.showcase-phone-shell .mockup-phone-body {
  padding: 10px;
  border-radius: 24px;
}

.showcase-rocket {
  top: 14px;
  right: 14px;
  width: 52px;
  opacity: 0.84;
}

.showcase-track {
  left: 16px;
  right: 16px;
  bottom: 14px;
  padding: 11px 14px;
}

.showcase-track strong {
  font-size: 14px;
}

.showcase-summary-compact {
  margin-top: 14px;
  gap: 10px;
  padding: 18px;
  border-radius: 24px;
}

.showcase-summary-compact > span {
  display: block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand);
}

.showcase-summary-compact strong {
  font-size: 26px;
  line-height: 1.04;
}

.showcase-summary-compact p {
  margin: 0;
  max-width: 34ch;
}

.showcase-summary-compact .showcase-summary-grid {
  margin-top: 4px;
}

.showcase-people {
  left: -10px;
  right: -10px;
  bottom: -12px;
  width: calc(100% + 20px);
  opacity: 0.22;
}

.case-list {
  display: grid;
  gap: 24px;
  margin-top: 28px;
}

.case-slider {
  margin-top: 28px;
}

.case-slider-shell {
  position: relative;
  min-height: var(--case-slider-height, 760px);
  padding-bottom: 72px;
}

body[data-page="home"] .case-slider .case-list {
  position: relative;
  margin-top: 0;
  min-height: var(--case-slider-height, 760px);
}

body[data-page="home"] .case-slider [data-case-slide] {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateX(28px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

body[data-page="home"] .case-slider [data-case-slide].is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.case-slider-nav {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.case-slider-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(97, 93, 250, 0.12);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 24px rgba(67, 61, 126, 0.08);
  color: var(--brand-deep);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.case-slider-button:hover {
  transform: translateY(-1px);
  border-color: rgba(97, 93, 250, 0.2);
  box-shadow: 0 16px 28px rgba(67, 61, 126, 0.1);
}

.case-slider-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex: 1 1 auto;
}

.case-slider-dot {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 999px;
  background: rgba(97, 93, 250, 0.22);
  cursor: pointer;
  transition: width 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.case-slider-dot.is-active {
  width: 34px;
  background: linear-gradient(90deg, #23d2e2, #615dfa, #ffd86b);
}

.case-slider-dot:hover {
  transform: scale(1.05);
}

.case-spotlight {
  position: relative;
  display: grid;
  grid-template-columns: minmax(300px, 0.94fr) minmax(0, 1.06fr);
  overflow: hidden;
  border-radius: 34px;
  border: 1px solid rgba(97, 93, 250, 0.15);
  background:
    radial-gradient(circle at 100% 0%, rgba(35, 210, 226, 0.12), transparent 24%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.99), rgba(244, 248, 255, 0.94));
  box-shadow: 0 28px 70px rgba(67, 61, 126, 0.16);
}

.case-spotlight::before {
  content: "";
  position: absolute;
  left: 26px;
  right: 26px;
  top: 0;
  height: 6px;
  border-radius: 0 0 12px 12px;
  background: linear-gradient(90deg, #23d2e2, #615dfa, #ffd86b);
  z-index: 2;
}

.case-spotlight-alt {
  grid-template-columns: minmax(300px, 0.94fr) minmax(0, 1.06fr);
  background:
    radial-gradient(circle at 0% 100%, rgba(255, 216, 107, 0.18), transparent 26%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.99), rgba(255, 246, 232, 0.94));
}

.case-spotlight-alt .case-media {
  order: 1;
}

.case-spotlight-alt .case-copy {
  order: 2;
}

.case-media {
  position: relative;
  display: grid;
  place-items: center;
  isolation: isolate;
  min-height: 430px;
  padding: 26px;
  background:
    radial-gradient(circle at 86% 12%, rgba(35, 210, 226, 0.12), transparent 22%),
    linear-gradient(180deg, rgba(247, 249, 255, 0.78), rgba(255, 255, 255, 0.38));
}

.case-media-frame {
  position: relative;
  z-index: 2;
  width: min(100%, 430px);
  height: clamp(420px, 35vw, 500px);
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 0;
  border-radius: 28px;
  background:
    radial-gradient(circle at 100% 0%, rgba(35, 210, 226, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 247, 255, 0.92));
  border: 1px solid rgba(97, 93, 250, 0.14);
  box-shadow: 0 28px 54px rgba(67, 61, 126, 0.16);
}

.case-media-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  border-radius: 28px;
}

.case-media-frame-sber img {
  object-position: center center;
}

.case-media::before {
  content: "";
  position: absolute;
  inset: 26px;
  border-radius: 30px;
  background-image:
    linear-gradient(rgba(97, 93, 250, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(97, 93, 250, 0.03) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none;
}

.case-media::after {
  display: none;
}

.mockup-browser {
  position: relative;
  z-index: 1;
  width: min(100%, 520px);
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff, #eef2ff);
  border: 1px solid rgba(97, 93, 250, 0.16);
  box-shadow: 0 30px 58px rgba(67, 61, 126, 0.18);
}

.mockup-browser-bar {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  min-height: 50px;
  padding: 12px 16px;
  background: linear-gradient(180deg, rgba(244, 247, 255, 0.98), rgba(234, 238, 255, 0.92));
  border-bottom: 1px solid rgba(97, 93, 250, 0.08);
}

.mockup-dots {
  display: inline-flex;
  gap: 6px;
}

.mockup-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(35, 210, 226, 0.9), rgba(97, 93, 250, 0.88));
}

.mockup-browser-title {
  display: block;
  overflow: hidden;
  color: var(--brand-deep);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mockup-browser-body {
  padding: 14px;
}

.mockup-browser-body img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 20px;
  border: 1px solid rgba(97, 93, 250, 0.12);
  box-shadow: 0 18px 34px rgba(67, 61, 126, 0.12);
}

.mockup-phone-shell {
  position: relative;
  z-index: 1;
  width: min(100%, 270px);
  padding: 12px;
  border-radius: 40px;
  background: linear-gradient(180deg, #1a1930, #11111d);
  box-shadow: 0 32px 54px rgba(17, 17, 27, 0.28);
}

.mockup-phone-sensor {
  width: 38%;
  height: 20px;
  margin: 0 auto 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.mockup-phone-body {
  padding: 14px;
  border-radius: 30px;
  background: linear-gradient(180deg, #ffffff, #f4f6ff);
}

.case-media-ghost {
  position: absolute;
  right: -18px;
  bottom: -24px;
  width: min(74%, 340px);
  height: auto;
  opacity: 0.18;
  border: 0;
  box-shadow: none;
  z-index: 0;
}

.case-media .case-media-photo {
  position: absolute;
  right: 18px;
  top: 18px;
  width: min(28%, 132px);
  aspect-ratio: 4 / 5;
  height: auto;
  border: 1px solid rgba(97, 93, 250, 0.14);
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 22px 36px rgba(67, 61, 126, 0.16);
  z-index: 3;
  object-fit: cover;
  transform: rotate(4deg);
}

.case-media .case-media-photo-alt {
  width: min(30%, 142px);
  transform: rotate(-4deg);
}

.case-media-note {
  position: absolute;
  left: 22px;
  bottom: 22px;
  z-index: 3;
  display: grid;
  gap: 8px;
  max-width: 220px;
  padding: 14px 16px;
  border-radius: 20px;
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 216, 107, 0.22), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 248, 230, 0.9));
  border: 1px solid rgba(255, 216, 107, 0.22);
  box-shadow: 0 22px 42px rgba(67, 61, 126, 0.14);
}

.case-media-note span {
  display: block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-deep);
}

.case-media-note strong {
  display: block;
  font-family: var(--headline);
  font-size: 20px;
  line-height: 1.04;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.case-media-note-dark {
  background:
    radial-gradient(circle at 100% 0%, rgba(35, 210, 226, 0.16), transparent 30%),
    linear-gradient(135deg, rgba(36, 34, 58, 0.98), rgba(77, 62, 151, 0.98));
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 26px 52px rgba(39, 31, 87, 0.24);
}

.case-media-note-dark span {
  color: rgba(255, 255, 255, 0.62);
}

.case-media-note-dark strong {
  color: #ffffff;
}

.case-media-ui {
  display: grid;
  place-items: center;
}

.case-media-browser {
  align-content: center;
}

.case-media-phone {
  align-content: center;
}

.case-media-phone .case-phone-shell {
  width: min(100%, 220px);
  box-shadow: 0 34px 58px rgba(17, 17, 27, 0.28);
}

.case-phone-shell .mockup-phone-body {
  padding: 0;
  overflow: hidden;
  background: #ffffff;
}

.case-phone-shell .mockup-phone-body > .media-slot {
  min-height: 336px;
}

.case-media-ui .case-media-photo {
  left: auto;
  right: 18px;
  top: 18px;
  bottom: auto;
}

.case-dodo-ui {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  min-height: 100%;
  width: 100%;
  border-radius: 20px;
  background:
    radial-gradient(circle at 24% 18%, rgba(35, 210, 226, 0.16), transparent 18%),
    linear-gradient(180deg, rgba(97, 93, 250, 0.1), rgba(35, 210, 226, 0.12));
  border: 1px solid rgba(97, 93, 250, 0.1);
}

.dodo-screen {
  padding: 14px;
  border-radius: 20px;
  background: linear-gradient(180deg, #ffffff, #f3f4ff);
}

.dodo-header,
.dodo-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 12px;
  font-weight: 700;
  color: var(--ink-soft);
}

.dodo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 16px 0;
}

.dodo-item {
  aspect-ratio: 1;
  border-radius: 18px;
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(22, 21, 31, 0.06);
  position: relative;
}

.dodo-item::before {
  content: "";
  position: absolute;
  inset: 20%;
  border-radius: 50%;
}

.dodo-item.cheese::before {
  background: radial-gradient(circle at 40% 40%, #ffe79c, #f2c644);
}

.dodo-item.tomato::before {
  background: radial-gradient(circle at 40% 40%, #ff9471, #ff6740);
}

.dodo-item.basil::before,
.dodo-item.coin::before {
  background: radial-gradient(circle at 40% 40%, #8f81ff, #615dfa);
}

.case-copy {
  display: grid;
  align-content: start;
  gap: 16px;
  padding: 24px 28px 24px 18px;
}

.case-spotlight-alt .case-copy {
  padding: 24px 28px 24px 18px;
}

.case-brand-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.case-company-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  min-width: 58px;
  height: 58px;
  padding: 8px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(97, 93, 250, 0.12);
  box-shadow: 0 14px 28px rgba(67, 61, 126, 0.08);
}

.case-company-logo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 14px;
}

.case-label {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(244, 245, 255, 0.94));
  color: var(--brand-deep);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid rgba(97, 93, 250, 0.12);
  box-shadow: 0 12px 24px rgba(97, 93, 250, 0.08);
}

.case-copy h3 {
  margin: 0;
  font-size: clamp(30px, 3vw, 38px);
  line-height: 1.04;
}

.case-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  padding: 1px;
  border-radius: 26px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(97, 93, 250, 0.16), rgba(35, 210, 226, 0.14));
  box-shadow: 0 22px 44px rgba(67, 61, 126, 0.08);
}

.case-fact {
  padding: 16px 18px 18px;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
  background: rgba(255, 255, 255, 0.96);
}

.case-fact:nth-child(1) {
  background: linear-gradient(180deg, rgba(242, 248, 255, 0.98), rgba(248, 250, 255, 0.94));
}

.case-fact:nth-child(2) {
  background: linear-gradient(180deg, rgba(255, 249, 235, 0.98), rgba(255, 252, 245, 0.94));
}

.case-fact strong {
  margin-top: 8px;
  font-size: 21px;
  line-height: 1.1;
}

.metric-row {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding: 1px;
  border-radius: 26px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(97, 93, 250, 0.16), rgba(35, 210, 226, 0.14), rgba(255, 216, 107, 0.14));
  box-shadow: 0 22px 44px rgba(67, 61, 126, 0.08);
}

.metric-row .metric-chip {
  min-height: 100%;
  padding: 16px 18px 18px;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
  background: rgba(255, 255, 255, 0.98);
}

.metric-row .metric-chip::before {
  display: none;
}

.metric-row .metric-chip:nth-child(1) {
  background: linear-gradient(180deg, rgba(242, 248, 255, 0.98), rgba(248, 250, 255, 0.95));
}

.metric-row .metric-chip:nth-child(2) {
  background: linear-gradient(180deg, rgba(248, 246, 255, 0.98), rgba(250, 249, 255, 0.95));
}

.metric-row .metric-chip:nth-child(3) {
  background: linear-gradient(180deg, rgba(255, 249, 235, 0.98), rgba(255, 252, 245, 0.95));
}

.metric-row .metric-chip strong {
  font-size: 28px;
}

.source-note {
  font-size: 13px;
}

.solutions-section .container,
.mechanics-section .container {
  position: relative;
  overflow: hidden;
  padding: 32px;
  border-radius: 44px;
  border: 1px solid rgba(97, 93, 250, 0.14);
  background:
    radial-gradient(circle at 92% 8%, rgba(97, 93, 250, 0.16), transparent 24%),
    radial-gradient(circle at 0% 100%, rgba(35, 210, 226, 0.12), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 248, 255, 0.95));
  box-shadow: var(--shadow);
}

.solutions-section .container::before,
.mechanics-section .container::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(97, 93, 250, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(97, 93, 250, 0.03) 1px, transparent 1px);
  background-size: 86px 86px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.26), transparent 92%);
}

.solutions-section .container::after {
  content: "Systems";
  top: 10px;
  right: 34px;
  font-size: clamp(56px, 9vw, 128px);
  color: rgba(97, 93, 250, 0.035);
}

.mechanics-section .container::after {
  content: "Loops";
}

.solutions-section .container > *,
.mechanics-section .container > * {
  position: relative;
  z-index: 1;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 0;
}

.solutions-intro {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
  margin-bottom: 22px;
}

.solutions-section .section-head h2 {
  max-width: 11ch;
  font-size: clamp(38px, 4.1vw, 56px);
}

.solutions-intro > .section-head {
  align-content: start;
}

.solutions-intro-card {
  display: grid;
  align-self: stretch;
  justify-self: stretch;
  max-width: none;
  align-content: start;
  gap: 14px;
  padding: 22px 22px 20px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 216, 107, 0.18), transparent 28%),
    radial-gradient(circle at 0% 100%, rgba(35, 210, 226, 0.12), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 247, 255, 0.92));
  border: 1px solid rgba(97, 93, 250, 0.12);
  box-shadow: 0 20px 44px rgba(67, 61, 126, 0.1);
}

.solutions-intro-card strong {
  display: block;
  max-width: none;
  color: var(--ink);
  font-family: var(--headline);
  font-size: 24px;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.solutions-intro-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.solutions-intro-points div {
  padding: 12px 12px 13px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(97, 93, 250, 0.1);
}

.solutions-intro-points span {
  display: block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-deep);
}

.solutions-intro-points strong {
  margin-top: 6px;
  max-width: none;
  font-size: 15px;
  line-height: 1.12;
}

.solutions-showcase {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.solutions-showcase-page {
  margin-top: 28px;
}

.directions-head {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
  margin-bottom: 28px;
}

.directions-head .section-head {
  align-content: start;
}

.directions-head .section-head p {
  max-width: 46ch;
}

.directions-mascot {
  position: relative;
  overflow: hidden;
  min-height: 268px;
  border-radius: 32px;
  border: 1px solid rgba(97, 93, 250, 0.12);
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 216, 107, 0.16), transparent 26%),
    radial-gradient(circle at 0% 100%, rgba(35, 210, 226, 0.12), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(243, 247, 255, 0.94));
  box-shadow: 0 24px 56px rgba(67, 61, 126, 0.1);
}

.directions-mascot::before,
.directions-mascot::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(97, 93, 250, 0.12);
}

.directions-mascot::before {
  width: 188px;
  height: 188px;
  right: 32px;
  top: 24px;
}

.directions-mascot::after {
  width: 244px;
  height: 244px;
  right: 4px;
  top: -4px;
  border-color: rgba(35, 210, 226, 0.12);
}

.directions-mascot-image {
  position: absolute;
  right: 46px;
  bottom: 18px;
  width: 172px;
  z-index: 2;
  filter: drop-shadow(0 24px 34px rgba(97, 93, 250, 0.18));
}

.directions-chip {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(97, 93, 250, 0.12);
  box-shadow: 0 14px 28px rgba(67, 61, 126, 0.08);
  color: var(--brand-deep);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.directions-chip-left {
  left: 22px;
  bottom: 82px;
}

.directions-chip-top {
  right: 118px;
  top: 22px;
}

.directions-chip-right {
  right: 22px;
  bottom: 116px;
}

.directions-mascot-note {
  position: absolute;
  left: 22px;
  right: 184px;
  bottom: 22px;
  z-index: 3;
  display: grid;
  gap: 8px;
  padding: 16px 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(97, 93, 250, 0.12);
  box-shadow: 0 18px 34px rgba(67, 61, 126, 0.08);
}

.directions-mascot-note span {
  display: block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand);
}

.directions-mascot-note strong {
  display: block;
  margin: 0;
  font-family: var(--headline);
  font-size: 24px;
  line-height: 1.06;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.solutions-stage {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border-radius: 36px;
  border: 1px solid rgba(97, 93, 250, 0.14);
  background:
    radial-gradient(circle at 0% 100%, rgba(35, 210, 226, 0.16), transparent 24%),
    radial-gradient(circle at 100% 0%, rgba(255, 216, 107, 0.16), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 247, 255, 0.94));
  box-shadow: 0 28px 70px rgba(67, 61, 126, 0.16);
}

.solutions-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 62px 62px;
  z-index: 1;
}

.solutions-stage-main {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 0.98;
}

.solutions-stage-window {
  position: absolute;
  left: 26px;
  bottom: 28px;
  width: min(46%, 290px);
  border-radius: 24px;
  border: 1px solid rgba(97, 93, 250, 0.14);
  box-shadow: 0 24px 48px rgba(67, 61, 126, 0.22);
  z-index: 2;
}

.solutions-stage-mascot {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 88px;
  z-index: 3;
  filter: drop-shadow(0 18px 28px rgba(49, 40, 111, 0.24));
}

.solutions-stage-card {
  position: absolute;
  top: 22px;
  right: 22px;
  display: grid;
  gap: 10px;
  width: min(280px, calc(100% - 44px));
  padding: 18px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 216, 107, 0.22), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 247, 226, 0.9));
  border: 1px solid rgba(255, 216, 107, 0.22);
  box-shadow: 0 20px 40px rgba(67, 61, 126, 0.12);
  z-index: 3;
}

.solutions-stage-card span,
.mechanics-stage-note span,
.mechanics-item-head span {
  display: block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-deep);
}

.solutions-stage-card strong,
.mechanics-stage-note strong {
  display: block;
  font-family: var(--headline);
  font-size: 26px;
  line-height: 1.04;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.solutions-stage-card p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.58;
}

.solutions-stage-strip {
  position: absolute;
  left: 24px;
  top: 24px;
  z-index: 3;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: calc(100% - 332px);
}

.solutions-stage-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(97, 93, 250, 0.1);
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 700;
  box-shadow: 0 12px 24px rgba(67, 61, 126, 0.08);
}

.solutions-rail {
  display: grid;
  gap: 0;
  height: 100%;
  padding: 12px;
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(243, 246, 255, 0.88));
  border: 1px solid rgba(97, 93, 250, 0.12);
  box-shadow: 0 24px 56px rgba(67, 61, 126, 0.1);
}

.solution-rail-item {
  position: relative;
  display: grid;
  gap: 12px;
  padding: 20px 18px 22px 26px;
  border-bottom: 1px solid rgba(97, 93, 250, 0.1);
}

.solution-rail-item:last-child {
  border-bottom: 0;
}

.solution-rail-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 20px;
  bottom: 20px;
  width: 5px;
  border-radius: 0 8px 8px 0;
  background: linear-gradient(180deg, #23d2e2, #615dfa, #ffd86b);
}

.solution-rail-item:nth-child(1) {
  background: linear-gradient(180deg, rgba(240, 248, 255, 0.78), rgba(240, 248, 255, 0));
}

.solution-rail-item:nth-child(2) {
  background: linear-gradient(180deg, rgba(248, 246, 255, 0.84), rgba(248, 246, 255, 0));
}

.solution-rail-item:nth-child(3) {
  background: linear-gradient(180deg, rgba(255, 248, 233, 0.82), rgba(255, 248, 233, 0));
}

.solution-rail-item h3 {
  margin: 0;
  font-family: var(--headline);
  font-size: 32px;
  line-height: 1.04;
  letter-spacing: -0.03em;
}

.solution-rail-item p {
  margin: 0;
  max-width: 34ch;
  color: var(--ink-soft);
  line-height: 1.64;
}

.solution-rail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.solution-rail-meta span,
.mechanics-item-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(97, 93, 250, 0.1);
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 700;
  box-shadow: 0 12px 24px rgba(67, 61, 126, 0.06);
}

.solution-card {
  position: relative;
  overflow: hidden;
  display: grid;
  align-content: start;
  gap: 16px;
  padding: 24px;
}

.solution-card::before {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  top: 0;
  height: 5px;
  border-radius: 0 0 10px 10px;
  background: linear-gradient(90deg, #23d2e2, #615dfa, #ffd86b);
}

.solution-card:nth-child(1) {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(240, 247, 255, 0.94));
}

.solution-card:nth-child(2) {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 241, 255, 0.94));
}

.solution-card:nth-child(3) {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 247, 225, 0.94));
}

@media (min-width: 1181px) {
  .solution-card:nth-child(2) {
    margin-top: 18px;
  }

  .solution-card:nth-child(3) {
    margin-top: 36px;
  }
}

.solution-card h3 {
  margin: 0;
  font-size: 32px;
  line-height: 1.04;
}

.solution-lines {
  display: grid;
  gap: 10px;
}

.solution-lines div {
  padding: 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(97, 93, 250, 0.1);
}

.solution-lines strong,
.approach-outcomes strong,
.final-stats strong {
  margin-top: 8px;
  font-family: var(--headline);
  font-size: 20px;
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.approach-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(420px, 1.02fr);
  gap: 20px;
  margin-top: 24px;
}

.approach-manifest {
  display: grid;
  align-content: start;
  gap: 16px;
  padding: 24px;
  background:
    radial-gradient(circle at 100% 0%, rgba(35, 210, 226, 0.18), transparent 28%),
    linear-gradient(180deg, rgba(36, 34, 58, 0.98), rgba(76, 58, 145, 0.98));
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 30px 70px rgba(55, 44, 114, 0.28);
}

.approach-manifest h3 {
  margin: 0;
  font-size: clamp(30px, 3.1vw, 42px);
  line-height: 0.98;
  color: #ffffff;
  max-width: 15ch;
  text-wrap: balance;
}

.approach-manifest p {
  max-width: 52ch;
  color: rgba(255, 255, 255, 0.76);
}

.approach-manifest .solution-kicker {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.approach-manifest .pill-row span {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.92);
}

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

.approach-outcomes article {
  display: grid;
  align-content: start;
  min-height: 106px;
  padding: 14px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.approach-outcomes span {
  color: rgba(255, 255, 255, 0.66);
}

.approach-outcomes strong {
  color: #ffffff;
  text-wrap: balance;
}

.approach-section .section-head h2 {
  max-width: none;
  font-size: clamp(34px, 4vw, 58px);
}

@media (min-width: 861px) {
  .approach-section .section-head h2 {
    white-space: nowrap;
  }
}

.approach-steps {
  position: relative;
  display: grid;
  gap: 0;
  overflow: hidden;
  padding: 10px;
  border-radius: 38px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(244, 247, 255, 0.86));
  border: 1px solid rgba(97, 93, 250, 0.12);
  box-shadow: 0 24px 56px rgba(67, 61, 126, 0.1);
}

.approach-steps::before {
  display: none;
}

.approach-step {
  position: relative;
  padding: 18px 22px 18px;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
  border-bottom: 1px solid rgba(97, 93, 250, 0.1);
}

.approach-step:last-child {
  border-bottom: 0;
}

.approach-step:nth-child(1) {
  background: linear-gradient(180deg, rgba(240, 248, 255, 0.78), rgba(240, 248, 255, 0));
}

.approach-step:nth-child(2) {
  background: linear-gradient(180deg, rgba(248, 246, 255, 0.82), rgba(248, 246, 255, 0));
}

.approach-step:nth-child(3) {
  background: linear-gradient(180deg, rgba(255, 248, 233, 0.82), rgba(255, 248, 233, 0));
}

.approach-step:nth-child(4) {
  background: linear-gradient(180deg, rgba(242, 250, 248, 0.8), rgba(242, 250, 248, 0));
}

.step-number {
  position: static;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0;
  margin-bottom: 8px;
  border-radius: 0;
  background: transparent;
  color: var(--brand-deep);
  font-family: var(--headline);
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  box-shadow: none;
}

.approach-step strong {
  font-size: 24px;
  line-height: 1.04;
}

.approach-step p {
  max-width: none;
  color: var(--ink-soft);
  line-height: 1.52;
}

.approach-compare {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.compare-card {
  padding: 22px;
}

.compare-card-weak {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 242, 242, 0.94));
}

.compare-card-strong {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(240, 251, 255, 0.94));
}

.compare-card h3 {
  margin: 12px 0;
  font-size: 30px;
  line-height: 1.04;
}

.mechanics-board {
  display: grid;
  grid-template-columns: minmax(300px, 0.84fr) minmax(0, 1.16fr);
  gap: 20px;
  margin-top: 28px;
}

.mechanics-stage {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  border-radius: 36px;
  border: 1px solid rgba(97, 93, 250, 0.14);
  background:
    radial-gradient(circle at 100% 0%, rgba(35, 210, 226, 0.16), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 247, 255, 0.94));
  box-shadow: 0 28px 70px rgba(67, 61, 126, 0.16);
}

.mechanics-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 58px 58px;
  z-index: 1;
}

.mechanics-stage-main {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 0.98;
}

.mechanics-stage-window {
  position: absolute;
  top: 22px;
  right: 22px;
  width: min(42%, 250px);
  border-radius: 24px;
  border: 1px solid rgba(97, 93, 250, 0.14);
  box-shadow: 0 24px 48px rgba(67, 61, 126, 0.2);
  z-index: 2;
}

.mechanics-stage-mascot {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 88px;
  z-index: 3;
  filter: drop-shadow(0 18px 28px rgba(49, 40, 111, 0.24));
}

.mechanics-stage-note {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  display: grid;
  gap: 10px;
  padding: 18px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 216, 107, 0.22), transparent 34%),
    linear-gradient(135deg, rgba(36, 34, 58, 0.98), rgba(77, 62, 151, 0.98));
  box-shadow: 0 26px 52px rgba(39, 31, 87, 0.22);
  z-index: 3;
}

.mechanics-stage-note span {
  color: rgba(255, 255, 255, 0.64);
}

.mechanics-stage-note strong {
  color: #ffffff;
}

.mechanics-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  padding: 1px;
  border-radius: 34px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(97, 93, 250, 0.16), rgba(35, 210, 226, 0.14));
  box-shadow: 0 24px 56px rgba(67, 61, 126, 0.08);
}

.mechanics-item {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 196px;
  padding: 22px 22px 20px;
  background: rgba(255, 255, 255, 0.98);
}

.mechanics-item:nth-child(3n + 1) {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(243, 248, 255, 0.94));
}

.mechanics-item:nth-child(3n + 2) {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 247, 234, 0.94));
}

.mechanics-item:nth-child(3n + 3) {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 243, 255, 0.94));
}

.mechanics-item-head {
  display: grid;
  gap: 10px;
}

.mechanics-item-head h3 {
  margin: 0;
  font-family: var(--headline);
  font-size: 28px;
  line-height: 1.04;
  letter-spacing: -0.03em;
}

.mechanics-item p {
  margin: 0;
  max-width: 30ch;
  color: var(--ink-soft);
  line-height: 1.62;
}

.mechanics-item-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.launch-corridor {
  display: grid;
  grid-template-columns: minmax(320px, 0.98fr) minmax(320px, 0.92fr);
  gap: 20px;
  margin-top: 28px;
}

.launch-corridor-stage {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  border-radius: 36px;
  border: 1px solid rgba(97, 93, 250, 0.14);
  background:
    radial-gradient(circle at 100% 0%, rgba(35, 210, 226, 0.16), transparent 24%),
    radial-gradient(circle at 0% 100%, rgba(255, 216, 107, 0.14), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 247, 255, 0.94));
  box-shadow: 0 28px 70px rgba(67, 61, 126, 0.16);
}

.launch-corridor-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 58px 58px;
  z-index: 1;
}

.launch-corridor-main {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 0.98;
}

.launch-corridor-overlay {
  position: absolute;
  left: 24px;
  bottom: 24px;
  width: min(46%, 270px);
  border-radius: 24px;
  border: 1px solid rgba(97, 93, 250, 0.14);
  box-shadow: 0 24px 48px rgba(67, 61, 126, 0.22);
  z-index: 2;
}

.launch-corridor-mascot {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 88px;
  z-index: 3;
  filter: drop-shadow(0 18px 28px rgba(49, 40, 111, 0.24));
}

.launch-corridor-note {
  position: absolute;
  top: 22px;
  right: 22px;
  z-index: 3;
  display: grid;
  gap: 10px;
  width: min(300px, calc(100% - 44px));
  padding: 18px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 216, 107, 0.22), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 247, 226, 0.9));
  border: 1px solid rgba(255, 216, 107, 0.22);
  box-shadow: 0 20px 40px rgba(67, 61, 126, 0.12);
}

.launch-corridor-note span {
  display: block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-deep);
}

.launch-corridor-note strong {
  display: block;
  font-family: var(--headline);
  font-size: 28px;
  line-height: 1.04;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.launch-corridor-note p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.58;
}

.mechanics-grid {
  position: relative;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 24px;
  padding: 1px;
  border-radius: 34px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(97, 93, 250, 0.16), rgba(35, 210, 226, 0.14));
  box-shadow: 0 24px 56px rgba(67, 61, 126, 0.08);
}

.mechanic-card {
  position: relative;
  overflow: hidden;
  min-height: 228px;
  padding: 28px 24px 24px;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
}

.mechanic-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 5px;
  background: linear-gradient(90deg, #23d2e2, #615dfa);
}

.mechanic-card::after {
  content: "";
  position: absolute;
  top: -34px;
  right: -26px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  opacity: 0.62;
  pointer-events: none;
}

.mechanic-card:nth-child(3n + 1) {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(243, 248, 255, 0.94));
}

.mechanic-card:nth-child(3n + 1)::after {
  background: radial-gradient(circle, rgba(35, 210, 226, 0.16), rgba(35, 210, 226, 0));
}

.mechanic-card:nth-child(3n + 2) {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 247, 234, 0.94));
}

.mechanic-card:nth-child(3n + 2)::after {
  background: radial-gradient(circle, rgba(255, 216, 107, 0.2), rgba(255, 216, 107, 0));
}

.mechanic-card:nth-child(3n + 3) {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 243, 255, 0.94));
}

.mechanic-card:nth-child(3n + 3)::after {
  background: radial-gradient(circle, rgba(97, 93, 250, 0.18), rgba(97, 93, 250, 0));
}

.mechanic-index {
  width: auto;
  height: auto;
  border-radius: 0;
  background: transparent;
  color: var(--brand-deep);
  display: inline-flex;
  align-items: center;
  margin-bottom: 14px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.mechanic-card h3 {
  margin: 0 0 12px;
  max-width: 10ch;
  font-size: 30px;
  line-height: 1.06;
}

.mechanic-card p {
  max-width: 28ch;
  color: var(--ink-soft);
}

.calculator-shell {
  --surface-spot: radial-gradient(circle at 86% 20%, rgba(255, 255, 255, 0.14), transparent 26%);
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.82fr);
  gap: 18px;
  padding: 30px;
  border-radius: 44px;
  background:
    var(--surface-spot),
    radial-gradient(circle at 8% 100%, rgba(35, 210, 226, 0.1), transparent 22%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(241, 244, 255, 0.92));
  border: 1px solid rgba(97, 93, 250, 0.14);
  box-shadow: var(--shadow);
}

.calculator-copy {
  padding: 24px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(97, 93, 250, 0.12);
  box-shadow: 0 20px 44px rgba(67, 61, 126, 0.08);
}

.calc-form {
  display: grid;
  gap: 18px;
  margin-top: 18px;
}

.calc-field {
  display: grid;
  gap: 12px;
}

.calc-title {
  font-family: var(--headline);
  font-size: 22px;
  line-height: 1.08;
  color: var(--ink);
}

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

.choice-pill {
  position: relative;
  display: block;
}

.choice-pill input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.choice-pill span {
  display: block;
  min-height: 100%;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(97, 93, 250, 0.1);
  color: var(--ink-soft);
  line-height: 1.45;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.choice-pill input:checked + span {
  background: linear-gradient(180deg, rgba(245, 244, 255, 0.98), rgba(236, 244, 255, 0.98));
  border-color: rgba(97, 93, 250, 0.2);
  color: var(--brand-deep);
  box-shadow: 0 18px 34px rgba(97, 93, 250, 0.1);
}

.range-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
}

.range-head strong {
  font-family: var(--headline);
  font-size: 28px;
  line-height: 1;
  letter-spacing: -0.04em;
}

input[type="range"] {
  width: 100%;
  accent-color: var(--brand);
}

.calculator-result {
  --surface-spot: radial-gradient(circle at 24% 10%, rgba(255, 255, 255, 0.1), transparent 24%);
  padding: 24px;
  border-radius: 32px;
  background:
    var(--surface-spot),
    radial-gradient(circle at 100% 0%, rgba(35, 210, 226, 0.18), transparent 26%),
    linear-gradient(180deg, rgba(35, 34, 59, 0.98), rgba(74, 58, 144, 0.98));
  color: #ffffff;
  box-shadow: 0 34px 76px rgba(42, 35, 89, 0.28);
}

.result-format {
  margin-top: 16px;
  font-size: clamp(40px, 5vw, 58px);
  color: #ffffff;
}

.result-copy,
.result-box p,
.result-tip p {
  color: rgba(255, 255, 255, 0.74);
}

.result-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.result-metric,
.result-box {
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.result-metric span,
.result-box span {
  color: rgba(255, 255, 255, 0.66);
}

.result-metric strong {
  margin-top: 10px;
  color: #ffffff;
}

.result-box {
  margin-top: 12px;
}

.result-list {
  list-style: none;
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 10px 0 0;
}

.result-list li {
  position: relative;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.62;
}

.result-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f7e16a, #23d2e2);
}

.result-tip {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  margin-top: 18px;
}

.faq-brief-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.82fr);
  gap: 20px;
}

body[data-page="contact"] .faq-brief-shell::after {
  display: none;
}

.faq-column {
  display: grid;
  align-content: start;
  gap: 20px;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  position: relative;
  padding: 22px 56px 22px 24px;
  font-family: var(--headline);
  font-size: 24px;
  line-height: 1.12;
}

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

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 18px;
  font-size: 30px;
  color: var(--brand);
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item[open] {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 248, 255, 0.94));
}

.faq-item p {
  padding: 0 24px 22px;
}

.brief-card {
  display: grid;
  align-content: start;
  gap: 16px;
  padding: 26px;
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 216, 107, 0.2), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 247, 232, 0.94));
}

.brief-card h3 {
  margin: 0;
  font-size: 34px;
  line-height: 1.02;
}

.brief-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

body[data-page="contact"] .brief-card .eyebrow {
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: none;
  box-shadow: none;
}

body[data-page="contact"] .brief-points {
  display: grid;
  gap: 8px;
  padding-top: 4px;
}

body[data-page="contact"] .brief-points span {
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: none;
  box-shadow: none;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  white-space: normal;
}

body[data-page="contact"] .brief-points span::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, #23d2e2, #615dfa);
  vertical-align: middle;
}

.contact-form {
  display: grid;
  gap: 12px;
}

.form-field {
  display: grid;
  gap: 8px;
}

.field-label {
  display: block;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(97, 93, 250, 0.12);
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(97, 93, 250, 0.26);
  box-shadow: 0 0 0 4px rgba(97, 93, 250, 0.08);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #8a8997;
}

.form-note {
  padding: 14px 16px;
  border: 1px solid rgba(97, 93, 250, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
}

.form-note[data-state="success"] {
  color: var(--ink);
  border-color: rgba(35, 210, 226, 0.22);
  background:
    radial-gradient(circle at 100% 0%, rgba(35, 210, 226, 0.16), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(239, 255, 252, 0.94));
}

.form-note[data-state="info"] {
  border-color: rgba(97, 93, 250, 0.14);
  background:
    radial-gradient(circle at 100% 0%, rgba(97, 93, 250, 0.12), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 248, 255, 0.92));
}

.form-note a {
  color: var(--brand);
  font-weight: inherit;
}

.form-consent {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: start;
  gap: 12px;
  margin-top: 2px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.56;
}

.form-consent input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--brand);
}

.form-consent span {
  display: block;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 16px;
}

.form-side-note {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.footer-lead-section {
  padding-top: 12px;
}

.footer-lead-shell {
  --surface-spot: radial-gradient(circle at 78% 18%, rgba(255, 255, 255, 0.2), transparent 28%);
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(420px, 1fr);
  gap: 24px;
  align-items: stretch;
  overflow: hidden;
}

.footer-lead-copy {
  display: grid;
  align-content: center;
  gap: 16px;
}

.footer-lead-copy h2 {
  margin: 0;
  max-width: 11ch;
  font-family: var(--headline);
  font-size: clamp(38px, 4.2vw, 62px);
  line-height: 0.96;
  letter-spacing: -0.05em;
}

.footer-lead-copy p {
  max-width: 48ch;
  margin: 0;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.58;
}

.footer-lead-card {
  display: grid;
  gap: 16px;
  align-content: start;
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 100% 0%, rgba(35, 210, 226, 0.14), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 247, 255, 0.92));
  box-shadow: var(--shadow-soft);
}

.footer-lead-card .contact-form {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.footer-lead-card .form-field-wide {
  grid-column: 1 / -1;
}

.final-cta-section {
  padding-bottom: 20px;
}

.final-cta-shell {
  --surface-spot: radial-gradient(circle at 72% 18%, rgba(255, 255, 255, 0.2), transparent 28%);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: 20px;
  align-items: stretch;
  position: relative;
  overflow: hidden;
  padding: 30px;
  background:
    var(--surface-spot),
    radial-gradient(circle at 8% 100%, rgba(35, 210, 226, 0.12), transparent 22%),
    linear-gradient(135deg, rgba(248, 249, 255, 0.96), rgba(255, 244, 214, 0.72));
  border: 1px solid rgba(97, 93, 250, 0.14);
}

.final-cta-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(97, 93, 250, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(97, 93, 250, 0.03) 1px, transparent 1px);
  background-size: 84px 84px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.22), transparent 92%);
}

.final-cta-shell > * {
  position: relative;
  z-index: 1;
}

.final-cta-copy {
  display: grid;
  align-content: start;
  gap: 16px;
}

.final-cta-side {
  display: grid;
  align-content: start;
  gap: 16px;
}

.final-cta-stage {
  position: relative;
  min-height: 310px;
  overflow: hidden;
  border-radius: 32px;
  border: 1px solid rgba(97, 93, 250, 0.14);
  background:
    radial-gradient(circle at 100% 0%, rgba(35, 210, 226, 0.14), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(243, 247, 255, 0.94));
  box-shadow: 0 28px 64px rgba(67, 61, 126, 0.14);
}

.final-cta-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 58px 58px;
  z-index: 1;
}

.final-cta-stage-main {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 0.96;
}

.final-cta-stage-overlay {
  position: absolute;
  left: 18px;
  bottom: 18px;
  width: min(48%, 240px);
  border-radius: 22px;
  border: 1px solid rgba(97, 93, 250, 0.14);
  box-shadow: 0 22px 46px rgba(67, 61, 126, 0.22);
  z-index: 2;
}

.final-cta-stage-mascot {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 88px;
  z-index: 3;
  filter: drop-shadow(0 18px 28px rgba(49, 40, 111, 0.24));
}

.final-cta-stage-note {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 3;
  display: grid;
  gap: 10px;
  max-width: 300px;
  padding: 18px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 216, 107, 0.22), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 248, 230, 0.9));
  border: 1px solid rgba(255, 216, 107, 0.22);
  box-shadow: 0 22px 42px rgba(67, 61, 126, 0.14);
}

.final-cta-stage-note span {
  display: block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-deep);
}

.final-cta-stage-note strong {
  display: block;
  font-family: var(--headline);
  font-size: 28px;
  line-height: 1.04;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.final-cta-stage-note p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.56;
}

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

.final-flow {
  display: grid;
  gap: 1px;
  padding: 1px;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(97, 93, 250, 0.18), rgba(35, 210, 226, 0.16), rgba(255, 216, 107, 0.16));
  box-shadow: 0 20px 42px rgba(67, 61, 126, 0.1);
}

.final-flow article,
.final-stats article {
  padding: 18px;
  background: rgba(255, 255, 255, 0.95);
}

.final-flow article:nth-child(1) {
  background: linear-gradient(180deg, rgba(242, 248, 255, 0.98), rgba(248, 250, 255, 0.95));
}

.final-flow article:nth-child(2) {
  background: linear-gradient(180deg, rgba(248, 246, 255, 0.98), rgba(250, 249, 255, 0.95));
}

.final-flow article:nth-child(3) {
  background: linear-gradient(180deg, rgba(255, 249, 235, 0.98), rgba(255, 252, 245, 0.95));
}

.final-flow span {
  display: block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.final-flow strong {
  display: block;
  margin-top: 10px;
  font-family: var(--headline);
  font-size: 28px;
  line-height: 1.04;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.site-footer {
  padding: 8px 0 36px;
}

.footer-row {
  display: grid;
  grid-template-columns: minmax(220px, 1.15fr) minmax(0, 0.9fr) auto;
  align-items: start;
  gap: 18px 26px;
  padding: 24px 26px 22px;
  border-radius: 32px;
  border: 1px solid rgba(97, 93, 250, 0.12);
  background:
    radial-gradient(circle at 0% 100%, rgba(35, 210, 226, 0.1), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(244, 247, 255, 0.82));
  box-shadow: 0 22px 46px rgba(67, 61, 126, 0.08);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}

.footer-contact {
  display: none;
}

.footer-phone,
.footer-contact a,
.footer-contact span {
  color: var(--ink-soft);
  text-decoration: none;
}

.footer-phone {
  font-family: var(--headline);
  font-size: 30px;
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.footer-contact a {
  font-size: 14px;
  font-weight: 700;
  transition: color 0.2s ease;
}

.footer-contact span {
  font-size: 13px;
  color: var(--muted);
}

.footer-contact a:hover {
  color: var(--brand);
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: flex-start;
}

.footer-socials a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 36px;
  padding: 8px 14px 8px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(97, 93, 250, 0.1);
  box-shadow: 0 12px 24px rgba(67, 61, 126, 0.06);
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition:
    transform 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.footer-socials a img {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.footer-socials a span {
  line-height: 1;
}

.footer-socials a::before {
  display: none;
}

.footer-socials a:hover {
  transform: translateY(-1px);
  color: var(--brand);
  border-color: rgba(97, 93, 250, 0.18);
  box-shadow: 0 16px 28px rgba(67, 61, 126, 0.08);
}

.footer-status {
  display: none;
}

.footer-status span {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding-left: 16px;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 700;
}

.footer-status span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  transform: translateY(-50%);
  background: linear-gradient(135deg, #23d2e2, #615dfa);
}

.footer-links a {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 0 0 2px;
  background: transparent;
  border: 0;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 700;
  transition: color 0.2s ease;
}

.footer-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #23d2e2, #615dfa, #ffd86b);
  opacity: 0;
  transform: scaleX(0.4);
  transform-origin: left;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.footer-links a:hover {
  color: var(--brand);
}

.footer-links a:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.footer-copy {
  margin: 0;
  grid-column: 1 / -1;
  justify-self: start;
  padding-top: 10px;
  border-top: 1px solid rgba(97, 93, 250, 0.08);
  width: 100%;
  font-size: 13px;
  color: var(--muted);
}

.footer-copy a {
  color: inherit;
  text-decoration-color: rgba(97, 93, 250, 0.26);
  text-underline-offset: 3px;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.footer-copy a:hover {
  color: var(--brand);
  text-decoration-color: rgba(97, 93, 250, 0.44);
}

.site-nav a:focus-visible,
.header-toggle:focus-visible,
.header-phone-link:focus-visible,
.header-social-link:focus-visible,
.button:focus-visible,
.choice-pill input:focus-visible + span,
.footer-links a:focus-visible,
.footer-contact a:focus-visible,
.footer-socials a:focus-visible,
.contact-form input:focus-visible,
.contact-form textarea:focus-visible,
.form-consent input:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(97, 93, 250, 0.1);
}

@media (hover: hover) and (pointer: fine) {
  .metric-card,
  .solution-card,
  .case-spotlight,
  .mechanic-card,
  .page-atlas-item,
  .faq-item,
  .brief-card,
  .showcase-card,
  .compare-card {
    transition:
      transform 0.28s ease,
      box-shadow 0.28s ease,
      border-color 0.28s ease,
      background 0.28s ease;
  }

  .metric-card:hover,
  .solution-card:hover,
  .case-spotlight:hover,
  .mechanic-card:hover,
  .page-atlas-item:hover,
  .faq-item:hover,
  .brief-card:hover,
  .showcase-card:hover,
  .compare-card:hover {
    transform: translateY(-4px);
    border-color: rgba(97, 93, 250, 0.14);
    box-shadow: 0 24px 48px rgba(42, 36, 82, 0.12);
  }
}

.js .reveal-item {
  opacity: 1;
  transform: none;
  transition: none;
  transition-delay: 0ms;
  will-change: auto;
}

.js .reveal-item.is-visible {
  opacity: 1;
  transform: none;
}

.policy-hero-shell {
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.82fr);
}

.policy-hero-shell-single {
  grid-template-columns: 1fr;
}

.policy-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.72fr);
  gap: 20px;
  align-items: start;
}

.policy-grid-single {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: start;
}

.policy-card,
.policy-note-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(12px);
}

.policy-card {
  padding: 30px;
}

.policy-note-card {
  position: sticky;
  top: 114px;
  display: grid;
  gap: 18px;
  padding: 24px;
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 216, 107, 0.16), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 249, 255, 0.9));
}

.policy-section {
  display: grid;
  gap: 12px;
}

.policy-section + .policy-section {
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid rgba(97, 93, 250, 0.1);
}

.policy-section h2,
.policy-note-card h3 {
  margin: 0;
  font-size: clamp(28px, 3vw, 36px);
  line-height: 1.02;
}

.policy-section h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.16;
}

.policy-section p,
.policy-note-card p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.72;
}

.policy-list,
.policy-side-list {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 10px;
  color: var(--ink-soft);
  line-height: 1.68;
}

.policy-list strong,
.policy-note-card strong {
  color: var(--ink);
}

.policy-meta {
  display: grid;
  gap: 12px;
}

.policy-meta div {
  display: grid;
  gap: 4px;
}

.policy-meta dt {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand);
}

.policy-meta dd {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.62;
}

@media (max-width: 1240px) {
  .page-shell {
    padding-top: 132px;
  }

  .header-row {
    grid-template-columns: minmax(0, 1fr) auto;
    justify-content: space-between;
    gap: 12px;
    min-height: 82px;
    padding: 12px 14px 12px 16px;
  }

  .header-toggle {
    display: inline-flex;
  }

  .header-panel {
    display: none;
    grid-column: 1 / -1;
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 14px;
    margin-top: 2px;
    border-radius: 22px;
    border: 1px solid rgba(97, 93, 250, 0.12);
    background:
      radial-gradient(circle at 100% 0%, rgba(35, 210, 226, 0.14), transparent 24%),
      linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 247, 255, 0.92));
    box-shadow: 0 20px 42px rgba(67, 61, 126, 0.12);
  }

  .header-row.is-menu-open .header-panel {
    display: grid;
  }

  .site-nav {
    width: 100%;
    justify-self: stretch;
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .site-nav a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-height: 46px;
    padding: 0 14px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 10px 22px rgba(67, 61, 126, 0.08);
  }

  .header-meta {
    grid-template-columns: 1fr;
    grid-template-areas:
      "city"
      "phone"
      "socials";
    justify-self: stretch;
    justify-items: start;
    gap: 10px;
  }

  .header-city,
  .header-phone-link {
    justify-self: start;
    width: auto;
  }

  .header-socials {
    justify-self: start;
    gap: 10px;
  }

  .header-actions {
    width: 100%;
    justify-self: stretch;
  }

  .header-actions .button {
    width: 100%;
  }

  .section-head-atlas {
    grid-template-columns: 1fr;
  }

  .atlas-head-visual {
    grid-column: 1;
    grid-row: auto;
  }

  .hero-shell,
  .inner-hero-shell,
  .approach-shell,
  .calculator-shell,
  .faq-brief-shell,
  .footer-lead-shell,
  .final-cta-shell,
  .case-spotlight,
  .case-spotlight-alt {
    grid-template-columns: 1fr;
  }

  .case-spotlight-alt .case-media,
  .case-spotlight-alt .case-copy {
    order: initial;
  }

  .case-copy,
  .case-spotlight-alt .case-copy {
    padding: 24px;
  }

  .case-media {
    min-height: 380px;
  }

  .case-media-frame {
    height: clamp(340px, 40vw, 420px);
  }

  body[data-page="cases"] .cases-hero-stage {
    order: 2;
    min-height: 400px;
  }

  body[data-page="cases"] .inner-hero-copy {
    order: 1;
  }

  .hero-metrics,
  .metric-row,
  .page-intro-grid,
  .story-grid,
  .solutions-intro,
  .solutions-grid,
  .format-grid,
  .page-link-grid,
  .approach-outcomes,
  .mechanics-grid,
  .final-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .showcase-main,
  .showcase-bottom,
  .result-metrics {
    grid-template-columns: 1fr;
  }

  .solutions-intro {
    grid-template-columns: 1fr;
  }

  .directions-head {
    grid-template-columns: 1fr;
  }

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

  body[data-page="home"] .hero-visual {
    max-width: 420px;
    justify-self: center;
    width: 100%;
  }

  body[data-page="home"] .hero-showcase {
    padding: 14px;
  }

  body[data-page="home"] .showcase-stage {
    min-height: 240px;
  }

  body[data-page="home"] .showcase-summary-compact {
    padding: 16px;
  }

  .page-atlas {
    grid-template-columns: 1fr;
  }

  .page-atlas-stage {
    min-height: 460px;
  }

  .case-media-note {
    left: 18px;
    bottom: 18px;
    max-width: 240px;
  }

  .case-media-note strong {
    font-size: 22px;
  }

  .solutions-showcase,
  .mechanics-board,
  .launch-corridor {
    grid-template-columns: 1fr;
  }

  .solutions-stage,
  .mechanics-stage,
  .launch-corridor-stage {
    min-height: 520px;
  }

  .final-cta-stage {
    min-height: 300px;
  }

  .footer-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
  }

  .footer-socials,
  .footer-status {
    justify-self: start;
  }
}

@media (max-width: 860px) {
  .page-shell {
    padding-top: 132px;
  }

  .header-row {
    grid-template-columns: minmax(0, 1fr) auto;
    justify-items: stretch;
    padding: 12px 12px 12px 14px;
  }

  .brand {
    justify-content: flex-start;
  }

  .header-panel {
    padding: 12px;
  }

  .footer-lead-card .contact-form {
    grid-template-columns: 1fr;
  }

  .hero-metrics,
  .metric-row,
  .page-intro-grid,
  .detail-grid,
  .story-grid,
  .solutions-intro-points,
  .solutions-grid,
  .case-facts,
  .approach-outcomes,
  .approach-compare,
  .mechanics-grid,
  .choice-grid,
  .format-grid,
  .page-link-grid,
  .final-stats {
    grid-template-columns: 1fr;
  }

  .case-slider-shell,
  body[data-page="home"] .case-slider .case-list {
    min-height: 0;
  }

  body[data-page="home"] .case-slider [data-case-slide] {
    position: static;
    inset: auto;
    display: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  body[data-page="home"] .case-slider [data-case-slide].is-active {
    display: grid;
  }

  .cta-banner {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .case-media {
    min-height: 320px;
    padding: 20px;
  }

  .case-media-frame {
    width: 100%;
    height: clamp(280px, 54vw, 360px);
  }

  .case-copy,
  .case-spotlight-alt .case-copy {
    gap: 14px;
    padding: 20px 20px 22px;
  }

  .case-copy h3 {
    font-size: clamp(28px, 4.8vw, 34px);
  }

  .case-copy p {
    font-size: 16px;
    line-height: 1.58;
  }

  .case-fact strong {
    font-size: 18px;
    line-height: 1.16;
  }

  .metric-row .metric-chip strong {
    font-size: 24px;
  }

  .metric-row .metric-chip span {
    font-size: 14px;
    line-height: 1.44;
  }

  .source-note {
    font-size: 12px;
    line-height: 1.52;
  }

  .showcase-main {
    gap: 12px;
  }

  .showcase-stage {
    min-height: 230px;
  }

  .showcase-ui-backdrop {
    left: 18px;
    right: -28px;
    height: 144px;
  }

  .showcase-people {
    left: -12px;
    right: -12px;
    bottom: -18px;
    width: calc(100% + 24px);
  }

  .page-link-thumb,
  .summary-visual,
  .summary-visual-frame,
  .cta-visual,
  .cta-visual-frame {
    min-height: 190px;
  }

  .page-atlas {
    gap: 16px;
  }

  .page-atlas-stage {
    min-height: 380px;
  }

  .page-atlas-overlay {
    left: 16px;
    bottom: 16px;
    width: min(46%, 220px);
  }

  .page-atlas-mascot {
    right: 16px;
    bottom: 16px;
    width: 74px;
  }

  .page-atlas-note {
    top: 16px;
    right: 16px;
    width: min(240px, calc(100% - 32px));
    padding: 16px;
  }

  .page-atlas-note strong,
  .page-atlas-item strong {
    font-size: 22px;
  }

  .policy-grid,
  .policy-hero-shell {
    grid-template-columns: 1fr;
  }

  .policy-note-card {
    position: static;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
  }

  body[data-page="home"] .hero-shell {
    padding-bottom: 28px;
  }

  body[data-page="home"] .hero-visual {
    display: none;
  }

  .hero-metrics .metric-card {
    border-radius: 0;
  }

  .hero-metrics .metric-card:nth-child(1) {
    border-radius: 31px 31px 0 0;
  }

  .hero-metrics .metric-card:nth-child(3) {
    border-radius: 0 0 31px 31px;
  }

  .solutions-showcase,
  .mechanics-board,
  .launch-corridor {
    gap: 16px;
  }

  .directions-mascot {
    min-height: 240px;
  }

  .directions-mascot-image {
    right: 28px;
    width: 148px;
  }

  .directions-mascot-note {
    right: 150px;
  }

  .atlas-head-visual {
    min-height: 230px;
    border-radius: 26px;
  }

  .atlas-head-ring-sm {
    width: 128px;
    height: 128px;
    right: 42px;
    top: 22px;
  }

  .atlas-head-ring-lg {
    width: 178px;
    height: 178px;
    right: 16px;
    top: 4px;
  }

  .atlas-head-mascot {
    right: 20px;
    bottom: 14px;
    width: 120px;
  }

  .atlas-head-note {
    left: 14px;
    right: 110px;
    bottom: 14px;
    padding: 12px 14px;
    border-radius: 18px;
  }

  .atlas-head-note strong {
    font-size: 18px;
  }

  .atlas-head-chip-top {
    left: 14px;
    top: 14px;
  }

  .atlas-head-chip-right {
    right: 14px;
    top: 54px;
  }

  .solutions-stage,
  .mechanics-stage,
  .launch-corridor-stage {
    min-height: 460px;
  }

  .solutions-stage-window {
    left: 18px;
    bottom: 18px;
    width: min(48%, 240px);
  }

  .solutions-stage-card,
  .mechanics-stage-note,
  .launch-corridor-note {
    padding: 16px;
  }

  .solutions-stage-card {
    top: 18px;
    right: 18px;
    width: min(250px, calc(100% - 36px));
  }

  .solutions-stage-card strong,
  .mechanics-stage-note strong,
  .launch-corridor-note strong {
    font-size: 22px;
  }

  .solutions-stage-strip {
    left: 18px;
    top: 18px;
    max-width: calc(100% - 286px);
  }

  .mechanics-stage-window {
    top: 18px;
    right: 18px;
    width: min(40%, 220px);
  }

  .launch-corridor-overlay {
    left: 18px;
    bottom: 18px;
    width: min(42%, 230px);
  }

  .launch-corridor-note {
    top: 18px;
    right: 18px;
    width: min(260px, calc(100% - 36px));
  }

  .solution-rail-item h3 {
    font-size: 28px;
  }

  .mechanics-list {
    grid-template-columns: 1fr;
  }

  .mechanics-item {
    min-height: auto;
  }

  .cta-banner .hero-actions {
    width: 100%;
  }

  .case-media-note {
    left: 16px;
    bottom: 16px;
    max-width: 200px;
    padding: 14px 16px;
    border-radius: 20px;
  }

  .case-media-note strong {
    font-size: 18px;
  }

  .case-media .case-media-photo {
    width: min(26%, 118px);
    border-radius: 18px;
  }

  .case-media-ghost {
    right: -10px;
    bottom: -16px;
    width: min(68%, 260px);
  }

  .final-cta-stage {
    min-height: 250px;
  }

  .final-cta-stage-overlay {
    left: 14px;
    bottom: 14px;
    width: min(48%, 200px);
    border-radius: 18px;
  }

  .final-cta-stage-mascot {
    right: 14px;
    bottom: 14px;
    width: 76px;
  }

  .final-cta-stage-note {
    top: 14px;
    left: 14px;
    max-width: 230px;
    padding: 14px 16px;
    border-radius: 20px;
  }

  .final-cta-stage-note strong {
    font-size: 22px;
  }

  .final-flow,
  .final-stats {
    grid-template-columns: 1fr;
  }

  .footer-row {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .footer-phone {
    font-size: 26px;
  }

  .footer-copy {
    justify-self: start;
  }

  .policy-card,
  .policy-note-card {
    padding: 22px;
  }
}

@media (max-width: 640px) {
  .page-shell {
    padding-top: 124px;
  }

  .to-top {
    right: 16px;
    bottom: 16px;
  }

  .container {
    width: min(calc(100% - 24px), var(--container));
  }

  .thanks-modal {
    padding: 14px;
  }

  .project-modal {
    padding: 14px;
    align-items: start;
  }

  .thanks-modal-dialog {
    padding: 22px 20px 20px;
    border-radius: 28px;
  }

  .project-modal-dialog {
    max-height: calc(100dvh - 28px);
    padding: 22px 20px 20px;
    border-radius: 28px;
  }

  .thanks-modal-copy h3 {
    font-size: 34px;
  }

  .project-modal-copy h3 {
    font-size: 34px;
  }

  .thanks-modal-copy p {
    font-size: 16px;
    line-height: 1.5;
  }

  .project-modal-copy p {
    font-size: 16px;
    line-height: 1.5;
  }

  .thanks-modal-actions .button {
    width: 100%;
  }

  .project-modal .form-actions .button {
    width: 100%;
  }

  .site-nav {
    overflow: visible;
    width: 100%;
    padding: 0;
  }

  .header-meta {
    justify-items: start;
  }

  .header-city,
  .header-phone-link {
    width: auto;
    justify-content: flex-start;
  }

  .header-socials {
    justify-self: start;
  }

  .format-slider-shell {
    min-height: 500px;
    padding: 16px;
    border-radius: 28px;
  }

  .format-slide {
    inset: 16px;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .format-slide-media {
    height: 240px;
    min-height: 240px;
    padding: 0;
    border-radius: 24px;
  }

  .format-slide-copy strong {
    font-size: 28px;
  }

  .format-slide-copy p {
    max-width: none;
  }

  .hero,
  .section {
    padding-top: 28px;
  }

  .hero::before {
    left: 12px;
    right: 12px;
    height: 560px;
    border-radius: 34px;
  }

  .inner-hero::before {
    left: 12px;
    right: 12px;
    height: 420px;
    border-radius: 34px;
  }

  .hero-shell {
    padding: 30px 22px 24px;
    border-radius: 34px;
  }

  .inner-hero-shell {
    padding: 28px 22px 24px;
    border-radius: 34px;
  }

  .cases-hero-stage {
    min-height: 320px;
    border-radius: 28px;
  }

  .cases-hero-browser {
    width: min(calc(100% - 28px), 360px);
  }

  .cases-hero-card {
    top: 14px;
    right: 14px;
    width: min(200px, calc(100% - 28px));
    padding: 14px;
    border-radius: 18px;
  }

  .cases-hero-card strong {
    font-size: 20px;
  }

  .section-panel,
  .solutions-section .container,
  .mechanics-section .container,
  .calculator-shell,
  .final-cta-shell,
  .hero-showcase,
  .brief-card {
    padding: 20px;
  }

  .hero h1,
  .inner-hero-copy h1,
  .section-head h2,
  .calculator-copy h2,
  .final-cta-copy h2 {
    max-width: none;
  }

  .hero h1 {
    font-size: clamp(42px, 11vw, 56px);
    line-height: 0.92;
  }

  .hero-title-line {
    width: 100%;
  }

  .hero-title-line-accent {
    padding-inline-end: 0.1em;
  }

  .inner-hero-copy p {
    max-width: none;
  }

  .case-media,
  .case-copy,
  .case-spotlight-alt .case-copy {
    padding: 18px;
  }

  .case-slider-shell {
    padding-bottom: 64px;
  }

  .case-media {
    min-height: 250px;
    padding: 16px;
  }

  .case-media-frame {
    height: 260px;
    border-radius: 22px;
  }

  .case-media-frame img {
    border-radius: 22px;
  }

  .case-copy,
  .case-spotlight-alt .case-copy {
    gap: 12px;
    padding: 16px 16px 18px;
  }

  .case-copy h3 {
    font-size: 26px;
    line-height: 1.02;
  }

  .case-copy p {
    font-size: 15px;
    line-height: 1.54;
  }

  .case-fact {
    padding: 14px 14px 16px;
  }

  .case-fact strong {
    font-size: 17px;
  }

  .metric-row .metric-chip {
    padding: 14px 14px 16px;
  }

  .metric-row .metric-chip strong {
    font-size: 22px;
  }

  .faq-item summary {
    padding: 18px 52px 18px 20px;
    font-size: 22px;
  }

  .faq-item p {
    padding: 0 20px 18px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .button {
    width: 100%;
  }

  .result-tip {
    grid-template-columns: 1fr;
  }

  .showcase-track,
  .stage-chip {
    position: static;
  }

  .showcase-stage {
    gap: 10px;
    padding-bottom: 20px;
  }

  .showcase-ui-backdrop {
    position: absolute;
    left: 10px;
    right: -18px;
    bottom: -8px;
    height: 120px;
  }

  .showcase-rocket {
    top: 12px;
    right: 12px;
    width: 50px;
  }

  .showcase-people {
    left: -8px;
    right: -8px;
    bottom: -10px;
    width: calc(100% + 16px);
    opacity: 0.42;
  }

  .page-link-thumb,
  .summary-visual,
  .summary-visual-frame,
  .cta-visual,
  .cta-visual-frame {
    min-height: 168px;
  }

  .page-link-mascot,
  .summary-visual-mascot,
  .cta-visual-mascot {
    width: 84px;
  }

  .site-nav a,
  .footer-links a,
  .footer-status span,
  .pill-row span,
  .brief-points span {
    white-space: nowrap;
  }

  .hero-metrics {
    border-radius: 24px;
  }

  .hero-metrics .metric-card {
    padding: 16px;
  }

  .hero-metrics .metric-card:nth-child(1) {
    border-radius: 23px 23px 0 0;
  }

  .hero-metrics .metric-card:nth-child(3) {
    border-radius: 0 0 23px 23px;
  }

  .solutions-showcase,
  .mechanics-board,
  .launch-corridor {
    gap: 14px;
  }

  .directions-mascot {
    min-height: 220px;
    border-radius: 28px;
  }

  .directions-chip-left {
    left: 14px;
    bottom: 72px;
  }

  .directions-chip-top {
    right: 92px;
    top: 14px;
  }

  .directions-chip-right {
    right: 14px;
    bottom: 98px;
  }

  .directions-mascot-image {
    right: 18px;
    width: 126px;
  }

  .directions-mascot-note {
    left: 14px;
    right: 118px;
    bottom: 14px;
    padding: 14px 15px;
    border-radius: 18px;
  }

  .directions-mascot-note strong {
    font-size: 18px;
  }

  .solutions-stage,
  .mechanics-stage,
  .launch-corridor-stage {
    min-height: 360px;
    border-radius: 28px;
  }

  .solutions-stage-window {
    left: 14px;
    bottom: 14px;
    width: min(54%, 190px);
    border-radius: 18px;
  }

  .solutions-stage-card {
    top: 14px;
    right: 14px;
    width: min(220px, calc(100% - 28px));
    padding: 14px;
    border-radius: 20px;
  }

  .solutions-stage-card strong,
  .mechanics-stage-note strong,
  .launch-corridor-note strong {
    font-size: 20px;
  }

  .solutions-stage-mascot,
  .mechanics-stage-mascot,
  .launch-corridor-mascot {
    width: 72px;
  }

  .solutions-stage-strip {
    left: 14px;
    top: 14px;
    max-width: calc(100% - 248px);
  }

  .solutions-stage-strip span {
    min-height: 30px;
    padding: 6px 10px;
    font-size: 11px;
  }

  .solutions-rail {
    padding: 8px;
    border-radius: 24px;
  }

  .solution-rail-item {
    padding: 16px 14px 18px 20px;
  }

  .solution-rail-item h3 {
    font-size: 24px;
  }

  .mechanics-stage-note {
    left: 16px;
    right: 16px;
    bottom: 16px;
    padding: 14px;
    border-radius: 20px;
  }

  .mechanics-stage-window {
    top: 14px;
    right: 14px;
    width: min(42%, 180px);
    border-radius: 18px;
  }

  .launch-corridor-overlay {
    left: 14px;
    bottom: 14px;
    width: min(50%, 180px);
    border-radius: 18px;
  }

  .launch-corridor-note {
    top: 14px;
    right: 14px;
    width: min(220px, calc(100% - 28px));
    padding: 14px;
    border-radius: 20px;
  }

  .mechanics-list {
    border-radius: 24px;
  }

  .mechanics-item {
    padding: 16px;
  }

  .mechanics-item-head h3 {
    font-size: 22px;
  }

  .page-atlas {
    gap: 14px;
  }

  .page-atlas-stage {
    min-height: 320px;
    border-radius: 28px;
  }

  .page-atlas-overlay {
    left: 12px;
    bottom: 12px;
    width: min(52%, 170px);
    border-radius: 18px;
  }

  .page-atlas-mascot {
    right: 12px;
    bottom: 12px;
    width: 64px;
  }

  .page-atlas-note {
    top: 12px;
    right: 12px;
    width: min(200px, calc(100% - 24px));
    padding: 12px 14px;
    border-radius: 18px;
  }

  .page-atlas-note strong,
  .page-atlas-item strong {
    font-size: 18px;
  }

  .page-atlas-item {
    padding: 16px 14px 18px 20px;
  }

  .page-summary-card li {
    padding: 10px 12px 10px 28px;
  }

  .page-summary-card li::before {
    left: 12px;
    top: 16px;
  }

  .case-media-note {
    left: 12px;
    bottom: 12px;
    max-width: 170px;
    padding: 12px 14px;
    border-radius: 18px;
  }

  .case-media-note strong {
    font-size: 16px;
  }

  .case-media .case-media-photo {
    right: 12px;
    top: 12px;
    bottom: auto;
    width: min(30%, 96px);
    border-radius: 16px;
  }

  .case-media-ui .case-media-photo {
    left: auto;
    right: 12px;
  }

  .case-media-ghost {
    right: -8px;
    bottom: -12px;
    width: min(72%, 220px);
  }

  .final-cta-stage {
    min-height: 220px;
    border-radius: 24px;
  }

  .final-cta-stage-overlay {
    left: 12px;
    bottom: 12px;
    width: min(52%, 170px);
  }

  .final-cta-stage-mascot {
    right: 12px;
    bottom: 12px;
    width: 68px;
  }

  .final-cta-stage-note {
    top: 12px;
    left: 12px;
    max-width: 190px;
    padding: 12px 14px;
    border-radius: 18px;
  }

  .final-cta-stage-note strong {
    font-size: 18px;
  }
}

@media (max-width: 860px) {
  .fit-grid,
  .scope-row {
    grid-template-columns: 1fr;
  }
}

/* Arcade poster home direction: original Playmetric visuals and local UI cards. */
body[data-page="home"] {
  --poster-yellow: #ffd900;
  --poster-yellow-soft: #fff071;
  --poster-pink: #ff5bd8;
  --poster-black: #101012;
  --poster-ink: #070708;
  background: var(--poster-black);
}

body[data-page="home"] .page-shell {
  padding-top: 0;
  background: var(--poster-black);
}

body[data-page="home"] .page-shell::before,
body[data-page="home"] .page-shell::after {
  display: none;
}

body[data-page="home"] .site-header,
body[data-page="home"].has-scrolled .site-header {
  background: transparent;
  backdrop-filter: none;
}

body[data-page="home"] .header-row {
  min-height: 76px;
  margin-top: 10px;
  border: 3px solid rgba(6, 6, 8, 0.96);
  border-radius: 24px;
  background: rgba(255, 223, 18, 0.82);
  box-shadow: 8px 8px 0 rgba(6, 6, 8, 0.94);
}

body[data-page="home"] .header-row::before {
  display: none;
}

body[data-page="home"] .brand-copy strong,
body[data-page="home"] .site-nav a {
  color: var(--poster-ink);
  font-family: var(--headline);
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

body[data-page="home"] .brand-copy span,
body[data-page="home"] .header-meta {
  display: none;
}

body[data-page="home"] .header-panel {
  grid-template-columns: minmax(0, 1fr) auto;
}

body[data-page="home"] .site-nav {
  justify-self: center;
  gap: 6px;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

body[data-page="home"] .site-nav a {
  padding: 10px 14px;
  border-radius: 18px;
  font-size: 15px;
}

body[data-page="home"] .site-nav a:hover {
  color: var(--poster-ink);
  background: var(--poster-pink);
  box-shadow: 4px 4px 0 var(--poster-ink);
}

body[data-page="home"] .header-actions .button-primary,
body[data-page="home"] .poster-hero-actions .button-primary {
  min-height: 54px;
  border: 4px solid var(--poster-ink);
  border-radius: 18px;
  color: var(--poster-ink);
  background: var(--poster-pink);
  box-shadow: 6px 6px 0 var(--poster-ink);
  font-family: var(--headline);
  font-weight: 900;
  text-transform: uppercase;
}

body[data-page="home"] .button-primary:hover,
body[data-page="home"] .button-secondary:hover {
  transform: translate(-2px, -2px);
  box-shadow: 9px 9px 0 var(--poster-ink);
}

body[data-page="home"] .scroll-progress {
  background: var(--poster-pink);
  box-shadow: none;
}

body[data-page="home"] .poster-hero {
  position: relative;
  min-height: 700px;
  margin-top: 0;
  padding: 92px 0 84px;
  overflow: hidden;
  color: var(--poster-ink);
  background:
    radial-gradient(circle at 48% 8%, rgba(255, 255, 255, 0.24), transparent 24%),
    linear-gradient(180deg, #ffd900 0%, #ffd400 58%, #f8c900 100%);
}

body[data-page="home"] .poster-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg width='360' height='160' viewBox='0 0 360 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 46 Q45 8 90 46 T180 46 T270 46 T360 46 V92 Q315 130 270 92 T180 92 T90 92 T0 92Z' fill='%23fff48a' fill-opacity='.68'/%3E%3C/svg%3E");
  background-size: 360px 160px;
  opacity: 0.92;
}

body[data-page="home"] .poster-hero::after {
  content: "";
  position: absolute;
  left: -4vw;
  right: -4vw;
  bottom: -1px;
  height: 154px;
  background: var(--poster-black);
  clip-path: polygon(0 46%, 5% 68%, 10% 46%, 15% 68%, 20% 46%, 25% 68%, 30% 46%, 35% 68%, 40% 46%, 45% 68%, 50% 46%, 55% 68%, 60% 46%, 65% 68%, 70% 46%, 75% 68%, 80% 46%, 85% 68%, 90% 46%, 95% 68%, 100% 46%, 100% 100%, 0 100%);
}

body[data-page="home"] .poster-hero-wave {
  position: absolute;
  inset: 76px -12vw auto;
  height: 86px;
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(-1deg);
}

body[data-page="home"] .poster-hero-shell {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 32px), 1500px);
  min-height: 560px;
  display: grid;
  grid-template-columns: minmax(190px, 0.58fr) minmax(520px, 1.34fr) minmax(190px, 0.58fr);
  gap: 22px;
  align-items: center;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

body[data-page="home"] .poster-hero-shell::before,
body[data-page="home"] .poster-hero-shell::after {
  display: none;
}

body[data-page="home"] .poster-hero-copy {
  justify-items: center;
  align-content: center;
  gap: 24px;
  text-align: center;
}

body[data-page="home"] .poster-kicker {
  border: 3px solid var(--poster-ink);
  border-radius: 999px;
  color: var(--poster-ink);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 4px 4px 0 var(--poster-ink);
}

body[data-page="home"] .poster-hero h1 {
  max-width: 920px;
  margin: 0;
  color: var(--poster-ink);
  font-family: var(--headline);
  font-size: clamp(46px, 4.85vw, 76px);
  line-height: 0.94;
  letter-spacing: -0.055em;
  text-align: center;
  text-transform: uppercase;
}

body[data-page="home"] .poster-hero .hero-title-line {
  display: block;
}

body[data-page="home"] .poster-hero .hero-title-line-accent {
  display: inline-block;
  margin: 2px auto 0;
  padding: 2px 18px 7px;
  background: var(--poster-pink);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

body[data-page="home"] .poster-hero .hero-title-line-accent::after {
  display: none;
}

body[data-page="home"] .poster-hero-lead {
  max-width: 700px;
  margin: 0;
  color: rgba(10, 10, 12, 0.86);
  font-size: clamp(20px, 1.8vw, 25px);
  line-height: 1.18;
  font-weight: 600;
}

body[data-page="home"] .poster-hero-actions {
  justify-content: center;
}

body[data-page="home"] .poster-hero-actions .button-secondary {
  min-height: 54px;
  border: 4px solid var(--poster-ink);
  border-radius: 18px;
  color: var(--poster-ink);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 6px 6px 0 var(--poster-ink);
  font-family: var(--headline);
  font-weight: 900;
  text-transform: uppercase;
}

body[data-page="home"] .poster-hero-note {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 760px;
  gap: 8px;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

body[data-page="home"] .poster-hero-note span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  border: 2px solid rgba(7, 7, 8, 0.86);
  border-radius: 999px;
  color: var(--poster-ink);
  background: rgba(255, 255, 255, 0.66);
  font-family: var(--headline);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

body[data-page="home"] .poster-phone-cloud {
  position: relative;
  min-height: 560px;
}

body[data-page="home"] .poster-phone-cloud-left {
  transform: translateX(-30px);
}

body[data-page="home"] .poster-phone-cloud-right {
  transform: translateX(30px);
}

body[data-page="home"] .poster-phone {
  position: absolute;
  display: grid;
  align-content: start;
  gap: 12px;
  border: 4px solid var(--poster-ink);
  border-radius: 28px;
  background: linear-gradient(180deg, #f8fbff, #bdf8ef);
  box-shadow: 10px 12px 0 rgba(8, 8, 10, 0.9), 0 24px 40px rgba(8, 8, 10, 0.26);
  transform-origin: center;
}

body[data-page="home"] .poster-phone strong {
  font-family: var(--headline);
  font-weight: 900;
  color: var(--poster-ink);
  text-transform: uppercase;
}

body[data-page="home"] .poster-phone small {
  font-weight: 800;
  text-transform: uppercase;
}

body[data-page="home"] .poster-phone-top {
  width: 54px;
  height: 7px;
  border-radius: 999px;
  background: rgba(8, 8, 10, 0.28);
}

body[data-page="home"] .poster-phone-tall {
  width: 170px;
  min-height: 330px;
  padding: 18px;
}

body[data-page="home"] .poster-phone-small {
  width: 140px;
  min-height: 212px;
  padding: 14px;
}

body[data-page="home"] .poster-phone-card {
  width: 150px;
  min-height: 120px;
  padding: 16px;
  border-radius: 22px;
}

body[data-page="home"] .poster-phone-mini {
  width: 116px;
  min-height: 96px;
  padding: 14px;
  border-radius: 20px;
}

body[data-page="home"] .poster-phone-quest {
  top: -8px;
  left: 18px;
  transform: rotate(-8deg);
}

body[data-page="home"] .poster-phone-streak {
  top: 208px;
  left: 118px;
  transform: rotate(8deg);
  background: linear-gradient(180deg, #fff6a8, #ff9fdc);
}

body[data-page="home"] .poster-phone-reward {
  top: 392px;
  left: 34px;
  transform: rotate(-5deg);
  background: linear-gradient(180deg, #ff78dc, #ffe64b);
}

body[data-page="home"] .poster-phone-rating {
  top: 310px;
  left: -12px;
  transform: rotate(10deg);
  background: linear-gradient(180deg, #171b34, #2d64ff);
}

body[data-page="home"] .poster-phone-loyalty {
  top: 10px;
  right: 24px;
  transform: rotate(7deg);
  background: linear-gradient(180deg, #e8fff5, #69d7ff);
}

body[data-page="home"] .poster-phone-promo {
  top: 260px;
  right: 122px;
  transform: rotate(-8deg);
  background: linear-gradient(180deg, #19264a, #141a31);
}

body[data-page="home"] .poster-phone-analytics {
  top: 382px;
  right: 12px;
  transform: rotate(6deg);
  background: linear-gradient(180deg, #ff69d7, #fff26f);
}

body[data-page="home"] .poster-phone-badge {
  top: 172px;
  right: -10px;
  transform: rotate(-10deg);
  background: linear-gradient(180deg, #ffffff, #bcff74);
}

body[data-page="home"] .poster-screen-scene {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 9px;
}

body[data-page="home"] .poster-screen-scene span {
  min-height: 74px;
  border: 3px solid rgba(8, 8, 10, 0.64);
  border-radius: 18px;
  background:
    radial-gradient(circle at 70% 25%, #ff5bd8 0 8px, transparent 9px),
    linear-gradient(135deg, #abff60, #6bdcff);
}

body[data-page="home"] .poster-ui-row,
body[data-page="home"] .poster-streak-grid,
body[data-page="home"] .poster-match-grid,
body[data-page="home"] .poster-ui-list {
  display: grid;
  gap: 8px;
}

body[data-page="home"] .poster-ui-row {
  grid-template-columns: repeat(3, 1fr);
}

body[data-page="home"] .poster-ui-row b,
body[data-page="home"] .poster-ui-list i,
body[data-page="home"] .poster-rank-line {
  display: block;
  height: 12px;
  border-radius: 999px;
  background: rgba(8, 8, 10, 0.24);
}

body[data-page="home"] .poster-streak-grid,
body[data-page="home"] .poster-match-grid {
  grid-template-columns: repeat(3, 1fr);
}

body[data-page="home"] .poster-streak-grid i,
body[data-page="home"] .poster-match-grid i {
  aspect-ratio: 1;
  border: 2px solid rgba(8, 8, 10, 0.76);
  border-radius: 10px;
  background: #fff;
}

body[data-page="home"] .poster-match-grid i:nth-child(3n + 1) {
  background: #ff5bd8;
}

body[data-page="home"] .poster-match-grid i:nth-child(3n + 2) {
  background: #23d2e2;
}

body[data-page="home"] .poster-match-grid i:nth-child(3n) {
  background: #ffe746;
}

body[data-page="home"] .poster-coin,
body[data-page="home"] .poster-badge-star {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 3px solid var(--poster-ink);
  border-radius: 50%;
  background: #fff26f;
  font-family: var(--headline);
  font-weight: 900;
}

body[data-page="home"] .poster-level-ring {
  display: grid;
  place-items: center;
  width: 104px;
  height: 104px;
  border-radius: 50%;
  background:
    radial-gradient(circle, #effcff 0 48%, transparent 50%),
    conic-gradient(#ff5bd8 0 82%, rgba(8, 8, 10, 0.12) 82% 100%);
  border: 4px solid var(--poster-ink);
}

body[data-page="home"] .poster-phone-analytics span {
  display: block;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, #101012 72%, rgba(16, 16, 18, 0.18) 72%);
}

body[data-page="home"] .home-dark-intro {
  position: relative;
  margin-top: 0;
  padding: 70px 0 86px;
  color: #ffffff;
  background:
    radial-gradient(circle at 78% 18%, rgba(255, 91, 216, 0.22), transparent 24%),
    radial-gradient(circle at 28% 92%, rgba(35, 210, 226, 0.16), transparent 28%),
    var(--poster-black);
}

body[data-page="home"] .home-dark-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1fr);
  gap: 42px;
  align-items: start;
}

body[data-page="home"] .home-dark-copy h2 {
  margin: 12px 0 0;
  color: #ffffff;
  font-family: var(--headline);
  font-size: clamp(42px, 5.1vw, 84px);
  line-height: 0.92;
  letter-spacing: -0.05em;
  text-transform: uppercase;
}

body[data-page="home"] .home-dark-copy p {
  max-width: 690px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(19px, 1.8vw, 25px);
  line-height: 1.35;
}

body[data-page="home"] .dark-eyebrow {
  color: var(--poster-ink);
  background: var(--poster-pink);
  border: 0;
  border-radius: 0;
}

body[data-page="home"] .dark-task-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

body[data-page="home"] .dark-task-grid article {
  min-height: 138px;
  padding: 20px;
  border: 2px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

body[data-page="home"] .dark-task-grid span {
  color: var(--poster-pink);
  font-family: var(--headline);
  font-weight: 900;
}

body[data-page="home"] .dark-task-grid strong {
  display: block;
  margin-top: 14px;
  color: #ffffff;
  font-family: var(--headline);
  font-size: clamp(22px, 2vw, 32px);
  line-height: 1;
  text-transform: uppercase;
}

body[data-page="home"] .dark-flow {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  padding: 18px;
  border: 2px solid rgba(255, 255, 255, 0.14);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.06);
}

body[data-page="home"] .dark-flow span {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--poster-ink);
  background: #fff;
  font-family: var(--headline);
  font-weight: 900;
  text-transform: uppercase;
}

body[data-page="home"] .dark-flow i {
  width: 26px;
  height: 2px;
  background: var(--poster-pink);
}

body[data-page="home"] .cases-section {
  margin-top: 0;
  padding-top: 72px;
  background: linear-gradient(180deg, var(--poster-black), #f4f6ff 18%);
}

@media (max-width: 1180px) {
  body[data-page="home"] .poster-hero-shell {
    grid-template-columns: minmax(0, 1fr);
    min-height: auto;
    padding-top: 40px;
  }

  body[data-page="home"] .poster-phone-cloud {
    position: absolute;
    inset: 96px 0 auto;
    min-height: 360px;
    pointer-events: none;
  }

  body[data-page="home"] .poster-phone-cloud-left {
    right: auto;
    width: 34%;
  }

  body[data-page="home"] .poster-phone-cloud-right {
    left: auto;
    width: 34%;
  }

  body[data-page="home"] .poster-phone-tall {
    width: 132px;
    min-height: 252px;
  }

  body[data-page="home"] .poster-phone-small,
  body[data-page="home"] .poster-phone-card,
  body[data-page="home"] .poster-phone-mini {
    transform: scale(0.82);
  }

  body[data-page="home"] .home-dark-shell {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  body[data-page="home"] .header-row {
    margin-top: 8px;
    border-width: 2px;
    box-shadow: 5px 5px 0 var(--poster-ink);
  }

  body[data-page="home"] .header-panel {
    grid-template-columns: 1fr;
    width: 100%;
    justify-self: stretch;
  }

  body[data-page="home"] .header-row.is-menu-open .header-panel {
    border: 3px solid var(--poster-ink);
    background: var(--poster-yellow);
    box-shadow: 6px 6px 0 var(--poster-ink);
  }

  body[data-page="home"] .site-nav {
    align-items: stretch;
  }

  body[data-page="home"] .site-nav a {
    justify-content: center;
    text-align: center;
  }

  body[data-page="home"] .poster-hero {
    min-height: auto;
    padding: 110px 0 104px;
  }

  body[data-page="home"] .poster-hero-shell {
    width: min(calc(100% - 24px), 1500px);
    padding-top: 0;
  }

  body[data-page="home"] .poster-hero h1 {
    font-size: clamp(44px, 13.2vw, 68px);
  }

  body[data-page="home"] .poster-hero-lead {
    font-size: 20px;
  }

  body[data-page="home"] .poster-phone-cloud {
    position: absolute;
    inset: 112px 0 auto;
    width: 100%;
    min-height: 620px;
    z-index: 1;
    pointer-events: none;
  }

  body[data-page="home"] .poster-phone-cloud-left {
    display: none;
  }

  body[data-page="home"] .poster-phone-cloud-right {
    display: block;
    transform: none;
  }

  body[data-page="home"] .poster-phone {
    box-shadow: 6px 7px 0 rgba(8, 8, 10, 0.9);
  }

  body[data-page="home"] .poster-phone-loyalty {
    top: 28px;
    right: auto;
    left: -100px;
    width: 124px;
    min-height: 188px;
    opacity: 0.76;
  }

  body[data-page="home"] .poster-phone-promo {
    top: 356px;
    right: -88px;
    width: 112px;
    min-height: 154px;
    opacity: 0.82;
  }

  body[data-page="home"] .poster-phone-analytics {
    display: none;
  }

  body[data-page="home"] .poster-phone-badge {
    display: grid;
    top: 214px;
    right: -42px;
    width: 82px;
    min-height: 74px;
    opacity: 0.9;
  }

  body[data-page="home"] .poster-hero-copy {
    position: relative;
    z-index: 2;
  }

  body[data-page="home"] .poster-hero-actions .button {
    width: 100%;
  }

  body[data-page="home"] .dark-task-grid {
    grid-template-columns: 1fr;
  }

  body[data-page="home"] .home-dark-intro {
    padding-top: 48px;
  }

  body[data-page="home"] .dark-flow {
    align-items: stretch;
    flex-direction: column;
  }

  body[data-page="home"] .dark-flow i {
    width: 2px;
    height: 18px;
    align-self: center;
  }
}

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

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

/* Site-wide arcade skin for the new version. */
:root {
  --arcade-yellow: #ffd900;
  --arcade-yellow-soft: #fff48a;
  --arcade-pink: #ff5bd8;
  --arcade-black: #101012;
  --arcade-ink: #070708;
  --arcade-blue: #cce9ff;
}

body:not([data-page="home"]) {
  color: #f8fbff;
  background:
    radial-gradient(circle at 82% 8%, rgba(255, 91, 216, 0.18), transparent 24%),
    radial-gradient(circle at 12% 42%, rgba(35, 210, 226, 0.13), transparent 30%),
    var(--arcade-black);
}

body:not([data-page="home"]) .page-shell {
  background: var(--arcade-black);
}

body:not([data-page="home"]) .page-shell::before,
body:not([data-page="home"]) .page-shell::after {
  display: none;
}

body:not([data-page="home"]) .site-header,
body:not([data-page="home"]).has-scrolled .site-header {
  background: transparent;
  backdrop-filter: none;
}

body:not([data-page="home"]) .header-row {
  min-height: 76px;
  margin-top: 10px;
  border: 3px solid var(--arcade-ink);
  border-radius: 24px;
  background:
    linear-gradient(rgba(255, 217, 0, 0.84), rgba(255, 217, 0, 0.84)),
    url("data:image/svg+xml,%3Csvg width='300' height='120' viewBox='0 0 300 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 34 Q37.5 6 75 34 T150 34 T225 34 T300 34 V72 Q262.5 100 225 72 T150 72 T75 72 T0 72Z' fill='%23fff48a' fill-opacity='.55'/%3E%3C/svg%3E");
  background-size: auto, 300px 120px;
  box-shadow: 8px 8px 0 var(--arcade-ink);
}

body:not([data-page="home"]) .header-row::before {
  display: none;
}

body:not([data-page="home"]) .brand-copy strong,
body:not([data-page="home"]) .site-nav a {
  color: var(--arcade-ink);
  font-family: var(--headline);
  font-weight: 900;
  text-transform: uppercase;
}

body:not([data-page="home"]) .brand-copy span,
body:not([data-page="home"]) .header-meta {
  display: none;
}

body:not([data-page="home"]) .header-panel {
  grid-template-columns: minmax(0, 1fr) auto;
}

body:not([data-page="home"]) .site-nav {
  justify-self: center;
  gap: 6px;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

body:not([data-page="home"]) .site-nav a {
  padding: 10px 14px;
  border-radius: 18px;
  font-size: 15px;
}

body:not([data-page="home"]) .site-nav a:hover,
body:not([data-page="home"]) .site-nav a.is-active {
  color: var(--arcade-ink);
  background: var(--arcade-pink);
  box-shadow: 4px 4px 0 var(--arcade-ink);
}

body:not([data-page="home"]) .scroll-progress {
  background: var(--arcade-pink);
  box-shadow: none;
}

body:not([data-page="home"]) .inner-hero {
  position: relative;
  overflow: hidden;
  padding: 22px 0 74px;
  color: var(--arcade-ink);
  background:
    radial-gradient(circle at 18% 16%, rgba(255, 255, 255, 0.3), transparent 20%),
    linear-gradient(180deg, #ffd900 0%, #ffd400 100%);
}

body:not([data-page="home"]) .inner-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg width='360' height='160' viewBox='0 0 360 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 46 Q45 8 90 46 T180 46 T270 46 T360 46 V92 Q315 130 270 92 T180 92 T90 92 T0 92Z' fill='%23fff48a' fill-opacity='.7'/%3E%3C/svg%3E");
  background-size: 360px 160px;
}

body:not([data-page="home"]) .inner-hero::after {
  content: "";
  position: absolute;
  left: -4vw;
  right: -4vw;
  bottom: -1px;
  height: 118px;
  background: var(--arcade-black);
  clip-path: polygon(0 46%, 5% 68%, 10% 46%, 15% 68%, 20% 46%, 25% 68%, 30% 46%, 35% 68%, 40% 46%, 45% 68%, 50% 46%, 55% 68%, 60% 46%, 65% 68%, 70% 46%, 75% 68%, 80% 46%, 85% 68%, 90% 46%, 95% 68%, 100% 46%, 100% 100%, 0 100%);
}

body:not([data-page="home"]) .inner-hero-shell {
  position: relative;
  z-index: 1;
  border: 0;
  background: transparent;
  box-shadow: none;
}

body:not([data-page="home"]) .inner-hero-shell::before {
  display: none;
}

body:not([data-page="home"]) .hero-breadcrumbs,
body:not([data-page="home"]) .hero-breadcrumbs a {
  color: rgba(7, 7, 8, 0.76);
  font-weight: 900;
}

body:not([data-page="home"]) .inner-hero-copy h1 {
  color: var(--arcade-ink);
  font-family: var(--headline);
  font-size: clamp(52px, 7vw, 104px);
  line-height: 0.88;
  letter-spacing: -0.06em;
  text-transform: uppercase;
}

body:not([data-page="home"]) .inner-hero-copy p,
body:not([data-page="home"]) .page-summary-card li {
  color: rgba(7, 7, 8, 0.82);
  font-weight: 700;
}

body:not([data-page="home"]) .inner-hero .text-link {
  color: var(--arcade-ink);
  text-decoration-color: var(--arcade-pink);
  text-decoration-thickness: 3px;
}

body:not([data-page="home"]) .page-summary-card,
body:not([data-page="home"]) .cases-hero-stage,
body:not([data-page="home"]) .cases-hero-card {
  border: 4px solid var(--arcade-ink);
  border-radius: 30px;
  color: var(--arcade-ink);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 9px 9px 0 var(--arcade-ink);
}

body:not([data-page="home"]) .page-summary-card h3,
body:not([data-page="home"]) .cases-hero-card strong {
  color: var(--arcade-ink);
  font-family: var(--headline);
  text-transform: uppercase;
}

body:not([data-page="home"]) .section,
body[data-page="home"] .section:not(.footer-lead-section) {
  color: #f8fbff;
  background:
    radial-gradient(circle at 82% 8%, rgba(255, 91, 216, 0.13), transparent 20%),
    radial-gradient(circle at 12% 36%, rgba(35, 210, 226, 0.12), transparent 26%),
    var(--arcade-black);
}

body:not([data-page="home"]) .section-panel,
body:not([data-page="home"]) .solutions-section .container,
body:not([data-page="home"]) .mechanics-section .container,
body:not([data-page="home"]) .calculator-shell,
body[data-page="home"] .section-panel,
body[data-page="home"] .solutions-section .container,
body[data-page="home"] .mechanics-section .container,
body[data-page="home"] .calculator-shell {
  border: 2px solid rgba(255, 255, 255, 0.14);
  border-radius: 34px;
  color: #f8fbff;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035)),
    radial-gradient(circle at 92% 8%, rgba(255, 91, 216, 0.16), transparent 30%),
    #14171d;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.34);
}

body:not([data-page="home"]) .section-panel::before,
body:not([data-page="home"]) .solutions-section .container::before,
body:not([data-page="home"]) .mechanics-section .container::before,
body[data-page="home"] .section-panel::before,
body[data-page="home"] .solutions-section .container::before,
body[data-page="home"] .mechanics-section .container::before {
  opacity: 0.14;
}

body:not([data-page="home"]) .section-head h2,
body[data-page="home"] .section-head h2 {
  color: #f8fbff;
  font-family: var(--headline);
  text-transform: uppercase;
}

body:not([data-page="home"]) .section-head p,
body[data-page="home"] .section-head p,
body:not([data-page="home"]) .case-copy p,
body[data-page="home"] .case-copy p,
body:not([data-page="home"]) .solution-rail-item p,
body[data-page="home"] .solution-rail-item p,
body:not([data-page="home"]) .mechanics-item p,
body[data-page="home"] .mechanics-item p,
body:not([data-page="home"]) .calculator-copy p,
body[data-page="home"] .calculator-copy p,
body:not([data-page="home"]) .faq-item p,
body[data-page="home"] .faq-item p {
  color: rgba(248, 251, 255, 0.74);
}

body:not([data-page="home"]) .eyebrow,
body:not([data-page="home"]) .solution-kicker,
body[data-page="home"] .section .eyebrow,
body[data-page="home"] .section .solution-kicker {
  border: 0;
  border-radius: 0;
  color: var(--arcade-ink);
  background: var(--arcade-pink);
  box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.72);
}

body:not([data-page="home"]) .button-primary,
body[data-page="home"] .section .button-primary,
body[data-page="home"] .footer-lead-section .button-primary {
  border: 4px solid var(--arcade-ink);
  border-radius: 18px;
  color: var(--arcade-ink);
  background: var(--arcade-pink);
  box-shadow: 6px 6px 0 var(--arcade-ink);
  font-family: var(--headline);
  font-weight: 900;
  text-transform: uppercase;
}

body:not([data-page="home"]) .button-secondary,
body[data-page="home"] .section .button-secondary,
body[data-page="home"] .footer-lead-section .button-secondary {
  border: 4px solid var(--arcade-ink);
  border-radius: 18px;
  color: var(--arcade-ink);
  background: #ffffff;
  box-shadow: 6px 6px 0 var(--arcade-ink);
  font-family: var(--headline);
  font-weight: 900;
  text-transform: uppercase;
}

body:not([data-page="home"]) .metric-card,
body:not([data-page="home"]) .metric-chip,
body:not([data-page="home"]) .case-fact,
body:not([data-page="home"]) .solution-card,
body:not([data-page="home"]) .solution-rail-item,
body:not([data-page="home"]) .approach-manifest,
body:not([data-page="home"]) .approach-step,
body:not([data-page="home"]) .compare-card,
body:not([data-page="home"]) .mechanic-card,
body:not([data-page="home"]) .mechanics-item,
body:not([data-page="home"]) .faq-item,
body:not([data-page="home"]) .brief-card,
body:not([data-page="home"]) .calculator-copy,
body:not([data-page="home"]) .calculator-result,
body:not([data-page="home"]) .case-spotlight,
body:not([data-page="home"]) .fit-card,
body:not([data-page="home"]) .scope-row,
body:not([data-page="home"]) .page-link-card,
body[data-page="home"] .metric-card,
body[data-page="home"] .metric-chip,
body[data-page="home"] .case-fact,
body[data-page="home"] .solution-card,
body[data-page="home"] .solution-rail-item,
body[data-page="home"] .approach-manifest,
body[data-page="home"] .approach-step,
body[data-page="home"] .compare-card,
body[data-page="home"] .mechanic-card,
body[data-page="home"] .mechanics-item,
body[data-page="home"] .faq-item,
body[data-page="home"] .brief-card,
body[data-page="home"] .calculator-copy,
body[data-page="home"] .calculator-result,
body[data-page="home"] .case-spotlight,
body[data-page="home"] .fit-card,
body[data-page="home"] .scope-row,
body[data-page="home"] .page-link-card {
  border: 2px solid rgba(255, 255, 255, 0.13);
  color: #f8fbff;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.035)),
    radial-gradient(circle at 90% 8%, rgba(255, 91, 216, 0.12), transparent 30%),
    #151a22;
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.28);
}

body:not([data-page="home"]) .metric-card strong,
body:not([data-page="home"]) .metric-chip strong,
body:not([data-page="home"]) .case-fact strong,
body:not([data-page="home"]) .solution-rail-item h3,
body:not([data-page="home"]) .mechanics-item h3,
body:not([data-page="home"]) .faq-item summary,
body:not([data-page="home"]) .calculator-result strong,
body[data-page="home"] .metric-card strong,
body[data-page="home"] .metric-chip strong,
body[data-page="home"] .case-fact strong,
body[data-page="home"] .solution-rail-item h3,
body[data-page="home"] .mechanics-item h3,
body[data-page="home"] .faq-item summary,
body[data-page="home"] .calculator-result strong {
  color: #f8fbff;
  font-family: var(--headline);
  text-transform: uppercase;
}

body:not([data-page="home"]) .metric-card::before,
body:not([data-page="home"]) .metric-chip::before,
body[data-page="home"] .metric-card::before,
body[data-page="home"] .metric-chip::before {
  background: var(--arcade-pink);
}

body:not([data-page="home"]) .media-slot,
body[data-page="home"] .section .media-slot {
  border: 3px solid var(--arcade-ink);
  color: var(--arcade-ink);
  background:
    linear-gradient(135deg, rgba(255, 91, 216, 0.38), transparent 32%),
    linear-gradient(180deg, #e9fbff, #fff48a);
  box-shadow: 8px 8px 0 var(--arcade-ink);
}

body:not([data-page="home"]) .media-slot strong,
body[data-page="home"] .section .media-slot strong {
  color: var(--arcade-ink);
  font-family: var(--headline);
  text-transform: uppercase;
}

body:not([data-page="home"]) .media-slot p,
body[data-page="home"] .section .media-slot p {
  color: rgba(7, 7, 8, 0.74);
}

body:not([data-page="home"]) .media-slot-chip,
body[data-page="home"] .section .media-slot-chip,
body:not([data-page="home"]) .case-label,
body[data-page="home"] .case-label {
  color: var(--arcade-ink);
  background: var(--arcade-pink);
  border-color: var(--arcade-ink);
}

body:not([data-page="home"]) .case-media-frame,
body[data-page="home"] .case-media-frame,
body:not([data-page="home"]) .solutions-stage,
body[data-page="home"] .solutions-stage,
body:not([data-page="home"]) .mechanics-stage,
body[data-page="home"] .mechanics-stage,
body:not([data-page="home"]) .page-atlas-stage,
body[data-page="home"] .page-atlas-stage,
body:not([data-page="home"]) .launch-corridor-stage,
body[data-page="home"] .launch-corridor-stage,
body:not([data-page="home"]) .final-cta-stage,
body[data-page="home"] .final-cta-stage {
  border: 4px solid var(--arcade-ink);
  border-radius: 30px;
  box-shadow: 10px 10px 0 var(--arcade-ink);
}

body:not([data-page="home"]) .case-media-note,
body[data-page="home"] .case-media-note,
body:not([data-page="home"]) .solutions-stage-card,
body[data-page="home"] .solutions-stage-card,
body:not([data-page="home"]) .directions-mascot-note,
body[data-page="home"] .directions-mascot-note,
body:not([data-page="home"]) .page-atlas-note,
body[data-page="home"] .page-atlas-note,
body:not([data-page="home"]) .final-cta-stage-note,
body[data-page="home"] .final-cta-stage-note {
  border: 2px solid rgba(255, 255, 255, 0.14);
  color: #f8fbff;
  background: rgba(16, 16, 18, 0.86);
}

body:not([data-page="home"]) input,
body:not([data-page="home"]) textarea,
body[data-page="home"] .section input,
body[data-page="home"] .section textarea,
body[data-page="home"] .footer-lead-section input,
body[data-page="home"] .footer-lead-section textarea {
  border: 3px solid var(--arcade-ink);
  border-radius: 18px;
  color: var(--arcade-ink);
  background: #ffffff;
  box-shadow: 4px 4px 0 var(--arcade-ink);
}

body:not([data-page="home"]) .field-label,
body:not([data-page="home"]) .form-consent,
body:not([data-page="home"]) .form-side-note,
body:not([data-page="home"]) .form-note,
body[data-page="home"] .field-label,
body[data-page="home"] .form-consent,
body[data-page="home"] .form-side-note,
body[data-page="home"] .form-note {
  color: rgba(248, 251, 255, 0.76);
}

body:not([data-page="home"]) .site-footer,
body[data-page="home"] .site-footer,
body:not([data-page="home"]) .footer-lead-section,
body[data-page="home"] .footer-lead-section {
  color: #f8fbff;
  background: var(--arcade-black);
}

body:not([data-page="home"]) .site-footer,
body[data-page="home"] .site-footer {
  border-top: 2px solid rgba(255, 255, 255, 0.12);
}

body:not([data-page="home"]) .footer-row,
body[data-page="home"] .footer-row {
  border: 2px solid rgba(255, 255, 255, 0.14);
  border-radius: 30px;
  background:
    radial-gradient(circle at 92% 0%, rgba(255, 91, 216, 0.16), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03));
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.32);
}

body:not([data-page="home"]) .footer-brand,
body[data-page="home"] .footer-brand,
body:not([data-page="home"]) .footer-brand strong,
body[data-page="home"] .footer-brand strong {
  color: #f8fbff;
  font-family: var(--headline);
  font-weight: 900;
  text-transform: uppercase;
}

body:not([data-page="home"]) .footer-brand > span > span,
body[data-page="home"] .footer-brand > span > span {
  color: rgba(248, 251, 255, 0.62);
}

body:not([data-page="home"]) .footer-links a,
body:not([data-page="home"]) .footer-contact a,
body:not([data-page="home"]) .footer-contact span,
body:not([data-page="home"]) .footer-copy,
body:not([data-page="home"]) .footer-copy a,
body[data-page="home"] .footer-links a,
body[data-page="home"] .footer-contact a,
body[data-page="home"] .footer-contact span,
body[data-page="home"] .footer-copy,
body[data-page="home"] .footer-copy a {
  color: rgba(248, 251, 255, 0.74);
}

body:not([data-page="home"]) .footer-links a,
body[data-page="home"] .footer-links a,
body:not([data-page="home"]) .footer-socials a,
body:not([data-page="home"]) .footer-status span,
body[data-page="home"] .footer-socials a,
body[data-page="home"] .footer-status span {
  border: 2px solid rgba(255, 255, 255, 0.14);
  color: #f8fbff;
  background: rgba(255, 255, 255, 0.065);
}

body:not([data-page="home"]) .footer-links a:hover,
body[data-page="home"] .footer-links a:hover {
  color: var(--arcade-ink);
  background: var(--arcade-pink);
}

body:not([data-page="home"]) .footer-status span::before,
body[data-page="home"] .footer-status span::before {
  background: var(--arcade-pink);
}

body:not([data-page="home"]) .footer-lead-shell,
body[data-page="home"] .footer-lead-shell,
body:not([data-page="home"]) .final-cta-shell,
body[data-page="home"] .final-cta-shell {
  border: 2px solid rgba(255, 255, 255, 0.14);
  color: #f8fbff;
  background:
    radial-gradient(circle at 88% 8%, rgba(255, 91, 216, 0.18), transparent 30%),
    #151a22;
}

body:not([data-page="home"]) .to-top,
body[data-page="home"] .to-top {
  border: 3px solid var(--arcade-ink);
  color: var(--arcade-ink);
  background: #ffffff;
  box-shadow: 5px 5px 0 var(--arcade-ink);
}

@media (max-width: 860px) {
  body:not([data-page="home"]) .header-panel {
    width: 100%;
    justify-self: stretch;
  }

  body:not([data-page="home"]) .header-row.is-menu-open .header-panel {
    border: 3px solid var(--arcade-ink);
    background: var(--arcade-yellow);
    box-shadow: 6px 6px 0 var(--arcade-ink);
  }

  body:not([data-page="home"]) .inner-hero {
    padding-top: 12px;
  }

  body:not([data-page="home"]) .inner-hero-copy h1 {
    font-size: clamp(42px, 14vw, 68px);
  }
}

/* Final pass: keep shared forms, CTA and footer in the arcade/poster language. */
body:not([data-page="home"]) .cta-banner,
body[data-page="home"] .cta-banner,
body:not([data-page="home"]) .footer-lead-shell,
body[data-page="home"] .footer-lead-shell {
  position: relative;
  isolation: isolate;
  border: 3px solid rgba(255, 255, 255, 0.16);
  border-radius: 34px;
  background:
    radial-gradient(circle at 82% 10%, rgba(255, 91, 216, 0.2), transparent 28%),
    radial-gradient(circle at 14% 76%, rgba(35, 210, 226, 0.18), transparent 26%),
    linear-gradient(135deg, #111116 0%, #152a40 100%);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.42);
}

body:not([data-page="home"]) .cta-banner::before,
body[data-page="home"] .cta-banner::before,
body:not([data-page="home"]) .footer-lead-shell::before,
body[data-page="home"] .footer-lead-shell::before {
  content: "";
  position: absolute;
  inset: 16px;
  z-index: -1;
  border: 2px dashed rgba(255, 91, 216, 0.32);
  border-radius: 26px;
  pointer-events: none;
}

body:not([data-page="home"]) .cta-banner h2,
body[data-page="home"] .cta-banner h2,
body:not([data-page="home"]) .footer-lead-copy h2,
body[data-page="home"] .footer-lead-copy h2 {
  color: #f8fbff;
  font-family: var(--headline);
  letter-spacing: -0.055em;
  text-transform: uppercase;
}

body:not([data-page="home"]) .cta-banner p,
body[data-page="home"] .cta-banner p,
body:not([data-page="home"]) .footer-lead-copy p,
body[data-page="home"] .footer-lead-copy p {
  color: rgba(248, 251, 255, 0.78);
}

body:not([data-page="home"]) .footer-lead-copy .eyebrow,
body[data-page="home"] .footer-lead-copy .eyebrow {
  width: fit-content;
  color: var(--arcade-ink);
  background: var(--arcade-pink);
}

body:not([data-page="home"]) .footer-lead-copy .brief-points span,
body[data-page="home"] .footer-lead-copy .brief-points span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 9px 14px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: #f8fbff;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
  font-family: var(--headline);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

body:not([data-page="home"]) .footer-lead-card,
body[data-page="home"] .footer-lead-card {
  border: 4px solid var(--arcade-ink);
  border-radius: 30px;
  color: var(--arcade-ink);
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 91, 216, 0.24), transparent 28%),
    linear-gradient(180deg, #f8fbff 0%, #e6f7ff 100%);
  box-shadow: 10px 10px 0 var(--arcade-ink);
}

body:not([data-page="home"]) .footer-lead-card .field-label,
body:not([data-page="home"]) .footer-lead-card .form-consent,
body:not([data-page="home"]) .footer-lead-card .form-side-note,
body:not([data-page="home"]) .footer-lead-card .form-note,
body[data-page="home"] .footer-lead-card .field-label,
body[data-page="home"] .footer-lead-card .form-consent,
body[data-page="home"] .footer-lead-card .form-side-note,
body[data-page="home"] .footer-lead-card .form-note,
.project-modal .field-label,
.project-modal .form-consent,
.project-modal .form-side-note,
.project-modal .form-note {
  color: rgba(7, 7, 8, 0.76);
}

body:not([data-page="home"]) .footer-lead-card .field-label,
body[data-page="home"] .footer-lead-card .field-label,
.project-modal .field-label {
  color: var(--arcade-ink);
  font-family: var(--headline);
  font-weight: 900;
}

body:not([data-page="home"]) .footer-lead-card input,
body:not([data-page="home"]) .footer-lead-card textarea,
body[data-page="home"] .footer-lead-card input,
body[data-page="home"] .footer-lead-card textarea,
.project-modal input,
.project-modal textarea {
  border: 3px solid var(--arcade-ink);
  background: #ffffff;
}

body:not([data-page="home"]) .footer-lead-card .form-note,
body[data-page="home"] .footer-lead-card .form-note,
.project-modal .form-note {
  border: 2px solid rgba(7, 7, 8, 0.14);
  background: rgba(255, 255, 255, 0.86);
}

body:not([data-page="home"]) .footer-lead-card .text-link,
body[data-page="home"] .footer-lead-card .text-link,
.project-modal .text-link {
  color: var(--arcade-ink);
  text-decoration-color: var(--arcade-pink);
  text-decoration-thickness: 3px;
}

body:not([data-page="home"]) .footer-lead-card .form-consent input,
body[data-page="home"] .footer-lead-card .form-consent input,
.project-modal .form-consent input {
  accent-color: var(--arcade-pink);
}

body:not([data-page="home"]) .site-footer,
body[data-page="home"] .site-footer {
  padding-top: 20px;
  background:
    linear-gradient(180deg, var(--arcade-black), #070708 100%);
}

body:not([data-page="home"]) .footer-row,
body[data-page="home"] .footer-row {
  border: 3px solid rgba(255, 255, 255, 0.16);
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035)),
    #121820;
}

body:not([data-page="home"]) .footer-links,
body[data-page="home"] .footer-links {
  gap: 8px;
}

body:not([data-page="home"]) .footer-links a,
body[data-page="home"] .footer-links a,
body:not([data-page="home"]) .footer-socials a,
body[data-page="home"] .footer-socials a {
  border: 2px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: #f8fbff;
  background: rgba(255, 255, 255, 0.08);
  font-family: var(--headline);
  font-weight: 900;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

body:not([data-page="home"]) .footer-contact,
body[data-page="home"] .footer-contact,
body:not([data-page="home"]) .footer-copy,
body[data-page="home"] .footer-copy {
  color: rgba(248, 251, 255, 0.7);
}

body:not([data-page="home"]) .footer-contact a,
body[data-page="home"] .footer-contact a,
body:not([data-page="home"]) .footer-copy a,
body[data-page="home"] .footer-copy a {
  color: #f8fbff;
  text-decoration-color: var(--arcade-pink);
}

/* Readability repair after the global restyle. These selectors intentionally
   beat the legacy section-specific rules that kept dark text on dark panels. */
.media-slot > .media-slot-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block !important;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.media-slot > .media-slot-image + *,
.media-slot > .media-slot-image ~ * {
  position: relative;
  z-index: 2;
}

body:not([data-page="home"]) .case-media .case-media-note,
body[data-page="home"] .case-media .case-media-note,
body:not([data-page="home"]) .solutions-stage .solutions-stage-card,
body[data-page="home"] .solutions-stage .solutions-stage-card,
body:not([data-page="home"]) .final-cta-stage .final-cta-stage-note,
body[data-page="home"] .final-cta-stage .final-cta-stage-note,
body:not([data-page="home"]) .page-atlas-stage .page-atlas-note,
body[data-page="home"] .page-atlas-stage .page-atlas-note,
body:not([data-page="home"]) .launch-corridor-stage .launch-corridor-note,
body[data-page="home"] .launch-corridor-stage .launch-corridor-note {
  border: 3px solid var(--arcade-ink);
  color: var(--arcade-ink);
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 91, 216, 0.18), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(232, 248, 255, 0.94));
  box-shadow: 7px 7px 0 var(--arcade-ink);
}

body:not([data-page="home"]) .case-media-note span,
body[data-page="home"] .case-media-note span,
body:not([data-page="home"]) .solutions-stage-card span,
body[data-page="home"] .solutions-stage-card span,
body:not([data-page="home"]) .final-cta-stage-note span,
body[data-page="home"] .final-cta-stage-note span,
body:not([data-page="home"]) .page-atlas-note span,
body[data-page="home"] .page-atlas-note span,
body:not([data-page="home"]) .launch-corridor-note span,
body[data-page="home"] .launch-corridor-note span {
  color: #5b33ff;
  font-weight: 900;
}

body:not([data-page="home"]) .case-media-note strong,
body[data-page="home"] .case-media-note strong,
body:not([data-page="home"]) .solutions-stage-card strong,
body[data-page="home"] .solutions-stage-card strong,
body:not([data-page="home"]) .final-cta-stage-note strong,
body[data-page="home"] .final-cta-stage-note strong,
body:not([data-page="home"]) .page-atlas-note strong,
body[data-page="home"] .page-atlas-note strong,
body:not([data-page="home"]) .launch-corridor-note strong,
body[data-page="home"] .launch-corridor-note strong {
  color: var(--arcade-ink);
}

body:not([data-page="home"]) .solutions-stage-card p,
body[data-page="home"] .solutions-stage-card p,
body:not([data-page="home"]) .final-cta-stage-note p,
body[data-page="home"] .final-cta-stage-note p,
body:not([data-page="home"]) .page-atlas-note p,
body[data-page="home"] .page-atlas-note p,
body:not([data-page="home"]) .launch-corridor-note p,
body[data-page="home"] .launch-corridor-note p {
  color: rgba(7, 7, 8, 0.76);
}

body:not([data-page="home"]) .metric-row .metric-chip,
body[data-page="home"] .metric-row .metric-chip {
  border: 3px solid var(--arcade-ink);
  border-radius: 20px;
  color: var(--arcade-ink);
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 91, 216, 0.14), transparent 30%),
    #f8fbff;
  box-shadow: 5px 5px 0 var(--arcade-ink);
}

body:not([data-page="home"]) .metric-row .metric-chip strong,
body[data-page="home"] .metric-row .metric-chip strong {
  color: var(--arcade-ink);
}

body:not([data-page="home"]) .metric-row .metric-chip span,
body[data-page="home"] .metric-row .metric-chip span {
  color: rgba(7, 7, 8, 0.72);
}

body:not([data-page="home"]) .scope-section .section-panel,
body[data-page="home"] .scope-section .section-panel {
  color: #f8fbff;
}

body:not([data-page="home"]) .scope-table .scope-row,
body[data-page="home"] .scope-table .scope-row {
  border: 2px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
}

body:not([data-page="home"]) .scope-row strong,
body[data-page="home"] .scope-row strong,
body:not([data-page="home"]) .scope-section .section-head h2,
body[data-page="home"] .scope-section .section-head h2 {
  color: #f8fbff;
}

body:not([data-page="home"]) .scope-row span,
body[data-page="home"] .scope-row span,
body:not([data-page="home"]) .scope-section .section-head p,
body[data-page="home"] .scope-section .section-head p {
  color: rgba(248, 251, 255, 0.78);
}

body:not([data-page="home"]) .approach-steps .approach-step,
body[data-page="home"] .approach-steps .approach-step,
body:not([data-page="home"]) .approach-steps .approach-step:nth-child(n),
body[data-page="home"] .approach-steps .approach-step:nth-child(n) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(circle at 92% 0%, rgba(255, 91, 216, 0.12), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035)),
    #151a22;
}

body:not([data-page="home"]) .approach-step .step-number,
body[data-page="home"] .approach-step .step-number {
  color: var(--arcade-pink);
}

body:not([data-page="home"]) .approach-step strong,
body[data-page="home"] .approach-step strong {
  color: #f8fbff;
}

body:not([data-page="home"]) .approach-step p,
body[data-page="home"] .approach-step p {
  color: rgba(248, 251, 255, 0.78);
}

body:not([data-page="home"]) .calculator-shell,
body[data-page="home"] .calculator-shell {
  align-items: start;
}

body:not([data-page="home"]) .calculator-copy,
body[data-page="home"] .calculator-copy,
body:not([data-page="home"]) .brief-card,
body[data-page="home"] .brief-card {
  border: 4px solid var(--arcade-ink);
  color: var(--arcade-ink);
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 91, 216, 0.18), transparent 30%),
    linear-gradient(180deg, #f8fbff, #e6f7ff);
  box-shadow: 9px 9px 0 var(--arcade-ink);
}

body:not([data-page="home"]) .calculator-copy h2,
body[data-page="home"] .calculator-copy h2,
body:not([data-page="home"]) .brief-card h3,
body[data-page="home"] .brief-card h3,
body:not([data-page="home"]) .calculator-copy .calc-title,
body[data-page="home"] .calculator-copy .calc-title,
body:not([data-page="home"]) .calculator-copy .range-head strong,
body[data-page="home"] .calculator-copy .range-head strong {
  color: var(--arcade-ink);
}

body:not([data-page="home"]) .calculator-copy p,
body[data-page="home"] .calculator-copy p,
body:not([data-page="home"]) .brief-card p,
body[data-page="home"] .brief-card p,
body:not([data-page="home"]) .brief-card .field-label,
body[data-page="home"] .brief-card .field-label,
body:not([data-page="home"]) .brief-card .form-consent,
body[data-page="home"] .brief-card .form-consent,
body:not([data-page="home"]) .brief-card .form-side-note,
body[data-page="home"] .brief-card .form-side-note,
body:not([data-page="home"]) .brief-card .form-note,
body[data-page="home"] .brief-card .form-note {
  color: rgba(7, 7, 8, 0.76);
}

body:not([data-page="home"]) .calculator-copy .choice-pill span,
body[data-page="home"] .calculator-copy .choice-pill span {
  border: 3px solid var(--arcade-ink);
  color: var(--arcade-ink);
  background: #ffffff;
  box-shadow: 4px 4px 0 var(--arcade-ink);
}

body:not([data-page="home"]) .calculator-copy .choice-pill input:checked + span,
body[data-page="home"] .calculator-copy .choice-pill input:checked + span {
  color: var(--arcade-ink);
  background: var(--arcade-pink);
}

body:not([data-page="home"]) .result-tip,
body[data-page="home"] .result-tip {
  display: block;
  padding: 16px 18px;
  border: 2px solid rgba(255, 255, 255, 0.16);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
}

body:not([data-page="home"]) .result-tip p,
body[data-page="home"] .result-tip p {
  max-width: none;
  color: rgba(248, 251, 255, 0.82);
  line-height: 1.55;
}

body:not([data-page="home"]) .final-cta-shell,
body[data-page="home"] .final-cta-shell {
  grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1.12fr);
  align-items: center;
}

body:not([data-page="home"]) .final-cta-copy h2,
body[data-page="home"] .final-cta-copy h2,
body:not([data-page="home"]) .final-cta-copy .eyebrow,
body[data-page="home"] .final-cta-copy .eyebrow {
  color: #f8fbff;
}

body:not([data-page="home"]) .final-cta-copy p,
body[data-page="home"] .final-cta-copy p {
  color: rgba(248, 251, 255, 0.8);
}

body:not([data-page="home"]) .final-cta-copy .pill-row span,
body[data-page="home"] .final-cta-copy .pill-row span {
  border: 2px solid rgba(255, 255, 255, 0.22);
  color: #f8fbff;
  background: rgba(255, 255, 255, 0.08);
}

@media (max-width: 860px) {
  body:not([data-page="home"]) .final-cta-shell,
  body[data-page="home"] .final-cta-shell {
    grid-template-columns: 1fr;
  }
}

/* Composition repair: remove decorative empty fields and stretch copy. */
body[data-page="home"] .case-slider-shell {
  min-height: calc(var(--case-slider-height, 620px) + 72px);
}

body[data-page="home"] .case-slider .case-list {
  min-height: var(--case-slider-height, 620px);
}

body:not([data-page="home"]) .section-head,
body[data-page="home"] .section-head {
  width: 100%;
  max-width: none;
}

body:not([data-page="home"]) .section-head h2,
body[data-page="home"] .section-head h2 {
  max-width: none;
  width: 100%;
  text-wrap: balance;
}

body:not([data-page="home"]) .section-head p,
body[data-page="home"] .section-head p {
  max-width: min(88ch, 100%);
}

body[data-page="home"] .atlas-head-visual,
body[data-page="home"] .page-atlas-stage {
  display: none;
}

body[data-page="home"] .format-slider {
  display: none;
}

body[data-page="home"] .section-head-atlas {
  display: grid;
  grid-template-columns: 1fr;
}

body[data-page="home"] .page-atlas {
  grid-template-columns: 1fr;
}

body[data-page="home"] .page-atlas-rail {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

body[data-page="home"] .solutions-stage,
body[data-page="home"] .mechanics-stage,
body:not([data-page="home"]) .solutions-stage,
body:not([data-page="home"]) .mechanics-stage,
body:not([data-page="home"]) .launch-corridor-stage {
  min-height: clamp(340px, 42vw, 500px);
}

body[data-page="home"] .solutions-stage-main.media-slot,
body[data-page="home"] .mechanics-stage-main.media-slot,
body:not([data-page="home"]) .solutions-stage-main.media-slot,
body:not([data-page="home"]) .mechanics-stage-main.media-slot,
body:not([data-page="home"]) .launch-corridor-main.media-slot {
  min-height: 100%;
}

body[data-page="home"] .page-link-thumb,
body[data-page="home"] .page-link-thumb > .media-slot,
body:not([data-page="home"]) .summary-visual,
body:not([data-page="home"]) .summary-visual-frame,
body:not([data-page="home"]) .summary-visual-frame > .media-slot {
  min-height: clamp(180px, 22vw, 260px);
}

body[data-page="home"] .format-slider-shell {
  min-height: 0;
}

body:not([data-page="home"]) .fit-card,
body[data-page="home"] .fit-card,
body:not([data-page="home"]) .compare-card,
body[data-page="home"] .compare-card,
body:not([data-page="home"]) .detail-card,
body[data-page="home"] .detail-card {
  color: #f8fbff;
}

body:not([data-page="home"]) .fit-card h3,
body[data-page="home"] .fit-card h3,
body:not([data-page="home"]) .compare-card h3,
body[data-page="home"] .compare-card h3,
body:not([data-page="home"]) .detail-card h3,
body[data-page="home"] .detail-card h3 {
  color: #f8fbff;
}

body:not([data-page="home"]) .fit-card p,
body[data-page="home"] .fit-card p,
body:not([data-page="home"]) .fit-card li,
body[data-page="home"] .fit-card li,
body:not([data-page="home"]) .compare-card p,
body[data-page="home"] .compare-card p,
body:not([data-page="home"]) .detail-card p,
body[data-page="home"] .detail-card p {
  color: rgba(248, 251, 255, 0.82);
}

body:not([data-page="home"]) .fit-card li::before,
body[data-page="home"] .fit-card li::before {
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.08);
}

body[data-page="solutions"] .directions-mascot-note {
  right: 164px;
  border: 3px solid var(--arcade-ink);
  color: var(--arcade-ink);
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 91, 216, 0.16), transparent 30%),
    #f8fbff;
  box-shadow: 7px 7px 0 var(--arcade-ink);
}

body[data-page="solutions"] .directions-mascot-note span {
  color: #5b33ff;
}

body[data-page="solutions"] .directions-mascot-note strong {
  color: var(--arcade-ink);
}

body[data-page="solutions"] .directions-head .section-head p,
body[data-page="solutions"] .solution-rail-item p {
  max-width: none;
}

body[data-page="solutions"] .solutions-rail {
  padding: 0;
}

body[data-page="solutions"] .solution-rail-item {
  padding: 26px 28px;
}

body[data-page="solutions"] .solution-rail-item::before {
  left: 0;
}

body[data-page="solutions"] .solution-rail-meta {
  max-width: none;
}

body:not([data-page="home"]) .final-cta-side > .final-cta-stage-note,
body[data-page="home"] .final-cta-side > .final-cta-stage-note {
  position: static;
  display: grid;
  gap: 10px;
  max-width: none;
  padding: 18px 20px;
  border: 3px solid var(--arcade-ink);
  border-radius: 24px;
  color: var(--arcade-ink);
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 91, 216, 0.16), transparent 30%),
    linear-gradient(180deg, #f8fbff, #e8f8ff);
  box-shadow: 7px 7px 0 var(--arcade-ink);
}

body:not([data-page="home"]) .final-cta-side > .final-cta-stage-note span,
body[data-page="home"] .final-cta-side > .final-cta-stage-note span {
  color: #5b33ff;
}

body:not([data-page="home"]) .final-cta-side > .final-cta-stage-note strong,
body[data-page="home"] .final-cta-side > .final-cta-stage-note strong {
  color: var(--arcade-ink);
  font-size: clamp(24px, 2.8vw, 34px);
}

body:not([data-page="home"]) .final-cta-side > .final-cta-stage-note p,
body[data-page="home"] .final-cta-side > .final-cta-stage-note p {
  color: rgba(7, 7, 8, 0.74);
}

body:not([data-page="home"]) .final-cta-stage,
body[data-page="home"] .final-cta-stage {
  min-height: clamp(260px, 30vw, 360px);
}

body:not([data-page="home"]) .calculator-copy input[type="range"],
body[data-page="home"] .calculator-copy input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 18px;
  border: 3px solid var(--arcade-ink);
  border-radius: 999px;
  cursor: pointer;
  background:
    linear-gradient(90deg, #5b33ff 0 var(--range-progress, 0%), #dff3ff var(--range-progress, 0%) 100%);
  box-shadow: 4px 4px 0 var(--arcade-ink);
}

body:not([data-page="home"]) .calculator-copy input[type="range"]::-webkit-slider-runnable-track,
body[data-page="home"] .calculator-copy input[type="range"]::-webkit-slider-runnable-track {
  height: 18px;
  border-radius: 999px;
  background: transparent;
}

body:not([data-page="home"]) .calculator-copy input[type="range"]::-webkit-slider-thumb,
body[data-page="home"] .calculator-copy input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 30px;
  height: 30px;
  margin-top: -9px;
  border: 3px solid var(--arcade-ink);
  border-radius: 50%;
  background: var(--arcade-pink);
  box-shadow: 3px 3px 0 var(--arcade-ink);
}

body:not([data-page="home"]) .calculator-copy input[type="range"]::-moz-range-track,
body[data-page="home"] .calculator-copy input[type="range"]::-moz-range-track {
  height: 18px;
  border: 0;
  border-radius: 999px;
  background: transparent;
}

body:not([data-page="home"]) .calculator-copy input[type="range"]::-moz-range-progress,
body[data-page="home"] .calculator-copy input[type="range"]::-moz-range-progress {
  height: 18px;
  border-radius: 999px;
  background: #5b33ff;
}

body:not([data-page="home"]) .calculator-copy input[type="range"]::-moz-range-thumb,
body[data-page="home"] .calculator-copy input[type="range"]::-moz-range-thumb {
  width: 26px;
  height: 26px;
  border: 3px solid var(--arcade-ink);
  border-radius: 50%;
  background: var(--arcade-pink);
  box-shadow: 3px 3px 0 var(--arcade-ink);
}

/* Readability repair: light cards must not inherit the dark section text color. */
body:not([data-page="home"]) .inner-hero-shell {
  grid-template-columns: minmax(0, 1.24fr) minmax(300px, 0.76fr);
  overflow: visible;
}

body:not([data-page="home"]) .inner-hero-copy {
  min-width: 0;
}

body:not([data-page="home"]) .inner-hero-copy h1 {
  max-width: min(12ch, 100%);
  font-size: clamp(52px, 6.2vw, 92px);
  letter-spacing: -0.055em;
}

body:not([data-page="home"]) .inner-hero-copy p {
  max-width: min(48ch, 100%);
}

body[data-page="mechanics"] .inner-hero-copy h1 {
  max-width: min(12.5ch, 100%);
  font-size: clamp(58px, 6.4vw, 92px);
}

body[data-page="mechanics"] .inner-hero-copy p {
  max-width: min(52ch, 100%);
}

body:not([data-page="home"]) .page-intro-grid .metric-card,
body[data-page="home"] .page-intro-grid .metric-card,
body:not([data-page="home"]) .detail-grid .detail-card,
body[data-page="home"] .detail-grid .detail-card,
body:not([data-page="home"]) .format-grid .detail-card,
body[data-page="home"] .format-grid .detail-card,
body:not([data-page="home"]) .story-grid .story-card,
body[data-page="home"] .story-grid .story-card,
body:not([data-page="home"]) .mechanics-list .mechanics-item,
body[data-page="home"] .mechanics-list .mechanics-item,
body:not([data-page="home"]) .policy-card,
body:not([data-page="home"]) .policy-note-card {
  color: var(--arcade-ink);
}

body:not([data-page="home"]) .page-intro-grid .metric-card:nth-child(n),
body[data-page="home"] .page-intro-grid .metric-card:nth-child(n),
body:not([data-page="home"]) .detail-grid .detail-card:nth-child(n),
body[data-page="home"] .detail-grid .detail-card:nth-child(n),
body:not([data-page="home"]) .format-grid .detail-card:nth-child(n),
body[data-page="home"] .format-grid .detail-card:nth-child(n),
body:not([data-page="home"]) .story-grid .story-card:nth-child(n),
body[data-page="home"] .story-grid .story-card:nth-child(n),
body:not([data-page="home"]) .mechanics-list .mechanics-item:nth-child(n),
body[data-page="home"] .mechanics-list .mechanics-item:nth-child(n) {
  border: 0;
  color: var(--arcade-ink);
  background: linear-gradient(180deg, rgba(248, 251, 255, 0.98), rgba(232, 248, 255, 0.94));
  box-shadow: none;
}

body:not([data-page="home"]) .page-intro-grid .metric-card:nth-child(3n + 2),
body[data-page="home"] .page-intro-grid .metric-card:nth-child(3n + 2),
body:not([data-page="home"]) .detail-grid .detail-card:nth-child(3n + 2),
body[data-page="home"] .detail-grid .detail-card:nth-child(3n + 2),
body:not([data-page="home"]) .format-grid .detail-card:nth-child(3n + 2),
body[data-page="home"] .format-grid .detail-card:nth-child(3n + 2),
body:not([data-page="home"]) .story-grid .story-card:nth-child(3n + 2),
body[data-page="home"] .story-grid .story-card:nth-child(3n + 2),
body:not([data-page="home"]) .mechanics-list .mechanics-item:nth-child(3n + 2),
body[data-page="home"] .mechanics-list .mechanics-item:nth-child(3n + 2) {
  background: linear-gradient(180deg, rgba(248, 246, 255, 0.98), rgba(250, 249, 255, 0.95));
}

body:not([data-page="home"]) .page-intro-grid .metric-card:nth-child(3n + 3),
body[data-page="home"] .page-intro-grid .metric-card:nth-child(3n + 3),
body:not([data-page="home"]) .detail-grid .detail-card:nth-child(3n + 3),
body[data-page="home"] .detail-grid .detail-card:nth-child(3n + 3),
body:not([data-page="home"]) .format-grid .detail-card:nth-child(3n + 3),
body[data-page="home"] .format-grid .detail-card:nth-child(3n + 3),
body:not([data-page="home"]) .story-grid .story-card:nth-child(3n + 3),
body[data-page="home"] .story-grid .story-card:nth-child(3n + 3),
body:not([data-page="home"]) .mechanics-list .mechanics-item:nth-child(3n + 3),
body[data-page="home"] .mechanics-list .mechanics-item:nth-child(3n + 3) {
  background: linear-gradient(180deg, rgba(255, 249, 235, 0.98), rgba(255, 252, 245, 0.95));
}

body:not([data-page="home"]) .page-intro-grid .metric-card strong,
body[data-page="home"] .page-intro-grid .metric-card strong,
body:not([data-page="home"]) .detail-grid .detail-card h3,
body[data-page="home"] .detail-grid .detail-card h3,
body:not([data-page="home"]) .format-grid .detail-card h3,
body[data-page="home"] .format-grid .detail-card h3,
body:not([data-page="home"]) .story-grid .story-card h3,
body[data-page="home"] .story-grid .story-card h3,
body:not([data-page="home"]) .mechanics-list .mechanics-item h3,
body[data-page="home"] .mechanics-list .mechanics-item h3,
body:not([data-page="home"]) .policy-section h2,
body:not([data-page="home"]) .policy-section h3,
body:not([data-page="home"]) .policy-note-card h3,
body:not([data-page="home"]) .policy-list strong,
body:not([data-page="home"]) .policy-note-card strong {
  color: var(--arcade-ink);
}

body:not([data-page="home"]) .page-intro-grid .metric-card span,
body[data-page="home"] .page-intro-grid .metric-card span,
body:not([data-page="home"]) .detail-grid .detail-card p,
body[data-page="home"] .detail-grid .detail-card p,
body:not([data-page="home"]) .format-grid .detail-card p,
body[data-page="home"] .format-grid .detail-card p,
body:not([data-page="home"]) .story-grid .story-card p,
body[data-page="home"] .story-grid .story-card p,
body:not([data-page="home"]) .mechanics-list .mechanics-item p,
body[data-page="home"] .mechanics-list .mechanics-item p,
body:not([data-page="home"]) .policy-section p,
body:not([data-page="home"]) .policy-note-card p,
body:not([data-page="home"]) .policy-list,
body:not([data-page="home"]) .policy-side-list,
body:not([data-page="home"]) .policy-meta dd {
  color: rgba(7, 7, 8, 0.76);
}

body:not([data-page="home"]) .mechanics-list .mechanics-item-tags span,
body[data-page="home"] .mechanics-list .mechanics-item-tags span {
  border: 2px solid rgba(7, 7, 8, 0.16);
  color: var(--arcade-ink);
  background: rgba(255, 255, 255, 0.84);
}

body[data-page="contact"] .launch-corridor-media {
  display: grid;
  align-content: start;
  gap: 16px;
}

body[data-page="contact"] .launch-corridor-media .launch-corridor-stage {
  min-height: clamp(300px, 34vw, 420px);
}

body[data-page="contact"] .launch-corridor-media > .launch-corridor-note {
  position: static;
  width: 100%;
  max-width: 560px;
  padding: 16px 18px;
  border: 3px solid var(--arcade-ink);
  border-radius: 24px;
  color: var(--arcade-ink);
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 91, 216, 0.16), transparent 30%),
    linear-gradient(180deg, #f8fbff, #e8f8ff);
  box-shadow: 7px 7px 0 var(--arcade-ink);
}

body[data-page="contact"] .launch-corridor-media > .launch-corridor-note strong {
  color: var(--arcade-ink);
  font-size: clamp(22px, 2.2vw, 28px);
}

body[data-page="contact"] .launch-corridor-media > .launch-corridor-note p {
  color: rgba(7, 7, 8, 0.76);
}

.project-modal-dialog {
  color: var(--arcade-ink);
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 91, 216, 0.16), transparent 28%),
    linear-gradient(180deg, #f8fbff, #e6f7ff);
}

.project-modal-copy h3,
.project-modal-kicker,
.project-modal-close {
  color: var(--arcade-ink);
}

.project-modal-copy p,
.project-modal .field-label,
.project-modal .form-consent,
.project-modal .form-side-note,
.project-modal .form-note {
  color: rgba(7, 7, 8, 0.78);
}

body .project-modal .field-label,
body .project-modal .form-consent,
body .project-modal .form-side-note,
body .project-modal .form-note {
  color: rgba(7, 7, 8, 0.78);
}

body .project-modal .field-label {
  color: var(--arcade-ink);
}

.project-modal input::placeholder,
.project-modal textarea::placeholder {
  color: rgba(7, 7, 8, 0.54);
}

@media (max-width: 980px) {
  body[data-page="home"] .page-atlas-rail {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  body:not([data-page="home"]) .inner-hero-copy h1 {
    max-width: 100%;
    font-size: clamp(40px, 13vw, 62px);
  }

  body:not([data-page="home"]) .inner-hero-copy p {
    max-width: 100%;
  }

  body[data-page="home"] .page-atlas-rail {
    grid-template-columns: 1fr;
  }

  body[data-page="solutions"] .directions-mascot-note {
    right: 118px;
  }
}
