:root {
  --navy: #0a1e4a;
  --blue: #1f3fbf;
  --indigo: #4a4fd9;
  --purple: #7a2f9e;
  --magenta: #9b2d7a;
  --white: #ffffff;
  --soft: #f5f7fb;
  --line: #dde3f0;
  --muted: #5b6475;
  --shadow: 0 24px 70px rgba(10, 30, 74, 0.1);
  --radius: 8px;
}

@font-face {
  font-family: "Noirden";
  src: url("assets/fonts/Noirden-Light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Noirden";
  src: url("assets/fonts/Noirden-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Noirden";
  src: url("assets/fonts/Noirden-SemiBold.otf") format("opentype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Noirden";
  src: url("assets/fonts/Noirden-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--navy);
  font-family: "Noirden", Inter, Manrope, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
}

body.nav-open {
  overflow: hidden;
}

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

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

p,
h1,
h2,
h3,
figure {
  margin: 0;
}

ul {
  margin: 0;
  padding-left: 1.2rem;
}

li + li {
  margin-top: 0.55rem;
}

.container {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}

.section {
  padding: 92px 0;
}

.section[id] {
  scroll-margin-top: 96px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 78px;
  padding: 0 40px;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(221, 227, 240, 0.85);
  backdrop-filter: blur(16px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 230px;
  color: var(--navy);
  font-size: 1.02rem;
  font-weight: 600;
  line-height: 1;
}

.brand img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.brand span {
  display: inline-block;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--navy);
  font-size: 0.84rem;
  font-weight: 600;
}

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

.site-nav a:not(.nav-cta)::after,
.nav-parent::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 100%;
  height: 2px;
  background: var(--purple);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

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

.nav-group {
  position: relative;
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  z-index: 35;
  display: grid;
  width: 310px;
  padding: 10px;
  border: 1px solid rgba(221, 227, 240, 0.95);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 24px 70px rgba(10, 30, 74, 0.13);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.nav-dropdown::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -14px;
  height: 14px;
}

.nav-group:hover .nav-dropdown,
.nav-group:focus-within .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-dropdown a {
  padding: 10px 12px;
  border-radius: 6px;
  color: var(--navy);
  font-size: 0.79rem;
  line-height: 1.25;
}

.nav-dropdown a:hover,
.nav-dropdown a:focus-visible {
  background: var(--soft);
  color: var(--purple);
}

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

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 0.86rem;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.nav-cta {
  min-height: 42px;
  padding: 0 18px;
  background: var(--navy);
  color: var(--white);
}

.nav-cta:hover,
.button:hover {
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--navy);
}

.hero {
  position: relative;
  min-height: calc(100vh - 78px);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 62px;
  padding-bottom: 74px;
}

.js-reveal {
  opacity: 0;
  transform: translate3d(0, 18px, 0);
  transition: opacity 560ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 560ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.js-reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.hero .hero-copy,
.hero .hero-visual {
  --reveal-delay: 80ms;
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 1px;
  background: var(--line);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 60px;
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow,
.section-kicker {
  color: var(--purple);
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  margin-top: 22px;
  color: var(--navy);
  font-size: 3.18rem;
  line-height: 1.08;
  font-weight: 600;
  letter-spacing: 0;
}

h2 {
  max-width: 850px;
  color: var(--navy);
  font-size: 2.15rem;
  line-height: 1.16;
  font-weight: 600;
  letter-spacing: 0;
}

h3 {
  color: var(--navy);
  font-size: 1.05rem;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: 0;
}

.lead {
  max-width: 640px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.72;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button-primary {
  background: var(--navy);
  color: var(--white);
}

.button-primary:hover,
.nav-cta:hover {
  background: var(--purple);
}

.button-secondary {
  border-color: var(--navy);
  color: var(--navy);
  background: var(--white);
}

.button-secondary:hover {
  border-color: var(--purple);
  color: var(--purple);
}

.capability-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.capability-strip span,
.tool-cloud span,
.mini-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 600;
}

.capability-strip span:first-child,
.capability-strip span:nth-child(2) {
  border-color: rgba(122, 47, 158, 0.32);
  color: var(--purple);
}

.hero-visual {
  position: relative;
  min-height: 500px;
}

.system-map {
  position: relative;
  width: 100%;
  height: 500px;
  min-width: 0;
}

.refined-map {
  isolation: isolate;
}

.branch-network {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.branch-line {
  fill: none;
  stroke: rgba(10, 30, 74, 0.42);
  stroke-width: 2.2;
  stroke-linecap: round;
}

.main-line {
  stroke: rgba(10, 30, 74, 0.58);
  stroke-width: 2.8;
}

.leaf-group path {
  opacity: 0.96;
}

.leaf-a path:first-child,
.leaf-d path:last-child {
  fill: var(--purple);
}

.leaf-a path:last-child,
.leaf-c path:first-child,
.leaf-e path:first-child {
  fill: var(--indigo);
}

.leaf-b path:first-child,
.leaf-d path:first-child,
.leaf-f path:first-child {
  fill: var(--magenta);
}

.leaf-b path:last-child,
.leaf-c path:last-child,
.leaf-e path:last-child,
.leaf-f path:last-child {
  fill: var(--blue);
}

.branch-dot {
  fill: var(--purple);
}

.map-ring {
  position: absolute;
  inset: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.map-ring-one {
  width: 430px;
  height: 430px;
  border: 1px solid var(--line);
}

.map-ring-two {
  width: 286px;
  height: 286px;
  border: 1px dashed rgba(122, 47, 158, 0.35);
}

.system-logo {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  width: 150px;
  height: 150px;
  object-fit: contain;
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 26px 60px rgba(10, 30, 74, 0.14));
}

.branch-label {
  position: absolute;
  z-index: 4;
  width: 138px;
  padding: 10px 11px;
  border: 1px solid rgba(221, 227, 240, 0.9);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 38px rgba(10, 30, 74, 0.06);
}

.branch-label strong {
  display: block;
  color: var(--navy);
  font-size: 0.78rem;
  line-height: 1.1;
  font-weight: 600;
}

.branch-label span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.66rem;
  line-height: 1.3;
  font-weight: 400;
}

.label-strategy {
  top: 18px;
  left: 66px;
}

.label-meta {
  top: 132px;
  left: 8px;
}

.label-google {
  top: 72px;
  right: 0;
}

.label-crm {
  left: 68px;
  bottom: 36px;
}

.label-data {
  right: 58px;
  bottom: 34px;
}

.label-content {
  top: 228px;
  right: -4px;
}

.system-branch {
  position: absolute;
  z-index: 3;
  width: 156px;
  min-height: 118px;
  padding: 13px 13px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 18px 48px rgba(10, 30, 74, 0.08);
}

.system-branch strong {
  display: block;
  color: var(--navy);
  font-size: 0.86rem;
  line-height: 1;
  font-weight: 600;
}

.system-branch img {
  width: 94px;
  height: 50px;
  margin: 9px auto 7px;
  object-fit: contain;
}

.system-branch span {
  display: block;
  color: var(--muted);
  font-size: 0.69rem;
  line-height: 1.35;
  font-weight: 600;
}

.branch-meta {
  top: 44px;
  left: 24px;
}

.branch-google {
  top: 92px;
  right: 26px;
}

.branch-stack {
  left: 80px;
  bottom: 42px;
  width: 176px;
}

.axis-word {
  position: absolute;
  z-index: 1;
  color: rgba(10, 30, 74, 0.09);
  font-size: 3rem;
  line-height: 1;
  font-weight: 600;
}

.axis-top {
  top: 154px;
  left: 154px;
}

.axis-bottom {
  right: 28px;
  bottom: 122px;
}

.thesis {
  background: var(--navy);
  color: var(--white);
}

.thesis .section-kicker {
  color: #d9c5ea;
}

.thesis-grid {
  display: grid;
  grid-template-columns: 0.22fr 0.94fr 0.6fr;
  gap: 48px;
  align-items: center;
}

.thesis h2,
.dark-band h2,
.final-cta h2 {
  color: var(--white);
}

.thesis p:not(.section-kicker) {
  max-width: 760px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1rem;
}

.venn-panel {
  width: 100%;
  min-height: 282px;
}

.venn-panel svg {
  width: 100%;
  height: auto;
  overflow: visible;
}

.venn-circle {
  stroke: rgba(255, 255, 255, 0.5);
  stroke-width: 1.4;
  opacity: 0.46;
  mix-blend-mode: screen;
}

.venn-strategy {
  fill: #7a2f9e;
}

.venn-marketing {
  fill: #1f3fbf;
}

.venn-data {
  fill: #4a4fd9;
}

.venn-operation {
  fill: #9b2d7a;
}

.venn-label {
  fill: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  font-weight: 600;
  text-anchor: middle;
}

.venn-icon path,
.venn-icon rect {
  fill: none;
  stroke: rgba(255, 255, 255, 0.9);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.venn-icon circle,
.venn-icon .icon-fill-purple,
.venn-icon .icon-fill-blue,
.venn-icon .icon-fill-indigo,
.venn-icon .icon-fill-magenta {
  stroke: none;
}

.venn-core rect {
  fill: rgba(10, 30, 74, 0.9);
  stroke: rgba(255, 255, 255, 0.52);
  stroke-width: 1.2;
  filter: drop-shadow(0 20px 42px rgba(0, 0, 0, 0.2));
}

.venn-core path {
  stroke: rgba(255, 255, 255, 0.16);
  stroke-width: 1;
}

.venn-core text {
  fill: var(--white);
  font-size: 13px;
  font-weight: 600;
  text-anchor: middle;
}

.venn-core-note {
  fill: rgba(255, 255, 255, 0.62) !important;
  font-size: 10px !important;
  font-weight: 400 !important;
}

.thesis-model {
  position: relative;
  min-height: 280px;
}

.model-lines {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.model-lines path,
.model-lines circle {
  fill: none;
  stroke: rgba(255, 255, 255, 0.34);
  stroke-width: 1.4;
}

.model-lines circle {
  stroke-dasharray: 4 7;
}

.model-node {
  position: absolute;
  z-index: 2;
  display: grid;
  justify-items: center;
  gap: 7px;
  width: 92px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.72rem;
  font-weight: 600;
  text-align: center;
}

.model-node svg {
  width: 42px;
  height: 42px;
  padding: 7px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.node-strategy {
  top: 12px;
  left: 12px;
}

.node-marketing {
  top: 12px;
  right: 10px;
}

.node-data {
  left: 12px;
  bottom: 10px;
}

.node-operation {
  right: 10px;
  bottom: 10px;
}

.model-core {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  display: grid;
  place-items: center;
  width: 142px;
  height: 142px;
  padding: 18px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  color: var(--navy);
  text-align: center;
  transform: translate(-50%, -50%);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.14);
}

.model-core strong {
  font-size: 0.9rem;
  line-height: 1.1;
  font-weight: 600;
}

.model-core span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.66rem;
  line-height: 1.25;
}

.icon-line,
.icon-outline {
  fill: none;
  stroke: var(--navy);
  stroke-width: 2.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.thesis-model .icon-line,
.thesis-model .icon-outline {
  stroke: rgba(255, 255, 255, 0.88);
}

.icon-line.accent {
  stroke: var(--purple);
}

.icon-line.soft {
  stroke: rgba(10, 30, 74, 0.22);
}

.icon-fill-purple {
  fill: var(--purple);
}

.icon-fill-blue {
  fill: var(--blue);
}

.icon-fill-indigo {
  fill: var(--indigo);
}

.icon-fill-magenta {
  fill: var(--magenta);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

.section-heading h2 {
  margin-top: 16px;
}

.section-heading p:not(.section-kicker) {
  margin-top: 18px;
  color: var(--muted);
}

.wide-heading {
  max-width: 920px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.service-card {
  min-height: 224px;
  padding: 22px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.service-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.service-number,
.principle-list span,
.method-number {
  color: var(--purple);
  font-size: 0.78rem;
  font-weight: 600;
}

.service-icon {
  width: 76px;
  height: 54px;
  overflow: visible;
}

.service-symbol {
  position: relative;
  width: 66px;
  height: 44px;
}

.service-symbol::before {
  content: "";
  position: absolute;
  left: 8px;
  right: 10px;
  top: 26px;
  height: 2px;
  border-radius: 99px;
  background: var(--navy);
  transform: rotate(-16deg);
}

.service-symbol::after {
  content: "";
  position: absolute;
  left: 34px;
  top: 10px;
  width: 2px;
  height: 28px;
  border-radius: 99px;
  background: var(--navy);
  transform: rotate(28deg);
}

.service-symbol i {
  position: absolute;
  display: block;
  width: 18px;
  height: 11px;
  border-radius: 18px 18px 18px 2px;
  transform: rotate(-30deg);
}

.service-symbol i:nth-child(1) {
  left: 4px;
  bottom: 12px;
  background: var(--magenta);
}

.service-symbol i:nth-child(2) {
  left: 23px;
  top: 0;
  background: var(--purple);
}

.service-symbol i:nth-child(3) {
  right: 12px;
  top: 13px;
  background: var(--indigo);
}

.service-symbol i:nth-child(4) {
  right: 0;
  bottom: 10px;
  background: var(--blue);
}

.symbol-performance::before {
  left: 4px;
  right: 8px;
  top: 36px;
  height: 2px;
  transform: none;
}

.symbol-performance::after {
  left: 9px;
  top: 28px;
  width: 48px;
  height: 2px;
  background: var(--navy);
  transform: rotate(-25deg);
}

.symbol-performance i {
  bottom: 9px;
  width: 8px;
  border-radius: 2px 2px 0 0;
  transform: none;
}

.symbol-performance i:nth-child(1) {
  left: 10px;
  height: 12px;
  background: var(--magenta);
}

.symbol-performance i:nth-child(2) {
  left: 25px;
  top: auto;
  height: 18px;
  background: var(--purple);
}

.symbol-performance i:nth-child(3) {
  left: 40px;
  right: auto;
  top: auto;
  height: 26px;
  background: var(--indigo);
}

.symbol-performance i:nth-child(4) {
  left: 55px;
  right: auto;
  height: 34px;
  background: var(--blue);
}

.symbol-funnel::before,
.symbol-funnel::after {
  display: none;
}

.symbol-funnel i {
  left: 8px;
  right: auto;
  height: 7px;
  border-radius: 99px;
  transform: none;
}

.symbol-funnel i:nth-child(1) {
  top: 3px;
  width: 52px;
  background: var(--navy);
}

.symbol-funnel i:nth-child(2) {
  top: 15px;
  width: 42px;
  background: var(--blue);
}

.symbol-funnel i:nth-child(3) {
  top: 27px;
  width: 30px;
  background: var(--purple);
}

.symbol-funnel i:nth-child(4) {
  top: 39px;
  width: 18px;
  background: var(--magenta);
}

.symbol-data::before {
  left: 6px;
  right: 8px;
  top: 35px;
  height: 2px;
  transform: none;
}

.symbol-data::after {
  left: 10px;
  top: 9px;
  width: 2px;
  height: 30px;
  transform: none;
}

.symbol-data i {
  bottom: 10px;
  width: 9px;
  border-radius: 2px 2px 0 0;
  transform: none;
}

.symbol-data i:nth-child(1) {
  left: 18px;
  height: 14px;
  background: var(--magenta);
}

.symbol-data i:nth-child(2) {
  left: 33px;
  top: auto;
  height: 24px;
  background: var(--purple);
}

.symbol-data i:nth-child(3) {
  left: 48px;
  right: auto;
  top: auto;
  height: 19px;
  background: var(--indigo);
}

.symbol-data i:nth-child(4) {
  left: 63px;
  right: auto;
  height: 31px;
  background: var(--blue);
}

.symbol-crm::before {
  left: 15px;
  right: 15px;
  top: 29px;
  height: 2px;
  transform: rotate(-10deg);
}

.symbol-crm::after {
  left: 31px;
  top: 11px;
  width: 2px;
  height: 28px;
  transform: rotate(34deg);
}

.symbol-crm i {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  transform: none;
}

.symbol-crm i:nth-child(1) {
  left: 9px;
  bottom: 8px;
  background: var(--magenta);
}

.symbol-crm i:nth-child(2) {
  left: 27px;
  top: 2px;
  background: var(--purple);
}

.symbol-crm i:nth-child(3) {
  right: 18px;
  top: 15px;
  background: var(--indigo);
}

.symbol-crm i:nth-child(4) {
  right: 4px;
  bottom: 9px;
  background: var(--blue);
}

.symbol-content::before {
  left: 10px;
  top: 6px;
  width: 42px;
  height: 32px;
  border: 2px solid var(--navy);
  border-radius: 4px;
  background: transparent;
  transform: none;
}

.symbol-content::after {
  left: 18px;
  top: 17px;
  width: 32px;
  height: 2px;
  background: var(--purple);
  box-shadow: 0 9px 0 var(--blue);
  transform: none;
}

.symbol-content i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  transform: none;
}

.symbol-content i:nth-child(1) {
  left: 47px;
  top: 0;
  background: var(--magenta);
}

.symbol-content i:nth-child(2) {
  left: 55px;
  top: 12px;
  background: var(--purple);
}

.symbol-content i:nth-child(3) {
  right: 0;
  top: 24px;
  background: var(--indigo);
}

.symbol-content i:nth-child(4) {
  display: none;
}

.service-card h3 {
  margin-top: 22px;
}

.service-card p,
.principle-list p,
.method-flow p,
.industry-grid p,
.sophi-grid p,
.ideal-copy p,
.ideal-copy li,
.stack-feature-grid p {
  color: var(--muted);
}

.service-card p,
.principle-list p,
.method-flow p,
.industry-grid p,
.stack-feature-grid p {
  margin-top: 12px;
  font-size: 0.9rem;
  line-height: 1.6;
}

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

.principle-layout {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 70px;
  align-items: start;
}

.sticky-heading {
  position: sticky;
  top: 116px;
  margin-bottom: 0;
}

.principle-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.principle-list article {
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}

.principle-list h3 {
  margin-top: 18px;
}

.human-section {
  padding-top: 74px;
  padding-bottom: 74px;
}

.human-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 72px;
  align-items: start;
}

.human-grid h2 {
  margin-top: 16px;
}

.human-copy {
  padding-top: 26px;
  color: var(--muted);
}

.human-roles {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  margin-top: 26px;
  border: 1px solid var(--line);
  background: var(--line);
}

.human-roles article {
  min-height: 118px;
  padding: 20px;
  background: var(--white);
}

.human-roles svg {
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  fill: none;
  stroke: var(--purple);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.human-roles strong {
  display: block;
  color: var(--navy);
  font-size: 0.88rem;
  font-weight: 600;
}

.human-roles span {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.35;
}

.method-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  overflow: hidden;
}

.method-flow::before {
  content: "";
  position: absolute;
  top: 54px;
  left: 44px;
  right: 44px;
  height: 3px;
  background: var(--navy);
}

.method-flow article {
  position: relative;
  min-height: 240px;
  padding: 78px 22px 28px;
  border-right: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.94);
}

.method-flow article:last-child {
  border-right: 0;
}

.method-flow article::before {
  content: "";
  position: absolute;
  top: 42px;
  left: 24px;
  width: 26px;
  height: 26px;
  border: 4px solid var(--white);
  border-radius: 50%;
  background: var(--purple);
  box-shadow: 0 0 0 1px rgba(122, 47, 158, 0.25);
}

.method-flow article::after {
  content: "";
  position: absolute;
  top: 22px;
  left: 55px;
  width: 22px;
  height: 14px;
  border-radius: 22px 22px 22px 2px;
  background: var(--indigo);
  transform: rotate(-24deg);
}

.method-flow article:nth-of-type(2)::before,
.method-flow article:nth-of-type(4)::before {
  background: var(--blue);
}

.method-flow article:nth-of-type(3)::before,
.method-flow article:nth-of-type(5)::before {
  background: var(--magenta);
}

.method-flow h3 {
  margin-top: 18px;
}

.method-cycle {
  display: grid;
  grid-template-columns: auto minmax(160px, 420px) auto;
  gap: 16px;
  align-items: center;
  max-width: 760px;
  margin-top: 24px;
  color: var(--purple);
  font-size: 0.78rem;
  font-weight: 600;
}

.method-cycle svg {
  width: 100%;
  height: 58px;
  overflow: visible;
}

.method-cycle path {
  fill: none;
  stroke: rgba(122, 47, 158, 0.42);
  stroke-width: 2.4;
  stroke-linecap: round;
}

.method-cycle marker path {
  fill: var(--purple);
  stroke: none;
}

.method-cycle text {
  fill: var(--purple);
  font-size: 12px;
  font-weight: 600;
  text-anchor: middle;
}

.method-return {
  position: relative;
  margin-top: 16px;
  padding: 0 18px;
}

.method-return svg {
  width: 100%;
  height: 132px;
  overflow: visible;
}

.method-return .return-path {
  fill: none;
  stroke: rgba(122, 47, 158, 0.54);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  animation: returnPath 3.8s ease-in-out infinite;
}

.method-return marker path {
  fill: var(--purple);
  stroke: none;
}

.method-return text {
  fill: var(--purple);
  font-size: 18px;
  font-weight: 600;
  text-anchor: middle;
}

.return-labels {
  position: absolute;
  top: 18px;
  right: 18px;
  left: 18px;
  display: flex;
  justify-content: space-between;
  color: var(--purple);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.return-labels span:last-child {
  color: var(--purple);
}

.return-labels span:first-child {
  color: var(--navy);
}

.method-note {
  max-width: 740px;
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.dark-band {
  background: var(--navy);
  color: var(--white);
}

.dark-band .section-kicker {
  color: #d9c5ea;
}

.dark-band .section-heading p:not(.section-kicker) {
  color: rgba(255, 255, 255, 0.76);
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.17);
  border: 1px solid rgba(255, 255, 255, 0.17);
}

.industry-grid article {
  min-height: 184px;
  padding: 24px;
  background: var(--navy);
}

.industry-grid img {
  width: 100%;
  aspect-ratio: 360 / 210;
  margin-bottom: 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  object-fit: cover;
  filter: grayscale(16%) saturate(0.72) contrast(1.02);
  opacity: 0.88;
  transition: filter 180ms ease, opacity 180ms ease;
}

.industry-grid article:hover img {
  filter: grayscale(4%) saturate(0.92) contrast(1.04);
  opacity: 1;
}

.industry-grid h3 {
  color: var(--white);
}

.industry-grid p {
  color: rgba(255, 255, 255, 0.72);
}

.stack-layout {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 58px;
  align-items: start;
}

.stack-layout .section-heading {
  margin-bottom: 0;
}

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

.stack-feature-grid article {
  min-height: 210px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.stack-feature-grid img {
  width: 118px;
  height: 66px;
  margin: 14px 0 2px;
  object-fit: contain;
}

.tool-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.tool-cloud span {
  min-height: 40px;
  background: var(--soft);
}

.tool-cloud span:nth-child(1),
.tool-cloud span:nth-child(4),
.tool-cloud span:nth-child(7),
.tool-cloud span:nth-child(8) {
  border-color: rgba(122, 47, 158, 0.36);
  color: var(--purple);
  background: #fbf7fd;
}

.clients-section {
  overflow: hidden;
  background: var(--soft);
}

.client-carousel {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  background: var(--white);
}

.client-track {
  display: flex;
  width: max-content;
  animation: clientMarquee 34s linear infinite;
}

.client-track span {
  display: grid;
  place-items: center;
  width: 210px;
  min-height: 92px;
  border-right: 1px solid var(--line);
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 600;
}

.client-categories {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 30px;
  border: 1px solid var(--line);
  background: var(--line);
}

.client-categories article {
  min-height: 166px;
  padding: 24px;
  background: var(--white);
}

.client-categories span,
.insight-list span {
  color: var(--purple);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
}

.client-categories h3 {
  margin-top: 18px;
}

.client-categories p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.9rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  margin-top: 26px;
  color: var(--purple);
  font-size: 0.9rem;
  font-weight: 600;
}

.text-link::after {
  content: "→";
  margin-left: 8px;
}

.insights-grid {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 70px;
  align-items: start;
}

.insight-list {
  display: grid;
  border-top: 1px solid var(--line);
}

.insight-list a:not(.text-link) {
  display: grid;
  grid-template-columns: 132px 1fr;
  gap: 18px;
  align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.insight-list img {
  width: 132px;
  aspect-ratio: 1.45 / 1;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  object-fit: cover;
}

.insight-list strong {
  color: var(--navy);
  font-size: 1.02rem;
  line-height: 1.28;
  font-weight: 600;
}

.page-hero {
  padding-top: 86px;
  padding-bottom: 78px;
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  max-width: 860px;
}

.page-hero .lead {
  max-width: 760px;
}

.page-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.page-card {
  min-height: 230px;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.industry-page-card img {
  width: 100%;
  aspect-ratio: 360 / 210;
  margin-bottom: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  object-fit: cover;
  filter: grayscale(12%) saturate(0.78) contrast(1.02);
}

.page-card span {
  color: var(--purple);
  font-size: 0.72rem;
  font-weight: 600;
}

.page-card h2,
.page-card h3 {
  margin-top: 18px;
}

.page-card p,
.article-card p,
.article-body p,
.article-body li {
  margin-top: 14px;
  color: var(--muted);
}

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

.capability-index {
  background: var(--soft);
}

.capability-menu,
.industry-menu {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.capability-menu a,
.industry-menu a {
  min-height: 168px;
  padding: 24px;
  background: var(--white);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.capability-menu a:hover,
.industry-menu a:hover {
  position: relative;
  z-index: 2;
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.capability-menu span {
  color: var(--purple);
  font-size: 0.72rem;
  font-weight: 800;
}

.capability-menu strong,
.industry-menu strong {
  display: block;
  margin-top: 18px;
  color: var(--navy);
  font-size: 1.08rem;
  line-height: 1.25;
}

.capability-menu small,
.industry-menu small {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.5;
}

.industry-menu a {
  padding: 18px;
}

.industry-menu img {
  width: 100%;
  aspect-ratio: 1.9 / 1;
  border-radius: var(--radius);
  object-fit: cover;
  filter: grayscale(12%) saturate(0.8) contrast(1.02);
}

.capability-rail {
  position: relative;
  background: var(--white);
}

.capability-rail::before {
  content: "";
  position: absolute;
  top: 110px;
  bottom: 110px;
  left: calc((100% - min(1120px, calc(100% - 48px))) / 2 + 18px);
  width: 2px;
  background: linear-gradient(var(--purple), var(--blue));
  transform-origin: top;
  opacity: 0.34;
}

@supports (animation-timeline: view()) {
  .capability-rail::before {
    transform: scaleY(0.2);
    animation: railGrow linear both;
    animation-timeline: view();
    animation-range: entry 8% cover 78%;
  }
}

@keyframes railGrow {
  to {
    transform: scaleY(1);
  }
}

.capability-stack {
  display: grid;
  gap: 38px;
}

.capability-detail {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.55fr);
  gap: 48px;
  align-items: center;
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 60px rgba(10, 30, 74, 0.06);
}

.capability-detail::before {
  content: "";
  position: absolute;
  left: -27px;
  top: 44px;
  width: 12px;
  height: 12px;
  border: 3px solid var(--white);
  border-radius: 50%;
  background: var(--purple);
  box-shadow: 0 0 0 1px rgba(122, 47, 158, 0.24);
}

.capability-detail h2 {
  margin-top: 10px;
}

.why-how-what {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 28px;
  border: 1px solid var(--line);
  background: var(--line);
}

.why-how-what div {
  padding: 18px;
  background: var(--white);
}

.why-how-what strong {
  color: var(--purple);
  font-size: 0.72rem;
  text-transform: uppercase;
}

.why-how-what p,
.case-note {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.case-note {
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.visual-card {
  min-height: 280px;
  display: grid;
  align-content: center;
  gap: 10px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(135deg, #ffffff, #f7f8fc);
}

.visual-card span,
.visual-card div {
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--navy);
  font-size: 0.84rem;
  font-weight: 700;
}

.visual-card small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-weight: 400;
}

.architecture-map {
  grid-template-columns: repeat(5, 1fr);
}

.architecture-map small {
  grid-column: 1 / -1;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.funnel-dashboard {
  grid-template-columns: 1fr;
}

.content-matrix {
  grid-template-columns: 0.8fr repeat(3, 1fr);
}

.content-matrix strong,
.content-matrix small {
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.measurement-flow,
.journey-flow,
.roadmap-visual {
  grid-template-columns: 1fr;
}

.measurement-flow span,
.journey-flow span,
.roadmap-visual span {
  position: relative;
}

.measurement-flow span:not(:last-child)::after,
.journey-flow span:not(:last-child)::after,
.roadmap-visual span:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 22px;
  bottom: -11px;
  width: 1px;
  height: 10px;
  background: var(--purple);
}

.industry-detail {
  grid-template-columns: minmax(240px, 0.48fr) minmax(0, 1fr);
}

.industry-detail > img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border-radius: var(--radius);
  object-fit: cover;
  filter: grayscale(10%) saturate(0.82) contrast(1.02);
}

.industry-detail .why-how-what {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.industry-page-hero {
  padding-bottom: 72px;
}

.industry-page-grid {
  display: grid;
  grid-template-columns: 0.95fr 0.82fr;
  gap: 56px;
  align-items: center;
}

.industry-page-grid > img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow);
}

.industry-single-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.industry-single-grid article {
  min-height: 250px;
  padding: 26px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.industry-single-grid h2 {
  margin-top: 12px;
  font-size: 1.5rem;
}

.industry-single-grid p:not(.section-kicker),
.industry-single-grid li {
  margin-top: 16px;
  color: var(--muted);
}

.industry-solutions ul {
  margin-top: 16px;
}

.industry-case-note {
  background: var(--soft) !important;
}

.industry-cta {
  margin-top: 0;
}

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

.article-card {
  min-height: 250px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.article-card > img {
  width: 100%;
  aspect-ratio: 1.75 / 1;
  margin-bottom: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  object-fit: cover;
}

.article-card h2,
.article-card h3 {
  margin-top: 14px;
}

.article-body {
  max-width: 820px;
}

.article-hero-image {
  width: 100%;
  margin: 32px 0 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  aspect-ratio: 1.75 / 1;
  object-fit: cover;
}

.article-figure {
  margin: 34px 0 24px;
}

.article-figure img {
  width: 100%;
  aspect-ratio: 1.85 / 1;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  object-fit: cover;
}

.article-figure figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.5;
}

.linktree-section {
  min-height: calc(100vh - 78px);
  display: grid;
  place-items: center;
  padding: 70px 16px 86px;
  background:
    radial-gradient(circle at top left, rgba(122, 47, 158, 0.12), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #f5f7fb 100%);
}

.linktree-card {
  width: min(560px, 100%);
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
  text-align: center;
}

.linktree-logo {
  width: 230px;
  margin: 0 auto 20px;
}

.linktree-card h1 {
  max-width: none;
  margin-top: 14px;
  font-size: 2.15rem;
}

.linktree-card .lead {
  margin: 16px auto 0;
  font-size: 0.98rem;
}

.linktree-list {
  display: grid;
  gap: 10px;
  margin-top: 28px;
  text-align: left;
}

.linktree-list a {
  display: grid;
  gap: 3px;
  min-height: 68px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.linktree-list a:hover,
.linktree-list a:focus-visible {
  border-color: rgba(122, 47, 158, 0.45);
  box-shadow: 0 14px 34px rgba(10, 30, 74, 0.08);
  transform: translateY(-1px);
}

.linktree-list strong {
  color: var(--navy);
  font-size: 0.95rem;
  line-height: 1.2;
}

.linktree-list span {
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.35;
}

.linktree-note {
  margin-top: 20px;
  color: var(--muted);
  font-size: 0.78rem;
}

.article-meta {
  margin-top: 18px;
  color: var(--purple);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.article-body h2 {
  margin-top: 42px;
  font-size: 1.7rem;
}

.social-row a,
.footer-social a {
  text-transform: none;
}

.footer-social {
  display: flex;
  gap: 8px;
  margin-top: 18px;
}

.footer-social a {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--navy);
  font-size: 0.76rem;
  font-weight: 700;
}

@keyframes clientMarquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

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

.sophi-branded {
  position: relative;
  overflow: hidden;
  background: #1d2929;
  color: var(--white);
}

.sophi-branded::before {
  content: "";
  position: absolute;
  inset: auto -20% -34% -20%;
  height: 58%;
  background: radial-gradient(circle at 30% 50%, rgba(78, 246, 169, 0.22), transparent 34%),
    radial-gradient(circle at 70% 48%, rgba(64, 196, 239, 0.22), transparent 32%);
  pointer-events: none;
}

.sophi-branded .container {
  position: relative;
}

.sophi-grid {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 70px;
  align-items: start;
}

.sophi-grid h2 {
  margin-top: 16px;
}

.sophi-branded h2,
.sophi-branded .pull-quote {
  color: var(--white) !important;
}

.sophi-branded .section-kicker {
  color: #4ef6a9;
}

.sophi-branded p {
  color: rgba(255, 255, 255, 0.76);
}

.sophi-grid p + p {
  margin-top: 20px;
}

.pull-quote {
  border-left: 4px solid var(--purple);
  padding-left: 20px;
  color: var(--navy) !important;
  font-size: 1.12rem;
  font-weight: 600;
  line-height: 1.35;
}

.mini-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.mini-tags span {
  background: var(--white);
}

.sophi-branded .mini-tags span {
  border-color: rgba(78, 246, 169, 0.26);
  background: rgba(255, 255, 255, 0.07);
  color: #ffffff;
}

.sophi-showcase {
  display: grid;
  gap: 18px;
}

.sophi-marquee {
  display: flex;
  gap: 18px;
  overflow: hidden;
  padding: 18px;
  border: 1px solid rgba(78, 246, 169, 0.28);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.sophi-marquee img {
  width: 260px;
  flex: 0 0 auto;
  animation: sophiFloat 7s ease-in-out infinite;
}

.sophi-marquee img:nth-child(2) {
  animation-delay: -2s;
}

.sophi-brandboard {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
}

.sophi-page {
  background: #1d2929;
}

.sophi-page .site-header,
.sophi-page .site-footer {
  background: #ffffff;
}

.sophi-page-hero {
  position: relative;
  overflow: hidden;
  padding: 104px 0 86px;
  background: #1d2929;
  color: var(--white);
}

.sophi-page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 16% 18%, rgba(78, 246, 169, 0.18), transparent 32%),
    radial-gradient(circle at 84% 68%, rgba(64, 196, 239, 0.18), transparent 34%);
  pointer-events: none;
}

.sophi-page-grid {
  position: relative;
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 64px;
  align-items: center;
}

.sophi-page-hero .eyebrow {
  color: #4ef6a9;
}

.sophi-page-hero h1 {
  max-width: 760px;
  color: var(--white);
}

.sophi-page-hero .lead {
  color: rgba(255, 255, 255, 0.76);
}

.sophi-hero-card {
  display: grid;
  gap: 18px;
  padding: 18px;
  border: 1px solid rgba(78, 246, 169, 0.24);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.24);
}

.sophi-hero-logo,
.sophi-hero-board,
.sophi-content-proof img {
  width: 100%;
  border-radius: var(--radius);
}

.sophi-hero-logo {
  background: #1d2929;
}

.sophi-video-stage {
  --scene-progress: 0;
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
  background: #101717;
  color: #ffffff;
}

.sophi-video-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(16, 23, 23, 0.88) 0%, rgba(16, 23, 23, 0.5) 48%, rgba(16, 23, 23, 0.86) 100%),
    linear-gradient(180deg, rgba(16, 23, 23, 0.2) 0%, rgba(16, 23, 23, 0.92) 100%);
  pointer-events: none;
}

.sophi-video-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  opacity: calc(0.14 + (var(--scene-progress) * 0.18));
  transform: translate3d(0, calc(var(--scene-progress) * -28px), 0);
  pointer-events: none;
}

.sophi-reel-video,
.sophi-reel-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.sophi-reel-video {
  z-index: 0;
  display: none;
  object-fit: cover;
  transform: scale(calc(1.02 + (var(--scene-progress) * 0.08)));
  filter: saturate(1.05) contrast(1.05);
}

.sophi-video-stage.has-video .sophi-reel-video {
  display: block;
}

.sophi-video-stage.has-video .sophi-reel-fallback {
  display: none;
}

.sophi-reel-fallback {
  z-index: 0;
  background:
    radial-gradient(circle at 22% 32%, rgba(78, 246, 169, 0.28), transparent 30%),
    radial-gradient(circle at 70% 44%, rgba(64, 196, 239, 0.22), transparent 34%),
    #101717;
  transform: scale(calc(1 + (var(--scene-progress) * 0.04)));
}

.sophi-reel-frame {
  position: absolute;
  width: min(34vw, 440px);
  min-width: 230px;
  overflow: hidden;
  border: 1px solid rgba(78, 246, 169, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.36);
  transform: translate3d(0, calc(var(--scene-progress) * -58px), 0) rotate(var(--frame-rotate));
}

.sophi-reel-frame img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.frame-one {
  --frame-rotate: -4deg;
  top: 16%;
  right: 9%;
}

.frame-two {
  --frame-rotate: 3deg;
  top: 36%;
  right: 30%;
  width: min(42vw, 560px);
  opacity: 0.82;
  transform: translate3d(0, calc(var(--scene-progress) * -88px), 0) rotate(var(--frame-rotate));
}

.frame-three {
  --frame-rotate: 5deg;
  bottom: 8%;
  right: 12%;
  width: min(30vw, 380px);
  opacity: 0.9;
  transform: translate3d(0, calc(var(--scene-progress) * -42px), 0) rotate(var(--frame-rotate));
}

.sophi-reel-copy {
  position: relative;
  z-index: 2;
  padding-top: 22vh;
  padding-bottom: 18vh;
}

.sophi-reel-copy .eyebrow {
  color: #4ef6a9;
}

.sophi-reel-copy h2 {
  max-width: 980px;
  color: #ffffff;
  font-size: clamp(3rem, 8vw, 8.7rem);
  line-height: 0.92;
}

.sophi-reel-copy p:not(.eyebrow) {
  max-width: 680px;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1rem, 1.8vw, 1.34rem);
}

.sophi-reel-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.sophi-reel-tags span {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border: 1px solid rgba(78, 246, 169, 0.32);
  border-radius: 999px;
  background: rgba(78, 246, 169, 0.08);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.sophi-kinetic-strip {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 24px;
  z-index: 2;
  display: flex;
  width: max-content;
  color: rgba(78, 246, 169, 0.72);
  font-size: clamp(1.35rem, 3.2vw, 4rem);
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  text-transform: uppercase;
  animation: sophiKinetic 28s linear infinite;
}

.sophi-kinetic-strip span {
  padding-right: 1ch;
}

.sophi-method-strip {
  background: var(--white);
}

.sophi-service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid #b8f5df;
  background: #b8f5df;
}

.sophi-service-grid article {
  position: relative;
  min-height: 220px;
  padding: 26px;
  overflow: hidden;
  background: #ffffff;
  transition: transform 280ms ease, background 280ms ease, color 280ms ease;
}

.sophi-service-grid article::after {
  content: "";
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 22px;
  height: 2px;
  background: linear-gradient(90deg, #4ef6a9, #40c4ef);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 320ms ease;
}

.sophi-service-grid article:hover {
  background: #1d2929;
  color: #ffffff;
  transform: translateY(-4px);
}

.sophi-service-grid article:hover::after {
  transform: scaleX(1);
}

.sophi-service-grid article:hover p {
  color: rgba(255, 255, 255, 0.72);
}

.sophi-service-grid span {
  color: #1d9fbf;
  font-size: 0.72rem;
  font-weight: 800;
}

.sophi-service-grid h2 {
  margin-top: 18px;
  font-size: 1.28rem;
}

.sophi-service-grid p {
  margin-top: 14px;
  color: var(--muted);
}

.sophi-motion-lab {
  background: #eefaf6;
}

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

.sophi-motion-card {
  min-height: 320px;
  padding: 28px;
  border: 1px solid rgba(29, 41, 41, 0.12);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 24px 70px rgba(16, 23, 23, 0.08);
  transform:
    rotateX(var(--tilt-x, 0deg))
    rotateY(var(--tilt-y, 0deg))
    translate3d(0, var(--tilt-lift, 0), 0);
  transition: transform 180ms ease, box-shadow 180ms ease;
  transform-style: preserve-3d;
}

.sophi-motion-card:hover {
  --tilt-lift: -6px;
  box-shadow: 0 30px 90px rgba(16, 23, 23, 0.14);
}

.sophi-motion-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(78, 246, 169, 0.5);
  border-radius: 999px;
  color: #1d9fbf;
  font-size: 0.8rem;
  font-weight: 800;
}

.sophi-motion-card h3 {
  margin-top: 72px;
  font-size: clamp(1.65rem, 3vw, 2.6rem);
  line-height: 0.98;
}

.sophi-motion-card p {
  margin-top: 18px;
  color: var(--muted);
}

.sophi-content-proof {
  background: #1d2929;
  color: var(--white);
}

.sophi-proof-grid {
  display: grid;
  grid-template-columns: 0.76fr 1.24fr;
  gap: 64px;
  align-items: center;
}

.sophi-content-proof .section-kicker {
  color: #4ef6a9;
}

.sophi-content-proof h2 {
  color: var(--white);
}

.sophi-content-proof p:not(.section-kicker) {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.76);
}

@keyframes returnPath {
  0%,
  12% {
    stroke-dashoffset: 1;
  }

  48%,
  70% {
    stroke-dashoffset: 0;
  }

  100% {
    stroke-dashoffset: -1;
  }
}

@keyframes sophiFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes sophiKinetic {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}

.ideal-section {
  padding-top: 84px;
}

.ideal-grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 68px;
  align-items: start;
}

.ideal-copy {
  padding-top: 8px;
}

.ideal-copy ul {
  margin-top: 24px;
}

.final-cta {
  background: var(--navy);
  color: var(--white);
}

.final-cta .section-kicker {
  color: #d9c5ea;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(360px, 0.74fr);
  gap: 58px;
  align-items: start;
}

.final-cta h2 {
  margin-top: 16px;
}

.contact-copy > p:not(.section-kicker) {
  max-width: 650px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.78);
}

.contact-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: 30px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.18);
}

.contact-panel a {
  min-height: 54px;
  display: flex;
  align-items: center;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.3;
}

.contact-panel a:hover,
.social-row a:hover {
  background: rgba(255, 255, 255, 0.12);
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.social-row a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.78rem;
  font-weight: 600;
}

.contact-service-note {
  margin-top: 22px !important;
  font-size: 0.92rem;
}

.contact-form {
  padding: 28px;
  border-radius: var(--radius);
  background: var(--white);
  color: var(--navy);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.18);
}

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

.contact-form label {
  display: block;
}

.hidden-field {
  display: none;
}

.contact-form label span {
  display: block;
  margin-bottom: 7px;
  color: var(--purple);
  font-size: 0.7rem;
  font-weight: 600;
  line-height: 1.2;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select {
  width: 100%;
  min-height: 48px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--navy);
  font: inherit;
  font-size: 0.92rem;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.contact-form input:focus,
.contact-form select:focus {
  border-color: rgba(122, 47, 158, 0.7);
  box-shadow: 0 0 0 4px rgba(122, 47, 158, 0.1);
}

.phone-field {
  grid-column: span 2;
  display: grid;
  grid-template-columns: minmax(116px, 0.42fr) minmax(0, 1fr);
  gap: 14px;
}

.contact-form .button {
  width: 100%;
  margin-top: 20px;
}

.form-note {
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.5;
}

.button-light {
  background: var(--white);
  color: var(--navy);
}

.button-light:hover {
  color: var(--purple);
}

.button-dark-outline {
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--white);
}

.button-dark-outline:hover {
  border-color: var(--white);
}

.cta-actions {
  justify-content: flex-start;
  margin-top: 0;
}

.cta-actions p {
  flex-basis: 100%;
  font-size: 0.92rem;
}

.site-footer {
  padding: 54px 0;
  background: var(--white);
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.7fr 0.8fr;
  gap: 56px;
  align-items: start;
}

.site-footer img {
  width: 230px;
}

.site-footer p,
.footer-note p {
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.94rem;
}

.site-footer nav {
  display: grid;
  gap: 10px;
  color: var(--navy);
  font-size: 0.95rem;
  font-weight: 700;
}

.site-footer a:hover {
  color: var(--purple);
}

.thanks-page {
  min-height: 100vh;
  background: var(--soft);
}

.thanks-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 42px 24px;
}

.thanks-brand {
  position: fixed;
  top: 28px;
  left: 32px;
  min-width: 0;
}

.thanks-card {
  width: min(760px, 100%);
  padding: 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.thanks-card h1 {
  max-width: 680px;
  margin-top: 18px;
  font-size: 2.28rem;
}

.thanks-card p:not(.section-kicker) {
  max-width: 560px;
  margin-top: 18px;
  color: var(--muted);
}

.consent-banner {
  position: fixed;
  right: 22px;
  bottom: 22px;
  left: 22px;
  z-index: 120;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.52fr);
  gap: 28px;
  max-width: 1120px;
  margin: 0 auto;
  padding: 22px;
  color: var(--white);
  background: rgba(7, 18, 44, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  box-shadow: 0 28px 80px rgba(5, 14, 34, 0.28);
  backdrop-filter: blur(18px);
}

.consent-copy p {
  margin-top: 0;
}

.consent-kicker {
  color: #d9c5ea;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.consent-title {
  margin-top: 8px;
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 800;
}

.consent-copy p:not(.consent-kicker):not(.consent-title) {
  max-width: 720px;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.92rem;
  line-height: 1.6;
}

.consent-form {
  display: grid;
  gap: 14px;
}

.consent-settings {
  display: grid;
  gap: 10px;
}

.consent-settings[hidden],
.consent-save[hidden] {
  display: none;
}

.consent-toggle {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
}

.consent-toggle input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--purple);
}

.consent-toggle strong {
  display: block;
  color: var(--white);
  font-size: 0.9rem;
}

.consent-toggle small {
  display: block;
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.78rem;
  line-height: 1.45;
}

.consent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  justify-content: flex-end;
}

