* {
  box-sizing: border-box;
}

:root {
  --font-signal-display: "Comfortaa";
  --font-signal-body: "Nunito";
  --font-signal-mono: "JetBrains Mono";
  --sg-electric-blue: #1B44FF;
  --sg-accent: #FF7A30;
  --sg-accent-ink: #2A3005;
  --sg-shadow-accent: 0 6px 18px rgba(255, 122, 48, .38);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--sg-bg);
  color: var(--sg-text);
  font-family: var(--sg-font-body);
  font-size: var(--sg-text-base);
  line-height: var(--sg-leading-normal);
}

body.no-scroll {
  overflow: hidden;
}

h1,
h2 {
  margin: 0;
  font-family: var(--sg-font-display);
  font-weight: 700;
  line-height: var(--sg-leading-tight);
}

h3,
p {
  margin: 0;
}

h3 {
  font-size: clamp(1.18rem, 1.8vw, var(--sg-text-xl));
  line-height: 1.24;
}

p {
  max-width: 68ch;
}

a {
  color: inherit;
}

.wrap {
  width: min(100% - 2rem, var(--sg-container));
  margin: 0 auto;
}

section {
  padding: var(--sg-s-9) 0;
}

.border-y {
  border-top: 1px solid var(--sg-border);
  border-bottom: 1px solid var(--sg-border);
}

.lead {
  color: var(--sg-text-muted);
  font-size: var(--sg-text-lg);
  line-height: 1.55;
}

.inline-code {
  font-family: var(--sg-font-mono);
  font-size: .9em;
}

.sg-blue-text {
  color: var(--sg-electric-blue);
}

.text-nowrap {
  white-space: nowrap;
}

.sg-label {
  color: var(--sg-electric-blue);
}

.sg-label::before {
  background: var(--sg-electric-blue);
}

.sec-indigo .sg-label {
  color: var(--sg-electric-blue);
}

.sec-indigo .sg-label::before {
  background: var(--sg-electric-blue);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: var(--sg-z-nav);
  border-bottom: 1px solid var(--sg-border);
  background: color-mix(in srgb, var(--sg-bg) 94%, transparent);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  min-height: 68px;
  align-items: center;
  gap: var(--sg-s-4);
}

.brand {
  display: inline-flex;
  align-items: center;
  color: var(--sg-text);
  font-family: var(--sg-font-display);
  font-size: var(--sg-text-lg);
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.brand img {
  display: block;
  width: clamp(10.5rem, 16vw, 14rem);
  height: auto;
}

.desktop-nav {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: var(--sg-s-1);
  margin-left: auto;
}

.desktop-nav a,
.mobile-nav a {
  border-radius: var(--sg-r-full);
  color: var(--sg-text-muted);
  font-size: var(--sg-text-sm);
  font-weight: 800;
  line-height: 1;
  padding: .62rem .92rem;
  text-decoration: none;
  white-space: nowrap;
  transition: background var(--sg-dur-fast) var(--sg-ease), color var(--sg-dur-fast) var(--sg-ease);
}

.desktop-nav a:hover,
.mobile-nav a:hover {
  background: var(--sg-bg-sunken);
  color: var(--sg-indigo);
}

.header-cta {
  flex: 0 0 auto;
}

.menu-button {
  display: none;
  margin-left: auto;
  border: 1px solid var(--sg-border-strong);
  border-radius: var(--sg-r-full);
  background: var(--sg-bg-raised);
  color: var(--sg-text);
  cursor: pointer;
  font: 800 var(--sg-text-sm) / 1 var(--sg-font-body);
  padding: .7rem 1rem;
}

.mobile-nav {
  display: grid;
  gap: var(--sg-s-2);
  padding: 0 var(--sg-s-5) var(--sg-s-5);
}

.mobile-nav[hidden] {
  display: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: var(--sg-r-full);
  cursor: pointer;
  font-family: var(--sg-font-body);
  font-size: var(--sg-text-sm);
  font-weight: 800;
  line-height: 1.15;
  padding: .76rem 1.35rem;
  text-decoration: none;
  transition: transform var(--sg-dur-fast) var(--sg-ease), border-color var(--sg-dur-fast) var(--sg-ease), background var(--sg-dur-fast) var(--sg-ease), box-shadow var(--sg-dur-fast) var(--sg-ease);
  white-space: nowrap;
}

.btn:active {
  transform: translateY(1px);
}

.btn-lg {
  font-size: var(--sg-text-base);
  padding: .92rem 1.55rem;
}

.btn-accent {
  background: var(--sg-accent);
  color: var(--sg-accent-ink);
}

.btn-accent:hover {
  box-shadow: var(--sg-shadow-accent);
  filter: brightness(1.04);
}

.btn-secondary {
  border-color: var(--sg-border-strong);
  background: color-mix(in srgb, var(--sg-bg-raised) 72%, transparent);
  color: var(--sg-indigo);
}

.btn-secondary:hover {
  border-color: var(--sg-indigo);
  background: var(--sg-bg-raised);
  box-shadow: var(--sg-shadow-sm);
}

.sec-indigo .btn-secondary {
  border-color: rgba(255, 255, 255, .34);
  background: transparent;
  color: #f4f6fb;
}

.sec-indigo .btn-secondary:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, .08);
}

.lead-modal {
  width: min(100% - 2rem, 34rem);
  max-height: min(88dvh, 48rem);
  border: 0;
  border-radius: var(--sg-r-lg);
  background: transparent;
  color: var(--sg-text);
  overflow: visible;
  padding: 0;
}

.lead-modal::backdrop {
  background: rgba(10, 14, 32, .58);
  backdrop-filter: blur(8px);
}

.lead-modal-panel {
  position: relative;
  display: grid;
  gap: var(--sg-s-5);
  max-height: min(88dvh, 48rem);
  overflow: auto;
  border: 1px solid color-mix(in srgb, var(--sg-indigo) 16%, var(--sg-border));
  border-radius: var(--sg-r-lg);
  background: var(--sg-bg-raised);
  box-shadow: 0 28px 76px rgba(22, 26, 54, .24);
  padding: var(--sg-s-6);
}

.modal-close {
  position: absolute;
  top: var(--sg-s-3);
  right: var(--sg-s-3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  border: 1px solid var(--sg-border);
  border-radius: var(--sg-r-full);
  background: var(--sg-bg-soft);
  color: var(--sg-indigo);
  cursor: pointer;
  font-size: 1.45rem;
  line-height: 1;
}

.modal-close:hover {
  border-color: var(--sg-indigo);
  background: var(--sg-bg-raised);
}

.lead-modal-copy {
  display: grid;
  gap: var(--sg-s-3);
  padding-right: var(--sg-s-6);
}

.lead-modal-copy h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: .98;
}

.lead-modal-copy p {
  margin: 0;
  color: var(--sg-muted);
  font-size: var(--sg-text-base);
}

.lead-form {
  display: grid;
  gap: var(--sg-s-4);
}

.lead-form label {
  display: grid;
  gap: .45rem;
  color: var(--sg-indigo);
  font-size: var(--sg-text-sm);
  font-weight: 800;
}

.lead-form input,
.lead-form textarea {
  width: 100%;
  border: 1px solid var(--sg-border);
  border-radius: var(--sg-r-md);
  background: var(--sg-bg);
  color: var(--sg-text);
  font: inherit;
  line-height: 1.35;
  padding: .85rem 1rem;
}

.lead-form textarea {
  min-height: 7.5rem;
  resize: vertical;
}

.lead-form input:focus,
.lead-form textarea:focus {
  outline: 3px solid color-mix(in srgb, var(--sg-accent) 34%, transparent);
  border-color: var(--sg-indigo);
}

.lead-form .btn {
  width: 100%;
  margin-top: var(--sg-s-1);
}

.lead-form .btn[disabled] {
  cursor: wait;
  filter: grayscale(.15);
  opacity: .78;
}

.form-status {
  min-height: 1.3rem;
  margin: 0;
  color: var(--sg-muted);
  font-size: var(--sg-text-sm);
  font-weight: 700;
}

.form-status.is-success {
  color: var(--sg-indigo);
}

.form-status.is-error {
  color: #a83232;
}

.cta-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--sg-s-3);
}

.hero {
  position: relative;
  display: flex;
  min-height: calc(100dvh - 69px);
  align-items: center;
  overflow: hidden;
  padding: clamp(3rem, 5vw, 4.5rem) 0;
}

.hero-grid {
  display: block;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: min(47rem, 48vw);
}

.hero-copy h1 {
  max-width: 25ch;
  margin-top: var(--sg-s-5);
  font-size: clamp(2rem, 3.45vw, 3rem);
  letter-spacing: 0;
}

.hero-subcopy {
  display: grid;
  gap: var(--sg-s-3);
  max-width: 44rem;
  margin-top: var(--sg-s-4);
}

.hero-subcopy h2 {
  font-family: var(--sg-font-body);
  font-size: clamp(1.25rem, 2.3vw, var(--sg-text-xl));
  font-weight: 600;
  line-height: 1.25;
}

.hero-subcopy p {
  color: var(--sg-text-muted);
  font-size: var(--sg-text-lg);
}

.hero-cost-note {
  margin-top: var(--sg-s-4);
  border-left: 4px solid var(--sg-logo-4);
  padding: var(--sg-s-2) 0 var(--sg-s-2) var(--sg-s-5);
}

.hero-cost-note p {
  display: grid;
  gap: var(--sg-s-1);
  max-width: 32rem;
  color: var(--sg-text);
  font-size: clamp(.95rem, 1.25vw, 1.08rem);
  font-weight: 500;
  line-height: 1.52;
}

.hero-cost-note span {
  display: block;
}

.hero-cost-note .cost-accent {
  color: var(--sg-logo-4);
}

.hero-actions {
  margin-top: var(--sg-s-6);
}

.hero-visual {
  position: absolute;
  inset: 0 0 0 auto;
  width: 50vw;
  margin: 0;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: var(--sg-bg-raised);
  box-shadow: none;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 1;
  width: 42%;
  background:
    linear-gradient(90deg, var(--sg-bg) 0%, color-mix(in srgb, var(--sg-bg) 78%, transparent) 38%, transparent 100%);
  backdrop-filter: blur(8px);
  pointer-events: none;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(700px 520px at 4% 50%, color-mix(in srgb, var(--sg-bg) 76%, transparent), transparent 62%),
    linear-gradient(90deg, color-mix(in srgb, var(--sg-bg) 35%, transparent), transparent 36%);
  pointer-events: none;
}

