@font-face {
  font-family: Montserrat;
  src: url("../assets/fonts/montserrat-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: Montserrat;
  src: url("../assets/fonts/montserrat-medium.woff2") format("woff2");
  font-style: normal;
  font-weight: 500 600;
  font-display: swap;
}

:root {
  --navy: #00102e;
  --navy-soft: #071a3b;
  --navy-card: #0b2045;
  --turquoise: #5cc4ae;
  --turquoise-dark: #238d79;
  --turquoise-pale: #def4ed;
  --ink: #10243e;
  --muted: #5a6878;
  --line: #dbe4e8;
  --paper: #f4f7f8;
  --white: #ffffff;
  --heading: Montserrat, Arial, sans-serif;
  --body: Arial, Helvetica, sans-serif;
  --radius-sm: 12px;
  --radius: 22px;
  --shadow: 0 18px 50px rgba(0, 16, 46, 0.08);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font: 400 1rem/1.65 var(--body);
  -webkit-font-smoothing: antialiased;
}

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

button,
input,
textarea {
  font: inherit;
}

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

svg {
  display: block;
}

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

h1,
h2,
h3 {
  font-family: var(--heading);
  font-weight: 500;
  line-height: 1.16;
  letter-spacing: -0.04em;
}

p + p {
  margin-top: 1rem;
}

a,
button,
summary {
  -webkit-tap-highlight-color: transparent;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--turquoise);
  outline-offset: 4px;
}

section[id],
article[id],
aside[id] {
  scroll-margin-top: 92px;
}

.wrap {
  width: min(1200px, calc(100% - 80px));
  margin-inline: auto;
}

.eyebrow {
  font-family: var(--heading);
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.14em;
}

.section {
  padding: 116px 0;
}

.section-label {
  color: var(--turquoise-dark);
  margin-bottom: 18px;
}

.section-heading {
  margin-bottom: 58px;
}

.section-heading-centered {
  max-width: 790px;
  margin-inline: auto;
  text-align: center;
}

.section-heading h2 {
  font-size: clamp(2.35rem, 4.3vw, 4rem);
  color: var(--navy);
}

.section-heading > p:last-child {
  max-width: 680px;
  margin: 22px auto 0;
  color: var(--muted);
  font-size: 1.075rem;
  line-height: 1.7;
}

.skip-link {
  position: fixed;
  left: 20px;
  top: -100px;
  z-index: 100;
  padding: 12px 18px;
  border-radius: 8px;
  background: var(--turquoise);
  color: var(--navy);
  font-weight: 600;
}

.skip-link:focus {
  top: 12px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  color: var(--white);
  background: rgba(0, 16, 46, 0.97);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 86px;
}

.brand {
  width: 132px;
  flex-shrink: 0;
}

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

nav {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 0.875rem;
}

nav a {
  padding: 12px 0;
  color: #dfe6ef;
  transition: color 0.2s ease;
}

nav a:hover,
nav a[aria-current] {
  color: var(--turquoise);
}

nav .nav-contact {
  padding: 10px 18px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 8px;
  color: var(--white);
}

.menu-toggle {
  display: none;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 8px;
  padding: 9px 13px;
  background: transparent;
  color: var(--white);
  font-size: 0.875rem;
}

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  min-height: calc(100svh - 86px);
  overflow: hidden;
  background-image:
    linear-gradient(rgba(0, 16, 46, 0.95), rgba(0, 16, 46, 0.95)),
    url("../assets/images/a-futuristic.jpeg");
  background-position: center;
  background-size: cover;
  color: var(--white);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 50% 42%, rgba(92, 196, 174, 0.13), transparent 34%),
    linear-gradient(90deg, rgba(0, 16, 46, 0.3), transparent 30%, transparent 70%, rgba(0, 16, 46, 0.3));
}

.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 90px 0 130px;
  text-align: center;
}

.hero-eyebrow {
  color: var(--turquoise);
  margin-bottom: 30px;
}

.hero h1 {
  max-width: 1120px;
  font-size: clamp(3.05rem, 5.6vw, 5.25rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.055em;
  text-wrap: balance;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.25);
}

.hero-intro {
  max-width: 780px;
  margin-top: 28px;
  color: #e0e7ef;
  font-size: 1.125rem;
  line-height: 1.7;
}

.hero-expertise {
  margin-top: 22px;
  color: #f4f8fb;
  font-family: var(--heading);
  font-size: 0.84rem;
  line-height: 1.8;
}

