:root {
  color-scheme: light;
  --navy: #071527;
  --navy-2: #0b2038;
  --ink: #0f1828;
  --blue: #1767d1;
  --blue-2: #0d55ba;
  --sky: #59b8ff;
  --gold: #f5b84b;
  --coral: #ff765f;
  --green: #55c78a;
  --paper: #f5f8fc;
  --white: #ffffff;
  --muted: #647184;
  --line: rgba(15, 24, 40, 0.14);
  --line-strong: rgba(15, 24, 40, 0.22);
  --shadow: 0 24px 80px rgba(7, 21, 39, 0.14);
  --shadow-lift: 0 34px 90px rgba(7, 21, 39, 0.2);
  --ring: 0 0 0 4px rgba(245, 184, 75, 0.24);
  --max: 1180px;
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: linear-gradient(180deg, #f9fbff 0, var(--paper) 46%, #eef4fb 100%);
  color: var(--ink);
  letter-spacing: 0;
}

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

svg {
  display: block;
}

a {
  color: inherit;
}

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

.site-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-main {
  flex: 1;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(7, 21, 39, 0.08);
  backdrop-filter: blur(18px);
  transition: box-shadow 200ms var(--ease), background 200ms var(--ease), border-color 200ms var(--ease);
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(7, 21, 39, 0.12);
  box-shadow: 0 14px 38px rgba(7, 21, 39, 0.1);
}

.nav,
.wrap,
.footer-inner {
  width: min(100% - 32px, var(--max));
  margin-inline: auto;
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--navy);
}

.brand-emblem {
  width: 60px;
  height: 60px;
  flex: 0 0 60px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(7, 21, 39, 0.12);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(7, 21, 39, 0.16);
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease), border-color 220ms var(--ease);
}

.brand-emblem img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-wordmark {
  display: flex;
  flex-direction: column;
  line-height: 0.92;
  font-size: 20px;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand-wordmark::after {
  content: "";
  width: 110px;
  height: 4px;
  margin-top: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue) 0 78%, var(--gold) 78% 100%);
  transform-origin: left center;
  transition: transform 220ms var(--ease);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: #344256;
  font-size: 14px;
  font-weight: 760;
}

.nav-links a {
  position: relative;
  text-decoration: none;
  transition: color 180ms var(--ease);
}

.nav-links a:not(.nav-cta)::after,
.footer a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -7px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 200ms var(--ease);
}

.nav-cta,
.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 0 18px;
  font-weight: 850;
  text-decoration: none;
  cursor: pointer;
  transition: transform 190ms var(--ease), box-shadow 190ms var(--ease), border-color 190ms var(--ease), background 190ms var(--ease), color 190ms var(--ease);
  white-space: nowrap;
}

.button svg {
  width: 18px;
  height: 18px;
  transition: transform 190ms var(--ease);
}

.nav-cta,
.button-primary {
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  color: var(--white);
  box-shadow: 0 16px 36px rgba(23, 103, 209, 0.26);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.28);
}

.button-light {
  background: var(--white);
  color: var(--navy);
  border-color: rgba(7, 21, 39, 0.12);
}

.button-ghost {
  color: var(--navy);
  background: rgba(255, 255, 255, 0.64);
  border-color: rgba(7, 21, 39, 0.14);
}

.hero {
  position: relative;
  min-height: min(780px, 86svh);
  isolation: isolate;
  overflow: hidden;
  background: var(--navy);
  color: var(--white);
}

.hero::before,
.page-hero::before,
.section-watermark::before,
.join-panel::before {
  content: "";
  position: absolute;
  pointer-events: none;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

.hero::before {
  right: max(-60px, calc((100vw - var(--max)) / 2 - 90px));
  bottom: -120px;
  width: min(560px, 54vw);
  aspect-ratio: 1;
  z-index: -1;
  background-image: url("watermark-light.png");
  opacity: 0.08;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -3;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(7, 21, 39, 0.97) 0%, rgba(7, 21, 39, 0.86) 34%, rgba(7, 21, 39, 0.4) 70%, rgba(7, 21, 39, 0.2) 100%),
    linear-gradient(180deg, rgba(7, 21, 39, 0.04), rgba(7, 21, 39, 0.64));
}

.hero-inner {
  width: min(100% - 32px, var(--max));
  min-height: inherit;
  display: grid;
  align-items: center;
  margin-inline: auto;
  padding: 72px 0 92px;
}

