:root {
  --ink: #162019;
  --muted: #5d665f;
  --paper: #fbfaf6;
  --soft: #eef2ed;
  --green: #1f6b49;
  --green-dark: #123f2c;
  --blue: #2e6f9f;
  --amber: #d99b2b;
  --coral: #dc6b5d;
  --line: rgba(22, 32, 25, 0.14);
  --shadow: 0 18px 50px rgba(22, 32, 25, 0.14);
  --radius: 8px;
  --header-height: 76px;
  --content-max: 1260px;
  --desktop-gutter: clamp(44px, 34vw, 660px);
  --page-bg: #000;
  --section-bg: #111;
  --section-gap: clamp(8px, 1vw, 16px);
  --panel-pad-x: clamp(28px, 3vw, 58px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family:
    "Microsoft YaHei",
    "PingFang SC",
    "Noto Sans CJK SC",
    Arial,
    sans-serif;
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

.container {
  width: min(var(--content-max), calc(100% - var(--desktop-gutter)));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  padding: 0 max(20px, calc((100vw - var(--content-max)) / 2), calc(var(--desktop-gutter) / 2));
  color: #fff;
  background: rgba(12, 34, 25, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  transition:
    background 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease;
}

.site-header.is-scrolled,
.site-header.nav-visible {
  color: var(--ink);
  background: rgba(251, 250, 246, 0.94);
  box-shadow: 0 8px 24px rgba(22, 32, 25, 0.08);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  overflow: hidden;
  background: #050505;
  border: 0;
  border-radius: 8px;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand strong,
.brand small {
  display: block;
  letter-spacing: 0;
}

.brand strong {
  font-size: 18px;
  line-height: 1.1;
}

.brand small {
  margin-top: 2px;
  font-size: 12px;
  color: currentColor;
  opacity: 0.72;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 15px;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 160ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  border-radius: 8px;
  color: inherit;
  background: transparent;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition:
    transform 160ms ease,
    opacity 160ms ease;
}

.nav-open .nav-toggle span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.nav-open .nav-toggle span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 540px;
  height: 86svh;
  max-height: 820px;
  overflow: hidden;
  color: #fff;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url("assets/hero-dashboard.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transform: scale(1.02);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(11, 33, 24, 0.92), rgba(11, 33, 24, 0.68) 45%, rgba(11, 33, 24, 0.2)),
    linear-gradient(180deg, rgba(11, 33, 24, 0.18), rgba(11, 33, 24, 0.44));
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding-top: var(--header-height);
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--amber);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
}

.hero h1 {
  margin: 0;
  font-size: 76px;
  line-height: 1.02;
  letter-spacing: 0;
}

.hero-copy {
  width: min(620px, 100%);
  margin: 22px 0 0;
  font-size: 22px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.9);
}

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

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

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

.button-primary {
  color: #fff;
  background: var(--green);
  border-color: var(--green);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--green-dark);
  border-color: var(--green-dark);
}

.button-ghost {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.5);
}

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

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(96px, 132px));
  gap: 14px;
  margin: 38px 0 0;
}

.hero-stats div {
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  backdrop-filter: blur(10px);
}

.hero-stats dt {
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
}

.hero-stats dd {
  margin: 5px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
}

section {
  scroll-margin-top: calc(var(--header-height) + 20px);
}

.band {
  background: var(--soft);
}

.intro,
.services,
.growth,
.channels,
.process,
.proof,
.contact {
  padding: 86px 0;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

h2,
h3,
p {
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: 38px;
  line-height: 1.18;
}

h3 {
  margin: 0;
  font-size: 21px;
  line-height: 1.28;
}

.intro p:last-child,
.growth-copy p,
.proof-list p,
.contact-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

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

.section-head h2 {
  max-width: 720px;
}

.section-head.compact h2 {
  max-width: 620px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-card {
  min-height: 230px;
  padding: 26px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 30px rgba(22, 32, 25, 0.06);
}

.service-card:nth-child(2n) .service-icon {
  color: var(--blue);
}

.service-card:nth-child(3n) .service-icon {
  color: var(--coral);
}

.service-icon {
  display: inline-block;
  margin-bottom: 44px;
  color: var(--green);
  font-size: 14px;
  font-weight: 800;
}

.service-card p {
  margin: 14px 0 0;
  color: var(--muted);
}

.growth-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
  align-items: start;
}

.growth-copy {
  padding-right: 28px;
}

.growth-copy p {
  margin-top: 20px;
}

.growth-panel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 8px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.tab {
  min-height: 44px;
  color: var(--muted);
  background: transparent;
  border: 0;
  border-radius: 6px;
  cursor: pointer;
}

.tab.is-active {
  color: #fff;
  background: var(--green);
}

.plan-card {
  grid-column: 2;
  padding: 30px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.plan-label {
  margin: 0 0 10px;
  color: var(--blue);
  font-weight: 700;
}

.plan-card ul {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.plan-card li {
  position: relative;
  padding-left: 26px;
  color: var(--muted);
}

.plan-card li::before {
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 10px;
  height: 10px;
  background: var(--amber);
  border-radius: 50%;
  content: "";
  transform: translateY(-50%);
}

.channel-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.channel-strip span {
  display: grid;
  place-items: center;
  min-height: 72px;
  padding: 12px;
  color: var(--green-dark);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 700;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  counter-reset: process;
}

.timeline article {
  position: relative;
  min-height: 220px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.timeline span {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  margin-bottom: 38px;
  color: #fff;
  background: var(--blue);
  border-radius: 50%;
  font-weight: 800;
}

.timeline article:nth-child(2) span {
  background: var(--green);
}

.timeline article:nth-child(3) span {
  background: var(--amber);
}

.timeline article:nth-child(4) span {
  background: var(--coral);
}

.timeline p {
  margin: 12px 0 0;
  color: var(--muted);
}

.proof-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
}

.proof-list {
  display: grid;
  gap: 16px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 52px;
  align-items: start;
}

.contact-copy p {
  margin-top: 20px;
}

.contact-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.contact-methods a {
  padding: 10px 14px;
  color: var(--green-dark);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 700;
}

.lead-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.lead-form label {
  display: grid;
  gap: 7px;
}

.lead-form span {
  color: var(--ink);
  font-weight: 700;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  color: var(--ink);
  background: #fbfaf6;
  border: 1px solid var(--line);
  border-radius: 8px;
  outline: none;
}

.lead-form textarea {
  resize: vertical;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(31, 107, 73, 0.12);
}

.site-footer {
  padding: 26px 0;
  color: rgba(255, 255, 255, 0.76);
  background: var(--green-dark);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.footer-inner p {
  margin: 0;
}

.footer-inner a {
  color: #fff;
  font-weight: 700;
}

@media (max-width: 900px) {
  :root {
    --header-height: 70px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: var(--header-height);
    right: 16px;
    left: 16px;
    display: grid;
    gap: 0;
    padding: 12px;
    color: var(--ink);
    background: rgba(251, 250, 246, 0.98);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition:
      opacity 160ms ease,
      transform 160ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 14px 10px;
  }

  .site-nav a::after {
    display: none;
  }

  .hero {
    min-height: 520px;
    height: 84svh;
  }

  .hero h1 {
    font-size: 54px;
  }

  .hero-copy {
    font-size: 19px;
  }

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

  .intro,
  .services,
  .growth,
  .channels,
  .process,
  .proof,
  .contact {
    padding: 66px 0;
  }

  .intro-grid,
  .growth-layout,
  .proof-layout,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .growth-copy {
    padding-right: 0;
  }

  .plan-card {
    grid-column: auto;
  }

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

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

@media (max-width: 640px) {
  .container,
  .hero-inner {
    width: min(100% - 28px, 1120px);
  }

  .site-header {
    padding: 0 14px;
  }

  .brand strong {
    font-size: 16px;
  }

  .hero {
    min-height: 540px;
    height: 88svh;
  }

  .hero-media {
    background-position: 58% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(11, 33, 24, 0.95), rgba(11, 33, 24, 0.76)),
      linear-gradient(180deg, rgba(11, 33, 24, 0.12), rgba(11, 33, 24, 0.5));
  }

  .eyebrow,
  .section-kicker {
    font-size: 13px;
  }

  .hero h1 {
    font-size: 43px;
  }

  .hero-copy {
    margin-top: 16px;
    font-size: 17px;
  }

  .hero-actions {
    gap: 10px;
    margin-top: 24px;
  }

  .button {
    width: 100%;
  }

  .hero-stats {
    gap: 8px;
    margin-top: 24px;
  }

  .hero-stats div {
    padding: 10px 8px;
  }

  .hero-stats dt {
    font-size: 20px;
  }

  .hero-stats dd {
    font-size: 12px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 19px;
  }

  .section-head {
    display: block;
    margin-bottom: 26px;
  }

  .intro,
  .services,
  .growth,
  .channels,
  .process,
  .proof,
  .contact {
    padding: 52px 0;
  }

  .service-grid,
  .timeline,
  .channel-strip {
    grid-template-columns: 1fr;
  }

  .service-card,
  .timeline article {
    min-height: auto;
  }

  .service-icon,
  .timeline span {
    margin-bottom: 24px;
  }

  .growth-panel {
    grid-template-columns: 1fr;
  }

  .plan-card,
  .lead-form {
    padding: 22px;
  }

  .contact-methods {
    display: grid;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

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

/* Top section reformatted to match the compact black showcase reference. */
.site-header {
  color: #fff;
  background: #000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.site-header.is-scrolled,
.site-header.nav-visible {
  color: #fff;
  background: rgba(0, 0, 0, 0.95);
  box-shadow: none;
  backdrop-filter: blur(16px);
}

.brand {
  gap: 9px;
}

.brand-mark {
  width: 38px;
  height: 38px;
  color: #fff;
  background: #050505;
  border: 0;
  border-radius: 8px;
  font-size: 12px;
  letter-spacing: 0;
}

.brand strong {
  color: #fff;
  font-size: 17px;
  font-weight: 900;
}

.brand small {
  color: rgba(255, 255, 255, 0.64);
  opacity: 1;
}

.site-nav {
  gap: clamp(14px, 2vw, 30px);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
}

.site-nav a {
  padding: 8px 0;
}

.nav-pill {
  min-width: 42px;
  padding: 2px 7px !important;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 2px;
  line-height: 1.15;
}

.nav-pill::after {
  display: none;
}

.nav-toggle {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.72);
}

.hero {
  display: block;
  height: auto;
  min-height: 0;
  max-height: none;
  padding: calc(var(--header-height) + 30px) 0 42px;
  color: #fff;
  background:
    linear-gradient(180deg, #000 0, #000 40%, #111 40%, #111 100%);
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 44px;
  left: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.06);
  content: "";
}

.hero-inner {
  width: min(1160px, calc(100% - 44px));
  padding-top: 0;
  text-align: center;
}

.hero .eyebrow {
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
}

.hero h1 {
  max-width: 760px;
  margin: 0 auto;
  font-size: 42px;
  line-height: 1.18;
  font-weight: 800;
}

.hero-copy {
  width: min(640px, 100%);
  margin: 16px auto 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  line-height: 1.65;
}

.showcase-row {
  display: grid;
  grid-template-columns: minmax(160px, 0.74fr) minmax(280px, 1.18fr) minmax(160px, 0.74fr);
  gap: 16px;
  align-items: center;
  margin-top: 32px;
}

.showcase-card {
  position: relative;
  overflow: hidden;
  background: #181818;
  border: 0;
  border-radius: 8px;
  padding: 0;
  color: inherit;
}

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

.showcase-card-side {
  aspect-ratio: 16 / 9;
  opacity: 0.78;
}

.showcase-card-main {
  aspect-ratio: 16 / 9;
  border: 3px solid #168fff;
  box-shadow: 0 0 0 1px rgba(22, 143, 255, 0.18), 0 18px 44px rgba(0, 0, 0, 0.38);
}

.showcase-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 22px;
}

.showcase-dots span {
  width: 6px;
  height: 6px;
  background: #26333b;
  border-radius: 50%;
}

.showcase-dots .is-active {
  background: #0097ff;
}

.showcase-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-width: 92px;
  min-height: 38px;
  margin-top: 20px;
  overflow: hidden;
  padding: 9px 16px;
  color: #fff;
  background:
    linear-gradient(135deg, #168fff, #0f5fd8 52%, #071a33),
    #168fff;
  border: 1px solid rgba(160, 219, 255, 0.72);
  border-radius: 6px;
  box-shadow:
    0 10px 24px rgba(22, 143, 255, 0.22),
    0 0 0 1px rgba(255, 255, 255, 0.08) inset;
  font-size: 13px;
  font-weight: 900;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.32);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.showcase-actions .showcase-button:not(.showcase-button-plain)::after {
  width: 6px;
  height: 6px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  content: "";
  transform: rotate(45deg);
}

.showcase-button:hover,
.showcase-button:focus-visible {
  background:
    linear-gradient(135deg, #32a8ff, #1372ef 52%, #082447),
    #168fff;
  border-color: rgba(210, 240, 255, 0.92);
  box-shadow:
    0 14px 30px rgba(22, 143, 255, 0.32),
    0 0 0 1px rgba(255, 255, 255, 0.12) inset;
  transform: translateY(-2px);
}

@media (max-width: 900px) {
  .site-nav {
    color: #fff;
    background: rgba(8, 8, 8, 0.98);
    border-color: rgba(255, 255, 255, 0.12);
  }

  .hero {
    height: auto;
    min-height: 0;
    padding-top: calc(var(--header-height) + 30px);
  }

  .hero h1 {
    font-size: 34px;
  }

  .showcase-row {
    grid-template-columns: 0.72fr 1fr 0.72fr;
    gap: 10px;
  }

  .showcase-card-side {
    height: 120px;
  }

  .showcase-card-main {
    height: 210px;
  }
}

@media (max-width: 640px) {
  .hero {
    height: auto;
    min-height: 0;
    padding: calc(var(--header-height) + 26px) 0 38px;
  }

  .hero-inner {
    width: min(100% - 28px, 1120px);
  }

  .hero h1 {
    font-size: 28px;
  }

  .hero-copy {
    font-size: 14px;
  }

  .showcase-row {
    grid-template-columns: 1fr;
    margin-top: 26px;
  }

  .showcase-card-side {
    display: none;
  }

  .showcase-card-main {
    width: min(100%, 430px);
    margin: 0 auto;
  }
}

.advantages-dark,
.response-dark,
.why-dark {
  color: #f4f6f4;
  background: #0f0f0f;
}

.advantages-dark {
  padding: 44px 0 22px;
}

.middle-heading {
  display: grid;
  grid-template-columns: max-content 1fr minmax(240px, 460px);
  gap: 18px;
  align-items: center;
  margin-bottom: 48px;
}

.middle-heading::before {
  grid-column: 2;
  height: 1px;
  background-image: linear-gradient(90deg, rgba(0, 151, 255, 0.85) 50%, transparent 0);
  background-size: 8px 1px;
  content: "";
}

.middle-heading h2 {
  grid-column: 1;
  grid-row: 1;
  color: #fff;
  font-size: 30px;
  line-height: 1.1;
}

.middle-heading p {
  grid-column: 3;
  margin: 0;
  color: rgba(244, 246, 244, 0.68);
  font-size: 13px;
  line-height: 1.7;
}

.advantage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
}

.advantage-card img {
  width: 100%;
  aspect-ratio: 16 / 7.2;
  object-fit: cover;
  border-radius: 8px;
}

.advantage-card h3 {
  margin-top: 20px;
  color: #fff;
  font-size: 23px;
}

.advantage-card p {
  margin: 13px 0 0;
  color: rgba(244, 246, 244, 0.66);
  font-size: 14px;
  line-height: 1.8;
}

.advantage-card a,
.response-actions a,
.why-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  margin-top: 28px;
  padding: 8px 16px;
  color: rgba(255, 255, 255, 0.9);
  background: #3a3a3a;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  font-size: 13px;
  font-weight: 800;
}

.advantage-card a::after,
.response-actions a:first-child::after {
  margin-left: 8px;
  content: ">";
}

.response-dark {
  padding: 34px 0 72px;
  border-top: 18px solid #000;
}

.response-inner {
  text-align: center;
}

.response-inner h2 {
  color: #fff;
  font-size: 34px;
}

.response-inner > p {
  width: min(620px, 100%);
  margin: 12px auto 0;
  color: rgba(244, 246, 244, 0.68);
  font-size: 14px;
}

.response-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 2px;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(110px, 1fr));
  gap: 22px 30px;
  width: min(900px, 100%);
  margin: 54px auto 0;
}

.capability-grid span {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 24px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 800;
}

.capability-grid span::before {
  width: 12px;
  height: 12px;
  margin-right: 8px;
  background: linear-gradient(135deg, #ffffff, #7aa9c8);
  border-radius: 3px;
  content: "";
}

.why-dark {
  padding: 72px 0 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.why-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 62px;
  align-items: center;
}

.why-copy h2 {
  color: #fff;
  font-size: 36px;
}

.why-copy > p {
  margin: 18px 0 0;
  color: rgba(244, 246, 244, 0.72);
  font-size: 15px;
  line-height: 1.8;
}

.why-list {
  display: grid;
  gap: 22px;
  margin-top: 36px;
}

.why-list article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
  align-items: start;
}

.why-list span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: rgba(255, 255, 255, 0.72);
  background: #2c2c2c;
  border-radius: 50%;
  font-weight: 900;
}

.why-list h3 {
  color: #fff;
  font-size: 18px;
}

.why-list p {
  margin: 6px 0 0;
  color: rgba(244, 246, 244, 0.63);
  font-size: 14px;
  line-height: 1.75;
}

.why-button {
  margin-top: 36px;
}

.why-image {
  margin: 0;
}

.why-image img {
  width: 100%;
  aspect-ratio: 1.18 / 1;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
}

@media (max-width: 900px) {
  .middle-heading {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-bottom: 34px;
  }

  .middle-heading::before {
    grid-column: 1;
    grid-row: 2;
  }

  .middle-heading h2,
  .middle-heading p {
    grid-column: 1;
  }

  .middle-heading p {
    width: min(620px, 100%);
  }

  .advantage-grid,
  .why-layout {
    grid-template-columns: 1fr;
  }

  .capability-grid {
    grid-template-columns: repeat(3, minmax(120px, 1fr));
  }
}

@media (max-width: 640px) {
  .advantages-dark {
    padding: 38px 0 12px;
  }

  .middle-heading h2,
  .response-inner h2,
  .why-copy h2 {
    font-size: 28px;
  }

  .advantage-grid {
    gap: 34px;
  }

  .advantage-card img {
    aspect-ratio: 16 / 9;
  }

  .response-dark {
    padding: 34px 0 52px;
  }

  .response-actions {
    align-items: center;
    flex-direction: column;
  }

  .response-actions a {
    width: min(180px, 100%);
  }

  .capability-grid {
    grid-template-columns: repeat(2, minmax(120px, 1fr));
    gap: 18px 12px;
    margin-top: 42px;
  }

  .why-dark {
    padding: 54px 0 30px;
  }

  .why-layout {
    gap: 36px;
  }

  .why-list article {
    grid-template-columns: 36px 1fr;
  }

  .why-list span {
    width: 32px;
    height: 32px;
  }

  .why-image {
    order: -1;
  }
}

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

.bottom-start {
  color: #f7f7f7;
  background: #0f0f0f;
}

.testimonial-strip {
  position: relative;
  display: grid;
  grid-template-columns: 52px 1fr 52px;
  gap: 20px;
  align-items: start;
  min-height: 250px;
  padding: 42px 0 28px;
  text-align: center;
}

.quote-arrow {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-top: 36px;
  color: rgba(255, 255, 255, 0.72);
  background: #292929;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  font-size: 26px;
  line-height: 1;
}

.quote-arrow:hover,
.quote-arrow:focus-visible {
  color: #fff;
  background: #363636;
}

.testimonial-content {
  display: grid;
  justify-items: center;
}

.testimonial-content p {
  width: min(720px, 100%);
  margin: 0 auto 30px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.8;
}

.client-avatar {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 12px;
  color: #111;
  background: #f2f2f2;
  border-radius: 50%;
  font-weight: 900;
}

.testimonial-content strong {
  color: #fff;
  font-size: 14px;
}

.testimonial-content span {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
}

.project-start {
  display: grid;
  justify-items: center;
  padding: 18px 0 70px;
  text-align: center;
}

.project-start h2 {
  color: #fff;
  font-size: 34px;
}

.project-start > p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 14px;
}

