:root {
  --navy-950: #002130;
  --navy-900: #063044;
  --navy-800: #0b3247;
  --navy-700: #144666;
  --blue-soft: #6e8ca0;
  --cream: #f3f3e0;
  --sand: #ead7bd;
  --gold: #d9a066;
  --gray-900: #1d252b;
  --gray-700: #4e5a61;
  --gray-500: #8b8c89;
  --gray-200: #d8dedb;
  --white: #ffffff;
  --max: 1180px;
  --radius: 8px;
  --shadow: 0 24px 70px rgba(0, 33, 48, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--navy-950);
  background: var(--cream);
  font-family: "Inter", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

button {
  cursor: pointer;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 14px;
  color: var(--navy-950);
  background: var(--cream);
  border: 1px solid var(--navy-950);
  transform: translateY(-140%);
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  color: var(--cream);
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-solid {
  background: rgba(0, 33, 48, 0.92);
  border-bottom: 1px solid rgba(243, 243, 224, 0.12);
  backdrop-filter: blur(18px);
}

.nav-shell {
  width: min(var(--max), calc(100% - 48px));
  min-height: 84px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

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

.brand img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 14px;
  font-weight: 700;
}

.site-nav a {
  position: relative;
  opacity: 0.86;
  transition: opacity 160ms ease, color 160ms ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  opacity: 1;
  color: var(--white);
}

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

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(243, 243, 224, 0.35);
  border-radius: var(--radius);
  background: transparent;
  color: var(--cream);
  align-items: center;
  justify-content: center;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle span {
  position: relative;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle span::before {
  top: -6px;
}

.nav-toggle span::after {
  top: 6px;
}

.nav-open .nav-toggle span {
  background: transparent;
}

.nav-open .nav-toggle span::before {
  transform: translateY(6px) rotate(45deg);
}

.nav-open .nav-toggle span::after {
  transform: translateY(-6px) rotate(-45deg);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 48px;
  padding: 14px 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--navy-950);
  background: var(--cream);
}

.btn-primary:hover {
  background: var(--white);
}

.btn-dark {
  color: var(--cream);
  background: var(--navy-950);
}

.btn-dark:hover {
  background: var(--navy-800);
}

.btn-outline {
  color: var(--cream);
  border-color: rgba(243, 243, 224, 0.5);
  background: transparent;
}

.btn-outline:hover {
  border-color: var(--cream);
}

.btn-soft {
  color: var(--navy-950);
  background: var(--sand);
}

.btn-arrow {
  font-size: 18px;
  line-height: 1;
}

.section {
  position: relative;
  padding: 108px 0;
}

.section-tight {
  padding: 76px 0;
}

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

.grid-2 {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
  gap: 76px;
  align-items: center;
}

.grid-2.is-reversed {
  grid-template-columns: minmax(360px, 0.88fr) minmax(0, 1fr);
}

.eyebrow {
  display: block;
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Montserrat", "Inter", Arial, sans-serif;
  line-height: 1.04;
}

h1 {
  max-width: 720px;
  color: var(--cream);
  font-size: 64px;
  font-weight: 800;
}

h2 {
  font-size: 44px;
  font-weight: 800;
}

h3 {
  font-size: 22px;
  font-weight: 800;
}

p {
  margin: 0;
}

.lead {
  max-width: 590px;
  margin-top: 24px;
  font-size: 18px;
  color: rgba(243, 243, 224, 0.86);
}

.lead.dark {
  color: var(--gray-700);
}

.muted {
  color: var(--blue-soft);
}

.hero {
  position: relative;
  min-height: 860px;
  padding-top: 148px;
  padding-bottom: 148px;
  color: var(--cream);
  background:
    linear-gradient(120deg, rgba(0, 33, 48, 0.98), rgba(6, 48, 68, 0.96)),
    var(--navy-950);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(243, 243, 224, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(243, 243, 224, 0.08) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(90deg, transparent, black 42%, black 82%, transparent);
}

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

.hero-copy {
  padding-top: 32px;
}

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

.hero-note {
  display: flex;
  align-items: center;
  gap: 18px;
  max-width: 430px;
  margin-top: 30px;
  color: rgba(243, 243, 224, 0.76);
  font-size: 14px;
}

.brand-ring {
  width: 28px;
  height: 28px;
  min-width: 28px;
  border: 6px solid var(--cream);
  border-radius: 50%;
  transform: rotate(-12deg) skew(-10deg);
}

.growth-system {
  position: relative;
  min-height: 540px;
  display: grid;
  grid-template-columns: 1fr 174px 1fr;
  align-items: center;
  gap: 28px;
}

.system-column {
  display: grid;
  gap: 18px;
}

.system-column.left {
  justify-items: end;
}

.system-node {
  position: relative;
  width: 178px;
  min-height: 58px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
  padding: 11px 16px;
  color: var(--cream);
  background: rgba(243, 243, 224, 0.04);
  border: 1px solid rgba(243, 243, 224, 0.34);
  border-radius: var(--radius);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.system-node:hover,
.system-node.is-active {
  transform: translateY(-3px);
  border-color: rgba(243, 243, 224, 0.82);
  background: rgba(243, 243, 224, 0.09);
}

.system-node strong {
  font-size: 14px;
  line-height: 1.15;
}

.system-node span {
  color: rgba(243, 243, 224, 0.64);
  font-size: 12px;
}

.system-node::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 58px;
  height: 1px;
  background: rgba(243, 243, 224, 0.32);
}

.system-column.left .system-node::after {
  right: -58px;
}

.system-column.right .system-node::after {
  left: -58px;
}

.system-core {
  position: relative;
  width: 174px;
  height: 174px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(243, 243, 224, 0.28);
  border-radius: 50%;
  background:
    radial-gradient(circle at center, rgba(243, 243, 224, 0.16), rgba(20, 70, 102, 0.12) 46%, rgba(0, 33, 48, 0.32) 70%),
    var(--navy-800);
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.24);
}

.system-core::before,
.system-core::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(243, 243, 224, 0.16);
  border-radius: 50%;
}

.system-core::before {
  inset: -24px;
}

.system-core::after {
  inset: -48px;
}

.system-core img {
  width: 116px;
  max-width: 72%;
  max-height: 116px;
  height: auto;
  object-fit: contain;
}

.system-label {
  position: absolute;
  left: 50%;
  width: 210px;
  transform: translateX(-50%);
  text-align: center;
  color: rgba(243, 243, 224, 0.7);
  font-size: 12px;
  font-weight: 800;
}

.system-label.top {
  top: 54px;
}

.system-label.bottom {
  bottom: 54px;
}

.ticker {
  position: absolute;
  left: -4vw;
  right: -4vw;
  bottom: 0;
  z-index: 3;
  transform: rotate(-4deg);
  background: var(--navy-950);
  border-top: 1px solid rgba(243, 243, 224, 0.45);
  border-bottom: 1px solid rgba(243, 243, 224, 0.45);
  overflow: hidden;
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker 26s linear infinite;
}

.ticker span {
  display: inline-flex;
  align-items: center;
  min-height: 58px;
  padding: 0 28px;
  color: var(--cream);
  font-size: 13px;
  font-weight: 800;
}

.ticker span::after {
  content: "/";
  margin-left: 28px;
  color: var(--gold);
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.section-light {
  background: var(--cream);
}

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

.section-dark {
  color: var(--cream);
  background: var(--navy-950);
}

.section-kicker {
  max-width: 780px;
  margin-bottom: 44px;
}

.section-kicker p {
  margin-top: 18px;
  color: var(--gray-700);
  font-size: 18px;
}

.section-dark .section-kicker p {
  color: rgba(243, 243, 224, 0.76);
}

.services-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 0.74fr);
  gap: 70px;
  align-items: center;
}