.hero-expertise b {
  padding: 0 8px;
  color: var(--turquoise);
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  min-height: 52px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 9px;
  background: var(--turquoise);
  color: var(--navy);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.button:hover {
  background: #83d6c4;
  transform: translateY(-1px);
}

.button-outline {
  border-color: rgba(255, 255, 255, 0.68);
  background: rgba(0, 16, 46, 0.26);
  color: var(--white);
  backdrop-filter: blur(8px);
}

.button-outline:hover {
  border-color: var(--turquoise);
  background: rgba(0, 16, 46, 0.64);
  color: var(--turquoise);
}

.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 14px;
  color: #c9d3df;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.hero-scroll i {
  color: var(--turquoise);
  font-size: 1rem;
  font-style: normal;
}

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

.process-layout {
  display: grid;
  grid-template-columns: minmax(285px, 340px) minmax(0, 1fr);
  gap: 28px;
  align-items: stretch;
}

.process-journey {
  display: grid;
  grid-template-rows: auto repeat(3, 1fr) auto;
  min-height: 600px;
  padding: 38px 36px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 105% 0, rgba(92, 196, 174, 0.16), transparent 35%),
    var(--navy);
  color: var(--white);
  box-shadow: var(--shadow);
}

.journey-caption {
  margin-left: 37px;
  color: #91a2b8;
  font-family: var(--heading);
  font-size: 0.68rem;
  letter-spacing: 0.15em;
}

.journey-step {
  position: relative;
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 14px;
  align-items: center;
  margin-left: 4px;
  padding: 18px 0 18px 32px;
  border-left: 1px solid rgba(92, 196, 174, 0.6);
}

.journey-step .node {
  position: absolute;
  left: -5px;
  width: 9px;
  height: 9px;
  border: 2px solid var(--turquoise);
  border-radius: 50%;
  background: var(--navy);
  box-shadow: 0 0 0 5px rgba(92, 196, 174, 0.12);
}

.step-n {
  color: var(--turquoise);
  font-family: var(--heading);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.09em;
}

.journey-step p {
  font-family: var(--heading);
  font-size: 1.02rem;
  line-height: 1.38;
}

.journey-step strong {
  font-weight: 500;
  color: var(--turquoise);
}

.journey-end {
  align-self: end;
}

.journey-end span {
  color: var(--turquoise);
}

.approach-cards {
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  gap: 18px;
}

.approach-card {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 24px;
  align-items: center;
  padding: 28px 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 34px rgba(0, 16, 46, 0.055);
}

.icon-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  border-radius: 50%;
  background: var(--turquoise-pale);
  color: var(--turquoise-dark);
}

.icon-chip svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.approach-card h3 {
  color: var(--navy);
  font-size: 1.35rem;
  letter-spacing: -0.025em;
}

.card-lead {
  margin-top: 7px;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.45;
}

.card-detail {
  margin-top: 7px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.mobile-step {
  display: none;
}

.approach-note {
  max-width: 760px;
  margin: 28px auto 0;
  color: var(--muted);
  font-size: 0.92rem;
  text-align: center;
}

.approach-note span {
  margin-right: 8px;
  color: var(--turquoise-dark);
  font-weight: 700;
}

.domains {
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 0, rgba(92, 196, 174, 0.11), transparent 24%),
    radial-gradient(circle at 90% 100%, rgba(92, 196, 174, 0.08), transparent 26%),
    var(--navy);
}

.section-heading-light .section-label {
  color: var(--turquoise);
}

.section-heading-light h2 {
  color: var(--white);
}

.section-heading-light > p:last-child {
  color: #bfcbd8;
}

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

.domain-card {
  min-height: 310px;
  padding: 30px 28px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.14);
}

.domain-card .icon-chip {
  margin-bottom: 42px;
}

.domain-card h3 {
  color: var(--navy);
  font-size: 1.35rem;
  line-height: 1.26;
  letter-spacing: -0.025em;
}

.domain-card p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.58;
}

.work {
  background: var(--paper);
}

.case-featured {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  min-height: 610px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.case-featured + .case-featured {
  margin-top: 32px;
}

.case-visual {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  background: #e8eef2;
}

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

.image-caption {
  position: absolute;
  left: 22px;
  bottom: 22px;
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 7px;
  background: rgba(0, 16, 46, 0.82);
  color: var(--white);
  font-family: var(--heading);
  font-size: 0.67rem;
  letter-spacing: 0.12em;
  backdrop-filter: blur(8px);
}

.case-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px 50px;
}

