/* Haak GmbH — ERP & AI Advisory */
@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("../fonts/manrope-latin-variable.woff2") format("woff2");
}

@font-face {
  font-family: "Sora";
  font-style: normal;
  font-weight: 600 700;
  font-display: swap;
  src: url("../fonts/sora-latin-variable.woff2") format("woff2");
}

:root {
  color-scheme: light;
  --paper: #f5f8fb;
  --paper-strong: #ffffff;
  --ink: #172331;
  --ink-soft: #566575;
  --line: #d8e3ec;
  --line-dark: #38546b;
  --acid: #dff5ff;
  --acid-dark: #bce9fa;
  --cobalt: #1f74cf;
  --coral: #29b8dc;
  --aqua: #68d3ee;
  --dark: #08243a;
  --dark-raised: #0d304a;
  --light-on-dark: #f7fbff;
  --muted-on-dark: #bad0df;
  --font-display: "Sora", "Century Gothic", "Trebuchet MS", sans-serif;
  --font-sans: "Manrope", "Segoe UI", sans-serif;
  --container: 1240px;
  --gutter: clamp(1.15rem, 4vw, 4rem);
  --header-height: 80px;
  --section-space: clamp(5rem, 9vw, 8rem);
  --ease: cubic-bezier(.2, .8, .2, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  background: var(--paper);
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 1rem);
}