.start-form {
  display: grid;
  gap: 16px;
  width: min(420px, 100%);
  margin-top: 30px;
  text-align: left;
}

.start-form label {
  display: grid;
  gap: 7px;
}

.start-form span {
  color: rgba(255, 255, 255, 0.56);
  font-size: 13px;
}

.start-form input {
  width: 100%;
  height: 48px;
  padding: 0 15px;
  color: #fff;
  background: #2c2c2c;
  border: 1px solid #2c2c2c;
  border-radius: 8px;
  outline: none;
}

.start-form input:focus {
  border-color: #168fff;
  box-shadow: 0 0 0 3px rgba(22, 143, 255, 0.16);
}

.start-form button,
.footer-subscribe button {
  height: 48px;
  color: #fff;
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  cursor: pointer;
  font-weight: 900;
}

.start-form button:hover,
.start-form button:focus-visible,
.footer-subscribe button:hover,
.footer-subscribe button:focus-visible {
  background: #1a1a1a;
}

.login-note {
  margin-top: 22px !important;
  color: rgba(255, 255, 255, 0.42) !important;
  font-size: 12px !important;
}

.footer-promo {
  position: relative;
  width: min(var(--content-max), calc(100% - var(--desktop-gutter)));
  min-height: 0;
  aspect-ratio: 1821 / 288;
  margin: 0 auto;
  overflow: hidden;
  background: #0f0f0f;
  border-radius: 8px;
}

.footer-promo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.footer-promo::after {
  display: none;
}

.footer-promo-copy {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
  width: 100%;
  min-height: 176px;
  padding: 0 44px;
}

.footer-promo-copy h2 {
  max-width: 650px;
  color: #fff;
  font-size: 34px;
  line-height: 1.2;
}

.footer-promo-copy p {
  max-width: 520px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 14px;
  line-height: 1.7;
}

.bottom-footer {
  position: relative;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.72);
  background: #0f0f0f;
}

.footer-main {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(260px, 1.25fr) minmax(86px, 0.5fr) minmax(96px, 0.5fr) minmax(126px, 0.62fr);
  gap: clamp(24px, 3vw, 76px);
  align-items: start;
  padding: 46px 0 34px;
}

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

.footer-logo {
  color: #fff;
}

.footer-brand p {
  width: min(420px, 100%);
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  line-height: 1.7;
}

.footer-subscribe {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 74px;
  gap: 10px;
  width: min(340px, 100%);
  margin-top: 18px;
}

.footer-subscribe input {
  width: 100%;
  height: 38px;
  padding: 0 14px;
  color: #fff;
  background: #252525;
  border: 1px solid #252525;
  border-radius: 7px;
  outline: none;
}

.footer-subscribe button {
  height: 38px;
  border-radius: 7px;
  font-size: 13px;
}

.footer-subscribe-note {
  width: min(390px, 100%) !important;
  margin: 10px 0 0 !important;
  color: rgba(255, 255, 255, 0.34) !important;
  font-size: 10px !important;
  line-height: 1.6 !important;
}

.footer-links,
.footer-social {
  display: grid;
  align-content: start;
  gap: 10px;
  padding-top: 17px;
}

.footer-links h3,
.footer-social h3 {
  margin: 0 0 6px;
  color: #fff;
  font-size: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.64);
  font-size: 11px;
  line-height: 1.35;
}

.footer-links a:hover,
.footer-links a:focus-visible,
.footer-bottom a:hover,
.footer-bottom a:focus-visible {
  color: #fff;
}

.footer-social div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-social a {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  color: #111;
  background: #f5f5f5;
  border-radius: 50%;
  font-size: 10px;
  font-weight: 900;
}

.footer-bottom {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 0 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 10px;
}

.footer-bottom div {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.56);
  font-size: 10px;
}

@media (max-width: 900px) {
  .testimonial-strip {
    grid-template-columns: 40px 1fr 40px;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 38px;
  }
}

@media (max-width: 640px) {
  .testimonial-strip {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 34px 0 26px;
  }

  .quote-arrow {
    display: none;
  }

  .testimonial-content p {
    margin-bottom: 22px;
    font-size: 14px;
  }

  .project-start {
    padding-bottom: 54px;
  }

  .project-start h2 {
    font-size: 28px;
  }

  .footer-promo {
    width: min(100% - 28px, 1120px);
    min-height: 0;
  }

  .footer-promo-copy {
    min-height: 220px;
    padding: 0 22px;
  }

  .footer-promo-copy h2 {
    font-size: 26px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    padding: 48px 0 38px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* Remove hard divider lines so the dark sections read as one continuous surface. */
.site-header,
.site-header.is-scrolled,
.site-header.nav-visible,
.response-dark,
.why-dark,
.footer-bottom {
  border-top: 0 !important;
  border-bottom: 0 !important;
}

.hero::after,
.middle-heading::before,
.site-nav a::after {
  display: none !important;
}

.middle-heading {
  grid-template-columns: max-content minmax(280px, 1fr);
  gap: 28px;
}

.middle-heading h2 {
  grid-column: 1;
}

.middle-heading p {
  grid-column: 2;
}

.hero {
  background: linear-gradient(180deg, #000 0%, #090909 48%, #0f0f0f 100%);
}

.site-header,
main,
section,
.bottom-start,
.footer-promo,
.bottom-footer,
.footer-main,
.footer-bottom {
  border-top-width: 0 !important;
  border-bottom-width: 0 !important;
  box-shadow: none !important;
}

@media (max-width: 900px) {
  .middle-heading {
    grid-template-columns: 1fr;
  }

  .middle-heading h2,
  .middle-heading p {
    grid-column: 1;
  }
}

.brand-static {
  cursor: default;
  pointer-events: none;
}

.brand-full-image {
  width: 220px;
  height: auto;
  max-width: none;
}

.footer-logo .brand-full-image {
  width: 230px;
}

.footer-logo .footer-domain-logo {
  width: 176px;
}

.site-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  column-gap: clamp(34px, 4.2vw, 72px);
}

.brand {
  justify-self: start;
}

.header-phone {
  position: relative;
  display: none;
  align-items: center;
  gap: 7px;
  height: 28px;
  margin-left: 12px;
  overflow: hidden;
  padding: 0 12px 0 10px;
  color: #eef9ff;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.018)) padding-box,
    linear-gradient(135deg, rgba(255, 255, 255, 0.62), rgba(72, 190, 255, 0.72) 45%, rgba(255, 255, 255, 0.18)) border-box;
  border: 1px solid transparent;
  border-radius: 999px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.2) inset,
    0 -10px 20px rgba(22, 143, 255, 0.08) inset,
    0 10px 26px rgba(0, 0, 0, 0.34),
    0 0 18px rgba(72, 190, 255, 0.12);
  backdrop-filter: blur(12px) saturate(130%);
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  text-shadow: 0 0 12px rgba(126, 215, 255, 0.38);
  white-space: nowrap;
}

.header-phone::before {
  width: 7px;
  height: 7px;
  background: #8bdcff;
  border-radius: 50%;
  box-shadow:
    0 0 0 3px rgba(139, 220, 255, 0.12),
    0 0 14px rgba(139, 220, 255, 0.72);
  content: "";
}

.header-phone::after {
  position: absolute;
  top: -45%;
  bottom: -45%;
  left: -34%;
  width: 34px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.32), transparent);
  content: "";
  opacity: 0.72;
  transform: rotate(18deg);
}

@media (min-width: 1600px) {
  .header-phone {
    display: inline-flex;
  }
}

.site-nav {
  display: contents;
  color: #fff;
  font-size: 15px;
  font-weight: 900;
  margin-right: 0;
}

.nav-links {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: center;
  justify-items: center;
  grid-column: 2;
  justify-self: center;
  width: clamp(350px, 27.4vw, 526px);
  min-width: 0;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  font-weight: 900;
  -webkit-text-stroke: 0.2px currentColor;
  white-space: nowrap;
}

.nav-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  grid-column: 3;
  justify-self: end;
  gap: 10px;
  white-space: nowrap;
}

.nav-download {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 28px;
  margin-right: clamp(22px, 3vw, 44px);
  overflow: hidden;
  padding: 5px 14px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(22, 143, 255, 0.36), rgba(255, 255, 255, 0.08)),
    rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(112, 207, 255, 0.72);
  border-radius: 5px;
  box-shadow:
    0 0 0 1px rgba(22, 143, 255, 0.12),
    0 0 18px rgba(22, 143, 255, 0.22);
}

.nav-download::before {
  width: 13px;
  height: 16px;
  border: 1.5px solid currentColor;
  border-radius: 3px;
  content: "";
  opacity: 0.9;
}

.nav-download::after {
  width: 5px;
  height: 5px;
  margin-left: 1px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  content: "";
  transform: rotate(45deg) translateY(-1px);
}

.nav-download:hover,
.nav-download:focus-visible {
  background:
    linear-gradient(135deg, rgba(22, 143, 255, 0.54), rgba(255, 255, 255, 0.12)),
    rgba(255, 255, 255, 0.08);
  border-color: rgba(169, 226, 255, 0.95);
  box-shadow:
    0 0 0 1px rgba(22, 143, 255, 0.18),
    0 0 26px rgba(22, 143, 255, 0.34);
}

.site-nav a,
.site-nav button {
  line-height: 1;
  font-size: 15px;
  font-weight: 900;
}

.nav-auth {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: auto;
  min-height: 28px;
  padding: 4px 9px;
  color: #fff;
  background: transparent;
  border: 0;
  border-radius: 3px;
  cursor: pointer;
}

.site-nav .nav-auth:first-of-type,
.site-nav .nav-auth + .nav-auth {
  margin-left: 0;
}

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

.nav-register {
  border: 1px solid rgba(255, 255, 255, 0.86);
}

body.modal-open {
  overflow: hidden;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(10px);
}

.auth-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 90;
  width: min(420px, calc(100% - 36px));
  padding: 34px;
  color: #fff;
  background: #111;
  border-radius: 8px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.52);
  transform: translate(-50%, -50%);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: rgba(255, 255, 255, 0.72);
  background: #242424;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
}

.modal-close:hover,
.modal-close:focus-visible {
  color: #fff;
  background: #303030;
}

.modal-kicker {
  margin: 0 0 8px;
  color: #8ec5ff;
  font-size: 13px;
  font-weight: 800;
}

.auth-modal h2 {
  margin: 0;
  color: #fff;
  font-size: 28px;
}

.auth-modal > p:not(.modal-kicker) {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  line-height: 1.7;
}

.modal-form {
  display: grid;
  gap: 15px;
  margin-top: 26px;
}

.modal-form label {
  display: grid;
  gap: 7px;
}

.modal-form span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
}

.modal-form input {
  width: 100%;
  height: 46px;
  padding: 0 14px;
  color: #fff;
  background: #2a2a2a;
  border: 1px solid #2a2a2a;
  border-radius: 8px;
  outline: none;
}

.modal-form input:focus {
  border-color: #168fff;
  box-shadow: 0 0 0 3px rgba(22, 143, 255, 0.16);
}

.modal-form button {
  height: 46px;
  margin-top: 4px;
  color: #fff;
  background: #000;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 900;
}

.modal-form button:hover,
.modal-form button:focus-visible {
  background: #1d1d1d;
}

.modal-switch {
  width: 100%;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.68);
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 13px;
}

.modal-switch:hover,
.modal-switch:focus-visible {
  color: #fff;
}

@media (max-width: 900px) {
  .brand-full-image {
    width: 190px;
  }

  .site-nav {
    display: grid;
    gap: 0;
    margin-right: 0;
    color: var(--ink);
  }

  .nav-links,
  .nav-actions {
    display: grid;
    grid-template-columns: 1fr;
    grid-column: auto;
    justify-items: stretch;
    justify-self: stretch;
    gap: 0;
    width: 100%;
  }

  .nav-links a {
    justify-content: flex-start;
  }

  .nav-download {
    justify-content: flex-start;
    min-height: 44px;
    margin-right: 0;
    padding: 14px 10px;
    color: var(--ink);
    border: 0;
  }

  .site-nav button {
    justify-content: flex-start;
    min-height: 44px;
    padding: 14px 10px;
    color: var(--ink);
    font-size: 15px;
  }

  .nav-register {
    border: 0;
  }
}

@media (max-width: 640px) {
  .brand-full-image {
    width: 168px;
  }

  .auth-modal {
    padding: 28px 22px;
  }

  .auth-modal h2 {
    font-size: 24px;
  }
}

/* Full-bleed homepage composition: hero + advantages visible together. */
body {
  background: var(--page-bg);
}

main {
  background: var(--page-bg);
}

.hero {
  padding: 0;
  background: transparent;
}

main > section + section,
.site-footer {
  margin-top: var(--section-gap);
}

.hero-inner,
.advantages-dark > .container {
  width: min(var(--content-max), calc(100% - var(--desktop-gutter)));
}

.hero-inner {
  position: relative;
  padding: calc(var(--header-height) + 26px) var(--panel-pad-x) 24px;
  background: transparent;
}

.hero-inner::before {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  top: calc(var(--header-height) + 158px);
  z-index: 0;
  background: var(--section-bg);
  content: "";
}

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

.hero h1 {
  max-width: 980px;
  font-size: clamp(30px, 2.35vw, 44px);
  line-height: 1.16;
}

.hero-copy {
  margin-top: 14px;
  font-size: 15px;
  line-height: 1.72;
}

.showcase-row {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.57fr) minmax(0, 1fr);
  gap: clamp(12px, 1.25vw, 22px);
  margin-top: 76px;
  perspective: 1200px;
}

.showcase-card-side {
  height: auto;
  aspect-ratio: 16 / 9;
  cursor: pointer;
  transition:
    filter 160ms ease,
    opacity 160ms ease,
    transform 160ms ease;
}

.showcase-card {
  transform-style: preserve-3d;
  will-change: opacity, transform;
  backface-visibility: hidden;
}

.showcase-card::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, transparent 18%, rgba(255, 255, 255, 0.2) 44%, transparent 68%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.32), transparent 34%, rgba(0, 0, 0, 0.26));
  content: "";
  opacity: 0;
  pointer-events: none;
  transform: translateX(-120%) skewX(-14deg);
}

.showcase-card-main {
  height: auto;
  aspect-ratio: 16 / 9;
}

.showcase-card-side:hover,
.showcase-card-side:focus-visible {
  opacity: 0.92;
  filter: brightness(1.08);
  outline: 2px solid rgba(22, 143, 255, 0.55);
  outline-offset: 4px;
  transform: translateY(-2px);
}

