:root {
  --ink: #0e171b;
  --deep: #014766;
  --blue: #076888;
  --aqua: #8ed2d6;
  --red: #ef3f36;
  --gold: #f2b950;
  --paper: #fbfcfb;
  --mist: #e8f2f0;
  --line: rgba(14, 23, 27, 0.12);
  --shadow: 0 20px 60px rgba(1, 38, 54, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: "Inter", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

body::selection {
  color: #fff;
  background: var(--red);
}

body.nav-open {
  overflow: hidden;
}

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

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

.scroll-progress {
  position: fixed;
  z-index: 40;
  top: 0;
  left: 0;
  width: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--red), var(--gold), var(--aqua));
  box-shadow: 0 0 18px rgba(239, 63, 54, 0.45);
  pointer-events: none;
}

.reveal-section,
.service-grid article,
.benefit-grid article,
.timeline-step,
.faq-list details,
.studio-list li,
.studio-card,
.signal-row {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 650ms ease, transform 650ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.reveal-section.is-visible,
.service-grid article.is-visible,
.benefit-grid article.is-visible,
.timeline-step.is-visible,
.faq-list details.is-visible,
.studio-list li.is-visible,
.studio-card.is-visible,
.signal-row.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px clamp(20px, 3.5vw, 36px);
  background: rgba(251, 252, 251, 0.9);
  box-shadow: 0px 14px 36px rgba(1, 38, 54, 0.12);
  backdrop-filter: blur(18px);
  transition: height 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  box-shadow: 0 14px 36px rgba(1, 38, 54, 0.12);
}

.brand {
  width: 217.83px;
  height: 68px;
  padding: 14px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
  color: rgba(14, 23, 27, 0.72);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 17px;
  font-weight: 700;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  color: rgba(14, 23, 27, 0.72);
  text-align: center;
  transition: color 180ms ease, border-color 180ms ease;
}

.site-nav a:nth-child(1) { width: 60px; }
.site-nav a:nth-child(2) { width: 58px; }
.site-nav a:nth-child(3) { width: 56px; }
.site-nav a:nth-child(4) { width: 28px; }
.site-nav a:nth-child(5) { width: 115px; }

.site-nav a:hover,
.site-nav a.active {
  color: var(--deep);
  border-bottom-color: var(--red);
}

.site-nav a.active {
  color: var(--deep);
}

.nav-cta {
  color: rgba(14, 23, 27, 0.72);
}

.nav-cta:hover {
  color: var(--deep);
}

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
  border-radius: 8px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5.7px;
  cursor: pointer;
  transition: box-shadow 180ms ease;
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
  box-shadow: 0 0 0 4px rgba(239, 63, 54, 0.12);
  outline: 0;
}

.nav-toggle span:not(.sr-only) {
  width: 26.25px;
  height: 3px;
  background: #014766;
  transition: transform 180ms ease, opacity 180ms ease;
}

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

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

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

.hero {
  position: relative;
  min-height: min(1322px, 100vh);
  padding: 0 clamp(20px, 6vw, 86px);
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
}

.hero-bg,
.hero-motion,
.hero-screens,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-bg {
  --hero-scroll: 0px;
  background-image: url("assets/game-publishing-hero.png");
  background-position: center;
  background-size: cover;
  transform: scale(1.06);
  will-change: transform;
  animation: heroDrift 18s ease-in-out infinite alternate;
}

.hero-motion {
  z-index: 1;
  overflow: hidden;
  opacity: 0.78;
  pointer-events: none;
}

.hero-motion::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(142, 210, 214, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(142, 210, 214, 0.08) 1px, transparent 1px);
  background-size: 44px 44px;
  transform: perspective(500px) rotateX(58deg) translateY(20%);
  transform-origin: center bottom;
  animation: gridFloat 12s linear infinite;
}

.hero-motion span {
  position: absolute;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(142, 210, 214, 0.68), rgba(239, 63, 54, 0.72), transparent);
  filter: drop-shadow(0 0 12px rgba(142, 210, 214, 0.46));
  animation: routeSweep 6.5s linear infinite;
}

.hero-motion span:nth-child(1) {
  top: 30%;
}

.hero-motion span:nth-child(2) {
  top: 48%;
  animation-delay: -2.1s;
}

.hero-motion span:nth-child(3) {
  top: 66%;
  animation-delay: -4.2s;
}

.hero-screens {
  z-index: 1;
  pointer-events: none;
}

.screen {
  position: absolute;
  overflow: hidden;
  border: 1px solid rgba(142, 210, 214, 0.28);
  border-radius: 5px;
  background:
    linear-gradient(180deg, rgba(8, 70, 92, 0.96), rgba(1, 21, 31, 0.94)),
    #062f40;
  box-shadow: inset 0 0 24px rgba(142, 210, 214, 0.2), 0 0 18px rgba(142, 210, 214, 0.16);
  opacity: 0.72;
}

.screen::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(142, 210, 214, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(142, 210, 214, 0.08) 1px, transparent 1px);
  background-size: 18px 18px;
  animation: screenGrid 5s linear infinite;
}

.screen::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(239, 63, 54, 0.22), transparent);
  transform: translateY(-100%);
  animation: screenScan 3.8s linear infinite;
}

.screen-main {
  right: 16%;
  top: 39%;
  width: 27%;
  height: 20%;
  transform: perspective(700px) rotateY(-6deg) rotateX(1deg);
}

.screen-side {
  right: 4%;
  top: 31%;
  width: 14%;
  height: 22%;
  transform: perspective(700px) rotateY(-13deg);
}

.screen-low {
  right: 35%;
  top: 61%;
  width: 12%;
  height: 14%;
  transform: perspective(700px) rotateY(8deg) rotateX(5deg);
}

.screen i {
  position: absolute;
  bottom: 18%;
  width: 10%;
  background: linear-gradient(180deg, var(--aqua), var(--blue));
  border-radius: 3px 3px 0 0;
  animation: barPulse 1.8s ease-in-out infinite;
}

.screen i:nth-child(1) {
  left: 12%;
  height: 32%;
}

.screen i:nth-child(2) {
  left: 28%;
  height: 56%;
  animation-delay: -0.45s;
}

.screen i:nth-child(3) {
  left: 44%;
  height: 42%;
  animation-delay: -0.9s;
}

.screen span {
  position: absolute;
  left: 10%;
  right: 10%;
  top: 28%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--red), var(--aqua));
  filter: drop-shadow(0 0 8px rgba(239, 63, 54, 0.48));
  animation: chartLine 2.8s ease-in-out infinite;
}

@keyframes screenGrid {
  to {
    background-position: 36px 18px;
  }
}

@keyframes screenScan {
  to {
    transform: translateY(100%);
  }
}

@keyframes barPulse {
  0%,
  100% {
    transform: scaleY(0.55);
  }
  50% {
    transform: scaleY(1);
  }
}

@keyframes chartLine {
  0%,
  100% {
    transform: translateY(12px) scaleX(0.78);
  }
  50% {
    transform: translateY(-10px) scaleX(1);
  }
}

@keyframes heroDrift {
  from {
    background-position: 50% 50%;
    transform: scale(1.06) translate3d(-6px, calc(var(--hero-scroll) - 4px), 0);
  }
  to {
    background-position: 56% 48%;
    transform: scale(1.1) translate3d(8px, calc(var(--hero-scroll) + 6px), 0);
  }
}

@keyframes gridFloat {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 88px 88px;
  }
}

@keyframes routeSweep {
  from {
    transform: translateX(-24%) scaleX(0.62);
    opacity: 0;
  }
  35% {
    opacity: 0.82;
  }
  to {
    transform: translateX(24%) scaleX(1.05);
    opacity: 0;
  }
}

.hero-overlay {
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(1, 18, 24, 0.2) 0%, rgba(1, 18, 24, 0.7215) 100%),
    linear-gradient(90deg, rgba(0, 28, 45, 0.92) 0%, rgba(0, 60, 97, 0.78) 38%, rgba(0, 28, 45, 0.28) 76%);
}

.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 634px;
  margin-right: auto;
  padding-top: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--red);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: 0.78rem;
}

.hero .eyebrow {
  color: #EF4136;
}

.hero-content h1 {
  margin: 0 0 22px;
  max-width: 634px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: clamp(2.4rem, 5vw, 72px);
  line-height: 1.111;
  letter-spacing: 0;
  color: #FFFFFF;
}