.hero-copy {
  width: min(760px, 100%);
}

.eyebrow,
.kicker,
.mini-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  color: #d8e9ff;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 3px;
  border-radius: 999px;
  background: var(--gold);
}

h1 {
  max-width: 720px;
  margin-bottom: 22px;
  font-size: clamp(46px, 7vw, 92px);
  line-height: 0.96;
  letter-spacing: 0;
}

.hero-lede {
  max-width: 680px;
  color: #d8e5f6;
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.52;
}

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

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  width: min(860px, 100%);
  margin-top: 52px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.16);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
}

.proof-item {
  min-height: 138px;
  padding: 20px;
  background: rgba(7, 21, 39, 0.48);
  backdrop-filter: blur(12px);
  transition: background 220ms var(--ease), transform 220ms var(--ease);
}

.proof-icon,
.icon-tile,
.ethics-number,
.check {
  display: grid;
  place-items: center;
  border-radius: 8px;
}

.proof-icon {
  position: relative;
  width: 56px;
  height: 56px;
  margin-bottom: 18px;
  color: #ffe1a2;
  background:
    linear-gradient(145deg, rgba(245, 184, 75, 0.28), rgba(23, 103, 209, 0.1)),
    rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(245, 184, 75, 0.34);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 14px 30px rgba(0, 0, 0, 0.18);
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease), border-color 220ms var(--ease), background 220ms var(--ease);
}

.proof-icon::after {
  content: "";
  position: absolute;
  inset: 7px;
  border: 1px solid currentColor;
  border-radius: 6px;
  opacity: 0.18;
}

.proof-icon svg {
  position: relative;
  z-index: 1;
  width: 30px;
  height: 30px;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.16));
}

.proof-item:nth-child(2) .proof-icon {
  color: #d9ebff;
  background:
    linear-gradient(145deg, rgba(89, 184, 255, 0.22), rgba(245, 184, 75, 0.1)),
    rgba(255, 255, 255, 0.08);
  border-color: rgba(89, 184, 255, 0.28);
}

.proof-item:nth-child(3) .proof-icon {
  color: #b6ffd7;
  background:
    linear-gradient(145deg, rgba(85, 199, 138, 0.24), rgba(89, 184, 255, 0.1)),
    rgba(255, 255, 255, 0.08);
  border-color: rgba(85, 199, 138, 0.3);
}

.proof-item:nth-child(4) .proof-icon {
  color: #ffc7bc;
  background:
    linear-gradient(145deg, rgba(255, 118, 95, 0.24), rgba(245, 184, 75, 0.1)),
    rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 118, 95, 0.3);
}

.proof-item strong {
  display: block;
  color: var(--white);
  font-size: 21px;
  line-height: 1.1;
}

.proof-item > span:not(.proof-icon) {
  display: block;
  margin-top: 8px;
  color: #bed3ec;
  font-size: 13px;
  line-height: 1.45;
}

.section {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}

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

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

.lane-section {
  background:
    linear-gradient(180deg, rgba(7, 21, 39, 0.98), rgba(5, 16, 29, 0.99)),
    var(--navy);
}

.lane-section::before,
.lane-section::after {
  content: "";
  position: absolute;
  pointer-events: none;
  background: url("watermark-light.png") center / contain no-repeat;
}

.lane-section::before {
  right: max(-130px, calc((100vw - var(--max)) / 2 - 190px));
  top: -110px;
  width: min(560px, 45vw);
  aspect-ratio: 1;
  opacity: 0.06;
}

.lane-section::after {
  left: max(-220px, calc((100vw - var(--max)) / 2 - 300px));
  bottom: -220px;
  width: min(500px, 42vw);
  aspect-ratio: 1;
  opacity: 0.04;
  transform: scaleX(-1);
}

.lane-section .wrap {
  position: relative;
  z-index: 1;
}

.lane-section .section-heading {
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
}

.lane-section .section-copy {
  color: #d0def0;
}

.section-watermark::before {
  right: calc((100vw - min(100% - 32px, var(--max))) / 2);
  bottom: -180px;
  width: 520px;
  aspect-ratio: 1;
  background-image: url("watermark-dark.png");
  opacity: 0.055;
}

