@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url("../fonts/manrope-latin-variable.woff2") format("woff2");
}

:root {
  --navy: #000925;
  --navy-2: #071238;
  --cyan: #47c6e5;
  --cyan-text: #08758c;
  --pink: #de4699;
  --pink-text: #a92f72;
  --ink: #11182f;
  --muted: #566377;
  --mist: #f3f7fa;
  --line: #dfe7ee;
  --white: #ffffff;
  --paper: #f7f7f4;
  --gradient: linear-gradient(110deg, var(--cyan), var(--pink));
  --heading: "Manrope", "Aptos Display", "Segoe UI", sans-serif;
  --body: "Manrope", "Aptos", "Segoe UI", Arial, sans-serif;
  --header-height: 82px;
  --content-width: 1320px;
  --section-space: clamp(76px, 7.5vw, 112px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

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

button {
  font: inherit;
}

:focus-visible {
  outline: 3px solid #00677d;
  outline-offset: 4px;
  box-shadow: 0 0 0 2px var(--white);
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 12px 16px;
  border-radius: 8px;
  color: var(--white);
  background: var(--navy);
  font-weight: 700;
  text-decoration: none;
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

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

.wrap {
  width: calc(100% - clamp(32px, 6vw, 80px));
  max-width: var(--content-width);
  margin-inline: auto;
}

.logo {
  width: 200px;
  min-width: 148px;
  height: auto;
}

.eyebrow {
  color: var(--cyan-text);
  font-family: var(--heading);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--navy);
  font-family: var(--heading);
  font-weight: 800;
  text-wrap: balance;
}

h1 {
  font-size: clamp(52px, 6.8vw, 100px);
  line-height: 0.92;
  letter-spacing: -0.052em;
}

h2 {
  font-size: clamp(38px, 4.7vw, 66px);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

h3 {
  font-size: clamp(20px, 1.65vw, 23px);
  line-height: 1.16;
  letter-spacing: -0.027em;
}

p {
  margin: 0;
}

.lead {
  max-width: 780px;
  color: var(--muted);
  font-size: clamp(18px, 1.55vw, 22px);
  line-height: 1.52;
}

.small {
  color: var(--muted);
  font-size: 15px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 25px;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.005em;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.btn-primary {
  color: var(--navy);
  background: var(--gradient);
  box-shadow: 0 12px 32px rgba(71, 198, 229, 0.24);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(71, 198, 229, 0.32);
}

.btn-secondary {
  border-color: rgba(0, 9, 37, 0.18);
  background: rgba(255, 255, 255, 0.84);
}

.btn-secondary:hover {
  border-color: var(--cyan-text);
  transform: translateY(-2px);
}

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

[data-reveal] {
  opacity: 1;
  transform: none;
}

.reveal-enabled [data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal-enabled [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

#top,
#main-content,
#approach,
#capabilities,
#contact {
  scroll-margin-top: calc(var(--header-height) + 18px);
}

.nav {
  position: sticky;
  z-index: 30;
  top: 0;
  border-bottom: 1px solid rgba(0, 9, 37, 0.08);
  background: rgba(247, 247, 244, 0.94);
  backdrop-filter: blur(18px);
}

.nav-row {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  gap: 28px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-links a,
.nav-cta {
  font-size: 14px;
  font-weight: 750;
  line-height: 1.2;
  text-decoration: none;
}

.nav-links a:hover {
  color: var(--cyan-text);
}

.nav-cta {
  padding: 11px 18px;
  border: 1px solid rgba(0, 9, 37, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.52);
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(0, 9, 37, 0.16);
  border-radius: 50%;
  color: var(--navy);
  background: var(--white);
  cursor: pointer;
}

.nav-toggle-icon,
.nav-toggle-icon::before,
.nav-toggle-icon::after {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle-icon {
  position: relative;
}

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

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

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

.nav-toggle[aria-expanded="true"] .nav-toggle-icon {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-icon::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-icon::after {
  top: 0;
  transform: rotate(-45deg);
}

.hero {
  padding: clamp(68px, 5.5vw, 84px) 0 clamp(78px, 6vw, 92px);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(400px, 0.9fr);
  align-items: start;
  gap: clamp(52px, 5.5vw, 80px);
}

.hero-grid > div {
  min-width: 0;
}

.hero h1 {
  max-width: 800px;
  font-size: clamp(64px, 6.8vw, 100px);
}

.hero h1 em {
  color: transparent;
  background: var(--gradient);
  background-clip: text;
  font-style: normal;
  -webkit-background-clip: text;
}

.hero-copy {
  max-width: 620px;
  margin: 3px 0 30px;
}

.hero-copy .lead {
  margin-bottom: 26px;
}

.editorial-rule {
  height: 1px;
  margin: 40px 0 28px;
  background: rgba(0, 9, 37, 0.14);
}

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

.proof strong {
  display: block;
  margin-bottom: 6px;
  color: var(--navy);
  font-family: var(--heading);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.25;
}

.proof span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.hero-art {
  position: relative;
  height: clamp(460px, 34vw, 540px);
  overflow: hidden;
  border-radius: 280px 280px 26px 26px;
  background: var(--navy);
}

.hero-art::before {
  position: absolute;
  top: 13%;
  left: -28%;
  width: 108%;
  height: auto;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, rgba(71, 198, 229, 0.9), rgba(71, 198, 229, 0.04) 66%, transparent 67%);
  content: "";
}

.hero-art::after {
  position: absolute;
  right: -24%;
  bottom: -12%;
  width: 88%;
  height: auto;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, rgba(222, 70, 153, 0.9), rgba(222, 70, 153, 0.04) 65%, transparent 66%);
  content: "";
}

.art-card {
  position: absolute;
  z-index: 2;
  right: clamp(24px, 3vw, 38px);
  bottom: clamp(24px, 3vw, 38px);
  left: clamp(24px, 3vw, 38px);
  padding: clamp(22px, 2.3vw, 28px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 22px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(12px);
}

.art-card h3 {
  color: var(--white);
}

.art-card p {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 15px;
  line-height: 1.45;
}

.section {
  padding: var(--section-space) 0;
}

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

.two-col {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(56px, 7vw, 96px);
}

.two-col h2 {
  position: sticky;
  top: calc(var(--header-height) + 34px);
}

.large-copy {
  max-width: 900px;
  color: var(--navy);
  font-size: clamp(25px, 2.75vw, 39px);
  font-weight: 520;
  line-height: 1.32;
  letter-spacing: -0.026em;
}

.large-copy mark {
  color: var(--pink-text);
  background: none;
}

.principles {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 46px;
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

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

.principle .num {
  margin-bottom: 36px;
  color: var(--cyan-text);
  font-family: var(--heading);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.14em;
}

.principle p,
.process p,
.cap-row p {
  margin-top: 11px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.process {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 54px;
  border-top: 1px solid rgba(0, 9, 37, 0.14);
}

.process article {
  min-height: 218px;
  padding: 27px 24px 30px;
  border-right: 1px solid rgba(0, 9, 37, 0.14);
}

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

.process .step-no {
  margin-bottom: 43px;
  color: var(--pink-text);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.cap-list {
  margin-top: 6px;
  border-top: 1px solid rgba(0, 9, 37, 0.14);
}

.cap-row {
  display: grid;
  grid-template-columns: 50px minmax(210px, 0.8fr) minmax(0, 1.2fr);
  align-items: start;
  padding: 25px 0;
  gap: 24px;
  border-bottom: 1px solid rgba(0, 9, 37, 0.14);
}

.cap-row b {
  color: var(--cyan-text);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.cap-row p {
  margin-top: 0;
}

.feature {
  padding: clamp(80px, 7vw, 104px) 0;
  color: var(--white);
  background: var(--navy);
}

.feature-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
  align-items: center;
  gap: clamp(56px, 6vw, 84px);
}

.feature h2 {
  color: var(--white);
}

.feature .eyebrow {
  color: var(--cyan);
}

.feature .lead {
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.76);
}

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

.hex {
  min-height: 106px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.05);
}

.hex b {
  display: block;
  margin-bottom: 11px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.hex span {
  font-size: 16px;
  font-weight: 750;
}

.cta {
  padding: clamp(82px, 7.5vw, 112px) 0;
  background: linear-gradient(110deg, #eefafd, var(--white) 50%, #fff0f7);
}

.cta-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 48px;
}

.cta h2 {
  max-width: 980px;
}

footer {
  padding: 32px 0;
  border-top: 1px solid rgba(0, 9, 37, 0.1);
  color: var(--muted);
  background: var(--paper);
  font-size: 14px;
}

.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.footer-row .logo {
  width: 180px;
}

.footer-copy {
  max-width: 470px;
  line-height: 1.5;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 12px 18px;
}

.footer-button {
  padding: 0;
  border: 0;
  color: inherit;
  background: transparent;
  text-decoration: underline;
  cursor: pointer;
}

.legal-page {
  min-height: 70vh;
  padding: clamp(72px, 7vw, 96px) 0 clamp(88px, 8vw, 120px);
  background: var(--white);
}

.legal-header {
  max-width: 900px;
  margin-bottom: clamp(46px, 5vw, 64px);
}

.legal-header h1 {
  margin: 14px 0 22px;
  color: var(--navy);
  font-size: clamp(46px, 6.2vw, 78px);
}

.legal-header .lead {
  max-width: 760px;
}

.legal-content {
  max-width: 900px;
  color: #273148;
  font-size: 17px;
  line-height: 1.68;
}

.legal-content section + section {
  margin-top: 40px;
}

.legal-content h2 {
  margin-bottom: 13px;
  font-size: clamp(27px, 3vw, 36px);
}

.legal-content p + p,
.legal-content ul + p,
.legal-content p + ul {
  margin-top: 14px;
}

.legal-content ul {
  margin-bottom: 0;
  padding-left: 23px;
}

.legal-content li + li {
  margin-top: 8px;
}

.cookie-banner {
  position: fixed;
  z-index: 60;
  right: 20px;
  bottom: 20px;
  left: 20px;
  max-width: 800px;
  margin: 0 auto;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  color: var(--white);
  background: rgba(0, 9, 37, 0.97);
  box-shadow: 0 24px 70px rgba(0, 9, 37, 0.32);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 26px;
}

.cookie-banner h2 {
  margin-bottom: 7px;
  color: var(--white);
  font-size: 21px;
  letter-spacing: -0.025em;
}

.cookie-banner p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  line-height: 1.55;
}

.cookie-banner a {
  color: var(--cyan);
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.cookie-button {
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  color: var(--white);
  background: transparent;
  font-size: 13px;
  font-weight: 750;
  cursor: pointer;
}

.cookie-button.primary {
  border-color: transparent;
  color: var(--navy);
  background: var(--gradient);
}

.error-page {
  display: grid;
  min-height: 72vh;
  place-items: center;
  padding: clamp(72px, 8vw, 100px) 0;
  text-align: center;
}

.error-page h1 {
  margin: 14px 0 20px;
  color: var(--navy);
  font-size: clamp(72px, 15vw, 148px);
}

.error-page .lead {
  margin: 0 auto 30px;
}

@media (max-width: 1120px) {
  :root {
    --header-height: 80px;
  }

  .nav-row {
    gap: 18px;
  }

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

  .nav-links {
    position: absolute;
    top: calc(100% + 1px);
    left: 50%;
    display: none;
    width: 100vw;
    padding: 14px max(24px, calc((100vw - var(--content-width)) / 2));
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border-bottom: 1px solid rgba(0, 9, 37, 0.12);
    background: rgba(247, 247, 244, 0.995);
    box-shadow: 0 20px 36px rgba(0, 9, 37, 0.12);
    transform: translateX(-50%);
  }

  .nav-links[data-open="true"] {
    display: flex;
  }

  .nav-links a {
    min-height: 52px;
    padding: 15px 4px;
    border-bottom: 1px solid rgba(0, 9, 37, 0.08);
    font-size: 16px;
  }

  .nav-links a:last-child {
    border-bottom: 0;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 58px;
  }

  .hero h1 {
    max-width: 980px;
    font-size: clamp(62px, 8vw, 88px);
  }

  .hero-grid > div:last-child {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(380px, 1.1fr);
    align-items: start;
    gap: 44px;
  }

  .hero-copy {
    margin: 4px 0 0;
  }

  .hero-art {
    height: clamp(430px, 48vw, 500px);
  }

  .two-col,
  .feature-grid,
  .cta-row {
    grid-template-columns: 1fr;
  }

  .two-col {
    gap: 42px;
  }

  .two-col h2 {
    position: static;
    max-width: 920px;
  }

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

  .process article:nth-child(2n) {
    border-right: 0;
  }

  .process article:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(0, 9, 37, 0.14);
  }

  .feature-grid {
    gap: 48px;
  }

  .feature-grid > div:first-child {
    max-width: 820px;
  }

  .hex-grid {
    max-width: 820px;
  }

  .cta-row {
    align-items: start;
    gap: 30px;
  }
}

@media (max-width: 820px) {
  .logo {
    width: 182px;
  }

  .hero {
    padding-top: 60px;
  }

  .hero-grid {
    gap: 50px;
  }

  .hero-grid > div:last-child {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero-copy {
    max-width: 760px;
  }

  .hero-art {
    width: 100%;
    max-width: 650px;
    height: clamp(420px, 70vw, 500px);
  }

  .proof-row {
    gap: 20px;
  }

  .cap-row {
    grid-template-columns: 42px minmax(190px, 0.85fr) minmax(0, 1.15fr);
    gap: 20px;
  }

  .footer-row {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .cookie-layout {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 700px) {
  :root {
    --header-height: 76px;
    --section-space: 70px;
  }

  .wrap {
    width: calc(100% - 28px);
  }

  .logo {
    width: 168px;
  }

  .nav-row {
    gap: 12px;
  }

  .nav-cta {
    display: none;
  }

  .nav-links {
    padding-right: 14px;
    padding-left: 14px;
  }

  .hero {
    padding: 54px 0 68px;
  }

  .hero-grid {
    gap: 44px;
  }

  .hero h1 {
    font-size: clamp(48px, 13.8vw, 66px);
    line-height: 0.94;
  }

  .editorial-rule {
    margin: 34px 0 24px;
  }

  .proof-row {
    grid-template-columns: 1fr;
    gap: 19px;
  }

  .proof strong {
    margin-bottom: 3px;
  }

  .hero-copy .lead {
    margin-bottom: 22px;
  }

  .hero-art {
    height: clamp(390px, 112vw, 470px);
    border-radius: 220px 220px 24px 24px;
  }

  .art-card {
    right: 20px;
    bottom: 20px;
    left: 20px;
    padding: 20px;
  }

  .principles,
  .process,
  .hex-grid {
    grid-template-columns: 1fr;
  }

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

  .principle .num {
    margin-bottom: 27px;
  }

  .process {
    margin-top: 40px;
  }

  .process article,
  .process article:nth-child(-n + 2) {
    min-height: 0;
    padding: 24px 2px 27px;
    border-right: 0;
    border-bottom: 1px solid rgba(0, 9, 37, 0.14);
  }

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

  .process .step-no {
    margin-bottom: 22px;
  }

  .cap-list {
    margin-top: 0;
  }

  .cap-row {
    grid-template-columns: 34px minmax(0, 1fr);
    padding: 22px 0;
    gap: 10px 16px;
  }

  .cap-row p {
    grid-column: 2;
  }

  .feature {
    padding: 74px 0;
  }

  .feature-grid {
    gap: 40px;
  }

  .hex {
    min-height: 0;
    padding: 22px;
  }

  .cta {
    padding: 76px 0;
  }

  .cta h2 {
    max-width: 620px;
  }

  footer {
    padding: 28px 0;
  }

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

  .legal-header {
    margin-bottom: 44px;
  }

  .legal-content {
    font-size: 16px;
  }

  .cookie-banner {
    right: 10px;
    bottom: 10px;
    left: 10px;
    padding: 19px;
  }

  .cookie-actions,
  .cookie-button {
    width: 100%;
  }
}

@media (max-width: 430px) {
  .lead {
    font-size: 17px;
  }

  .btn {
    min-height: 52px;
    padding-right: 21px;
    padding-left: 21px;
  }

  .actions {
    gap: 10px;
  }

  .principles {
    margin-top: 38px;
  }

  .large-copy {
    font-size: 25px;
  }

  .legal-header h1 {
    font-size: 44px;
  }

  .error-page h1 {
    font-size: 88px;
  }
}

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