.hero-signal {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: 0.25em;
  position: relative;
  box-sizing: border-box;
  width: 439px;
  max-width: 100%;
  white-space: nowrap;
  padding: 9px 13px;
  margin: 0 0 14px;
  border: 2px solid rgba(239, 63, 54, 0.3);
  border-radius: 8px;
  background: rgba(1, 24, 35, 0.3);
  color: #EF4136;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 28px;
  letter-spacing: 0;
  overflow: hidden;
}

.hero-signal::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.28), transparent);
  transform: translateX(-120%);
  animation: signalScan 3.6s ease-in-out infinite;
}

.hero-signal span {
  position: relative;
  animation: signalPulse 2.4s ease-in-out infinite;
}

.hero-signal span:nth-child(2) {
  animation-delay: 120ms;
}

.hero-signal span:nth-child(3) {
  animation-delay: 240ms;
}

.hero-signal span:nth-child(4) {
  animation-delay: 360ms;
}

.hero-signal span:nth-child(5) {
  animation-delay: 480ms;
}

.hero-signal span:nth-child(6) {
  animation-delay: 600ms;
}

@keyframes signalScan {
  0%,
  42% {
    transform: translateX(-120%);
  }
  72%,
  100% {
    transform: translateX(120%);
  }
}

@keyframes signalPulse {
  0%,
  100% {
    color: #EF4136;
    text-shadow: none;
  }
  45% {
    color: #fff;
    text-shadow: 0 0 18px rgba(239, 63, 54, 0.72);
  }
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 22px;
  max-width: 720px;
  font-size: clamp(3rem, 6vw, 5.4rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  color: var(--deep);
  margin-bottom: 18px;
  font-size: clamp(2rem, 4.8vw, 4.4rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  color: var(--deep);
  margin-bottom: 10px;
  font-size: 1.18rem;
  line-height: 1.22;
}

.hero-copy {
  margin: 0;
  max-width: 612px;
  color: rgba(255, 255, 255, 0.72);
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 26px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 16px;
  padding-top: 30px;
  margin-top: 0;
}

.hero-actions + * {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero-actions .button {
  min-height: 52px;
  height: 52px;
  padding: 13px 22px;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 26px;
  color: #FFFFFF;
}

.hero-actions .button.primary {
  background: #EF4136;
  border-color: transparent;
}

.hero-actions .button.primary:hover {
  background: #ff5549;
}

.hero-actions .button.secondary {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.button:focus-visible,
summary:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
.service-card:focus-visible {
  outline: 3px solid rgba(242, 185, 80, 0.62);
  outline-offset: 3px;
}

.button.primary {
  color: #fff;
  background: linear-gradient(135deg, var(--red), #ff5549);
  background-size: 160% 160%;
}

.button.primary:hover {
  background-position: 100% 0;
}

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

.band,
.content-section {
  padding: clamp(64px, 9vw, 118px) clamp(20px, 6vw, 86px);
}

.benefit-section.content-section {
  padding: clamp(48px, 6vw, 86px);
}

.section-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(320px, 1.12fr);
  gap: clamp(36px, 7vw, 88px);
  align-items: start;
}

.intro {
  background: #fff;
  padding: clamp(64px, 9vw, 118px) clamp(20px, 6vw, 86px);
}

.intro-inner {
  max-width: 1268px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 62px;
  padding: 0 44px;
  box-sizing: border-box;
}

.intro-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  max-width: 850px;
  width: 100%;
}

.intro-head .section-kicker {
  margin: 0;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 28px;
  color: #EF4136;
  text-transform: uppercase;
  text-align: center;
}

.intro-head h2 {
  margin: 0;
  max-width: 850px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: clamp(1.5rem, 4vw, 57px);
  line-height: 1.12;
  text-align: center;
  color: #003C61;
}

.studios h2 {
  max-width: 850px;
  color: #003C61;
  font-size: clamp(2.4rem, 5vw, 3.5625rem);
  line-height: 1.12;
  text-align: center;
  margin: 0;
}

.studios .studios-layout > div > .section-kicker {
  margin: 0 0 14px;
  color: #EF4136;
  font-size: 16px;
  line-height: 28px;
  font-weight: 700;
  text-transform: uppercase;
}

.studios .studios-layout > div > p:not(.section-kicker) {
  max-width: 850px;
  margin: 14px auto 0;
  color: rgba(14, 23, 27, 0.72);
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
  text-align: center;
}

.intro-list {
  display: grid;
  grid-template-columns: repeat(2, 272px);
  grid-template-rows: repeat(2, auto);
  grid-auto-flow: column;
  justify-content: center;
  column-gap: 44px;
  row-gap: 22px;
  width: 100%;
}

.intro-list span {
  position: relative;
  padding-left: 22px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 26px;
  color: rgba(14, 23, 27, 0.72);
}

.studio-list li,
.compare-column li {
  position: relative;
  padding-left: 28px;
}

.intro-list span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 12px;
  height: 12px;
  background: #EF4136;
  transform: rotate(-45deg);
}

.studio-list li::before,
.compare-column li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 10px;
  height: 10px;
  background: var(--red);
  transform: rotate(45deg);
}

.momentum-bridge {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  padding: clamp(54px, 8vw, 90px) clamp(20px, 6vw, 86px);
  display: grid;
  align-items: center;
  background:
    linear-gradient(180deg, var(--mist) 0%, rgba(251, 252, 251, 0.78) 44%, #fff 100%);
}

.momentum-bridge::before,
.momentum-bridge::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 130vw;
  height: 160px;
  background: #fff;
  transform: translateX(-50%) rotate(-2deg);
}

.momentum-bridge::before {
  top: -100px;
  background: var(--mist);
}

.momentum-bridge::after {
  bottom: -112px;
}

.bridge-track {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.bridge-track span {
  position: absolute;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(1, 104, 136, 0.18), rgba(239, 63, 54, 0.62), transparent);
  animation: bridgeFlow 5.5s linear infinite;
}

.bridge-track span:nth-child(1) {
  top: 34%;
}

.bridge-track span:nth-child(2) {
  top: 50%;
  animation-delay: -1.6s;
}

.bridge-track span:nth-child(3) {
  top: 66%;
  animation-delay: -3.2s;
}

.bridge-content {
  position: relative;
  z-index: 1;
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.bridge-content h2 {
  font-size: clamp(2rem, 4vw, 3.7rem);
}

.bridge-content p:not(.section-kicker) {
  max-width: 650px;
  margin: 0 auto;
  color: rgba(14, 23, 27, 0.7);
}

@keyframes bridgeFlow {
  0% {
    transform: translateX(-20%) scaleX(0.62);
    opacity: 0.18;
  }
  50% {
    opacity: 0.9;
  }
  100% {
    transform: translateX(20%) scaleX(1);
    opacity: 0.18;
  }
}

.strategy-band {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  margin-top: -1px;
  margin-bottom: -1px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: clamp(120px, 12vw, 160px) clamp(20px, 6vw, 86px);
  background: linear-gradient(98.71deg, #003C61 -0.01%, #001C2D 100.01%);
  color: #fff;
  clip-path: polygon(0 40px, 100% 0, 100% calc(100% - 40px), 0 100%);
}

.strategy-band::before,
.strategy-band::after {
  content: none;
}

.strategy-inner {
  position: relative;
  z-index: 2;
  max-width: 1268px;
  width: 100%;
  padding: 0 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 62px;
  box-sizing: border-box;
}

.strategy-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  max-width: 850px;
  width: 100%;
  text-align: center;
}

.strategy-copy .section-kicker {
  margin: 0;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 28px;
  color: #EF4136;
  text-transform: uppercase;
}

.strategy-copy h2 {
  margin: 0;
  max-width: 850px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: clamp(2.2rem, 4vw, 57px);
  line-height: 1.12;
  color: #FFFFFF;
  text-align: center;
}

.strategy-copy p:not(.section-kicker) {
  margin: 0;
  max-width: 850px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 26px;
  color: rgba(255, 255, 255, 0.72);
}

.strategy-map {
  position: relative;
  width: 100%;
  max-width: 850px;
  height: 235px;
  box-sizing: border-box;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  background: rgba(1, 24, 35, 0.22);
  overflow: hidden;
}

.map-line {
  position: absolute;
  top: 50%;
  left: 23.3%;
  right: 24.7%;
  height: 2px;
  transform: translateY(-50%);
  background: linear-gradient(90deg, #EF3F36 0%, #EF3F36 35%, #F2B950 50%, #EF3F36 65%, #EF3F36 100%);
  background-size: 300% 100%;
  background-position: 100% 0;
  border-radius: 8px;
  filter: drop-shadow(0 0 6px rgba(239, 63, 54, 0.5));
  animation: mapSignal 3.4s linear infinite;
}

@keyframes mapSignal {
  from {
    background-position: 100% 0;
  }
  to {
    background-position: 0% 0;
  }
}

.marker-dot {
  animation: dotPulse 2.4s ease-in-out infinite;
}

.map-marker:nth-of-type(2) .marker-dot {
  animation-delay: -0.8s;
}

.map-marker:nth-of-type(3) .marker-dot {
  animation-delay: -1.6s;
}

@keyframes dotPulse {
  0%,
  100% {
    box-shadow: 0 0 24px rgba(239, 63, 54, 0.56), 0 0 0 8px rgba(239, 63, 54, 0.22);
  }
  50% {
    box-shadow: 0 0 34px rgba(239, 63, 54, 0.8), 0 0 0 12px rgba(239, 63, 54, 0.15);
  }
}

.map-marker {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  width: 15px;
  height: 15px;
}

.map-marker:nth-of-type(1) { left: 23.3%; }
.map-marker:nth-of-type(2) { left: 50%; }
.map-marker:nth-of-type(3) { left: 75.3%; }

.marker-dot {
  display: block;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #EF4136;
  box-shadow: 0 0 24px rgba(239, 63, 54, 0.56), 0 0 0 8px rgba(239, 63, 54, 0.22);
}

.marker-label {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 9px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(1, 24, 35, 0.56);
  color: #FFFFFF;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 11px;
  line-height: 18px;
  text-transform: uppercase;
  white-space: nowrap;
}

.map-marker.below .marker-label {
  top: calc(50% + 7.5px + 36px);
}

.map-marker.above .marker-label {
  bottom: calc(50% + 7.5px + 36px);
}

.section-heading {
  max-width: 850px;
  margin: 0 auto clamp(36px, 6vw, 62px);
  text-align: center;
}

.section-heading p:not(.section-kicker) {
  color: rgba(14, 23, 27, 0.72);
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
}

.comparison .section-heading .section-kicker {
  margin: 0 0 14px;
  color: #ef4136;
  font-size: 16px;
  line-height: 28px;
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0;
}

.comparison .section-heading h2 {
  font-size: clamp(2.4rem, 5vw, 3.5625rem);
  line-height: 1.12;
  margin-bottom: 14px;
}

.service-grid,
.benefit-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-grid article,
.benefit-grid article {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: 26px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(1, 38, 54, 0.07);
}

.service-grid article {
  min-height: 230px;
}

.benefit-grid article {
  min-height: 210px;
}

.service-grid article::before,
.benefit-grid article::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0;
  transition: opacity 200ms ease;
  pointer-events: none;
}

.service-grid article::before {
  background: linear-gradient(132.3deg, rgba(239, 63, 54, 0.25) 0.08%, rgba(239, 63, 54, 0) 48.08%);
}

.benefit-grid article::before {
  background: linear-gradient(111.9deg, rgba(239, 63, 54, 0.25) 0%, rgba(255, 255, 255, 0.25) 48%);
}

.service-grid article:hover,
.service-grid article.is-expanded,
.benefit-grid article:hover {
  box-shadow: 0 24px 54px rgba(1, 38, 54, 0.14);
  transform: translateY(-4px);
}

.service-grid article:hover,
.service-grid article.is-expanded {
  border-color: rgba(239, 63, 54, 0.36);
}

.benefit-grid article:hover {
  border-color: rgba(239, 63, 54, 0.36);
}

.service-grid article:hover::before,
.service-grid article.is-expanded::before,
.benefit-grid article:hover::before {
  opacity: 1;
}

.service-card {
  cursor: pointer;
}

.service-card .card-detail {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 260ms ease, margin-top 260ms ease;
}

.service-card .card-detail > p {
  overflow: hidden;
  margin: 0;
  color: rgba(14, 23, 27, 0.8);
}

.service-card.is-expanded .card-detail {
  grid-template-rows: 1fr;
  margin-top: 16px;
}

.service-grid span {
  display: inline-block;
  margin-bottom: 28px;
  color: var(--red);
  font-weight: 800;
}

.service-grid p,
.benefit-grid span,
.contact-copy p,
.contact-meta p {
  color: rgba(14, 23, 27, 0.72);
}

.compare-switch {
  max-width: 620px;
  margin: -34px auto 34px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.64);
  border: 1px solid rgba(1, 71, 102, 0.14);
  border-radius: 8px;
}

.compare-tab {
  min-height: 42px;
  border: 0;
  border-radius: 7px;
  color: rgba(14, 23, 27, 0.7);
  background: transparent;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.compare-tab:hover,
.compare-tab.active {
  color: #fff;
  background: var(--deep);
  box-shadow: 0 10px 26px rgba(1, 71, 102, 0.18);
}

.publishing-console {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(220px, 0.68fr) minmax(520px, 1.32fr);
  gap: 18px;
  align-items: stretch;
}

.console-panel,
.signal-stack {
  border: 1px solid rgba(14, 23, 27, 0.12);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(1, 38, 54, 0.07);
}

.console-panel {
  position: relative;
  overflow: hidden;
  padding: 26px;
}

.console-panel p {
  position: relative;
  margin: 0 0 6px;
  color: var(--red);
  font-size: 16px;
  line-height: 28px;
  font-weight: 700;
}

.console-panel strong {
  position: relative;
  display: block;
  color: #003c61;
  font-size: 22px;
  line-height: 28px;
  font-weight: 700;
}

.readiness-ring {
  position: relative;
  width: 132px;
  aspect-ratio: 1;
  margin: 24px auto 0;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background:
    radial-gradient(circle closest-side at center, #fff 0 49%, transparent 50%),
    conic-gradient(from 180deg at 50% 50%, var(--red), var(--gold), var(--aqua), var(--blue), var(--red));
  box-shadow: inset 0 0 0 1px rgba(1, 71, 102, 0.1), 0 20px 50px rgba(1, 71, 102, 0.2);
  animation: ringSweep 9s linear infinite;
}

.readiness-ring span {
  color: var(--deep);
  font-size: 1.45rem;
  font-weight: 900;
  animation: ringText 9s linear infinite;
}

.readiness-content {
  position: relative;
  margin-top: 22px;
  display: grid;
  gap: 14px;
}

.readiness-metric {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 46px;
  gap: 8px 10px;
  align-items: center;
}

.readiness-metric span {
  color: rgba(14, 23, 27, 0.72);
  font-size: 16px;
  line-height: 28px;
  font-weight: 700;
}

.readiness-metric b {
  grid-column: 1;
  height: 7px;
  border-radius: 999px;
  background:
    linear-gradient(90deg, var(--red), var(--gold), var(--aqua)) 0 / var(--score) 100% no-repeat,
    rgba(1, 71, 102, 0.12);
  overflow: hidden;
}

.readiness-metric em {
  grid-column: 2;
  grid-row: 1 / span 2;
  color: rgba(14, 23, 27, 0.72);
  font-size: 16px;
  line-height: 16px;
  font-style: normal;
  font-weight: 700;
  text-align: right;
}

.readiness-list {
  margin: 6px 0 0;
  padding: 14px 0 0;
  border-top: 2px solid rgba(1, 71, 102, 0.12);
  list-style: none;
}

.readiness-list li {
  position: relative;
  padding-left: 24px;
  color: rgba(14, 23, 27, 0.72);
  font-size: 14px;
  line-height: 24px;
  font-weight: 500;
}

.readiness-list li + li {
  margin-top: 8px;
}

.readiness-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 12px;
  height: 12px;
  background: var(--red);
  transform: rotate(45deg);
}

@keyframes ringSweep {
  to {
    transform: rotate(360deg);
  }
}

@keyframes ringText {
  to {
    transform: rotate(-360deg);
  }
}

.signal-stack {
  position: relative;
  padding: 12px;
  overflow: hidden;
}

.signal-row {
  position: relative;
  width: 100%;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 16px;
  align-items: flex-start;
  padding: 18px;
  border: 1px solid rgba(14, 23, 27, 0.12);
  border-radius: 8px;
  background: #ffffff;
  color: var(--ink);
  text-align: left;
  font: inherit;
  cursor: pointer;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.signal-row + .signal-row {
  margin-top: 14px;
}

.signal-row:hover,
.signal-row.active {
  background: #fff;
  box-shadow: 0 14px 32px rgba(1, 38, 54, 0.12);
}

.signal-index {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  color: #ffffff;
  background: #003c61;
  font-size: 16px;
  line-height: 28px;
  font-weight: 700;
  transition: background 180ms ease, box-shadow 180ms ease;
}

.signal-row.active .signal-index {
  background: #ef3f36;
  box-shadow: 0 0 0 6px rgba(239, 63, 54, 0.12);
}

.signal-row strong {
  display: block;
  color: #003c61;
  font-size: 17px;
  line-height: 22px;
  font-weight: 700;
}

.signal-row em,
.signal-risk em {
  display: block;
  margin-top: 6px;
  color: rgba(14, 23, 27, 0.72);
  font-style: normal;
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
}

.signal-row b {
  align-self: start;
  padding: 5px 8px;
  border-radius: 999px;
  color: #003c61;
  background: #e2edff;
  font-size: 11px;
  line-height: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.signal-risk {
  grid-column: 1 / -1;
  margin-top: 2px;
  padding: 0 0 0 4px;
  border-radius: 7px;
  background: var(--red);
}

.signal-risk > * {
  display: block;
}

.signal-risk {
  display: block;
}

.signal-risk small,
.signal-risk strong,
.signal-risk em {
  padding-left: 16px;
  padding-right: 16px;
  background: #fbfcfb;
}

.signal-risk small {
  padding-top: 14px;
  color: var(--red);
  font-size: 11px;
  line-height: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
  border-right: 1px solid rgba(0, 0, 0, 0.12);
  border-top-right-radius: 7px;
}

.signal-risk strong {
  color: #003c61;
  font-size: 16px;
  line-height: 28px;
  font-weight: 700;
  border-right: 1px solid rgba(0, 0, 0, 0.12);
}

.signal-risk em {
  margin-top: 0;
  padding-bottom: 14px;
  color: rgba(14, 23, 27, 0.68);
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  border-right: 1px solid rgba(0, 0, 0, 0.12);
  border-bottom-right-radius: 7px;
}

.comparison.reveal-section {
  opacity: 1;
  transform: none;
}

.comparison-grid.show-without [data-compare-panel="with"],
.comparison-grid.show-with [data-compare-panel="without"] {
  display: none;
}

.comparison-grid.show-without,
.comparison-grid.show-with {
  grid-template-columns: minmax(0, 680px);
  justify-content: center;
}

.comparison-grid {
  max-width: 1040px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.compare-column {
  padding: clamp(24px, 4vw, 42px);
  border-radius: 8px;
}

.compare-column.muted {
  background: rgba(255, 255, 255, 0.56);
  border: 1px solid rgba(1, 71, 102, 0.12);
}

.compare-column.strong {
  color: #fff;
  background: var(--deep);
  box-shadow: var(--shadow);
}

.compare-column.strong h3 {
  color: #fff;
}

.compare-column.strong li::before {
  background: var(--gold);
}

.compare-column ul,
.studio-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.compare-column li + li,
.studio-list li + li {
  margin-top: 14px;
}

.benefit-grid article p {
  margin: 0 0 4px;
  color: #ef4136;
  font-size: 12px;
  line-height: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.benefit-grid article h3 {
  margin: 0 0 6px;
  color: #003c61;
  font-size: 18px;
  line-height: 24px;
  font-weight: 700;
}

.benefit-grid article span {
  display: block;
  color: rgba(14, 23, 27, 0.72);
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
}

.process {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(41.85% 62.44% at 24.65% 31.8%, rgba(0, 107, 173, 0.128) 0%, rgba(0, 107, 173, 0) 100%),
    linear-gradient(114.72deg, #003c61 0.01%, #001c2d 100.01%);
  color: rgba(255, 255, 255, 0.78);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 62px;
}

.process h2,
.process h3 {
  color: #fff;
}

.process .section-heading .section-kicker {
  margin: 0 0 14px;
  color: #ef4136;
  font-size: 16px;
  line-height: 28px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.process .section-heading h2 {
  font-size: clamp(2.4rem, 5vw, 3.5625rem);
  line-height: 1.12;
  margin-bottom: 0;
}

.process .section-heading {
  width: 100%;
  margin-bottom: 0;
}

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

.process-stage {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}

.stage-card {
  width: min(420px, 100%);
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(1, 24, 35, 0.58);
  box-shadow: 0 14px 34px rgba(1, 38, 54, 0.07);
  backdrop-filter: blur(14px);
}

.stage-card p {
  margin: 0 0 8px;
  color: var(--gold);
  font-size: 12px;
  line-height: 18px;
  font-weight: 700;
  text-transform: uppercase;
}

.stage-card strong {
  display: block;
  color: #fff;
  font-size: 22px;
  line-height: 28px;
  font-weight: 700;
}

.stage-card span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
}

.timeline {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  position: relative;
}

.timeline::before,
.timeline::after {
  content: "";
  position: absolute;
  top: -1px;
  left: var(--timeline-line-left, 0px);
  width: var(--timeline-line-size, 0px);
  height: 2px;
  transition: left 260ms ease, width 260ms ease, height 260ms ease;
}

.timeline::before {
  width: var(--timeline-line-track, 100%);
  background: rgba(255, 255, 255, 0.2);
}

.timeline::after {
  background: linear-gradient(90deg, var(--gold), var(--red));
}

.timeline li {
  position: relative;
  padding: 34px 20px 16px 0;
  cursor: pointer;
  border-radius: 8px;
  transition: background 180ms ease, transform 180ms ease, padding-inline 180ms ease;
}

.timeline-step,
.timeline-step.is-visible {
  transform: none;
}

.timeline li:hover,
.timeline li:focus-visible {
  background: rgba(255, 255, 255, 0.06);
  outline: 0;
}

.timeline li::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 0;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 8px rgba(239, 63, 54, 0.22), 0 0 24px rgba(239, 63, 54, 0.56);
}

.timeline li h3 {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 18px;
  line-height: 24px;
  font-weight: 700;
}

.timeline li p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
}

.timeline span {
  display: block;
  margin-bottom: 16px;
  color: var(--gold);
  font-size: 16px;
  line-height: 28px;
  font-weight: 700;
}

.timeline li:not(.is-current)::before {
  background: #ffffff;
  box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.18);
}

.timeline li:not(.is-current) h3,
.timeline li:not(.is-current) span {
  color: #ffffff;
}

.studios-layout {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 62px;
}

.studios-layout > div:first-child {
  width: 100%;
  max-width: 850px;
  text-align: center;
}

.studio-matrix {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  position: relative;
}

.studio-card {
  position: relative;
  min-height: 190px;
  padding: 24px;
  border: 1px solid rgba(1, 17, 102, 0.14);
  border-radius: 8px;
  background: linear-gradient(111.4deg, rgba(255, 255, 255, 0.0576) 0.04%, rgba(239, 63, 54, 0.06) 100.04%), #FBFCFB;
  box-shadow: 0 16px 40px rgba(1, 38, 54, 0.08);
  overflow: hidden;
}

.studio-card::before {
  content: "";
  position: absolute;
  top: 18px;
  right: 18px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--red);
  border: 1px solid rgba(1, 17, 102, 0.14);
  box-shadow: 0 0 0 7px rgba(239, 63, 54, 0.12);
}

.studio-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--red), var(--gold), var(--aqua));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}

