:root {
  --bright-blue: #185dff;
  --dark-blue: #00167a;
  --deep-night: #00051f;
  --ink-blue: #000b45;
  --white: #f7f9ff;
  --muted: #a8b8e8;
  --line: rgba(255, 255, 255, 0.14);
  --line-dark: rgba(0, 5, 31, 0.16);
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  --container: 90rem;
  --gutter: clamp(1.25rem, 5vw, 5rem);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  color-scheme: dark;
  background: var(--deep-night);
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  color: var(--white);
  font-family: var(--font);
  background: var(--deep-night);
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

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

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

.container {
  width: min(100%, var(--container));
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section-shell {
  position: relative;
  z-index: 1;
  padding-block: clamp(5.5rem, 10vw, 10rem);
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 100;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  color: var(--deep-night);
  font-weight: 800;
  background: var(--white);
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

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

.page-grid {
  position: fixed;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px);
  background-size: 76px 76px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.85), transparent 48rem);
  pointer-events: none;
}

.noise {
  position: fixed;
  inset: 0;
  z-index: 20;
  opacity: 0.16;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.13) 0 0.5px, transparent 0.7px),
    radial-gradient(circle at 70% 60%, rgba(255, 255, 255, 0.09) 0 0.5px, transparent 0.7px);
  background-position: 0 0, 6px 8px;
  background-size: 13px 13px, 17px 17px;
  mix-blend-mode: soft-light;
  pointer-events: none;
}

.scroll-progress {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 80;
  height: 2px;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #7ca3ff, var(--bright-blue), #ffffff);
  box-shadow: 0 0 1rem rgba(24, 93, 255, 0.8);
  transform: scaleX(0);
  transform-origin: left center;
}

.pointer-halo {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 0;
  width: 36rem;
  height: 36rem;
  border-radius: 50%;
  opacity: 0;
  background: radial-gradient(circle, rgba(24, 93, 255, 0.13), transparent 68%);
  transform: translate3d(calc(var(--pointer-x, 50vw) - 50%), calc(var(--pointer-y, 50vh) - 50%), 0);
  transition: opacity 0.35s ease;
  pointer-events: none;
}

body.has-pointer .pointer-halo {
  opacity: 1;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(0, 5, 31, 0.76);
  backdrop-filter: blur(1.2rem);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 0.72rem;
  width: fit-content;
  min-height: 3.25rem;
  text-decoration: none;
}

.brand-icon {
  position: relative;
  display: block;
  flex: 0 0 auto;
  overflow: hidden;
}

.brand-icon {
  width: 3.1rem;
  height: 3.1rem;
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.11), 0 0 2.25rem rgba(24, 93, 255, 0.24);
}

.brand-icon img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 173%;
  height: 173%;
  max-width: none;
  object-fit: contain;
  transform: translate(-50%, -50%);
}

.brand-name {
  color: var(--bright-blue);
  font-size: clamp(0.95rem, 1.3vw, 1.1rem);
  font-weight: 850;
  letter-spacing: 0.035em;
  line-height: 1;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.1rem, 2.2vw, 2.5rem);
}

.site-nav a {
  position: relative;
  color: rgba(247, 249, 255, 0.75);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.09em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.site-nav a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -0.5rem;
  left: 0;
  height: 1px;
  background: var(--bright-blue);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--white);
}