.command-section {
  background:
    linear-gradient(180deg, #eef4fb 0%, #f8fbff 42%, #edf3fa 100%);
}

.command-section::before,
.command-section::after {
  content: "";
  position: absolute;
  pointer-events: none;
  background: url("watermark-dark.png") center / contain no-repeat;
}

.command-section::before {
  right: max(-120px, calc((100vw - var(--max)) / 2 - 160px));
  top: 34px;
  width: min(520px, 42vw);
  aspect-ratio: 1;
  opacity: 0.045;
}

.command-section::after {
  left: max(-180px, calc((100vw - var(--max)) / 2 - 260px));
  bottom: -160px;
  width: min(440px, 38vw);
  aspect-ratio: 1;
  opacity: 0.035;
  transform: scaleX(-1);
}

.command-section .wrap {
  position: relative;
  z-index: 1;
}

.command-section .section-heading {
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(15, 24, 40, 0.1);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(280px, 0.58fr);
  align-items: end;
  gap: 44px;
  margin-bottom: 46px;
}

.kicker,
.mini-label {
  color: var(--blue);
}

.section-ink .kicker,
.section-ink .mini-label {
  color: var(--gold);
}

h2 {
  margin-bottom: 0;
  color: var(--navy);
  font-size: clamp(34px, 4.3vw, 58px);
  line-height: 1.02;
  letter-spacing: 0;
}

.section-ink h2,
.section-ink h3 {
  color: var(--white);
}

.section-copy {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.section-ink .section-copy {
  color: #c3d2e5;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  gap: 54px;
  align-items: start;
}

.story {
  color: #2e3c4d;
  font-size: 19px;
  line-height: 1.8;
}

.story p {
  margin-bottom: 22px;
}

.section-ink .story {
  color: #d5e4f7;
}

.panel {
  position: relative;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.section-ink .panel {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: none;
}

.panel h3 {
  color: var(--navy);
  font-size: 26px;
  line-height: 1.15;
}

.section-ink .panel h3 {
  color: var(--white);
}

.signal-list,
.footer-list,
.plain-list {
  display: grid;
  gap: 16px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.signal-list li {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 7px;
  margin: 0 -7px;
  border-radius: 8px;
  color: #344256;
  line-height: 1.6;
  transition: background 190ms var(--ease), transform 190ms var(--ease);
}

.section-ink .signal-list li {
  color: #d5e4f7;
}

.signal-list b,
.plain-list b {
  color: var(--navy);
}

.section-ink .signal-list b,
.section-ink .plain-list b {
  color: var(--white);
}

.check {
  width: 38px;
  height: 38px;
  background: rgba(85, 199, 138, 0.16);
  color: #0d8750;
  box-shadow: inset 0 0 0 1px rgba(85, 199, 138, 0.2);
}

.check svg,
.ethics-number svg,
.icon-tile svg {
  width: 22px;
  height: 22px;
}

.feature-grid,
.lane-grid,
.ethics-grid,
.privacy-grid,
.page-grid {
  display: grid;
  gap: 16px;
}

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

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

.lane-section .lane-grid {
  gap: 18px;
}

.ethics-grid,
.privacy-grid,
.page-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 42px rgba(7, 21, 39, 0.08);
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease), border-color 220ms var(--ease), background 220ms var(--ease);
}

.card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.26), transparent 42%);
  opacity: 0;
  transition: opacity 220ms var(--ease);
}

.feature-card,
.lane-card,
.ethics-card,
.privacy-card,
.page-card {
  padding: 26px;
}

.lane-card {
  padding-top: 28px;
}

.lane-section .lane-card {
  isolation: isolate;
  min-height: 312px;
  padding: 32px 28px 30px;
  background:
    linear-gradient(180deg, rgba(34, 54, 77, 0.92), rgba(18, 35, 55, 0.9)),
    rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 28px 70px rgba(0, 0, 0, 0.22);
}

.lane-section .lane-card > * {
  position: relative;
  z-index: 1;
}

.feature-card {
  isolation: isolate;
  min-height: 302px;
  padding: 34px 30px 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 250, 255, 0.94)),
    var(--white);
  box-shadow:
    0 24px 58px rgba(7, 21, 39, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.feature-card > * {
  position: relative;
  z-index: 1;
}

.lane-card::before,
.feature-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: var(--blue);
  transition: height 220ms var(--ease);
}

.lane-card:nth-child(2)::before,
.feature-card:nth-child(2)::before {
  background: var(--gold);
}