.studio-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 56px rgba(1, 38, 54, 0.14);
}

.studio-card:hover::after {
  transform: scaleX(1);
}

.studio-card span {
  display: block;
  margin-bottom: 20px;
  color: var(--red);
  font-size: 12px;
  line-height: 20px;
  font-weight: 700;
  text-transform: uppercase;
  text-align: left;
}

.studio-card h3 {
  margin: 0 0 10px;
  color: #003C61;
  font-size: 18px;
  line-height: 24px;
  font-weight: 700;
}

.studio-card p {
  margin: 0;
  color: rgba(14, 23, 27, 0.72);
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
}

.studio-list {
  columns: 2;
  column-gap: 42px;
}

.studio-list li {
  break-inside: avoid;
  margin-bottom: 14px;
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
}

details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(1, 38, 54, 0.1);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

details[open],
details:hover {
  border-color: rgba(1, 104, 136, 0.28);
  box-shadow: 0 18px 44px rgba(1, 38, 54, 0.1);
}

details + details {
  margin-top: 10px;
}

summary {
  padding: 22px 56px 22px 22px;
  color: var(--deep);
  font-size: 16px;
  line-height: 28px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  position: relative;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 19px;
  color: var(--red);
  font-size: 1.5rem;
  line-height: 1;
  transition: transform 180ms ease;
}