.case-category {
  color: var(--navy);
}

.case-category span {
  margin-left: 12px;
  color: var(--turquoise-dark);
}

.case-copy h3 {
  margin-top: 17px;
  color: var(--navy);
  font-size: clamp(1.75rem, 2.7vw, 2.65rem);
  line-height: 1.18;
}

.case-copy > p:not(.case-category):not(.case-result) {
  margin-top: 20px;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.65;
}

.case-result {
  margin-top: 22px;
  padding: 14px 16px;
  border-left: 3px solid var(--turquoise);
  border-radius: 0 9px 9px 0;
  background: var(--turquoise-pale);
  color: var(--ink);
  font-size: 0.91rem;
  line-height: 1.5;
}

.case-result span {
  display: block;
  margin-bottom: 3px;
  color: var(--turquoise-dark);
  font-family: var(--heading);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 20px;
}

.metric-grid p {
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 104px;
  margin: 0;
  padding: 16px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--paper);
}

.metric-grid strong {
  color: var(--navy);
  font-family: var(--heading);
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.metric-grid span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.73rem;
  line-height: 1.35;
}

.project-path {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.project-path li {
  padding: 6px 9px;
  border: 1px solid #cbd8dc;
  border-radius: 999px;
  color: #45566a;
  font-size: 0.68rem;
  line-height: 1.25;
}

.case-kairena {
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
}

.case-kairena .case-visual {
  display: flex;
  align-items: center;
  padding: 48px;
  background: linear-gradient(145deg, #e9f0f5, #dce7ef);
}

.case-kairena .case-visual::before {
  content: none;
}

.case-kairena .case-visual img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-height: 100%;
  height: auto;
  border: 1px solid rgba(0, 16, 46, 0.12);
  border-radius: 14px;
  background: var(--white);
  object-fit: contain;
  box-shadow: 0 16px 30px rgba(0, 16, 46, 0.16);
}

.case-kairena .image-caption {
  z-index: 2;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  width: fit-content;
  padding: 7px 0;
  border-bottom: 1px solid currentColor;
  color: var(--navy);
  font-size: 0.875rem;
  font-weight: 600;
  transition: color 0.2s ease;
}

.text-link:hover {
  color: var(--turquoise-dark);
}

.case-copy .text-link {
  margin-top: 24px;
}

.secondary-cases {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.case-small {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 36px rgba(0, 16, 46, 0.06);
}

.small-case-visual {
  height: 260px;
  overflow: hidden;
  background: #e3e9ef;
}

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

.case-small:first-child .small-case-visual img {
  object-position: 50% 39%;
}

.small-case-copy {
  padding: 30px;
}

.small-case-copy h3 {
  margin-top: 14px;
  color: var(--navy);
  font-size: 1.55rem;
  line-height: 1.25;
}

.small-case-copy > p:not(.case-category):not(.case-tags) {
  margin-top: 15px;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.6;
}

.case-tags {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: var(--turquoise-dark);
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.55;
}

.whitepaper {
  display: grid;
  grid-template-columns: 340px minmax(0, 1fr);
  gap: 58px;
  align-items: center;
  margin-top: 50px;
  padding: 46px 58px;
  border: 1px solid #c9ded8;
  border-radius: 26px;
  background:
    radial-gradient(circle at 100% 0, rgba(92, 196, 174, 0.18), transparent 34%),
    #eaf5f1;
  box-shadow: 0 16px 42px rgba(0, 16, 46, 0.07);
}

.book-cover {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 430px;
  padding: 26px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
}

.book-cover img {
  width: auto;
  height: 370px;
  box-shadow: 0 24px 44px rgba(0, 16, 46, 0.2);
  transition: transform 0.25s ease;
}

.book-cover:hover img {
  transform: translateY(-5px) rotate(-1deg);
}

.book-copy h3 {
  color: var(--navy);
  font-size: clamp(2rem, 3.2vw, 3.15rem);
  line-height: 1.15;
}

.book-copy h3 span {
  display: inline-block;
  margin-top: 8px;
  color: var(--turquoise-dark);
  font-size: 0.62em;
  letter-spacing: -0.025em;
}

.book-copy > p:not(.eyebrow) {
  max-width: 620px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 1.02rem;
}

.book-copy .text-link {
  margin-top: 28px;
}

.pdf-meta {
  margin-left: 4px;
  border-left: 1px solid #a8bbb6;
  padding-left: 14px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 400;
}

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

.about-card {
  display: grid;
  grid-template-columns: minmax(320px, 0.88fr) minmax(0, 1.12fr);
  min-height: 440px;
  overflow: hidden;
  border-radius: 26px;
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow);
}

.about-heading {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 56px 58px;
  border-right: 1px solid rgba(255, 255, 255, 0.11);
  background:
    radial-gradient(circle at 0 100%, rgba(92, 196, 174, 0.18), transparent 46%),
    linear-gradient(145deg, #0a2148, #00102e);
}

.about-heading .section-label {
  color: var(--turquoise);
}

.about-heading h2 {
  color: var(--white);
  font-size: clamp(2.25rem, 3.6vw, 3.6rem);
}

.about-heading .about-lead {
  max-width: 470px;
  margin-top: 32px;
  color: var(--white);
  font-family: var(--heading);
  font-size: 1.3rem;
  line-height: 1.45;
}

.about-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 54px 62px;
}

.about-role {
  margin-top: 12px;
  color: var(--turquoise);
  font-family: var(--heading);
  font-size: 0.83rem;
  letter-spacing: 0.06em;
}

.about-copy > p {
  max-width: 650px;
  color: #bdc8d5;
  font-size: 0.95rem;
  line-height: 1.62;
}

.about-copy > p + p {
  margin-top: 18px;
}

.about-copy strong {
  color: var(--white);
}

.about-bottom {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 24px;
  align-items: center;
  margin-top: 30px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.experience {
  display: flex;
  align-items: center;
  gap: 13px;
}

.experience strong {
  color: var(--turquoise);
  font-family: var(--heading);
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 1;
}

.experience span {
  color: #c4cfda;
  font-size: 0.72rem;
  line-height: 1.3;
}

.references {
  color: #c4cfda;
  font-size: 0.73rem;
  font-weight: 600;
  line-height: 1.65;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.contact {
  background:
    radial-gradient(circle at 10% 20%, rgba(92, 196, 174, 0.11), transparent 28%),
    var(--navy-soft);
  color: var(--white);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: 90px;
  align-items: center;
}

.contact-copy .section-label {
  color: var(--turquoise);
}

.contact-copy h2 {
  color: var(--white);
  font-size: clamp(2.4rem, 4.4vw, 4.1rem);
  line-height: 1.12;
}

.contact-copy > p:not(.eyebrow) {
  max-width: 380px;
  margin-top: 24px;
  color: #bcc8d5;
  font-size: 1.05rem;
}

.contact-copy .text-link {
  margin-top: 34px;
  color: var(--white);
}

.contact-copy .text-link:hover {
  color: var(--turquoise);
}

.contact-form {
  padding: 38px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.18);
}

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

.form-row + .form-row,
.form-row + .field,
.field + .field {
  margin-top: 18px;
}

.field label {
  display: block;
  margin-bottom: 7px;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 600;
}

.optional {
  color: #7a8795;
  font-weight: 400;
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid #cbd6dc;
  border-radius: 9px;
  background: #fbfcfd;
  color: var(--ink);
}

.field input {
  min-height: 48px;
  padding: 10px 13px;
}

.field textarea {
  min-height: 132px;
  padding: 12px 13px;
  resize: vertical;
}

.field input:hover,
.field textarea:hover {
  border-color: #9daeb7;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--turquoise-dark);
  background: var(--white);
}

.field textarea::placeholder {
  color: #8a98a5;
}

.contact-verification:not(:empty) {
  min-height: 70px;
  margin-top: 18px;
}

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

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

.form-status {
  min-height: 1.6em;
  margin-top: 14px;
  font-size: 0.8rem;
  line-height: 1.5;
}

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

.form-status.is-success {
  color: #14745e;
}

.form-privacy {
  color: #73808c;
  font-size: 0.69rem;
  line-height: 1.5;
}

.form-privacy a,
.legal-document a {
  color: var(--turquoise-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-trap {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

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

.legal-page-hero {
  padding: 82px 0 88px;
  background:
    radial-gradient(circle at 85% 0, rgba(92, 196, 174, 0.12), transparent 32%),
    var(--navy-soft);
  color: var(--white);
}

.legal-page-hero .eyebrow {
  margin-bottom: 18px;
  color: var(--turquoise);
}

.legal-page-hero h1 {
  max-width: 950px;
  font-size: clamp(2.7rem, 5.4vw, 5rem);
  font-weight: 400;
}

.legal-page-section {
  padding-top: 72px;
  padding-bottom: 110px;
}

.legal-document {
  width: min(900px, 100%);
  margin-inline: auto;
  padding: 58px 64px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.legal-document section + section {
  margin-top: 38px;
  padding-top: 38px;
  border-top: 1px solid var(--line);
}

.legal-document h2 {
  margin-bottom: 16px;
  color: var(--navy);
  font-size: 1.42rem;
  letter-spacing: -0.025em;
}

.legal-document p,
.legal-document li {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.72;
}

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

.legal-document ul {
  margin: 14px 0 18px;
  padding-left: 22px;
}

.legal-document li + li {
  margin-top: 6px;
}

.legal-facts {
  list-style: none;
  padding-left: 0 !important;
}

.legal-update {
  font-weight: 600;
}

.site-footer {
  background: var(--navy);
  color: #9fadc0;
}

.site-footer .wrap {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 92px;
  font-size: 0.75rem;
}

.footer-legal {
  display: flex;
  justify-content: center;
  gap: 24px;
}

.site-footer .wrap > a {
  justify-self: end;
}

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

.footer-legal a {
  color: #c8d2dd;
}

.footer-legal a[aria-current="page"] {
  color: var(--turquoise);
}

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

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

@media (max-width: 1080px) {
  nav {
    gap: 24px;
  }

  .wrap {
    width: min(1200px, calc(100% - 56px));
  }

  .process-layout {
    grid-template-columns: 290px minmax(0, 1fr);
  }

  .process-journey {
    padding-inline: 28px;
  }

  .approach-card {
    padding: 24px 26px;
  }

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

  .domain-card {
    min-height: 270px;
  }

  .case-featured {
    min-height: 570px;
  }

  .case-copy {
    padding: 40px 36px;
  }

  .whitepaper {
    grid-template-columns: 290px minmax(0, 1fr);
    gap: 42px;
    padding: 42px;
  }

  .about-heading,
  .about-copy {
    padding: 48px 42px;
  }

  .contact-layout {
    gap: 54px;
  }
}

@media (max-width: 840px) {
  html {
    scroll-padding-top: 78px;
  }

  .header-inner {
    min-height: 74px;
  }

  .brand,
  .brand img {
    width: 112px;
  }

  .brand img {
    height: 63px;
  }

  .menu-toggle {
    display: block;
  }

  .js-nav nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 28px 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
    background: var(--navy);
  }

  .js-nav nav.is-open {
    display: flex;
  }

  .js-nav nav a {
    padding: 13px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .js-nav nav .nav-contact {
    margin-top: 12px;
    padding: 10px 14px;
    border: 1px solid rgba(255, 255, 255, 0.34);
  }

  .hero {
    min-height: calc(100svh - 74px);
  }

  .hero-inner {
    padding: 84px 0 120px;
  }

  .section {
    padding: 92px 0;
  }

  .process-layout {
    display: block;
  }

  .process-journey {
    display: none;
  }

  .approach-cards {
    position: relative;
    display: block;
    padding: 8px 24px 8px 68px;
    border-radius: var(--radius);
    background: var(--navy);
    box-shadow: var(--shadow);
  }

  .approach-cards::before {
    content: "";
    position: absolute;
    top: 42px;
    bottom: 42px;
    left: 38px;
    width: 1px;
    background: rgba(92, 196, 174, 0.64);
  }

  .approach-card {
    position: relative;
    grid-template-columns: 48px 1fr;
    gap: 18px;
    min-height: 190px;
    padding: 28px 0;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .approach-card:last-child {
    border-bottom: 0;
  }

  .approach-card::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -34px;
    width: 9px;
    height: 9px;
    border: 2px solid var(--turquoise);
    border-radius: 50%;
    background: var(--navy);
    box-shadow: 0 0 0 5px rgba(92, 196, 174, 0.12);
    transform: translateY(-50%);
  }

  .approach-card .icon-chip {
    width: 46px;
    height: 46px;
  }

  .approach-card .icon-chip svg {
    width: 22px;
    height: 22px;
  }

  .approach-card h3,
  .approach-card .card-lead {
    color: var(--white);
  }

  .approach-card .card-detail {
    color: #aebccd;
  }

  .mobile-step {
    position: absolute;
    left: -82px;
    display: block;
    color: var(--turquoise);
    font-family: var(--heading);
    font-size: 0.68rem;
    letter-spacing: 0.08em;
  }

  .case-featured,
  .case-kairena {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .case-featured .case-visual {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

  .case-kairena .case-copy {
    order: 2;
  }

  .case-kairena .case-visual {
    order: 1;
    aspect-ratio: 16 / 10;
  }

  .whitepaper {
    grid-template-columns: 240px minmax(0, 1fr);
    gap: 30px;
    padding: 34px;
  }

  .book-cover {
    min-height: 350px;
    padding: 20px;
  }

  .book-cover img {
    height: 310px;
  }

  .about-card,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .about-heading {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  }

  .contact-layout {
    gap: 46px;
  }

  .contact-copy {
    text-align: center;
  }

  .contact-copy > p:not(.eyebrow) {
    margin-inline: auto;
  }

  .contact-copy .text-link {
    margin-inline: auto;
  }
}

.menu-toggle span {
  display: inline-block;
  transition: transform 0.2s ease;
}

.menu-toggle[aria-expanded="true"] span {
  transform: rotate(45deg);
}

@media (max-width: 640px) {
  .wrap {
    width: min(100% - 32px, 1200px);
  }

  .section {
    padding: 76px 0;
  }

  .section-heading {
    margin-bottom: 40px;
  }

  .section-heading h2 {
    font-size: clamp(2.05rem, 10vw, 3rem);
  }

  .section-heading > p:last-child {
    margin-top: 18px;
    font-size: 1rem;
  }

  .hero {
    min-height: 700px;
    background-position: 54% center;
  }

  .hero-inner {
    padding: 66px 0 105px;
  }

  .hero-eyebrow {
    max-width: 280px;
    margin-bottom: 23px;
    font-size: 0.68rem;
  }

  .hero h1 {
    font-size: clamp(2.5rem, 12vw, 3.55rem);
    line-height: 1.06;
  }

  .hero-intro {
    margin-top: 22px;
    font-size: 1rem;
    line-height: 1.6;
  }

  .hero-expertise {
    max-width: 330px;
    font-size: 0.75rem;
  }

  .hero-actions {
    width: 100%;
    flex-direction: column;
    gap: 10px;
    margin-top: 28px;
  }

  .hero-actions .button {
    width: min(100%, 310px);
  }

  .hero-scroll span {
    display: none;
  }

  .approach-cards {
    padding-right: 20px;
    padding-left: 58px;
  }

  .approach-cards::before {
    left: 31px;
  }

  .approach-card {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 30px 0;
  }

  .approach-card::before {
    left: -31px;
  }

  .mobile-step {
    top: 14px;
    left: -39px;
  }

  .approach-note {
    text-align: left;
  }

  .domain-grid,
  .secondary-cases {
    grid-template-columns: 1fr;
  }

  .domain-card {
    min-height: 0;
    padding: 26px;
  }

  .domain-card .icon-chip {
    margin-bottom: 28px;
  }

  .case-featured + .case-featured {
    margin-top: 22px;
  }

  .case-copy {
    padding: 32px 24px;
  }

  .case-copy h3 {
    font-size: 1.8rem;
  }

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

  .metric-grid p {
    display: grid;
    grid-template-columns: 110px 1fr;
    align-items: center;
    min-height: 0;
  }

  .metric-grid span {
    margin-top: 0;
  }

  .case-kairena .case-visual {
    padding: 18px;
  }

  .small-case-visual {
    height: 230px;
  }

  .small-case-copy {
    padding: 26px 24px;
  }

  .whitepaper {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 34px;
    padding: 26px 22px 34px;
  }

  .book-cover {
    min-height: 0;
  }

  .book-cover img {
    height: 330px;
  }

  .book-copy {
    text-align: center;
  }

  .book-copy h3 {
    font-size: 2rem;
  }

  .book-copy .text-link {
    margin-inline: auto;
  }

  .pdf-meta {
    display: none;
  }

  .about-heading {
    padding: 36px 24px 34px;
  }

  .about-copy {
    padding: 36px 24px 40px;
  }

  .about-heading h2 {
    font-size: 2.35rem;
  }

  .about-bottom {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 26px 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .form-row + .form-row,
  .form-row + .field,
  .field + .field {
    margin-top: 15px;
  }

  .site-footer .wrap {
    grid-template-columns: 1fr auto;
    gap: 8px 16px;
    min-height: 106px;
  }

  .footer-legal {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 6px 18px;
  }

  .legal-page-hero {
    padding: 64px 0 68px;
  }

  .legal-page-section {
    padding-top: 34px;
    padding-bottom: 72px;
  }

  .legal-document {
    padding: 32px 24px;
    border-radius: 18px;
  }

  .legal-document section + section {
    margin-top: 30px;
    padding-top: 30px;
  }
}

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

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