body {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.is-lock {
  overflow: hidden;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
}

h1,
h2,
h3,
p,
dl,
dd,
blockquote,
figure {
  margin: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

img,
svg {
  display: block;
  max-width: 100%;
}

button,
input,
textarea,
select {
  color: inherit;
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
  text-decoration: none;
}

::selection {
  background: var(--acid);
  color: var(--ink);
}

:focus-visible {
  outline: 3px solid var(--cobalt);
  outline-offset: 4px;
}

.container {
  width: min(100%, var(--container));
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.skip-link {
  position: fixed;
  top: .75rem;
  left: .75rem;
  z-index: 999;
  padding: .65rem 1rem;
  background: var(--acid);
  color: var(--ink);
  font-weight: 800;
  transform: translateY(-160%);
  transition: transform .2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

/* Shared type and controls */
.eyebrow,
.section-index,
.mini-label,
.engine-label,
.footer__label {
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: .7rem;
}

.eyebrow::before {
  width: 1.8rem;
  height: 2px;
  background: var(--cobalt);
  content: "";
}

.section-index {
  margin-bottom: 1.4rem;
  color: var(--cobalt);
}

.section-title,
.display-title {
  max-width: 15ch;
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.08;
}

.section-title {
  font-size: clamp(2.5rem, 4.6vw, 4.6rem);
}

.section-title span,
.display-title span {
  color: var(--cobalt);
  font-style: normal;
}

.display-title {
  font-size: clamp(2.7rem, 5vw, 5.2rem);
}

.section-intro {
  max-width: 42rem;
  color: var(--ink-soft);
  font-size: clamp(1.08rem, 1.6vw, 1.3rem);
  line-height: 1.55;
}

.section-heading {
  margin-bottom: clamp(3rem, 6vw, 5.5rem);
}

.section-heading--split {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(19rem, .55fr);
  gap: clamp(2rem, 7vw, 8rem);
  align-items: end;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  padding: .8rem 1.25rem;
  border: 2px solid transparent;
  border-radius: 10px;
  font-size: .94rem;
  font-weight: 700;
  line-height: 1.2;
  transition: background-color .22s ease, border-color .22s ease, color .22s ease, transform .22s var(--ease);
}

.button span {
  font-size: 1.2em;
  transition: transform .22s var(--ease);
}

.button:hover {
  transform: translateY(-2px);
}

.button:hover span {
  transform: translateX(4px);
}

.button--primary {
  background: var(--cobalt);
  border-color: var(--cobalt);
  color: var(--paper-strong);
}

.button--primary:hover {
  background: var(--dark);
  border-color: var(--dark);
}

.button--light {
  background: var(--light-on-dark);
  border-color: var(--light-on-dark);
  color: var(--dark);
}

.button--light:hover {
  background: var(--acid);
  border-color: var(--acid);
}

.button--text {
  padding-inline: 1.1rem;
  border-color: var(--line);
  background: var(--paper-strong);
  color: var(--cobalt);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  margin-top: 1rem;
  padding-bottom: .2rem;
  border-bottom: 2px solid currentColor;
  font-size: .92rem;
  font-weight: 800;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-height);
  border-bottom: 1px solid rgba(216, 227, 236, .7);
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(14px);
  transition: border-color .2s ease, box-shadow .2s ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 10px 35px rgba(19, 52, 78, .08);
}

.site-header__inner {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.site-logo__brand {
  width: 160px;
  height: auto;
}

.header-support {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
}

.header-support__image {
  display: block;
  width: 124px;
  height: auto;
}

.nav {
  display: flex;
  align-items: center;
}

.nav__list,
.nav__panel ul {
  list-style: none;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: clamp(1.2rem, 2.4vw, 2.7rem);
}

.nav__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding-block: .5rem;
  font-size: .9rem;
  font-weight: 600;
}

.nav__link:not(.nav__link--cta)::after {
  position: absolute;
  right: 0;
  bottom: .2rem;
  left: 0;
  height: 1px;
  background: var(--cobalt);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .22s var(--ease);
}

.nav__link:not(.nav__link--cta):hover::after,
.nav__link:not(.nav__link--cta):focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav__link--cta {
  min-height: 46px;
  padding: .65rem 1.15rem;
  border-radius: 10px;
  background: var(--cobalt);
  color: var(--paper-strong);
}

.nav__link--cta:hover {
  background: var(--dark);
}

.nav__toggle,
.nav__panel {
  display: none;
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--paper-strong);
}

.hero__grid-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .7;
  background: linear-gradient(110deg, transparent 0 58%, #edf8fd 58% 100%);
}

.hero__layout {
  position: relative;
  display: grid;
  min-height: max(560px, calc(100svh - 205px));
  grid-template-columns: minmax(0, 1fr) minmax(390px, .9fr);
  gap: clamp(2.5rem, 6vw, 6.5rem);
  align-items: center;
  padding-block: clamp(2.7rem, 6vh, 5rem);
}

.hero__copy {
  position: relative;
  z-index: 1;
}

.hero__visual {
  position: relative;
  z-index: 2;
  display: grid;
  min-width: 0;
  gap: clamp(.75rem, 1.5vw, 1.25rem);
  justify-items: end;
}

.hero-location {
  position: relative;
  z-index: 5;
  display: block;
  width: 120px;
  height: auto;
  transform-origin: top right;
  transition: box-shadow .25s var(--ease), transform .25s var(--ease);
  will-change: transform;
}

@media (hover: hover) and (pointer: fine) {
  .hero-location:hover {
    z-index: 6;
    background: #fff;
    box-shadow: 0 24px 54px rgba(5, 37, 55, .3);
    cursor: zoom-in;
    transform: scale(2);
  }
}

.hero__title {
  max-width: 10.8ch;
  margin-top: clamp(1.4rem, 2.7vh, 2.2rem);
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 6vw, 5.8rem);
  font-weight: 700;
  line-height: 1.02;
}

.hero__title span {
  display: block;
  margin-top: .08em;
  color: var(--cobalt);
  font-family: var(--font-display);
  font-size: .78em;
  font-weight: 700;
  line-height: 1.05;
}

.hero__included {
  width: fit-content;
  max-width: 44rem;
  margin-top: clamp(1.2rem, 2.4vh, 1.8rem);
  padding: .65rem .85rem;
  border-left: 3px solid var(--cobalt);
  border-radius: 0 8px 8px 0;
  background: var(--acid);
  color: #174c78;
  font-size: clamp(.94rem, 1.3vw, 1.08rem);
  font-weight: 700;
  line-height: 1.35;
}

.hero__lead {
  max-width: 44rem;
  margin-top: clamp(1rem, 2vh, 1.5rem);
  padding-left: 0;
  border-left: 0;
  color: var(--ink-soft);
  font-size: clamp(1.04rem, 1.55vw, 1.28rem);
  line-height: 1.55;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem 1.25rem;
  align-items: center;
  margin-top: 2rem;
}

.hero__assurances {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem 1.5rem;
  margin-top: 1.6rem;
  list-style: none;
  color: var(--ink-soft);
  font-size: .78rem;
  font-weight: 600;
}

.hero__assurances li {
  display: flex;
  align-items: center;
  gap: .5rem;
}

.hero__assurances li::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cobalt);
  content: "";
}

/* Hero decision visualization */
.decision-engine {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border: 0;
  border-radius: 14px;
  background: #0b6fbd;
  box-shadow: 0 26px 70px rgba(20, 91, 145, .24);
  color: var(--light-on-dark);
}

.hero__visual .decision-engine {
  width: 100%;
}

.decision-engine::before {
  position: absolute;
  top: -55px;
  right: -55px;
  width: 130px;
  height: 130px;
  border: 24px solid rgba(104, 211, 238, .72);
  border-radius: 50%;
  content: "";
  opacity: .9;
}

.decision-engine__header,
.decision-engine__footer {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--muted-on-dark);
  font-size: .64rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.decision-engine__header {
  min-height: 46px;
  padding: .75rem 1rem;
  border-bottom: 1px solid var(--line-dark);
}

