:root {
  --display-font: "Special Gothic Expanded One", "Century Gothic", CenturyGothic, AppleGothic, sans-serif;
  --text-font: "Spline Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

@font-face {
  font-family: "Special Gothic Expanded One";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("assets/fonts/special-gothic-expanded-one-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Spline Sans";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("assets/fonts/spline-sans-latin.woff2") format("woff2");
}

:root {
  --ink: #edf7f9;
  --muted: #a6bac4;
  --white: #ffffff;
  --paper: #020a12;
  --soft-blue: #071b2a;
  --sage: #092326;
  --line: rgba(255, 255, 255, 0.12);
  --line-dark: rgba(255, 255, 255, 0.18);
  --navy: #031b31;
  --deep: #00070c;
  --teal: #05aa98;
  --teal-dark: #047c71;
  --shadow: 0 24px 70px rgba(0, 19, 31, 0.18);
  --header-height: 76px;
  --header-box-height: 76px;
  --header-piece-height: 64px;
  --header-bar-piece-height: 58px;
  --page-inline: clamp(1.25rem, 5vw, 5rem);
  --glass-cap: calc(var(--header-height) / 2);
  --glass-header-radius: 26px;
  --glass-card-radius: 9px;
  --glass-control-radius: 6px;
  --header-shell-inset: clamp(0.75rem, 4vw, 3.2rem);
  --header-shell-padding: 0.24rem;
  --header-cluster-gap: clamp(0.35rem, 1vw, 0.65rem);
  --header-nav-gap: clamp(0.5rem, 2vw, 1.35rem);
  --header-inner-pad: clamp(0.48rem, 1.4vw, 0.82rem);
  --header-edge-pad: 0.38rem;
  --header-left-size: 290px;
  --header-right-size: 295px;
  --brand-logo-size: 245px;
  --glass-header-blur: 22px;
  --glass-control-blur: 14px;
  --glass-card-blur: 20px;
  --glass-action-blur: 18px;
  --header-sheen-blur: 18px;
  --app-height: 100svh;
  --hero-scroll-height: 156svh;
  --hero-image-brightness: 1.03;
  --hero-image-contrast: 1.01;
  --hero-image-saturation: 0.91;
  --hero-image-blur: 0px;
}

@supports (height: 100dvh) {
  :root {
    --app-height: 100dvh;
    --hero-scroll-height: 156dvh;
  }
}

[data-background-blur="false"] {
  --glass-header-blur: 0px;
  --glass-control-blur: 0px;
  --glass-card-blur: 0px;
  --glass-action-blur: 0px;
  --header-sheen-blur: 0px;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
  scroll-padding-top: 98px;
  scrollbar-width: none;
  background: var(--deep);
}

body {
  overflow-x: hidden;
  margin: 0;
  color: var(--ink);
  font-family: var(--text-font);
  line-height: 1.5;
  letter-spacing: 0;
  -ms-overflow-style: none;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

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

img {
  max-width: 100%;
}

.site-header {
  position: fixed;
  top: clamp(0.8rem, 1.8vw, 1.35rem);
  right: var(--header-shell-inset);
  left: var(--header-shell-inset);
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--header-cluster-gap);
  min-height: var(--header-box-height);
  color: var(--white);
  isolation: isolate;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(0, -0.65rem, 0);
  transition: opacity 260ms ease, transform 260ms ease, visibility 260ms ease;
  visibility: hidden;
}

.is-hero-header-visible .site-header,
.is-past-hero .site-header {
  opacity: var(--hero-header-opacity, 1);
  pointer-events: auto;
  transform: translate3d(0, var(--hero-header-shift, 0px), 0);
  visibility: visible;
}

[data-hide-header-left="true"] .brand,
[data-hide-header-right="true"] .nav {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

[data-show-hero-text="false"] .hero-copy,
[data-show-hero-logo="false"] .hero-logo-lockup,
[data-show-hero-rail="false"] .site-progress {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

.brand {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 var(--header-left-size);
  min-height: var(--header-piece-height);
  min-width: 0;
  overflow: hidden;
  padding: 0 var(--header-inner-pad);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--glass-header-radius);
  background:
    linear-gradient(112deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.035) 34%, rgba(255, 255, 255, 0.1) 100%),
    rgba(5, 16, 26, 0.4);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.17),
    inset 0 -1px 0 rgba(255, 255, 255, 0.055),
    0 16px 38px rgba(0, 19, 31, 0.24);
  backdrop-filter: blur(var(--glass-header-blur)) saturate(145%);
  isolation: isolate;
  pointer-events: auto;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
  width: var(--header-left-size);
}

.brand::before,
.nav::before {
  position: absolute;
  inset: 1px;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.08), transparent 44%, rgba(255, 255, 255, 0.05));
  content: "";
  opacity: 0.5;
}