.hero-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(20rem, .8fr);
  align-items: center;
  gap: var(--sg-s-8);
}

.about-layout h2,
.section-intro h2,
.problem-header h2,
.final-cta h2,
.logo-strip-heading h2,
.split-cta h2 {
  max-width: 17ch;
  font-size: clamp(2rem, 4vw, var(--sg-text-4xl));
}

.about-layout h2 {
  max-width: 30ch;
}

.problem-header h2 {
  max-width: 26ch;
}

.about-layout h2 > span,
.problem-header h2 > span,
.logo-strip-heading h2 > span,
.final-cta p > span {
  display: block;
}

.about-layout h2,
.section-intro h2,
.problem-header h2,
.split-cta h2 {
  margin-top: var(--sg-s-3);
}

.about-layout .lead,
.section-intro .lead {
  margin-top: var(--sg-s-4);
}

.recognition-board {
  display: grid;
  gap: var(--sg-s-4);
}

.recognition-board article {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: var(--sg-s-4);
  border: 1px solid var(--sg-border);
  border-radius: var(--sg-r-lg);
  background: var(--sg-bg-raised);
  box-shadow: var(--sg-shadow-sm);
  padding: var(--sg-s-5);
}

.recognition-board span {
  color: var(--sg-logo-5);
  font-family: var(--sg-font-mono);
  font-size: var(--sg-text-xs);
  font-weight: 700;
}

.recognition-board p {
  font-size: var(--sg-text-lg);
  font-weight: 800;
  line-height: 1.35;
}

.partner-fit {
  border: 1px solid var(--sg-border);
  border-radius: var(--sg-r-xl);
  background:
    radial-gradient(360px 220px at 100% 0%, rgba(22, 154, 190, .12), transparent 70%),
    var(--sg-bg-raised);
  box-shadow: var(--sg-shadow-md);
  padding: var(--sg-s-6);
}

.partner-fit h3 {
  color: var(--sg-indigo);
  font-family: var(--sg-font-body);
  font-size: clamp(1.25rem, 2vw, var(--sg-text-xl));
  font-weight: 800;
}

.partner-fit ul {
  display: grid;
  gap: var(--sg-s-3);
  margin: var(--sg-s-5) 0 0;
  padding: 0;
  list-style: none;
}

.partner-fit li {
  position: relative;
  display: grid;
  grid-template-columns: 1.85rem 1fr;
  gap: var(--sg-s-2);
  align-items: start;
  color: var(--sg-text);
  font-size: var(--sg-text-base);
  font-weight: 700;
  line-height: 1.38;
}

.partner-fit li::before {
  content: "✓";
  color: var(--sg-electric-blue);
  font-family: var(--sg-font-body);
  font-size: 1.35rem;
  font-weight: 900;
  line-height: 1;
}

.partner-fit li::after {
  display: none;
}

.section-intro {
  max-width: 48rem;
}

#impact .section-intro,
#paths .section-intro {
  max-width: none;
}

#impact .section-intro h2 {
  max-width: none;
  white-space: nowrap;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: var(--sg-s-4);
  margin-top: var(--sg-s-8);
}

.impact-card {
  display: flex;
  min-height: 16rem;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  border: 1px solid var(--sg-border);
  border-radius: var(--sg-r-lg);
  background: var(--sg-bg-raised);
  box-shadow: var(--sg-shadow-sm);
  padding: var(--sg-s-5);
}

.impact-top {
  display: flex;
  width: 100%;
  flex: 1;
  align-items: center;
  justify-content: center;
  gap: var(--sg-s-3);
}

.impact-number {
  display: block;
  color: var(--sg-electric-blue);
  font-family: var(--sg-font-display);
  font-size: clamp(2.6rem, 4.8vw, 3.8rem);
  font-weight: 700;
  line-height: .9;
}

.impact-wide {
  grid-column: span 2;
}

.impact-card h3 {
  font-size: clamp(1.08rem, 1.35vw, 1.35rem);
}

.problem-header {
  max-width: 50rem;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--sg-s-4);
  margin-top: var(--sg-s-8);
}

.problem-grid article {
  position: relative;
  display: grid;
  grid-template-columns: 2.6rem 1fr;
  gap: var(--sg-s-4);
  align-items: center;
  min-height: 7.6rem;
  border: 1px solid var(--sg-border);
  border-radius: var(--sg-r-lg);
  background: var(--sg-bg-raised);
  color: var(--sg-text);
  font-size: var(--sg-text-lg);
  font-weight: 800;
  line-height: 1.32;
  padding: var(--sg-s-5) var(--sg-s-5);
  box-shadow: var(--sg-shadow-sm);
}

.problem-grid article::before {
  content: "";
  width: 1.6rem;
  height: 1.6rem;
  border-radius: var(--sg-r-full);
  background: color-mix(in srgb, var(--sg-electric-blue) 12%, #fff);
}

.problem-grid article::after {
  content: "";
  position: absolute;
  left: calc(var(--sg-s-5) + .42rem);
  top: 50%;
  width: .78rem;
  height: .78rem;
  border-radius: 4px;
  background: var(--sg-electric-blue);
  transform: translateY(-50%) rotate(45deg);
}

.solution-promise {
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(22rem, 1.12fr);
  align-items: center;
  gap: var(--sg-s-7);
  margin-top: var(--sg-s-8);
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--sg-logo-4) 12%, var(--sg-border));
  border-radius: var(--sg-r-xl) 0 0 var(--sg-r-xl);
  background:
    radial-gradient(620px 360px at 0% 0%, rgba(22, 154, 190, .12), transparent 62%),
    color-mix(in srgb, var(--sg-info-bg) 46%, var(--sg-bg));
  box-shadow: 0 24px 56px rgba(45, 42, 91, .12);
  padding: var(--sg-s-7) 0 var(--sg-s-7) var(--sg-s-7);
}

.promise-copy {
  display: block;
  color: var(--sg-text);
  padding: 0;
}

.solution-promise h3 {
  max-width: 16.5ch;
  font-family: var(--sg-font-display);
  font-size: clamp(2rem, 3.4vw, var(--sg-text-4xl));
  line-height: 1.08;
}

.solution-promise h3 .sg-blue-text {
  color: var(--sg-electric-blue);
}

.solution-promise p {
  max-width: 38rem;
  margin-top: var(--sg-s-6);
  color: var(--sg-text-muted);
  font-size: clamp(1.1rem, 1.8vw, var(--sg-text-lg));
  font-weight: 600;
  line-height: 1.65;
}

.portfolio-image {
  align-self: stretch;
  min-height: 28rem;
  margin: calc(-1 * var(--sg-s-7)) 0 calc(-1 * var(--sg-s-7)) 0;
  overflow: hidden;
  border-left: 1px solid color-mix(in srgb, var(--sg-logo-4) 18%, var(--sg-border));
  background: var(--sg-bg-raised);
  box-shadow: -18px 0 44px rgba(45, 42, 91, .08);
}

.portfolio-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.paths-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--sg-s-6);
  margin-top: var(--sg-s-8);
}

.path-card {
  border: 1px solid var(--sg-border);
  border-radius: var(--sg-r-xl);
  background:
    radial-gradient(520px 300px at 0% 0%, color-mix(in srgb, var(--sg-electric-blue) 7%, transparent), transparent 65%),
    color-mix(in srgb, var(--sg-info-bg) 38%, var(--sg-bg-raised));
  box-shadow: var(--sg-shadow-md);
  padding: var(--sg-s-7);
}

.path-primary {
  border-color: color-mix(in srgb, var(--sg-electric-blue) 16%, var(--sg-border));
}

.path-kicker {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: .72rem;
  border: 1px solid var(--sg-electric-blue);
  border-radius: var(--sg-r-full);
  background: transparent;
  color: var(--sg-electric-blue);
  font-family: var(--sg-font-mono);
  font-size: clamp(.7rem, 1vw, var(--sg-text-xs));
  font-weight: 700;
  letter-spacing: var(--sg-tracking-wide);
  line-height: 1;
  padding: .82rem 1.35rem;
  text-transform: uppercase;
}

.path-kicker::before {
  content: "";
  width: .7rem;
  height: .7rem;
  border-radius: var(--sg-r-full);
  background: var(--sg-electric-blue);
}

.path-card h3 {
  max-width: 28ch;
  margin-top: var(--sg-s-5);
  font-family: var(--sg-font-display);
  font-size: 2rem;
  line-height: 1.12;
}

.path-title-stacked span {
  display: block;
}

.pipeline {
  display: grid;
  gap: var(--sg-s-4);
  margin: var(--sg-s-7) 0 0;
  padding: 0;
  list-style: none;
  counter-reset: pipeline-step;
}

.pipeline li {
  position: relative;
  display: grid;
  grid-template-columns: 4rem 1fr;
  column-gap: var(--sg-s-5);
  row-gap: 0;
  align-items: start;
  min-height: 4.15rem;
  padding: 0;
}

.pipeline li::before {
  content: counter(pipeline-step);
  counter-increment: pipeline-step;
  position: relative;
  z-index: 1;
  grid-column: 1;
  grid-row: 1 / span 2;
  display: inline-flex;
  width: 3.35rem;
  height: 3.35rem;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--sg-electric-blue);
  border-radius: var(--sg-r-md);
  background: #fff;
  color: var(--sg-electric-blue);
  font-family: var(--sg-font-display);
  font-size: var(--sg-text-xl);
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 10px 22px color-mix(in srgb, var(--sg-electric-blue) 12%, transparent);
}

.pipeline li::after {
  content: "";
  position: absolute;
  top: 3.35rem;
  bottom: calc(-1 * var(--sg-s-4));
  left: 1.64rem;
  width: 3px;
  border-radius: var(--sg-r-full);
  background: color-mix(in srgb, var(--sg-electric-blue) 48%, transparent);
}

.pipeline li:last-child::after {
  display: none;
}

.step-main {
  grid-column: 2;
  grid-row: 1;
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .42rem;
  margin-top: .2rem;
  color: var(--sg-text);
  font-size: var(--sg-text-lg);
  font-weight: 600;
  line-height: 1.05;
}

