:root {
  --bg: #f4f1eb;
  --bg-soft: #faf8f4;
  --surface: #ffffff;
  --surface-blue: #edf3ff;
  --ink: #172033;
  --muted: #66738f;
  --line: #d9e2f2;
  --line-strong: #bed0ef;
  --brand: #215bdb;
  --brand-bright: #3167ed;
  --brand-deep: #173e98;
  --navy: #102653;
  --navy-deep: #0a1835;
  --success: #13795b;
  --danger: #ad2c20;
  --shadow-sm: 0 12px 28px rgba(21, 43, 84, 0.08);
  --shadow-md: 0 24px 60px rgba(21, 43, 84, 0.13);
  --shadow-lg: 0 34px 90px rgba(16, 38, 83, 0.2);
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 36px;
  --max-width: 1180px;
  --font-body:
    "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  --font-display: "Sora", "Manrope", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

button,
input,
select {
  font: inherit;
}

a {
  color: inherit;
}

:focus-visible {
  outline: 3px solid #73a0ff;
  outline-offset: 4px;
}

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

h1,
h2,
h3 {
  color: var(--ink);
  font-family: var(--font-display);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

h1 {
  max-width: 760px;
  margin-bottom: 28px;
  font-size: clamp(2.75rem, 5.4vw, 4.9rem);
}

.hero h1 {
  font-size: clamp(2.75rem, 5vw, 4.55rem);
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(2rem, 3.8vw, 3.8rem);
}

h3 {
  margin-bottom: 14px;
  font-size: 1.35rem;
}

.container {
  width: min(calc(100% - 48px), var(--max-width));
  margin-inline: auto;
}

.section-pad {
  padding: 112px 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: #fff;
  background: var(--brand-deep);
  border-radius: 8px;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

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

.eyebrow {
  margin-bottom: 18px;
  color: var(--brand);
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow-light {
  color: #a9c4ff;
}

.hero-copy > .eyebrow {
  font-size: 0.9rem;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 24px;
  color: #fff;
  background: var(--brand);
  border: 1px solid var(--brand);
  border-radius: 13px;
  box-shadow: 0 14px 30px rgba(33, 91, 219, 0.22);
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 170ms ease,
    background 170ms ease,
    box-shadow 170ms ease;
}

.button:hover {
  background: var(--brand-deep);
  box-shadow: 0 17px 36px rgba(23, 62, 152, 0.27);
  transform: translateY(-2px);
}

.button:disabled {
  cursor: wait;
  opacity: 0.68;
  transform: none;
}

.button-small {
  min-height: 44px;
  padding: 10px 17px;
  border-radius: 11px;
  font-size: 0.88rem;
}

.button-secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.68);
  border-color: var(--line-strong);
  box-shadow: none;
}

.button-secondary:hover {
  color: var(--brand-deep);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.button-light {
  color: var(--brand-deep);
  background: #fff;
  border-color: #fff;
  box-shadow: none;
}

.button-light:hover {
  color: #fff;
  background: var(--brand-bright);
  border-color: var(--brand-bright);
}

.button-full {
  width: 100%;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--brand);
  font-weight: 800;
  text-underline-offset: 4px;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid transparent;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(250, 248, 244, 0.93);
  border-color: rgba(190, 208, 239, 0.8);
  box-shadow: 0 6px 24px rgba(16, 38, 83, 0.06);
  backdrop-filter: blur(16px);
}

.nav-shell {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.1;
  text-decoration: none;
}

.brand-name {
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  width: 48px;
  height: 48px;
  padding: 9px;
  grid-template-columns: repeat(5, 1fr);
  align-items: end;
  gap: 3px;
  background: var(--navy);
  border-radius: 13px;
  box-shadow: 0 12px 24px rgba(16, 38, 83, 0.18);
}

.brand-mark span {
  display: block;
  min-height: 8px;
  background: #6e99ff;
  border-radius: 3px;
}

.brand-mark span:nth-child(2) {
  height: 82%;
}
.brand-mark span:nth-child(3) {
  height: 62%;
}
.brand-mark span:nth-child(4) {
  height: 100%;
}
.brand-mark span:nth-child(5) {
  height: 48%;
}

.brand-mark-small {
  width: 40px;
  height: 40px;
  padding: 8px;
  border-radius: 11px;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.primary-nav > a:not(.button) {
  color: #41506e;
  font-size: 0.9rem;
  font-weight: 750;
  text-decoration: none;
}

.primary-nav > a:not(.button):hover {
  color: var(--brand);
}

.nav-divider {
  width: 1px;
  height: 28px;
  background: var(--line);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 11px;
  background: #fff;
  border: 1px solid var(--line-strong);
  border-radius: 11px;
  cursor: pointer;
}

.nav-toggle > span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
  border-radius: 2px;
}

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

.hero {
  position: relative;
  min-height: 820px;
  padding-top: 164px;
  padding-bottom: 70px;
  overflow: hidden;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.72),
      rgba(244, 241, 235, 0.4)
    ),
    var(--bg);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(4px);
}