.brand-logo {
  display: block;
  flex: 0 0 auto;
  width: var(--brand-logo-size);
  max-width: none;
  height: auto;
}

.nav {
  position: relative;
  display: flex;
  align-items: center;
  flex: 0 0 var(--header-right-size);
  justify-content: center;
  gap: var(--header-nav-gap);
  min-height: var(--header-piece-height);
  overflow: visible;
  padding: 0 var(--header-inner-pad);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--glass-header-radius);
  background:
    linear-gradient(112deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.035) 34%, rgba(255, 255, 255, 0.1) 100%),
    rgba(5, 16, 26, 0.4);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.17),
    inset 0 -1px 0 rgba(255, 255, 255, 0.055),
    0 16px 38px rgba(0, 19, 31, 0.24);
  backdrop-filter: blur(var(--glass-header-blur)) saturate(145%);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.82rem;
  font-weight: 700;
  isolation: isolate;
  text-transform: uppercase;
  white-space: nowrap;
  pointer-events: auto;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
  width: var(--header-right-size);
}

[data-header-mode="bar"] .site-header {
  min-height: var(--header-box-height);
  overflow: hidden;
  padding: var(--header-shell-padding);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--glass-header-radius);
  background:
    linear-gradient(112deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.026) 34%, rgba(255, 255, 255, 0.105) 100%),
    rgba(5, 16, 26, 0.42);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.17),
    inset 0 -1px 0 rgba(255, 255, 255, 0.055),
    0 16px 38px rgba(0, 19, 31, 0.24);
  backdrop-filter: blur(var(--glass-header-blur)) saturate(145%);
}

[data-header-mode="bar"] .site-header::before,
[data-header-mode="bar"] .site-header::after {
  position: absolute;
  pointer-events: none;
  content: "";
}

[data-header-mode="bar"] .site-header::before {
  inset: 1px;
  z-index: 0;
  border-radius: inherit;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.075), transparent 24%, transparent 72%, rgba(255, 255, 255, 0.06)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 58%);
  opacity: 0.58;
}

[data-header-mode="bar"] .site-header::after {
  inset: -34% 7% auto 7%;
  z-index: 0;
  height: 82%;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.13), transparent);
  filter: blur(var(--header-sheen-blur));
  opacity: 0.46;
}

[data-header-mode="bar"] .brand,
[data-header-mode="bar"] .nav {
  z-index: 1;
  min-height: var(--header-bar-piece-height);
  border-color: transparent;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

[data-header-mode="bar"] .brand {
  padding-left: var(--header-edge-pad);
}

[data-header-mode="bar"] .nav {
  padding-left: var(--header-edge-pad);
  padding-right: var(--header-edge-pad);
}

[data-header-mode="bar"] .nav::before {
  opacity: 0;
}

[data-header-mode="bar"] .brand::before {
  opacity: 0;
}

[data-header-full-box="true"] .site-header {
  overflow: hidden;
  padding: var(--header-shell-padding);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--glass-header-radius);
  background:
    linear-gradient(112deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.026) 34%, rgba(255, 255, 255, 0.105) 100%),
    rgba(5, 16, 26, 0.42);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.17),
    inset 0 -1px 0 rgba(255, 255, 255, 0.055),
    0 16px 38px rgba(0, 19, 31, 0.24);
  backdrop-filter: blur(var(--glass-header-blur)) saturate(145%);
}