.site-nav a:not(.nav-cta):hover::after,
.site-nav a:not(.nav-cta):focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.site-nav .nav-cta {
  padding: 0.8rem 1.05rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  color: var(--white);
  transition: border-color 0.2s ease, background 0.2s ease;
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus-visible {
  border-color: var(--bright-blue);
  background: rgba(24, 93, 255, 0.16);
}

.nav-toggle {
  display: none;
  width: 2.85rem;
  height: 2.85rem;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: inherit;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 1.05rem;
  height: 1px;
  margin: 0.28rem auto;
  background: currentColor;
  transition: transform 0.2s ease;
}

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

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

.hero {
  min-height: calc(100svh - 5.75rem);
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 43%, rgba(24, 93, 255, 0.38), transparent 29rem),
    radial-gradient(circle at 18% 95%, rgba(0, 22, 122, 0.6), transparent 36rem),
    linear-gradient(138deg, #00030f 0%, var(--deep-night) 48%, #000d52 100%);
}

.hero-layout {
  display: grid;
  align-items: center;
  min-height: calc(100svh - 5.75rem - clamp(11rem, 20vw, 20rem));
  grid-template-columns: minmax(0, 1.12fr) minmax(24rem, 0.88fr);
  gap: clamp(2rem, 6vw, 7rem);
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow,
.section-kicker {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  color: #c2cdf2;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.eyebrow {
  margin-bottom: clamp(1.6rem, 3vw, 2.5rem);
}

.eyebrow-index,
.section-kicker > span {
  display: grid;
  width: 2rem;
  height: 2rem;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: var(--bright-blue);
  font-size: 0.61rem;
  place-items: center;
}

.hero h1 {
  max-width: 12ch;
  margin-bottom: 0;
  font-size: clamp(4rem, 7.4vw, 7.65rem);
  font-weight: 830;
  letter-spacing: -0.075em;
  line-height: 0.88;
}

.hero h1 span {
  display: block;
  margin-top: 0.18em;
  color: var(--bright-blue);
  text-shadow: 0 0 4rem rgba(24, 93, 255, 0.22);
}

.hero-lead {
  max-width: 39rem;
  margin: clamp(2rem, 4vw, 3rem) 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.35vw, 1.22rem);
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.4rem;
  margin-top: 2.2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 3.45rem;
  padding: 0.85rem 1.15rem 0.85rem 1.35rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.button span {
  display: grid;
  width: 1.85rem;
  height: 1.85rem;
  border-radius: 50%;
  font-size: 1rem;
  place-items: center;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--white);
  background: var(--bright-blue);
  box-shadow: 0 1rem 2.8rem rgba(24, 93, 255, 0.25);
}

.button-primary span {
  color: var(--bright-blue);
  background: var(--white);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: rgba(247, 249, 255, 0.82);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.text-link span {
  color: var(--bright-blue);
  font-size: 1.1rem;
  transition: transform 0.2s ease;
}

.text-link:hover span,
.text-link:focus-visible span {
  transform: translateX(0.25rem);
}

.hero-disciplines {
  display: flex;
  gap: clamp(1rem, 2.5vw, 2.2rem);
  margin: 2.9rem 0 0;
  padding: 1.2rem 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  list-style: none;
}

.hero-disciplines li {
  color: rgba(216, 226, 255, 0.56);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-visual {
  position: relative;
  display: grid;
  width: min(100%, 35rem);
  aspect-ratio: 1;
  justify-self: end;
  place-items: center;
}

.visual-glow {
  position: absolute;
  width: 74%;
  height: 74%;
  border-radius: 50%;
  background: rgba(24, 93, 255, 0.48);
  filter: blur(5rem);
  animation: breathe 5s ease-in-out infinite;
}

.orbit {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
}

.orbit::before {
  position: absolute;
  top: -0.26rem;
  left: 50%;
  width: 0.52rem;
  height: 0.52rem;
  border-radius: 50%;
  background: #7ca3ff;
  box-shadow: 0 0 1.25rem var(--bright-blue);
  content: "";
}

.orbit-outer {
  inset: 2%;
  animation: rotate 24s linear infinite;
}

.orbit-inner {
  inset: 12%;
  border-style: dashed;
  opacity: 0.56;
  animation: rotate-reverse 28s linear infinite;
}

.emblem-card {
  position: relative;
  display: grid;
  width: 64%;
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.035)),
    rgba(0, 5, 31, 0.56);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 2.5rem 6rem rgba(0, 0, 0, 0.36),
    0 0 5rem rgba(24, 93, 255, 0.18);
  backdrop-filter: blur(1.25rem);
  place-items: center;
  animation: float 6s ease-in-out infinite;
}

.emblem-card::after {
  position: absolute;
  inset: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 50%;
  content: "";
}

.emblem-crop {
  position: relative;
  width: 75%;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 50%;
  filter: drop-shadow(0 1.25rem 2.5rem rgba(0, 0, 0, 0.42));
}

.emblem-crop img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 173%;
  height: 173%;
  max-width: none;
  object-fit: contain;
  transform: translate(-50%, -50%);
}