.service-list {
  display: grid;
  border-top: 1px solid rgba(0, 33, 48, 0.26);
}

.service-row {
  display: grid;
  grid-template-columns: 74px 1fr 44px;
  gap: 20px;
  align-items: center;
  min-height: 92px;
  border-bottom: 1px solid rgba(0, 33, 48, 0.22);
  color: var(--navy-950);
  transition: background 180ms ease, transform 180ms ease;
}

.service-row:hover {
  background: rgba(255, 255, 255, 0.46);
  transform: translateX(6px);
}

.service-index {
  display: grid;
  place-items: center;
  height: 74px;
  color: var(--cream);
  background: var(--navy-950);
  font-weight: 800;
}

.service-row h3 {
  font-family: "Inter", Arial, sans-serif;
  font-size: 19px;
  line-height: 1.2;
}

.service-row p {
  margin-top: 6px;
  color: var(--gray-700);
  font-size: 14px;
  line-height: 1.35;
}

.row-arrow {
  justify-self: end;
  font-size: 28px;
}

.report-stack {
  position: relative;
  min-height: 540px;
  display: grid;
  align-items: center;
}

.report-stack::before {
  content: "";
  position: absolute;
  inset: 54px -34px 42px 110px;
  border: 1px solid rgba(0, 33, 48, 0.1);
  background: rgba(0, 33, 48, 0.08);
  transform: rotate(2deg);
}

.human-visual {
  position: relative;
  z-index: 2;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(0, 33, 48, 0.1);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.human-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(0, 33, 48, 0.04)),
    radial-gradient(circle at 18% 18%, rgba(243, 243, 224, 0.26), transparent 34%);
}

.human-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.human-visual-vision {
  width: min(530px, 100%);
  aspect-ratio: 1.08;
  margin-left: auto;
  transform: rotate(-2.5deg);
}

.human-visual-vision img {
  object-position: 58% center;
}

.human-visual-strategy {
  min-height: 540px;
  aspect-ratio: 1.08;
}

.human-visual-strategy img {
  object-position: 46% center;
}

.report-card {
  position: relative;
  z-index: 2;
  width: min(420px, 100%);
  margin-left: auto;
  padding: 34px;
  color: var(--cream);
  background: var(--navy-900);
  border: 1px solid rgba(243, 243, 224, 0.18);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transform: rotate(-4deg);
}

.report-card::before,
.report-card::after {
  content: "";
  position: absolute;
  inset: 18px -28px -22px 34px;
  z-index: -1;
  border-radius: var(--radius);
  border: 1px solid rgba(243, 243, 224, 0.1);
  background: rgba(20, 70, 102, 0.55);
}

.report-card::after {
  inset: 36px -54px -44px 68px;
  opacity: 0.7;
}

.report-card .mini-logo {
  width: 118px;
  height: auto;
  object-fit: contain;
  margin-bottom: 28px;
}

.diagnostic-card .mini-logo {
  width: 168px;
  height: auto;
  object-fit: contain;
  margin-bottom: 32px;
}