.system-status {
  display: flex;
  align-items: center;
  gap: .45rem;
}

.system-status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #9fe8fb;
  box-shadow: 0 0 0 4px rgba(159, 232, 251, .15);
}

.decision-engine__body {
  display: grid;
  gap: 1px;
  padding: clamp(1.2rem, 3vw, 2rem);
  background: rgba(255, 255, 255, .2);
}

.engine-source,
.engine-processor,
.engine-output {
  position: relative;
  background: var(--dark);
}

.engine-label {
  color: var(--muted-on-dark);
  font-size: .61rem;
}

.engine-source {
  display: grid;
  min-height: 102px;
  grid-template-columns: .7fr 1.3fr;
  gap: 1rem;
  align-items: center;
  padding: 1.2rem;
}

.engine-source__stream {
  display: flex;
  height: 42px;
  align-items: end;
  gap: 6px;
}

.engine-source__stream span {
  flex: 1;
  min-width: 5px;
  background: var(--aqua);
  animation: signal 2.8s var(--ease) infinite alternate;
}

.engine-source__stream span:nth-child(1) { height: 38%; }
.engine-source__stream span:nth-child(2) { height: 82%; animation-delay: -.4s; background: var(--cobalt); }
.engine-source__stream span:nth-child(3) { height: 58%; animation-delay: -.8s; }
.engine-source__stream span:nth-child(4) { height: 100%; animation-delay: -1.2s; background: #ffffff; }
.engine-source__stream span:nth-child(5) { height: 70%; animation-delay: -1.6s; background: var(--aqua); }

@keyframes signal {
  from { transform: scaleY(.55); transform-origin: bottom; }
  to { transform: scaleY(1); transform-origin: bottom; }
}

.engine-processor {
  display: grid;
  min-height: 118px;
  grid-template-columns: auto 1fr;
  gap: 1.2rem;
  align-items: center;
  padding: 1.2rem;
}

.engine-processor__index {
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  border: 1px solid var(--aqua);
  border-radius: 10px;
  color: var(--aqua);
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-style: normal;
}

.engine-processor strong {
  display: block;
  max-width: 18rem;
  margin-top: .3rem;
  font-size: clamp(1.05rem, 1.7vw, 1.3rem);
  line-height: 1.25;
}

.engine-output {
  min-height: 135px;
  padding: 1.2rem;
  border-left: 5px solid var(--aqua);
}

.engine-output p {
  max-width: 22rem;
  margin-top: .55rem;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 1.8vw, 1.45rem);
  font-weight: 600;
  line-height: 1.18;
}

.engine-output__confidence {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  padding: .25rem .5rem;
  border-radius: 5px;
  background: var(--aqua);
  color: var(--dark);
  font-size: .6rem;
  font-weight: 900;
  text-transform: uppercase;
}

.decision-engine__footer {
  justify-content: flex-start;
  gap: .65rem;
  min-height: 42px;
  padding: .7rem 1rem;
  border-top: 1px solid var(--line-dark);
}

.decision-engine__footer i {
  width: 2rem;
  height: 1px;
  background: var(--line-dark);
}

.proof-rail {
  position: relative;
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.proof-rail dl {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.proof-rail dl > div {
  display: grid;
  min-height: 112px;
  grid-template-columns: minmax(0, 1fr);
  gap: .4rem;
  align-content: center;
  padding: 1.3rem clamp(.8rem, 2vw, 1.8rem);
  border-right: 1px solid var(--line);
}

.proof-rail dl > div:first-child {
  border-left: 1px solid var(--line);
}

.proof-rail dt {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.2vw, 3.1rem);
  color: var(--cobalt);
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.proof-rail dd {
  max-width: none;
  color: var(--ink-soft);
  font-size: .7rem;
  font-weight: 800;
  line-height: 1.25;
  text-transform: uppercase;
}

/* General sections */
.section {
  position: relative;
  padding-block: var(--section-space);
}

.section--statement {
  overflow: hidden;
  background: var(--paper-strong);
}

.section--statement::after {
  display: none;
}

.statement-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(18rem, .55fr);
  gap: clamp(3rem, 10vw, 10rem);
  align-items: end;
}

.statement-copy {
  display: grid;
  gap: 1.15rem;
  max-width: 37rem;
  color: var(--ink-soft);
}

.statement-copy__lead {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  font-weight: 600;
  line-height: 1.35;
}

/* Readiness */
.section--dark {
  overflow: hidden;
  background: var(--dark);
  color: var(--light-on-dark);
}

.section--dark::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: var(--aqua);
  content: "";
}

.section--dark .section-index,
.section--dark .mini-label {
  color: var(--aqua);
}