.float-label {
  position: absolute;
  padding: 0.55rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  color: #c7d4ff;
  font-size: clamp(0.55rem, 0.65vw, 0.67rem);
  font-weight: 800;
  letter-spacing: 0.18em;
  background: rgba(0, 5, 31, 0.58);
  box-shadow: 0 0.8rem 2rem rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(0.8rem);
}

.label-one {
  top: 17%;
  right: 2%;
}

.label-two {
  bottom: 12%;
  left: 9%;
}

.label-three {
  top: 12%;
  left: 6%;
}

.ticker {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border-block: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 11, 69, 0.64);
}

.ticker-track {
  display: flex;
  align-items: center;
  width: max-content;
  min-height: 4.25rem;
  animation: ticker 34s linear infinite;
}

.ticker span {
  padding-inline: 1.5rem;
  color: rgba(247, 249, 255, 0.66);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.ticker i {
  width: 0.43rem;
  height: 0.43rem;
  border-radius: 50%;
  background: var(--bright-blue);
  box-shadow: 0 0 1rem var(--bright-blue);
}

.intro-section,
.services-section,
.process-section,
.partnerships-section,
.founder-section {
  color: var(--deep-night);
  background: var(--white);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(12rem, 0.36fr) minmax(0, 1fr);
  gap: clamp(3rem, 8vw, 9rem);
}

.section-kicker {
  align-self: start;
  color: rgba(0, 5, 31, 0.56);
}

.section-kicker > span {
  border-color: rgba(0, 5, 31, 0.17);
}

.section-kicker-light {
  color: rgba(255, 255, 255, 0.72);
}

.section-kicker-light > span {
  border-color: rgba(255, 255, 255, 0.28);
  color: var(--white);
}

.intro-content h2,
.section-heading h2,
.partnerships-copy h2 {
  margin-bottom: 0;
  font-size: clamp(3.15rem, 6vw, 6rem);
  font-weight: 820;
  letter-spacing: -0.065em;
  line-height: 0.94;
}

.intro-content h2 span,
.section-heading h2 span,
.partnerships-copy h2 span {
  color: var(--bright-blue);
}

.intro-columns {
  display: grid;
  margin-top: clamp(2.75rem, 5vw, 4.75rem);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(2rem, 5vw, 5rem);
}

.intro-columns p,
.section-heading > div > p,
.partnerships-copy > p {
  margin-bottom: 0;
  color: rgba(0, 5, 31, 0.67);
  font-size: clamp(1rem, 1.25vw, 1.18rem);
  line-height: 1.75;
}

.services-section {
  border-top: 1px solid var(--line-dark);
  background:
    radial-gradient(circle at 86% 8%, rgba(24, 93, 255, 0.28), transparent 32rem),
    radial-gradient(circle at 8% 92%, rgba(0, 22, 122, 0.48), transparent 36rem),
    linear-gradient(150deg, #00020d 0%, var(--deep-night) 55%, #000b45 100%);
}

.services-section .section-kicker {
  color: rgba(216, 226, 255, 0.58);
}

.services-section .section-kicker > span {
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--bright-blue);
}

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

.services-section .section-heading > div > p {
  color: rgba(168, 184, 232, 0.74);
}

.services-section .section-heading {
  margin-bottom: clamp(2.75rem, 4.5vw, 4.5rem);
}

.section-heading {
  display: grid;
  align-items: start;
  margin-bottom: clamp(3rem, 6vw, 6rem);
  grid-template-columns: minmax(12rem, 0.36fr) minmax(0, 1fr);
  gap: clamp(3rem, 8vw, 9rem);
}

.section-heading > div > p {
  max-width: 42rem;
  margin-top: 2rem;
}

.services-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  list-style: none;
}

