:root {
  --navy: #062b50;
  --navy-deep: #031d37;
  --navy-soft: #0b3a64;
  --teal: #0ca6a6;
  --teal-bright: #22c7be;
  --mint: #bff6e9;
  --cream: #f4f1e9;
  --paper: #fbfaf6;
  --ink: #09223a;
  --muted: #63707a;
  --line: rgba(6, 43, 80, 0.14);
  --serif: "DM Serif Display", Georgia, serif;
  --sans: "Manrope", Arial, sans-serif;
  --shell: min(1240px, calc(100vw - 80px));
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

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

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  border-radius: 99px;
  background: white;
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

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

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: 92px;
  color: white;
  transition: height 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.site-header.scrolled,
.site-header.menu-active {
  height: 76px;
  background: rgba(3, 29, 55, 0.94);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
}

.header-inner {
  position: relative;
  z-index: 2;
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
}

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

.brand img {
  width: 48px;
  height: 36px;
  object-fit: contain;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-copy strong {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.brand-copy small {
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.54);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

.desktop-nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  font-weight: 600;
  transition: color 0.2s ease;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: var(--teal-bright);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.desktop-nav a:hover {
  color: white;
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.button {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 0 24px;
  border: 1px solid var(--teal-bright);
  border-radius: 4px;
  color: var(--navy-deep);
  background: var(--teal-bright);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.01em;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.button:hover {
  background: var(--mint);
  box-shadow: 0 14px 35px rgba(34, 199, 190, 0.18);
  transform: translateY(-2px);
}

.button span {
  font-size: 18px;
  font-weight: 400;
}

.button-small {
  min-height: 44px;
  gap: 18px;
  padding: 0 18px;
  font-size: 11px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  color: white;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  margin: 6px auto;
  background: currentColor;
  transition: transform 0.25s ease;
}

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

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

.mobile-menu {
  position: fixed;
  z-index: 1;
  inset: 0;
  display: flex;
  visibility: hidden;
  flex-direction: column;
  justify-content: center;
  padding: 110px 24px 50px;
  background: var(--navy-deep);
  opacity: 0;
  transform: translateY(-12px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
}

.mobile-menu.open {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;
}

.mobile-menu nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,.12);
  font-family: var(--serif);
  font-size: clamp(32px, 9vw, 54px);
  line-height: 1.1;
}

.mobile-menu nav span {
  color: var(--teal-bright);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
}

.mobile-menu p {
  margin: 48px 0 0;
  color: rgba(255,255,255,.5);
  font-size: 12px;
  line-height: 1.6;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.hero {
  position: relative;
  min-height: 900px;
  height: max(780px, 100svh);
  max-height: 1040px;
  overflow: hidden;
  color: white;
  background: var(--navy-deep);
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 160px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.18));
  content: "";
  pointer-events: none;
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(255,255,255,.11) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.11) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(to bottom, black 20%, transparent 92%);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
  opacity: .55;
}

.hero-orb-one {
  top: 14%;
  right: -8%;
  width: 560px;
  height: 560px;
  border: 1px solid rgba(34,199,190,.16);
  box-shadow: inset 0 0 100px rgba(34,199,190,.04);
}

.hero-orb-two {
  top: 26%;
  right: 4%;
  width: 310px;
  height: 310px;
  border: 1px solid rgba(34,199,190,.19);
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  height: calc(100% - 110px);
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, .82fr);
  align-items: center;
  gap: 80px;
  padding-top: 100px;
}

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

.eyebrow,
.section-kicker {
  display: flex;
  align-items: center;
  gap: 13px;
  color: var(--teal-bright);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 32px;
  height: 1px;
  background: currentColor;
}

.hero h1 {
  max-width: 720px;
  margin: 28px 0 26px;
  font-family: var(--serif);
  font-size: clamp(68px, 6.2vw, 104px);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -0.035em;
}

h1 em,
h2 em {
  color: var(--teal-bright);
  font-weight: 400;
}

.hero-lede {
  max-width: 570px;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 17px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: 38px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,.35);
  color: white;
  font-size: 12px;
  font-weight: 700;
  transition: color .2s ease, border-color .2s ease;
}

.text-link:hover {
  color: var(--teal-bright);
  border-color: var(--teal-bright);
}

.hero-proof {
  display: flex;
  gap: 0;
  margin-top: 60px;
}

.hero-proof div {
  min-width: 130px;
  padding: 0 24px;
  border-left: 1px solid rgba(255,255,255,.16);
}