.section--dark .section-intro {
  color: var(--muted-on-dark);
}

.section--dark .section-title span {
  color: var(--aqua);
}

.readiness-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(20rem, .65fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
}

.readiness-console {
  border: 1px solid var(--line-dark);
  border-radius: 12px;
  overflow: hidden;
  background: var(--dark-raised);
  box-shadow: 0 22px 55px rgba(0, 10, 20, .2);
}

.readiness-console__top {
  display: flex;
  justify-content: space-between;
  padding: .8rem 1rem;
  border-bottom: 1px solid var(--line-dark);
  background: rgba(255, 255, 255, .03);
  color: var(--muted-on-dark);
  font-size: .66rem;
  font-weight: 800;
  text-transform: uppercase;
}

.readiness-console__list {
  list-style: none;
}

.readiness-console__list li {
  display: grid;
  min-height: 92px;
  grid-template-columns: 48px 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1rem 1.2rem;
  border-bottom: 1px solid var(--line-dark);
  transition: background-color .2s ease;
}

.readiness-console__list li:last-child {
  border-bottom: 0;
}

.readiness-console__list li:hover {
  background: var(--dark-raised);
}

.readiness-console__number {
  color: var(--aqua);
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 700;
}

.readiness-console__list strong,
.readiness-console__list small {
  display: block;
}

.readiness-console__list strong {
  font-size: 1.03rem;
}

.readiness-console__list small {
  margin-top: .15rem;
  color: var(--muted-on-dark);
  font-size: .77rem;
}

.readiness-console__signal {
  padding: .28rem .52rem;
  border: 1px solid var(--line-dark);
  border-radius: 6px;
  color: var(--muted-on-dark);
  font-size: .61rem;
  font-weight: 800;
  text-transform: uppercase;
}

.readiness-console__signal--active {
  border-color: var(--aqua);
  background: var(--aqua);
  color: var(--dark);
}

.readiness-result {
  max-width: 32rem;
}

.readiness-result h3 {
  margin-top: .8rem;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 2.5vw, 2.2rem);
  font-weight: 600;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.check-list {
  display: grid;
  gap: .75rem;
  margin-block: 2rem;
  list-style: none;
}

.check-list li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: .7rem;
  color: var(--muted-on-dark);
  font-size: .92rem;
}

.check-list li::before {
  color: var(--aqua);
  content: "✓";
  font-weight: 900;
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.2rem, 2.5vw, 2rem);
}

.service-item {
  position: relative;
  min-height: 410px;
  padding: clamp(1.5rem, 3.5vw, 3.5rem);
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--paper-strong);
  box-shadow: 0 16px 45px rgba(25, 67, 99, .07);
  transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}

.service-item:hover {
  border-color: #aacbe6;
  box-shadow: 0 22px 55px rgba(25, 67, 99, .12);
  transform: translateY(-4px);
}

.service-item--accent {
  background: var(--cobalt);
  border-color: var(--cobalt);
  color: var(--paper-strong);
}

.service-item--accent:hover {
  border-color: #155ca9;
  background: #155ca9;
}

.service-item__number {
  position: absolute;
  top: clamp(1.5rem, 3.5vw, 3.5rem);
  right: clamp(1.5rem, 3.5vw, 3.5rem);
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--cobalt);
  font-style: normal;
  font-weight: 700;
}

.service-item--accent .service-item__number {
  color: var(--paper-strong);
}

.service-item__kicker {
  margin-bottom: 2.8rem;
  color: var(--cobalt);
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
}

.service-item--accent .service-item__kicker {
  color: #bdefff;
}

.service-item h3 {
  max-width: 14ch;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 2.7vw, 2.55rem);
  font-weight: 700;
  line-height: 1.18;
}

.service-item > p:not(.service-item__kicker) {
  max-width: 37rem;
  margin-top: 1.4rem;
  color: var(--ink-soft);
}

.service-item--accent > p:not(.service-item__kicker) {
  color: #d8edfb;
}

.service-item ul {
  display: grid;
  gap: .45rem;
  margin-top: 2rem;
  list-style: none;
  font-size: .78rem;
  font-weight: 800;
}

.service-item li {
  display: flex;
  gap: .6rem;
  align-items: baseline;
}

.service-item li::before {
  color: var(--cobalt);
  content: "+";
}

.service-item--accent li::before {
  color: var(--aqua);
}

/* Process */
.section--process {
  background: #eaf4f9;
}

.process-layout {
  display: grid;
  grid-template-columns: minmax(18rem, .72fr) minmax(0, 1.28fr);
  gap: clamp(3rem, 8vw, 9rem);
}

.process-intro {
  align-self: start;
}

.process-intro .section-intro {
  margin-top: 1.8rem;
}