.chart-line {
  height: 112px;
  margin: 28px 0;
  border-left: 1px solid rgba(243, 243, 224, 0.18);
  border-bottom: 1px solid rgba(243, 243, 224, 0.18);
  background:
    linear-gradient(135deg, transparent 0 11%, rgba(217, 160, 102, 0.0) 11% 100%),
    repeating-linear-gradient(0deg, transparent 0 26px, rgba(243, 243, 224, 0.08) 27px),
    repeating-linear-gradient(90deg, transparent 0 42px, rgba(243, 243, 224, 0.08) 43px);
  clip-path: polygon(0 100%, 8% 78%, 16% 84%, 28% 58%, 38% 66%, 52% 36%, 62% 46%, 76% 18%, 88% 28%, 100% 8%, 100% 100%);
  background-color: var(--gold);
}

.report-grid {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 22px;
  align-items: center;
}

.donut {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: conic-gradient(var(--cream) 0 74%, rgba(243, 243, 224, 0.14) 74% 100%);
  position: relative;
}

.donut::after {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 50%;
  background: var(--navy-900);
}

.bar-list {
  display: grid;
  gap: 8px;
}

.bar-list span {
  display: block;
  height: 8px;
  border-radius: 20px;
  background: rgba(243, 243, 224, 0.32);
}

.bar-list span:nth-child(2) {
  width: 78%;
}

.bar-list span:nth-child(3) {
  width: 52%;
}

.process-band {
  padding: 76px 0;
  color: var(--cream);
  background:
    linear-gradient(120deg, rgba(0, 33, 48, 0.98), rgba(11, 50, 71, 0.96)),
    var(--navy-950);
  overflow: hidden;
}

.process-layout {
  display: grid;
  grid-template-columns: 0.76fr 1.24fr;
  gap: 70px;
  align-items: start;
}

.process-title h2 {
  color: var(--cream);
}

.process-title p {
  max-width: 340px;
  margin-top: 18px;
  color: rgba(243, 243, 224, 0.72);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.step {
  position: relative;
  padding-top: 58px;
}

.step::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 48px;
  right: -28px;
  height: 1px;
  border-top: 1px dashed rgba(243, 243, 224, 0.35);
}

.step:last-child::before {
  display: none;
}

.step-number {
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(243, 243, 224, 0.42);
  border-radius: 50%;
  color: var(--cream);
  font-weight: 800;
}

.step h3 {
  font-family: "Inter", Arial, sans-serif;
  font-size: 18px;
}

.step p {
  margin-top: 10px;
  color: rgba(243, 243, 224, 0.72);
  font-size: 14px;
  line-height: 1.42;
}

.split-statement {
  background: var(--white);
}

.statement-media {
  position: relative;
}

.statement-media > img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.brand-showcase {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(0, 33, 48, 0.12);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.brand-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(243, 243, 224, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(243, 243, 224, 0.08) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity: 0.6;
}

.brand-showcase img {
  position: relative;
  z-index: 2;
  object-fit: contain;
}

.brand-showcase-home {
  background:
    linear-gradient(135deg, rgba(0, 33, 48, 0.98), rgba(20, 70, 102, 0.96)),
    var(--navy-950);
}

.brand-showcase-home .showcase-logo-horizontal {
  width: min(72%, 470px);
}

.showcase-lines {
  position: absolute;
  top: 34px;
  left: 34px;
  z-index: 1;
  display: grid;
  gap: 12px;
  width: min(42%, 250px);
}

.showcase-lines span {
  display: block;
  height: 1px;
  background: rgba(243, 243, 224, 0.36);
}

.showcase-lines span:nth-child(2) {
  width: 72%;
}

.showcase-lines span:nth-child(3) {
  width: 46%;
}

.showcase-metrics {
  position: absolute;
  right: 34px;
  bottom: 34px;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  width: min(48%, 280px);
}

.showcase-metrics span {
  display: block;
  height: 68px;
  border: 1px solid rgba(243, 243, 224, 0.18);
  background: rgba(243, 243, 224, 0.06);
}

.showcase-metrics span:nth-child(2) {
  height: 92px;
  align-self: end;
}

.showcase-metrics span:nth-child(3) {
  height: 52px;
  align-self: end;
}

.showcase-metrics span:nth-child(4) {
  height: 112px;
  align-self: end;
  background: rgba(217, 160, 102, 0.22);
}

.brand-showcase-materials {
  min-height: 560px;
  background: var(--cream);
}

.brand-showcase-materials::before,
.brand-showcase-symbol::before {
  background-image:
    linear-gradient(rgba(0, 33, 48, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 33, 48, 0.07) 1px, transparent 1px);
}

.material-sheet {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  border: 1px solid rgba(0, 33, 48, 0.12);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 22px 64px rgba(0, 33, 48, 0.13);
}

.material-sheet-primary {
  top: 16%;
  left: 9%;
  width: 74%;
  height: 45%;
  transform: rotate(-2deg);
}

.material-sheet-primary .showcase-logo-dark {
  width: 72%;
}

.material-sheet-symbol {
  right: 11%;
  bottom: 12%;
  width: 32%;
  aspect-ratio: 1;
  transform: rotate(3deg);
}

.material-sheet-symbol img {
  width: 68%;
}

.material-line {
  position: absolute;
  left: 11%;
  bottom: 20%;
  z-index: 1;
  width: 46%;
  height: 12px;
  background: var(--navy-950);
}

.brand-showcase-symbol {
  min-height: 500px;
  background: var(--white);
}

.showcase-symbol-large {
  width: min(62%, 340px);
}

.symbol-axis {
  position: absolute;
  z-index: 1;
  width: 64%;
  height: 1px;
  background: rgba(0, 33, 48, 0.18);
}

.symbol-axis-one {
  transform: rotate(-18deg);
}

.symbol-axis-two {
  transform: rotate(24deg);
}

.statement-copy h2 {
  max-width: 560px;
  color: var(--navy-950);
}

.statement-copy p {
  max-width: 510px;
  margin-top: 22px;
  color: var(--gray-700);
}

.ai-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(0, 33, 48, 0.18);
  border: 1px solid rgba(0, 33, 48, 0.18);
}