.services-list > li {
  position: relative;
  display: grid;
  align-items: start;
  padding: clamp(2rem, 3.2vw, 3.1rem) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  grid-template-columns: clamp(3rem, 7vw, 6.5rem) minmax(0, 1fr) 2rem;
  gap: clamp(1rem, 2.4vw, 2.5rem);
  transition: background 0.3s ease, border-color 0.3s ease;
}

.services-list > li::after {
  color: var(--bright-blue);
  content: "↘";
  font-size: 1.4rem;
  justify-self: end;
  transition: transform 0.3s ease;
}

.services-list > li:hover {
  border-color: rgba(124, 163, 255, 0.34);
  background: linear-gradient(90deg, rgba(24, 93, 255, 0.08), transparent 78%);
}

.services-list > li:hover::after {
  transform: translate(0.2rem, 0.2rem);
}

.service-index {
  color: var(--bright-blue);
  font-size: 0.65rem;
  font-weight: 850;
  letter-spacing: 0.16em;
}

.service-row {
  display: grid;
  min-width: 0;
  grid-column: 2;
  grid-template-columns: minmax(18rem, 0.82fr) minmax(20rem, 1.18fr);
  gap: clamp(3rem, 7vw, 7.5rem);
}

.service-name {
  min-width: 0;
}

.service-name p {
  margin: 0 0 0.8rem;
  color: rgba(168, 184, 232, 0.68);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.5;
  text-transform: uppercase;
}

.service-name h3 {
  max-width: 16ch;
  margin: 0;
  color: var(--white);
  font-size: clamp(2rem, 3.5vw, 3.7rem);
  font-weight: 760;
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.service-row ul {
  display: grid;
  align-content: start;
  margin: 0;
  padding: 0;
  color: rgba(216, 226, 255, 0.74);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem 2rem;
  list-style: none;
}

.service-row li {
  position: relative;
  padding-left: 1rem;
  font-size: 0.82rem;
  font-weight: 650;
  line-height: 1.45;
}

.service-row li::before {
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 0.32rem;
  height: 0.32rem;
  border-radius: 50%;
  background: var(--bright-blue);
  content: "";
}

.expertise-section {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-block: clamp(5.5rem, 10vw, 10rem);
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 255, 255, 0.15), transparent 31rem),
    var(--bright-blue);
}

.expertise-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(20rem, 0.62fr);
  gap: clamp(3rem, 8vw, 8rem);
}

.expertise-copy h2 {
  max-width: 11ch;
  margin: 2rem 0 2.25rem;
  font-size: clamp(3.5rem, 6.5vw, 6.5rem);
  letter-spacing: -0.07em;
  line-height: 0.92;
}

.expertise-copy > p {
  max-width: 38rem;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  line-height: 1.75;
}

.industry-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  list-style: none;
}

.industry-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  font-size: clamp(1.3rem, 2vw, 1.9rem);
  font-weight: 730;
  letter-spacing: -0.025em;
}

.industry-list span {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
}

.outcome-grid {
  display: grid;
  grid-column: 1 / -1;
  margin-top: clamp(2rem, 4vw, 4rem);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 1.3rem;
  background: rgba(0, 22, 122, 0.36);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  backdrop-filter: blur(1rem);
}

.outcome-grid article {
  min-height: 13rem;
  padding: clamp(1.5rem, 3vw, 2.5rem);
}

.outcome-grid article + article {
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.outcome-grid span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.61rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.outcome-grid h3 {
  margin: 1.9rem 0 0.6rem;
  font-size: clamp(2rem, 3vw, 3.1rem);
  letter-spacing: -0.05em;
}

.outcome-grid p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.6;
}

.process-section {
  background: #f8faff;
}

.process-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line-dark);
  list-style: none;
}

.process-list li {
  display: grid;
  align-items: start;
  padding: clamp(2rem, 3.2vw, 3.1rem) 0;
  border-bottom: 1px solid var(--line-dark);
  grid-template-columns: clamp(3rem, 7vw, 6.5rem) minmax(0, 1fr) 2rem;
  gap: clamp(1rem, 2.4vw, 2.5rem);
}

.process-list li::after {
  color: var(--bright-blue);
  content: "↘";
  font-size: 1.4rem;
  justify-self: end;
}