.process-quote {
  margin-top: clamp(3rem, 7vw, 6rem);
  padding-top: 1.4rem;
  border-top: 3px solid var(--cobalt);
  color: var(--ink-soft);
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
  font-style: normal;
  font-weight: 600;
  line-height: 1.28;
}

.process-steps {
  list-style: none;
  border-top: 1px solid var(--ink);
}

.process-steps li {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 1.3rem;
  padding-block: clamp(1.8rem, 4vw, 3.2rem);
  border-bottom: 1px solid var(--line);
}

.process-steps__number {
  color: var(--cobalt);
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
}

.process-steps .mini-label {
  color: var(--cobalt);
}

.process-steps h3 {
  margin-top: .4rem;
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3vw, 2.6rem);
  font-weight: 700;
  line-height: 1.18;
}

.process-steps p:not(.mini-label) {
  max-width: 42rem;
  margin-top: .7rem;
  color: var(--ink-soft);
}

.process-steps strong {
  display: block;
  margin-top: 1rem;
  font-size: .72rem;
  text-transform: uppercase;
}

/* Independence */
.independence {
  overflow: hidden;
  background: #dff2fb;
}

.independence::before {
  display: none;
}

.independence__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(18rem, .62fr);
  gap: clamp(3rem, 9vw, 9rem);
  align-items: end;
}

.independence .section-index {
  color: var(--ink);
}

.independence__statement h2 {
  max-width: 13ch;
  font-family: var(--font-display);
  font-size: clamp(2.7rem, 5vw, 5rem);
  font-weight: 700;
  line-height: 1.08;
}

.independence__statement h2 span {
  display: block;
  color: var(--cobalt);
  font-style: normal;
}

.independence__copy {
  display: grid;
  gap: 1rem;
  font-weight: 600;
}

.founder-note {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-top: 1.5rem;
  padding-top: 1.4rem;
  border-top: 1px solid #aacfe3;
}

.founder-note img {
  width: 56px;
  height: 56px;
}

.founder-note strong,
.founder-note span {
  display: block;
}

.founder-note span {
  margin-top: .1rem;
  font-size: .72rem;
  font-weight: 800;
  text-transform: uppercase;
}

/* FAQ */
.section--faq {
  background: var(--paper-strong);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(17rem, .62fr) minmax(0, 1.38fr);
  gap: clamp(3rem, 9vw, 9rem);
  align-items: start;
}

.faq-heading .section-title {
  font-size: clamp(2.9rem, 5vw, 5rem);
}

.faq-heading .section-intro {
  margin-top: 1.5rem;
}

.faq {
  border-top: 1px solid var(--ink);
}

.faq__item {
  border-bottom: 1px solid var(--line);
}

.faq__item h3 {
  margin: 0;
}

.faq__trigger {
  display: grid;
  width: 100%;
  min-height: 82px;
  grid-template-columns: 1fr 36px;
  gap: 1rem;
  align-items: center;
  padding: 1.25rem 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.1vw, 1.65rem);
  font-weight: 600;
  line-height: 1.3;
  text-align: left;
}

.faq__trigger i {
  position: relative;
  width: 34px;
  height: 34px;
  border: 1px solid var(--cobalt);
  border-radius: 50%;
}

.faq__trigger i::before,
.faq__trigger i::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 1px;
  background: currentColor;
  content: "";
  transform: translate(-50%, -50%);
  transition: transform .2s ease;
}

.faq__trigger i::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq__trigger[aria-expanded="true"] i {
  background: var(--acid);
}

.faq__trigger[aria-expanded="true"] i::after {
  transform: translate(-50%, -50%) rotate(0);
}

.faq__content {
  max-width: 48rem;
  padding: 0 3.5rem 1.6rem 0;
  color: var(--ink-soft);
}

/* Contact */
.contact-section {
  position: relative;
  overflow: hidden;
  padding-block: clamp(5rem, 10vw, 9rem);
  background: var(--cobalt);
  color: var(--paper-strong);
}

.contact-section::after {
  display: none;
}

.contact-section__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(18rem, .65fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: end;
}

.contact-section .section-index {
  color: #c7efff;
}

.contact-section__title {
  max-width: 13ch;
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 5rem);
  font-weight: 700;
  line-height: 1.08;
}

.contact-section .button--primary {
  border-color: var(--paper-strong);
  background: var(--paper-strong);
  color: var(--cobalt);
}

.contact-section .button--primary:hover {
  border-color: var(--dark);
  background: var(--dark);
  color: var(--paper-strong);
}

.contact-section__action {
  max-width: 35rem;
}

.contact-section__action > p:first-child {
  font-size: clamp(1.05rem, 1.7vw, 1.25rem);
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.1rem 1.5rem;
  align-items: center;
  margin-top: 2rem;
}