.ai-item {
  min-height: 240px;
  padding: 28px;
  background: var(--cream);
}

.ai-item strong {
  display: block;
  margin-bottom: 16px;
  color: var(--blue-soft);
  font-size: 28px;
  font-weight: 800;
}

.ai-item h3 {
  font-family: "Inter", Arial, sans-serif;
  font-size: 19px;
  line-height: 1.22;
}

.ai-item p {
  margin-top: 12px;
  color: var(--gray-700);
  font-size: 14px;
}

.cta-form {
  overflow: hidden;
  background: var(--cream);
}

.cta-form-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(480px, 1fr);
  min-height: 560px;
}

.cta-panel {
  padding: 72px 64px;
  color: var(--cream);
  background:
    linear-gradient(120deg, rgba(0, 33, 48, 0.96), rgba(11, 50, 71, 0.9)),
    var(--navy-950);
}

.cta-panel h2 {
  color: var(--cream);
}

.cta-panel p {
  max-width: 430px;
  margin-top: 20px;
  color: rgba(243, 243, 224, 0.78);
}

.mini-accent {
  display: block;
  width: 36px;
  height: 18px;
  margin-top: 56px;
  border-left: 4px solid var(--gold);
  border-bottom: 4px solid var(--gold);
}

.form-shell {
  padding: 70px 64px;
  background: var(--cream);
}

.diagnostic-form {
  display: grid;
  gap: 18px;
}

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

.field {
  display: grid;
  gap: 8px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  color: var(--navy-950);
  font-size: 13px;
  font-weight: 800;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid rgba(0, 33, 48, 0.42);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.36);
  color: var(--navy-950);
  outline: none;
  transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.field input,
.field select {
  height: 52px;
  padding: 0 14px;
}

.field textarea {
  min-height: 122px;
  resize: vertical;
  padding: 14px;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--navy-950);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(20, 70, 102, 0.12);
}

.checkbox-row {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--navy-950);
  font-size: 14px;
  font-weight: 700;
}

.checkbox-row input {
  width: 19px;
  height: 19px;
  accent-color: var(--navy-950);
}

.form-status {
  min-height: 24px;
  color: var(--navy-800);
  font-size: 14px;
  font-weight: 700;
}

.honeypot {
  position: fixed;
  inset: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  opacity: 0;
}

.page-hero {
  padding-top: 152px;
  padding-bottom: 94px;
  color: var(--cream);
  background:
    linear-gradient(120deg, rgba(0, 33, 48, 0.98), rgba(6, 48, 68, 0.94)),
    var(--navy-950);
}

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

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

.about-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 54px;
  background: rgba(243, 243, 224, 0.18);
  border: 1px solid rgba(243, 243, 224, 0.18);
}

.about-proof div {
  padding: 28px;
  background: rgba(243, 243, 224, 0.04);
}

.about-proof strong {
  display: block;
  color: var(--cream);
  font-size: 20px;
  font-weight: 800;
}

.about-proof span {
  display: block;
  margin-top: 8px;
  color: rgba(243, 243, 224, 0.72);
  font-size: 14px;
}

.principles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(0, 33, 48, 0.18);
  border: 1px solid rgba(0, 33, 48, 0.18);
}

.principle {
  padding: 30px;
  background: var(--cream);
}

.principle span {
  display: block;
  margin-bottom: 30px;
  color: var(--blue-soft);
  font-weight: 800;
}

.principle h3 {
  font-family: "Inter", Arial, sans-serif;
  font-size: 20px;
}

.principle p {
  margin-top: 14px;
  color: var(--gray-700);
  font-size: 14px;
}

.brand-story {
  background: var(--white);
}

.brand-story .statement-media > img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(243, 243, 224, 0.18);
  border: 1px solid rgba(243, 243, 224, 0.18);
}

.contact-card {
  padding: 36px;
  background: rgba(243, 243, 224, 0.05);
}

.contact-card h3 {
  color: var(--cream);
  font-family: "Inter", Arial, sans-serif;
  font-size: 20px;
}

.contact-card p {
  margin-top: 12px;
  color: rgba(243, 243, 224, 0.76);
}

.contact-card .btn {
  margin-top: 24px;
}

.sorum-hero {
  padding: 136px 0 36px;
  color: var(--cream);
  background:
    linear-gradient(120deg, rgba(0, 33, 48, 0.98), rgba(6, 48, 68, 0.94)),
    var(--navy-950);
  overflow: hidden;
}

.sorum-hero::before {
  content: "";
  position: absolute;
  inset: 84px 0 0;
  background-image:
    linear-gradient(rgba(243, 243, 224, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(243, 243, 224, 0.05) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.78), transparent 72%);
  pointer-events: none;
}

.sorum-hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(440px, 1fr);
  gap: 58px;
  align-items: center;
}

.sorum-hero h1 {
  color: var(--cream);
  font-size: clamp(44px, 4.6vw, 58px);
  line-height: 0.98;
}

.sorum-hero .lead {
  max-width: 660px;
  color: rgba(243, 243, 224, 0.84);
}

.sorum-hero-copy > p:not(.lead) {
  max-width: 620px;
  margin-top: 16px;
  color: rgba(243, 243, 224, 0.7);
  font-size: 17px;
}