.showcase-row.is-moving-next [data-showcase-card="prev"] {
  animation: showcase-prev-from-main 300ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.showcase-row.is-moving-next [data-showcase-card="main"] {
  animation: showcase-main-from-right 300ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.showcase-row.is-moving-next [data-showcase-card="next"] {
  animation: showcase-side-from-right 300ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.showcase-row.is-moving-prev [data-showcase-card="prev"] {
  animation: showcase-side-from-left 300ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.showcase-row.is-moving-prev [data-showcase-card="main"] {
  animation: showcase-main-from-left 300ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.showcase-row.is-moving-prev [data-showcase-card="next"] {
  animation: showcase-next-from-main 300ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.showcase-row.is-moving-next .showcase-card::after {
  animation: showcase-page-shine-next 300ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.showcase-row.is-moving-prev .showcase-card::after {
  animation: showcase-page-shine-prev 300ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes showcase-prev-from-main {
  0% {
    opacity: 1;
    transform: translateX(48%) translateY(-8px) translateZ(84px) scale(1.2) rotateY(0) rotateX(0);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.42);
  }

  16% {
    opacity: 0.96;
    transform: translateX(34%) translateY(-18px) translateZ(96px) scale(1.16) rotateY(26deg) rotateX(3deg);
  }

  32% {
    opacity: 0.88;
    transform: translateX(18%) translateY(-12px) translateZ(34px) scale(1.08) rotateY(4deg) rotateX(0);
  }

  100% {
    opacity: 0.78;
    transform: translateX(0) scale(1) rotateY(0);
    box-shadow: none;
  }
}

@keyframes showcase-main-from-right {
  0% {
    opacity: 0.78;
    transform: translateX(45%) translateY(-14px) translateZ(-44px) scale(0.68) rotateY(0) rotateX(0);
  }

  18% {
    opacity: 0.9;
    transform: translateX(28%) translateY(-22px) translateZ(80px) scale(0.82) rotateY(-30deg) rotateX(-4deg);
  }

  34% {
    opacity: 0.94;
    transform: translateX(10%) translateY(-10px) translateZ(28px) scale(0.92) rotateY(-4deg) rotateX(0);
  }

  100% {
    opacity: 1;
    transform: translateX(0) scale(1) rotateY(0);
  }
}

@keyframes showcase-side-from-right {
  0% {
    opacity: 0;
    transform: translateX(36%) translateY(-18px) translateZ(28px) scale(0.84) rotateY(0) rotateX(0);
  }

  18% {
    opacity: 0.55;
    transform: translateX(24%) translateY(-18px) translateZ(42px) scale(0.88) rotateY(-34deg) rotateX(-4deg);
  }

  34% {
    opacity: 0.62;
    transform: translateX(12%) translateY(-8px) translateZ(18px) scale(0.94) rotateY(-4deg) rotateX(0);
  }

  100% {
    opacity: 0.78;
    transform: translateX(0) scale(1) rotateY(0);
  }
}

@keyframes showcase-side-from-left {
  0% {
    opacity: 0;
    transform: translateX(-36%) translateY(-18px) translateZ(28px) scale(0.84) rotateY(0) rotateX(0);
  }

  18% {
    opacity: 0.55;
    transform: translateX(-24%) translateY(-18px) translateZ(42px) scale(0.88) rotateY(34deg) rotateX(-4deg);
  }

  34% {
    opacity: 0.62;
    transform: translateX(-12%) translateY(-8px) translateZ(18px) scale(0.94) rotateY(4deg) rotateX(0);
  }

  100% {
    opacity: 0.78;
    transform: translateX(0) scale(1) rotateY(0);
  }
}

@keyframes showcase-main-from-left {
  0% {
    opacity: 0.78;
    transform: translateX(-45%) translateY(-14px) translateZ(-44px) scale(0.68) rotateY(0) rotateX(0);
  }

  18% {
    opacity: 0.9;
    transform: translateX(-28%) translateY(-22px) translateZ(80px) scale(0.82) rotateY(30deg) rotateX(-4deg);
  }

  34% {
    opacity: 0.94;
    transform: translateX(-10%) translateY(-10px) translateZ(28px) scale(0.92) rotateY(4deg) rotateX(0);
  }

  100% {
    opacity: 1;
    transform: translateX(0) scale(1) rotateY(0);
  }
}

@keyframes showcase-next-from-main {
  0% {
    opacity: 1;
    transform: translateX(-48%) translateY(-8px) translateZ(84px) scale(1.2) rotateY(0) rotateX(0);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.42);
  }

  16% {
    opacity: 0.96;
    transform: translateX(-34%) translateY(-18px) translateZ(96px) scale(1.16) rotateY(-26deg) rotateX(3deg);
  }

  32% {
    opacity: 0.88;
    transform: translateX(-18%) translateY(-12px) translateZ(34px) scale(1.08) rotateY(-4deg) rotateX(0);
  }

  100% {
    opacity: 0.78;
    transform: translateX(0) scale(1) rotateY(0);
    box-shadow: none;
  }
}

@keyframes showcase-page-shine-next {
  0% {
    opacity: 0;
    transform: translateX(-130%) skewX(-14deg);
  }

  38% {
    opacity: 0.62;
  }

  100% {
    opacity: 0;
    transform: translateX(130%) skewX(-14deg);
  }
}

@keyframes showcase-page-shine-prev {
  0% {
    opacity: 0;
    transform: translateX(130%) skewX(14deg);
  }

  38% {
    opacity: 0.62;
  }

  100% {
    opacity: 0;
    transform: translateX(-130%) skewX(14deg);
  }
}

.showcase-card img {
  width: calc(100% + 6px);
  max-width: none;
  height: 100%;
  transform: translateX(-3px);
}

.showcase-dots {
  margin-top: 20px;
}

.showcase-dots span {
  transition:
    background 280ms ease,
    opacity 280ms ease,
    transform 280ms ease;
}

.showcase-dots .is-active {
  transform: scale(1.28);
}

.showcase-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(30px, 4.2vw, 58px);
  margin-top: 14px;
}

.showcase-actions .showcase-button {
  margin-top: 0;
}

.showcase-button-plain {
  position: relative;
  min-width: auto;
  min-height: auto;
  overflow: visible;
  padding-right: 0;
  padding-left: 0;
  color: rgba(255, 255, 255, 0.7);
  background: transparent;
  border-color: transparent;
  box-shadow: none;
  text-shadow: none;
}

.consult-pointer {
  position: absolute;
  right: -24px;
  bottom: -18px;
  width: 31px;
  aspect-ratio: 1;
  background: url("assets/consult-pointer-cutout.png") center / contain no-repeat;
  pointer-events: none;
  transform: rotate(-6deg);
}

.showcase-button-plain:hover,
.showcase-button-plain:focus-visible {
  color: rgba(255, 255, 255, 0.7);
  background: transparent;
  border-color: transparent;
  box-shadow: none;
  transform: none;
}

.advantages-dark {
  padding: 0;
  background: transparent;
}

.advantages-dark > .container {
  padding: 42px var(--panel-pad-x) 36px;
  background: var(--section-bg);
}

.middle-heading {
  align-items: start;
  grid-template-columns: minmax(220px, 0.85fr) minmax(360px, 1.15fr);
  gap: clamp(24px, 3vw, 38px);
  margin-bottom: 44px;
}

.middle-heading h2 {
  font-size: clamp(26px, 1.9vw, 34px);
}

.middle-heading p {
  justify-self: end;
  max-width: none;
  font-size: 14px;
  line-height: 1.75;
  transform: translate(6px, -8px);
}

.advantage-grid {
  gap: clamp(18px, 1.9vw, 36px);
}

.advantage-media {
  overflow: hidden;
  aspect-ratio: 16 / 7.2;
  background: #101010;
  border-radius: 8px;
}

.advantage-media img {
  width: calc(100% + 12px);
  max-width: none;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  transform: translateX(-6px);
}

.advantage-card > img {
  height: auto;
  aspect-ratio: 16 / 7.2;
}

.advantage-card {
  display: flex;
  flex-direction: column;
}

.advantage-card h3 {
  margin-top: 14px;
  font-size: 22px;
  line-height: 1.25;
}

.advantage-card p {
  margin-top: 8px;
  margin-bottom: 26px;
  font-size: 14px;
  line-height: 1.75;
}

.advantage-card a {
  align-self: flex-start;
  margin-top: auto;
}

.response-dark {
  padding: 0;
  background: transparent;
}

.response-dark + .why-dark {
  margin-top: 0;
}

.response-inner {
  padding: 34px var(--panel-pad-x) 72px;
  background: var(--section-bg);
}

.why-dark {
  padding: 0;
  background: transparent;
}

.why-layout {
  padding: 72px var(--panel-pad-x) 34px;
  background: var(--section-bg);
}

.bottom-start {
  margin-top: calc(var(--section-gap) * 2);
  background: transparent;
}

.bottom-start > .container {
  background: var(--section-bg);
}

.bottom-footer,
.site-footer {
  margin-top: 0;
  padding: 0;
  background: transparent;
}

.footer-main,
.footer-bottom {
  background: var(--section-bg);
}

.footer-bottom {
  padding-bottom: 40px;
}

.testimonial-strip,
.project-start,
.footer-main,
.footer-bottom {
  padding-right: var(--panel-pad-x);
  padding-left: var(--panel-pad-x);
}

.footer-promo-copy {
  padding-right: var(--panel-pad-x);
  padding-left: var(--panel-pad-x);
}

.footer-promo {
  background: var(--section-bg);
}

.why-image {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
}

.why-image img {
  width: 110%;
  max-width: none;
  height: 100%;
  border-radius: 0;
  box-shadow: none;
  transform: translateX(-6%);
}

@media (max-width: 1200px) {
  :root {
    --content-max: 1260px;
    --desktop-gutter: clamp(44px, 34vw, 660px);
  }

  .hero-inner,
  .advantages-dark > .container {
    width: min(var(--content-max), calc(100% - var(--desktop-gutter)));
  }

  .showcase-row {
    grid-template-columns: 0.72fr 1.15fr 0.72fr;
  }
}

@media (min-width: 901px) and (max-width: 1200px) {
  .site-header {
    padding: 0 clamp(24px, 4.5vw, 48px);
  }

  .brand-full-image {
    width: 190px;
  }

  .site-nav {
    gap: clamp(12px, 1.8vw, 22px);
    margin-right: 0;
  }

  .site-nav .nav-auth + .nav-auth {
    margin-left: -8px;
  }
}

@media (max-width: 760px) {
  :root {
    --desktop-gutter: 40px;
    --panel-pad-x: 22px;
  }

  .hero-inner,
  .advantages-dark > .container {
    width: min(1120px, calc(100% - 28px));
  }
}

@media (min-width: 1201px) and (max-width: 1500px) {
  :root {
    --content-max: 1260px;
    --desktop-gutter: clamp(44px, 34vw, 660px);
  }

  .hero-inner,
  .advantages-dark > .container {
    width: min(var(--content-max), calc(100% - var(--desktop-gutter)));
  }
}

@media (max-width: 900px) {
  .site-header {
    display: flex;
  }

  .hero {
    padding: 0;
  }

  .hero-inner {
    padding-top: calc(var(--header-height) + 20px);
  }

  .site-nav .nav-auth:first-of-type,
  .site-nav .nav-auth + .nav-auth {
    margin-left: 0;
  }

  .hero h1 {
    font-size: 32px;
  }

  .showcase-row {
    grid-template-columns: 0.72fr 1fr 0.72fr;
    gap: 10px;
  }

  .advantages-dark {
    padding: 0;
  }

  .advantages-dark > .container {
    padding-top: 30px;
  }
}

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

  .hero-inner {
    padding: calc(var(--header-height) + 12px) var(--panel-pad-x) 24px;
  }

  .hero h1 {
    font-size: 27px;
  }

  .showcase-row {
    grid-template-columns: 0.72fr 1fr 0.72fr;
    gap: 8px;
    margin-top: 20px;
  }

  .showcase-card-side {
    display: block;
  }

  .showcase-card-main {
    width: auto;
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .advantages-dark {
    padding: 0;
  }

  .advantages-dark > .container {
    padding: 30px var(--panel-pad-x) 34px;
  }

  .middle-heading {
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    margin-bottom: 34px;
  }

  .middle-heading h2 {
    grid-column: 1;
  }

  .middle-heading p {
    grid-column: 2;
    justify-self: start;
    transform: none;
    width: auto;
  }

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

  .advantage-card img {
    aspect-ratio: 16 / 7.2;
  }

  .advantage-card h3 {
    margin-top: 12px;
    font-size: 18px;
  }

  .advantage-card p {
    font-size: 12px;
    line-height: 1.65;
  }

  .advantage-card a {
    margin-top: 22px;
    padding-right: 13px;
    padding-left: 13px;
  }
}

@media (max-width: 520px) {
  .middle-heading,
  .advantage-grid {
    grid-template-columns: 1fr;
  }

  .middle-heading h2,
  .middle-heading p {
    grid-column: 1;
  }

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

  .showcase-card-side {
    display: none;
  }

  .showcase-card-main {
    width: 100%;
  }
}

.advantage-grid {
  align-items: stretch;
}

.advantage-card {
  height: 100%;
}

.advantage-card a {
  align-self: flex-start;
  margin-top: auto !important;
}

/* Redesigned why section as a compact acquisition-system panel. */
.why-layout-redesign {
  grid-template-columns: 1fr;
  gap: 22px;
  align-items: stretch;
  padding-top: clamp(52px, 5vw, 76px);
  padding-bottom: clamp(50px, 5vw, 72px);
}

.why-head,
.why-system-card,
.why-system-badges,
.why-module-grid,
.why-bottom-line {
  position: relative;
  z-index: 1;
}

.why-head {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(260px, 0.64fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: end;
}

.why-head .section-tag {
  grid-column: 1;
}

.why-head h2 {
  grid-column: 1;
  margin: 0;
  color: #fff;
  font-size: clamp(32px, 4vw, 50px);
  line-height: 1.08;
}

.why-head > p:not(.section-tag) {
  grid-column: 2;
  grid-row: 1 / span 2;
  margin: 0 0 2px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 15px;
  line-height: 1.85;
}

.why-system-card {
  aspect-ratio: 16 / 7.2;
  margin: 6px 0 0;
  background: #050505;
  border: 1px solid rgba(120, 198, 255, 0.18);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.48);
}

.why-system-card img {
  object-position: center;
}

.why-system-card::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.06), transparent 42%, rgba(0, 0, 0, 0.52)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.36), transparent 34%, rgba(0, 0, 0, 0.18));
  content: "";
  pointer-events: none;
}

.why-system-card figcaption {
  right: auto;
  bottom: 18px;
  left: 18px;
  z-index: 1;
  width: min(410px, calc(100% - 36px));
  padding: 16px 18px;
}

.why-system-badges {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.why-system-badges span {
  display: grid;
  place-items: center;
  min-height: 42px;
  color: rgba(255, 255, 255, 0.78);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025)),
    #151515;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 900;
}

.why-module-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 0;
}

.why-module-grid article {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  min-height: 190px;
  padding: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
    #141414;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
}

.why-module-grid article,
.why-module-grid article:last-child {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.why-module-grid span {
  width: fit-content;
  height: auto;
  min-height: 0;
  padding: 0;
  color: #78c6ff;
  background: transparent;
  border: 0;
  border-radius: 0;
  font-size: 12px;
}

.why-module-grid h3 {
  font-size: 18px;
  line-height: 1.3;
}

.why-module-grid p {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  line-height: 1.72;
}

.why-bottom-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  background:
    linear-gradient(90deg, rgba(22, 143, 255, 0.12), rgba(255, 255, 255, 0.03)),
    #131313;
  border: 1px solid rgba(120, 198, 255, 0.14);
  border-radius: 8px;
}

.why-bottom-line p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.7;
}

.why-bottom-line .why-button {
  flex: 0 0 auto;
  margin-top: 0;
}

.why-head {
  order: 1;
}

.why-system-card {
  order: 2;
}

.why-system-badges {
  order: 3;
}

.why-module-grid {
  order: 4;
}

.why-bottom-line {
  order: 5;
}

@media (max-width: 900px) {
  .why-head {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .why-head > p:not(.section-tag) {
    grid-column: 1;
    grid-row: auto;
  }

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

@media (max-width: 640px) {
  .why-layout-redesign {
    gap: 16px;
  }

  .why-head h2 {
    font-size: 31px;
  }

  .why-system-card {
    aspect-ratio: 16 / 10;
  }

  .why-system-card figcaption {
    right: 12px;
    bottom: 12px;
    left: 12px;
    width: auto;
  }

  .why-system-badges,
  .why-module-grid {
    grid-template-columns: 1fr;
  }

  .why-module-grid article {
    min-height: 0;
  }

  .why-bottom-line {
    align-items: stretch;
    flex-direction: column;
  }

  .why-bottom-line .why-button {
    width: 100%;
  }
}

/* Final lock: keep the three redesigned blocks visually unified. */
.response-dark .impact-response,
.why-dark .impact-system,
.bottom-start .impact-proof {
  border-color: rgba(120, 198, 255, 0.18);
  background:
    linear-gradient(112deg, rgba(10, 24, 35, 0.92), rgba(14, 14, 14, 0.98) 43%, rgba(28, 23, 12, 0.84)),
    #0f0f0f;
}

.response-dark .impact-response {
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  padding-top: clamp(56px, 6vw, 92px);
  padding-bottom: clamp(34px, 4vw, 56px);
}

.response-dark .impact-response .capability-grid,
.why-dark .impact-system .impact-rail,
.bottom-start .impact-proof .proof-metrics {
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(22, 143, 255, 0.1), rgba(255, 255, 255, 0.04)),
    #141414;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
}

.response-dark .impact-response .capability-grid article,
.why-dark .impact-system .impact-rail span,
.bottom-start .impact-proof .proof-metrics div {
  background: transparent;
  border-top: 0;
  border-bottom: 0;
  border-left: 0;
  border-radius: 0;
}

.why-dark .impact-system {
  grid-template-columns: 1fr;
}

.why-dark .impact-system .why-module-grid {
  display: none;
}

.bottom-start .impact-proof {
  grid-template-columns: minmax(0, 0.98fr) minmax(420px, 1.02fr);
}

@media (max-width: 900px) {
  .response-dark .impact-response,
  .bottom-start .impact-proof {
    grid-template-columns: 1fr;
  }

  .response-dark .impact-response .capability-grid,
  .why-dark .impact-system .impact-rail,
  .bottom-start .impact-proof .proof-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .response-dark .impact-response,
  .why-dark .impact-system,
  .bottom-start .impact-proof {
    padding-top: 42px;
    padding-bottom: 42px;
  }

  .response-dark .impact-response .capability-grid,
  .why-dark .impact-system .impact-rail,
  .bottom-start .impact-proof .proof-metrics {
    grid-template-columns: 1fr;
  }
}

/* Final override: the growth block must read as one command poster. */
.growth-command {
  padding: clamp(18px, 3vw, 34px) 0;
  background: #030303;
}

.growth-command-inner {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: auto 1fr auto;
  gap: clamp(22px, 4vw, 42px) 0;
  min-height: clamp(720px, 86svh, 920px);
  padding: clamp(46px, 5vw, 76px);
  border: 1px solid rgba(120, 198, 255, 0.2);
  border-radius: 8px;
  background: #040608;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 32px 120px rgba(0, 0, 0, 0.45);
}

.growth-command-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(102deg, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.78) 33%, rgba(0, 0, 0, 0.28) 59%, rgba(0, 0, 0, 0.74)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.84)),
    radial-gradient(circle at 62% 45%, rgba(22, 143, 255, 0.34), transparent 32%);
  opacity: 1;
}

.growth-command-inner::after {
  content: "";
  position: absolute;
  right: clamp(28px, 6vw, 86px);
  bottom: clamp(168px, 19vw, 230px);
  left: auto;
  z-index: 2;
  display: block;
  width: min(46vw, 560px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(120, 198, 255, 0.8), transparent);
  box-shadow: 0 0 22px rgba(22, 143, 255, 0.55);
  pointer-events: none;
}

.command-stage {
  position: absolute;
  inset: 0;
  z-index: 0;
  order: 0;
  aspect-ratio: auto;
  margin: 0;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.command-stage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
  transform: none;
  filter: contrast(1.16) brightness(0.82) saturate(1.1);
}

.command-stage::after,
.command-stage figcaption {
  display: none;
}

.growth-command-copy,
.command-path,
.command-proof {
  position: relative;
  z-index: 3;
}

.growth-command-copy {
  grid-column: 1 / span 7;
  grid-row: 1;
  order: 0;
  width: auto;
}

.growth-command-copy .section-tag {
  color: #7fd0ff;
  letter-spacing: 0;
}

.growth-command-copy h2 {
  max-width: 820px;
  margin-top: 16px;
  font-size: clamp(56px, 7.3vw, 108px);
  line-height: 0.94;
  letter-spacing: 0;
  text-wrap: balance;
  text-shadow: 0 20px 54px rgba(0, 0, 0, 0.62);
}

.growth-command-copy > p:not(.section-tag) {
  max-width: 600px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.86;
}

.growth-command-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.growth-command-actions a {
  min-width: 132px;
  padding: 13px 18px;
  border-radius: 6px;
}

.growth-command-actions a:first-child {
  border-color: rgba(120, 198, 255, 0.7);
  background:
    linear-gradient(135deg, #24a2ff, #0755dd),
    #168fff;
  box-shadow: 0 16px 36px rgba(22, 143, 255, 0.32);
}

.command-path {
  grid-column: 1 / span 9;
  grid-row: 3;
  order: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(120, 198, 255, 0.22);
  border-right: 0;
  border-radius: 8px 0 0 8px;
  background:
    linear-gradient(90deg, rgba(8, 26, 39, 0.9), rgba(12, 12, 12, 0.78)),
    rgba(5, 10, 15, 0.82);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(16px);
}

.command-path::before {
  content: "";
  position: absolute;
  top: 35px;
  right: 24px;
  left: 24px;
  z-index: 0;
  display: block;
  height: 1px;
  background: linear-gradient(90deg, rgba(22, 143, 255, 0.9), rgba(255, 180, 86, 0.62), rgba(120, 198, 255, 0.7));
  box-shadow: 0 0 18px rgba(22, 143, 255, 0.42);
}

.command-path article,
.command-path article:nth-child(2n),
.command-path article:nth-child(-n + 2),
.command-path article:last-child {
  position: relative;
  z-index: 1;
  min-height: 154px;
  padding: 24px 22px 22px;
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.09);
  border-bottom: 0;
  border-radius: 0;
  background: transparent;
}

.command-path article:last-child {
  border-right: 0;
}

.command-path span {
  width: 34px;
  height: 34px;
  color: #ffffff;
  background: linear-gradient(135deg, #24a2ff, #0755dd);
  box-shadow: 0 0 0 6px rgba(22, 143, 255, 0.1);
}

.command-path strong {
  margin-top: 18px;
  color: #ffffff;
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.15;
}

.command-path p {
  display: block;
  max-width: 190px;
  margin-top: 9px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 13px;
  line-height: 1.7;
}

.command-proof {
  grid-column: 10 / -1;
  grid-row: 3;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 154px;
  margin: 0;
  padding: 24px;
  border: 1px solid rgba(120, 198, 255, 0.22);
  border-radius: 0 8px 8px 0;
  background:
    linear-gradient(135deg, rgba(22, 143, 255, 0.22), rgba(255, 180, 86, 0.1)),
    rgba(5, 10, 15, 0.86);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(16px);
}

.command-proof p {
  max-width: 260px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(22px, 2vw, 31px);
  font-weight: 900;
  line-height: 1.26;
}

.command-proof div {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin-top: 18px;
}

.command-proof span {
  width: 100%;
  justify-content: flex-start;
  padding: 8px 10px;
  border-color: rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.78);
}