.process-index {
  color: var(--bright-blue);
  font-size: 0.65rem;
  font-weight: 850;
  letter-spacing: 0.16em;
}

.process-list div {
  display: grid;
  min-width: 0;
  grid-column: 2;
  grid-template-columns: minmax(13rem, 0.58fr) minmax(20rem, 1fr);
  gap: clamp(4rem, 9vw, 9rem);
}

.process-list h3 {
  max-width: 12ch;
  margin-bottom: 0;
  font-size: clamp(1.8rem, 3vw, 3rem);
  letter-spacing: -0.045em;
  line-height: 1;
}

.process-list p {
  max-width: 34rem;
  margin-bottom: 0;
  color: rgba(0, 5, 31, 0.63);
  line-height: 1.7;
}

.partnerships-section {
  border-top: 1px solid var(--line-dark);
}

.partnerships-layout {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(0, 1fr) minmax(23rem, 0.68fr);
  gap: clamp(3rem, 8vw, 8rem);
}

.partnerships-copy h2 {
  margin-top: 2rem;
}

.partnerships-copy > p {
  max-width: 42rem;
  margin-top: 2.4rem;
}

.pricing-factors {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 2.5rem;
}

.pricing-factors span {
  padding: 0.7rem 0.9rem;
  border: 1px solid rgba(0, 5, 31, 0.14);
  border-radius: 999px;
  color: rgba(0, 5, 31, 0.66);
  font-size: 0.7rem;
  font-weight: 750;
}

.proposal-card {
  position: sticky;
  top: 7.75rem;
  padding: clamp(1.5rem, 3vw, 2.75rem);
  border-radius: 1.5rem;
  color: var(--white);
  background:
    radial-gradient(circle at 100% 0%, rgba(24, 93, 255, 0.36), transparent 22rem),
    var(--deep-night);
  box-shadow: 0 2rem 6rem rgba(0, 22, 122, 0.15);
}