.hero-glow-one {
  top: -190px;
  right: -100px;
  width: 610px;
  height: 610px;
  background: radial-gradient(
    circle,
    rgba(79, 127, 241, 0.2),
    rgba(79, 127, 241, 0)
  );
}

.hero-glow-two {
  bottom: -280px;
  left: -240px;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(178, 202, 255, 0.25),
    rgba(178, 202, 255, 0)
  );
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
  align-items: center;
  gap: 62px;
}

.hero-lede {
  max-width: 680px;
  margin-bottom: 32px;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.6vw, 1.28rem);
}

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

.boundary-note {
  margin: 26px 0 0;
  color: #53617d;
  font-size: 0.92rem;
}

.hero-package {
  margin: 0;
}

.hero-package-frame {
  position: relative;
  padding: 16px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line-strong);
  border-radius: 30px;
  box-shadow: var(--shadow-lg);
  transform: rotate(1.2deg);
}

.hero-package-frame::before {
  position: absolute;
  z-index: -1;
  right: -19px;
  bottom: -19px;
  width: 94%;
  height: 94%;
  background: var(--brand);
  border-radius: 30px;
  content: "";
}

.hero-package img {
  width: 100%;
  height: auto;
  border-radius: 20px;
}

.hero-package figcaption {
  position: absolute;
  right: 34px;
  bottom: 32px;
  left: 34px;
  display: grid;
  gap: 4px;
  padding: 17px 19px;
  background: rgba(10, 24, 53, 0.94);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  box-shadow: 0 12px 34px rgba(10, 24, 53, 0.24);
  backdrop-filter: blur(10px);
}

.hero-package figcaption span {
  color: #a9c4ff;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero-package figcaption strong {
  font-size: 0.88rem;
  line-height: 1.45;
}

@media (min-width: 901px) {
  .hero-package {
    margin-bottom: 28px;
  }

  .hero-package figcaption {
    bottom: -26px;
  }
}

.capability-strip {
  position: relative;
  z-index: 1;
  display: grid;
  margin-top: 82px;
  padding-top: 28px;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 30px;
  border-top: 1px solid var(--line-strong);
}

.capability-strip p {
  margin: 0;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.capability-strip ul {
  display: flex;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
  gap: 9px;
  list-style: none;
}

.capability-strip li {
  padding: 7px 12px;
  color: #41506e;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 750;
}

.section-heading {
  max-width: 720px;
}

.section-heading-wide {
  max-width: 880px;
}

.section-heading > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.08rem;
}

.problem-section {
  background: var(--surface);
}

.problem-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 76px;
}

.problem-layout .section-heading h2 {
  font-size: clamp(2rem, 3.4vw, 3.3rem);
}

.problem-copy {
  padding-top: 32px;
  color: var(--muted);
  font-size: 1.14rem;
}

.problem-copy p:last-child {
  margin-bottom: 0;
}

.service-number {
  display: inline-flex;
  margin-bottom: 48px;
  color: var(--brand);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.services-section {
  color: #d8e4ff;
  background:
    radial-gradient(
      circle at 90% 10%,
      rgba(70, 118, 230, 0.26),
      transparent 30%
    ),
    var(--navy);
}

.services-section h2,
.services-section .section-heading > p:not(.eyebrow) {
  color: #fff;
}

.services-section .section-heading > p:not(.eyebrow) {
  color: #bdcbed;
}

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

.service-card {
  padding: 38px;
  color: var(--ink);
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-md);
  box-shadow: 0 20px 45px rgba(4, 16, 42, 0.16);
}