details[open] summary::after {
  content: "-";
  transform: rotate(180deg);
}

details p {
  margin: 0;
  padding: 0 22px 24px;
  color: rgba(14, 23, 27, 0.72);
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
  animation: faqIn 220ms ease;
}

@keyframes faqIn {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.contact {
  background: linear-gradient(144.53deg, #003C61 0.01%, #001C2D 100.01%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 62px;
}

.contact-copy {
  width: 100%;
  max-width: 850px;
  text-align: center;
}

.contact-copy .section-kicker {
  margin: 0 0 14px;
  color: #EF4136;
  font-size: 16px;
  line-height: 28px;
  font-weight: 700;
  text-transform: uppercase;
}

.contact-copy h2 {
  margin: 0;
  color: #FFFFFF;
  font-size: clamp(2.4rem, 5vw, 3.5625rem);
  line-height: 1.12;
  text-align: center;
}

.contact-copy > p:not(.section-kicker) {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
  text-align: center;
}

.contact-meta {
  display: none;
}

.contact-form {
  width: 100%;
  max-width: 898px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 38px;
  background: #FFFFFF;
  border: 1px solid rgba(14, 23, 27, 0.12);
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(1, 38, 54, 0.2);
}

.single-form {
  align-content: start;
}

.form-group {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 0;
  padding: 36px 18px 18px;
  border: 1px solid rgba(0, 60, 97, 0.5);
  border-radius: 8px;
  background: #FBFCFB;
}

.full-form-group {
  grid-template-columns: 1fr;
}

.form-group legend {
  padding: 0 8px;
  color: #EF4136;
  font-size: 12px;
  line-height: 20px;
  font-weight: 700;
  text-transform: uppercase;
}

.form-progress {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 6px;
}

.form-dot {
  height: 5px;
  border-radius: 999px;
  background: rgba(1, 71, 102, 0.14);
  overflow: hidden;
}

.form-dot::before {
  content: "";
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--red), var(--gold));
  transition: width 240ms ease;
}