.proposal-topline {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(216, 226, 255, 0.58);
  font-size: 0.57rem;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.proposal-card h3 {
  max-width: 10ch;
  margin: 2.5rem 0;
  font-size: clamp(2.5rem, 4vw, 4rem);
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.proposal-card ul {
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  list-style: none;
}

.proposal-card li {
  display: grid;
  align-items: center;
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  color: rgba(247, 249, 255, 0.82);
  font-size: 0.86rem;
  grid-template-columns: 2rem 1fr;
}

.proposal-card li span {
  color: var(--bright-blue);
  font-size: 0.58rem;
  font-weight: 850;
}

.proposal-card > p {
  margin: 1.6rem 0 0;
  color: rgba(168, 184, 232, 0.76);
  font-size: 0.85rem;
  line-height: 1.7;
}

.founder-section {
  border-top: 1px solid var(--line-dark);
  background: #eef2ff;
}

.founder-layout {
  display: grid;
  grid-template-columns: 0.22fr 1fr;
  gap: clamp(2rem, 6vw, 7rem);
}

.founder-mark {
  color: var(--bright-blue);
  font-size: clamp(7rem, 14vw, 14rem);
  font-weight: 800;
  line-height: 0.7;
}

.founder-layout blockquote {
  max-width: 22ch;
  margin-bottom: 0;
  font-size: clamp(2rem, 4.2vw, 4.5rem);
  font-weight: 720;
  letter-spacing: -0.055em;
  line-height: 1.08;
}

.founder-credit {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  margin: 2.75rem 0 0;
  grid-column: 2;
}

.founder-credit strong {
  color: var(--bright-blue);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
}

.founder-credit span {
  color: rgba(0, 5, 31, 0.52);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.discovery-section {
  position: relative;
  z-index: 1;
  padding-block: clamp(5rem, 9vw, 9rem);
  overflow: hidden;
  background:
    radial-gradient(circle at 90% 20%, rgba(255, 255, 255, 0.17), transparent 26rem),
    var(--bright-blue);
}

.discovery-layout {
  display: grid;
  align-items: end;
  grid-template-columns: minmax(0, 1.12fr) minmax(19rem, 0.5fr);
  gap: clamp(3rem, 8vw, 9rem);
}

.discovery-section h2 {
  max-width: 13ch;
  margin: 2rem 0 0;
  font-size: clamp(3.4rem, 7vw, 7rem);
  letter-spacing: -0.07em;
  line-height: 0.92;
}

.discovery-copy p {
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.72;
}

.button-light {
  color: var(--deep-night);
  background: var(--white);
}

.button-light span {
  color: var(--white);
  background: var(--deep-night);
}

.contact-email {
  display: inline-block;
  margin-top: 1.25rem;
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-underline-offset: 0.3rem;
}

.site-footer {
  position: relative;
  z-index: 1;
  padding: clamp(4rem, 7vw, 6.5rem) 0 1.5rem;
  background: #000310;
}

.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 4rem;
}

.footer-brand {
  margin-top: -0.3rem;
}

.footer-nav {
  display: grid;
  width: min(100%, 42rem);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
}

.footer-nav > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.7rem;
}

.footer-nav span {
  margin-bottom: 0.7rem;
  color: rgba(168, 184, 232, 0.5);
  font-size: 0.59rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.footer-nav a,
.footer-nav p {
  margin-bottom: 0;
  color: rgba(247, 249, 255, 0.72);
  font-size: 0.86rem;
  line-height: 1.5;
  text-decoration: none;
}

.footer-nav a:hover,
.footer-nav a:focus-visible {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: clamp(4rem, 8vw, 7rem);
  padding-top: 1.35rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(168, 184, 232, 0.52);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.footer-bottom p {
  margin-bottom: 0;
}

.footer-bottom a {
  text-decoration: none;
}

.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;
}

:focus-visible {
  outline: 2px solid #88aaff;
  outline-offset: 4px;
}

.reveal-enabled .reveal-item {
  opacity: 0;
  transform: translateY(1.5rem);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal-enabled .reveal-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-enabled .outcome-grid article:nth-child(2),
.reveal-enabled .services-list > li:nth-child(2),
.reveal-enabled .process-list li:nth-child(2) {
  transition-delay: 0.08s;
}

.reveal-enabled .outcome-grid article:nth-child(3),
.reveal-enabled .services-list > li:nth-child(3),
.reveal-enabled .process-list li:nth-child(3) {
  transition-delay: 0.16s;
}

.reveal-enabled .services-list > li:nth-child(4),
.reveal-enabled .process-list li:nth-child(4) {
  transition-delay: 0.24s;
}

.reveal-enabled .services-list > li:nth-child(5),
.reveal-enabled .process-list li:nth-child(5) {
  transition-delay: 0.32s;
}

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

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

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

@keyframes float {
  0%,
  100% {
    transform: translateY(-0.4rem) rotate(-1deg);
  }
  50% {
    transform: translateY(0.55rem) rotate(1deg);
  }
}

@keyframes breathe {
  0%,
  100% {
    opacity: 0.55;
    transform: scale(0.92);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
}

@media (max-width: 1080px) {
  .service-row {
    grid-template-columns: minmax(15rem, 0.76fr) minmax(0, 1fr);
    gap: 3rem;
  }

  .hero-layout {
    grid-template-columns: minmax(0, 1fr) minmax(20rem, 0.65fr);
    gap: 1.5rem;
  }

  .hero h1 {
    font-size: clamp(4rem, 7.8vw, 6.6rem);
  }

  .hero-visual {
    transform: translateX(7%);
  }

  .process-list li {
    grid-template-columns: 4rem minmax(0, 1fr) 2rem;
    gap: 1.5rem;
  }

  .process-list div {
    grid-template-columns: minmax(10rem, 0.55fr) minmax(18rem, 1fr);
    gap: 3rem;
  }
}

@media (max-width: 860px) {
  .header-inner {
    min-height: 4.85rem;
  }

  .nav-toggle {
    position: relative;
    z-index: 2;
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 4.85rem 0 auto;
    display: flex;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    max-height: 0;
    padding-inline: var(--gutter);
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.11);
    opacity: 0;
    background: rgba(0, 5, 31, 0.98);
    transition: max-height 0.3s ease, opacity 0.25s ease, padding 0.3s ease;
  }

  .site-nav[data-open="true"] {
    max-height: calc(100svh - 4.85rem);
    padding-block: 1rem 1.5rem;
    opacity: 1;
  }

  .site-nav a,
  .site-nav .nav-cta {
    display: block;
    padding: 1rem 0;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0;
    font-size: 0.8rem;
    background: transparent;
  }

  .site-nav a::after {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-layout {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .hero-copy {
    z-index: 3;
  }

  .hero-visual {
    position: absolute;
    right: -7rem;
    bottom: 3rem;
    z-index: 1;
    width: 27rem;
    opacity: 0.38;
    transform: none;
  }

  .intro-grid,
  .section-heading,
  .partnerships-layout,
  .discovery-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .intro-columns {
    gap: 2rem;
  }

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

  .outcome-grid {
    margin-top: 0;
  }

  .proposal-card {
    position: static;
  }

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

  .footer-top {
    flex-direction: column;
  }

  .footer-nav {
    width: 100%;
  }

  .services-list > li,
  .process-list li {
    grid-template-columns: 3.5rem minmax(0, 1fr) 1.5rem;
    gap: 1rem;
  }

  .service-row {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .process-list div {
    grid-template-columns: minmax(9rem, 0.55fr) minmax(0, 1fr);
    gap: 2.5rem;
  }
}

@media (max-width: 640px) {
  :root {
    --gutter: 1.2rem;
  }

  .section-shell {
    padding-block: 5.2rem;
  }

  .brand-icon {
    width: 2.75rem;
    height: 2.75rem;
  }

  .brand-icon img {
    width: 173%;
    height: 173%;
    transform: translate(-50%, -50%);
  }

  .brand-name {
    font-size: 0.92rem;
  }

  .hero {
    padding-block: 5rem 5.8rem;
  }

  .hero h1 {
    font-size: clamp(3.55rem, 17vw, 5.3rem);
  }

  .hero-lead {
    max-width: 31rem;
    padding-right: 0.5rem;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-disciplines {
    display: grid;
    max-width: 24rem;
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-visual {
    right: -9rem;
    bottom: 8rem;
    width: 24rem;
    opacity: 0.24;
  }

  .float-label {
    display: none;
  }

  .intro-content h2,
  .section-heading h2,
  .partnerships-copy h2 {
    font-size: clamp(2.8rem, 13vw, 4.2rem);
  }

  .intro-columns,
  .outcome-grid,
  .footer-nav {
    grid-template-columns: 1fr;
  }

  .services-list > li {
    padding: 2rem 0;
    grid-template-columns: 2rem minmax(0, 1fr) 1.25rem;
    gap: 0.8rem;
  }

  .service-row {
    display: block;
  }

  .service-name h3 {
    font-size: clamp(2.2rem, 10.5vw, 3.4rem);
  }

  .service-row ul {
    margin-top: 1.6rem;
    grid-template-columns: 1fr;
    gap: 0.7rem;
  }

  .services-list > li::after {
    font-size: 1.1rem;
    grid-column: 3;
    grid-row: 1;
  }

  .outcome-grid article {
    min-height: auto;
  }

  .outcome-grid article + article {
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    border-left: 0;
  }

  .process-list li {
    grid-template-columns: 2rem 1fr auto;
    gap: 0.8rem;
  }

  .process-list div {
    display: block;
    grid-column: 2;
  }

  .process-list h3 {
    margin-bottom: 0.75rem;
  }

  .process-list li::after {
    grid-column: 3;
    grid-row: 1;
  }

  .founder-layout {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .founder-mark {
    height: 4.5rem;
  }

  .founder-credit {
    grid-column: 1;
  }

  .discovery-section h2 {
    font-size: clamp(3rem, 14vw, 5rem);
  }

  .footer-nav {
    gap: 2.5rem;
  }

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

@media (max-width: 410px) {
  .brand-name {
    display: none;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .pointer-halo {
    display: none;
  }
}