.nav a {
  position: relative;
  border-bottom: 1px solid transparent;
  padding-block: 0.35rem;
  transition: border-color 180ms ease, color 180ms ease;
}

.nav a[aria-current="page"] {
  color: var(--white);
}

.nav a:hover,
.nav a:focus-visible {
  border-color: rgba(255, 255, 255, 0.86);
  color: var(--white);
  outline: 0;
}

.nav-indicator {
  position: absolute;
  bottom: 0.86rem;
  left: 0;
  width: var(--active-nav-width, 0);
  height: 2px;
  background: var(--teal);
  box-shadow: 0 0 18px rgba(5, 170, 152, 0.6);
  opacity: 0;
  transform: translate3d(var(--active-nav-left, 0), 0, 0);
  transform-origin: left center;
  transition: transform 430ms ease, width 430ms ease, opacity 180ms ease;
}

.has-active-nav .nav-indicator {
  opacity: 1;
}

.site-progress {
  position: fixed;
  top: 50%;
  right: clamp(0.75rem, 1.8vw, 1.35rem);
  z-index: 25;
  width: 2px;
  height: min(54svh, 34rem);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.18);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-50%);
  transition: opacity 180ms ease;
}

.is-scrolling .site-progress {
  opacity: 1;
}

.site-progress-fill {
  display: block;
  width: 100%;
  height: var(--page-progress, 0%);
  background: var(--teal);
  box-shadow: 0 0 18px rgba(5, 170, 152, 0.56);
  transition: height 80ms linear, transform 80ms linear;
}

[data-progress-mode="bar"] .site-progress-fill {
  height: clamp(3.25rem, 12svh, 6rem);
  transform: translate3d(0, var(--progress-y, 0px), 0);
}

.progress-toggle,
.radius-toggle,
.header-toggle,
.edge-slider,
.box-slider,
.full-box-toggle,
.hide-header-toggle,
.side-slider,
.logo-slider,
.background-blur-toggle,
.hero-layer-toggle,
.hero-filter-panel {
  position: fixed;
  right: clamp(1rem, 2vw, 1.6rem);
  z-index: 30;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--glass-control-radius);
  background: rgba(0, 19, 31, 0.62);
  backdrop-filter: blur(var(--glass-control-blur));
  box-shadow: 0 18px 44px rgba(0, 19, 31, 0.16);
}

.progress-toggle,
.radius-toggle,
.header-toggle {
  display: inline-flex;
}

.progress-toggle {
  bottom: 1rem;
}

.radius-toggle {
  bottom: 3.65rem;
}

.header-toggle {
  bottom: 6.3rem;
}

.edge-slider {
  bottom: 8.95rem;
  display: grid;
  grid-template-columns: 4rem minmax(7.25rem, 11rem) 3.25rem;
  align-items: center;
  gap: 0.7rem;
  padding: 0.5rem 0.7rem;
  color: rgba(255, 255, 255, 0.78);
}

.box-slider,
.full-box-toggle,
.hide-header-toggle,
.side-slider,
.logo-slider,
.background-blur-toggle,
.hero-layer-toggle,
.hero-filter-panel {
  display: grid;
  align-items: center;
  gap: 0.7rem;
  padding: 0.5rem 0.7rem;
  color: rgba(255, 255, 255, 0.78);
}

.box-slider {
  bottom: 11.6rem;
  grid-template-columns: 4rem minmax(7.25rem, 11rem) 3.25rem;
}

.full-box-toggle {
  bottom: 14.25rem;
  grid-template-columns: 4rem 2.7rem 3.25rem;
  min-height: 2.15rem;
}

.hide-header-toggle {
  bottom: 16.9rem;
  grid-template-columns: 1fr 1fr;
}

.hide-header-toggle label {
  display: inline-grid;
  grid-template-columns: auto 1.2rem;
  align-items: center;
  gap: 0.45rem;
}

.side-slider,
.logo-slider {
  grid-template-columns: 4rem minmax(7.25rem, 11rem) 3.25rem;
}

.left-size-slider {
  bottom: 19.55rem;
}

.right-size-slider {
  bottom: 22.2rem;
}

.logo-slider {
  bottom: 24.85rem;
}