.sorum-proof-line {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  max-width: 620px;
  margin-top: 24px;
  border: 1px solid rgba(243, 243, 224, 0.18);
  background: rgba(243, 243, 224, 0.14);
}

.sorum-proof-line span {
  padding: 14px 16px;
  color: rgba(243, 243, 224, 0.82);
  background: rgba(0, 33, 48, 0.42);
  font-size: 13px;
  font-weight: 800;
}

.sorum-report-frame {
  position: relative;
  padding: 22px;
  color: var(--cream);
  background:
    linear-gradient(145deg, rgba(20, 70, 102, 0.92), rgba(0, 33, 48, 0.98)),
    var(--navy-950);
  border: 1px solid rgba(243, 243, 224, 0.2);
  border-radius: var(--radius);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.3);
}

.sorum-report-frame::after {
  content: "";
  position: absolute;
  inset: 18px -18px -18px 28px;
  z-index: -1;
  border: 1px solid rgba(243, 243, 224, 0.12);
  border-radius: var(--radius);
  background: rgba(110, 140, 160, 0.18);
}

.sorum-window-bar {
  display: flex;
  gap: 7px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(243, 243, 224, 0.14);
}

.sorum-window-bar span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(243, 243, 224, 0.38);
}

.sorum-report-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 0;
}

.sorum-report-head strong {
  display: block;
  color: var(--cream);
  font-size: 26px;
  font-weight: 800;
}

.sorum-report-head span {
  display: block;
  margin-top: 4px;
  color: rgba(243, 243, 224, 0.66);
  font-size: 14px;
}

.sorum-report-head em {
  padding: 8px 10px;
  color: var(--navy-950);
  background: var(--gold);
  border-radius: var(--radius);
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
  white-space: nowrap;
}

.sorum-report-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 14px;
}

.sorum-channel-list,
.sorum-alert-panel,
.sorum-ai-panel {
  border: 1px solid rgba(243, 243, 224, 0.14);
  border-radius: var(--radius);
  background: rgba(0, 33, 48, 0.32);
}

.sorum-channel-list {
  display: grid;
  gap: 1px;
  overflow: hidden;
}

.sorum-channel-list span {
  padding: 11px 14px;
  border-bottom: 1px solid rgba(243, 243, 224, 0.1);
  color: rgba(243, 243, 224, 0.78);
  font-size: 13px;
  font-weight: 800;
}

.sorum-channel-list span:last-child {
  border-bottom: 0;
}

.sorum-chart {
  min-height: 152px;
  display: flex;
  align-items: end;
  gap: 13px;
  padding: 20px;
  border: 1px solid rgba(243, 243, 224, 0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(rgba(243, 243, 224, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(243, 243, 224, 0.06) 1px, transparent 1px),
    rgba(0, 33, 48, 0.22);
  background-size: 44px 44px;
}

.sorum-chart i {
  flex: 1;
  display: block;
  min-width: 22px;
  border-radius: 6px 6px 0 0;
  background: linear-gradient(180deg, var(--gold), rgba(217, 160, 102, 0.54));
}

.sorum-chart i:nth-child(1) { height: 42%; }
.sorum-chart i:nth-child(2) { height: 58%; }
.sorum-chart i:nth-child(3) { height: 48%; }
.sorum-chart i:nth-child(4) { height: 74%; }
.sorum-chart i:nth-child(5) { height: 64%; }

.sorum-alert-panel,
.sorum-ai-panel {
  padding: 16px;
}

.sorum-alert-panel strong,
.sorum-ai-panel strong {
  display: block;
  color: var(--cream);
  font-size: 14px;
}

.sorum-alert-panel p,
.sorum-ai-panel p {
  margin-top: 8px;
  color: rgba(243, 243, 224, 0.68);
  font-size: 13px;
}

.sorum-ai-panel {
  border-color: rgba(217, 160, 102, 0.38);
}

.sorum-ops-panel {
  display: grid;
  gap: 1px;
  overflow: hidden;
  align-self: center;
  border: 1px solid rgba(0, 33, 48, 0.14);
  border-radius: var(--radius);
  background: rgba(0, 33, 48, 0.14);
}

.sorum-ops-panel div {
  padding: 28px;
  background: var(--cream);
}

.sorum-ops-panel strong {
  display: block;
  color: var(--navy-950);
  font-size: 20px;
}

.sorum-ops-panel span {
  display: block;
  margin-top: 8px;
  color: var(--gray-700);
}

.sorum-capabilities {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(0, 33, 48, 0.16);
  border: 1px solid rgba(0, 33, 48, 0.16);
}

.sorum-capability {
  padding: 30px;
  background: var(--cream);
}

.sorum-capability span {
  display: block;
  margin-bottom: 30px;
  color: var(--blue-soft);
  font-weight: 800;
}

.sorum-capability h3 {
  font-family: "Inter", Arial, sans-serif;
  font-size: 20px;
}

.sorum-capability p {
  margin-top: 14px;
  color: var(--gray-700);
  font-size: 14px;
}

.sorum-flow {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 56px;
  align-items: start;
}

.sorum-flow-list {
  display: grid;
  border-top: 1px solid rgba(243, 243, 224, 0.18);
}

.sorum-flow-row {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(243, 243, 224, 0.18);
}

.sorum-flow-row span {
  color: var(--gold);
  font-weight: 900;
}

.sorum-flow-row p {
  color: rgba(243, 243, 224, 0.76);
}

.sorum-integration-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 0.86fr);
  gap: 58px;
  align-items: center;
}