.lane-card:nth-child(3)::before,
.feature-card:nth-child(3)::before {
  background: var(--green);
}

.lane-card:nth-child(4)::before,
.feature-card:nth-child(4)::before {
  background: var(--coral);
}

.feature-card::after {
  inset: auto -56px -72px auto;
  width: 210px;
  height: 210px;
  border-radius: 0;
  background: url("watermark-dark.png") center / contain no-repeat;
  opacity: 0.055;
  transform: rotate(-7deg);
}

.lane-section .lane-card::after {
  inset: auto -66px -76px auto;
  width: 220px;
  height: 220px;
  border-radius: 0;
  background: url("watermark-light.png") center / contain no-repeat;
  opacity: 0.05;
  transform: rotate(-7deg);
}

.icon-tile {
  position: relative;
  width: 58px;
  height: 58px;
  margin-bottom: 26px;
  color: var(--blue);
  background: #edf5ff;
  border: 1px solid rgba(23, 103, 209, 0.13);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease), background 220ms var(--ease);
}

.feature-card .icon-tile {
  width: 76px;
  height: 76px;
  margin-bottom: 32px;
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(23, 103, 209, 0.13), rgba(89, 184, 255, 0.08)),
    #eef6ff;
  border-color: rgba(23, 103, 209, 0.22);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.78),
    0 18px 38px rgba(23, 103, 209, 0.14);
}

.feature-card .icon-tile::after {
  inset: 10px;
  border-radius: 7px;
  opacity: 0.22;
}

.feature-card .icon-tile svg {
  width: 38px;
  height: 38px;
  filter: drop-shadow(0 3px 10px rgba(7, 21, 39, 0.12));
}

.lane-section .icon-tile {
  width: 74px;
  height: 74px;
  margin-bottom: 30px;
  color: #d9ebff;
  background:
    linear-gradient(145deg, rgba(89, 184, 255, 0.18), rgba(255, 255, 255, 0.08)),
    rgba(255, 255, 255, 0.08);
  border-color: rgba(89, 184, 255, 0.34);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 18px 38px rgba(0, 0, 0, 0.18);
}

.lane-section .icon-tile::after {
  inset: 10px;
  border-radius: 7px;
  opacity: 0.22;
}

.lane-section .icon-tile svg {
  width: 38px;
  height: 38px;
  filter: drop-shadow(0 3px 10px rgba(0, 0, 0, 0.18));
}

.icon-tile::after {
  content: "";
  position: absolute;
  inset: 7px;
  border-radius: 6px;
  border: 1px solid currentColor;
  opacity: 0.16;
}

.card:nth-child(2) .icon-tile,
.tone-gold .icon-tile {
  background: rgba(245, 184, 75, 0.18);
  border-color: rgba(245, 184, 75, 0.24);
  color: #a46504;
}

.feature-card:nth-child(2) .icon-tile {
  background:
    linear-gradient(145deg, rgba(245, 184, 75, 0.23), rgba(255, 255, 255, 0.18)),
    #fff6df;
  border-color: rgba(245, 184, 75, 0.36);
  color: #a46504;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.78),
    0 18px 38px rgba(245, 184, 75, 0.16);
}

.lane-section .lane-card:nth-child(2) .icon-tile {
  color: #ffe1a2;
  background:
    linear-gradient(145deg, rgba(245, 184, 75, 0.24), rgba(255, 255, 255, 0.08)),
    rgba(245, 184, 75, 0.08);
  border-color: rgba(245, 184, 75, 0.42);
}

.card:nth-child(3) .icon-tile,
.tone-green .icon-tile {
  background: rgba(85, 199, 138, 0.16);
  border-color: rgba(85, 199, 138, 0.22);
  color: #0d8750;
}

.feature-card:nth-child(3) .icon-tile {
  background:
    linear-gradient(145deg, rgba(85, 199, 138, 0.22), rgba(255, 255, 255, 0.14)),
    #eafaf2;
  border-color: rgba(85, 199, 138, 0.34);
  color: #0d8750;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.78),
    0 18px 38px rgba(85, 199, 138, 0.15);
}

.lane-section .lane-card:nth-child(3) .icon-tile {
  color: #b6ffd7;
  background:
    linear-gradient(145deg, rgba(85, 199, 138, 0.24), rgba(255, 255, 255, 0.08)),
    rgba(85, 199, 138, 0.08);
  border-color: rgba(85, 199, 138, 0.38);
}