.contact-links__phone {
  display: grid;
  gap: .1rem;
}

.contact-links__phone span {
  font-size: .68rem;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-links__phone strong {
  font-family: var(--font-display);
  font-size: 1.5rem;
}

.contact-section__note {
  margin-top: 1.3rem;
  color: #d8edfb;
  font-size: .72rem;
  font-weight: 800;
}

/* Footer */
.site-footer {
  padding-top: clamp(3.5rem, 7vw, 6rem);
  background: var(--dark);
  color: var(--light-on-dark);
}

.footer__top {
  display: flex;
  justify-content: flex-end;
  gap: 2rem;
  align-items: end;
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
  border-bottom: 1px solid var(--line-dark);
}

.footer__claim {
  color: var(--muted-on-dark);
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-style: normal;
  font-weight: 600;
  line-height: 1.25;
  text-align: right;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 2rem;
  padding-block: 3rem;
}

.footer__label {
  margin-bottom: 1rem;
  color: var(--aqua);
}

.footer__grid address,
.footer__grid ul {
  display: grid;
  gap: .45rem;
  color: var(--muted-on-dark);
  font-size: .85rem;
  font-style: normal;
  list-style: none;
}

.footer__grid a:hover {
  color: var(--acid);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 1.3rem;
  border-top: 1px solid var(--line-dark);
  color: var(--muted-on-dark);
  font-size: .68rem;
  font-weight: 800;
  text-transform: uppercase;
}

/* Secondary pages */
.nav__actions {
  display: flex;
  align-items: center;
  gap: .65rem;
  margin-left: clamp(.8rem, 1.5vw, 1.4rem);
}

.icon-inline {
  display: inline-block;
  width: 1em;
  height: 1em;
  flex: 0 0 auto;
  margin-right: .35em;
  vertical-align: -.125em;
}

.subpage main.section {
  min-height: 68vh;
  padding-block: clamp(3.5rem, 8vw, 7rem);
}

.content-panel {
  width: min(100%, 1040px);
  margin-inline: auto;
  padding: clamp(1.5rem, 5vw, 4.5rem);
  border: 1px solid var(--line);
  border-top: 6px solid var(--cobalt);
  border-radius: 12px;
  background: var(--paper-strong);
  box-shadow: 0 18px 55px rgba(25, 67, 99, .08);
  overflow-wrap: anywhere;
}

.content-panel .section__header {
  margin-bottom: clamp(2rem, 5vw, 4rem);
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--line);
}

.content-panel .section__title {
  max-width: 16ch;
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
  font-size: clamp(3rem, 7vw, 6rem);
}

.content-panel .section__header .section__title {
  margin-bottom: 0;
}

.section__subtitle {
  max-width: 42rem;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
}

.legal-content > h2,
.support-content > h2 {
  margin-top: clamp(2.8rem, 6vw, 4.5rem);
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.6rem);
  font-weight: 700;
  line-height: 1.15;
}

.legal-content > h3,
.support-content > h3 {
  margin-top: 2rem;
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.2vw, 1.8rem);
  font-weight: 700;
  line-height: 1.2;
}

.legal-content > h4 {
  margin-top: 1.6rem;
  font-size: .9rem;
  line-height: 1.4;
  text-transform: uppercase;
}

.legal-content > p,
.legal-content > ul,
.support-content > p,
.support-content > ul,
.support-content > ol,
.support-content > figure {
  margin-top: 1rem;
}

.legal-content p,
.legal-content li,
.support-content p,
.support-content li {
  color: var(--ink-soft);
}

.legal-content ul,
.legal-content ol,
.support-content ul,
.support-content ol {
  padding-left: 1.4rem;
}

.legal-content li + li,
.support-content li + li {
  margin-top: .45rem;
}

.legal-content a,
.support-content p a,
.support-content li a {
  color: var(--cobalt);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: .18em;
}

.legal-content .small {
  font-size: .78rem;
}

.u-stack-sm {
  margin-top: 1.5rem !important;
}

.text-muted,
.card__text {
  color: var(--muted-on-dark);
}

.u-btn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: .8rem 1.25rem;
  border: 2px solid var(--ink);
  border-radius: 10px;
  background: var(--cobalt);
  color: var(--paper-strong) !important;
  font-size: .91rem;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none !important;
  transition: background-color .2s ease, border-color .2s ease, transform .2s var(--ease);
}

.u-btn:hover {
  border-color: var(--cobalt);
  background: var(--cobalt);
  transform: translateY(-2px);
}

.u-btn__success {
  border-color: var(--cobalt);
  background: var(--cobalt);
}

.u-btn__primary {
  border-color: var(--cobalt);
  background: var(--cobalt);
}