.sorum-channel-board {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(0, 33, 48, 0.14);
  border-radius: var(--radius);
  background: rgba(0, 33, 48, 0.14);
}

.sorum-channel-board > div {
  padding: 30px;
  background: var(--white);
}

.sorum-channel-board strong {
  display: block;
  margin-bottom: 18px;
  color: var(--navy-950);
  font-size: 20px;
}

.sorum-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.sorum-chip-list span {
  padding: 9px 11px;
  color: var(--navy-950);
  background: rgba(243, 243, 224, 0.85);
  border: 1px solid rgba(0, 33, 48, 0.12);
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 800;
}

.sorum-channel-board ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--gray-700);
}

.diagnostic-hero {
  padding-top: 156px;
  background: var(--cream);
  color: var(--navy-950);
}

.diagnostic-hero .nav-placeholder {
  height: 1px;
}

.diagnostic-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 0.86fr);
  gap: 58px;
  align-items: center;
}

.diagnostic-hero h1 {
  color: var(--navy-950);
}

.diagnostic-hero .lead {
  color: var(--gray-700);
}

.diagnostic-card {
  padding: 34px;
  background: var(--navy-950);
  color: var(--cream);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.diagnostic-card p {
  margin-top: 12px;
  color: rgba(243, 243, 224, 0.74);
}

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

.matrix-table {
  overflow: hidden;
  border: 1px solid rgba(0, 33, 48, 0.18);
  border-radius: var(--radius);
  background: var(--white);
}

.matrix-head,
.matrix-row {
  display: grid;
  grid-template-columns: minmax(108px, 0.78fr) minmax(122px, 0.92fr) minmax(176px, 1.24fr) minmax(126px, 0.86fr);
  align-items: center;
}

.matrix-head {
  min-height: 62px;
  color: var(--gray-700);
  background: rgba(243, 243, 224, 0.68);
  font-size: 12px;
  font-weight: 800;
}

.matrix-head span,
.matrix-row span {
  padding: 14px 16px;
}

.matrix-row {
  width: 100%;
  min-height: 76px;
  border: 0;
  border-top: 1px solid rgba(0, 33, 48, 0.12);
  color: var(--navy-950);
  background: var(--white);
  font: inherit;
  font-size: 14px;
  line-height: 1.34;
  text-align: left;
  transition: background 160ms ease, color 160ms ease;
}

.matrix-row span:first-child,
.matrix-row span:last-child {
  font-weight: 800;
}

.matrix-row span:nth-child(3) {
  color: var(--gray-700);
  font-size: 13px;
}

.matrix-row:hover,
.matrix-row.is-active {
  color: var(--cream);
  background: var(--navy-950);
}

.matrix-row:hover span:nth-child(3),
.matrix-row.is-active span:nth-child(3) {
  color: rgba(243, 243, 224, 0.72);
}

.matrix-row:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: -2px;
}

.dots {
  display: flex;
  gap: 6px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(0, 33, 48, 0.18);
}

.dot.is-on {
  background: currentColor;
}

.matrix-detail {
  position: sticky;
  top: 112px;
  padding: 38px;
  color: var(--cream);
  background:
    linear-gradient(120deg, rgba(0, 33, 48, 0.98), rgba(20, 70, 102, 0.92)),
    var(--navy-950);
  border-radius: var(--radius);
}

.matrix-detail small {
  color: var(--gold);
  font-weight: 800;
}

.matrix-detail h3 {
  margin-top: 16px;
  color: var(--cream);
  font-size: 28px;
}

.matrix-detail p {
  margin-top: 16px;
  color: rgba(243, 243, 224, 0.76);
}

.deliverables {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(0, 33, 48, 0.18);
  border: 1px solid rgba(0, 33, 48, 0.18);
}

.deliverable {
  min-height: 230px;
  padding: 30px;
  background: var(--white);
}

.deliverable strong {
  color: var(--blue-soft);
  font-size: 28px;
}

.deliverable h3 {
  margin-top: 22px;
  font-family: "Inter", Arial, sans-serif;
  font-size: 19px;
}

.deliverable p {
  margin-top: 12px;
  color: var(--gray-700);
  font-size: 14px;
}

.faq {
  display: grid;
  gap: 12px;
}

.faq details {
  border: 1px solid rgba(243, 243, 224, 0.18);
  border-radius: var(--radius);
  background: rgba(243, 243, 224, 0.04);
}

.faq summary {
  cursor: pointer;
  padding: 22px 24px;
  color: var(--cream);
  font-weight: 800;
}

.faq p {
  padding: 0 24px 24px;
  color: rgba(243, 243, 224, 0.74);
}

.site-footer {
  color: var(--cream);
  background: var(--navy-950);
  border-top: 1px solid rgba(243, 243, 224, 0.12);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 42px;
  align-items: center;
  padding: 44px 0;
}

.footer-brand {
  width: 130px;
  height: auto;
  object-fit: contain;
  margin-bottom: 18px;
}

.footer-grid p {
  max-width: 620px;
  color: rgba(243, 243, 224, 0.72);
  font-size: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 20px;
  color: rgba(243, 243, 224, 0.78);
  font-size: 14px;
  font-weight: 700;
}

.footer-links a:hover {
  color: var(--cream);
}

.legal-body {
  background: var(--cream);
}

.legal-topbar {
  color: var(--cream);
  background: var(--navy-950);
  border-bottom: 1px solid rgba(243, 243, 224, 0.12);
}

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

.legal-brand {
  font-family: "Montserrat", "Inter", Arial, sans-serif;
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
}