.form-dot.active::before {
  width: 100%;
}

.form-step {
  grid-column: 1 / -1;
  display: none;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 0;
  padding: 0;
  border: 0;
  animation: formStepIn 240ms ease;
}

.form-step.active {
  display: grid;
}

@keyframes formStepIn {
  from {
    opacity: 0;
    transform: translateX(12px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

label {
  display: grid;
  gap: 8px;
  color: #003C61;
  font-size: 14px;
  line-height: 22px;
  font-weight: 700;
}

.contact-form label span {
  min-height: auto;
  display: block;
}

input,
select,
textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 13px;
  border: 1px solid rgba(0, 60, 97, 0.42);
  border-radius: 8px;
  color: var(--ink);
  background: #FFFFFF;
  font: inherit;
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

input:hover,
select:hover,
textarea:hover {
  border-color: rgba(0, 60, 97, 0.7);
}

.contact-form select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='none' stroke='%23003C61' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round' d='M1 1.5l5 5 5-5'/></svg>");
  background-repeat: no-repeat;
  background-position: right 20px center;
  padding-right: 44px;
}

.custom-select {
  position: relative;
  width: 100%;
}

.custom-select-native {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  opacity: 0;
  pointer-events: none;
}

.custom-select-trigger {
  width: 100%;
  min-height: 50px;
  padding: 12px 16px 12px 13px;
  border: 1px solid rgba(0, 60, 97, 0.42);
  border-radius: 8px;
  background: #FFFFFF;
  color: var(--ink);
  font: inherit;
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.custom-select-trigger:hover {
  border-color: rgba(0, 60, 97, 0.7);
}

.custom-select-trigger:focus-visible {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(239, 63, 54, 0.18);
}

.custom-select-value {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.custom-select-value[data-placeholder="true"] {
  color: rgba(14, 23, 27, 0.5);
}

.custom-select-chevron {
  flex: none;
  color: #003C61;
  transition: transform 180ms ease;
}

.custom-select[data-open="true"] .custom-select-chevron {
  transform: rotate(180deg);
}

.custom-select-panel {
  position: absolute;
  z-index: 20;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  max-height: 260px;
  margin: 0;
  padding: 6px;
  overflow-y: auto;
  list-style: none;
  background: #FFFFFF;
  border: 1px solid rgba(0, 60, 97, 0.2);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(1, 38, 54, 0.16);
}

.custom-select-option {
  padding: 10px 12px;
  border-radius: 6px;
  color: var(--ink);
  font-size: 15px;
  line-height: 22px;
  font-weight: 500;
  cursor: pointer;
  user-select: none;
}

.custom-select-option[data-placeholder="true"] {
  color: rgba(14, 23, 27, 0.5);
}

.custom-select-option.is-active {
  background: rgba(0, 60, 97, 0.08);
}

.custom-select-option[aria-selected="true"] {
  color: var(--red);
  font-weight: 700;
}

textarea {
  resize: vertical;
  min-height: 132px;
}

.wide {
  grid-column: 1 / -1;
}

.form-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.form-actions.wide {
  grid-column: unset;
}

.contact-form .button {
  border: 0;
  font: inherit;
  font-weight: 800;
}

.form-back,
.form-submit {
  display: none;
}

.single-form .form-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  min-width: 217px;
  padding: 13px 22px;
  background: #EF4136;
  color: #FFFFFF;
  font-size: 16px;
  line-height: 26px;
  font-weight: 700;
  border: 0;
  border-radius: 8px;
}

.contact-form .form-back {
  color: var(--deep);
  background: #fff;
  border: 1px solid rgba(1, 71, 102, 0.24);
}

.contact-form .form-back:hover {
  background: var(--mist);
}

.contact-form[data-step="1"] .form-back,
.contact-form[data-step="2"] .form-back,
.contact-form[data-step="2"] .form-submit {
  display: inline-flex;
}

.contact-form[data-step="2"] .form-next {
  display: none;
}

.site-footer {
  display: flex;
  justify-content: center;
  padding: 34px clamp(20px, 6vw, 72px);
  background: linear-gradient(0deg, rgba(239, 63, 54, 0) 0%, rgba(239, 63, 54, 0.5) 100%), #003C61;
  border-top: 1px solid #EF3F36;
}

.footer-content {
  width: 100%;
  max-width: 1296px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-logo-row img {
  width: 217.83px;
  height: 68px;
  filter: url(#whiten-keep-red);
}

.footer-bottom-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 0 15px 8px 0;
}

.footer-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0 0 8px 15px;
}

.footer-contact p {
  margin: 0;
  color: #FFFFFF;
  font-size: 16px;
  line-height: 26px;
  font-weight: 700;
}

.footer-address {
  margin: 0;
  padding: 0;
  color: #FFFFFF;
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
  font-style: normal;
  text-align: left;
  width: 206px;
}

.footer-address strong {
  font-weight: 700;
}

.footer-divider {
  height: 1px;
  width: 100%;
  background: rgba(255, 255, 255, 0.2);
}

.footer-legal {
  padding: 8px 15px 0;
  display: flex;
  justify-content: center;
}

.footer-legal p {
  margin: 0;
  max-width: 744px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  text-align: center;
}


@media (max-width: 1024px) {
  .hero {
    padding: 0 61.44px;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(1, 18, 24, 0.2) 0%, rgba(1, 18, 24, 0.68) 100%),
      linear-gradient(90deg, rgba(0, 28, 45, 0.94) 0%, rgba(0, 40, 66, 0.62) 44%, rgba(0, 28, 45, 0) 62%);
  }

  .hero-content {
    max-width: 450.56px;
    margin-right: auto;
  }

  .hero-signal {
    width: 100%;
    max-width: 439px;
    flex-wrap: nowrap;
    gap: 0.25em;
    white-space: nowrap;
  }

  .hero-content h1 {
    max-width: 450.56px;
    font-size: 54px;
    line-height: 60px;
  }

  .hero-copy {
    max-width: 450.56px;
  }
}

@media (max-width: 980px) {
  .site-header {
    height: 70px;
  }

  .brand {
    width: 178px;
  }

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

  .site-nav {
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0;
    background: #FBFCFB;
    border: 0;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 14px 36px rgba(1, 38, 54, 0.12);
    transform: translateY(-8px);
    opacity: 0;
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-nav.is-open {
    display: flex;
    transform: translateY(0);
    opacity: 1;
  }

  .site-nav a,
  .site-nav a:nth-child(1),
  .site-nav a:nth-child(2),
  .site-nav a:nth-child(3),
  .site-nav a:nth-child(4),
  .site-nav a:nth-child(5) {
    width: auto;
  }

  .site-nav a {
    padding: 14px 36px;
    height: 54px;
    display: flex;
    align-items: center;
    font-size: 16px;
    line-height: 26px;
    border-bottom: 0;
    text-align: left;
  }

  .site-nav a:hover,
  .site-nav a.active,
  .site-nav a.nav-cta.active {
    background: #003C61;
    color: #FFFFFF;
    border-bottom-color: transparent;
  }

  .section-grid,
  .comparison-grid,
  .publishing-console,
  .strategy-band {
    grid-template-columns: 1fr;
  }

  .strategy-map {
    min-height: 180px;
  }

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

  .timeline {
    grid-template-columns: 1fr;
    border-top: 0;
    border-left: 0;
  }

  .timeline::before,
  .timeline::after {
    top: var(--timeline-line-left, 0px);
    left: -1px;
    width: 2px;
    height: var(--timeline-line-size, 0px);
  }

  .timeline::before {
    height: var(--timeline-line-track, 100%);
  }

  .timeline li {
    padding: 0 0 30px 34px;
  }

  .timeline li::before {
    top: 4px;
    left: -8px;
  }

  .contact-copy {
    position: static;
  }

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

  .readiness-ring {
    margin-inline: 0;
  }

  .publishing-console {
    max-width: 720px;
  }

  .readiness-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 18px;
    align-items: center;
  }

  .readiness-ring {
    width: 118px;
    margin-top: 0;
  }

  .process-stage {
    justify-content: flex-start;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: min(1024px, 100vh);
    padding: 100px 46px 38px;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(1, 18, 24, 0.2) 0%, rgba(1, 18, 24, 0.72) 100%),
      linear-gradient(90deg, rgba(0, 28, 45, 0.92) 0%, rgba(0, 60, 97, 0.78) 38%, rgba(0, 28, 45, 0.28) 76%);
  }

  .hero-screens {
    opacity: 0.52;
  }

  .hero-content {
    max-width: 676px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 44px;
    align-items: center;
    text-align: center;
  }

  .hero-signal {
    width: 439px;
    max-width: 100%;
    align-self: center;
    flex-wrap: nowrap;
    gap: 0.25em;
    white-space: nowrap;
  }

  .hero-content h1 {
    width: 100%;
    max-width: 588px;
    align-self: center;
    font-size: 42px;
    line-height: 47px;
    text-align: center;
  }

  .hero-copy {
    width: 100%;
    max-width: 588px;
    align-self: center;
    text-align: center;
  }

  .hero-actions {
    align-self: center;
    justify-content: center;
  }

  .comparison .section-heading .section-kicker {
    text-transform: uppercase;
  }

  .comparison .section-heading h2 {
    font-size: 36px;
    line-height: 44px;
  }

  .readiness-panel {
    grid-template-columns: 1fr;
    padding: 26px;
    gap: 16px;
    text-align: center;
    min-height: 0;
  }

  .console-panel p,
  .console-panel strong {
    text-align: center;
  }

  .readiness-ring {
    position: relative;
    right: auto;
    bottom: auto;
    width: 183px;
    margin: 0 auto;
    opacity: 1;
  }

  .readiness-content {
    margin-top: 0;
    text-align: left;
  }

  .readiness-metric span,
  .readiness-metric em {
    text-align: left;
  }

  .readiness-metric em {
    text-align: right;
  }

  .readiness-list li {
    text-align: left;
  }

  .process .section-heading h2 {
    font-size: 36px;
    line-height: 44px;
  }

  .process .section-heading .section-kicker {
    letter-spacing: 0;
  }

  .process-stage {
    justify-content: center;
  }
}

@media (max-width: 680px) {
  body {
    font-size: 15px;
  }

  .site-header {
    padding-inline: 16px;
  }

  .hero {
    min-height: 86vh;
    padding-inline: 18px;
  }

  h1 {
    font-size: clamp(2.65rem, 12vw, 3.5rem);
  }

  h2 {
    font-size: clamp(2rem, 11vw, 3rem);
  }

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

  .hero-screens {
    opacity: 0.28;
  }

  .screen-main {
    right: -4%;
    top: 25%;
    width: 48%;
    height: 15%;
  }

  .screen-side,
  .screen-low {
    display: none;
  }

  .button {
    width: 100%;
  }

  .intro-list,
  .service-grid,
  .benefit-grid,
  .form-step,
  .form-group,
  .studio-matrix {
    grid-template-columns: 1fr;
  }

  .intro-list {
    grid-template-rows: none;
    grid-auto-flow: row;
    justify-content: start;
    justify-items: start;
    column-gap: 0;
    row-gap: 14px;
    max-width: 293.31px;
    margin: 0 auto;
  }

  .intro {
    padding: 64px 26px;
  }

  .intro-inner {
    max-width: 373px;
    padding: 0;
    gap: 36px;
  }

  .strategy-band {
    padding: 64px 26px;
  }

  .strategy-inner {
    max-width: 373px;
    padding: 0;
    gap: 36px;
  }

  .strategy-copy .section-kicker {
    font-size: 12px;
    line-height: 17px;
  }

  .strategy-copy h2 {
    font-size: 24px;
    line-height: 30px;
  }

  .strategy-copy p:not(.section-kicker) {
    font-size: 14px;
    line-height: 21px;
  }

  .strategy-map {
    max-width: 373px;
  }

  .intro-head .section-kicker {
    font-size: 12px;
    line-height: 17px;
  }

  .section-heading {
    max-width: 373px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 36px;
  }

  .section-heading .section-kicker {
    margin-bottom: 14px;
    font-size: 12px;
    line-height: 17px;
  }

  .section-heading h2 {
    margin-bottom: 14px;
    font-size: 24px;
    line-height: 30px;
  }

  .section-heading p:not(.section-kicker) {
    font-size: 14px;
    line-height: 21px;
  }

  #services.content-section {
    padding: 64px 26px;
  }

  .service-grid {
    max-width: 373px;
    gap: 18px;
  }

  .service-grid article {
    min-height: 0;
    padding: 26px;
  }

  .service-grid span {
    margin-bottom: 16px;
    font-size: 16px;
    line-height: 28px;
    font-weight: 700;
  }

  .service-grid article h3 {
    margin-bottom: 16px;
    font-size: 18px;
    line-height: 24px;
    font-weight: 700;
  }

  .service-grid article p {
    font-size: 14px;
    line-height: 21px;
    font-weight: 500;
  }

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

  .form-actions {
    flex-direction: column-reverse;
  }

  .signal-row {
    grid-template-columns: auto minmax(0, 1fr);
    min-height: auto;
    gap: 14px;
    padding: 16px;
  }

  .comparison.band {
    padding: 64px 26px;
  }

  .comparison.reveal-section {
    opacity: 1;
    transform: none;
  }

  .comparison .section-heading {
    margin-bottom: 36px;
  }

  .comparison .section-heading .section-kicker {
    font-size: 12px;
    line-height: 17px;
  }

  .comparison .section-heading h2 {
    font-size: 24px;
    line-height: 30px;
  }

  .publishing-console {
    max-width: 373px;
    gap: 18px;
    grid-template-columns: 1fr;
  }

  .readiness-panel {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 26px;
    gap: 26px;
  }

  .console-panel p {
    font-size: 12px;
    line-height: 17px;
    text-align: center;
  }

  .console-panel strong {
    font-size: 18px;
    line-height: 24px;
    text-align: center;
  }

  .readiness-ring {
    position: relative;
    right: auto;
    bottom: auto;
    width: 183px;
    opacity: 1;
    margin: 0 auto;
  }

  .readiness-content {
    margin-top: 18px;
  }

  .readiness-metric span {
    font-size: 12px;
    line-height: 17px;
  }

  .readiness-metric em {
    font-size: 14px;
    line-height: 14px;
  }

  .readiness-list li {
    padding-left: 18px;
    font-size: 14px;
    line-height: 24px;
  }

  .readiness-list li::before {
    top: 8px;
    width: 8px;
    height: 8px;
  }

  .signal-stack {
    padding: 12px;
  }

  .signal-row {
    padding: 18px;
    gap: 16px;
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "index badge"
      "content content"
      "risk risk";
    align-items: center;
  }

  .signal-row > .signal-index {
    grid-area: index;
    width: 42px;
    height: 42px;
    font-size: 16px;
    line-height: 28px;
  }

  .signal-row > span:not(.signal-index):not(.signal-risk) {
    grid-area: content;
  }

  .signal-row > b {
    grid-area: badge;
    justify-self: end;
    align-self: center;
    margin-top: 0;
  }

  .signal-row > .signal-risk {
    grid-area: risk;
  }

  .signal-row + .signal-row {
    margin-top: 14px;
  }

  .signal-row strong {
    font-size: 16px;
    line-height: 24px;
  }

  .signal-row em {
    margin-top: 6px;
    font-size: 14px;
    line-height: 21px;
  }

  .signal-risk em {
    margin-top: 0;
    line-height: 20px;
  }

  .console-panel {
    padding: 26px;
  }

  .benefit-section.content-section {
    padding: 64px 26px;
  }

  .benefit-grid {
    max-width: 373px;
    gap: 18px;
  }

  .benefit-grid article {
    min-height: 0;
    padding: 26px;
  }

  .benefit-grid article p {
    margin-bottom: 10px;
    font-size: 12px;
    line-height: 20px;
  }

  .benefit-grid article h3 {
    margin-bottom: 10px;
    font-size: 18px;
    line-height: 24px;
  }

  .benefit-grid article span {
    font-size: 14px;
    line-height: 21px;
  }

  .risk-panel {
    display: grid;
    gap: 4px;
  }

  .process.band {
    padding: 64px 26px;
    gap: 36px;
  }

  .process .section-heading {
    max-width: 373px;
  }

  .process .section-heading .section-kicker {
    margin-bottom: 14px;
    font-size: 12px;
    line-height: 17px;
  }

  .process .section-heading h2 {
    font-size: 24px;
    line-height: 30px;
  }

  .timeline {
    max-width: 373px;
  }

  .timeline li p {
    font-size: 14px;
    line-height: 21px;
  }

  .process-stage {
    max-width: 373px;
    margin-bottom: 26px;
    justify-content: center;
  }

  .stage-card {
    width: 100%;
    padding: 22px;
  }

  .stage-card strong {
    font-size: 18px;
    line-height: 24px;
  }

  .stage-card span {
    font-size: 14px;
    line-height: 21px;
  }

  .studios.content-section {
    padding: 64px 26px;
  }

  .studios-layout {
    max-width: 373px;
    gap: 36px;
  }

  .studios h2 {
    font-size: 24px;
    line-height: 30px;
  }

  .studios .studios-layout > div > .section-kicker {
    font-size: 12px;
    line-height: 17px;
  }

  .studios .studios-layout > div > p:not(.section-kicker) {
    margin-top: 14px;
    font-size: 14px;
    line-height: 21px;
  }

  .studio-matrix {
    gap: 18px;
  }

  .studio-card {
    min-height: 190px;
    padding: 24px;
  }

  .studio-card span {
    margin-bottom: 20px;
    font-size: 12px;
    line-height: 20px;
  }

  .studio-card h3 {
    font-size: 18px;
    line-height: 24px;
  }

  .studio-card p {
    font-size: 16px;
    line-height: 26px;
  }

  .contact.content-section {
    padding: 64px 26px;
    gap: 36px;
  }

  .contact-copy {
    max-width: 373px;
  }

  .contact-copy .section-kicker {
    margin-bottom: 14px;
    font-size: 12px;
    line-height: 17px;
  }

  .contact-copy h2 {
    font-size: 24px;
    line-height: 30px;
  }

  .contact-copy > p:not(.section-kicker) {
    font-size: 14px;
    line-height: 21px;
  }

  .contact-form {
    max-width: 373px;
    padding: 24px 22px;
    gap: 16px;
  }

  .form-group {
    padding: 18px;
    gap: 16px;
  }

  .contact-form label span {
    font-size: 14px;
    line-height: 22px;
  }

  .single-form .form-submit {
    width: 100%;
    min-width: 0;
    height: 52px;
    padding: 13px 22px;
    font-size: 16px;
    line-height: 26px;
  }

  .contact-form label span {
    min-height: 0;
  }

  .studio-list {
    columns: 1;
  }

  .site-footer {
    padding: 34px 51.2px;
  }

  .footer-content {
    max-width: 921.6px;
  }
}