@media (max-width: 1000px) {
  .growth-command-inner {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr auto auto;
    min-height: 820px;
    padding: 40px 24px 24px;
  }

  .growth-command-inner::before {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.5) 45%, rgba(0, 0, 0, 0.9)),
      linear-gradient(90deg, rgba(0, 0, 0, 0.84), rgba(0, 0, 0, 0.18) 65%, rgba(0, 0, 0, 0.72)),
      radial-gradient(circle at 62% 48%, rgba(22, 143, 255, 0.28), transparent 36%);
  }

  .growth-command-inner::after {
    right: 24px;
    bottom: 238px;
    left: 24px;
    width: auto;
  }

  .command-stage {
    position: absolute;
    inset: 0;
    aspect-ratio: auto;
    margin: 0;
    border: 0;
    border-radius: 0;
  }

  .command-stage img {
    object-position: 60% center;
    filter: contrast(1.15) brightness(0.7) saturate(1.08);
  }

  .growth-command-copy {
    grid-column: 1;
    grid-row: 1;
    max-width: 620px;
  }

  .growth-command-copy h2 {
    font-size: clamp(46px, 11vw, 74px);
  }

  .command-path {
    grid-column: 1;
    grid-row: 3;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-right: 1px solid rgba(120, 198, 255, 0.22);
    border-radius: 8px 8px 0 0;
  }

  .command-path::before {
    display: none;
  }

  .command-path article,
  .command-path article:nth-child(2n),
  .command-path article:nth-child(-n + 2),
  .command-path article:last-child {
    min-height: 106px;
    padding: 16px;
    border-right: 1px solid rgba(255, 255, 255, 0.09);
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  }

  .command-path article:nth-child(2n) {
    border-right: 0;
  }

  .command-path article:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .command-path strong {
    margin-top: 12px;
    font-size: 23px;
  }

  .command-path p {
    display: none;
  }

  .command-proof {
    grid-column: 1;
    grid-row: 4;
    min-height: 0;
    border-top: 0;
    border-radius: 0 0 8px 8px;
  }
}

@media (max-width: 640px) {
  .growth-command {
    padding: 14px 0;
  }

  .growth-command-inner {
    min-height: 700px;
    padding: 30px 18px 16px;
  }

  .growth-command-copy h2 {
    font-size: clamp(38px, 12vw, 52px);
  }

  .growth-command-copy > p:not(.section-tag) {
    margin-top: 16px;
    font-size: 13px;
    line-height: 1.68;
  }

  .growth-command-actions {
    margin-top: 22px;
  }

  .growth-command-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
  }

  .growth-command-actions a {
    min-width: 0;
    padding-top: 11px;
    padding-right: 12px;
    padding-bottom: 11px;
    padding-left: 12px;
  }

  .command-stage img {
    object-position: 63% center;
  }

  .command-path article,
  .command-path article:nth-child(2n),
  .command-path article:nth-child(-n + 2),
  .command-path article:last-child {
    min-height: 76px;
    padding: 12px;
  }

  .command-path span {
    width: 24px;
    height: 24px;
    font-size: 11px;
  }

  .command-path strong {
    margin-top: 8px;
    font-size: 19px;
  }

  .command-proof {
    padding: 13px;
  }

  .command-proof p {
    max-width: none;
    font-size: 17px;
  }

  .command-proof div {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
  }

  .command-proof span {
    justify-content: center;
    padding: 6px 5px;
    font-size: 10px;
    white-space: nowrap;
  }
}

/* Final growth poster: one command scene, one bottom battle line. */
.growth-command {
  padding: clamp(18px, 3vw, 34px) 0;
  background: #030303;
}

.growth-command-inner {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: auto 1fr auto;
  gap: clamp(22px, 4vw, 42px) 0;
  min-height: clamp(720px, 86svh, 920px);
  padding: clamp(46px, 5vw, 76px);
  border: 1px solid rgba(120, 198, 255, 0.2);
  border-radius: 8px;
  background: #040608;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 32px 120px rgba(0, 0, 0, 0.45);
}

.growth-command-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(102deg, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.78) 33%, rgba(0, 0, 0, 0.28) 59%, rgba(0, 0, 0, 0.74)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.84)),
    radial-gradient(circle at 62% 45%, rgba(22, 143, 255, 0.34), transparent 32%);
  opacity: 1;
}

.growth-command-inner::after {
  content: "";
  position: absolute;
  right: clamp(28px, 6vw, 86px);
  bottom: clamp(168px, 19vw, 230px);
  z-index: 2;
  width: min(46vw, 560px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(120, 198, 255, 0.8), transparent);
  box-shadow: 0 0 22px rgba(22, 143, 255, 0.55);
  pointer-events: none;
}

.command-stage {
  position: absolute;
  inset: 0;
  z-index: 0;
  order: 0;
  aspect-ratio: auto;
  margin: 0;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.command-stage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
  transform: none;
  filter: contrast(1.16) brightness(0.82) saturate(1.1);
}

.command-stage::after,
.command-stage figcaption {
  display: none;
}

.growth-command-copy,
.command-path,
.command-proof {
  position: relative;
  z-index: 3;
}

.growth-command-copy {
  grid-column: 1 / span 7;
  grid-row: 1;
  width: auto;
}

.growth-command-copy .section-tag {
  color: #7fd0ff;
  letter-spacing: 0;
}

.growth-command-copy h2 {
  max-width: 820px;
  margin-top: 16px;
  font-size: clamp(56px, 7.3vw, 108px);
  line-height: 0.94;
  letter-spacing: 0;
  text-wrap: balance;
  text-shadow: 0 20px 54px rgba(0, 0, 0, 0.62);
}

.growth-command-copy > p:not(.section-tag) {
  max-width: 600px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.86;
}

.growth-command-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.growth-command-actions a {
  min-width: 132px;
  padding: 13px 18px;
  border-radius: 6px;
}

.growth-command-actions a:first-child {
  border-color: rgba(120, 198, 255, 0.7);
  background:
    linear-gradient(135deg, #24a2ff, #0755dd),
    #168fff;
  box-shadow: 0 16px 36px rgba(22, 143, 255, 0.32);
}

.command-path {
  grid-column: 1 / span 9;
  grid-row: 3;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(120, 198, 255, 0.22);
  border-right: 0;
  border-radius: 8px 0 0 8px;
  background:
    linear-gradient(90deg, rgba(8, 26, 39, 0.9), rgba(12, 12, 12, 0.78)),
    rgba(5, 10, 15, 0.82);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(16px);
}

.command-path::before {
  content: "";
  position: absolute;
  top: 35px;
  right: 24px;
  left: 24px;
  z-index: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(22, 143, 255, 0.9), rgba(255, 180, 86, 0.62), rgba(120, 198, 255, 0.7));
  box-shadow: 0 0 18px rgba(22, 143, 255, 0.42);
}

.command-path article {
  position: relative;
  z-index: 1;
  min-height: 154px;
  padding: 24px 22px 22px;
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 0;
  background: transparent;
}

.command-path article:last-child {
  border-right: 0;
}

.command-path span {
  width: 34px;
  height: 34px;
  color: #ffffff;
  background: linear-gradient(135deg, #24a2ff, #0755dd);
  box-shadow: 0 0 0 6px rgba(22, 143, 255, 0.1);
}

.command-path strong {
  margin-top: 18px;
  color: #ffffff;
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.15;
}

.command-path p {
  max-width: 190px;
  margin-top: 9px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 13px;
  line-height: 1.7;
}

.command-proof {
  grid-column: 10 / -1;
  grid-row: 3;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 154px;
  margin: 0;
  padding: 24px;
  border: 1px solid rgba(120, 198, 255, 0.22);
  border-radius: 0 8px 8px 0;
  background:
    linear-gradient(135deg, rgba(22, 143, 255, 0.22), rgba(255, 180, 86, 0.1)),
    rgba(5, 10, 15, 0.86);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(16px);
}

.command-proof p {
  max-width: 260px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(22px, 2vw, 31px);
  font-weight: 900;
  line-height: 1.26;
}

.command-proof div {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin-top: 18px;
}

.command-proof span {
  width: 100%;
  justify-content: flex-start;
  padding: 8px 10px;
  border-color: rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.78);
}

@media (max-width: 1000px) {
  .growth-command-inner {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr auto auto;
    min-height: 820px;
    padding: 40px 24px 24px;
  }

  .growth-command-inner::before {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.5) 45%, rgba(0, 0, 0, 0.9)),
      linear-gradient(90deg, rgba(0, 0, 0, 0.84), rgba(0, 0, 0, 0.18) 65%, rgba(0, 0, 0, 0.72)),
      radial-gradient(circle at 62% 48%, rgba(22, 143, 255, 0.28), transparent 36%);
  }

  .growth-command-inner::after {
    right: 24px;
    bottom: 238px;
    left: 24px;
    width: auto;
  }

  .command-stage img {
    object-position: 60% center;
    filter: contrast(1.15) brightness(0.7) saturate(1.08);
  }

  .growth-command-copy {
    grid-column: 1;
    max-width: 620px;
  }

  .growth-command-copy h2 {
    font-size: clamp(46px, 11vw, 74px);
  }

  .command-path {
    grid-column: 1;
    grid-row: 3;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-right: 1px solid rgba(120, 198, 255, 0.22);
    border-radius: 8px 8px 0 0;
  }

  .command-path::before {
    display: none;
  }

  .command-path article,
  .command-path article:nth-child(2n),
  .command-path article:nth-child(-n + 2) {
    min-height: 106px;
    padding: 16px;
    border-right: 1px solid rgba(255, 255, 255, 0.09);
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  }

  .command-path article:nth-child(2n) {
    border-right: 0;
  }

  .command-path article:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .command-path strong {
    margin-top: 12px;
    font-size: 23px;
  }

  .command-path p {
    display: none;
  }

  .command-proof {
    grid-column: 1;
    grid-row: 4;
    min-height: 0;
    border-top: 0;
    border-radius: 0 0 8px 8px;
  }
}

@media (max-width: 640px) {
  .growth-command {
    padding: 14px 0;
  }

  .growth-command-inner {
    min-height: 780px;
    padding: 34px 18px 18px;
  }

  .growth-command-copy h2 {
    font-size: clamp(42px, 13vw, 58px);
  }

  .growth-command-copy > p:not(.section-tag) {
    font-size: 14px;
    line-height: 1.75;
  }

  .growth-command-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
  }

  .growth-command-actions a {
    min-width: 0;
    padding-right: 12px;
    padding-left: 12px;
  }

  .command-stage img {
    object-position: 63% center;
  }

  .command-path article,
  .command-path article:nth-child(2n),
  .command-path article:nth-child(-n + 2) {
    min-height: 92px;
    padding: 14px;
  }

  .command-path span {
    width: 28px;
    height: 28px;
    font-size: 11px;
  }

  .command-path strong {
    margin-top: 10px;
    font-size: 21px;
  }

  .command-proof {
    padding: 16px;
  }

  .command-proof p {
    max-width: none;
    font-size: 19px;
  }

  .command-proof div {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
  }

  .command-proof span {
    justify-content: center;
    padding: 7px 6px;
    font-size: 11px;
    white-space: nowrap;
  }
}

/* Final subpage stage: match the home page's centered lane with black side gutters. */
body.subpage {
  background: #000 !important;
}

body.subpage .subpage-main {
  overflow: visible;
  background: #000 !important;
}

body.subpage .shop-hero,
body.subpage .partner-hero,
body.subpage .resource-hero,
body.subpage .diagnosis-hero,
body.subpage .app-landing,
body.subpage .sub-hero,
body.subpage .sub-band,
body.subpage .sub-band-dark,
body.subpage .sub-cta,
body.subpage .bottom-footer {
  width: min(var(--content-max), calc(100% - var(--desktop-gutter)));
  margin-right: auto;
  margin-left: auto;
}

body.subpage .shop-hero,
body.subpage .partner-hero,
body.subpage .resource-hero,
body.subpage .diagnosis-hero,
body.subpage .app-landing,
body.subpage .sub-hero {
  background:
    radial-gradient(circle at 26% 28%, rgba(22, 143, 255, 0.22), transparent 34%),
    radial-gradient(circle at 78% 26%, rgba(22, 143, 255, 0.1), transparent 30%),
    linear-gradient(112deg, rgba(2, 9, 14, 0.98), rgba(0, 0, 0, 0.98) 50%, rgba(10, 12, 15, 0.98)),
    #000 !important;
}

body.subpage .sub-band,
body.subpage .sub-cta {
  background: #0f0f0f !important;
}

body.subpage .sub-band-dark {
  background:
    linear-gradient(180deg, #050505, #101010 50%, #050505),
    #101010 !important;
}

body.subpage .subpage-main > section + section {
  margin-top: var(--section-gap);
}

body.subpage .subpage-main > section > .container,
body.subpage .bottom-footer > .container {
  width: 100%;
}

body.subpage .subpage-main > section > .container {
  padding-right: var(--panel-pad-x);
  padding-left: var(--panel-pad-x);
}

body.subpage .sub-hero-inner {
  width: 100%;
}

body.subpage .site-header,
body.subpage .site-header.is-scrolled,
body.subpage .site-header.nav-visible {
  padding-right: max(20px, calc((100vw - var(--content-max)) / 2), calc(var(--desktop-gutter) / 2));
  padding-left: max(20px, calc((100vw - var(--content-max)) / 2), calc(var(--desktop-gutter) / 2));
}

@media (max-width: 760px) {
  body.subpage .shop-hero,
  body.subpage .partner-hero,
  body.subpage .resource-hero,
  body.subpage .diagnosis-hero,
  body.subpage .app-landing,
  body.subpage .sub-hero,
  body.subpage .sub-band,
  body.subpage .sub-band-dark,
  body.subpage .sub-cta,
  body.subpage .bottom-footer {
    width: min(1120px, calc(100% - 28px));
  }

  body.subpage .site-header,
  body.subpage .site-header.is-scrolled,
  body.subpage .site-header.nav-visible {
    padding-right: 14px;
    padding-left: 14px;
  }
}

/* Final header override: keep the top navigation dark on every page and scroll state. */
.site-header,
.site-header.is-scrolled,
.site-header.nav-visible,
body.subpage .site-header,
body.subpage .site-header.is-scrolled,
body.subpage .site-header.nav-visible {
  color: #fff !important;
  background: rgba(0, 0, 0, 0.78) !important;
  border-top: 0 !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12) !important;
  box-shadow: none !important;
  backdrop-filter: blur(16px) !important;
}

.site-header .site-nav,
.site-header .site-nav a,
.site-header .site-nav button {
  color: #fff;
}

.site-header .nav-links a[aria-current="page"],
.site-header .nav-actions a[aria-current="page"] {
  color: #8ec5ff;
}

@media (max-width: 900px) {
  .site-header .site-nav {
    color: #fff;
    background:
      linear-gradient(180deg, rgba(8, 16, 24, 0.98), rgba(8, 10, 13, 0.98)),
      #080a0d;
    border-color: rgba(120, 198, 255, 0.22);
  }
}

/* Home-style unification for every subpage. Content stays unchanged. */
body.subpage {
  color: #fff;
  background: #000;
}

body.subpage .subpage-main {
  background:
    linear-gradient(180deg, #000 0, #050505 38%, #000 100%),
    #000;
}

body.subpage .site-header {
  color: #fff;
  background: rgba(0, 0, 0, 0.34);
  border-bottom-color: rgba(255, 255, 255, 0.12);
}

body.subpage .nav-links a[aria-current="page"],
body.subpage .nav-actions a[aria-current="page"] {
  color: #8ec5ff;
  text-shadow: 0 0 18px rgba(22, 143, 255, 0.42);
}

.shop-hero,
.partner-hero,
.resource-hero,
.diagnosis-hero,
.app-landing,
.sub-hero {
  position: relative;
  min-height: clamp(620px, 82svh, 780px);
  padding: calc(var(--header-height) + clamp(62px, 7vw, 98px)) 0 clamp(68px, 7vw, 104px);
  overflow: hidden;
  background:
    radial-gradient(circle at 26% 28%, rgba(22, 143, 255, 0.22), transparent 34%),
    radial-gradient(circle at 78% 26%, rgba(22, 143, 255, 0.1), transparent 30%),
    linear-gradient(112deg, rgba(2, 9, 14, 0.98), rgba(0, 0, 0, 0.98) 50%, rgba(10, 12, 15, 0.98)),
    #000;
}

.shop-hero::before,
.partner-hero::before,
.resource-hero::before,
.diagnosis-hero::before,
.app-landing::before,
.sub-hero::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.026) 1px, transparent 1px);
  background-size: 80px 80px;
  content: "";
  opacity: 0.52;
  pointer-events: none;
}

.shop-hero::after,
.partner-hero::after,
.resource-hero::after,
.diagnosis-hero::after,
.app-landing::after,
.sub-hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 110px;
  background: linear-gradient(180deg, transparent, #000);
  content: "";
  pointer-events: none;
}

.shop-hero-grid,
.partner-hero-grid,
.resource-hero-grid,
.diagnosis-hero-grid,
.app-landing-grid,
.sub-hero-inner {
  position: relative;
  z-index: 1;
}

.shop-hero-grid,
.partner-hero-grid,
.resource-hero-grid,
.diagnosis-hero-grid,
.app-landing-grid {
  grid-template-columns: minmax(0, 1fr) minmax(310px, 0.84fr);
  gap: clamp(34px, 5.8vw, 82px);
  align-items: center;
}

.shop-hero h1,
.partner-hero h1,
.resource-hero h1,
.diagnosis-hero h1,
.app-landing h1,
.sub-hero h1 {
  max-width: 800px;
  color: #fff;
  font-size: clamp(42px, 4.7vw, 68px);
  font-weight: 900;
  line-height: 1.03;
  letter-spacing: 0;
  text-shadow: 0 22px 56px rgba(0, 0, 0, 0.62);
}

.shop-hero p:not(.section-tag),
.partner-hero p:not(.section-tag),
.resource-hero p:not(.section-tag),
.diagnosis-hero p:not(.section-tag),
.app-landing p:not(.section-tag),
.sub-hero p:not(.section-tag) {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(15px, 1.25vw, 18px);
}

body.subpage .section-tag,
body.subpage .modal-kicker {
  color: #7fd0ff;
  letter-spacing: 0;
}

.sub-band,
.sub-band-dark,
.resource-newsletter,
.app-flow-band,
.compare-band,
.partner-proof {
  position: relative;
  padding: clamp(64px, 7vw, 108px) 0;
  background: #000;
  border-top: 0;
}

.sub-band::before,
.sub-band-dark::before {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 14% 12%, rgba(22, 143, 255, 0.09), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.018), transparent 34%);
  content: "";
  pointer-events: none;
}

.sub-band > .container,
.sub-band-dark > .container {
  position: relative;
  z-index: 1;
}