.background-blur-toggle {
  bottom: 27.5rem;
  grid-template-columns: 4rem 2.7rem 8.25rem;
}

.hero-layer-toggle {
  bottom: 30.15rem;
  grid-template-columns: repeat(3, auto);
}

.hero-filter-panel {
  bottom: 32.8rem;
  gap: 0.45rem;
  min-width: 17.8rem;
}

.hero-filter-panel label {
  display: grid;
  grid-template-columns: 4.5rem minmax(7.25rem, 11rem) 3.25rem;
  align-items: center;
  gap: 0.7rem;
}

.hero-layer-toggle label {
  display: inline-grid;
  grid-template-columns: auto 1.2rem;
  align-items: center;
  gap: 0.45rem;
}

.edge-slider span,
.box-slider span,
.full-box-toggle span,
.hide-header-toggle span,
.side-slider span,
.logo-slider span,
.background-blur-toggle span,
.hero-layer-toggle span,
.hero-filter-panel span {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.edge-slider output,
.box-slider output,
.full-box-toggle output,
.side-slider output,
.logo-slider output,
.background-blur-toggle output,
.hero-filter-panel output {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.7rem;
  font-weight: 800;
  text-align: right;
  white-space: nowrap;
}

.edge-slider input,
.box-slider input,
.side-slider input,
.logo-slider input,
.hero-filter-panel input {
  width: 100%;
  accent-color: var(--teal);
  cursor: pointer;
}

.full-box-toggle input {
  width: 2.35rem;
  height: 1.2rem;
  margin: 0;
  accent-color: var(--teal);
  cursor: pointer;
}

.background-blur-toggle input {
  width: 2.35rem;
  height: 1.2rem;
  margin: 0;
  accent-color: var(--teal);
  cursor: pointer;
}

.hero-layer-toggle input {
  width: 1rem;
  height: 1rem;
  margin: 0;
  accent-color: var(--teal);
  cursor: pointer;
}

.hide-header-toggle input {
  width: 1rem;
  height: 1rem;
  margin: 0;
  accent-color: var(--teal);
  cursor: pointer;
}

.progress-toggle button,
.radius-toggle button,
.header-toggle button {
  min-width: 3.2rem;
  min-height: 2rem;
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  background: transparent;
  color: rgba(255, 255, 255, 0.72);
  cursor: pointer;
  font: inherit;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.radius-toggle button,
.header-toggle button {
  min-width: 3.7rem;
}

.progress-toggle button:last-child,
.radius-toggle button:last-child,
.header-toggle button:last-child {
  border-right: 0;
}

.progress-toggle button[aria-pressed="true"],
.radius-toggle button[aria-pressed="true"],
.header-toggle button[aria-pressed="true"] {
  background: var(--teal);
  color: var(--deep);
}

.progress-toggle button:focus-visible,
.radius-toggle button:focus-visible,
.header-toggle button:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: -2px;
}

.hero {
  position: relative;
  display: block;
  width: 100%;
  min-height: var(--hero-scroll-height);
  max-width: 100vw;
  padding: 0;
  background: var(--deep);
  color: var(--white);
  isolation: isolate;
}

.hero-image {
  position: sticky;
  top: 0;
  z-index: 0;
  display: block;
  width: 100%;
  max-width: none;
  height: var(--app-height);
  filter:
    brightness(var(--hero-image-brightness))
    contrast(var(--hero-image-contrast))
    saturate(var(--hero-image-saturation))
    blur(var(--hero-image-blur));
  object-fit: cover;
  object-position: 57% 50%;
}

.hero-content,
.hero-logo-lockup {
  position: absolute;
  left: clamp(1.25rem, 5vw, 4.5rem);
  z-index: 1;
  width: min(44rem, 100%);
  text-align: left;
  text-shadow: 0 3px 22px rgba(0, 0, 0, 0.62);
  will-change: opacity, transform;
}

.hero-content {
  top: calc(var(--app-height) - 10.35rem);
  opacity: var(--copy-opacity, 1);
  transform: translate3d(0, var(--copy-shift, 0px), 0);
}

.hero-logo-lockup {
  top: calc(var(--app-height) - 15.4rem);
  margin: 0;
  opacity: var(--hero-logo-opacity, 1);
  pointer-events: none;
  transform: translate3d(0, var(--hero-logo-shift, 0px), 0);
}

.scroll-cue {
  position: fixed;
  bottom: clamp(1.15rem, 3.2svh, 2.2rem);
  left: 50%;
  z-index: 16;
  display: block;
  width: clamp(6.5rem, 13vw, 11rem);
  height: 1.7rem;
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  opacity: var(--scroll-cue-opacity, 1);
  pointer-events: auto;
  transform: translate3d(-50%, var(--scroll-cue-shift, 0px), 0);
  will-change: opacity, transform;
}

.scroll-cue::before {
  position: absolute;
  inset: -1rem -1.25rem;
  content: "";
}

.scroll-cue::after {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  height: 0.34rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 1);
  box-shadow:
    0 0 28px rgba(255, 255, 255, 0.48),
    0 10px 28px rgba(0, 0, 0, 0.32);
  content: "";
  transform: translate3d(0, -50%, 0);
  animation: scrollCuePulse 1.65s ease-in-out infinite;
  will-change: opacity, transform;
}