.hero-proof div:first-child {
  padding-left: 0;
  border-left: 0;
}

.hero-proof strong,
.hero-proof span {
  display: block;
}

.hero-proof strong {
  color: white;
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 400;
}

.hero-proof span {
  margin-top: 2px;
  color: rgba(255,255,255,.42);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.signal-wrap {
  position: relative;
  width: min(100%, 470px);
  justify-self: end;
  perspective: 900px;
}

.signal-card {
  position: relative;
  min-height: 550px;
  overflow: hidden;
  padding: 26px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 32px;
  background: linear-gradient(145deg, rgba(14,66,100,.85), rgba(3,29,55,.96));
  box-shadow: 0 60px 100px rgba(0,0,0,.3), inset 0 1px 0 rgba(255,255,255,.08);
  transition: transform .18s ease-out;
}

.signal-card::before {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(34,199,190,.14), transparent 44%);
  content: "";
}

.signal-topline,
.signal-footer {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.signal-topline {
  color: rgba(255,255,255,.45);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.live-dot {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.72);
}

.live-dot i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal-bright);
  box-shadow: 0 0 0 5px rgba(34,199,190,.12);
  animation: pulse 2s ease infinite;
}

.radar {
  position: relative;
  width: 360px;
  height: 360px;
  margin: 22px auto 10px;
  border-radius: 50%;
}

.ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 50%;
  transform: translate(-50%,-50%);
}

.ring-one { width: 100%; height: 100%; }
.ring-two { width: 69%; height: 69%; }
.ring-three { width: 36%; height: 36%; }

.radar::before,
.radar::after {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,.09);
  content: "";
}

.radar::after {
  transform: rotate(90deg);
}

.radar-line {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  width: 50%;
  height: 50%;
  border-left: 1px solid rgba(34,199,190,.6);
  background: linear-gradient(135deg, rgba(34,199,190,.2), transparent 72%);
  transform-origin: left top;
  animation: radarSpin 6s linear infinite;
}

.radar-core {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  width: 50px;
  height: 50px;
  border: 1px solid rgba(34,199,190,.45);
  border-radius: 50%;
  background: rgba(34,199,190,.1);
  transform: translate(-50%,-50%);
}

.radar-core b {
  position: absolute;
  top: 50%; left: 50%;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--teal-bright);
  box-shadow: 0 0 25px var(--teal-bright);
  transform: translate(-50%,-50%);
}

.fish {
  position: absolute;
  z-index: 3;
  color: var(--teal-bright);
  filter: drop-shadow(0 0 12px rgba(34,199,190,.7));
  font-size: 18px;
  line-height: 1;
}

.fish::after {
  content: "●";
  font-size: .7em;
}

.fish-one { top: 27%; left: 64%; transform: rotate(-12deg); }
.fish-two { top: 66%; left: 27%; transform: scale(.75) rotate(18deg); opacity: .75; }
.fish-three { top: 76%; left: 69%; transform: scale(.52) rotate(-8deg); opacity: .55; }

.radar-label {
  position: absolute;
  z-index: 4;
  padding: 4px 8px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 99px;
  color: rgba(255,255,255,.52);
  background: rgba(3,29,55,.7);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.label-one { top: 20%; left: 67%; }
.label-two { top: 68%; left: 12%; }
.label-three { top: 78%; left: 67%; }

.signal-footer {
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.1);
}

.signal-footer small,
.signal-footer strong {
  display: block;
}