.sub-band-dark {
  background:
    linear-gradient(180deg, #050505, #101010 50%, #050505),
    #101010;
}

.sub-section-head h2,
.section-copy h2,
.sub-cta h2,
.newsletter-panel h2,
.download-options h2,
.resource-featured h2 {
  color: #fff;
  line-height: 1.06;
  text-shadow: 0 18px 48px rgba(0, 0, 0, 0.42);
}

.shop-hero-visual,
.partner-map,
.sub-visual,
.diagnosis-output figure,
.app-flow figure,
.phone-mockup,
.resource-featured,
.newsletter-panel,
.download-card,
.qr-card,
.auth-modal,
.project-start,
.legal-content article,
.product-rail article,
.pricing-card,
.addon-grid article,
.partner-type-grid article,
.partner-scenario-grid article,
.resource-library-grid article,
.diagnosis-check-grid article,
.app-feature-grid article,
.package-compare div,
.partner-benefits div,
.output-list div,
.version-grid a,
.learning-path a,
.faq-list details,
.topic-list a,
.metric-grid div,
.case-grid article,
.quote-wall blockquote {
  border: 1px solid rgba(120, 198, 255, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(12, 23, 32, 0.88), rgba(12, 13, 15, 0.92)),
    #0d0d0d;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.055),
    0 24px 70px rgba(0, 0, 0, 0.34);
}

.shop-hero-visual figcaption,
.partner-map figcaption,
.sub-visual figcaption,
.diagnosis-output figcaption {
  border-color: rgba(120, 198, 255, 0.2);
  background: rgba(5, 10, 15, 0.82);
}

.shop-hero-visual img,
.partner-map img,
.sub-visual img,
.diagnosis-output img,
.app-flow img,
.product-rail img,
.partner-scenario-grid img,
.resource-card-large img {
  filter: contrast(1.08) brightness(0.9) saturate(1.05);
}

.sub-button,
.pricing-card a,
.resource-search a,
.newsletter-panel button,
.diagnosis-form button,
.subpage-form button,
.app-badges a,
.version-grid a,
.resource-library-grid a,
.product-rail a,
.resource-featured a {
  border-radius: 6px;
}

.sub-button-primary,
.pricing-card a,
.resource-search a,
.newsletter-panel button,
.diagnosis-form button,
.subpage-form button {
  color: #041017;
  border: 1px solid rgba(142, 197, 255, 0.92);
  background:
    linear-gradient(135deg, #8ec5ff, #59a9ff),
    #8ec5ff;
  box-shadow: 0 16px 34px rgba(22, 143, 255, 0.24);
}

.sub-button-ghost,
.app-badges a,
.resource-tabs a,
.contact-method-list a {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.065);
}

.plan-badge,
.product-rail span,
.partner-type-grid span,
.resource-library-grid span,
.diagnosis-check-grid span,
.app-feature-grid span {
  color: #8ec5ff;
  border-color: rgba(142, 197, 255, 0.34);
  background: rgba(22, 143, 255, 0.09);
}

.pricing-card.is-featured,
.resource-featured {
  border-color: rgba(142, 197, 255, 0.38);
  background:
    radial-gradient(circle at 18% 0%, rgba(22, 143, 255, 0.22), transparent 34%),
    linear-gradient(180deg, rgba(12, 23, 32, 0.92), rgba(12, 13, 15, 0.94)),
    #0d0d0d;
}

.price,
.case-grid dt,
.metric-grid strong,
.diagnosis-stats strong,
.phone-screen strong {
  color: #fff;
}

.partner-type-grid strong,
.resource-featured span,
.phone-screen em {
  color: #8ec5ff;
}

.phone-mockup {
  border-radius: 8px;
  padding: 0;
}

.phone-screen {
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 0%, rgba(22, 143, 255, 0.25), transparent 36%),
    linear-gradient(180deg, #0d1a27, #07090d);
}

.phone-progress i {
  background: linear-gradient(90deg, #8ec5ff, #168fff);
}

.diagnosis-form,
.subpage-form,
.newsletter-panel form {
  border-color: rgba(120, 198, 255, 0.2);
}

.diagnosis-form input,
.diagnosis-form select,
.diagnosis-form textarea,
.subpage-form input,
.subpage-form select,
.subpage-form textarea,
.resource-search input,
.newsletter-panel input {
  border: 1px solid rgba(120, 198, 255, 0.14);
  background: rgba(5, 8, 12, 0.86);
}

.sub-cta {
  background:
    radial-gradient(circle at 20% 20%, rgba(22, 143, 255, 0.18), transparent 30%),
    linear-gradient(180deg, #101010, #050505),
    #101010;
}

.bottom-footer,
.site-footer {
  background: #0f0f0f;
}

@media (max-width: 900px) {
  .shop-hero-grid,
  .partner-hero-grid,
  .resource-hero-grid,
  .diagnosis-hero-grid,
  .app-landing-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .shop-hero,
  .partner-hero,
  .resource-hero,
  .diagnosis-hero,
  .app-landing,
  .sub-hero {
    min-height: 0;
    padding-top: calc(var(--header-height) + 46px);
    padding-bottom: 58px;
  }

  .shop-hero h1,
  .partner-hero h1,
  .resource-hero h1,
  .diagnosis-hero h1,
  .app-landing h1,
  .sub-hero h1 {
    font-size: clamp(36px, 10.5vw, 48px);
    line-height: 1.04;
  }

  .sub-band,
  .sub-band-dark,
  .resource-newsletter,
  .app-flow-band,
  .compare-band,
  .partner-proof {
    padding: 54px 0;
  }
}

/* Subpage system */
body.subpage {
  color: #f5f7f8;
  background: #080a0d;
}

body.subpage .site-header {
  background: rgba(6, 9, 12, 0.38);
}

body.subpage .site-header.is-scrolled,
body.subpage .site-header.nav-visible {
  color: var(--ink);
  background: rgba(251, 250, 246, 0.95);
}

.nav-links a[aria-current="page"],
.nav-actions a[aria-current="page"] {
  color: #8ec5ff;
}

.subpage-main {
  overflow: hidden;
  background: #080a0d;
}

.sub-hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: min(760px, 82svh);
  padding: calc(var(--header-height) + 84px) 0 92px;
  background:
    linear-gradient(90deg, rgba(5, 8, 12, 0.94) 0%, rgba(5, 8, 12, 0.78) 42%, rgba(5, 8, 12, 0.18) 100%),
    linear-gradient(180deg, rgba(5, 8, 12, 0.15), #080a0d 96%),
    var(--hero-image) center / cover no-repeat;
}

.sub-hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 90px;
  background: linear-gradient(180deg, transparent, #080a0d);
  content: "";
}

.sub-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
}

.sub-hero h1,
.sub-section-head h2,
.section-copy h2,
.sub-cta h2 {
  margin: 0;
  color: #fff;
  letter-spacing: 0;
  line-height: 1.05;
}

.sub-hero h1 {
  font-size: clamp(46px, 5vw, 76px);
}

.sub-hero p:not(.section-tag) {
  max-width: 690px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(17px, 1.35vw, 21px);
  line-height: 1.8;
}

.sub-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.sub-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 900;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background 160ms ease;
}

.sub-button:hover,
.sub-button:focus-visible {
  transform: translateY(-2px);
}

.sub-button-primary {
  color: #041017;
  background: #8ec5ff;
  border: 1px solid #8ec5ff;
}

.sub-button-ghost {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.26);
}

.sub-band {
  padding: clamp(68px, 8vw, 118px) 0;
  background: #080a0d;
}

.sub-band + .sub-band {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.sub-band-dark {
  background:
    linear-gradient(135deg, rgba(22, 143, 255, 0.08), transparent 34%),
    #101317;
}

.section-split {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(34px, 6vw, 90px);
  align-items: center;
}

.section-split.media-left {
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
}

.section-copy > p:not(.section-tag),
.sub-section-head h2 + p {
  color: rgba(255, 255, 255, 0.66);
}

.section-copy h2,
.sub-section-head h2,
.sub-cta h2 {
  font-size: clamp(34px, 4vw, 56px);
}

.section-copy > p:not(.section-tag) {
  margin: 20px 0 0;
  font-size: 17px;
  line-height: 1.85;
}

.sub-section-head {
  max-width: 760px;
  margin-bottom: clamp(28px, 4vw, 54px);
}

.sub-section-head.compact {
  margin-bottom: 28px;
}

.step-grid,
.feature-grid,
.service-suite,
.case-grid,
.resource-grid {
  display: grid;
  gap: 18px;
}

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

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

.step-grid article,
.feature-grid article,
.case-grid article,
.service-suite article,
.resource-grid article,
.topic-list a,
.faq-list details,
.legal-content article {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.step-grid article,
.feature-grid article {
  min-height: 210px;
  padding: 28px;
}

.step-grid span,
.feature-grid span,
.case-grid > article > span,
.resource-grid article > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 11px;
  color: #8ec5ff;
  font-size: 12px;
  font-weight: 900;
  border: 1px solid rgba(142, 197, 255, 0.35);
  border-radius: 999px;
  background: rgba(142, 197, 255, 0.08);
}

.step-grid h3,
.feature-grid h3,
.case-grid h3,
.service-suite h3,
.resource-grid h3 {
  margin: 22px 0 0;
  color: #fff;
  font-size: 22px;
  line-height: 1.25;
}

.step-grid p,
.feature-grid p,
.case-grid p,
.service-suite p,
.resource-grid p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 15px;
  line-height: 1.75;
}

.service-suite,
.case-grid,
.resource-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-suite article,
.resource-grid article {
  overflow: hidden;
}

.service-suite img,
.resource-grid img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.service-suite article,
.resource-grid article {
  padding-bottom: 28px;
}

.service-suite h3,
.service-suite p,
.service-suite ul,
.resource-grid span,
.resource-grid h3,
.resource-grid p,
.resource-grid a {
  margin-right: 26px;
  margin-left: 26px;
}

.service-suite ul {
  display: grid;
  gap: 9px;
  margin-top: 20px;
  padding: 0;
  color: rgba(255, 255, 255, 0.72);
  list-style: none;
}

.service-suite li::before {
  color: #8ec5ff;
  content: "• ";
}

.resource-grid span {
  margin-top: 24px;
}

.resource-grid a {
  display: inline-flex;
  margin-top: 22px;
  color: #8ec5ff;
  font-weight: 900;
}

.sub-visual {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #15191f;
}

.sub-visual img {
  width: 100%;
  min-height: 430px;
  object-fit: cover;
}

.sub-visual figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding: 16px 18px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(4, 8, 12, 0.76);
  backdrop-filter: blur(10px);
}

.sub-visual figcaption strong {
  font-size: 18px;
}

.sub-visual figcaption span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
}

.timeline-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.timeline-list article {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.timeline-list span {
  color: #8ec5ff;
  font-weight: 900;
}

.timeline-list p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
}

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

.metric-grid div,
.case-grid dl div,
.proof-metrics div {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
}

.metric-grid strong {
  display: block;
  color: #fff;
  font-size: 28px;
  line-height: 1;
}

.metric-grid span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
}

.case-grid article {
  padding: 30px;
}

.case-grid dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 24px 0 0;
}

.case-grid dt {
  color: #fff;
  font-size: 26px;
  font-weight: 900;
  line-height: 1;
}

.case-grid dd {
  margin: 7px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
}

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

.quote-wall blockquote {
  margin: 0;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.quote-wall p {
  margin: 0;
  color: #fff;
  font-size: 22px;
  line-height: 1.65;
}

.quote-wall cite {
  display: block;
  margin-top: 20px;
  color: #8ec5ff;
  font-style: normal;
  font-weight: 900;
}

.topic-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.topic-list a {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 18px;
  padding: 18px;
}

.topic-list strong {
  color: #fff;
}

.topic-list span {
  color: rgba(255, 255, 255, 0.62);
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 1.12fr);
  gap: clamp(34px, 6vw, 90px);
  align-items: start;
}

.subpage-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
}

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

.subpage-form span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
}

.subpage-form input,
.subpage-form select,
.subpage-form textarea {
  width: 100%;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  background: rgba(5, 8, 12, 0.82);
}

.subpage-form input,
.subpage-form select {
  height: 48px;
  padding: 0 14px;
}

.subpage-form textarea {
  resize: vertical;
  padding: 13px 14px;
}

.subpage-form input:focus,
.subpage-form select:focus,
.subpage-form textarea:focus {
  outline: 0;
  border-color: #8ec5ff;
  box-shadow: 0 0 0 3px rgba(142, 197, 255, 0.16);
}

.subpage-form .form-wide,
.subpage-form button {
  grid-column: 1 / -1;
}

.subpage-form button {
  min-height: 50px;
  color: #041017;
  font-weight: 900;
  border: 0;
  border-radius: 6px;
  background: #8ec5ff;
  cursor: pointer;
}

.contact-method-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.contact-method-list a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 0 15px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.055);
}

.faq-list {
  max-width: 940px;
}

.faq-list details {
  padding: 22px 24px;
}

.faq-list details + details {
  margin-top: 12px;
}

.faq-list summary {
  color: #fff;
  font-size: 18px;
  font-weight: 900;
  cursor: pointer;
}

.faq-list p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.66);
}

.app-download-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 320px);
  gap: clamp(34px, 6vw, 90px);
  align-items: center;
}

.app-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.app-badges a {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0 20px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
  font-weight: 900;
}

.qr-card {
  display: grid;
  justify-items: center;
  gap: 10px;
  padding: 34px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: #fff;
}

.qr-card img {
  width: min(170px, 70vw);
  aspect-ratio: 1;
  object-fit: contain;
}

.qr-card strong {
  color: #0f1720;
  font-size: 20px;
}

.qr-card span {
  color: #617080;
  font-size: 13px;
}

.legal-hero {
  min-height: 520px;
}

.legal-content {
  max-width: 920px;
}

.legal-content article {
  padding: 28px;
}

.legal-content article + article {
  margin-top: 14px;
}

.legal-content h2 {
  margin: 0;
  color: #fff;
  font-size: 24px;
}

.legal-content p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.85;
}

.legal-content a {
  color: #8ec5ff;
  font-weight: 900;
}

.sub-cta {
  padding: clamp(58px, 7vw, 96px) 0;
  background:
    linear-gradient(120deg, rgba(142, 197, 255, 0.16), rgba(217, 155, 43, 0.08)),
    #101317;
}

.sub-cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
}

.sub-cta p {
  max-width: 740px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.66);
}

@media (max-width: 1050px) {
  .step-grid,
  .step-grid.four,
  .feature-grid,
  .service-suite,
  .case-grid,
  .resource-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-split,
  .section-split.media-left,
  .contact-panel,
  .app-download-panel {
    grid-template-columns: 1fr;
  }

  .section-split.media-left .sub-visual {
    order: 2;
  }
}

@media (max-width: 700px) {
  .sub-hero {
    min-height: 640px;
    padding: calc(var(--header-height) + 54px) 0 72px;
    background:
      linear-gradient(90deg, rgba(5, 8, 12, 0.95), rgba(5, 8, 12, 0.78)),
      linear-gradient(180deg, rgba(5, 8, 12, 0.15), #080a0d 96%),
      var(--hero-image) center / cover no-repeat;
  }

  .sub-hero h1 {
    font-size: clamp(38px, 12vw, 54px);
  }

  .sub-button,
  .sub-hero-actions,
  .sub-hero-actions .sub-button {
    width: 100%;
  }

  .step-grid,
  .step-grid.four,
  .feature-grid,
  .service-suite,
  .case-grid,
  .resource-grid,
  .quote-wall,
  .metric-grid,
  .case-grid dl,
  .subpage-form,
  .sub-cta-inner {
    grid-template-columns: 1fr;
  }

  .subpage-form button,
  .subpage-form .form-wide {
    grid-column: auto;
  }

  .topic-list a,
  .timeline-list article {
    grid-template-columns: 1fr;
  }

  .sub-visual img {
    min-height: 320px;
  }

  .sub-visual figcaption {
    position: static;
    border-radius: 0;
  }

  .sub-cta-inner .sub-button {
    justify-self: stretch;
  }
}

/* Redesigned commerce, partner, resource, diagnosis and app pages. */
.shop-hero,
.partner-hero,
.resource-hero,
.diagnosis-hero,
.app-landing {
  position: relative;
  padding: calc(var(--header-height) + 74px) 0 clamp(70px, 8vw, 118px);
  color: #fff;
  background:
    radial-gradient(circle at 18% 20%, rgba(22, 143, 255, 0.22), transparent 32%),
    radial-gradient(circle at 84% 22%, rgba(217, 155, 43, 0.1), transparent 30%),
    linear-gradient(135deg, #071019, #07090d 54%, #11120d);
}

.shop-hero::after,
.partner-hero::after,
.resource-hero::after,
.diagnosis-hero::after,
.app-landing::after {
  position: absolute;
  inset: auto 0 0;
  height: 90px;
  background: linear-gradient(180deg, transparent, #080a0d);
  content: "";
  pointer-events: none;
}

.shop-hero-grid,
.partner-hero-grid,
.resource-hero-grid,
.diagnosis-hero-grid,
.app-landing-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.72fr);
  gap: clamp(30px, 5vw, 72px);
  align-items: center;
}

.shop-hero h1,
.partner-hero h1,
.resource-hero h1,
.diagnosis-hero h1,
.app-landing h1 {
  max-width: 780px;
  margin: 0;
  color: #fff;
  font-size: clamp(40px, 4vw, 58px);
  line-height: 1.06;
  letter-spacing: 0;
}

.shop-hero p:not(.section-tag),
.partner-hero p:not(.section-tag),
.resource-hero p:not(.section-tag),
.diagnosis-hero p:not(.section-tag),
.app-landing p:not(.section-tag) {
  max-width: 690px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(16px, 1.3vw, 20px);
  line-height: 1.85;
}

.shop-hero-visual,
.partner-map,
.diagnosis-output figure,
.app-flow figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background: #111820;
}

.shop-hero-visual img,
.partner-map img,
.diagnosis-output img,
.app-flow img {
  width: 100%;
  min-height: 430px;
  object-fit: cover;
}

.shop-hero-visual figcaption,
.partner-map figcaption,
.diagnosis-output figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: grid;
  gap: 4px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(5, 8, 12, 0.78);
  backdrop-filter: blur(10px);
}

.shop-hero-visual span,
.partner-map span,
.diagnosis-output span {
  color: rgba(255, 255, 255, 0.64);
  font-size: 13px;
}

.shop-hero-visual strong,
.partner-map strong,
.diagnosis-output strong {
  color: #fff;
  font-size: 20px;
}

.product-rail,
.pricing-grid,
.addon-grid,
.partner-type-grid,
.partner-scenario-grid,
.diagnosis-check-grid,
.app-feature-grid,
.resource-library-grid {
  display: grid;
  gap: 18px;
}

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

.product-rail article,
.pricing-card,
.addon-grid article,
.partner-type-grid article,
.partner-scenario-grid article,
.resource-library-grid article,
.diagnosis-check-grid article,
.app-feature-grid article,
.resource-featured,
.download-card,
.version-grid a,
.newsletter-panel,
.phone-mockup {
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.product-rail article {
  overflow: hidden;
  padding-bottom: 24px;
}

.product-rail img,
.partner-scenario-grid img {
  width: 100%;
  height: 166px;
  object-fit: cover;
}

.product-rail span,
.partner-type-grid span,
.resource-library-grid span,
.diagnosis-check-grid span,
.app-feature-grid span,
.plan-badge {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 11px;
  color: #8ec5ff;
  font-size: 12px;
  font-weight: 900;
  border: 1px solid rgba(142, 197, 255, 0.32);
  border-radius: 999px;
  background: rgba(142, 197, 255, 0.08);
}

.product-rail span,
.product-rail h3,
.product-rail p,
.product-rail a {
  margin-right: 20px;
  margin-left: 20px;
}

.product-rail span {
  margin-top: 20px;
}

.product-rail h3,
.pricing-card h3,
.addon-grid h3,
.partner-type-grid h3,
.partner-scenario-grid h3,
.resource-library-grid h3,
.diagnosis-check-grid h3,
.app-feature-grid h3 {
  margin-top: 18px;
  margin-bottom: 0;
  color: #fff;
  font-size: 22px;
  line-height: 1.25;
}

.product-rail p,
.pricing-card p,
.addon-grid p,
.partner-type-grid p,
.partner-scenario-grid p,
.resource-library-grid p,
.diagnosis-check-grid p,
.app-feature-grid p {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 15px;
  line-height: 1.72;
}

.product-rail a,
.resource-library-grid a,
.pricing-card a {
  display: inline-flex;
  margin-top: 20px;
  color: #8ec5ff;
  font-weight: 900;
}

.shop-head p {
  max-width: 680px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.64);
}

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

.pricing-card {
  position: relative;
  display: grid;
  align-content: start;
  min-height: 480px;
  padding: 26px;
}