.service-card-featured {
  background: linear-gradient(145deg, #eaf1ff, #fff 70%);
  border-color: #7da2f2;
}

.service-card h3 {
  max-width: 490px;
  margin-bottom: 20px;
  font-size: clamp(1.45rem, 2.4vw, 2.05rem);
  line-height: 1.19;
  letter-spacing: -0.04em;
}

.service-card h3 span {
  display: block;
  margin-bottom: 10px;
  color: var(--brand);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.35;
  text-transform: uppercase;
}

.service-card p {
  color: var(--muted);
}

.service-card ul {
  display: grid;
  margin: 24px 0 0;
  padding: 22px 0 0;
  gap: 9px;
  border-top: 1px solid var(--line);
  list-style: none;
}

.service-card li {
  position: relative;
  padding-left: 22px;
  color: #35425e;
  font-size: 0.91rem;
  font-weight: 650;
}

.service-card li::before {
  position: absolute;
  top: 0.63em;
  left: 2px;
  width: 7px;
  height: 7px;
  background: var(--brand-bright);
  border-radius: 50%;
  content: "";
}

.case-study-teaser {
  background: var(--bg-soft);
}

.case-study-teaser-panel {
  display: grid;
  padding: clamp(36px, 6vw, 72px);
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: 64px;
  color: #dce7ff;
  background:
    radial-gradient(
      circle at 88% 12%,
      rgba(74, 125, 242, 0.3),
      transparent 30%
    ),
    var(--navy);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.case-study-teaser-copy h2 {
  color: #fff;
  font-size: clamp(2.15rem, 4.2vw, 4rem);
}

.case-study-teaser-copy > p:not(.eyebrow) {
  max-width: 590px;
  margin-bottom: 30px;
  color: #c4d2ee;
  font-size: 1.08rem;
}

.case-study-proof {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.case-study-proof article {
  display: grid;
  min-height: 150px;
  padding: 24px;
  align-content: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
}

.case-study-proof strong {
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.1vw, 1.7rem);
  line-height: 1.16;
}

.case-study-proof span {
  color: #afc0e4;
  font-size: 0.82rem;
  font-weight: 650;
}

.case-study-disclaimer {
  grid-column: 1 / -1;
  margin: -30px 0 0;
  color: #879bc4;
  font-size: 0.7rem;
}

.how-section {
  background: var(--surface);
}

.how-heading {
  margin: 0 auto 58px;
  text-align: center;
}

.how-heading h2 {
  max-width: 900px;
  margin-inline: auto;
}

.how-layout {
  display: grid;
  grid-template-columns: minmax(440px, 0.95fr) minmax(0, 1.05fr);
  align-items: center;
  gap: 72px;
}

.process-visual {
  position: relative;
  display: grid;
  min-height: 430px;
  padding: 38px;
  grid-template-columns: 150px 1fr;
  align-items: center;
  gap: 34px;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 18% 50%,
      rgba(49, 103, 237, 0.15),
      transparent 35%
    ),
    #f7faff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.process-hub {
  position: relative;
  z-index: 2;
  display: grid;
  width: 150px;
  height: 150px;
  padding: 22px;
  place-content: center;
  color: #d8e5ff;
  background: var(--navy);
  border: 12px solid #dce8ff;
  border-radius: 50%;
  box-shadow: 0 18px 42px rgba(16, 38, 83, 0.23);
  text-align: center;
}

.process-hub span {
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.3;
  text-transform: uppercase;
}

.process-hub strong {
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.35rem;
  line-height: 1.1;
}

.process-connectors {
  position: absolute;
  z-index: 0;
  top: 50%;
  left: 158px;
  width: 53%;
  height: 1px;
}

.process-connectors span {
  position: absolute;
  left: 0;
  width: 100%;
  border-top: 3px solid #bdd3ff;
  transform-origin: left center;
}

.process-connectors span:first-child {
  transform: rotate(-28deg);
}

.process-connectors span:last-child {
  transform: rotate(28deg);
}

.process-output-list {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 15px;
}

.process-output {
  display: grid;
  min-height: 102px;
  padding: 17px 19px;
  grid-template-columns: 48px 1fr;
  align-items: center;
  gap: 14px;
  background: #fff;
  border: 1px solid var(--line-strong);
  border-radius: 17px;
  box-shadow: var(--shadow-sm);
}

.process-output-number {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  color: #fff;
  background: var(--brand);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
}

.process-output p {
  margin: 0;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.45;
}

.process-output strong {
  display: block;
  margin-bottom: 3px;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 0.96rem;
}

.how-steps {
  display: grid;
  margin: 0;
  padding: 0;
  gap: 34px;
  list-style: none;
}

.how-steps li {
  display: grid;
  grid-template-columns: 52px 1fr;
  align-items: start;
  gap: 22px;
}

.how-steps li > span {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  color: #fff;
  background: var(--brand);
  border-radius: 50%;
  box-shadow: 0 12px 28px rgba(33, 91, 219, 0.2);
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 800;
}

.how-steps h3 {
  margin-bottom: 9px;
  font-size: clamp(1.25rem, 2vw, 1.6rem);
}

.how-steps p {
  margin: 0;
  color: var(--muted);
}

.deliverables-section {
  background: var(--bg-soft);
}

.deliverables-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(520px, 1.25fr);
  align-items: start;
  gap: 74px;
}