.signal-footer small {
  color: rgba(255,255,255,.4);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.signal-footer strong {
  margin-top: 5px;
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 400;
}

.signal-score {
  display: flex;
  align-items: center;
  gap: 12px;
}

.signal-score span {
  color: var(--teal-bright);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.signal-score b {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(34,199,190,.35);
  border-radius: 50%;
  color: white;
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 400;
}

.float-note {
  position: absolute;
  z-index: 6;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 8px;
  color: rgba(255,255,255,.86);
  background: rgba(6,43,80,.88);
  box-shadow: 0 18px 40px rgba(0,0,0,.25);
  backdrop-filter: blur(12px);
  font-size: 10px;
  font-weight: 700;
  white-space: nowrap;
}

.float-note span {
  color: var(--teal-bright);
  font-size: 8px;
}

.note-one { top: 24%; left: -58px; animation: float 5s ease-in-out infinite; }
.note-two { right: -30px; bottom: 22%; animation: float 5s 1.4s ease-in-out infinite; }

.hero-bottom {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 28px;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255,255,255,.4);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.hero-bottom p {
  margin: 0;
}

.scroll-cue {
  display: flex;
  align-items: center;
  gap: 12px;
}

.scroll-cue span {
  position: relative;
  display: block;
  width: 1px;
  height: 30px;
  overflow: hidden;
  background: rgba(255,255,255,.2);
}

.scroll-cue span::after {
  position: absolute;
  top: -12px;
  left: 0;
  width: 1px;
  height: 12px;
  background: var(--teal-bright);
  content: "";
  animation: scrollLine 2s ease-in-out infinite;
}

.ticker {
  overflow: hidden;
  padding: 20px 0;
  color: var(--navy-deep);
  background: var(--teal-bright);
}

.ticker-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 28px;
  animation: ticker 28s linear infinite;
}

.ticker span {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.ticker i {
  font-size: 9px;
  font-style: normal;
}

.section {
  padding: 140px 0;
}

.section-intro {
  display: grid;
  grid-template-columns: .58fr 1.05fr .8fr;
  align-items: end;
  gap: 50px;
  margin-bottom: 70px;
}

.section-kicker {
  align-self: start;
  padding-top: 18px;
  color: var(--teal);
}

.section-kicker span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 8px;
}

.section-kicker.light {
  color: var(--teal-bright);
}

.section-intro h2,
.section-heading h2,
.contact-copy h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(54px, 5.4vw, 82px);
  font-weight: 400;
  line-height: .98;
  letter-spacing: -.028em;
}

.section-intro p,
.section-heading > p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.85;
}

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

.philosophy-panel {
  display: grid;
  min-height: 590px;
  overflow: hidden;
  grid-template-columns: 1.08fr .92fr;
  border-radius: var(--radius);
  color: white;
  background: var(--navy);
  box-shadow: 0 35px 90px rgba(6,43,80,.13);
}

.shoal {
  position: relative;
  display: grid;
  overflow: hidden;
  place-items: center;
  border-right: 1px solid rgba(255,255,255,.1);
  background:
    radial-gradient(circle at 50% 46%, rgba(34,199,190,.18), transparent 36%),
    linear-gradient(150deg, rgba(255,255,255,.03), transparent 60%);
}

.shoal::before,
.shoal::after {
  position: absolute;
  width: 430px;
  height: 430px;
  border: 1px solid rgba(34,199,190,.16);
  border-radius: 50%;
  content: "";
}

.shoal::after {
  width: 295px;
  height: 295px;
}

.shoal svg {
  position: relative;
  z-index: 2;
  width: 90%;
}

.fish-svg path {
  fill: none;
  stroke: var(--teal-bright);
  stroke-width: 6;
  vector-effect: non-scaling-stroke;
}

.fish-svg circle {
  fill: var(--teal-bright);
}

.fish-mid { opacity: .65; }
.fish-small { opacity: .4; }

.shoal-caption {
  position: absolute;
  z-index: 3;
  bottom: 38px;
  left: 42px;
  color: rgba(255,255,255,.42);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.bubble {
  position: absolute;
  z-index: 2;
  border: 1px solid rgba(34,199,190,.45);
  border-radius: 50%;
}

.bubble-one { top: 20%; left: 18%; width: 13px; height: 13px; }
.bubble-two { top: 14%; left: 25%; width: 7px; height: 7px; }
.bubble-three { right: 20%; bottom: 20%; width: 18px; height: 18px; }

.principles {
  padding: 28px 52px;
}

.principles article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 22px;
  padding: 27px 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

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

.principles article > span {
  padding-top: 5px;
  color: var(--teal-bright);
  font-size: 9px;
  font-weight: 800;
}

.principles h3 {
  margin: 0 0 5px;
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 400;
}

.principles p {
  margin: 0;
  color: rgba(255,255,255,.5);
  font-size: 12px;
  line-height: 1.65;
}

.model {
  color: white;
  background: var(--navy-deep);
}

.section-heading {
  display: grid;
  grid-template-columns: 1.45fr .55fr;
  align-items: end;
  gap: 90px;
  margin-bottom: 80px;
}

.section-heading .section-kicker {
  margin-bottom: 28px;
  padding: 0;
}

.section-heading > p {
  color: rgba(255,255,255,.54);
}

.model-list {
  border-top: 1px solid rgba(255,255,255,.14);
}

.model-step {
  position: relative;
  display: grid;
  min-height: 170px;
  grid-template-columns: .35fr .35fr 1.45fr 40px;
  align-items: center;
  gap: 32px;
  border-bottom: 1px solid rgba(255,255,255,.14);
  transition: padding .3s ease, background .3s ease;
}

.model-step::before {
  position: absolute;
  inset: 0 calc(50% - 50vw);
  z-index: 0;
  background: var(--teal-bright);
  content: "";
  opacity: 0;
  transform: scaleY(.75);
  transition: opacity .3s ease, transform .3s ease;
}

.model-step:hover::before {
  opacity: 1;
  transform: scaleY(1);
}

.model-step > * {
  position: relative;
  z-index: 1;
}

.step-number {
  color: rgba(255,255,255,.34);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  transition: color .3s ease;
}

.step-icon {
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 50%;
  transition: border .3s ease, background .3s ease;
}

.step-icon svg {
  width: 31px;
  fill: none;
  stroke: var(--teal-bright);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
  transition: stroke .3s ease;
}

.step-copy {
  display: grid;
  grid-template-columns: .34fr .68fr 1fr;
  align-items: center;
  gap: 28px;
}

.step-copy small {
  color: var(--teal-bright);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  transition: color .3s ease;
}

.step-copy h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 400;
  line-height: 1;
}