.step-main strong {
  color: var(--sg-electric-blue);
  font-family: var(--sg-font-body);
  font-weight: 600;
}

.step-main strong::after {
  content: "";
  display: inline-block;
  width: .72rem;
  height: 2px;
  margin-left: .42rem;
  vertical-align: middle;
  border-radius: var(--sg-r-full);
  background: var(--sg-text);
}

.step-detail {
  grid-column: 2;
  grid-row: 2;
  margin-top: -.2rem;
  color: var(--sg-text-muted);
  font-size: var(--sg-text-lg);
  line-height: 1.12;
}

.split-cta-section {
  padding-top: var(--sg-s-9);
}

.split-cta-intro {
  max-width: 44rem;
  margin-bottom: var(--sg-s-7);
}

.split-cta-intro .sg-label {
  gap: .7rem;
}

.split-cta-intro .sg-label::before {
  width: 2rem;
  height: 3px;
  border-radius: var(--sg-r-full);
}

.split-cta-intro h2 {
  max-width: 14.5ch;
  font-size: clamp(2.8rem, 5.2vw, var(--sg-text-5xl));
  line-height: 1.08;
}

.split-cta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  gap: var(--sg-s-6);
}

.split-cta article {
  display: flex;
  min-height: 21rem;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  border: 1px solid var(--sg-border);
  border-radius: var(--sg-r-xl);
  background: var(--sg-bg-raised);
  box-shadow: 0 22px 48px rgba(45, 42, 91, .08);
  padding: var(--sg-s-7);
}

.split-cta article.split-cta-primary {
  border-color: var(--sg-electric-blue);
  background: var(--sg-electric-blue);
  color: #fff;
}

.split-cta article.split-cta-secondary {
  border-color: color-mix(in srgb, var(--sg-electric-blue) 18%, var(--sg-border));
}

.split-cta p {
  margin-top: var(--sg-s-4);
  color: var(--sg-text-muted);
  font-size: var(--sg-text-lg);
  line-height: 1.55;
}

.split-cta-primary p {
  color: color-mix(in srgb, #fff 78%, transparent);
}

.split-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sg-s-4);
  min-height: 4.1rem;
  margin-top: var(--sg-s-7);
  border: 2px solid transparent;
  border-radius: var(--sg-r-full);
  font-size: var(--sg-text-base);
  font-weight: 900;
  line-height: 1;
  padding: 0 var(--sg-s-6);
  text-decoration: none;
  transition: transform var(--sg-dur-fast) var(--sg-ease), box-shadow var(--sg-dur-fast) var(--sg-ease), border-color var(--sg-dur-fast) var(--sg-ease);
  white-space: nowrap;
}

.split-action span {
  font-size: var(--sg-text-xl);
  line-height: 1;
}

.split-action:hover {
  transform: translateY(-1px);
}

.split-action-light {
  background: #fff;
  color: var(--sg-electric-blue);
}

.split-action-outline {
  border-color: color-mix(in srgb, var(--sg-electric-blue) 22%, var(--sg-border));
  background: #fff;
  color: var(--sg-text);
}

.split-action-outline:hover {
  border-color: color-mix(in srgb, var(--sg-electric-blue) 55%, var(--sg-border));
  box-shadow: var(--sg-shadow-sm);
}

.logo-strip-section {
  padding: var(--sg-s-8) 0 var(--sg-s-5);
}

.logo-strip-heading h2 {
  max-width: 26ch;
  font-size: clamp(2rem, 4vw, var(--sg-text-4xl));
}

.logo-strip-heading {
  margin-bottom: var(--sg-s-6);
}

.logo-marquee {
  overflow: hidden;
  background: transparent;
}

.logo-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: var(--sg-s-5);
  padding: var(--sg-s-5) var(--sg-s-4);
}

.logo-slot {
  display: flex;
  width: 14rem;
  height: 6.6rem;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  place-items: center;
  background: transparent;
  padding: var(--sg-s-2);
}

.logo-slot.logo-wide {
  width: 20rem;
}

.logo-slot.logo-square {
  width: 10.5rem;
}

.logo-slot img {
  display: block;
  max-width: 100%;
  max-height: 5.7rem;
  object-fit: contain;
}

.logo-slot.logo-square img {
  max-height: 5.9rem;
}

@media (prefers-reduced-motion: no-preference) {
  .logo-track {
    animation: logo-pan 48s linear infinite;
  }

  .logo-marquee:hover .logo-track {
    animation-play-state: paused;
  }
}

@keyframes logo-pan {
  to {
    transform: translateX(-50%);
  }
}

.final-cta {
  padding: var(--sg-s-9) 0;
  background:
    linear-gradient(
      180deg,
      var(--sg-indigo) 0%,
      var(--sg-indigo) 84%,
      color-mix(in srgb, var(--sg-indigo) 73%, #fff) 100%
    );
}

.final-cta-inner {
  display: grid;
  justify-items: start;
  max-width: 55rem;
}

.final-cta h2 {
  max-width: 16ch;
}

.final-cta p {
  max-width: none;
  margin-top: var(--sg-s-5);
  color: #c4cce6;
  font-size: var(--sg-text-lg);
}

.final-cta .cta-group {
  margin-top: var(--sg-s-7);
}

.site-footer {
  border-top: 1px solid var(--sg-border);
  background: var(--sg-bg-raised);
  color: var(--sg-text-muted);
  padding: var(--sg-s-5) 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sg-s-5);
}

.footer-brand {
  padding: 0;
}

.site-footer p {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: .4rem var(--sg-s-4);
  font-size: var(--sg-text-sm);
  font-weight: 700;
}

.site-footer p span:first-child {
  color: var(--sg-text);
}

:focus-visible {
  outline: 2px solid var(--sg-focus);
  outline-offset: 3px;
}

@media (max-width: 1040px) {
  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-button {
    display: inline-flex;
  }

  .hero {
    display: block;
    min-height: auto;
    padding: var(--sg-s-8) 0;
  }

  .hero-grid,
  .about-layout,
  .trust-layout {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 100%;
  }

  .hero-visual {
    position: relative;
    inset: auto;
    width: 100%;
    max-width: 42rem;
    margin-top: var(--sg-s-7);
    border: 1px solid var(--sg-border);
    border-radius: var(--sg-r-xl);
    box-shadow: var(--sg-shadow-lg);
  }

  .hero-visual::before,
  .hero-visual::after {
    display: none;
  }

  .hero-visual img {
    aspect-ratio: 3 / 2;
    height: auto;
  }

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

  .impact-wide {
    grid-column: span 1;
  }

  .solution-promise {
    grid-template-columns: 1fr;
    gap: var(--sg-s-6);
    border-radius: var(--sg-r-xl);
    padding: var(--sg-s-6);
  }

  .promise-copy {
    width: auto;
  }

  .portfolio-image {
    min-height: 24rem;
    margin: 0;
    border: 1px solid color-mix(in srgb, var(--sg-logo-4) 18%, var(--sg-border));
    border-radius: var(--sg-r-lg);
    box-shadow: 0 18px 42px rgba(45, 42, 91, .12);
  }

  .solution-promise h3 {
    max-width: 18ch;
  }
}

@media (max-width: 760px) {
  .wrap {
    width: min(100% - 1.25rem, var(--sg-container));
  }

  section {
    padding: var(--sg-s-8) 0;
  }

  .hero {
    padding: var(--sg-s-8) 0;
  }

  .hero-copy h1 {
    max-width: 100%;
    font-size: clamp(2rem, 10vw, 2.7rem);
  }

  #impact .section-intro h2 {
    white-space: normal;
  }

  .logo-strip-heading h2 {
    max-width: 100%;
  }

  .hero-subcopy p,
  .lead,
  .split-cta p,
  .final-cta p,
  .solution-promise p {
    font-size: var(--sg-text-base);
  }

  .cta-group {
    align-items: stretch;
    flex-direction: column;
  }

  .cta-group .btn,
  .split-cta .btn,
  .split-action {
    width: 100%;
  }

  .impact-grid,
  .problem-grid,
  .paths-grid,
  .split-cta {
    grid-template-columns: 1fr;
  }

  .impact-card {
    min-height: 11rem;
  }

  .problem-grid article {
    min-height: 7.6rem;
  }

  .solution-promise,
  .split-cta article,
  .path-card {
    padding: var(--sg-s-5);
  }

  .solution-promise {
    gap: var(--sg-s-5);
  }

  .portfolio-image {
    min-height: 18rem;
  }

  .split-cta-section {
    padding-top: var(--sg-s-8);
  }

  .split-action {
    min-height: 3.6rem;
    padding-inline: var(--sg-s-4);
    white-space: normal;
  }

  .solution-promise h3 {
    font-size: clamp(2rem, 9vw, 2.75rem);
  }

  .pipeline li {
    grid-template-columns: 3.75rem 1fr;
    gap: var(--sg-s-4);
    min-height: 4.6rem;
  }

  .pipeline li::before {
    width: 3.25rem;
    height: 3.25rem;
    font-size: var(--sg-text-lg);
  }

  .pipeline li::after {
    top: 3.25rem;
    left: 1.6rem;
  }

  .step-main {
    font-size: var(--sg-text-base);
  }

  .step-detail {
    font-size: var(--sg-text-base);
  }

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

@media (max-width: 420px) {
  .brand {
    font-size: var(--sg-text-base);
  }

  .menu-button {
    padding-inline: .8rem;
  }

  .lead-modal {
    width: min(100% - 1rem, 34rem);
  }

  .lead-modal-panel {
    padding: var(--sg-s-5);
  }

  .lead-modal-copy {
    padding-right: var(--sg-s-5);
  }
}

/* ============================================================
   SOLUTIONS PAGE
   ============================================================ */

.solutions-page {
  background: var(--sg-bg);
}

.desktop-nav a[aria-current="page"],
.mobile-nav a[aria-current="page"] {
  background: var(--sg-bg-sunken);
  color: var(--sg-indigo);
}

.solutions-hero {
  position: relative;
  display: flex;
  min-height: calc(100dvh - 69px);
  align-items: center;
  overflow: hidden;
  padding: clamp(3rem, 5vw, 4.5rem) 0;
}