@media (max-width: 768px) {
  .site-footer {
    padding: 36px;
  }

  .footer-content {
    max-width: 696px;
  }

  .footer-legal p {
    max-width: 666px;
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: min(1024px, 100vh);
    padding-inline: 0;
    padding-bottom: 80px;
  }

  .hero-content {
    max-width: 100%;
    padding: 0 26px;
    align-items: center;
    margin: 0 auto;
  }

  .hero-signal {
    width: 336px;
    max-width: 100%;
    height: auto;
    min-height: 35px;
    padding: 9px 13px;
    margin: 0 0 14px;
    justify-content: center;
    flex-wrap: wrap;
    text-align: center;
    white-space: normal;
    font-size: 12px;
    line-height: 17px;
  }

  .hero-content h1 {
    width: 100%;
    max-width: 373px;
    margin: 0 0 22px;
    font-size: 32px;
    line-height: 38px;
    text-align: center;
  }

  .hero-copy {
    width: 100%;
    max-width: 373px;
    font-size: 14px;
    line-height: 21px;
    text-align: center;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    width: 100%;
    max-width: 373px;
    padding-top: 30px;
  }

  .hero-actions .button {
    width: 100%;
    height: 47px;
    min-height: 47px;
    padding: 13px 22px;
    font-size: 14px;
    line-height: 21px;
  }
}