.card:nth-child(4) .icon-tile,
.tone-coral .icon-tile {
  background: rgba(255, 118, 95, 0.14);
  border-color: rgba(255, 118, 95, 0.22);
  color: #bc3f2b;
}

.feature-card:nth-child(4) .icon-tile {
  background:
    linear-gradient(145deg, rgba(255, 118, 95, 0.22), rgba(255, 255, 255, 0.16)),
    #fff0ed;
  border-color: rgba(255, 118, 95, 0.34);
  color: #bc3f2b;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.78),
    0 18px 38px rgba(255, 118, 95, 0.14);
}

.lane-section .lane-card:nth-child(4) .icon-tile {
  color: #ffc7bc;
  background:
    linear-gradient(145deg, rgba(255, 118, 95, 0.24), rgba(255, 255, 255, 0.08)),
    rgba(255, 118, 95, 0.08);
  border-color: rgba(255, 118, 95, 0.38);
}

.lane-section .lane-card h3 {
  font-size: 26px;
}

.lane-section .lane-card p {
  color: #d5e4f7;
  font-size: 17px;
}

.feature-card h3 {
  max-width: 12ch;
  margin-bottom: 14px;
  font-size: 25px;
}

.feature-card p {
  color: #536277;
  font-size: 17px;
}

h3 {
  margin-bottom: 12px;
  color: var(--navy);
  font-size: 23px;
  line-height: 1.2;
  letter-spacing: 0;
}

.card p,
.privacy-card p,
.page-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.section-ink .card {
  background: rgba(255, 255, 255, 0.065);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: none;
}

.section-ink .card p {
  color: #c3d2e5;
}

.ethics-number {
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  background: rgba(245, 184, 75, 0.16);
  color: var(--gold);
  border: 1px solid rgba(245, 184, 75, 0.22);
}

.privacy-meta {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.command-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--line);
  box-shadow: 0 20px 52px rgba(7, 21, 39, 0.09);
}

.command-item {
  min-height: 140px;
  padding: 26px;
  background: var(--white);
}

.command-item strong {
  display: block;
  color: var(--navy);
  font-size: 28px;
  line-height: 1.05;
}

.command-item span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.55;
}

.brief-hero {
  background:
    linear-gradient(135deg, rgba(7, 21, 39, 0.98), rgba(13, 55, 100, 0.92)),
    var(--navy);
}

.brief-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
  box-shadow: var(--shadow);
}

.brief-strip-item {
  min-height: 214px;
  padding: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 250, 255, 0.94)),
    var(--white);
}

.brief-strip-item span {
  display: inline-flex;
  margin-bottom: 30px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.brief-strip-item strong {
  display: block;
  color: var(--navy);
  font-size: 30px;
  line-height: 1.05;
}

.brief-strip-item p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

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

.brief-card {
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 250, 255, 0.95)),
    var(--white);
}

.brief-card .icon-tile {
  width: 60px;
  height: 60px;
}

.join-panel {
  position: relative;
  overflow: hidden;
  padding: 54px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(23, 103, 209, 0.96), rgba(7, 21, 39, 0.98)),
    var(--navy);
  color: var(--white);
  box-shadow: var(--shadow);
}

.join-panel::before {
  right: -100px;
  bottom: -160px;
  width: 500px;
  aspect-ratio: 1;
  background-image: url("watermark-light.png");
  opacity: 0.1;
}

.join-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.72fr);
  gap: 40px;
  align-items: start;
}

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

.join-panel p {
  color: #d9e7f8;
  font-size: 18px;
  line-height: 1.7;
}

.join-panel .panel p {
  color: var(--muted);
  font-size: 16px;
}

.join-panel .panel .signal-list li {
  color: #344256;
}

.join-panel .panel .signal-list b {
  color: var(--navy);
}

.join-form {
  display: grid;
  gap: 14px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.16);
  transition: border-color 220ms var(--ease), background 220ms var(--ease), transform 220ms var(--ease), box-shadow 220ms var(--ease);
}

label {
  display: grid;
  gap: 8px;
  color: #e9f2ff;
  font-size: 13px;
  font-weight: 850;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 12px 13px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  font: inherit;
  transition: border-color 180ms var(--ease), box-shadow 180ms var(--ease), background 180ms var(--ease), transform 180ms var(--ease);
}