.scroll-cue:hover,
.scroll-cue:focus-visible {
  outline: 0;
}

.scroll-cue:hover::after,
.scroll-cue:focus-visible::after {
  background: rgba(255, 255, 255, 1);
}

.is-cue-gone .scroll-cue,
.is-past-hero .scroll-cue {
  pointer-events: none;
}

@keyframes scrollCuePulse {
  0%,
  100% {
    opacity: 0.95;
    transform: translate3d(0, calc(-50% + 3px), 0);
  }

  50% {
    opacity: 0.28;
    transform: translate3d(0, calc(-50% - 7px), 0);
  }
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--teal);
  font-size: clamp(0.88rem, 1vw, 1rem);
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.82);
}

.hero .eyebrow::before {
  width: 2.2rem;
  height: 0.15rem;
  background: var(--teal);
  content: "";
}

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

h1 {
  max-width: min(34rem, calc(100vw - 2.5rem));
  margin-bottom: 0;
  line-height: 0;
}

.hero-wordmark {
  display: block;
  width: min(34rem, calc(100vw - 2.5rem));
  height: auto;
}

.hero-subline {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  margin: 1.05rem 0 0 clamp(5.75rem, 7vw, 7.5rem);
  max-width: calc(100vw - 2.5rem);
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.96rem;
  font-weight: 800;
  transform: scaleX(1.018);
  transform-origin: left center;
  text-transform: uppercase;
  white-space: nowrap;
}

.hero-subline-rule {
  display: inline-block;
  width: 2.6rem;
  height: 0.15rem;
  background: var(--teal);
}

.hero-subline-text {
  display: inline;
}

.mobile-break {
  display: none;
}

.content-band {
  display: grid;
  grid-template-columns: minmax(13rem, 0.44fr) minmax(0, 1fr);
  align-content: start;
  align-items: start;
  gap: clamp(2rem, 6vw, 6rem);
  width: 100%;
  min-height: auto;
  max-width: 100vw;
  padding: clamp(4.75rem, 8svh, 6rem) clamp(1rem, 3.2vw, 3.2rem) clamp(6.25rem, 13svh, 9rem);
  color: var(--white);
}

.section-heading {
  container-type: inline-size;
  min-width: 0;
}

.section-heading h2,
.contact-band h2 {
  max-width: 48rem;
  margin-bottom: 0;
  font-size: clamp(2.35rem, 3.7vw, 3rem);
  font-weight: 650;
  line-height: 1.03;
}

.section-heading .focus-title {
  font-size: clamp(1.55rem, 2.25vw, 2.6rem);
  font-size: var(--focus-title-size, clamp(1.55rem, 6.2cqw, 2.6rem));
}

.section-heading .focus-title span {
  display: block;
  white-space: nowrap;
}