@media (max-width: 320px) {
  .hero {
    min-height: min(1024px, 100vh);
    padding-inline: 0;
    padding-bottom: 80px;
  }

  .hero-content {
    padding: 0 20px;
  }

  .hero-signal {
    width: 100%;
    max-width: 280px;
    height: auto;
    min-height: 52px;
    padding: 9px 13px;
    white-space: normal;
    text-align: center;
    font-size: 12px;
    line-height: 17px;
  }

  .hero-content h1 {
    max-width: 280px;
    font-size: 24px;
    line-height: 30px;
  }

  .hero-copy {
    max-width: 280px;
    font-size: 14px;
    line-height: 21px;
  }

  .hero-actions {
    width: 100%;
    max-width: 280px;
  }

  .hero-actions .button {
    height: 47px;
    min-height: 47px;
    font-size: 14px;
    line-height: 21px;
  }

  .intro {
    padding: 64px 26px;
  }

  .intro-inner {
    max-width: 373px;
    padding: 0;
    gap: 36px;
  }

  .intro-head {
    gap: 14px;
  }

  .intro-head .section-kicker {
    font-size: 12px;
    line-height: 17px;
  }

  .intro-head h2 {
    font-size: 22px;
    line-height: 28px;
  }

  .intro-list {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    grid-auto-flow: row;
    justify-content: start;
    justify-items: start;
    column-gap: 0;
    row-gap: 14px;
    max-width: 293.31px;
    margin: 0 auto;
  }

  .intro-list span {
    padding-left: 18px;
    font-size: 14px;
    line-height: 21px;
    white-space: normal;
  }

  .intro-list span::before {
    top: 6px;
    width: 8px;
    height: 8px;
  }

  .strategy-band {
    padding: 64px 26px;
  }

  .strategy-inner {
    max-width: 373px;
    padding: 0;
    gap: 36px;
  }

  .strategy-copy {
    gap: 14px;
  }

  .strategy-copy .section-kicker {
    font-size: 12px;
    line-height: 17px;
  }

  .strategy-copy h2 {
    font-size: 22px;
    line-height: 28px;
  }

  .strategy-copy p:not(.section-kicker) {
    font-size: 14px;
    line-height: 21px;
  }

  .strategy-map {
    max-width: 373px;
    height: 219px;
    min-height: 219px;
  }

  .map-marker:nth-of-type(1) { left: 16.1%; }
  .map-marker:nth-of-type(2) { left: 47.6%; }
  .map-marker:nth-of-type(3) { left: 81.5%; }

  .map-line {
    left: 16.1%;
    right: 18.5%;
  }

  .section-heading {
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 36px;
  }

  .section-heading .section-kicker {
    margin-bottom: 14px;
    font-size: 12px;
    line-height: 17px;
  }

  .section-heading h2 {
    margin-bottom: 14px;
    font-size: 22px;
    line-height: 28px;
  }

  .section-heading p:not(.section-kicker) {
    font-size: 14px;
    line-height: 21px;
  }

  #services.content-section {
    padding: 64px 20px;
  }

  .service-grid {
    max-width: 373px;
    gap: 18px;
  }

  .service-grid article {
    min-height: 0;
    padding: 26px;
  }

  .service-grid span {
    margin-bottom: 16px;
    font-size: 16px;
    line-height: 28px;
    font-weight: 700;
  }

  .service-grid article h3 {
    margin-bottom: 16px;
    font-size: 18px;
    line-height: 24px;
    font-weight: 700;
  }

  .service-grid article p {
    font-size: 14px;
    line-height: 21px;
    font-weight: 500;
  }

  .comparison.band {
    padding: 64px 20px;
  }

  .comparison .section-heading .section-kicker {
    font-size: 12px;
    line-height: 17px;
  }

  .comparison .section-heading h2 {
    font-size: 22px;
    line-height: 28px;
  }

  .publishing-console {
    max-width: 373px;
    gap: 18px;
  }

  .readiness-panel {
    padding: 26px;
    gap: 26px;
  }

  .console-panel p {
    font-size: 12px;
    line-height: 17px;
  }

  .console-panel strong {
    font-size: 18px;
    line-height: 24px;
  }

  .readiness-ring {
    width: 183px;
    margin: 0 auto;
  }

  .readiness-metric span {
    font-size: 12px;
    line-height: 17px;
  }

  .readiness-metric em {
    font-size: 14px;
    line-height: 14px;
  }

  .readiness-list li {
    padding-left: 18px;
    font-size: 14px;
    line-height: 24px;
  }

  .readiness-list li::before {
    top: 8px;
    width: 8px;
    height: 8px;
  }

  .signal-stack {
    padding: 12px;
  }

  .signal-row {
    padding: 18px;
    gap: 16px;
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "index badge"
      "content content"
      "risk risk";
    align-items: center;
  }

  .signal-row > .signal-index {
    grid-area: index;
  }

  .signal-row > span:not(.signal-index):not(.signal-risk) {
    grid-area: content;
  }

  .signal-row > b {
    grid-area: badge;
    justify-self: end;
    align-self: center;
    margin-top: 0;
  }

  .signal-row > .signal-risk {
    grid-area: risk;
  }

  .signal-row + .signal-row {
    margin-top: 14px;
  }

  .signal-index {
    width: 42px;
    height: 42px;
    font-size: 16px;
    line-height: 28px;
  }

  .signal-row strong {
    font-size: 16px;
    line-height: 24px;
  }

  .signal-row em {
    margin-top: 6px;
    font-size: 14px;
    line-height: 21px;
  }

  .signal-risk em {
    margin-top: 0;
    line-height: 20px;
  }

  .benefit-section.content-section {
    padding: 64px 20px;
  }

  .benefit-grid {
    max-width: 280px;
    gap: 18px;
  }

  .benefit-grid article {
    min-height: 0;
    padding: 26px;
  }

  .benefit-grid article p {
    margin-bottom: 10px;
    font-size: 12px;
    line-height: 20px;
  }

  .benefit-grid article h3 {
    margin-bottom: 10px;
    font-size: 18px;
    line-height: 24px;
  }

  .benefit-grid article span {
    font-size: 14px;
    line-height: 21px;
  }

  .process.band {
    padding: 64px 26px;
    gap: 36px;
  }

  .process .section-heading {
    max-width: 280px;
  }

  .process .section-heading .section-kicker {
    margin-bottom: 14px;
    font-size: 12px;
    line-height: 17px;
  }

  .process .section-heading h2 {
    font-size: 22px;
    line-height: 28px;
  }

  .timeline {
    max-width: 373px;
  }

  .timeline li p {
    font-size: 14px;
    line-height: 21px;
  }

  .process-stage {
    max-width: 373px;
    justify-content: center;
  }

  .stage-card {
    width: 100%;
    padding: 22px;
  }

  .stage-card strong {
    font-size: 18px;
    line-height: 24px;
  }

  .stage-card span {
    font-size: 14px;
    line-height: 21px;
  }

  .studios.content-section {
    padding: 64px 26px;
  }

  .studios-layout {
    max-width: 373px;
    gap: 36px;
  }

  .studios h2 {
    font-size: 22px;
    line-height: 28px;
  }

  .studios .studios-layout > div > .section-kicker {
    font-size: 12px;
    line-height: 17px;
  }

  .studios .studios-layout > div > p:not(.section-kicker) {
    margin-top: 14px;
    font-size: 14px;
    line-height: 21px;
  }

  .studio-matrix {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .studio-card {
    min-height: 190px;
    padding: 24px;
  }

  .studio-card span {
    margin-bottom: 20px;
    font-size: 12px;
    line-height: 20px;
  }

  .studio-card h3 {
    font-size: 18px;
    line-height: 24px;
  }

  .studio-card p {
    font-size: 14px;
    line-height: 21px;
  }

  .contact.content-section {
    padding: 64px 20px;
    gap: 36px;
  }

  .contact-copy {
    max-width: 280px;
  }

  .contact-copy .section-kicker {
    margin-bottom: 14px;
    font-size: 12px;
    line-height: 17px;
  }

  .contact-copy h2 {
    font-size: 22px;
    line-height: 28px;
  }

  .contact-copy > p:not(.section-kicker) {
    font-size: 14px;
    line-height: 21px;
  }

  .contact-form {
    max-width: 280px;
    padding: 20px 12px;
    gap: 16px;
  }

  .form-group {
    grid-template-columns: 1fr;
    padding: 16px;
    gap: 16px;
  }

  .contact-form label span {
    font-size: 14px;
    line-height: 22px;
  }

  .single-form .form-submit {
    width: 100%;
    min-width: 0;
    height: 52px;
    padding: 13px 22px;
    font-size: 16px;
    line-height: 26px;
  }

}