.solutions-hero-inner {
  display: block;
}

.solutions-hero-copy {
  position: relative;
  z-index: 2;
  display: grid;
  gap: var(--sg-s-5);
  max-width: min(44rem, 43vw);
}

.solutions-hero-copy h1 {
  max-width: 16ch;
  font-size: clamp(2.35rem, 5vw, var(--sg-text-5xl));
  line-height: 1.08;
}

.solutions-hero-copy .lead {
  max-width: 44rem;
}

.solutions-hero-note {
  border-left: 4px solid var(--sg-logo-4);
  padding: var(--sg-s-2) 0 var(--sg-s-2) var(--sg-s-5);
}

.solutions-hero-note p {
  max-width: 32rem;
  color: var(--sg-text-muted);
  font-size: var(--sg-text-lg);
  font-weight: 600;
  line-height: 1.58;
}

.solutions-hero-copy .btn {
  width: fit-content;
  margin-top: var(--sg-s-2);
}

.solutions-hero-visual {
  position: absolute;
  inset: 0 0 0 auto;
  width: 62vw;
  margin: 0;
  overflow: hidden;
  border: 0;
  background: var(--sg-bg-raised);
}

.solutions-hero-visual::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 1;
  width: 34%;
  background:
    linear-gradient(90deg, var(--sg-bg) 0%, color-mix(in srgb, var(--sg-bg) 74%, transparent) 28%, transparent 100%);
  backdrop-filter: blur(6px);
  pointer-events: none;
}

.solutions-hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(560px 470px at 1% 50%, color-mix(in srgb, var(--sg-bg) 58%, transparent), transparent 58%),
    linear-gradient(90deg, color-mix(in srgb, var(--sg-bg) 22%, transparent), transparent 27%);
  pointer-events: none;
}

.solutions-hero-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.solutions-list {
  padding-top: var(--sg-s-5);
}

.solutions-list .wrap {
  display: grid;
  gap: var(--sg-s-7);
}

.solution-block {
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--sg-indigo) 13%, var(--sg-border));
  border-radius: var(--sg-r-xl);
  background: var(--sg-bg-raised);
  box-shadow: 0 18px 42px rgba(45, 42, 91, .08);
}

.solution-main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(25rem, .92fr);
  min-height: 34rem;
}

.solution-block.is-reversed .solution-copy {
  order: 2;
}

.solution-block.is-reversed .solution-visual {
  order: 1;
}

.solution-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: clamp(2rem, 5vw, var(--sg-s-8));
}

.solution-meta {
  display: flex;
  align-items: center;
  gap: var(--sg-s-4);
  color: var(--sg-electric-blue);
  font-family: var(--sg-font-mono);
  font-size: var(--sg-text-xs);
  font-weight: 800;
  letter-spacing: var(--sg-tracking-wide);
  line-height: 1.3;
  text-transform: uppercase;
}

.solution-number {
  color: color-mix(in srgb, var(--sg-electric-blue) 24%, var(--sg-bg-raised));
  font-family: var(--sg-font-display);
  font-size: clamp(3.5rem, 7vw, 6.2rem);
  letter-spacing: 0;
  line-height: .78;
}

.solution-copy h2 {
  max-width: 15ch;
  margin-top: var(--sg-s-4);
  font-size: clamp(2rem, 3.8vw, var(--sg-text-4xl));
}

.solution-summary {
  margin-top: var(--sg-s-5);
  color: var(--sg-text-muted);
  font-size: var(--sg-text-lg);
  font-weight: 600;
  line-height: 1.55;
}

.solution-audience,
.solution-result {
  margin-top: var(--sg-s-5);
  color: var(--sg-text);
  font-size: var(--sg-text-base);
  line-height: 1.45;
}

.solution-audience strong,
.solution-result strong {
  color: var(--sg-indigo);
}

.solution-toggle {
  width: fit-content;
  margin-top: var(--sg-s-6);
  border: 1px solid var(--sg-indigo);
  border-radius: var(--sg-r-full);
  background: var(--sg-indigo);
  color: #fff;
  cursor: pointer;
  font: 900 var(--sg-text-base) / 1 var(--sg-font-body);
  padding: .95rem 1.45rem;
  transition: transform var(--sg-dur-fast) var(--sg-ease), background var(--sg-dur-fast) var(--sg-ease), border-color var(--sg-dur-fast) var(--sg-ease);
  white-space: nowrap;
}

.solution-toggle:hover {
  background: var(--sg-electric-blue);
  border-color: var(--sg-electric-blue);
}

.solution-toggle:active {
  transform: translateY(1px);
}

.solution-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 34rem;
  overflow: hidden;
  border-left: 1px solid var(--sg-border);
  background:
    radial-gradient(460px 300px at 80% 18%, color-mix(in srgb, var(--sg-electric-blue) 16%, transparent), transparent 66%),
    radial-gradient(360px 260px at 12% 88%, rgba(255, 122, 48, .10), transparent 62%),
    color-mix(in srgb, var(--sg-n-100) 78%, #fff);
  padding: var(--sg-s-6);
}

.solution-block.is-reversed .solution-visual {
  border-right: 1px solid var(--sg-border);
  border-left: 0;
}

.visual-window,
.visual-process {
  width: min(100%, 28rem);
  border: 1px solid color-mix(in srgb, var(--sg-indigo) 18%, var(--sg-border));
  border-radius: var(--sg-r-lg);
  background: rgba(255, 255, 255, .88);
  box-shadow: 0 24px 58px rgba(45, 42, 91, .16);
}

.visual-window {
  display: grid;
  gap: var(--sg-s-4);
  padding: var(--sg-s-5);
}

.visual-toolbar {
  display: flex;
  justify-content: space-between;
  gap: var(--sg-s-4);
  color: var(--sg-text-muted);
  font-family: var(--sg-font-mono);
  font-size: var(--sg-text-xs);
  font-weight: 800;
}