.focus-band {
  grid-template-columns: minmax(13rem, 0.44fr) minmax(0, 1fr);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(135deg, #020a12 0%, #061827 58%, #02080d 100%);
}

.about-band .section-heading,
.about-band .section-body {
  grid-column: 1 / -1;
}

.about-band .section-heading h2,
.about-band .section-body {
  max-width: min(84rem, 100%);
}

.about-title span {
  display: block;
}

.about-band .section-body p {
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.22rem, 1.65vw, 1.5rem);
  line-height: 1.48;
}

.focus-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  min-width: 0;
}

.focus-grid article {
  position: relative;
  min-height: 18rem;
  padding: var(--focus-card-pad, clamp(1.4rem, 1.65vw, 1.75rem));
  padding-bottom: var(--focus-card-pad-bottom, clamp(2.75rem, 3vw, 3.35rem));
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: var(--glass-card-radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.008)),
    rgba(3, 19, 32, 0.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.065),
    inset 0 -1px 0 rgba(255, 255, 255, 0.018),
    0 14px 42px rgba(0, 0, 0, 0.14);
  backdrop-filter: blur(8px) saturate(108%);
}

.focus-grid h3 {
  display: block;
  margin-bottom: 1.9rem;
  color: var(--teal);
  font-size: var(--focus-card-title-size, clamp(1.65rem, 2.35vw, 2.12rem));
  line-height: 1.04;
}

.focus-card-title,
.focus-card-number {
  display: inline-flex;
  color: var(--teal);
  font-weight: 800;
}

.focus-card-title {
  min-width: 0;
}

.focus-card-number {
  position: absolute;
  right: var(--focus-card-pad, clamp(1.4rem, 1.65vw, 1.75rem));
  bottom: var(--focus-card-number-bottom, clamp(1.25rem, 1.45vw, 1.65rem));
  font-size: var(--focus-card-number-size, 0.86rem);
}

.focus-grid p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: var(--focus-card-body-size, clamp(1.16rem, 1.22vw, 1.26rem));
  font-weight: 400;
  line-height: 1.48;
}

.section-body p {
  color: var(--muted);
  font-size: 1.03rem;
}

.about-band {
  border-block: 1px solid var(--line);
  background:
    linear-gradient(110deg, #00070c 0%, #061729 48%, #0a2029 100%);
}

.section-body {
  max-width: 42rem;
}

.section-body p {
  margin-bottom: 1rem;
}

.section-body p:last-child,
.site-footer p {
  margin-bottom: 0;
}

.contact-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(2rem, 6vw, 6rem);
  width: 100%;
  min-height: clamp(26rem, 48svh, 36rem);
  max-width: 100vw;
  padding: clamp(5.5rem, 9svh, 7rem) clamp(1rem, 3.2vw, 3.2rem) clamp(6.25rem, 13svh, 9rem);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(135deg, #00070c 0%, #041629 62%, #00080e 100%);
  color: var(--white);
}

.contact-heading {
  max-width: 68rem;
}

.contact-action {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-width: min(22rem, 100%);
}

.contact-band .eyebrow {
  color: var(--teal);
}

.contact-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.35rem;
  padding: 0 1.35rem;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: var(--glass-card-radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.05)),
    rgba(255, 255, 255, 0.06);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.34),
    0 18px 44px rgba(0, 19, 31, 0.22);
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 700;
  white-space: nowrap;
  backdrop-filter: blur(var(--glass-action-blur)) saturate(140%);
  transition: background 180ms ease, border-color 180ms ease, box-shadow 240ms ease;
}

.contact-link:hover,
.contact-link:focus-visible {
  border-color: rgba(5, 170, 152, 0.8);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.05)),
    rgba(5, 170, 152, 0.14);
  outline: 0;
}

.contact-link.is-contact-glowing {
  animation: contactBorderGlow 1400ms ease;
}

@keyframes contactBorderGlow {
  0%,
  100% {
    border-color: rgba(255, 255, 255, 0.34);
    box-shadow: 0 0 0 rgba(255, 255, 255, 0);
  }

  22%,
  72% {
    border-color: rgba(255, 255, 255, 0.96);
    box-shadow: 0 0 24px rgba(255, 255, 255, 0.32);
  }
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.75rem clamp(1.25rem, 5vw, 5rem);
  border-top: 1px solid var(--line-dark);
  background: var(--deep);
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.86rem;
}