.pricing-card.is-featured {
  border-color: rgba(142, 197, 255, 0.52);
  background:
    linear-gradient(180deg, rgba(22, 143, 255, 0.18), rgba(255, 255, 255, 0.045)),
    rgba(255, 255, 255, 0.045);
  box-shadow: 0 24px 70px rgba(22, 143, 255, 0.16);
}

.price {
  margin: 22px 0 0;
  color: #fff;
  font-size: clamp(34px, 3.2vw, 46px);
  font-weight: 900;
  line-height: 1;
}

.price span {
  margin-left: 4px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
}

.pricing-card ul {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.72);
  list-style: none;
}

.pricing-card li::before {
  color: #8ec5ff;
  content: "• ";
}

.pricing-card a {
  justify-content: center;
  align-self: end;
  min-height: 46px;
  margin-top: 28px;
  color: #041017;
  border-radius: 6px;
  background: #8ec5ff;
}

.compare-layout,
.partner-program,
.partner-apply,
.diagnosis-output,
.app-download-redesign,
.app-flow {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(32px, 6vw, 86px);
  align-items: center;
}

.package-compare,
.partner-benefits,
.output-list,
.version-grid {
  display: grid;
  gap: 12px;
}

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

.package-compare div,
.partner-benefits div,
.output-list div,
.addon-grid article,
.diagnosis-check-grid article,
.app-feature-grid article {
  padding: 24px;
}

.package-compare div,
.partner-benefits div,
.output-list div {
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.package-compare strong,
.partner-benefits strong,
.output-list strong {
  display: block;
  color: #fff;
  font-size: 20px;
}

.package-compare span,
.partner-benefits span,
.output-list span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.62);
}

.addon-grid,
.partner-type-grid,
.diagnosis-check-grid,
.app-feature-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.partner-type-grid article,
.partner-scenario-grid article {
  padding: 26px;
}

.partner-type-grid strong {
  display: block;
  margin-top: 22px;
  color: #f3c46a;
  font-size: 13px;
  line-height: 1.6;
}

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

.partner-scenario-grid article {
  overflow: hidden;
  padding: 0 0 24px;
}

.partner-scenario-grid h3,
.partner-scenario-grid p {
  margin-right: 24px;
  margin-left: 24px;
}

.resource-search {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  max-width: 680px;
  margin-top: 34px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
}

.resource-search input,
.newsletter-panel input {
  min-width: 0;
  height: 46px;
  color: #fff;
  border: 0;
  border-radius: 6px;
  background: rgba(4, 8, 12, 0.72);
  padding: 0 14px;
}

.resource-search a,
.newsletter-panel button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  color: #041017;
  border: 0;
  border-radius: 6px;
  background: #8ec5ff;
  font-weight: 900;
}

.resource-featured {
  padding: 30px;
  background:
    linear-gradient(180deg, rgba(217, 155, 43, 0.12), rgba(255, 255, 255, 0.045)),
    rgba(255, 255, 255, 0.045);
}

.resource-featured span {
  color: #f3c46a;
  font-weight: 900;
}

.resource-featured h2 {
  margin: 18px 0 0;
  color: #fff;
  font-size: 32px;
  line-height: 1.16;
}

.resource-featured a {
  display: inline-flex;
  margin-top: 24px;
  color: #8ec5ff;
  font-weight: 900;
}

.resource-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.resource-tabs a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 0 16px;
  color: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
}

.resource-library-grid {
  grid-template-columns: 1.25fr 0.75fr 0.75fr;
}

.resource-library-grid article {
  padding: 26px;
}

.resource-card-large {
  grid-row: span 2;
  padding: 0 !important;
  overflow: hidden;
}

.resource-card-large img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.resource-card-large div {
  padding: 26px;
}

.learning-path {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.learning-path a {
  display: grid;
  gap: 6px;
  padding: 18px;
  color: inherit;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.learning-path strong {
  color: #fff;
}

.learning-path span {
  color: rgba(255, 255, 255, 0.62);
}

.newsletter-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: 28px;
  align-items: center;
  padding: clamp(28px, 4vw, 46px);
  background:
    radial-gradient(circle at 84% 26%, rgba(217, 155, 43, 0.16), transparent 34%),
    rgba(255, 255, 255, 0.045);
}

.newsletter-panel h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(30px, 3.6vw, 48px);
}

.newsletter-panel p:not(.section-tag) {
  color: rgba(255, 255, 255, 0.66);
}

.newsletter-panel form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.diagnosis-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 620px;
  margin-top: 34px;
}

.diagnosis-stats div {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
}

.diagnosis-stats strong {
  display: block;
  color: #fff;
  font-size: 28px;
}

.diagnosis-stats span {
  color: rgba(255, 255, 255, 0.62);
}

.diagnosis-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 15px;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid rgba(142, 197, 255, 0.22);
  border-radius: 8px;
  background: rgba(7, 14, 22, 0.82);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.32);
}

.diagnosis-form h2 {
  grid-column: 1 / -1;
  margin: 0 0 8px;
  color: #fff;
  font-size: 26px;
}

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

.diagnosis-form span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
}

.diagnosis-form input,
.diagnosis-form select,
.diagnosis-form textarea {
  width: 100%;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  background: rgba(5, 8, 12, 0.82);
}

.diagnosis-form input,
.diagnosis-form select {
  height: 48px;
  padding: 0 14px;
}

.diagnosis-form textarea {
  padding: 13px 14px;
}

.diagnosis-form .form-wide,
.diagnosis-form button {
  grid-column: 1 / -1;
}

.diagnosis-form button {
  min-height: 50px;
  color: #041017;
  font-weight: 900;
  border: 0;
  border-radius: 6px;
  background: #8ec5ff;
}

.diagnosis-output {
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.92fr);
}

.diagnosis-output figure {
  min-height: 430px;
}

.phone-mockup {
  justify-self: center;
  width: min(340px, 100%);
  padding: 16px;
  border-radius: 34px;
  background:
    linear-gradient(145deg, rgba(142, 197, 255, 0.18), rgba(255, 255, 255, 0.035)),
    #06090e;
  box-shadow: 0 36px 100px rgba(0, 0, 0, 0.42);
}

.phone-screen {
  display: grid;
  gap: 18px;
  min-height: 560px;
  padding: 28px 22px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 50% 0%, rgba(22, 143, 255, 0.28), transparent 36%),
    linear-gradient(180deg, #0d1a27, #07090d);
}

.phone-screen > span {
  color: #8ec5ff;
  font-size: 13px;
  font-weight: 900;
}

.phone-screen strong {
  color: #fff;
  font-size: 28px;
  line-height: 1.16;
}

.phone-progress {
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
}

.phone-progress i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #8ec5ff, #f3c46a);
}

.phone-screen ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.phone-screen li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
}

.phone-screen b {
  color: #fff;
}

.phone-screen em {
  color: #f3c46a;
  font-style: normal;
}

.app-download-redesign {
  grid-template-columns: minmax(240px, 320px) minmax(0, 1fr);
}

.download-card {
  display: grid;
  justify-items: center;
  gap: 12px;
  padding: 34px;
  text-align: center;
  background: #fff;
}

.download-card img {
  width: min(180px, 70vw);
  aspect-ratio: 1;
  object-fit: contain;
}

.download-card strong {
  color: #101722;
  font-size: 21px;
}

.download-card span {
  color: #617080;
  font-size: 13px;
}

.download-options h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.06;
}

.version-grid {
  margin-top: 28px;
}

.version-grid a {
  display: grid;
  gap: 6px;
  padding: 18px;
  color: inherit;
}

.version-grid strong {
  color: #fff;
  font-size: 19px;
}

.version-grid span {
  color: rgba(255, 255, 255, 0.62);
}

.app-flow figure img {
  min-height: 360px;
}

@media (max-width: 1150px) {
  .product-rail,
  .pricing-grid,
  .addon-grid,
  .partner-type-grid,
  .diagnosis-check-grid,
  .app-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .resource-library-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 900px) {
  .shop-hero-grid,
  .partner-hero-grid,
  .resource-hero-grid,
  .diagnosis-hero-grid,
  .app-landing-grid,
  .compare-layout,
  .partner-program,
  .partner-apply,
  .diagnosis-output,
  .app-download-redesign,
  .app-flow,
  .newsletter-panel {
    grid-template-columns: 1fr;
  }

  .partner-scenario-grid {
    grid-template-columns: 1fr;
  }

  .phone-mockup {
    justify-self: start;
  }
}

@media (max-width: 640px) {
  .shop-hero,
  .partner-hero,
  .resource-hero,
  .diagnosis-hero,
  .app-landing {
    padding-top: calc(var(--header-height) + 48px);
  }

  .shop-hero h1,
  .partner-hero h1,
  .resource-hero h1,
  .diagnosis-hero h1,
  .app-landing h1 {
    font-size: clamp(38px, 11vw, 52px);
  }

  .product-rail,
  .pricing-grid,
  .addon-grid,
  .partner-type-grid,
  .diagnosis-check-grid,
  .app-feature-grid,
  .package-compare,
  .resource-library-grid,
  .diagnosis-stats,
  .diagnosis-form,
  .newsletter-panel form,
  .resource-search {
    grid-template-columns: 1fr;
  }

  .diagnosis-form .form-wide,
  .diagnosis-form button {
    grid-column: auto;
  }

  .resource-card-large {
    grid-row: auto;
  }

  .pricing-card {
    min-height: 0;
  }

  .phone-screen {
    min-height: 480px;
  }

  .shop-hero-visual img,
  .partner-map img,
  .diagnosis-output img,
  .app-flow img {
    min-height: 300px;
  }

  .shop-hero-visual figcaption,
  .partner-map figcaption,
  .diagnosis-output figcaption {
    position: static;
    border-radius: 0;
  }
}

/* One-piece growth suite: the three blocks become one continuous system. */
.growth-suite {
  position: relative;
  width: min(var(--content-max), calc(100% - var(--desktop-gutter)));
  margin: calc(var(--section-gap) * 2) auto 0;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 18% 8%, rgba(22, 143, 255, 0.22), transparent 28%),
    radial-gradient(circle at 80% 48%, rgba(22, 143, 255, 0.16), transparent 32%),
    linear-gradient(112deg, #0d1720, #0f0f0f 44%, #1a160d);
  border: 1px solid rgba(120, 198, 255, 0.2);
  border-radius: 8px;
  box-shadow: 0 32px 100px rgba(0, 0, 0, 0.52);
}

.growth-suite::before {
  position: absolute;
  top: 58px;
  bottom: 58px;
  left: clamp(30px, 4vw, 58px);
  width: 1px;
  background:
    linear-gradient(180deg, transparent, rgba(120, 198, 255, 0.62) 12%, rgba(120, 198, 255, 0.22) 88%, transparent);
  content: "";
}

.growth-suite::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 76px 76px;
  content: "";
  opacity: 0.34;
  pointer-events: none;
}

.growth-suite .suite-step {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 0;
  background: transparent;
}

.growth-suite .suite-step + .suite-step {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.growth-suite .suite-step::before {
  position: absolute;
  top: clamp(44px, 5vw, 78px);
  left: clamp(18px, 4vw, 46px);
  z-index: 3;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  color: #fff;
  background:
    linear-gradient(135deg, #168fff, #0f5fd8),
    #168fff;
  border: 1px solid rgba(160, 219, 255, 0.75);
  border-radius: 50%;
  box-shadow: 0 0 28px rgba(22, 143, 255, 0.48);
  content: attr(data-suite-step);
  font-size: 11px;
  font-weight: 900;
}

.growth-suite .suite-step::after {
  position: absolute;
  top: clamp(44px, 5vw, 78px);
  left: clamp(56px, 7vw, 92px);
  z-index: 3;
  color: rgba(255, 255, 255, 0.42);
  content: attr(data-suite-label);
  font-size: 12px;
  font-weight: 900;
}

.growth-suite .suite-step > .container {
  width: 100%;
  margin: 0;
  padding-right: var(--panel-pad-x);
  padding-left: clamp(82px, 9vw, 128px);
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.growth-suite .impact-panel {
  isolation: auto;
  overflow: visible;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.growth-suite .impact-panel::before,
.growth-suite .impact-panel::after,
.growth-suite .testimonial-proof::before {
  display: none;
}

.growth-suite .response-dark + .why-dark,
.growth-suite .bottom-start {
  margin-top: 0;
}

.growth-suite .impact-response,
.growth-suite .impact-system,
.growth-suite .impact-proof {
  padding-top: clamp(66px, 7vw, 104px);
  padding-bottom: clamp(54px, 6vw, 86px);
}

.growth-suite .impact-response .capability-grid,
.growth-suite .impact-rail,
.growth-suite .impact-proof .proof-metrics {
  background:
    linear-gradient(90deg, rgba(22, 143, 255, 0.13), rgba(255, 255, 255, 0.045)),
    rgba(12, 18, 22, 0.82);
  backdrop-filter: blur(14px);
}

.growth-suite .response-visual,
.growth-suite .why-system-card,
.growth-suite .proof-visual {
  background: rgba(3, 7, 12, 0.82);
}

.growth-suite .why-system-card {
  order: 2;
}

.growth-suite .impact-rail {
  order: 3;
}

.growth-suite .why-bottom-line {
  order: 4;
}

.growth-suite .why-module-grid {
  display: none;
}

@media (max-width: 900px) {
  .growth-suite {
    width: min(1120px, calc(100% - 28px));
  }

  .growth-suite .suite-step > .container {
    padding-left: clamp(64px, 11vw, 96px);
  }
}

@media (max-width: 640px) {
  .growth-suite::before {
    left: 27px;
  }

  .growth-suite .suite-step::before {
    left: 13px;
  }

  .growth-suite .suite-step::after {
    left: 52px;
  }

  .growth-suite .suite-step > .container {
    padding-right: 20px;
    padding-left: 52px;
  }

  .growth-suite .impact-response,
  .growth-suite .impact-system,
  .growth-suite .impact-proof {
    padding-top: 70px;
    padding-bottom: 46px;
  }

  .growth-suite .response-actions {
    flex-direction: column;
  }

  .growth-suite .response-actions a {
    width: 100%;
  }
}

/* Growth command center: single-piece replacement for the previous three loose blocks. */
.growth-command {
  position: relative;
  margin-top: calc(var(--section-gap) * 2);
  color: #fff;
  background: transparent;
}

.growth-command-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: clamp(28px, 4vw, 58px);
  overflow: hidden;
  padding: clamp(58px, 7vw, 96px) var(--panel-pad-x) clamp(42px, 5vw, 68px);
  background:
    radial-gradient(circle at 18% 16%, rgba(22, 143, 255, 0.28), transparent 32%),
    radial-gradient(circle at 82% 30%, rgba(22, 143, 255, 0.16), transparent 30%),
    linear-gradient(112deg, #0b1720, #0d0f11 44%, #19150d);
  border: 1px solid rgba(120, 198, 255, 0.22);
  border-radius: 8px;
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.55);
  isolation: isolate;
}

.growth-command-inner::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 78px 78px;
  content: "";
  opacity: 0.38;
}

.growth-command-inner::after {
  position: absolute;
  right: -18%;
  bottom: -30%;
  z-index: -1;
  width: 62%;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(22, 143, 255, 0.26), transparent 64%);
  content: "";
  filter: blur(12px);
}

.anchor-target {
  position: absolute;
  top: calc(var(--header-height) * -1);
}

.growth-command-copy {
  align-self: center;
  position: relative;
  z-index: 2;
}

.growth-command-copy h2 {
  max-width: 760px;
  margin: 0;
  color: #fff;
  font-size: clamp(42px, 5.8vw, 78px);
  line-height: 0.96;
  letter-spacing: 0;
}

.growth-command-copy > p:not(.section-tag) {
  max-width: 600px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
  line-height: 1.86;
}

.growth-command-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.growth-command-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 136px;
  min-height: 46px;
  padding: 12px 20px;
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  font-weight: 900;
}

.growth-command-actions a:first-child {
  background:
    linear-gradient(135deg, #168fff, #0f5fd8 58%, #071a33),
    #168fff;
  border-color: rgba(160, 219, 255, 0.78);
  box-shadow: 0 16px 36px rgba(22, 143, 255, 0.28);
}

.command-stage {
  position: relative;
  z-index: 1;
  align-self: center;
  margin: 0;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: #05070a;
  border: 1px solid rgba(120, 198, 255, 0.22);
  border-radius: 8px;
  box-shadow:
    0 30px 90px rgba(0, 0, 0, 0.58),
    0 0 42px rgba(22, 143, 255, 0.16);
}

.command-stage img {
  width: 118%;
  max-width: none;
  height: 100%;
  object-fit: cover;
  object-position: 48% center;
  transform: translateX(-9%);
}

.command-stage::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.62)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.28), transparent 38%, rgba(0, 0, 0, 0.2));
  content: "";
}

.command-stage figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 1;
  display: grid;
  gap: 5px;
  padding: 16px 18px;
  background: rgba(5, 11, 18, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  backdrop-filter: blur(14px);
}

.command-stage figcaption span {
  color: #78c6ff;
  font-size: 11px;
  font-weight: 900;
}

.command-stage figcaption strong {
  color: #fff;
  font-size: 15px;
  line-height: 1.45;
}

.command-path {
  position: relative;
  z-index: 2;
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: 10px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(22, 143, 255, 0.14), rgba(255, 255, 255, 0.045)),
    rgba(12, 18, 22, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 8px;
  backdrop-filter: blur(14px);
}

.command-path::before {
  position: absolute;
  top: 34px;
  right: 9%;
  left: 9%;
  height: 1px;
  background: linear-gradient(90deg, rgba(120, 198, 255, 0.9), rgba(120, 198, 255, 0.18));
  content: "";
}

.command-path article {
  position: relative;
  min-height: 166px;
  padding: 22px;
  border-right: 1px solid rgba(255, 255, 255, 0.09);
}

.command-path article:last-child {
  border-right: 0;
}

.command-path span {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  color: #fff;
  background:
    linear-gradient(135deg, #168fff, #0f5fd8),
    #168fff;
  border: 1px solid rgba(160, 219, 255, 0.75);
  border-radius: 50%;
  box-shadow: 0 0 24px rgba(22, 143, 255, 0.42);
  font-size: 11px;
  font-weight: 900;
}

.command-path strong {
  display: block;
  margin-top: 26px;
  color: #fff;
  font-size: 22px;
  line-height: 1.2;
}

.command-path p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  line-height: 1.7;
}

.command-proof {
  position: relative;
  z-index: 2;
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin-top: 2px;
  padding: 22px 24px;
  background:
    linear-gradient(90deg, rgba(22, 143, 255, 0.14), rgba(255, 255, 255, 0.04)),
    rgba(10, 14, 18, 0.88);
  border: 1px solid rgba(120, 198, 255, 0.16);
  border-radius: 8px;
}

.command-proof p {
  margin: 0;
  color: #fff;
  font-size: clamp(20px, 2.3vw, 30px);
  font-weight: 900;
  line-height: 1.24;
}

.command-proof div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.command-proof span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  font-size: 12px;
  font-weight: 900;
}

@media (max-width: 900px) {
  .growth-command-inner {
    grid-template-columns: 1fr;
  }

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

  .command-path article:nth-child(2n) {
    border-right: 0;
  }

  .command-path article:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  }

  .command-path::before {
    display: none;
  }
}