.chart-lines {
  position: relative;
  display: grid;
  gap: var(--sg-s-4);
  min-height: 13rem;
  overflow: hidden;
  border-radius: var(--sg-r-md);
  background: linear-gradient(180deg, #fff, color-mix(in srgb, var(--sg-info-bg) 42%, #fff));
  padding: var(--sg-s-5);
}

.chart-lines i,
.chart-lines b {
  display: block;
  height: 3px;
  border-radius: var(--sg-r-full);
}

.chart-lines i {
  width: 100%;
  background: var(--sg-border);
}

.chart-lines b {
  position: absolute;
  left: var(--sg-s-5);
  background: var(--sg-electric-blue);
  transform-origin: left;
}

.chart-lines b:nth-of-type(1) {
  top: 42%;
  width: 44%;
  transform: rotate(-8deg);
}

.chart-lines b:nth-of-type(2) {
  top: 51%;
  width: 52%;
  transform: rotate(11deg);
}

.chart-lines b:nth-of-type(3) {
  top: 59%;
  width: 68%;
  background: var(--sg-accent);
  transform: rotate(-5deg);
}

.visual-grid {
  display: grid;
  gap: var(--sg-s-2);
}

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

.visual-grid span,
.visual-grid strong {
  border-radius: var(--sg-r-sm);
  background: var(--sg-bg);
  color: var(--sg-text-muted);
  font-size: var(--sg-text-xs);
  font-weight: 900;
  padding: .7rem;
}

.visual-grid strong {
  color: var(--sg-indigo);
}

.chat-question {
  border-radius: var(--sg-r-lg) var(--sg-r-lg) var(--sg-r-sm) var(--sg-r-lg);
  background: var(--sg-electric-blue);
  color: #fff;
  font-weight: 900;
  padding: var(--sg-s-4);
}

.checklist {
  display: grid;
  gap: var(--sg-s-3);
}

.checklist span {
  border: 1px solid var(--sg-border);
  border-radius: var(--sg-r-md);
  background: var(--sg-bg);
  color: var(--sg-indigo);
  font-weight: 800;
  padding: var(--sg-s-3) var(--sg-s-4);
}

.checklist span::before {
  content: "✓";
  color: var(--sg-electric-blue);
  font-weight: 900;
  margin-right: .6rem;
}

.document-view p {
  border-left: 3px solid var(--sg-border-strong);
  color: var(--sg-text-muted);
  font-family: var(--sg-font-mono);
  font-size: var(--sg-text-sm);
  line-height: 1.45;
  padding: var(--sg-s-3);
}

.document-view .marked {
  border-left-color: var(--sg-accent);
  background: color-mix(in srgb, var(--sg-accent) 12%, #fff);
  color: var(--sg-indigo);
  font-weight: 800;
}

.document-view .marked.alt {
  border-left-color: var(--sg-electric-blue);
  background: color-mix(in srgb, var(--sg-info-bg) 60%, #fff);
}

.research-board {
  grid-template-columns: repeat(3, 1fr);
  min-height: 18rem;
}

.research-board div,
.support-console div,
.docs-workbench div {
  display: grid;
  align-content: start;
  gap: var(--sg-s-2);
  border: 1px solid var(--sg-border);
  border-radius: var(--sg-r-md);
  background: var(--sg-bg);
  color: var(--sg-indigo);
  font-weight: 900;
  padding: var(--sg-s-4);
}

.research-board span,
.support-console span,
.docs-workbench span {
  color: var(--sg-text-muted);
  font-size: var(--sg-text-sm);
  font-weight: 700;
  line-height: 1.35;
}

.visual-portfolio {
  padding: 0;
  background: var(--sg-bg-raised);
}

.visual-forecast {
  padding: var(--sg-s-4);
  background: var(--sg-bg-raised);
}

.solution-image {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 34rem;
  object-fit: cover;
  object-position: center;
}

.solution-image-contain {
  width: calc(100% - var(--sg-s-6));
  height: calc(100% - var(--sg-s-6));
  max-height: 31rem;
  min-height: 0;
  object-fit: contain;
  object-position: center;
}

.forecast-image {
  width: min(100% - var(--sg-s-3), 33rem);
  height: auto;
  max-height: 31rem;
  border: 1px solid color-mix(in srgb, var(--sg-indigo) 12%, var(--sg-border));
  border-radius: var(--sg-r-lg);
  background: #fff;
  box-shadow: 0 18px 42px rgba(45, 42, 91, .12);
}

.portfolio-image-fit {
  width: calc(100% - var(--sg-s-5));
  height: calc(100% - var(--sg-s-5));
  max-width: 100%;
  max-height: 31.5rem;
  object-position: left center;
}

.visual-process {
  display: grid;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.process-map {
  display: grid;
  justify-items: center;
  gap: var(--sg-s-3);
}

.process-map span {
  position: relative;
  width: min(100%, 24rem);
  border: 1px solid color-mix(in srgb, var(--sg-electric-blue) 18%, var(--sg-border));
  border-radius: var(--sg-r-full);
  background: rgba(255, 255, 255, .9);
  color: var(--sg-indigo);
  font-weight: 900;
  padding: var(--sg-s-4) var(--sg-s-5);
  text-align: center;
}

.process-map span + span::before {
  content: "";
  position: absolute;
  top: calc(-1 * var(--sg-s-3));
  left: 50%;
  width: 2px;
  height: var(--sg-s-3);
  background: var(--sg-electric-blue);
}

.support-console,
.docs-workbench {
  grid-template-columns: 1fr 1fr;
}

.support-console div:first-child,
.docs-workbench .scheme {
  grid-row: span 2;
}

.scheme {
  min-height: 14rem;
  background:
    linear-gradient(90deg, transparent 48%, color-mix(in srgb, var(--sg-electric-blue) 40%, transparent) 48% 52%, transparent 52%),
    linear-gradient(0deg, transparent 48%, color-mix(in srgb, var(--sg-electric-blue) 40%, transparent) 48% 52%, transparent 52%),
    color-mix(in srgb, var(--sg-info-bg) 55%, #fff) !important;
}

.docs-chat {
  align-content: center;
  min-height: 24rem;
}

.chat-answer {
  display: grid;
  gap: var(--sg-s-2);
  border: 1px solid var(--sg-border);
  border-radius: var(--sg-r-lg) var(--sg-r-lg) var(--sg-r-lg) var(--sg-r-sm);
  background: var(--sg-bg);
  color: var(--sg-indigo);
  font-weight: 800;
  padding: var(--sg-s-4);
}

.chat-answer span {
  color: var(--sg-text-muted);
  font-size: var(--sg-text-base);
  font-weight: 700;
  line-height: 1.5;
}

.source-row {
  border: 1px solid color-mix(in srgb, var(--sg-electric-blue) 18%, var(--sg-border));
  border-radius: var(--sg-r-full);
  background: color-mix(in srgb, var(--sg-info-bg) 48%, #fff);
  color: var(--sg-indigo);
  font-family: var(--sg-font-mono);
  font-size: var(--sg-text-xs);
  font-weight: 900;
  padding: .8rem 1rem;
}

.solution-details {
  border-top: 1px solid var(--sg-border);
  background:
    radial-gradient(520px 280px at 100% 0%, color-mix(in srgb, var(--sg-electric-blue) 7%, transparent), transparent 68%),
    color-mix(in srgb, var(--sg-bg) 72%, #fff);
  padding: clamp(1.5rem, 4vw, var(--sg-s-7));
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--sg-s-4);
}

.detail-grid section {
  border: 1px solid var(--sg-border);
  border-radius: var(--sg-r-lg);
  background: rgba(255, 255, 255, .76);
  padding: var(--sg-s-5);
}

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

.detail-grid h3 {
  color: var(--sg-electric-blue);
  font-family: var(--sg-font-mono);
  font-size: var(--sg-text-xs);
  font-weight: 900;
  letter-spacing: var(--sg-tracking-wide);
  text-transform: uppercase;
}

.detail-grid p,
.detail-grid li {
  color: var(--sg-text-muted);
  font-size: var(--sg-text-base);
  font-weight: 650;
  line-height: 1.55;
}

.detail-grid p,
.detail-grid ol,
.metric-text {
  margin-top: var(--sg-s-3);
}

.detail-grid ol {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--sg-s-3) var(--sg-s-5);
  padding-left: 1.2rem;
}

.detail-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin-top: var(--sg-s-5);
  border-radius: var(--sg-r-full);
  background: var(--sg-accent);
  color: var(--sg-accent-ink);
  font-weight: 900;
  line-height: 1;
  padding: 1rem 1.45rem;
  text-decoration: none;
  transition: transform var(--sg-dur-fast) var(--sg-ease), box-shadow var(--sg-dur-fast) var(--sg-ease);
  white-space: nowrap;
}

.detail-cta:hover {
  box-shadow: var(--sg-shadow-accent);
}

.detail-cta:active {
  transform: translateY(1px);
}

.solutions-final {
  padding: var(--sg-s-9) 0;
}

.solutions-final-inner {
  display: grid;
  justify-items: start;
  max-width: 58rem;
  gap: var(--sg-s-5);
}

.solutions-final h2 {
  max-width: 16ch;
  font-size: clamp(2rem, 4vw, var(--sg-text-4xl));
}

.solutions-final p {
  color: #c4cce6;
  font-size: var(--sg-text-lg);
  font-weight: 600;
  line-height: 1.58;
}

.about-page .desktop-nav a[aria-current="page"],
.about-page .mobile-nav a[aria-current="page"] {
  background: var(--sg-bg-sunken);
  color: var(--sg-indigo);
}

.about-text-hero {
  padding: clamp(4rem, 7vw, var(--sg-s-10)) 0 var(--sg-s-8);
}

.about-text-wrap {
  width: min(100% - 2rem, 920px);
}

.about-text-hero h1 {
  max-width: 16ch;
  margin-top: var(--sg-s-4);
  font-size: clamp(2.4rem, 5vw, var(--sg-text-5xl));
}

.about-hero-lead {
  max-width: 760px;
  margin-top: var(--sg-s-5);
  color: var(--sg-text-muted);
  font-size: clamp(1.16rem, 2vw, var(--sg-text-xl));
  font-weight: 650;
  line-height: 1.58;
}

.about-text-section {
  padding: var(--sg-s-8) 0 var(--sg-s-9);
}

.about-text-section .about-text-wrap {
  display: grid;
  gap: var(--sg-s-8);
}

.about-text-block {
  position: relative;
  padding-left: clamp(1.2rem, 3vw, var(--sg-s-6));
}

.about-text-block::before {
  content: "";
  position: absolute;
  top: .35rem;
  bottom: .35rem;
  left: 0;
  width: 4px;
  border-radius: var(--sg-r-full);
  background: color-mix(in srgb, var(--sg-electric-blue) 42%, var(--sg-border));
}

.about-text-block-accent::before {
  background: var(--sg-accent);
}

.about-text-block h2 {
  max-width: 20ch;
  font-size: clamp(1.7rem, 3vw, var(--sg-text-3xl));
}

.about-text-block .about-prose {
  margin-top: var(--sg-s-5);
}

.about-tech-prose p + p {
  padding-top: var(--sg-s-1);
}

.about-tech-prose strong {
  color: var(--sg-indigo);
  font-weight: 900;
}

.about-hero-actions {
  margin-top: var(--sg-s-7);
}

.about-prose {
  display: grid;
  gap: var(--sg-s-5);
}

.about-prose p {
  color: var(--sg-text-muted);
  font-size: var(--sg-text-lg);
  font-weight: 650;
  line-height: 1.62;
}

.about-section-intro {
  max-width: 58rem;
}

.about-section-intro h2 {
  max-width: 19ch;
}

.about-final {
  padding: var(--sg-s-9) 0;
}

.about-final-inner {
  display: grid;
  justify-items: start;
  max-width: 62rem;
}

.about-final h2 {
  max-width: 19ch;
}

.about-final p {
  margin-top: var(--sg-s-5);
  color: #c4cce6;
  font-size: var(--sg-text-lg);
  font-weight: 650;
  line-height: 1.58;
}

.about-final .cta-group {
  margin-top: var(--sg-s-7);
}

@media (max-width: 760px) {
  .about-text-wrap {
    width: min(100% - 1.25rem, 920px);
  }

  .about-text-hero h1 {
    font-size: clamp(2.15rem, 10vw, 2.8rem);
  }

  .about-hero-actions .btn,
  .about-final .btn {
    width: 100%;
  }

  .about-prose p,
  .about-final p {
    font-size: var(--sg-text-base);
  }
}

@media (prefers-reduced-motion: no-preference) {
  .solution-block {
    animation: solution-rise .5s var(--sg-ease) both;
    animation-timeline: view();
    animation-range: entry 0% cover 24%;
  }
}

@keyframes solution-rise {
  from {
    opacity: .3;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1040px) {
  .solution-main,
  .detail-grid {
    grid-template-columns: 1fr;
  }

  .solutions-hero {
    display: block;
    min-height: auto;
    padding: var(--sg-s-8) 0;
  }

  .solutions-hero-inner {
    display: grid;
    grid-template-columns: 1fr;
  }

  .solutions-hero-copy {
    max-width: 100%;
  }

  .solutions-hero-visual {
    position: relative;
    inset: auto;
    width: 100%;
    max-width: 42rem;
    margin-top: var(--sg-s-7);
    border: 1px solid var(--sg-border);
    border-radius: var(--sg-r-xl);
    box-shadow: var(--sg-shadow-lg);
  }

  .solutions-hero-visual::before,
  .solutions-hero-visual::after {
    display: none;
  }

  .solutions-hero-visual img {
    aspect-ratio: 3 / 2;
    height: auto;
  }

  .solution-block.is-reversed .solution-copy,
  .solution-block.is-reversed .solution-visual {
    order: initial;
  }

  .solution-visual,
  .solution-block.is-reversed .solution-visual {
    min-height: 26rem;
    border-top: 1px solid var(--sg-border);
    border-right: 0;
    border-left: 0;
  }

  .detail-grid .detail-wide,
  .detail-grid ol {
    grid-column: auto;
  }

  .detail-grid ol {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .solutions-hero-copy h1,
  .solutions-final h2 {
    max-width: 100%;
  }

  .solutions-hero-copy .btn,
  .solution-toggle,
  .detail-cta {
    width: 100%;
  }

  .solution-copy {
    padding: var(--sg-s-5);
  }

  .solution-summary,
  .solutions-hero-note p,
  .solutions-final p {
    font-size: var(--sg-text-base);
  }

  .solution-main {
    min-height: auto;
  }

  .solution-meta {
    align-items: flex-start;
    flex-direction: column;
    gap: var(--sg-s-2);
  }

  .solution-number {
    font-size: 3.8rem;
  }

  .solution-visual {
    min-height: 20rem;
    padding: var(--sg-s-4);
  }

  .research-board,
  .support-console,
  .docs-workbench {
    grid-template-columns: 1fr;
  }

  .support-console div:first-child,
  .docs-workbench .scheme {
    grid-row: auto;
  }

  .solution-image {
    min-height: 20rem;
  }

  .detail-grid section {
    padding: var(--sg-s-4);
  }

  .detail-cta {
    white-space: normal;
  }
}

/* ============================================================
   AI TRANSFORMATION ARTICLE
   ============================================================ */

.ai-article-page {
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--sg-cloud) 92%, var(--sg-logo-7)) 0%, var(--sg-cloud) 32rem),
    var(--sg-cloud);
}

.ai-article-page .desktop-nav a[aria-current="page"],
.ai-article-page .mobile-nav a[aria-current="page"] {
  background: var(--sg-bg-sunken);
  color: var(--sg-indigo);
}

.article-wrap {
  width: min(100% - 2rem, 1180px);
  margin: 0 auto;
}

.article-hero {
  padding: clamp(3.5rem, 8vw, 6.5rem) 0 clamp(3.5rem, 7vw, 5.5rem);
}

.article-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, .84fr) minmax(24rem, 1.16fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
}

.article-kicker {
  width: fit-content;
  margin-bottom: var(--sg-s-4);
  border-bottom: 2px solid var(--sg-accent);
  color: var(--sg-logo-4);
  font-family: var(--sg-font-mono);
  font-size: var(--sg-text-sm);
  font-weight: 700;
  letter-spacing: .02em;
}

.article-hero-copy h1 {
  max-width: 13.5ch;
  color: var(--sg-text);
  font-size: clamp(2.3rem, 4.8vw, 4.25rem);
  line-height: 1.08;
}

.article-standfirst {
  margin-top: var(--sg-s-5);
  color: var(--sg-text-muted);
  font-size: clamp(1.1rem, 1.9vw, 1.38rem);
  line-height: 1.55;
}

.article-read-link {
  display: inline-flex;
  align-items: center;
  margin-top: var(--sg-s-6);
  border-bottom: 2px solid currentColor;
  color: var(--sg-indigo);
  font-weight: 850;
  text-decoration: none;
}

.article-read-link:hover {
  color: var(--sg-electric-blue);
}

.article-cover {
  position: relative;
  margin: 0;
  border: 1px solid color-mix(in srgb, var(--sg-logo-1) 14%, transparent);
  border-radius: var(--sg-r-xl);
  background: var(--sg-bg-raised);
  box-shadow: 0 26px 70px rgba(45, 42, 91, .16);
  overflow: hidden;
}

.article-cover img {
  display: block;
  width: 100%;
  aspect-ratio: 1.2 / 1;
  object-fit: contain;
  background: color-mix(in srgb, var(--sg-logo-1) 5%, var(--sg-bg-raised));
}

.article-cover figcaption,
.article-image figcaption {
  border-top: 1px solid var(--sg-border);
  background: color-mix(in srgb, var(--sg-bg-raised) 86%, var(--sg-logo-7));
  color: var(--sg-text-muted);
  font-size: var(--sg-text-sm);
  line-height: 1.45;
  padding: var(--sg-s-4) var(--sg-s-5);
}

.article-body {
  padding: clamp(3rem, 7vw, 6rem) 0 clamp(4rem, 8vw, 7rem);
}

.article-layout {
  display: grid;
  grid-template-columns: 14rem minmax(0, 780px);
  justify-content: center;
  gap: clamp(2rem, 5vw, 5rem);
}

.article-toc {
  position: sticky;
  top: 6rem;
  align-self: start;
  display: grid;
  gap: .35rem;
  padding-top: .3rem;
}

.article-toc a {
  border-left: 2px solid transparent;
  color: var(--sg-text-subtle);
  font-size: var(--sg-text-sm);
  font-weight: 800;
  line-height: 1.25;
  padding: .45rem 0 .45rem .8rem;
  text-decoration: none;
}

.article-toc a:hover {
  border-color: var(--sg-accent);
  color: var(--sg-indigo);
}

.article-prose {
  min-width: 0;
}

.article-section {
  padding: 0 0 clamp(3.5rem, 8vw, 6.5rem);
}

.article-section + .article-section {
  border-top: 1px solid color-mix(in srgb, var(--sg-border) 76%, transparent);
  padding-top: clamp(3.5rem, 7vw, 5.5rem);
}

.article-section h2 {
  max-width: 13ch;
  color: var(--sg-indigo);
  font-size: clamp(2rem, 4.1vw, 3.45rem);
  line-height: 1.08;
  margin-bottom: var(--sg-s-5);
}

.article-section h3 {
  color: var(--sg-indigo);
  font-size: clamp(1.2rem, 2vw, 1.48rem);
  margin-bottom: var(--sg-s-3);
}

.article-prose p {
  color: var(--sg-text);
  font-size: clamp(1.08rem, 1.5vw, 1.22rem);
  line-height: 1.74;
}

.article-prose p + p {
  margin-top: var(--sg-s-5);
}

.article-prose blockquote {
  margin: clamp(2rem, 5vw, 3.5rem) 0;
  border-left: 4px solid var(--sg-accent);
  padding: .2rem 0 .2rem clamp(1.25rem, 3vw, 2rem);
}

.article-prose blockquote p {
  color: var(--sg-indigo);
  font-family: var(--sg-font-display);
  font-size: clamp(1.45rem, 3vw, 2.2rem);
  font-weight: 700;
  line-height: 1.24;
}

.article-table-wrap {
  margin: clamp(1.8rem, 4vw, 3rem) 0;
  overflow-x: auto;
  border: 1px solid color-mix(in srgb, var(--sg-logo-1) 13%, transparent);
  border-radius: var(--sg-r-lg);
  background: var(--sg-bg-raised);
  box-shadow: var(--sg-shadow-sm);
}

.article-table {
  width: 100%;
  min-width: 42rem;
  border-collapse: collapse;
}

.article-table th,
.article-table td {
  border-bottom: 1px solid var(--sg-border);
  padding: 1rem 1.1rem;
  text-align: left;
  vertical-align: top;
}

.article-table th {
  background: color-mix(in srgb, var(--sg-logo-4) 10%, var(--sg-bg-raised));
  color: var(--sg-indigo);
  font-size: var(--sg-text-sm);
  font-weight: 900;
  line-height: 1.25;
}

.article-table td {
  color: var(--sg-text-muted);
  font-size: 1rem;
  line-height: 1.52;
}

.article-table td:first-child {
  color: var(--sg-text);
  font-weight: 850;
}

.article-table tr:last-child td {
  border-bottom: 0;
}

.article-table-wide {
  min-width: 52rem;
}

.article-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .85rem 1.3rem;
  margin: clamp(1.5rem, 4vw, 2.5rem) 0 0;
  padding: 0;
  list-style: none;
}

.article-list li {
  border-top: 1px solid var(--sg-border);
  color: var(--sg-text-muted);
  font-size: 1.02rem;
  font-weight: 750;
  line-height: 1.45;
  padding-top: .85rem;
}

.article-feature {
  margin-right: calc(-1 * clamp(0rem, 7vw, 7rem));
}

.article-triad {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: var(--sg-s-6);
  border-top: 1px solid var(--sg-border-strong);
  border-bottom: 1px solid var(--sg-border-strong);
}

.article-triad div {
  padding: clamp(1.25rem, 3vw, 2rem);
}

.article-triad div + div {
  border-left: 1px solid var(--sg-border);
}

.article-triad p {
  color: var(--sg-text-muted);
  font-size: 1rem;
  line-height: 1.58;
}

.article-image {
  margin: clamp(2rem, 5vw, 3.5rem) 0;
  border: 1px solid color-mix(in srgb, var(--sg-logo-1) 13%, transparent);
  border-radius: var(--sg-r-xl);
  background: var(--sg-bg-raised);
  box-shadow: 0 18px 46px rgba(45, 42, 91, .12);
  overflow: hidden;
}

.article-image img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: contain;
  background: color-mix(in srgb, var(--sg-logo-1) 6%, var(--sg-bg-raised));
}