.deliverables-grid > .section-heading {
  position: sticky;
  top: 126px;
}

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

.package-item {
  display: grid;
  padding: 28px;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
}

.package-icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  color: var(--brand);
  background: var(--surface-blue);
  border-radius: 14px;
}

.package-icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.package-label {
  margin-bottom: 6px;
  color: var(--brand);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.package-item h3 {
  margin-bottom: 8px;
}

.package-item p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.score-section {
  background: #eaf0fb;
}

.score-panel {
  display: grid;
  padding: clamp(34px, 5.2vw, 68px);
  grid-template-columns: minmax(0, 0.88fr) minmax(460px, 1.12fr);
  align-items: center;
  gap: 70px;
  color: #fff;
  background:
    linear-gradient(140deg, rgba(20, 52, 126, 0.2), rgba(57, 106, 218, 0.13)),
    var(--navy);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.score-copy h2 {
  color: #fff;
}

.score-copy > p:not(.eyebrow) {
  color: #c4d1ed;
  font-size: 1.05rem;
}

.score-signals {
  display: grid;
  margin: 34px 0 0;
  padding: 0;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  list-style: none;
}

.score-signals li {
  display: grid;
  min-height: 92px;
  padding: 16px;
  align-content: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 14px;
}

.score-signals strong {
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.15rem;
}

.score-signals span {
  color: #b9c8e8;
  font-size: 0.76rem;
}

.score-form {
  padding: 34px;
  color: var(--ink);
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: 0 22px 56px rgba(5, 18, 46, 0.22);
}

.form-kicker {
  margin-bottom: 9px;
  color: var(--brand);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.score-form h3 {
  margin-bottom: 10px;
  font-size: clamp(1.7rem, 3vw, 2.45rem);
}

.score-form > p:not(.form-kicker, .form-privacy) {
  color: var(--muted);
}

.score-form label {
  display: grid;
  margin-top: 17px;
  gap: 7px;
  color: #2d3952;
  font-size: 0.82rem;
  font-weight: 800;
}

.score-form input {
  width: 100%;
  min-height: 53px;
  padding: 12px 14px;
  color: var(--ink);
  background: #fbfcff;
  border: 1px solid #c9d5e9;
  border-radius: 11px;
  outline: none;
  transition:
    border-color 150ms ease,
    box-shadow 150ms ease;
}

.score-form input:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(33, 91, 219, 0.12);
}

.score-form .button {
  margin-top: 22px;
}

.form-privacy {
  margin: 13px 0 0;
  color: #7a859c;
  font-size: 0.72rem;
  line-height: 1.55;
}

.form-privacy a {
  color: inherit;
  font-weight: 800;
  text-underline-offset: 3px;
}

.form-status {
  margin: 18px 0 2px;
  padding: 12px 14px;
  color: var(--danger);
  background: #fff0ee;
  border: 1px solid #f4b9b2;
  border-radius: 10px;
  font-size: 0.82rem;
  font-weight: 700;
}

.form-status.is-success {
  color: var(--success);
  background: #eaf8f2;
  border-color: #a8ddc9;
}

.about-section {
  background: var(--surface);
}

.about-panel {
  display: grid;
  padding: clamp(36px, 6vw, 68px);
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: 70px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.about-identity {
  display: grid;
  grid-template-columns: 108px 1fr;
  align-items: start;
  gap: 24px;
}

.about-identity img {
  width: 108px;
  height: 108px;
  object-fit: cover;
  border: 5px solid var(--surface-blue);
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
}

.about-identity h2 {
  margin-bottom: 14px;
  font-size: clamp(1.8rem, 3.4vw, 3.15rem);
}

.about-link {
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 750;
  text-underline-offset: 3px;
}

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

.about-copy {
  color: var(--muted);
  font-size: 1.02rem;
}

.about-copy p:last-child {
  margin-bottom: 0;
}

.faq-section {
  background: var(--bg-soft);
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(520px, 1.28fr);
  align-items: start;
  gap: 76px;
}

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

.faq-list details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 9px 24px rgba(21, 43, 84, 0.045);
}

.faq-list summary {
  position: relative;
  padding: 22px 58px 22px 24px;
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.4;
  list-style: none;
  cursor: pointer;
}

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

.faq-list summary::after {
  position: absolute;
  top: 22px;
  right: 24px;
  color: var(--brand);
  font-size: 1.35rem;
  content: "+";
}

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

.faq-list details p {
  margin: 0;
  padding: 0 24px 24px;
  color: var(--muted);
}

.cta-section {
  background: var(--bg-soft);
}

.cta-panel {
  display: grid;
  padding: clamp(38px, 6vw, 72px);
  grid-template-columns: minmax(0, 0.92fr) minmax(470px, 1.08fr);
  align-items: center;
  gap: 74px;
  color: #dce7ff;
  background: var(--navy);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.cta-copy h2 {
  color: #fff;
  font-size: clamp(2rem, 3.6vw, 3.5rem);
}

.cta-copy > p:not(.eyebrow) {
  color: #c7d4ef;
}

.cta-proof {
  display: flex;
  margin-top: 30px;
  flex-wrap: wrap;
  gap: 9px;
}

.cta-proof span {
  padding: 8px 11px;
  color: #e7efff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 750;
}

.consultation-action {
  display: grid;
  padding: clamp(30px, 4.5vw, 52px);
  gap: 24px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-md);
}

.consultation-action p {
  margin: 0;
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  font-weight: 700;
  line-height: 1.35;
}

.consultation-button {
  width: 100%;
  min-height: 70px;
  padding-inline: 24px;
  font-size: 1.05rem;
}

.site-footer {
  padding: 66px 0 26px;
  color: #aebcda;
  background: var(--navy-deep);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 60px;
}

.footer-brand {
  color: #fff;
}

.footer-grid > div > p {
  max-width: 520px;
  margin: 19px 0 0;
  color: #97a7c8;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 10px 30px;
}

.footer-nav a {
  color: #c5d2ed;
  font-size: 0.86rem;
  font-weight: 700;
  text-decoration: none;
}

.footer-nav a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  margin-top: 46px;
  padding-top: 22px;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  margin: 0;
  color: #7f90b4;
  font-size: 0.74rem;
}

.case-study-page {
  background: var(--bg-soft);
}

.case-study-page .site-header {
  background: rgba(250, 248, 244, 0.94);
  border-color: rgba(190, 208, 239, 0.72);
  backdrop-filter: blur(16px);
}

.case-study-hero {
  padding-top: 176px;
  background:
    radial-gradient(
      circle at 86% 14%,
      rgba(49, 103, 237, 0.2),
      transparent 34%
    ),
    var(--bg);
}

.case-study-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
  align-items: end;
  gap: 70px;
}