@media (max-width: 425px) {
  .site-footer {
    padding: 34px 26px;
    border-top-color: rgba(255, 255, 255, 0.4);
  }

  .footer-content {
    max-width: 373px;
    gap: 8px;
  }

  .footer-contact {
    gap: 8px;
    padding: 0;
  }

  .footer-contact p {
    font-size: 14px;
    line-height: 21px;
  }

  .footer-bottom-row {
    flex-direction: column;
    align-items: flex-start;
    padding: 0 15px 8px;
    gap: 24px;
  }

  .footer-address {
    width: auto;
    max-width: none;
    text-align: left;
    font-size: 14px;
    line-height: 21px;
  }

  .footer-legal {
    justify-content: flex-start;
    padding: 8px 15px 0;
  }

  .footer-legal p {
    max-width: 343px;
    text-align: left;
    font-size: 12px;
    line-height: 18px;
  }
}

@media (max-width: 320px) {
  .hero-content {
    padding: 0 20px;
    align-items: center;
  }

  .hero-signal {
    width: 100%;
    max-width: 280px;
    height: auto;
    padding: 9px 11px;
    flex-wrap: wrap;
    white-space: normal;
    text-align: center;
    font-size: 12px;
    line-height: 17px;
    margin: 0 0 14px;
  }

  .hero-content h1 {
    max-width: 280px;
    font-size: 24px;
    line-height: 30px;
    text-align: center;
  }

  .hero-copy {
    max-width: 280px;
    font-size: 14px;
    line-height: 21px;
    text-align: center;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    width: 100%;
    max-width: 280px;
    padding-top: 30px;
  }

  .hero-actions .button {
    width: 100%;
    height: 47px;
    min-height: 47px;
    padding: 13px 22px;
    font-size: 14px;
    line-height: 21px;
  }

  .site-footer {
    padding: 34px 20px;
  }

  .footer-content {
    max-width: 280px;
  }

  .footer-legal p {
    max-width: 250px;
  }
}