.trust-label {
  display: inline-flex;
  align-items: center;
  border: 1px solid currentColor;
  border-radius: var(--sg-r-full);
  font-family: var(--sg-font-mono);
  font-size: .78rem;
  font-weight: 800;
  line-height: 1;
  padding: .42rem .65rem;
  white-space: nowrap;
}

.trust-label.claimed {
  color: var(--sg-text-subtle);
}

.trust-label.pilot {
  color: var(--sg-warning);
}

.trust-label.confirmed {
  color: var(--sg-success);
}

.stage-line {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: clamp(1.8rem, 4vw, 3rem) 0 0;
  padding: 0;
  list-style: none;
  counter-reset: stage;
}

.stage-line li {
  position: relative;
  counter-increment: stage;
  border-top: 2px solid var(--sg-logo-4);
  color: var(--sg-indigo);
  font-family: var(--sg-font-mono);
  font-size: .9rem;
  font-weight: 800;
  line-height: 1.25;
  padding: 1.2rem 1rem 0 0;
}

.stage-line li::before {
  content: counter(stage);
  position: absolute;
  top: -.9rem;
  left: 0;
  display: grid;
  width: 1.8rem;
  height: 1.8rem;
  place-items: center;
  border: 2px solid var(--sg-logo-4);
  border-radius: var(--sg-r-full);
  background: var(--sg-cloud);
  color: var(--sg-logo-4);
  font-size: .78rem;
}

.article-steps {
  display: grid;
  gap: 1rem;
  margin: clamp(1.8rem, 4vw, 2.5rem) 0;
  padding: 0;
  list-style: none;
}

.article-steps li {
  border-left: 3px solid color-mix(in srgb, var(--sg-logo-4) 38%, var(--sg-border));
  color: var(--sg-text-muted);
  font-size: 1.05rem;
  line-height: 1.62;
  padding-left: 1.15rem;
}

.article-steps strong {
  color: var(--sg-indigo);
}