.u-btn__secondary {
  border-color: var(--ink);
  background: transparent;
  color: var(--ink) !important;
}

.u-glass {
  background: var(--paper-strong);
}

.u-surface--xl {
  padding: clamp(2rem, 7vw, 5rem);
}

.form--narrow {
  width: min(100%, 28rem);
}

.support-content figure {
  padding: clamp(.75rem, 2vw, 1.25rem);
  border: 1px solid var(--line);
  background: var(--paper);
}

.support-content figure img {
  width: 100%;
  height: auto;
  border-radius: 0 !important;
}

.support-content figcaption {
  color: var(--ink-soft) !important;
}

.subpage .footer__brand {
  width: 200px;
  height: auto;
  margin-bottom: .8rem;
}

.subpage .footer__contact br {
  display: none;
}

.subpage .footer__contact span {
  display: flex;
  align-items: center;
}

.error {
  display: grid;
  min-height: 100svh;
  place-items: center;
  padding-block: 3rem;
}

.error > div {
  position: relative;
  width: min(100%, 760px);
  padding: clamp(2rem, 7vw, 5rem);
  border: 1px solid var(--line);
  border-top: 6px solid var(--cobalt);
  border-radius: 12px;
  background: var(--paper-strong);
}

.error .section__title {
  max-width: 12ch;
  font-size: clamp(3rem, 8vw, 6.5rem);
}

.error .section__subtitle {
  margin-top: 1rem;
}

.error__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 2rem;
}