@media (max-width: 640px) {
  .growth-command-inner {
    padding: 42px 20px;
  }

  .growth-command-copy h2 {
    font-size: 38px;
    line-height: 1.03;
  }

  .growth-command-copy > p:not(.section-tag) {
    font-size: 14px;
  }

  .growth-command-actions {
    display: grid;
  }

  .command-stage {
    aspect-ratio: 16 / 11;
  }

  .command-path {
    grid-template-columns: 1fr;
  }

  .command-path article,
  .command-path article:nth-child(2n) {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  }

  .command-path article:last-child {
    border-bottom: 0;
  }

  .command-path strong {
    margin-top: 18px;
  }

  .command-proof {
    align-items: stretch;
    flex-direction: column;
  }

  .command-proof div {
    justify-content: flex-start;
  }
}

/* Poster mode: make the growth command a single emotional impact scene. */
.growth-command-inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: clamp(700px, 82svh, 860px);
  padding: clamp(44px, 5vw, 72px);
  background: #05070a;
}

.growth-command-inner::before {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    radial-gradient(circle at 18% 18%, rgba(22, 143, 255, 0.28), transparent 34%);
  background-size: 84px 84px, 84px 84px, auto;
  opacity: 0.72;
}

.growth-command-inner::after {
  display: none;
}

.command-stage {
  position: absolute;
  inset: 0;
  z-index: 0;
  aspect-ratio: auto;
  margin: 0;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.command-stage img {
  width: 100%;
  height: 100%;
  object-position: 52% center;
  transform: none;
  filter: contrast(1.12) brightness(0.86) saturate(1.08);
}

.command-stage::after {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.54) 42%, rgba(0, 0, 0, 0.2)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.7));
}

.command-stage figcaption {
  right: clamp(22px, 4vw, 58px);
  bottom: clamp(150px, 18vw, 220px);
  left: auto;
  width: min(360px, calc(100% - 44px));
}

.growth-command-copy {
  width: min(690px, 100%);
}

.growth-command-copy h2 {
  font-size: clamp(46px, 7vw, 94px);
  line-height: 0.92;
  text-wrap: balance;
}

.growth-command-copy > p:not(.section-tag) {
  max-width: 560px;
  font-size: clamp(15px, 1.5vw, 18px);
}

.growth-command-actions {
  margin-top: 28px;
}

.command-path,
.command-proof,
.growth-command-copy {
  position: relative;
  z-index: 2;
}

.command-path {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: clamp(34px, 9vw, 88px);
  background: rgba(6, 13, 20, 0.76);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.34);
}

.command-path article {
  min-height: 128px;
}

.command-path strong {
  margin-top: 20px;
  font-size: clamp(22px, 2vw, 30px);
}

.command-proof {
  margin-top: 14px;
  background: rgba(6, 13, 20, 0.78);
}

@media (max-width: 900px) {
  .growth-command-inner {
    min-height: 0;
  }

  .command-stage {
    position: relative;
    aspect-ratio: 16 / 10;
    order: 2;
    margin-top: 28px;
    overflow: hidden;
    border: 1px solid rgba(120, 198, 255, 0.22);
    border-radius: 8px;
  }

  .growth-command-copy {
    order: 1;
  }

  .command-path {
    order: 3;
    margin-top: 18px;
  }

  .command-proof {
    order: 4;
  }

  .command-stage figcaption {
    right: 16px;
    bottom: 16px;
    left: 16px;
    width: auto;
  }
}

@media (max-width: 640px) {
  .growth-command-inner {
    padding: 36px 20px;
  }

  .growth-command-copy h2 {
    font-size: 42px;
  }

  .command-stage {
    aspect-ratio: 16 / 11.2;
  }

  .command-path {
    grid-template-columns: 1fr;
  }

  .command-path article {
    min-height: 0;
  }
}

/* Keep poster mode intact on narrow screens too. */
@media (max-width: 900px) {
  .growth-command-inner {
    display: flex;
    min-height: 820px;
    padding: 36px 20px 22px;
  }

  .command-stage {
    position: absolute;
    inset: 0;
    order: 0;
    aspect-ratio: auto;
    margin: 0;
    overflow: hidden;
    border: 0;
    border-radius: 0;
  }

  .command-stage img {
    width: 100%;
    height: 100%;
    object-position: 58% center;
    filter: contrast(1.14) brightness(0.7) saturate(1.08);
    transform: none;
  }

  .command-stage figcaption {
    display: none;
  }

  .growth-command-copy {
    order: 0;
  }

  .growth-command-copy h2 {
    max-width: 440px;
    font-size: clamp(42px, 11vw, 58px);
  }

  .growth-command-copy > p:not(.section-tag) {
    max-width: 420px;
  }

  .growth-command-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .command-path {
    order: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: auto;
  }

  .command-path article,
  .command-path article:nth-child(2n),
  .command-path article:nth-child(-n + 2) {
    min-height: 86px;
    padding: 14px;
    border-right: 1px solid rgba(255, 255, 255, 0.09);
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  }

  .command-path article:nth-child(2n) {
    border-right: 0;
  }

  .command-path article:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .command-path span {
    width: 24px;
    height: 24px;
  }

  .command-path strong {
    margin-top: 10px;
    font-size: 22px;
  }

  .command-path p {
    display: none;
  }

  .command-proof {
    order: 0;
    margin-top: 10px;
    padding: 16px;
  }

  .command-proof p {
    font-size: 20px;
  }

  .command-proof div {
    display: none;
  }
}

/* Lock the final impact direction so older section rules cannot loosen it again. */
.response-dark .impact-response,
.why-dark .impact-system,
.bottom-start .impact-proof {
  border-color: rgba(120, 198, 255, 0.18);
  background:
    linear-gradient(112deg, rgba(10, 24, 35, 0.92), rgba(14, 14, 14, 0.98) 43%, rgba(28, 23, 12, 0.84)),
    #0f0f0f;
}

.response-dark .impact-response {
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  padding-top: clamp(56px, 6vw, 92px);
  padding-bottom: clamp(34px, 4vw, 56px);
}

.response-dark .impact-response .capability-grid,
.why-dark .impact-system .impact-rail,
.bottom-start .impact-proof .proof-metrics {
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(22, 143, 255, 0.1), rgba(255, 255, 255, 0.04)),
    #141414;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
}

.response-dark .impact-response .capability-grid article,
.why-dark .impact-system .impact-rail span,
.bottom-start .impact-proof .proof-metrics div {
  background: transparent;
  border-top: 0;
  border-bottom: 0;
  border-left: 0;
  border-radius: 0;
}

.why-dark .impact-system {
  grid-template-columns: 1fr;
}

.why-dark .impact-system .why-module-grid {
  display: none;
}

.bottom-start .impact-proof {
  grid-template-columns: minmax(0, 0.98fr) minmax(420px, 1.02fr);
}

@media (max-width: 900px) {
  .response-dark .impact-response,
  .bottom-start .impact-proof {
    grid-template-columns: 1fr;
  }

  .response-dark .impact-response .capability-grid,
  .why-dark .impact-system .impact-rail,
  .bottom-start .impact-proof .proof-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .response-dark .impact-response,
  .why-dark .impact-system,
  .bottom-start .impact-proof {
    padding-top: 42px;
    padding-bottom: 42px;
  }

  .response-dark .impact-response .capability-grid,
  .why-dark .impact-system .impact-rail,
  .bottom-start .impact-proof .proof-metrics {
    grid-template-columns: 1fr;
  }
}

/* Impact trilogy: one cohesive growth narrative across the three lower sections. */
.response-dark,
.why-dark,
.bottom-start {
  color: #fff;
}

.impact-panel {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    linear-gradient(112deg, rgba(10, 24, 35, 0.92), rgba(14, 14, 14, 0.98) 43%, rgba(28, 23, 12, 0.84)),
    #0f0f0f;
  border: 1px solid rgba(120, 198, 255, 0.18);
  border-radius: 8px;
  box-shadow:
    0 30px 90px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.03) inset;
}

.impact-panel::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 18% 22%, rgba(22, 143, 255, 0.28), transparent 30%),
    radial-gradient(circle at 78% 18%, rgba(120, 198, 255, 0.12), transparent 26%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: auto, auto, 78px 100%;
  content: "";
  opacity: 0.9;
}

.impact-panel::after {
  position: absolute;
  right: -18%;
  bottom: -28%;
  z-index: -1;
  width: 58%;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(22, 143, 255, 0.22), transparent 64%);
  content: "";
  filter: blur(10px);
}

.impact-panel .section-tag,
.impact-panel .quote-label {
  color: #78c6ff;
  font-size: 12px;
  font-weight: 900;
}

.impact-response {
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: clamp(26px, 4vw, 58px);
  padding-top: clamp(56px, 6vw, 92px);
  padding-bottom: clamp(34px, 4vw, 56px);
}

.impact-response .response-copy h2,
.impact-system .why-head h2,
.impact-proof .testimonial-content h2 {
  max-width: 760px;
  color: #fff;
  font-size: clamp(38px, 5vw, 70px);
  line-height: 0.98;
  letter-spacing: 0;
}

.impact-response .response-copy > p,
.impact-system .why-head > p:not(.section-tag),
.impact-proof .testimonial-content p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  line-height: 1.85;
}

.impact-response .response-actions {
  gap: 14px;
  margin-top: 30px;
}

.impact-response .response-actions a,
.impact-system .why-button {
  min-height: 44px;
  padding: 11px 20px;
}

.impact-response .response-visual,
.impact-system .why-system-card,
.impact-proof .proof-visual {
  border-color: rgba(120, 198, 255, 0.22);
  border-radius: 8px;
  box-shadow:
    0 28px 80px rgba(0, 0, 0, 0.55),
    0 0 38px rgba(22, 143, 255, 0.14);
}

.impact-response .response-visual {
  aspect-ratio: 16 / 9;
}

.impact-response .response-visual img {
  width: 112%;
  max-width: none;
  transform: translateX(-5%);
}

.response-visual figcaption {
  position: absolute;
  right: 16px;
  bottom: 16px;
  left: 16px;
  display: grid;
  gap: 5px;
  padding: 14px 16px;
  color: #fff;
  background: rgba(5, 11, 18, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  backdrop-filter: blur(14px);
}

.response-visual figcaption strong,
.impact-system .why-system-card figcaption strong,
.impact-proof .proof-visual figcaption strong {
  font-size: 15px;
}

.response-visual figcaption span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  line-height: 1.55;
}

.impact-response .capability-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: 24px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
}

.impact-response .capability-grid article {
  min-height: 142px;
  padding: 20px;
  background: transparent;
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 0;
}

.impact-response .capability-grid article:last-child {
  border-right: 0;
}

.impact-response .capability-grid strong {
  margin-top: 20px;
  font-size: 20px;
}

.impact-system {
  gap: clamp(18px, 2.2vw, 28px);
  padding-top: clamp(56px, 6vw, 90px);
  padding-bottom: clamp(42px, 5vw, 70px);
}

.impact-system .why-head {
  align-items: end;
}

.impact-system .why-system-card {
  aspect-ratio: 16 / 6.6;
  margin-top: 4px;
}

.impact-system .why-system-card img {
  width: 108%;
  max-width: none;
  transform: translateX(-4%);
}

.impact-system .why-system-card figcaption {
  width: min(470px, calc(100% - 36px));
}

.impact-rail {
  position: relative;
  z-index: 2;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: -6px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(22, 143, 255, 0.16), rgba(255, 255, 255, 0.045)),
    #131313;
  border: 1px solid rgba(120, 198, 255, 0.18);
  border-radius: 8px;
}

.impact-rail span {
  display: grid;
  place-items: start;
  min-height: 92px;
  padding: 18px 20px;
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.09);
  background: transparent;
}

.impact-rail span:last-child {
  border-right: 0;
}

.impact-rail strong,
.impact-rail small {
  display: block;
}

.impact-rail strong {
  color: #fff;
  font-size: 20px;
  line-height: 1.2;
}

.impact-rail small {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
  line-height: 1.55;
}

.impact-system .why-bottom-line {
  padding: 20px 22px;
  background: rgba(255, 255, 255, 0.045);
}

.impact-proof {
  grid-template-columns: minmax(0, 0.98fr) minmax(420px, 1.02fr);
  min-height: 520px;
  padding-top: clamp(54px, 6vw, 86px);
  padding-bottom: clamp(54px, 6vw, 86px);
}

.impact-proof .proof-visual {
  aspect-ratio: 16 / 9.4;
}

.impact-proof .proof-visual img {
  width: 112%;
  transform: translateX(-6%);
}

.impact-proof .testimonial-content p {
  margin-top: 22px;
  font-size: clamp(17px, 1.55vw, 22px);
}

.impact-proof .proof-client {
  margin-top: 26px;
}

.impact-proof .proof-metrics {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
}

.impact-proof .proof-metrics div {
  min-height: 88px;
  background: transparent;
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 0;
}

.impact-proof .proof-metrics div:last-child {
  border-right: 0;
}

.impact-proof .proof-metrics dd {
  font-size: 24px;
}

.impact-proof .quote-arrow {
  background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 900px) {
  .impact-response,
  .impact-proof {
    grid-template-columns: 1fr;
  }

  .impact-response .capability-grid,
  .impact-rail,
  .impact-proof .proof-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .impact-response .capability-grid article:nth-child(2n),
  .impact-rail span:nth-child(2n),
  .impact-proof .proof-metrics div:nth-child(2n) {
    border-right: 0;
  }

  .impact-response .capability-grid article,
  .impact-rail span,
  .impact-proof .proof-metrics div {
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  }

  .impact-response .capability-grid article:nth-last-child(-n + 2),
  .impact-rail span:nth-last-child(-n + 2),
  .impact-proof .proof-metrics div:nth-last-child(-n + 1) {
    border-bottom: 0;
  }
}

@media (max-width: 640px) {
  .impact-panel {
    border-radius: 8px;
  }

  .impact-response,
  .impact-system,
  .impact-proof {
    padding-top: 42px;
    padding-bottom: 42px;
  }

  .impact-response .response-copy h2,
  .impact-system .why-head h2,
  .impact-proof .testimonial-content h2 {
    font-size: 36px;
    line-height: 1.04;
  }

  .impact-response .response-copy > p,
  .impact-system .why-head > p:not(.section-tag),
  .impact-proof .testimonial-content p {
    font-size: 14px;
  }

  .impact-response .response-visual,
  .impact-system .why-system-card,
  .impact-proof .proof-visual {
    aspect-ratio: 16 / 11;
  }

  .impact-response .capability-grid,
  .impact-rail,
  .impact-proof .proof-metrics {
    grid-template-columns: 1fr;
  }

  .impact-response .capability-grid article,
  .impact-rail span,
  .impact-proof .proof-metrics div {
    min-height: 0;
    border-right: 0;
  }

  .impact-response .capability-grid article:not(:last-child),
  .impact-rail span:not(:last-child),
  .impact-proof .proof-metrics div:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  }

  .impact-system .why-bottom-line {
    align-items: stretch;
    flex-direction: column;
  }

  .impact-system .why-bottom-line .why-button {
    width: 100%;
  }

  .impact-proof {
    padding-bottom: 82px;
  }
}

/* Premium client proof section. */
.testimonial-proof {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(26px, 4vw, 54px);
  align-items: center;
  min-height: 0;
  padding-top: clamp(46px, 5vw, 76px);
  padding-bottom: clamp(46px, 5vw, 76px);
  overflow: hidden;
  text-align: left;
  background:
    radial-gradient(circle at 18% 18%, rgba(22, 143, 255, 0.2), transparent 32%),
    radial-gradient(circle at 86% 76%, rgba(217, 155, 43, 0.08), transparent 26%),
    var(--section-bg);
}

.testimonial-proof::before {
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(120, 198, 255, 0.12);
  border-radius: 8px;
  content: "";
  pointer-events: none;
}

.proof-visual,
.testimonial-proof .testimonial-content {
  position: relative;
  z-index: 1;
}

.proof-visual {
  margin: 0;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: #050505;
  border: 1px solid rgba(120, 198, 255, 0.18);
  border-radius: 8px;
  box-shadow:
    0 28px 80px rgba(0, 0, 0, 0.52),
    0 0 34px rgba(22, 143, 255, 0.12);
}

.proof-visual img {
  width: 116%;
  max-width: none;
  height: 100%;
  object-fit: cover;
  object-position: 44% center;
  transform: translateX(-7%);
}

.proof-visual::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 34%, rgba(0, 0, 0, 0.58)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.12), transparent 42%, rgba(0, 0, 0, 0.4));
  content: "";
  pointer-events: none;
}

.proof-visual figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 1;
  display: grid;
  gap: 5px;
  padding: 14px 16px;
  color: #fff;
  background: rgba(5, 11, 18, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  backdrop-filter: blur(14px);
}

.proof-visual figcaption span {
  color: #78c6ff;
  font-size: 11px;
  font-weight: 900;
}

.proof-visual figcaption strong {
  font-size: 15px;
  line-height: 1.45;
}

.testimonial-proof .testimonial-content {
  justify-items: stretch;
  text-align: left;
}

.testimonial-proof .quote-label {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 12px;
}

.testimonial-proof .testimonial-content h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(30px, 3.2vw, 44px);
  line-height: 1.12;
}

.testimonial-proof .testimonial-content p {
  width: auto;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(16px, 1.3vw, 19px);
  font-weight: 800;
  line-height: 1.8;
}

.proof-client {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
}

.proof-client .client-avatar {
  width: 44px;
  height: 44px;
  margin: 0;
}

.proof-client strong,
.proof-client span {
  display: block;
}

.proof-client strong {
  color: #fff;
  font-size: 15px;
}

.proof-client span {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.54);
  font-size: 12px;
}

.proof-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 28px 0 0;
}

.proof-metrics div {
  min-height: 82px;
  padding: 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
    #151515;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
}

.proof-metrics dt {
  color: #78c6ff;
  font-size: 12px;
  font-weight: 900;
}

.proof-metrics dd {
  margin: 14px 0 0;
  color: #fff;
  font-size: 19px;
  font-weight: 900;
  line-height: 1.2;
}

.testimonial-proof .quote-arrow {
  position: absolute;
  right: 22px;
  bottom: 22px;
  z-index: 2;
  margin: 0;
}

.testimonial-proof .quote-arrow-prev {
  right: 72px;
}

@media (max-width: 900px) {
  .testimonial-proof {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .testimonial-proof {
    gap: 22px;
    padding-top: 42px;
    padding-bottom: 86px;
  }

  .testimonial-proof::before {
    inset: 10px;
  }

  .proof-visual {
    aspect-ratio: 16 / 11;
  }

  .proof-metrics {
    grid-template-columns: 1fr;
  }
}

/* Redesigned service, choice and project-start sections. */
.section-tag {
  margin: 0 0 12px;
  color: #78c6ff;
  font-size: 13px;
  font-weight: 900;
}

.response-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1.18fr);
  gap: clamp(28px, 4vw, 58px);
  align-items: center;
  overflow: hidden;
  padding: clamp(46px, 5vw, 72px) var(--panel-pad-x) clamp(48px, 5vw, 74px);
  text-align: left;
}

.response-inner::before,
.why-layout::before,
.project-start::before {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 16%, rgba(22, 143, 255, 0.18), transparent 28%),
    radial-gradient(circle at 82% 12%, rgba(217, 155, 43, 0.08), transparent 26%);
  content: "";
  pointer-events: none;
}

.response-copy,
.response-visual,
.capability-grid,
.why-copy,
.why-image,
.project-copy,
.start-form {
  position: relative;
  z-index: 1;
}

.response-copy h2,
.why-copy h2,
.project-copy h2 {
  color: #fff;
  font-size: clamp(30px, 3vw, 46px);
  line-height: 1.14;
}

.response-copy > p,
.why-copy > p,
.project-copy > p {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 15px;
  line-height: 1.85;
}

.response-actions {
  justify-content: flex-start;
  gap: 12px;
  margin-top: 28px;
}

.response-actions a,
.why-button,
.start-form button {
  min-height: 42px;
  padding: 10px 18px;
  border-radius: 6px;
}