.step-copy p {
  max-width: 360px;
  margin: 0;
  color: rgba(255,255,255,.5);
  font-size: 12px;
  line-height: 1.65;
  transition: color .3s ease;
}

.step-arrow {
  font-size: 26px;
  transition: transform .3s ease;
}

.model-step:hover .step-number,
.model-step:hover .step-copy small,
.model-step:hover .step-copy p {
  color: rgba(3,29,55,.65);
}

.model-step:hover .step-icon {
  border-color: var(--navy-deep);
  background: rgba(3,29,55,.08);
}

.model-step:hover .step-icon svg {
  stroke: var(--navy-deep);
}

.model-step:hover .step-copy h3,
.model-step:hover .step-arrow {
  color: var(--navy-deep);
}

.model-step:hover .step-arrow {
  transform: translate(5px,-5px);
}

.partners {
  background: var(--cream);
}

.section-heading.dark {
  color: var(--ink);
}

.section-heading.dark > p {
  color: var(--muted);
}

.bento-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.bento-card {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  padding: 48px;
  border: 1px solid rgba(6,43,80,.1);
  border-radius: 24px;
  background: var(--paper);
  transition: transform .35s ease, box-shadow .35s ease;
}

.bento-card:hover {
  box-shadow: 0 30px 70px rgba(6,43,80,.1);
  transform: translateY(-5px);
}

.provide-card {
  color: white;
  background: var(--navy);
}

.provide-card::after {
  position: absolute;
  right: -110px;
  bottom: -110px;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(34,199,190,.2);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(34,199,190,.04), 0 0 0 140px rgba(34,199,190,.025);
  content: "";
}

.bento-icon {
  display: grid;
  width: 78px;
  height: 78px;
  margin-bottom: 64px;
  place-items: center;
  border: 1px solid rgba(6,43,80,.16);
  border-radius: 50%;
}

.target-icon {
  position: relative;
}

.target-icon::before,
.target-icon::after,
.target-icon span {
  position: absolute;
  border: 1px solid var(--teal);
  border-radius: 50%;
  content: "";
}

.target-icon::before { width: 43px; height: 43px; }
.target-icon::after { width: 25px; height: 25px; }
.target-icon span { width: 8px; height: 8px; background: var(--teal); }

.rocket-icon {
  border-color: rgba(255,255,255,.17);
  color: var(--teal-bright);
  font-family: var(--serif);
  font-size: 40px;
}

.card-label {
  color: var(--teal);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.provide-card .card-label,
.investor-card .card-label {
  color: var(--teal-bright);
}

.bento-card h3 {
  position: relative;
  z-index: 1;
  margin: 14px 0 40px;
  font-family: var(--serif);
  font-size: clamp(44px, 4vw, 60px);
  font-weight: 400;
  line-height: 1;
}

.bento-card ul {
  position: relative;
  z-index: 1;
  display: grid;
  margin: 0;
  padding: 0;
  gap: 12px;
  list-style: none;
}

.bento-card li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}

.provide-card li {
  color: rgba(255,255,255,.65);
}