textarea {
  min-height: 124px;
  resize: vertical;
}

.screen-reader-field {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  clip-path: inset(50%);
}

input:focus,
select:focus,
textarea:focus,
.button:focus-visible,
.nav-cta:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(245, 184, 75, 0.72);
  outline-offset: 3px;
}

.page-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: 96px 0 84px;
  background:
    linear-gradient(135deg, rgba(7, 21, 39, 0.98), rgba(12, 38, 68, 0.96)),
    var(--navy);
  color: var(--white);
}

.page-hero::before {
  right: max(-90px, calc((100vw - var(--max)) / 2 - 130px));
  top: -130px;
  width: min(520px, 58vw);
  aspect-ratio: 1;
  background-image: url("watermark-light.png");
  opacity: 0.095;
  z-index: -1;
}

.page-hero-inner {
  width: min(100% - 32px, var(--max));
  margin-inline: auto;
}

.page-hero h1 {
  max-width: 820px;
  font-size: clamp(42px, 6vw, 76px);
}

.page-hero p {
  max-width: 720px;
  color: #d8e5f6;
  font-size: 19px;
  line-height: 1.65;
}

.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: #bdd6f5;
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

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

.split-band {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  gap: 44px;
  align-items: start;
}

.large-callout {
  position: sticky;
  top: 104px;
  padding: 30px;
  border-radius: 8px;
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow);
}

.large-callout h2,
.large-callout h3 {
  color: var(--white);
}

.large-callout p {
  color: #cbd9eb;
  line-height: 1.7;
}

.timeline {
  display: grid;
  gap: 16px;
}

.timeline-item {
  position: relative;
  padding: 24px 24px 24px 76px;
}

.timeline-item .icon-tile {
  position: absolute;
  left: 22px;
  top: 24px;
  width: 38px;
  height: 38px;
  margin: 0;
}

.footer {
  position: relative;
  overflow: hidden;
  padding: 64px 0 34px;
  background: #040b14;
  color: #aebdd0;
}

.footer::before {
  content: "";
  position: absolute;
  right: max(-160px, calc((100vw - var(--max)) / 2 - 220px));
  bottom: -220px;
  width: 520px;
  aspect-ratio: 1;
  background: url("watermark-light.png") center / contain no-repeat;
  opacity: 0.07;
  pointer-events: none;
}

.footer-inner {
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.2fr) repeat(3, minmax(150px, 0.6fr));
  gap: 34px;
  align-items: start;
}

.footer-brand {
  display: grid;
  gap: 18px;
  max-width: 440px;
}

.footer-brand-row {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  text-decoration: none;
}

.footer-mark {
  width: 52px;
  height: 52px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: var(--white);
}

.footer-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.footer-wordmark {
  display: grid;
  color: var(--white);
  font-size: 18px;
  line-height: 0.96;
  font-weight: 950;
  text-transform: uppercase;
}

.footer-brand p {
  margin: 0;
  color: #aebdd0;
  line-height: 1.7;
}

.footer-col h3 {
  margin: 0 0 16px;
  color: var(--white);
  font-size: 13px;
  text-transform: uppercase;
}

.footer-list {
  gap: 12px;
  margin: 0;
}

.footer a {
  position: relative;
  color: #e5f0ff;
  text-decoration: none;
  font-weight: 800;
}

.footer a::after {
  bottom: -4px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 48px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #8797aa;
  font-size: 13px;
}

.footer-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-note::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(85, 199, 138, 0.1);
}