.article-final {
  border-top: 1px solid rgba(255, 255, 255, .13);
  background:
    radial-gradient(900px 420px at 82% 12%, rgba(22, 154, 190, .26), transparent 62%),
    var(--sg-indigo);
  color: var(--sg-text-inverse);
  padding: clamp(4rem, 9vw, 7rem) 0;
}

.article-final-inner {
  max-width: 820px;
}

.article-final h2 {
  color: var(--sg-text-inverse);
  font-size: clamp(2rem, 4vw, 3.65rem);
  line-height: 1.1;
}

.article-final p {
  margin-top: var(--sg-s-5);
  color: #c4cce6;
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  line-height: 1.62;
}

.article-final .btn {
  margin-top: var(--sg-s-6);
}

.article-final-note {
  font-size: var(--sg-text-base) !important;
}

@media (prefers-reduced-motion: no-preference) {
  .article-section {
    animation: article-rise .55s var(--sg-ease) both;
    animation-timeline: view();
    animation-range: entry 0% cover 18%;
  }
}

@keyframes article-rise {
  from {
    opacity: .35;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1040px) {
  .article-hero-inner,
  .article-layout {
    grid-template-columns: 1fr;
  }

  .article-hero-copy h1 {
    max-width: 12ch;
  }

  .article-toc {
    position: static;
    display: flex;
    gap: .25rem;
    overflow-x: auto;
    border-top: 1px solid var(--sg-border);
    border-bottom: 1px solid var(--sg-border);
    padding: .65rem 0;
  }

  .article-toc a {
    flex: 0 0 auto;
    border-left: 0;
    border-bottom: 2px solid transparent;
    padding: .45rem .65rem;
  }

  .article-toc a:hover {
    border-color: var(--sg-accent);
  }

  .article-feature {
    margin-right: 0;
  }
}

@media (max-width: 760px) {
  .article-wrap {
    width: min(100% - 1.25rem, 1180px);
  }

  .article-hero {
    padding-top: var(--sg-s-7);
  }

  .article-standfirst,
  .article-prose p {
    font-size: var(--sg-text-base);
  }

  .article-cover,
  .article-image,
  .article-table-wrap {
    border-radius: var(--sg-r-md);
  }

  .article-cover figcaption,
  .article-image figcaption {
    padding: var(--sg-s-3) var(--sg-s-4);
  }

  .article-section h2 {
    max-width: 100%;
  }

  .article-list,
  .article-triad,
  .stage-line {
    grid-template-columns: 1fr;
  }

  .article-triad div + div {
    border-top: 1px solid var(--sg-border);
    border-left: 0;
  }

  .stage-line {
    gap: 1rem;
  }

  .stage-line li {
    border-top: 0;
    border-left: 2px solid var(--sg-logo-4);
    padding: .25rem 0 0 2.5rem;
  }

  .stage-line li::before {
    top: 0;
    left: -.95rem;
  }

  .article-final .btn {
    width: 100%;
  }
}

/* ============================================================
   AI TRANSFORMATION
   ============================================================ */

.ai-v2-page {
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--sg-cloud) 88%, var(--sg-info-bg)) 0%, var(--sg-cloud) 34rem),
    var(--sg-cloud);
}

.ai-v2-page .desktop-nav a[aria-current="page"],
.ai-v2-page .mobile-nav a[aria-current="page"] {
  background: var(--sg-bg-sunken);
  color: var(--sg-indigo);
}

.v2-hero {
  position: relative;
  display: flex;
  min-height: calc(100dvh - 69px);
  align-items: center;
  overflow: hidden;
  padding: clamp(3rem, 5vw, 4.5rem) 0;
}

.v2-hero-grid,
.v2-cockpit-grid,
.v2-split {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(22rem, 1.05fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
}

.v2-hero-grid {
  display: block;
}

.v2-hero-copy {
  position: relative;
  z-index: 2;
  max-width: min(46rem, 48vw);
}

.v2-hero-copy h1,
.v2-section-head h2,
.v2-split h2,
.v2-cockpit-copy h2,
.v2-final h2 {
  color: var(--sg-indigo);
  font-size: clamp(2.15rem, 4.4vw, 4.1rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.v2-hero-copy h1 {
  max-width: 14ch;
  margin-top: var(--sg-s-4);
}

.v2-hero-copy p {
  max-width: 38rem;
  margin: var(--sg-s-5) 0 var(--sg-s-6);
  color: var(--sg-text-muted);
  font-size: clamp(1.08rem, 1.8vw, 1.32rem);
  font-weight: 700;
  line-height: 1.55;
}

.v2-hero-media,
.v2-cockpit-image {
  margin: 0;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--sg-logo-1) 14%, transparent);
  border-radius: var(--sg-r-xl);
  background: var(--sg-bg-raised);
  box-shadow: 0 26px 70px rgba(45, 42, 91, .16);
}

.v2-hero-media {
  position: absolute;
  inset: 0 0 0 auto;
  width: 50vw;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.v2-hero-media::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 1;
  width: 18%;
  background:
    linear-gradient(90deg, var(--sg-bg) 0%, color-mix(in srgb, var(--sg-bg) 64%, transparent) 42%, transparent 100%);
  backdrop-filter: blur(7px);
  pointer-events: none;
}

.v2-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(640px 520px at 0% 50%, color-mix(in srgb, var(--sg-bg) 62%, transparent), transparent 44%),
    linear-gradient(90deg, color-mix(in srgb, var(--sg-bg) 30%, transparent), transparent 18%);
  pointer-events: none;
}

.v2-hero-media img,
.v2-cockpit-image img {
  display: block;
  width: 100%;
  aspect-ratio: 1.18 / 1;
  object-fit: contain;
  background: color-mix(in srgb, var(--sg-logo-1) 5%, var(--sg-bg-raised));
}

.v2-hero-media img {
  height: 100%;
  object-fit: cover;
  object-position: center;
  background: var(--sg-bg-raised);
}

.v2-hero-media figcaption,
.v2-cockpit-image figcaption {
  border-top: 1px solid var(--sg-border);
  color: var(--sg-text-muted);
  font-size: var(--sg-text-sm);
  font-weight: 700;
  line-height: 1.45;
  padding: var(--sg-s-4) var(--sg-s-5);
}

.v2-section-head {
  max-width: 52rem;
}

.v2-section-head h2,
.v2-split h2 {
  max-width: 15ch;
  margin-top: var(--sg-s-3);
}

.v2-section-head .lead,
.v2-split .lead {
  margin-top: var(--sg-s-4);
}

.v2-three,
.v2-outcome-grid,
.v2-loop-grid,
.v2-role-grid,
.v2-entry-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--sg-s-4);
  margin-top: var(--sg-s-8);
}

.v2-three article,
.v2-outcome-grid article,
.v2-loop-grid article,
.v2-role-grid article,
.v2-entry-grid article,
.v2-zone-grid article {
  border: 1px solid color-mix(in srgb, var(--sg-logo-1) 12%, transparent);
  border-radius: var(--sg-r-lg);
  background: var(--sg-bg-raised);
  box-shadow: var(--sg-shadow-sm);
  padding: var(--sg-s-5);
}

.v2-three article.is-accent,
.v2-control article.is-accent {
  border-color: color-mix(in srgb, var(--sg-accent) 50%, var(--sg-border));
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--sg-accent) 13%, #fff), #fff 72%);
}

.v2-three h3,
.v2-outcome-grid h3,
.v2-loop-grid h3,
.v2-role-grid h3,
.v2-entry-grid h3,
.v2-zone-grid h3 {
  color: var(--sg-indigo);
  font-size: clamp(1.12rem, 1.5vw, 1.35rem);
  margin-bottom: var(--sg-s-3);
}

.v2-three p,
.v2-outcome-grid p,
.v2-loop-grid p,
.v2-role-grid p,
.v2-entry-grid p,
.v2-zone-grid p {
  color: var(--sg-text-muted);
  font-weight: 700;
  line-height: 1.55;
}

.v2-outcome-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.v2-outcome-grid article {
  min-height: 15rem;
}

.v2-outcome-grid span,
.v2-loop-grid > article > span,
.v2-zone-grid span {
  display: inline-flex;
  color: var(--sg-electric-blue);
  font-family: var(--sg-font-mono);
  font-size: var(--sg-text-xs);
  font-weight: 900;
  letter-spacing: .04em;
  margin-bottom: var(--sg-s-5);
}

.v2-callout {
  margin-top: var(--sg-s-7);
}

.v2-callout p {
  max-width: 56rem;
  border-left: 4px solid var(--sg-accent);
  color: var(--sg-indigo);
  font-family: var(--sg-font-display);
  font-size: clamp(1.35rem, 2.4vw, 2.15rem);
  font-weight: 700;
  line-height: 1.28;
  padding-left: var(--sg-s-5);
}

.v2-gap-list {
  display: grid;
  gap: var(--sg-s-3);
}

.v2-gap-list article {
  display: grid;
  gap: var(--sg-s-2);
  border-left: 4px solid color-mix(in srgb, var(--sg-electric-blue) 42%, var(--sg-border));
  border-radius: 0 var(--sg-r-md) var(--sg-r-md) 0;
  background: color-mix(in srgb, var(--sg-bg-raised) 86%, transparent);
  box-shadow: var(--sg-shadow-sm);
  padding: var(--sg-s-4) var(--sg-s-5);
}

.v2-gap-list b {
  color: var(--sg-text);
  font-size: var(--sg-text-lg);
  line-height: 1.28;
}

.v2-gap-list span {
  color: var(--sg-text-muted);
  font-weight: 700;
  line-height: 1.42;
}

.v2-loop-grid {
  align-items: stretch;
}

.v2-loop-grid article {
  display: flex;
  min-height: 28rem;
  flex-direction: column;
}

.v2-loop-grid ol {
  display: grid;
  gap: var(--sg-s-2);
  margin: auto 0 0;
  padding: var(--sg-s-5) 0 0;
  list-style: none;
  border-top: 1px solid var(--sg-border);
}

.v2-loop-grid li {
  color: var(--sg-text);
  font-family: var(--sg-font-mono);
  font-size: var(--sg-text-sm);
  font-weight: 800;
  line-height: 1.35;
}

.v2-control {
  margin-top: var(--sg-s-6);
}