.response-actions a:first-child,
.why-button,
.start-form button {
  color: #fff;
  background:
    linear-gradient(135deg, #168fff, #0f5fd8 58%, #071a33),
    #168fff;
  border-color: rgba(160, 219, 255, 0.68);
  box-shadow: 0 14px 30px rgba(22, 143, 255, 0.22);
}

.response-actions a:last-child {
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.14);
}

.response-visual {
  margin: 0;
  overflow: hidden;
  aspect-ratio: 16 / 8.5;
  background: #050505;
  border: 1px solid rgba(120, 198, 255, 0.18);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.52);
}

.response-visual img,
.why-image img,
.footer-promo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.capability-grid {
  grid-column: 1 / -1;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  width: 100%;
  margin: 20px 0 0;
}

.capability-grid article {
  min-height: 118px;
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025)),
    #141414;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
}

.capability-grid span {
  display: block;
  min-height: 0;
  color: #78c6ff;
  font-size: 12px;
  font-weight: 900;
}

.capability-grid span::before {
  display: none;
}

.capability-grid strong {
  display: block;
  margin-top: 18px;
  color: #fff;
  font-size: 17px;
  line-height: 1.25;
}

.capability-grid small {
  display: block;
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
  line-height: 1.6;
}

.why-layout {
  position: relative;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  gap: clamp(34px, 5vw, 70px);
  overflow: hidden;
  padding: clamp(54px, 5vw, 80px) var(--panel-pad-x);
}

.why-list {
  gap: 14px;
  margin-top: 30px;
}

.why-list article {
  grid-template-columns: 42px 1fr;
  gap: 16px;
  padding: 15px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.why-list article:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.why-list span {
  width: 36px;
  height: 36px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(22, 143, 255, 0.95), rgba(19, 95, 216, 0.72)),
    #168fff;
  border: 1px solid rgba(160, 219, 255, 0.3);
}

.why-list h3 {
  font-size: 18px;
}

.why-list p {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.58);
}

.why-button {
  margin-top: 30px;
}

.why-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 8.4;
  border: 1px solid rgba(120, 198, 255, 0.16);
}

.why-image img {
  max-width: none;
  border-radius: 0;
  box-shadow: none;
  transform: none;
}

.why-image figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: grid;
  gap: 5px;
  padding: 14px 16px;
  color: #fff;
  background: rgba(5, 11, 18, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  backdrop-filter: blur(14px);
}

.why-image figcaption strong {
  font-size: 15px;
}

.why-image figcaption span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  line-height: 1.6;
}

.testimonial-strip {
  grid-template-columns: 44px minmax(0, 1fr) 44px;
  align-items: center;
  min-height: auto;
  padding-top: 46px;
  padding-bottom: 34px;
  background:
    radial-gradient(circle at 50% 0, rgba(22, 143, 255, 0.13), transparent 32%),
    var(--section-bg);
}

.quote-arrow {
  margin-top: 0;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.08);
}

.quote-label {
  color: #78c6ff;
  font-size: 12px;
  font-weight: 900;
}

.testimonial-content p {
  width: min(820px, 100%);
  margin: 10px auto 24px;
  font-size: clamp(16px, 1.45vw, 20px);
  line-height: 1.75;
}

.client-avatar {
  background:
    linear-gradient(135deg, #fff, #b8dfff),
    #f2f2f2;
}

.project-start {
  position: relative;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  justify-items: stretch;
  overflow: hidden;
  padding-top: 52px;
  padding-bottom: 58px;
  text-align: left;
}

.project-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.project-points span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  font-size: 12px;
  font-weight: 800;
}

.start-form {
  width: 100%;
  margin-top: 0;
  padding: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035)),
    #161616;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.38);
}

.start-form input {
  background: #272727;
  border-color: rgba(255, 255, 255, 0.08);
}

.start-form button {
  border-color: rgba(160, 219, 255, 0.68);
}

.response-actions a:first-child:hover,
.response-actions a:first-child:focus-visible,
.why-button:hover,
.why-button:focus-visible,
.start-form button:hover,
.start-form button:focus-visible {
  background:
    linear-gradient(135deg, #32a8ff, #1372ef 58%, #082447),
    #168fff;
  box-shadow: 0 18px 34px rgba(22, 143, 255, 0.3);
  transform: translateY(-1px);
}

.response-actions a:last-child:hover,
.response-actions a:last-child:focus-visible {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.login-note {
  grid-column: 2;
  margin-top: -46px !important;
  padding: 0 20px;
}

.footer-promo {
  aspect-ratio: 1821 / 288;
  margin-top: 0;
  border: 0;
}

@media (max-width: 900px) {
  .response-inner,
  .why-layout,
  .project-start {
    grid-template-columns: 1fr;
  }

  .response-visual,
  .why-image {
    min-width: 0;
  }

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

  .login-note {
    grid-column: 1;
    margin-top: -34px !important;
  }
}

@media (max-width: 640px) {
  .response-inner,
  .why-layout,
  .project-start {
    padding-right: var(--panel-pad-x);
    padding-left: var(--panel-pad-x);
  }

  .response-actions {
    align-items: stretch;
    flex-direction: row;
  }

  .response-actions a {
    width: auto;
    flex: 1;
  }

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

  .capability-grid article {
    min-height: 0;
  }

  .why-image figcaption {
    right: 12px;
    bottom: 12px;
    left: 12px;
  }

  .project-points {
    display: grid;
  }

  .login-note {
    margin-top: 12px !important;
    padding: 0;
  }

  .testimonial-strip {
    padding-top: 36px;
    padding-bottom: 30px;
  }

  .footer-promo {
    width: min(100% - 28px, 1120px);
    aspect-ratio: 1821 / 288;
  }
}

/* Final override for the premium client proof module. */
.bottom-start .testimonial-proof {
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(26px, 4vw, 54px);
  padding-top: clamp(46px, 5vw, 76px);
  padding-bottom: clamp(46px, 5vw, 76px);
}

.bottom-start .proof-visual {
  width: 100%;
}

.bottom-start .testimonial-proof .testimonial-content {
  width: auto;
}

@media (max-width: 900px) {
  .bottom-start .testimonial-proof {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .bottom-start .testimonial-proof {
    gap: 22px;
    padding-top: 42px;
    padding-bottom: 86px;
  }
}

/* Final placement for the redesigned why section. */
.why-layout-redesign {
  grid-template-columns: 1fr;
  gap: 22px;
  align-items: stretch;
  padding-top: clamp(52px, 5vw, 76px);
  padding-bottom: clamp(50px, 5vw, 72px);
}

.why-head,
.why-system-card,
.why-system-badges,
.why-module-grid,
.why-bottom-line {
  position: relative;
  z-index: 1;
}

.why-head {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(260px, 0.64fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: end;
}

.why-head .section-tag,
.why-head h2 {
  grid-column: 1;
}

.why-head h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(32px, 4vw, 50px);
  line-height: 1.08;
}

.why-head > p:not(.section-tag) {
  grid-column: 2;
  grid-row: 1 / span 2;
  margin: 0 0 2px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 15px;
  line-height: 1.85;
}

.why-system-card {
  aspect-ratio: 16 / 7.2;
  margin: 6px 0 0;
  background: #050505;
  border: 1px solid rgba(120, 198, 255, 0.18);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.48);
}

.why-system-card::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.06), transparent 42%, rgba(0, 0, 0, 0.52)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.36), transparent 34%, rgba(0, 0, 0, 0.18));
  content: "";
  pointer-events: none;
}

.why-system-card figcaption {
  right: auto;
  bottom: 18px;
  left: 18px;
  z-index: 1;
  width: min(410px, calc(100% - 36px));
  padding: 16px 18px;
}

.why-system-badges {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.why-system-badges span {
  display: grid;
  place-items: center;
  min-height: 42px;
  color: rgba(255, 255, 255, 0.78);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025)),
    #151515;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 900;
}

.why-module-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 0;
}

.why-module-grid article,
.why-module-grid article:last-child {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  min-height: 190px;
  padding: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
    #141414;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
}

.why-module-grid span {
  width: fit-content;
  height: auto;
  min-height: 0;
  padding: 0;
  color: #78c6ff;
  background: transparent;
  border: 0;
  border-radius: 0;
  font-size: 12px;
}

.why-module-grid h3 {
  font-size: 18px;
  line-height: 1.3;
}

.why-module-grid p {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  line-height: 1.72;
}

.why-bottom-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  background:
    linear-gradient(90deg, rgba(22, 143, 255, 0.12), rgba(255, 255, 255, 0.03)),
    #131313;
  border: 1px solid rgba(120, 198, 255, 0.14);
  border-radius: 8px;
}

.why-bottom-line p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.7;
}

.why-bottom-line .why-button {
  flex: 0 0 auto;
  margin-top: 0;
}

@media (max-width: 900px) {
  .why-head {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .why-head > p:not(.section-tag) {
    grid-column: 1;
    grid-row: auto;
  }

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

@media (max-width: 640px) {
  .why-layout-redesign {
    gap: 16px;
  }

  .why-head h2 {
    font-size: 31px;
  }

  .why-system-card {
    aspect-ratio: 16 / 10;
  }

  .why-system-card figcaption {
    right: 12px;
    bottom: 12px;
    left: 12px;
    width: auto;
  }

  .why-system-badges,
  .why-module-grid {
    grid-template-columns: 1fr;
  }

  .why-module-grid article {
    min-height: 0;
  }

  .why-bottom-line {
    align-items: stretch;
    flex-direction: column;
  }

  .why-bottom-line .why-button {
    width: 100%;
  }
}

/* Final lock after legacy overrides: keep the three redesigned blocks unified. */
.response-dark .impact-response,
.why-dark .impact-system,
.bottom-start .impact-proof {
  border-color: rgba(120, 198, 255, 0.18);
  background:
    linear-gradient(112deg, rgba(10, 24, 35, 0.92), rgba(14, 14, 14, 0.98) 43%, rgba(28, 23, 12, 0.84)),
    #0f0f0f;
}

.response-dark .impact-response {
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  padding-top: clamp(56px, 6vw, 92px);
  padding-bottom: clamp(34px, 4vw, 56px);
}

.response-dark .impact-response .capability-grid,
.why-dark .impact-system .impact-rail,
.bottom-start .impact-proof .proof-metrics {
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(22, 143, 255, 0.1), rgba(255, 255, 255, 0.04)),
    #141414;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
}

.response-dark .impact-response .capability-grid article,
.why-dark .impact-system .impact-rail span,
.bottom-start .impact-proof .proof-metrics div {
  background: transparent;
  border-top: 0;
  border-bottom: 0;
  border-left: 0;
  border-radius: 0;
}

.why-dark .impact-system {
  grid-template-columns: 1fr;
}

.why-dark .impact-system .why-module-grid {
  display: none;
}

.bottom-start .impact-proof {
  grid-template-columns: minmax(0, 0.98fr) minmax(420px, 1.02fr);
}

@media (max-width: 900px) {
  .response-dark .impact-response,
  .bottom-start .impact-proof {
    grid-template-columns: 1fr;
  }

  .response-dark .impact-response .capability-grid,
  .why-dark .impact-system .impact-rail,
  .bottom-start .impact-proof .proof-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .response-dark .impact-response,
  .why-dark .impact-system,
  .bottom-start .impact-proof {
    padding-top: 42px;
    padding-bottom: 42px;
  }

  .response-dark .impact-response .capability-grid,
  .why-dark .impact-system .impact-rail,
  .bottom-start .impact-proof .proof-metrics {
    grid-template-columns: 1fr;
  }
}

/* Growth command final cascade: keep this as one integrated poster scene. */
.growth-command {
  padding: clamp(18px, 3vw, 34px) 0;
  background: #030303;
}

.growth-command-inner {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: auto 1fr auto;
  gap: clamp(22px, 4vw, 42px) 0;
  min-height: clamp(720px, 86svh, 920px);
  padding: clamp(46px, 5vw, 76px);
  border: 1px solid rgba(120, 198, 255, 0.2);
  border-radius: 8px;
  background: #040608;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 32px 120px rgba(0, 0, 0, 0.45);
}

.growth-command-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(102deg, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.78) 33%, rgba(0, 0, 0, 0.28) 59%, rgba(0, 0, 0, 0.74)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.84)),
    radial-gradient(circle at 62% 45%, rgba(22, 143, 255, 0.34), transparent 32%);
}

.growth-command-inner::after {
  content: "";
  position: absolute;
  right: clamp(28px, 6vw, 86px);
  bottom: clamp(168px, 19vw, 230px);
  left: auto;
  z-index: 2;
  display: block;
  width: min(46vw, 560px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(120, 198, 255, 0.8), transparent);
  box-shadow: 0 0 22px rgba(22, 143, 255, 0.55);
  pointer-events: none;
}

.command-stage {
  position: absolute;
  inset: 0;
  z-index: 0;
  order: 0;
  aspect-ratio: auto;
  margin: 0;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.command-stage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
  transform: none;
  filter: contrast(1.16) brightness(0.82) saturate(1.1);
}

.command-stage::after,
.command-stage figcaption {
  display: none;
}

.growth-command-copy,
.command-path,
.command-proof {
  position: relative;
  z-index: 3;
}

.growth-command-copy {
  grid-column: 1 / span 7;
  grid-row: 1;
  order: 0;
  width: auto;
}

.growth-command-copy .section-tag {
  color: #7fd0ff;
  letter-spacing: 0;
}

.growth-command-copy h2 {
  max-width: 820px;
  margin-top: 16px;
  font-size: clamp(56px, 7.3vw, 108px);
  line-height: 0.94;
  letter-spacing: 0;
  text-wrap: balance;
  text-shadow: 0 20px 54px rgba(0, 0, 0, 0.62);
}

.growth-command-copy > p:not(.section-tag) {
  max-width: 600px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.86;
}

.growth-command-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.growth-command-actions a {
  min-width: 132px;
  padding: 13px 18px;
  border-radius: 6px;
}

.growth-command-actions a:first-child {
  border-color: rgba(120, 198, 255, 0.7);
  background:
    linear-gradient(135deg, #24a2ff, #0755dd),
    #168fff;
  box-shadow: 0 16px 36px rgba(22, 143, 255, 0.32);
}

.command-path {
  grid-column: 1 / span 9;
  grid-row: 3;
  order: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(120, 198, 255, 0.22);
  border-right: 0;
  border-radius: 8px 0 0 8px;
  background:
    linear-gradient(90deg, rgba(8, 26, 39, 0.9), rgba(12, 12, 12, 0.78)),
    rgba(5, 10, 15, 0.82);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(16px);
}

.command-path::before {
  content: "";
  position: absolute;
  top: 35px;
  right: 24px;
  left: 24px;
  z-index: 0;
  display: block;
  height: 1px;
  background: linear-gradient(90deg, rgba(22, 143, 255, 0.9), rgba(255, 180, 86, 0.62), rgba(120, 198, 255, 0.7));
  box-shadow: 0 0 18px rgba(22, 143, 255, 0.42);
}

.command-path article,
.command-path article:nth-child(2n),
.command-path article:nth-child(-n + 2),
.command-path article:last-child {
  position: relative;
  z-index: 1;
  min-height: 154px;
  padding: 24px 22px 22px;
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.09);
  border-bottom: 0;
  border-radius: 0;
  background: transparent;
}

.command-path article:last-child {
  border-right: 0;
}

.command-path span {
  width: 34px;
  height: 34px;
  color: #ffffff;
  background: linear-gradient(135deg, #24a2ff, #0755dd);
  box-shadow: 0 0 0 6px rgba(22, 143, 255, 0.1);
}

.command-path strong {
  margin-top: 18px;
  color: #ffffff;
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.15;
}

.command-path p {
  display: block;
  max-width: 190px;
  margin-top: 9px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 13px;
  line-height: 1.7;
}

.command-proof {
  grid-column: 10 / -1;
  grid-row: 3;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 154px;
  margin: 0;
  padding: 24px;
  border: 1px solid rgba(120, 198, 255, 0.22);
  border-radius: 0 8px 8px 0;
  background:
    linear-gradient(135deg, rgba(22, 143, 255, 0.22), rgba(255, 180, 86, 0.1)),
    rgba(5, 10, 15, 0.86);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(16px);
}

.command-proof p {
  max-width: 260px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(22px, 2vw, 31px);
  font-weight: 900;
  line-height: 1.26;
}

.command-proof div {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin-top: 18px;
}

.command-proof span {
  width: 100%;
  justify-content: flex-start;
  padding: 8px 10px;
  border-color: rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.78);
}

@media (max-width: 1000px) {
  .growth-command-inner {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr auto auto;
    min-height: 820px;
    padding: 40px 24px 24px;
  }

  .growth-command-inner::before {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.5) 45%, rgba(0, 0, 0, 0.9)),
      linear-gradient(90deg, rgba(0, 0, 0, 0.84), rgba(0, 0, 0, 0.18) 65%, rgba(0, 0, 0, 0.72)),
      radial-gradient(circle at 62% 48%, rgba(22, 143, 255, 0.28), transparent 36%);
  }

  .growth-command-inner::after {
    right: 24px;
    bottom: 238px;
    left: 24px;
    width: auto;
  }

  .command-stage {
    position: absolute;
    inset: 0;
    aspect-ratio: auto;
    margin: 0;
    border: 0;
    border-radius: 0;
  }

  .command-stage img {
    object-position: 60% center;
    filter: contrast(1.15) brightness(0.7) saturate(1.08);
  }

  .growth-command-copy {
    grid-column: 1;
    grid-row: 1;
    max-width: 620px;
  }

  .growth-command-copy h2 {
    font-size: clamp(46px, 11vw, 74px);
  }

  .command-path {
    grid-column: 1;
    grid-row: 3;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-right: 1px solid rgba(120, 198, 255, 0.22);
    border-radius: 8px 8px 0 0;
  }

  .command-path::before {
    display: none;
  }

  .command-path article,
  .command-path article:nth-child(2n),
  .command-path article:nth-child(-n + 2),
  .command-path article:last-child {
    min-height: 106px;
    padding: 16px;
    border-right: 1px solid rgba(255, 255, 255, 0.09);
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  }

  .command-path article:nth-child(2n) {
    border-right: 0;
  }

  .command-path article:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .command-path strong {
    margin-top: 12px;
    font-size: 23px;
  }

  .command-path p {
    display: none;
  }

  .command-proof {
    grid-column: 1;
    grid-row: 4;
    min-height: 0;
    border-top: 0;
    border-radius: 0 0 8px 8px;
  }
}

@media (max-width: 640px) {
  .growth-command {
    padding: 14px 0;
  }

  .growth-command-inner {
    min-height: 780px;
    padding: 34px 18px 18px;
  }

  .growth-command-copy h2 {
    font-size: clamp(42px, 13vw, 58px);
  }

  .growth-command-copy > p:not(.section-tag) {
    font-size: 14px;
    line-height: 1.75;
  }

  .growth-command-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
  }

  .growth-command-actions a {
    min-width: 0;
    padding-right: 12px;
    padding-left: 12px;
  }

  .command-stage img {
    object-position: 63% center;
  }

  .command-path article,
  .command-path article:nth-child(2n),
  .command-path article:nth-child(-n + 2),
  .command-path article:last-child {
    min-height: 92px;
    padding: 14px;
  }

  .command-path span {
    width: 28px;
    height: 28px;
    font-size: 11px;
  }

  .command-path strong {
    margin-top: 10px;
    font-size: 21px;
  }

  .command-proof {
    padding: 16px;
  }

  .command-proof p {
    max-width: none;
    font-size: 19px;
  }

  .command-proof div {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
  }

  .command-proof span {
    justify-content: center;
    padding: 7px 6px;
    font-size: 11px;
    white-space: nowrap;
  }
}