/* Motion */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .72s var(--ease), transform .72s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* Tablet */
@media (max-width: 1080px) {
  .nav__list {
    display: none;
  }

  .nav__toggle {
    position: relative;
    display: block;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid var(--ink);
    border-radius: 2px;
    background: transparent;
    cursor: pointer;
  }

  .nav__toggle span,
  .nav__toggle span::before,
  .nav__toggle span::after {
    position: absolute;
    left: 50%;
    width: 20px;
    height: 2px;
    background: currentColor;
    content: "";
    transition: transform .2s ease, opacity .2s ease;
  }

  .nav__toggle span {
    top: 50%;
    transform: translate(-50%, -50%);
  }

  .nav__toggle span::before {
    transform: translate(-50%, -7px);
  }

  .nav__toggle span::after {
    transform: translate(-50%, 7px);
  }

  .nav.is-open .nav__toggle span {
    background: transparent;
  }

  .nav.is-open .nav__toggle span::before {
    transform: translate(-50%, 0) rotate(45deg);
  }

  .nav.is-open .nav__toggle span::after {
    transform: translate(-50%, 0) rotate(-45deg);
  }

  .nav__panel {
    position: fixed;
    top: var(--header-height);
    right: 0;
    left: 0;
    z-index: 99;
    display: block;
    height: calc(100svh - var(--header-height));
    padding: clamp(2rem, 8vw, 5rem) var(--gutter);
    background: var(--paper);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity .2s ease, transform .2s ease;
  }

  .nav.is-open .nav__panel {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav__panel ul {
    display: grid;
    width: 100%;
    min-width: 0;
    gap: .7rem;
  }

  .nav__panel li {
    min-width: 0;
  }

  .nav__panel .nav__link {
    display: flex;
    width: 100%;
    min-height: 54px;
    min-width: 0;
    justify-content: space-between;
    border-bottom: 1px solid var(--line);
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 400;
    overflow-wrap: anywhere;
  }

  .nav__panel .nav__link--cta {
    justify-content: center;
    margin-top: 1rem;
    border: 0;
    color: var(--paper-strong);
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 800;
  }

  .hero__layout {
    grid-template-columns: minmax(0, 1fr) minmax(330px, .8fr);
    gap: 2.2rem;
  }

  .hero__title {
    font-size: clamp(3.6rem, 8vw, 6.2rem);
  }

  .statement-grid,
  .independence__inner,
  .contact-section__inner {
    grid-template-columns: 1fr .7fr;
    gap: 3rem;
  }

  .readiness-layout {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

/* Small tablet and phone */
@media (max-width: 800px) {
  :root {
    --header-height: 68px;
    --section-space: clamp(4.5rem, 18vw, 7rem);
  }

  body {
    font-size: 16px;
  }

  .site-logo__brand {
    width: 138px;
  }

  .header-support__image {
    width: 88px;
  }

  .nav__actions {
    margin-left: 0;
  }

  .section-heading--split,
  .statement-grid,
  .readiness-layout,
  .process-layout,
  .independence__inner,
  .faq-layout,
  .contact-section__inner {
    grid-template-columns: 1fr;
  }

  .section-heading--split,
  .statement-grid,
  .readiness-layout,
  .process-layout,
  .independence__inner,
  .faq-layout,
  .contact-section__inner {
    gap: 3rem;
  }

  .hero-location {
    width: 88px;
  }

  .section-title,
  .display-title,
  .independence__statement h2,
  .contact-section__title {
    font-size: clamp(2.8rem, 13vw, 5rem);
  }

  .hero__layout {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 2.4rem;
    padding-top: 2.2rem;
    padding-bottom: 3rem;
  }

  .hero__title {
    max-width: 11ch;
    font-size: clamp(3.25rem, 15.4vw, 5.2rem);
  }

  .hero__lead {
    max-width: 36rem;
  }

  .decision-engine {
    width: calc(100% - 12px);
    max-width: 580px;
    box-shadow: 12px 12px 0 var(--acid);
  }

  .proof-rail {
    overflow-x: auto;
    scrollbar-width: thin;
  }

  .proof-rail dl {
    width: max-content;
    min-width: 100%;
    grid-template-columns: repeat(3, minmax(180px, 1fr));
  }

  .proof-rail dl > div {
    min-height: 94px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-item {
    min-height: 0;
  }

  .process-quote {
    max-width: 35rem;
    margin-top: 2.2rem;
  }

  .footer__grid {
    grid-template-columns: 1.5fr 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .hero__grid-lines {
    background-size: 46px 46px;
  }

  .hero__layout {
    gap: 1.8rem;
    padding-top: 1.8rem;
    padding-bottom: 2.3rem;
  }

  .hero__title {
    margin-top: 1.1rem;
    font-size: clamp(2.95rem, 15vw, 4.6rem);
  }

  .hero__lead {
    margin-top: 1.25rem;
    font-size: .98rem;
  }

  .hero__actions {
    display: grid;
    margin-top: 1.35rem;
  }

  .hero__actions .button {
    width: 100%;
  }

  .hero__actions .button--text,
  .decision-engine__footer,
  .proof-rail {
    display: none;
  }

  .hero__assurances {
    display: none;
  }

  .decision-engine__header,
  .decision-engine__footer {
    font-size: .56rem;
  }

  .decision-engine__body {
    grid-template-columns: .8fr 1.2fr;
    padding: .8rem;
  }

  .engine-source {
    display: none;
  }

  .engine-processor,
  .engine-output {
    min-height: 136px;
    padding: .85rem;
  }

  .engine-processor {
    grid-template-columns: 1fr;
    gap: .5rem;
  }

  .engine-processor__index {
    width: 38px;
    height: 38px;
    font-size: 1.25rem;
  }

  .engine-processor strong {
    font-size: .85rem;
  }

  .engine-output {
    border-left-width: 3px;
  }

  .engine-output p {
    margin-top: .35rem;
    font-size: 1rem;
  }

  .engine-output__confidence {
    right: .65rem;
    bottom: .65rem;
  }

  .proof-rail dl {
    grid-template-columns: repeat(3, 154px);
  }

  .proof-rail dl > div {
    min-height: 82px;
    grid-template-columns: 1fr;
    gap: .25rem;
    align-content: center;
  }

  .proof-rail dt {
    font-size: 1.8rem;
  }

  .proof-rail dd {
    max-width: none;
    font-size: .58rem;
  }

  .section-heading,
  .section-heading--split {
    margin-bottom: 3rem;
  }

  .readiness-console__list li {
    grid-template-columns: 38px 1fr;
  }

  .readiness-console__signal {
    display: none;
  }

  .service-item {
    padding: 1.5rem;
  }

  .service-item__number {
    top: 1.5rem;
    right: 1.5rem;
  }

  .process-steps li {
    grid-template-columns: 50px 1fr;
  }

  .faq__trigger {
    grid-template-columns: 1fr 32px;
    font-size: 1.2rem;
  }

  .contact-links {
    align-items: stretch;
  }

  .contact-links .button {
    width: 100%;
  }

  .contact-section::after {
    right: -12rem;
    bottom: -12rem;
    opacity: .35;
  }

  .footer__top,
  .footer__bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer__claim {
    text-align: left;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer__grid > div {
    grid-column: 1 / -1;
  }
}

@media (max-height: 760px) and (min-width: 801px) {
  .hero__layout {
    min-height: 500px;
    padding-block: 2.2rem;
  }

  .hero__title {
    font-size: clamp(3.7rem, 7vw, 6.5rem);
  }

  .hero__lead {
    margin-top: 1.3rem;
  }

  .hero__actions {
    margin-top: 1.25rem;
  }

  .decision-engine__body {
    padding: 1rem;
  }

  .engine-source,
  .engine-processor {
    min-height: 86px;
  }

  .engine-output {
    min-height: 110px;
  }

  .proof-rail dl > div {
    min-height: 92px;
  }
}