.consent-actions .button {
  min-height: 42px;
  padding: 0 14px;
  font-size: 0.82rem;
}

.consent-actions .button-primary {
  color: var(--navy);
  background: var(--white);
  border-color: var(--white);
}

.consent-actions .button-secondary {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.32);
}

.consent-actions .button-ghost {
  color: rgba(255, 255, 255, 0.78);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.18);
}

.privacy-preferences {
  min-height: 36px;
  padding: 0 14px;
  color: var(--navy);
  font-family: inherit;
  font-size: 0.78rem;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 14px 36px rgba(5, 14, 34, 0.12);
  cursor: pointer;
}

.privacy-preferences-fixed {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 100;
}

.privacy-preferences-inline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 16px;
}

.privacy-preferences:hover {
  color: var(--purple);
}

@media (max-width: 1080px) {
  .site-header {
    padding: 0 24px;
  }

  .site-nav {
    gap: 16px;
    font-size: 0.8rem;
  }

  .brand {
    min-width: 210px;
  }

  h1 {
    font-size: 2.85rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero-grid,
  .principle-layout,
  .stack-layout,
  .sophi-grid,
  .sophi-page-grid,
  .sophi-proof-grid,
  .ideal-grid,
  .contact-layout {
    gap: 48px;
  }

  .system-map {
    height: 470px;
  }

  .map-ring-one {
    width: 384px;
    height: 384px;
  }

  .map-ring-two {
    width: 258px;
    height: 258px;
  }

  .system-logo {
    width: 132px;
    height: 132px;
  }

  .branch-label {
    width: 124px;
  }

  .label-strategy {
    left: 18px;
  }

  .label-meta {
    left: -8px;
  }

  .label-google {
    right: -4px;
  }

  .label-content {
    right: -14px;
  }

  .axis-word {
    font-size: 2.5rem;
  }

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

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

}

@media (max-width: 860px) {
  body {
    font-size: 16px;
  }

  .container {
    width: min(100% - 32px, 720px);
  }

  .section {
    padding: 70px 0;
  }

  .site-header {
    min-height: 70px;
  }

  .brand {
    min-width: 0;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 70px 16px auto 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .nav-group {
    display: grid;
  }

  .nav-parent {
    padding: 14px 12px;
  }

  .nav-dropdown {
    position: static;
    width: auto;
    padding: 0 0 8px 12px;
    border: 0;
    border-left: 1px solid var(--line);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .nav-dropdown::before {
    display: none;
  }

  .nav-dropdown a {
    padding: 8px 12px;
    color: var(--muted);
  }

  body.nav-open .site-nav {
    display: flex;
  }

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

  .nav-cta {
    margin-top: 8px;
  }

  .hero {
    min-height: auto;
    padding-top: 54px;
  }

  .hero-grid,
  .thesis-grid,
  .principle-layout,
  .human-grid,
  .industry-page-grid,
  .industry-single-grid,
  .stack-layout,
  .insights-grid,
  .sophi-grid,
  .sophi-page-grid,
  .sophi-proof-grid,
  .ideal-grid,
  .contact-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 500px;
    order: -1;
  }

  .system-map {
    height: 500px;
    max-width: 520px;
    margin: 0 auto;
  }

  .map-ring-one {
    width: 410px;
    height: 410px;
  }

  .map-ring-two {
    width: 270px;
    height: 270px;
  }

  .system-logo {
    width: 150px;
    height: 150px;
  }

  .branch-label {
    width: 122px;
    padding: 9px;
  }

  .label-strategy {
    top: 10px;
    left: 36px;
  }

  .label-meta {
    top: 128px;
    left: 4px;
  }

  .label-google {
    top: 70px;
    right: 12px;
  }

  .label-crm {
    left: 36px;
    bottom: 28px;
  }

  .label-data {
    right: 34px;
    bottom: 28px;
  }

  .label-content {
    top: 230px;
    right: 0;
  }

  h1 {
    font-size: 2.25rem;
    line-height: 1.08;
  }

  h2 {
    font-size: 1.75rem;
  }

  .lead {
    font-size: 1rem;
  }

  .venn-panel {
    max-width: 380px;
  }

  .sticky-heading {
    position: static;
  }

  .service-grid,
  .industry-grid,
  .human-roles,
  .client-categories,
  .capability-menu,
  .industry-menu,
  .page-grid,
  .article-grid,
  .stack-feature-grid,
  .method-flow {
    grid-template-columns: 1fr;
  }

  .capability-rail::before {
    display: none;
  }

  .capability-detail,
  .industry-detail {
    grid-template-columns: 1fr;
  }

  .capability-detail::before {
    display: none;
  }

  .why-how-what,
  .industry-detail .why-how-what,
  .architecture-map,
  .content-matrix {
    grid-template-columns: 1fr;
  }

  .industry-detail > img {
    min-height: 260px;
  }

  .contact-form {
    max-width: 620px;
  }

  .method-flow article,
  .method-flow article:nth-child(2n),
  .method-flow article:last-child {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .method-flow article:last-child {
    border-bottom: 0;
  }

  .method-flow::before {
    display: none;
  }

  .method-cycle {
    max-width: 100%;
  }

  .method-return {
    padding: 0;
  }

  .method-return svg {
    height: 104px;
  }

  .method-return text {
    font-size: 16px;
  }

  .insight-list a:not(.text-link) {
    grid-template-columns: 110px 1fr;
  }

  .insight-list img {
    width: 110px;
  }

  .cta-actions {
    margin-top: 4px;
  }

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

  .sophi-motion-grid {
    grid-template-columns: 1fr;
  }

  .sophi-reel-frame {
    width: min(50vw, 380px);
  }

  .frame-two {
    right: 18%;
    width: min(56vw, 460px);
  }

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

  .consent-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 0 16px;
  }

  .brand {
    font-size: 0.98rem;
  }

  .brand img {
    width: 34px;
    height: 34px;
  }

  .hero {
    padding-top: 38px;
  }

  .hero-actions,
  .cta-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
    white-space: normal;
    text-align: center;
  }

  .consent-banner {
    right: 12px;
    bottom: 12px;
    left: 12px;
    max-height: calc(100vh - 24px);
    overflow: auto;
    padding: 18px;
  }

  .consent-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .linktree-section {
    padding: 34px 12px 52px;
  }

  .linktree-card {
    padding: 24px 18px;
  }

  .linktree-card h1 {
    font-size: 1.8rem;
  }

  .privacy-preferences-fixed {
    left: 12px;
    bottom: 12px;
  }

  h1 {
    font-size: 2.18rem;
  }

  h2 {
    font-size: 1.58rem;
    line-height: 1.18;
  }

  .contact-panel,
  .form-grid,
  .phone-field {
    grid-template-columns: 1fr;
  }

  .phone-field {
    grid-column: span 1;
  }

  .contact-panel a {
    min-height: 50px;
  }

  .contact-form {
    padding: 22px;
  }

  .social-row a {
    width: 100%;
  }

  .method-cycle {
    grid-template-columns: auto minmax(96px, 1fr) auto;
    gap: 8px;
    font-size: 0.7rem;
  }

  .method-cycle svg {
    height: 44px;
  }

  .method-cycle text {
    font-size: 11px;
  }

  .method-return svg {
    height: 86px;
  }

  .method-return text {
    font-size: 14px;
  }

  .return-labels {
    font-size: 0.65rem;
  }

  .insight-list a:not(.text-link) {
    grid-template-columns: 1fr;
  }

  .insight-list img {
    width: 100%;
    aspect-ratio: 1.8 / 1;
  }

  .thanks-shell {
    place-items: start;
    padding-top: 108px;
  }

  .thanks-brand {
    left: 16px;
  }

  .thanks-card {
    padding: 30px 22px;
  }

  .thanks-card h1 {
    font-size: 2rem;
  }

  .service-card,
  .industry-grid article,
  .page-card,
  .article-card,
  .capability-detail,
  .stack-feature-grid article,
  .sophi-service-grid article {
    min-height: auto;
    padding: 24px;
  }

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

  .sophi-video-stage {
    min-height: 88vh;
  }

  .sophi-reel-copy {
    padding-top: 18vh;
    padding-bottom: 22vh;
  }

  .sophi-reel-copy h2 {
    font-size: 2.8rem;
  }

  .sophi-reel-frame {
    width: 240px;
    min-width: 0;
  }

  .frame-one {
    top: 12%;
    right: -12%;
  }

  .frame-two {
    top: 38%;
    right: -22%;
    width: 310px;
  }

  .frame-three {
    right: 6%;
    bottom: 8%;
    width: 210px;
  }

  .sophi-motion-card {
    min-height: auto;
    padding: 24px;
  }

  .sophi-motion-card h3 {
    margin-top: 58px;
  }

  .hero-visual {
    min-height: 460px;
  }

  .system-map {
    height: 460px;
  }

  .map-ring-one {
    width: 300px;
    height: 300px;
  }

  .map-ring-two {
    width: 210px;
    height: 210px;
  }

  .system-logo {
    width: 116px;
    height: 116px;
  }

  .branch-label {
    width: 108px;
  }

  .branch-label span {
    display: none;
  }

  .label-strategy {
    left: 10px;
  }

  .label-meta {
    left: -6px;
  }

  .label-google {
    right: -6px;
  }

  .label-crm {
    left: 12px;
  }

  .label-data {
    right: 12px;
  }

  .label-content {
    right: -8px;
  }

  .method-flow article {
    min-height: auto;
  }
}

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

  .js-reveal {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }

  .sophi-kinetic-strip,
  .sophi-marquee img {
    animation: none;
  }
}