.case-study-hero h1 {
  max-width: 860px;
  font-size: clamp(2.8rem, 6.3vw, 5.8rem);
}

.case-study-hero-lede {
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.8vw, 1.35rem);
}

.case-study-hero-note {
  margin-bottom: 0;
  padding: 24px;
  color: #d8e5ff;
  background: var(--navy);
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 650;
}

.case-study-metrics {
  display: grid;
  margin-top: 58px;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.case-study-metric {
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
}

.case-study-metric strong {
  display: block;
  color: var(--brand-deep);
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3vw, 2.5rem);
  line-height: 1.1;
}

.case-study-metric span {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.case-study-body {
  background: #fff;
}

.case-study-story {
  display: grid;
  grid-template-columns: minmax(280px, 0.55fr) minmax(0, 1.45fr);
  gap: 76px;
}

.case-study-story-nav {
  position: sticky;
  top: 124px;
  align-self: start;
}

.case-study-story-nav h2 {
  font-size: clamp(2rem, 3.6vw, 3.5rem);
}

.case-study-story-nav p:not(.eyebrow) {
  color: var(--muted);
}

.case-study-story-content {
  display: grid;
  gap: 54px;
}

.case-study-chapter {
  padding-bottom: 50px;
  border-bottom: 1px solid var(--line);
}

.case-study-chapter:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.case-study-chapter h2 {
  margin-bottom: 18px;
  font-size: clamp(1.8rem, 3vw, 2.65rem);
}

.case-study-chapter p,
.case-study-chapter li {
  color: var(--muted);
}

.case-study-chapter ul {
  display: grid;
  margin: 0;
  padding-left: 1.2rem;
  gap: 14px;
}

.case-study-chapter strong {
  color: var(--ink);
}

.case-study-emphasis {
  margin: 28px 0 0;
  padding: 24px 26px;
  color: var(--ink) !important;
  background: var(--surface-blue);
  border-left: 4px solid var(--brand);
  border-radius: 0 14px 14px 0;
  font-weight: 700;
}

.case-study-model {
  padding: clamp(34px, 5vw, 56px);
  color: #dbe7ff;
  background: var(--navy);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.case-study-model h2,
.case-study-model strong {
  color: #fff;
}

.case-study-model p {
  color: #c2d0ec;
}

.case-study-quote {
  padding: clamp(34px, 5vw, 56px);
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.case-study-quote blockquote {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.8vw, 2.2rem);
  font-weight: 650;
  line-height: 1.4;
}

.case-study-quote p {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 0.72rem;
}

.case-study-actions {
  display: flex;
  margin-top: 30px;
  flex-wrap: wrap;
  gap: 14px;
}

.legal-page {
  min-height: 100vh;
  background:
    radial-gradient(
      circle at 85% 10%,
      rgba(49, 103, 237, 0.22),
      transparent 32%
    ),
    var(--bg);
}

.legal-shell {
  width: min(calc(100% - 36px), 860px);
  margin-inline: auto;
  padding: 54px 0 84px;
}

.legal-back {
  display: inline-block;
  margin-bottom: 24px;
  color: var(--brand-deep);
  font-weight: 800;
  text-underline-offset: 4px;
}

.legal-card {
  padding: clamp(34px, 7vw, 66px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.legal-card h1 {
  max-width: none;
  margin-bottom: 8px;
  font-size: clamp(2.8rem, 8vw, 5rem);
}

.legal-card h2 {
  margin: 38px 0 10px;
  font-size: clamp(1.25rem, 3vw, 1.55rem);
  letter-spacing: -0.025em;
}

.legal-card p {
  max-width: 720px;
  margin-bottom: 16px;
  color: var(--muted);
}

.legal-card .legal-date {
  margin-bottom: 34px;
  color: #8590a5;
  font-size: 0.82rem;
  font-weight: 700;
}

.legal-card strong {
  color: var(--ink);
}

.legal-card .button {
  margin-top: 30px;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 620ms ease,
    transform 620ms ease;
}

.reveal-delay {
  transition-delay: 100ms;
}

.reveal-delay-two {
  transition-delay: 180ms;
}

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

@media (max-width: 1080px) {
  .primary-nav {
    gap: 17px;
  }

  .primary-nav > a:not(.button) {
    font-size: 0.82rem;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(380px, 0.84fr);
    gap: 42px;
  }

  .hero h1 {
    font-size: clamp(2.65rem, 5.1vw, 4.25rem);
  }

  .deliverables-grid,
  .faq-grid {
    grid-template-columns: minmax(0, 0.8fr) minmax(480px, 1.2fr);
    gap: 48px;
  }

  .score-panel,
  .cta-panel {
    gap: 46px;
  }

  .case-study-teaser-panel,
  .how-layout,
  .about-panel,
  .case-study-hero-grid,
  .case-study-story {
    gap: 46px;
  }

  .process-visual {
    padding: 28px;
    grid-template-columns: 125px 1fr;
    gap: 24px;
  }

  .process-hub {
    width: 125px;
    height: 125px;
    padding: 16px;
  }
}

@media (max-width: 900px) {
  .section-pad {
    padding: 88px 0;
  }

  .nav-toggle {
    display: block;
  }

  .primary-nav {
    position: fixed;
    top: 74px;
    right: 20px;
    left: 20px;
    display: none;
    max-height: calc(100vh - 94px);
    padding: 24px;
    align-items: stretch;
    gap: 0;
    overflow-y: auto;
    background: #fff;
    border: 1px solid var(--line-strong);
    border-radius: 18px;
    box-shadow: var(--shadow-lg);
  }

  .primary-nav.is-open {
    display: grid;
  }

  .primary-nav > a:not(.button) {
    padding: 13px 4px;
    font-size: 1rem;
  }

  .primary-nav .button {
    margin-top: 14px;
  }

  .nav-divider {
    width: 100%;
    height: 1px;
    margin: 9px 0;
  }

  .hero {
    padding-top: 140px;
  }

  .hero-grid,
  .problem-layout,
  .case-study-teaser-panel,
  .how-layout,
  .deliverables-grid,
  .score-panel,
  .about-panel,
  .faq-grid,
  .cta-panel,
  .case-study-hero-grid,
  .case-study-story {
    grid-template-columns: 1fr;
  }

  .hero-package {
    width: min(100%, 690px);
    margin-inline: auto;
  }

  .capability-strip {
    grid-template-columns: 1fr;
    gap: 13px;
  }

  .problem-layout {
    gap: 10px;
  }

  .problem-copy {
    padding-top: 0;
  }

  .deliverables-grid > .section-heading {
    position: static;
  }

  .case-study-disclaimer {
    margin-top: -12px;
  }

  .process-visual {
    width: min(100%, 690px);
    margin-inline: auto;
  }

  .about-identity {
    max-width: 680px;
  }

  .case-study-hero-note {
    max-width: 620px;
  }

  .case-study-story-nav {
    position: static;
  }

  .score-panel,
  .cta-panel {
    padding: 52px;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(calc(100% - 30px), var(--max-width));
  }

  .section-pad {
    padding: 72px 0;
  }

  h1 {
    font-size: clamp(2.25rem, 10.5vw, 3.2rem);
  }

  h2 {
    font-size: clamp(1.75rem, 7.6vw, 2.5rem);
  }

  .nav-shell {
    min-height: 72px;
  }

  .brand-name {
    font-size: 0.9rem;
  }

  .brand-mark-small {
    width: 36px;
    height: 36px;
  }

  .hero {
    min-height: auto;
    padding-top: 122px;
    padding-bottom: 60px;
  }

  .hero-actions {
    display: grid;
  }

  .hero-package-frame {
    padding: 10px;
    border-radius: 22px;
    transform: none;
  }

  .hero-package-frame::before {
    right: -8px;
    bottom: -9px;
    border-radius: 22px;
  }

  .hero-package img {
    border-radius: 15px;
  }

  .hero-package figcaption {
    right: 20px;
    bottom: 20px;
    left: 20px;
    padding: 13px 15px;
  }

  .capability-strip {
    margin-top: 60px;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .case-study-proof,
  .case-study-metrics {
    grid-template-columns: 1fr;
  }

  .case-study-proof article {
    min-height: 112px;
  }

  .process-visual {
    min-height: auto;
    padding: 28px 22px;
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .process-connectors {
    display: none;
  }

  .process-output-list {
    width: 100%;
  }

  .how-steps {
    gap: 30px;
  }

  .about-identity {
    grid-template-columns: 84px 1fr;
    gap: 18px;
  }

  .about-identity img {
    width: 84px;
    height: 84px;
  }

  .case-study-hero {
    padding-top: 140px;
  }

  .service-card {
    padding: 28px;
  }

  .service-number {
    margin-bottom: 30px;
  }

  .package-item {
    grid-template-columns: 46px 1fr;
    padding: 22px;
  }

  .package-icon {
    width: 44px;
    height: 44px;
  }

  .score-panel,
  .cta-panel {
    padding: 34px 24px;
    gap: 38px;
    border-radius: 24px;
  }

  .score-signals {
    grid-template-columns: 1fr;
  }

  .score-signals li {
    min-height: 74px;
  }

  .score-form {
    padding: 26px 21px;
  }

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

  .footer-nav {
    grid-template-columns: 1fr 1fr;
  }

  .footer-bottom {
    display: grid;
  }
}

@media (max-width: 440px) {
  .brand-name {
    white-space: normal;
  }

  .hero-package figcaption strong {
    font-size: 0.74rem;
  }

  .capability-strip li {
    font-size: 0.69rem;
  }

  .package-item {
    grid-template-columns: 1fr;
  }

  .how-steps li,
  .about-identity {
    grid-template-columns: 1fr;
  }

  .about-identity img {
    width: 78px;
    height: 78px;
  }

  .case-study-actions {
    display: grid;
  }

  .footer-nav {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

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