.legal-nav nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 20px;
  color: rgba(243, 243, 224, 0.76);
  font-size: 14px;
  font-weight: 800;
}

.legal-nav a:hover {
  color: var(--white);
}

.legal-page {
  padding: 82px 0 92px;
}

.legal-document {
  max-width: 920px;
  margin: 0 auto;
}

.legal-document h1 {
  max-width: 760px;
  margin: 0 0 18px;
  color: var(--navy-950);
  font-family: "Montserrat", "Inter", Arial, sans-serif;
  font-size: clamp(40px, 6vw, 70px);
  line-height: 0.95;
}

.legal-document .updated {
  margin: 0 0 42px;
  color: var(--gray-700);
  font-weight: 700;
}

.legal-section {
  padding: 28px 0;
  border-top: 1px solid rgba(0, 33, 48, 0.16);
}

.legal-section h2 {
  margin: 0 0 12px;
  color: var(--navy-950);
  font-family: "Montserrat", "Inter", Arial, sans-serif;
  font-size: clamp(22px, 3vw, 32px);
  line-height: 1.08;
}

.legal-section p,
.legal-section li {
  color: var(--gray-700);
  font-size: 16px;
  line-height: 1.72;
}

.legal-section ul {
  margin: 12px 0 0;
  padding-left: 22px;
}

.legal-note {
  margin-top: 30px;
  padding: 18px 20px;
  border: 1px solid rgba(0, 33, 48, 0.16);
  border-radius: var(--radius);
  color: var(--gray-700);
  background: rgba(255, 255, 255, 0.46);
}

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

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

.floating-whatsapp {
  position: fixed;
  right: 24px;
  bottom: calc(24px + env(safe-area-inset-bottom, 0px));
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--navy-950);
  filter: drop-shadow(0 14px 28px rgba(0, 33, 48, 0.18));
  transition: transform 180ms ease, filter 180ms ease;
}

.floating-whatsapp:hover {
  transform: translateY(-2px);
  filter: drop-shadow(0 18px 34px rgba(0, 33, 48, 0.22));
}

.floating-whatsapp-icon {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  color: #28b84a;
  background: #28b84a;
  border: 3px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 6px 18px rgba(0, 33, 48, 0.2);
}

.floating-whatsapp-icon svg {
  width: 32px;
  height: 32px;
}

.floating-whatsapp-icon svg path:first-child {
  fill: var(--white);
}

.floating-whatsapp-icon svg path:last-child {
  fill: #28b84a;
}