.site-footer p {
  max-width: 47rem;
  text-align: right;
}

.footer-brand img {
  display: block;
  width: 12rem;
  height: auto;
}

.tm {
  position: relative;
  top: -0.32em;
  font-size: 0.68em;
  font-weight: 800;
}

@media (max-width: 980px) {
  .section-heading h2,
  .contact-band h2 {
    font-size: 2.65rem;
  }

  .content-band {
    grid-template-columns: 1fr;
  }

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

  .focus-grid article {
    min-height: 0;
  }

  .focus-grid h3 {
    margin-bottom: 1.35rem;
  }

  .contact-band {
    align-items: flex-start;
    grid-template-columns: 1fr;
  }

  .contact-action {
    justify-content: flex-start;
  }
}

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

  :root {
    --header-height: 58px;
    --header-box-height: 58px;
    --header-piece-height: 44px;
    --header-bar-piece-height: 44px;
    --hero-scroll-height: 112.5svh;
    --page-inline: 1rem;
    --glass-cap: 0;
    --glass-header-radius: 0;
    --header-shell-inset: 0;
    --header-inner-pad: 0.55rem;
    --header-cluster-gap: 0.35rem;
    --header-nav-gap: 0.52rem;
  }

  .site-header {
    min-height: var(--header-box-height);
    top: 0;
    right: 0;
    left: 0;
    gap: var(--header-cluster-gap);
    width: 100%;
    padding: 0.4rem 0.72rem;
    border: 0;
    border-radius: 0;
    background:
      linear-gradient(112deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.035) 34%, rgba(255, 255, 255, 0.1) 100%),
      rgba(5, 16, 26, 0.48);
    box-shadow: 0 16px 38px rgba(0, 19, 31, 0.24);
    backdrop-filter: blur(var(--glass-header-blur)) saturate(145%);
    opacity: 1;
    pointer-events: auto;
    transform: translate3d(0, 0, 0);
    transition: none;
    visibility: visible;
  }

  .is-hero-header-visible .site-header,
  .is-past-hero .site-header {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    visibility: visible;
  }

  .brand,
  .nav {
    min-height: var(--header-piece-height);
    border-color: transparent;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    padding: 0;
  }

  .brand::before,
  .nav::before {
    opacity: 0;
  }

  .brand {
    flex: 1 1 auto;
    justify-content: flex-start;
    width: auto;
    min-width: 0;
  }

  .nav {
    flex: 0 0 auto;
    justify-content: flex-end;
    width: auto;
    min-width: 0;
  }

  .brand-logo {
    width: min(var(--brand-logo-size), 38vw, 10rem);
  }

  .nav {
    gap: var(--header-nav-gap);
    font-size: 0.67rem;
  }

  .nav-indicator {
    bottom: 0.34rem;
  }

  [data-header-mode="bar"] .site-header {
    min-height: var(--header-box-height);
    padding: clamp(0.12rem, var(--header-shell-padding), 0.45rem);
  }

  [data-header-mode="bar"] .brand,
  [data-header-mode="bar"] .nav {
    min-height: var(--header-bar-piece-height);
  }

  .site-progress {
    right: 0.5rem;
    height: min(56svh, 26rem);
  }

  .progress-toggle {
    right: 0.75rem;
    bottom: 0.75rem;
  }

  .radius-toggle {
    right: 0.75rem;
    bottom: 3.35rem;
  }

  .header-toggle {
    right: 0.75rem;
    bottom: 5.95rem;
  }

  .edge-slider {
    right: 0.75rem;
    bottom: 8.55rem;
    grid-template-columns: 3.5rem minmax(5.5rem, 7.5rem) 3rem;
  }

  .box-slider,
  .full-box-toggle,
  .hide-header-toggle,
  .side-slider,
  .logo-slider,
  .background-blur-toggle,
  .hero-layer-toggle,
  .hero-filter-panel {
    right: 0.75rem;
  }

  .box-slider {
    bottom: 11.15rem;
    grid-template-columns: 3.5rem minmax(5.5rem, 7.5rem) 3rem;
  }

  .full-box-toggle {
    grid-template-columns: 3.5rem 2.5rem 3rem;
  }

  .full-box-toggle {
    bottom: 13.75rem;
  }

  .hide-header-toggle {
    bottom: 16.35rem;
  }

  .side-slider,
  .logo-slider {
    grid-template-columns: 3.5rem minmax(5.5rem, 7.5rem) 3rem;
  }

  .left-size-slider {
    bottom: 18.95rem;
  }

  .right-size-slider {
    bottom: 21.55rem;
  }

  .logo-slider {
    bottom: 24.15rem;
  }

  .background-blur-toggle {
    bottom: 26.75rem;
    grid-template-columns: 3.5rem 2.5rem 7.5rem;
  }

  .hero-layer-toggle {
    bottom: 29.35rem;
  }

  .hero-filter-panel {
    bottom: 32rem;
    min-width: 14.2rem;
  }

  .hero-filter-panel label {
    grid-template-columns: 4rem minmax(5.5rem, 7.5rem) 3rem;
  }

  .hero {
    min-height: var(--hero-scroll-height);
    background: var(--deep);
  }

  .hero-image {
    position: sticky;
    top: 0;
    width: 100%;
    height: var(--app-height);
    background: var(--deep);
    object-position: 55% 50%;
  }

  .hero-content,
  .hero-logo-lockup {
    left: 1rem;
    width: calc(100% - 2rem);
  }

  .hero-content {
    display: none;
    top: calc(var(--app-height) - 7.05rem);
  }

  .hero-logo-lockup {
    display: flex;
    justify-content: center;
    top: calc(var(--app-height) - 6.5rem);
  }

  .hero .eyebrow::before {
    width: 1.2rem;
  }

  .hero-wordmark {
    width: min(20.25rem, calc(100vw - 2rem));
    margin: 0 auto;
  }

  .scroll-cue {
    display: none;
  }

  .hero-subline {
    align-items: flex-start;
    gap: 0.6rem;
    margin-top: 0.95rem;
    margin-left: 3.65rem;
    font-size: 0.68rem;
    line-height: 1.18;
    transform: none;
    white-space: normal;
  }

  .hero-subline-text {
    display: inline-flex;
    flex-direction: column;
    gap: 0.16rem;
    white-space: nowrap;
  }

  .mobile-break {
    display: inline;
  }

  .desktop-space {
    display: none;
  }

  .hero-subline-rule {
    width: 2.55rem;
    margin-top: 0.58em;
  }

  .lede {
    font-size: 1.02rem;
  }

  .content-band,
  .contact-band {
    min-height: auto;
    padding: 5.85rem 1rem 7.2rem;
  }

  .section-heading h2,
  .contact-band h2 {
    font-size: 1.78rem;
    line-height: 1.08;
  }

  .about-title {
    font-size: 1.04rem;
    line-height: 1.3;
  }

  .about-band .section-body p {
    font-size: 1.08rem;
    line-height: 1.3;
  }

  .section-heading .focus-title {
    font-size: var(--focus-title-size, 1.78rem);
  }

  .about-band .section-body p {
    color: rgba(255, 255, 255, 0.84);
    font-weight: 400;
  }

  .about-band .section-heading {
    margin-bottom: 0.65rem;
  }

  .contact-band h2 {
    font-size: 1.42rem;
  }

  .contact-link {
    width: 100%;
  }

  .contact-action {
    min-width: 0;
    width: 100%;
  }

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

  .site-footer p {
    text-align: left;
  }
}

@supports (height: 100dvh) {
  @media (max-width: 620px) {
    :root {
      --hero-scroll-height: 112.5svh;
    }
  }
}

@media (max-width: 390px) {
  .hero-wordmark {
    width: min(18.85rem, calc(100vw - 2rem));
  }

  .hero-subline {
    gap: 0.5rem;
    margin-left: 3.05rem;
    font-size: 0.62rem;
    transform: none;
  }

  .hero-subline-rule {
    width: 2.15rem;
  }
}

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

  .scroll-cue::after {
    animation: none;
  }
}