.bento-card li::before {
  display: grid;
  width: 19px;
  height: 19px;
  flex: 0 0 19px;
  place-items: center;
  border-radius: 50%;
  color: var(--navy-deep);
  background: var(--teal-bright);
  content: "✓";
  font-size: 10px;
  font-weight: 900;
}

.return-card {
  grid-column: 1 / -1;
  min-height: 620px;
  color: white;
  background: var(--navy-deep);
}

.return-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mini-badge {
  padding: 8px 12px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 99px;
  color: rgba(255,255,255,.48);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.return-card h3 {
  margin-bottom: 0;
}

.growth-chart {
  position: absolute;
  right: 48px;
  bottom: 48px;
  left: 48px;
  height: 300px;
  border-bottom: 1px solid rgba(255,255,255,.16);
}

.chart-grid {
  position: absolute;
  inset: 0;
  opacity: .4;
  background-image: linear-gradient(rgba(255,255,255,.07) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.07) 1px, transparent 1px);
  background-size: 100% 25%, 12.5% 100%;
}

.growth-chart svg {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 94%;
  overflow: visible;
}

.growth-chart .area {
  fill: url(#chartFill);
}

.growth-chart .line {
  fill: none;
  stroke: var(--teal-bright);
  stroke-width: 3;
  vector-effect: non-scaling-stroke;
  filter: drop-shadow(0 0 8px rgba(34,199,190,.42));
}

.chart-start,
.chart-end {
  position: absolute;
  bottom: -30px;
  color: rgba(255,255,255,.42);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.chart-start { left: 0; }
.chart-end { right: 0; color: var(--teal-bright); }

.investor-card {
  grid-column: 1 / -1;
  min-height: auto;
  padding: 55px 48px;
  color: white;
  background: var(--teal);
}

.investor-card h3 {
  margin-bottom: 34px;
  color: var(--navy-deep);
}

.investor-card .card-label {
  color: var(--navy-deep);
}

.investor-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.investor-benefits span {
  padding: 11px 15px;
  border: 1px solid rgba(3,29,55,.16);
  border-radius: 99px;
  color: var(--navy-deep);
  background: rgba(255,255,255,.12);
  font-size: 10px;
  font-weight: 700;
}

.statement {
  padding-top: 170px;
  padding-bottom: 170px;
  background: var(--paper);
}

.statement-inner {
  text-align: center;
}

.statement-mark {
  display: grid;
  width: 80px;
  height: 80px;
  margin: 0 auto 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.statement-mark img {
  width: 42px;
}

.statement p {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(56px, 7vw, 100px);
  line-height: .98;
  letter-spacing: -.035em;
}

.statement em {
  color: var(--teal);
  font-weight: 400;
}

.statement-foot {
  display: flex;
  max-width: 700px;
  justify-content: space-between;
  margin: 58px auto 0;
  color: var(--muted);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.statement-foot span {
  display: flex;
  align-items: center;
  gap: 18px;
}

.statement-foot span:not(:last-child)::after {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--teal);
  content: "";
}

.contact {
  position: relative;
  overflow: hidden;
  color: white;
  background: var(--navy);
}

.contact::before {
  position: absolute;
  top: -350px;
  left: -260px;
  width: 700px;
  height: 700px;
  border: 1px solid rgba(34,199,190,.12);
  border-radius: 50%;
  box-shadow: 0 0 0 100px rgba(34,199,190,.025), 0 0 0 200px rgba(34,199,190,.015);
  content: "";
}

.contact-grid {
  position: relative;
  display: grid;
  grid-template-columns: .9fr 1fr;
  gap: 110px;
}

.contact-copy .section-kicker {
  margin-bottom: 28px;
  padding: 0;
}

.contact-copy h2 {
  font-size: clamp(54px, 5vw, 76px);
}

.contact-copy p {
  max-width: 520px;
  margin: 32px 0;
  color: rgba(255,255,255,.55);
  font-size: 14px;
  line-height: 1.85;
}

.contact-assurance {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 4px;
}

.contact-assurance > span {
  display: grid;
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  place-items: center;
  border-radius: 50%;
  color: var(--navy-deep);
  background: var(--teal-bright);
  font-size: 14px;
  font-weight: 900;
}

.contact-assurance strong,
.contact-assurance small {
  display: block;
}

.contact-assurance strong {
  font-size: 11px;
  letter-spacing: .04em;
}

.contact-assurance small {
  margin-top: 3px;
  color: rgba(255,255,255,.42);
  font-size: 9px;
}

.contact-form {
  padding: 42px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 20px;
  background: rgba(3,29,55,.45);
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.contact-form label {
  display: block;
  margin-bottom: 23px;
}

.contact-form label > span {
  display: block;
  margin-bottom: 8px;
  color: rgba(255,255,255,.48);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,.17);
  border-radius: 0;
  outline: none;
  color: white;
  background: transparent;
  font-size: 12px;
  transition: border-color .2s ease;
}

.contact-form input,
.contact-form select {
  height: 45px;
}

.contact-form textarea {
  padding: 12px 0;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--teal-bright);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255,255,255,.28);
}

.contact-form select {
  color-scheme: dark;
}

.submit-button {
  width: 100%;
  margin-top: 4px;
  cursor: pointer;
}

.submit-button:disabled {
  cursor: wait;
  opacity: .65;
  transform: none;
}

.form-status {
  display: none;
  margin: 15px 0 0;
  padding: 11px 14px;
  border-radius: 5px;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}

.form-status.success,
.form-status.error {
  display: block;
}

.form-status.success {
  color: var(--mint);
  background: rgba(34,199,190,.11);
}

.form-status.error {
  color: #ffd7d7;
  background: rgba(255,96,96,.1);
}

.form-note {
  margin: 12px 0 0;
  color: rgba(255,255,255,.32);
  font-size: 9px;
  text-align: center;
}

.hidden-field {
  position: absolute;
  overflow: hidden;
  width: 1px;
  height: 1px;
  clip: rect(0 0 0 0);
}

.site-footer {
  padding: 70px 0 24px;
  color: white;
  background: var(--navy-deep);
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: start;
  padding-bottom: 60px;
}

.footer-brand img {
  width: 58px;
}

.footer-top > p {
  margin: 0;
  color: rgba(255,255,255,.52);
  font-family: var(--serif);
  font-size: 21px;
  line-height: 1.35;
}

.footer-links {
  display: flex;
  justify-content: flex-end;
  gap: 22px;
}

.footer-links a {
  color: rgba(255,255,255,.55);
  font-size: 10px;
  font-weight: 700;
  transition: color .2s ease;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.28);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .8s cubic-bezier(.2,.8,.2,1), transform .8s cubic-bezier(.2,.8,.2,1);
}