.v2-cockpit {
  padding: var(--sg-s-10) 0;
}

.v2-cockpit .sg-label {
  color: var(--sg-accent);
}

.v2-cockpit .sg-label::before {
  background: var(--sg-accent);
}

.v2-cockpit-copy h2,
.v2-final h2 {
  color: #fff;
}

.v2-cockpit-copy p,
.v2-final p {
  margin-top: var(--sg-s-5);
  color: #d9def0;
  font-size: clamp(1.05rem, 1.6vw, 1.24rem);
  font-weight: 700;
  line-height: 1.6;
}

.v2-cockpit-image {
  border-color: rgba(255, 255, 255, .18);
  background: color-mix(in srgb, var(--sg-bg-raised) 92%, var(--sg-logo-7));
  box-shadow: 0 28px 72px rgba(0, 0, 0, .22);
}

.v2-trust-card {
  margin-top: var(--sg-s-8);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: var(--sg-r-xl);
  background: rgba(255, 255, 255, .08);
  box-shadow: 0 28px 72px rgba(0, 0, 0, .22);
}

.v2-trust-head {
  display: grid;
  gap: var(--sg-s-3);
  max-width: 44rem;
  padding: var(--sg-s-6);
}

.v2-trust-head span {
  color: var(--sg-accent);
  font-family: var(--sg-font-mono);
  font-size: var(--sg-text-xs);
  font-weight: 900;
  letter-spacing: var(--sg-tracking-wide);
  text-transform: uppercase;
}

.v2-trust-head h3 {
  color: #fff;
  font-size: clamp(1.6rem, 3vw, 2.6rem);
}

.v2-trust-head p {
  color: #d9def0;
  font-weight: 700;
}

.v2-trust-track,
.v2-rule-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.v2-trust-track article {
  display: grid;
  gap: var(--sg-s-3);
  border-top: 1px solid rgba(255, 255, 255, .14);
  border-right: 1px solid rgba(255, 255, 255, .14);
  padding: var(--sg-s-5);
}

.v2-trust-track article:last-child {
  border-right: 0;
}

.v2-trust-track h4 {
  margin: 0;
  color: #fff;
  font-size: var(--sg-text-xl);
  line-height: 1.2;
}

.v2-trust-track p,
.v2-rule-grid p {
  color: #d9def0;
  font-weight: 700;
  line-height: 1.5;
}

.v2-trust-card .trust-label.claimed {
  color: #d9def0;
}

.v2-trust-card .trust-label.pilot {
  color: #f4c26b;
}

.v2-trust-card .trust-label.confirmed {
  color: #85d8aa;
}

.v2-rule-grid {
  border-top: 1px solid rgba(255, 255, 255, .14);
}

.v2-rule-grid p {
  max-width: none;
  border-right: 1px solid rgba(255, 255, 255, .14);
  padding: var(--sg-s-5);
}

.v2-rule-grid p:last-child {
  border-right: 0;
}

.v2-rule-grid b {
  color: var(--sg-accent);
  font-family: var(--sg-font-mono);
}

.v2-zone-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--sg-s-4);
  margin-top: var(--sg-s-8);
}

.v2-zone-grid article {
  background: rgba(255, 255, 255, .95);
}

.v2-step-list {
  display: grid;
  gap: 0;
  margin-top: var(--sg-s-7);
}

.v2-step-list article {
  display: grid;
  grid-template-columns: 5rem 1fr;
  gap: var(--sg-s-5);
  border-top: 1px solid var(--sg-border);
  padding: var(--sg-s-5) 0;
}

.v2-step-list article:last-child {
  border-bottom: 1px solid var(--sg-border);
}

.v2-step-list span {
  color: var(--sg-electric-blue);
  font-family: var(--sg-font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1;
}

.v2-step-list h3 {
  color: var(--sg-indigo);
  font-size: clamp(1.3rem, 2vw, 1.75rem);
  margin-bottom: var(--sg-s-2);
}

.v2-step-list p {
  color: var(--sg-text-muted);
  font-size: var(--sg-text-lg);
  font-weight: 700;
  line-height: 1.55;
}

.v2-step-list b {
  display: block;
  margin-top: var(--sg-s-3);
  color: var(--sg-logo-4);
  font-family: var(--sg-font-mono);
  font-size: var(--sg-text-sm);
  line-height: 1.45;
}

.v2-gate-table {
  display: grid;
  gap: var(--sg-s-3);
  margin-top: var(--sg-s-7);
}

.v2-gate-table article {
  display: grid;
  grid-template-columns: minmax(10rem, .8fr) minmax(0, 1fr) minmax(0, .95fr);
  gap: var(--sg-s-5);
  align-items: start;
  border: 1px solid var(--sg-border);
  border-radius: var(--sg-r-lg);
  background: var(--sg-bg-raised);
  box-shadow: var(--sg-shadow-sm);
  padding: var(--sg-s-5);
}

.v2-gate-table b {
  color: var(--sg-indigo);
  font-size: var(--sg-text-lg);
  line-height: 1.25;
}

.v2-gate-table span,
.v2-gate-table em {
  color: var(--sg-text-muted);
  font-style: normal;
  font-weight: 700;
  line-height: 1.45;
}

.v2-artifact-list {
  columns: 2;
  column-gap: var(--sg-s-7);
  margin: 0;
  padding: 0;
  list-style: none;
}

.v2-artifact-list li {
  break-inside: avoid;
  border-bottom: 1px solid var(--sg-border);
  color: var(--sg-text);
  font-size: var(--sg-text-lg);
  font-weight: 800;
  line-height: 1.35;
  padding: var(--sg-s-3) 0;
}

.v2-artifact-list li::before {
  content: "✓";
  color: var(--sg-electric-blue);
  font-weight: 900;
  margin-right: .7rem;
}

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

.v2-entry-grid article {
  border-left: 5px solid var(--sg-electric-blue);
  border-radius: 0 var(--sg-r-lg) var(--sg-r-lg) 0;
}

.v2-entry-grid b {
  color: var(--sg-indigo);
}

.v2-final {
  padding: clamp(4.5rem, 9vw, 7.5rem) 0;
}

.v2-final .sg-label {
  color: var(--sg-accent);
}

.v2-final .sg-label::before {
  background: var(--sg-accent);
}

.v2-final-inner {
  max-width: 820px;
}

.v2-final h2 {
  max-width: 15ch;
  margin-top: var(--sg-s-3);
}

.v2-final ul {
  display: grid;
  gap: var(--sg-s-3);
  margin: var(--sg-s-6) 0;
  padding: 0;
  list-style: none;
}

.v2-final li {
  border-bottom: 1px solid rgba(255, 255, 255, .16);
  color: #f4f6fb;
  font-size: var(--sg-text-lg);
  font-weight: 800;
  line-height: 1.35;
  padding-bottom: var(--sg-s-3);
}

.v2-final li::before {
  content: "→";
  color: var(--sg-accent);
  font-family: var(--sg-font-mono);
  margin-right: .7rem;
}

.v2-final .v2-audience {
  color: #c4cce6;
  font-family: var(--sg-font-mono);
  font-size: var(--sg-text-sm);
}

@media (prefers-reduced-motion: no-preference) {
  .ai-v2-page .v2-three article,
  .ai-v2-page .v2-outcome-grid article,
  .ai-v2-page .v2-loop-grid article,
  .ai-v2-page .v2-role-grid article,
  .ai-v2-page .v2-entry-grid article,
  .ai-v2-page .v2-step-list article,
  .ai-v2-page .v2-gate-table article {
    transition: transform var(--sg-dur-base) var(--sg-ease), box-shadow var(--sg-dur-base) var(--sg-ease), border-color var(--sg-dur-base) var(--sg-ease);
  }

  .ai-v2-page .v2-three article:hover,
  .ai-v2-page .v2-outcome-grid article:hover,
  .ai-v2-page .v2-loop-grid article:hover,
  .ai-v2-page .v2-role-grid article:hover,
  .ai-v2-page .v2-entry-grid article:hover {
    border-color: color-mix(in srgb, var(--sg-electric-blue) 28%, var(--sg-border));
    box-shadow: var(--sg-shadow-md);
    transform: translateY(-3px);
  }
}

@media (max-width: 1040px) {
  .v2-hero-grid,
  .v2-cockpit-grid,
  .v2-split {
    grid-template-columns: 1fr;
  }

  .v2-hero {
    display: block;
    min-height: auto;
    padding: var(--sg-s-8) 0;
  }

  .v2-hero-grid {
    display: grid;
  }

  .v2-hero-copy {
    max-width: 100%;
  }

  .v2-hero-media {
    position: relative;
    inset: auto;
    width: 100%;
    max-width: 42rem;
    margin-top: var(--sg-s-7);
    border: 1px solid var(--sg-border);
    border-radius: var(--sg-r-xl);
    box-shadow: var(--sg-shadow-lg);
  }

  .v2-hero-media::before,
  .v2-hero-media::after {
    display: none;
  }

  .v2-hero-media img {
    aspect-ratio: 3 / 2;
    height: auto;
  }

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

  .v2-three,
  .v2-loop-grid,
  .v2-role-grid {
    grid-template-columns: 1fr;
  }

  .v2-loop-grid article {
    min-height: auto;
  }
}

@media (max-width: 760px) {
  .v2-hero-copy h1,
  .v2-section-head h2,
  .v2-split h2,
  .v2-cockpit-copy h2,
  .v2-final h2 {
    max-width: 100%;
    font-size: clamp(2rem, 10vw, 2.85rem);
  }

  .v2-hero-copy p,
  .v2-step-list p,
  .v2-final li {
    font-size: var(--sg-text-base);
  }

  .v2-outcome-grid,
  .v2-zone-grid,
  .v2-entry-grid,
  .v2-trust-track,
  .v2-rule-grid {
    grid-template-columns: 1fr;
  }

  .v2-trust-track article,
  .v2-rule-grid p {
    border-right: 0;
  }

  .v2-gate-table article {
    grid-template-columns: 1fr;
    gap: var(--sg-s-3);
  }

  .v2-step-list article {
    grid-template-columns: 1fr;
    gap: var(--sg-s-3);
  }

  .v2-artifact-list {
    columns: 1;
  }

  .v2-final .btn {
    width: 100%;
  }
}