.floating-whatsapp-label {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 7px 12px;
  margin-left: -8px;
  color: var(--navy-950);
  background: var(--white);
  border: 1px solid rgba(0, 33, 48, 0.12);
  border-radius: 7px;
  box-shadow: 0 8px 20px rgba(0, 33, 48, 0.16);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.custom-cursor {
  --cursor-color: var(--gold);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 28px;
  height: 28px;
  border: 2px solid var(--cursor-color);
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(0, 33, 48, 0.05);
  pointer-events: none;
  opacity: 0;
  transform: translate3d(-50%, -50%, 0) scale(0.82);
  transition: opacity 140ms ease, transform 140ms ease, background 140ms ease, border-color 140ms ease;
}

.custom-cursor.is-active {
  opacity: 1;
  transform: translate3d(-50%, -50%, 0) scale(1);
}

.custom-cursor.is-light {
  --cursor-color: var(--navy-950);
}

.custom-cursor.is-pressed {
  background: rgba(217, 160, 102, 0.18);
  transform: translate3d(-50%, -50%, 0) scale(1.35);
}

.custom-cursor.is-light.is-pressed {
  background: rgba(0, 33, 48, 0.12);
}

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

@media (max-width: 1100px) {
  h1 {
    font-size: 54px;
  }

  h2 {
    font-size: 38px;
  }

  .hero-layout,
  .sorum-hero-layout,
  .diagnostic-hero-layout,
  .grid-2,
  .grid-2.is-reversed,
  .services-layout,
  .process-layout,
  .sorum-flow,
  .sorum-integration-layout,
  .matrix,
  .cta-form-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .growth-system {
    max-width: 720px;
    margin: 30px auto 0;
  }

  .steps,
  .ai-grid,
  .principles,
  .sorum-capabilities,
  .deliverables {
    grid-template-columns: repeat(2, 1fr);
  }

  .report-stack::before {
    inset: 70px 0 30px 22%;
  }

  .matrix-detail {
    position: static;
  }
}

@media (max-width: 820px) {
  .nav-shell {
    width: min(100% - 32px, var(--max));
    min-height: 72px;
  }

  .brand {
    width: 112px;
    min-width: 112px;
  }

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

  .site-nav {
    position: fixed;
    top: 72px;
    left: 16px;
    right: 16px;
    display: grid;
    gap: 0;
    padding: 14px;
    background: rgba(0, 33, 48, 0.98);
    border: 1px solid rgba(243, 243, 224, 0.16);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transform: translateY(-16px);
    opacity: 0;
    pointer-events: none;
  }

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

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

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

  .nav-actions .btn {
    display: none;
  }

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

  .section {
    padding: 76px 0;
  }

  .sorum-hero {
    padding-top: 118px;
    padding-bottom: 84px;
  }

  .sorum-hero-copy > p:not(.lead) {
    font-size: 16px;
  }

  .sorum-proof-line {
    grid-template-columns: 1fr;
  }

  .sorum-report-frame {
    padding: 18px;
  }

  .sorum-report-frame::after {
    display: none;
  }

  .sorum-report-grid {
    grid-template-columns: 1fr;
  }

  .sorum-flow-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .diagnostic-hero {
    padding-top: 118px;
  }

  .hero,
  .page-hero {
    padding-top: 118px;
  }

  h1 {
    font-size: 42px;
    line-height: 1.08;
  }

  h2 {
    font-size: 32px;
    line-height: 1.08;
  }

  .lead,
  .section-kicker p {
    font-size: 16px;
  }

  .hero-layout {
    gap: 38px;
  }

  .growth-system {
    grid-template-areas:
      "incoming"
      "core"
      "outgoing";
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 28px;
  }

  .system-column,
  .system-column.left {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-items: stretch;
  }

  .system-column.left {
    grid-area: incoming;
  }

  .system-column.right {
    grid-area: outgoing;
  }

  .system-node {
    width: 100%;
  }

  .system-label {
    display: none;
  }

  .system-node::after {
    display: block;
    left: 50%;
    width: 1px;
    height: 28px;
    transform: translateX(-50%);
  }

  .system-column.left .system-node::after {
    top: auto;
    right: auto;
    bottom: -28px;
  }

  .system-column.right .system-node::after {
    top: -28px;
    left: 50%;
  }

  .system-core {
    grid-area: core;
    width: 148px;
    height: 148px;
    margin: 8px auto;
  }

  .brand-showcase {
    min-height: 390px;
  }

  .brand-showcase-materials {
    min-height: 430px;
  }

  .brand-showcase-symbol {
    min-height: 380px;
  }

  .brand-showcase-home .showcase-logo-horizontal {
    width: 78%;
  }

  .material-sheet-primary {
    top: 14%;
    left: 7%;
    width: 82%;
    height: 42%;
  }

  .material-sheet-symbol {
    right: 9%;
    bottom: 12%;
    width: 36%;
  }

  .ticker {
    bottom: 0;
    left: 0;
    right: 0;
  }

  .ticker-track {
    width: 100%;
    animation: none;
    justify-content: center;
    transform: none;
  }

  .ticker span {
    min-height: 46px;
    padding: 0 14px;
    font-size: 11px;
  }

  .ticker span:nth-child(n+4) {
    display: none;
  }

  .service-row {
    grid-template-columns: 54px 1fr 28px;
    gap: 14px;
    min-height: 86px;
  }

  .service-index {
    height: 54px;
  }

  .report-card {
    margin: 0 auto;
    transform: none;
  }

  .human-visual-vision {
    margin: 0 auto;
    transform: none;
  }

  .human-visual-strategy {
    min-height: 420px;
  }

  .steps,
  .ai-grid,
  .principles,
  .deliverables,
  .about-proof,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .step::before {
    display: none;
  }

  .form-shell,
  .cta-panel {
    padding: 44px 24px;
  }

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

  .matrix-head,
  .matrix-row {
    grid-template-columns: 1fr;
  }

  .matrix-head {
    display: none;
  }

  .matrix-row span {
    padding: 8px 14px;
  }

  .matrix-row span:first-child {
    padding-top: 16px;
    font-weight: 800;
  }

  .matrix-row span:last-child {
    padding-bottom: 16px;
  }

  .matrix-table .matrix-detail {
    border-top: 2px solid var(--gold);
    border-radius: 0;
    padding: 28px 20px 30px;
  }

  .matrix-table .matrix-detail h3 {
    font-size: 26px;
    line-height: 1.04;
  }

  .matrix-table .matrix-detail p {
    font-size: 16px;
  }

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

  .footer-links {
    justify-content: flex-start;
  }

  .legal-nav,
  .legal-nav nav {
    justify-content: flex-start;
  }

  .legal-nav {
    display: grid;
    padding: 18px 0;
  }
}

@media (max-width: 520px) {
  .hero-actions {
    display: grid;
  }

  .btn {
    width: 100%;
  }

  .hero {
    padding-bottom: 94px;
  }

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

  .sorum-capabilities {
    grid-template-columns: 1fr;
  }

  .sorum-report-head {
    display: grid;
  }

  .report-card {
    padding: 28px;
  }

  .human-visual-vision,
  .human-visual-strategy {
    min-height: 320px;
    aspect-ratio: 0.92;
  }

  .floating-whatsapp {
    right: 16px;
    bottom: calc(16px + env(safe-area-inset-bottom, 0px));
    gap: 6px;
  }

  .floating-whatsapp-icon {
    width: 46px;
    height: 46px;
  }

  .floating-whatsapp-icon svg {
    width: 29px;
    height: 29px;
  }

  .floating-whatsapp-label {
    min-height: 26px;
    padding: 7px 10px;
    font-size: 11px;
  }

  .brand-showcase {
    min-height: 310px;
  }

  .showcase-lines {
    top: 22px;
    left: 22px;
  }

  .showcase-metrics {
    right: 22px;
    bottom: 22px;
    width: 62%;
    gap: 7px;
  }

  .showcase-metrics span {
    height: 46px;
  }

  .showcase-metrics span:nth-child(2) {
    height: 62px;
  }

  .showcase-metrics span:nth-child(3) {
    height: 38px;
  }

  .showcase-metrics span:nth-child(4) {
    height: 76px;
  }

  .brand-showcase-materials {
    min-height: 340px;
  }

  .brand-showcase-symbol {
    min-height: 320px;
  }

  .material-sheet-primary .showcase-logo-dark {
    width: 78%;
  }

  .material-line {
    height: 8px;
  }
}

@media (hover: none), (pointer: coarse) {
  .custom-cursor {
    display: none;
  }
}