@media (hover: hover) and (pointer: fine) {
  .brand:hover .brand-emblem {
    transform: translateY(-2px) scale(1.02);
    border-color: rgba(23, 103, 209, 0.24);
    box-shadow: 0 18px 42px rgba(7, 21, 39, 0.22);
  }

  .brand:hover .brand-wordmark::after {
    transform: scaleX(1.16);
  }

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

  .nav-links a:not(.nav-cta):hover::after,
  .footer a:hover::after {
    transform: scaleX(1);
    transform-origin: left center;
  }

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

  .nav-cta:hover,
  .button-primary:hover {
    box-shadow: 0 22px 52px rgba(23, 103, 209, 0.34);
  }

  .button-secondary:hover {
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.38);
  }

  .button-light:hover,
  .button-ghost:hover {
    border-color: rgba(23, 103, 209, 0.2);
    box-shadow: 0 18px 44px rgba(7, 21, 39, 0.12);
  }

  .button:hover svg {
    transform: translateX(2px);
  }

  .proof-item:hover {
    background: rgba(18, 52, 91, 0.58);
    transform: translateY(-2px);
  }

  .proof-item:hover .proof-icon {
    transform: translateY(-2px) scale(1.05);
    border-color: rgba(255, 255, 255, 0.34);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.22),
      0 18px 38px rgba(0, 0, 0, 0.24);
  }

  .signal-list li:hover {
    background: rgba(23, 103, 209, 0.06);
    transform: translateX(2px);
  }

  .section-ink .signal-list li:hover {
    background: rgba(255, 255, 255, 0.07);
  }

  .card:hover {
    transform: translateY(-6px);
    border-color: var(--line-strong);
    box-shadow: var(--shadow-lift);
  }

  .section-ink .card:hover {
    border-color: rgba(245, 184, 75, 0.28);
    background: rgba(255, 255, 255, 0.09);
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.2);
  }

  .card:hover::after {
    opacity: 1;
  }

  .feature-card:hover::after {
    opacity: 0.12;
  }

  .lane-section .lane-card:hover {
    background:
      linear-gradient(180deg, rgba(39, 61, 86, 0.96), rgba(20, 39, 61, 0.94)),
      rgba(255, 255, 255, 0.08);
    border-color: rgba(245, 184, 75, 0.32);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.1),
      0 34px 82px rgba(0, 0, 0, 0.28);
  }

  .lane-section .lane-card:hover::after {
    opacity: 0.09;
  }

  .lane-section .lane-card:hover .icon-tile {
    transform: translateY(-2px) scale(1.06);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.16),
      0 20px 46px rgba(0, 0, 0, 0.26);
  }

  .card:hover::before {
    height: 7px;
  }

  .card:hover .icon-tile,
  .card:hover .ethics-number {
    transform: scale(1.06);
    box-shadow: 0 14px 32px rgba(7, 21, 39, 0.14);
  }

  .join-form:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.13);
    box-shadow: 0 24px 62px rgba(0, 0, 0, 0.2);
  }

  input:hover,
  select:hover,
  textarea:hover {
    border-color: rgba(23, 103, 209, 0.28);
  }

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

input:focus,
select:focus,
textarea:focus {
  border-color: var(--gold);
  box-shadow: var(--ring);
}

@media (max-width: 1080px) {
  .feature-grid,
  .lane-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

@media (max-width: 980px) {
  .nav {
    min-height: 68px;
  }

  .nav-links a:not(.nav-cta) {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    padding: 72px 0 76px;
  }

  .section-heading,
  .two-column,
  .join-layout,
  .split-band {
    grid-template-columns: 1fr;
  }

  .large-callout {
    position: relative;
    top: auto;
  }

  .ethics-grid,
  .privacy-grid,
  .page-grid,
  .brief-grid,
  .command-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .nav,
  .wrap,
  .hero-inner,
  .page-hero-inner,
  .footer-inner {
    width: min(100% - 24px, var(--max));
  }

  .nav {
    gap: 12px;
  }

  .nav-cta {
    min-height: 40px;
    padding: 0 13px;
    font-size: 13px;
  }

  .brand {
    gap: 9px;
  }

  .brand-emblem {
    width: 48px;
    height: 48px;
    flex-basis: 48px;
  }

  .brand-wordmark {
    font-size: 15px;
  }

  .brand-wordmark::after {
    width: 86px;
    height: 3px;
    margin-top: 5px;
  }

  .hero::after {
    background:
      linear-gradient(90deg, rgba(7, 21, 39, 0.97), rgba(7, 21, 39, 0.82)),
      linear-gradient(180deg, rgba(7, 21, 39, 0.22), rgba(7, 21, 39, 0.78));
  }

  .hero-media img {
    object-position: 66% center;
  }

  h1 {
    font-size: clamp(42px, 16vw, 60px);
  }

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

  .section {
    padding: 70px 0;
  }

  .proof-grid,
  .feature-grid,
  .lane-grid,
  .ethics-grid,
  .privacy-grid,
  .page-grid,
  .brief-grid,
  .brief-strip,
  .command-strip {
    grid-template-columns: 1fr;
  }

  .join-panel {
    padding: 28px 18px;
  }

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

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

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