.reveal-delay {
  transition-delay: .12s;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@keyframes radarSpin {
  to { transform: rotate(360deg); }
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(34,199,190,.12); }
  50% { box-shadow: 0 0 0 9px rgba(34,199,190,0); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}

@keyframes scrollLine {
  0% { transform: translateY(0); }
  100% { transform: translateY(44px); }
}

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

@media (max-width: 1100px) {
  :root { --shell: min(100% - 48px, 1000px); }
  .desktop-nav { display: none; }
  .menu-toggle { display: block; }
  .header-cta { margin-left: auto; margin-right: 18px; }
  .hero-layout { grid-template-columns: 1fr minmax(360px, .78fr); gap: 42px; }
  .hero h1 { font-size: clamp(60px, 7.7vw, 82px); }
  .signal-card { min-height: 500px; }
  .radar { width: 320px; height: 320px; }
  .note-two { right: -12px; }
  .section-intro { grid-template-columns: .45fr 1fr; }
  .section-intro > p { grid-column: 2; }
  .section-heading { grid-template-columns: 1.15fr .55fr; gap: 50px; }
  .model-step { grid-template-columns: .18fr .25fr 1.4fr 30px; }
  .step-copy { grid-template-columns: .32fr .65fr 1fr; }
  .contact-grid { gap: 60px; }
}

@media (max-width: 820px) {
  :root { --shell: calc(100vw - 40px); --radius: 20px; }
  .site-header { height: 76px; }
  .brand-copy strong { font-size: 11px; }
  .header-cta { display: none; }
  .hero { height: auto; min-height: 0; max-height: none; padding: 150px 0 90px; }
  .hero-layout { display: block; height: auto; padding-top: 0; }
  .hero h1 { max-width: 680px; font-size: clamp(61px, 13vw, 92px); }
  .hero-lede { max-width: 620px; }
  .signal-wrap { width: min(92%, 520px); margin: 100px auto 50px; justify-self: auto; }
  .signal-card { min-height: 550px; }
  .radar { width: 360px; height: 360px; }
  .hero-bottom { bottom: 24px; }
  .section { padding: 100px 0; }
  .section-intro { display: block; margin-bottom: 50px; }
  .section-intro h2 { margin: 26px 0; }
  .philosophy-panel { grid-template-columns: 1fr; }
  .shoal { min-height: 490px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.1); }
  .section-heading { display: block; margin-bottom: 55px; }
  .section-heading > p { max-width: 520px; margin-top: 28px; }
  .model-step { min-height: 210px; grid-template-columns: 48px 70px 1fr 20px; gap: 16px; }
  .step-copy { display: block; }
  .step-copy h3 { margin: 7px 0 12px; }
  .bento-card { min-height: 530px; padding: 38px; }
  .return-card { min-height: 580px; }
  .contact-grid { grid-template-columns: 1fr; gap: 55px; }
  .contact-copy p { max-width: 620px; }
  .footer-top { grid-template-columns: 1fr 1fr; row-gap: 40px; }
  .footer-links { grid-column: 1 / -1; justify-content: flex-start; }
}

@media (max-width: 600px) {
  :root { --shell: calc(100vw - 30px); }
  .brand img { width: 42px; }
  .site-header.scrolled, .site-header.menu-active { height: 68px; }
  .hero { padding-top: 124px; }
  .hero-grid { background-size: 54px 54px; }
  .hero h1 { margin: 24px 0; font-size: clamp(53px, 16.5vw, 76px); }
  .hero-lede { font-size: 14px; line-height: 1.7; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 12px; }
  .hero-actions .button { width: 100%; }
  .text-link { align-self: center; }
  .hero-proof { justify-content: space-between; margin-top: 45px; }
  .hero-proof div { min-width: 0; padding: 0 12px; }
  .hero-proof strong { font-size: 18px; }
  .hero-proof span { font-size: 7px; }
  .signal-wrap { width: 100%; margin-top: 80px; }
  .signal-card { min-height: 465px; padding: 20px; border-radius: 22px; }
  .radar { width: min(310px, 83vw); height: min(310px, 83vw); }
  .float-note { font-size: 8px; }
  .note-one { top: 20%; left: -8px; }
  .note-two { right: -8px; bottom: 19%; }
  .signal-footer strong { font-size: 18px; }
  .hero-bottom p { display: none; }
  .hero-bottom { justify-content: center; }
  .ticker { padding: 16px 0; }
  .section { padding: 82px 0; }
  .section-intro h2, .section-heading h2, .contact-copy h2 { font-size: clamp(47px, 14vw, 62px); }
  .section-intro p, .section-heading > p { font-size: 13px; }
  .shoal { min-height: 380px; }
  .shoal::before { width: 310px; height: 310px; }
  .shoal::after { width: 220px; height: 220px; }
  .shoal-caption { bottom: 25px; left: 25px; }
  .principles { padding: 14px 24px; }
  .principles article { grid-template-columns: 28px 1fr; gap: 10px; padding: 24px 0; }
  .principles h3 { font-size: 22px; }
  .model-step { min-height: 0; grid-template-columns: 30px 1fr 18px; padding: 28px 0; }
  .step-icon { display: none; }
  .step-number { align-self: start; padding-top: 5px; }
  .step-copy h3 { font-size: 29px; }
  .step-copy p { font-size: 11px; }
  .step-arrow { align-self: start; font-size: 20px; }
  .bento-grid { grid-template-columns: 1fr; }
  .bento-card { min-height: 510px; padding: 30px 25px; }
  .bento-icon { margin-bottom: 50px; }
  .bento-card h3 { font-size: 43px; }
  .focus-card, .provide-card, .return-card, .investor-card { grid-column: auto; }
  .return-card { min-height: 570px; }
  .growth-chart { right: 25px; bottom: 55px; left: 25px; height: 260px; }
  .return-card h3 { font-size: 40px; }
  .investor-card { min-height: auto; }
  .investor-benefits { gap: 8px; }
  .investor-benefits span { font-size: 8px; }
  .statement { padding-top: 105px; padding-bottom: 105px; }
  .statement p { font-size: clamp(50px, 15vw, 67px); }
  .statement-foot { flex-direction: column; align-items: center; gap: 14px; margin-top: 42px; }
  .statement-foot span::after { display: none; }
  .contact-form { padding: 28px 22px; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-links { grid-column: auto; flex-wrap: wrap; }
  .footer-bottom { flex-direction: column; gap: 10px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
