:root {
  color-scheme: dark;
  --ink-950: #020817;
  --ink-900: #061329;
  --ink-850: #081a36;
  --ink-800: #0b2345;
  --blue-700: #0b5790;
  --blue-500: #18a5dd;
  --blue-300: #82ddf7;
  --blue-200: #b9edfb;
  --white: #f5fcff;
  --muted: #a9c5d4;
  --muted-2: #7998aa;
  --warm: #ffd8ba;
  --line: rgba(190, 232, 255, 0.17);
  --line-strong: rgba(190, 232, 255, 0.32);
  --panel: rgba(4, 18, 39, 0.66);
  --panel-strong: rgba(5, 22, 47, 0.84);
  --header-height: 78px;
  --shell: 1180px;
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 32px;
  --ease: cubic-bezier(.2, .8, .2, 1);
}

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

html {
  overflow-x: clip;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
  background: var(--ink-950);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  background: var(--ink-950);
  color: var(--white);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: -0.012em;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

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

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

button {
  color: inherit;
}

img,
svg,
canvas {
  display: block;
}

::selection {
  background: rgba(105, 219, 250, 0.29);
  color: var(--white);
}

:focus-visible {
  outline: 2px solid var(--blue-300);
  outline-offset: 4px;
}

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

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  transform: translateY(-160%);
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--white);
  color: var(--ink-950);
  font-weight: 800;
  transition: transform 180ms ease;
}

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

.shell {
  width: min(calc(100% - 40px), var(--shell));
  margin-inline: auto;
}

.cosmos {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  background: var(--ink-950);
  isolation: isolate;
}

.cosmos__aura,
.cosmos__quiet-zone,
.cosmos__vignette,
.cosmos__grain,
.cosmos__canvas,
.cosmos__micro-rotator {
  position: absolute;
  inset: 0;
}

/* The photographic plate and its luminous anchors share the same geometry and
   animation clock, so every enhanced star stays locked to the source image. */
.cosmos__rotator,
.cosmos__anchor-rotator,
.cosmos__micro-rotator {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 146vmax;
  height: 146vmax;
  --spin-duration: 240s;
  --spin-scale: 1;
  transform: translate3d(-50%, -50%, 0) rotate(0deg) scale(var(--spin-scale));
  transform-origin: 50% 50%;
  animation: layer-spin var(--spin-duration) linear infinite;
  backface-visibility: hidden;
  will-change: transform;
}

.cosmos__rotator {
  z-index: 0;
}

.cosmos__image {
  position: absolute;
  inset: 0;
  background-image: url("assets/deepskies-rotator.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  opacity: .82;
  filter: brightness(.76) saturate(.76) contrast(1.10);
}

.cosmos__micro-rotator {
  z-index: 4;
}

.cosmos__micro-rotator--far {
  --spin-duration: 360s;
  --spin-scale: 1.01;
  opacity: .78;
}

.cosmos__micro-rotator--mid {
  --spin-duration: 300s;
  --spin-scale: 1;
  opacity: .90;
}

.cosmos__micro-rotator--near {
  --spin-duration: 185s;
  --spin-scale: .99;
  opacity: 1;
}



.cosmos__anchor-rotator {
  z-index: 5;
}

.cosmos__anchor-field {
  position: absolute;
  inset: 0;
}

.cosmos__anchor-star {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: var(--size);
  height: var(--size);
  border-radius: 50%;
  background: rgba(255, 255, 255, .98);
  opacity: var(--dim);
  transform: translate3d(-50%, -50%, 0) scale(.84);
  box-shadow:
    0 0 1px rgba(255, 255, 255, .98),
    0 0 calc(var(--glow) * .34) rgba(var(--star-rgb), .88),
    0 0 var(--glow) rgba(var(--star-rgb), .40);
  mix-blend-mode: screen;
  animation: anchored-star-shimmer var(--period) ease-in-out var(--delay) infinite;
  will-change: transform, opacity;
}

.cosmos__anchor-star::before,
.cosmos__anchor-star::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  border-radius: 999px;
  opacity: 0;
}

.cosmos__anchor-star::before {
  width: var(--flare-x);
  height: 2px;
  background: linear-gradient(90deg, transparent 0, rgba(var(--star-rgb), .16) 18%, rgba(255, 255, 255, .98) 49%, rgba(255, 255, 255, .98) 51%, rgba(var(--star-rgb), .16) 82%, transparent 100%);
  box-shadow: 0 0 9px rgba(var(--star-rgb), .38);
  filter: blur(.55px);
}

.cosmos__anchor-star::after {
  width: 2px;
  height: var(--flare-y);
  background: linear-gradient(180deg, transparent 0, rgba(var(--star-rgb), .14) 18%, rgba(255, 255, 255, .88) 49%, rgba(255, 255, 255, .88) 51%, rgba(var(--star-rgb), .14) 82%, transparent 100%);
  box-shadow: 0 0 8px rgba(var(--star-rgb), .32);
  filter: blur(.55px);
}

.cosmos__anchor-star.has-cross::before,
.cosmos__anchor-star.has-cross::after {
  opacity: .94;
}

.cosmos__anchor-star.has-cross.is-large::before,
.cosmos__anchor-star.has-cross.is-large::after {
  opacity: 1;
  filter: blur(.7px);
}

.cosmos__anchor-star.is-large {
  box-shadow:
    0 0 1px rgba(255, 255, 255, .98),
    0 0 calc(var(--glow) * .45) rgba(var(--star-rgb), .96),
    0 0 calc(var(--glow) * 1.15) rgba(var(--star-rgb), .54);
}

@keyframes layer-spin {
  from { transform: translate3d(-50%, -50%, 0) rotate(0deg) scale(var(--spin-scale)); }
  to { transform: translate3d(-50%, -50%, 0) rotate(360deg) scale(var(--spin-scale)); }
}

@keyframes anchored-star-shimmer {
  0%, 100% {
    opacity: var(--dim);
    transform: translate3d(-50%, -50%, 0) scale(.82);
  }
  38% {
    opacity: var(--peak);
    transform: translate3d(-50%, -50%, 0) scale(1.34);
  }
  56% {
    opacity: var(--mid);
    transform: translate3d(-50%, -50%, 0) scale(1.08);
  }
}

/* Restrained, sharp colour lift. There is deliberately no blurred duplicate. */
.cosmos__aura {
  inset: -6%;
  z-index: 1;
  background:
    radial-gradient(ellipse at 46% 17%, rgba(128, 218, 244, .058) 0, rgba(34, 138, 184, .022) 18%, transparent 39%),
    radial-gradient(ellipse at 52% 58%, rgba(62, 172, 213, .042) 0, rgba(16, 83, 136, .016) 23%, transparent 44%);
  opacity: .54;
}

.cosmos__canvas {
  width: 100%;
  height: 100%;
  mix-blend-mode: normal;
}

.cosmos__canvas--micro {
  z-index: 4;
  opacity: 1;
  filter: contrast(1.16) brightness(1.06);
}

.cosmos__canvas--bright {
  z-index: 6;
  opacity: 1;
  filter: contrast(1.12) brightness(1.04);
}

.cosmos__quiet-zone {
  z-index: 2;
  background:
    radial-gradient(ellipse 48% 42% at 43% 44%, rgba(2, 10, 27, .62) 0, rgba(2, 10, 27, .35) 35%, rgba(2, 10, 27, .05) 72%, transparent 100%),
    linear-gradient(180deg, rgba(2, 8, 23, .31) 0, transparent 20%, transparent 70%, rgba(2, 8, 23, .52) 100%);
}

.cosmos__vignette {
  z-index: 3;
  background:
    linear-gradient(180deg, rgba(1, 6, 18, .58) 0, rgba(2, 8, 23, .03) 22%, rgba(2, 8, 23, .06) 66%, rgba(1, 5, 16, .76) 100%),
    radial-gradient(ellipse at center, transparent 38%, rgba(1, 5, 17, .25) 72%, rgba(1, 5, 17, .68) 116%);
}

.cosmos__grain {
  z-index: 7;
  opacity: .10;
  mix-blend-mode: soft-light;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.86' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.46'/%3E%3C/svg%3E");
  background-size: 180px 180px;
}


main,
.site-footer {
  position: relative;
  z-index: 1;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  transition: background-color 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(2, 11, 28, .74);
  border-bottom-color: rgba(180, 231, 255, .12);
  box-shadow: 0 16px 42px rgba(0, 4, 14, .18);
  -webkit-backdrop-filter: blur(22px) saturate(1.25);
  backdrop-filter: blur(22px) saturate(1.25);
}

.site-header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-height: 44px;
  font-weight: 760;
  letter-spacing: -.05em;
}

.brand__mark {
  position: relative;
  width: 23px;
  height: 23px;
  flex: 0 0 23px;
  border-radius: 50%;
  background: radial-gradient(circle, #fff 0 12%, #9be8ff 18%, rgba(40, 181, 232, .44) 38%, transparent 70%);
  filter: drop-shadow(0 0 10px rgba(112, 222, 255, .72));
}

.brand__mark::before,
.brand__mark::after,
.brand__mark i::before,
.brand__mark i::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(231, 251, 255, .85), transparent);
  transform: translate(-50%, -50%);
}

.brand__mark::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.brand__mark i::before {
  width: 72%;
  opacity: .62;
  transform: translate(-50%, -50%) rotate(45deg);
}

.brand__mark i::after {
  width: 72%;
  opacity: .62;
  transform: translate(-50%, -50%) rotate(-45deg);
}

.brand__word {
  font-size: 1.23rem;
  line-height: 1;
}

.brand__word span {
  color: var(--blue-300);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav > a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 14px;
  border-radius: 999px;
  color: #c8dce6;
  font-size: .9rem;
  font-weight: 680;
  letter-spacing: -.01em;
  transition: color 180ms ease, background-color 180ms ease;
}

.site-nav > a:hover,
.site-nav > a.is-active {
  color: var(--white);
  background: rgba(175, 232, 255, .09);
}

.site-nav__group {
  position: relative;
}

.site-nav__trigger {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 14px;
  border: 0;
  border-radius: 999px;
  color: #c8dce6;
  background: transparent;
  font: inherit;
  font-size: .9rem;
  font-weight: 680;
  letter-spacing: -.01em;
  cursor: pointer;
  transition: color 180ms ease, background-color 180ms ease;
}

.site-nav__trigger:hover,
.site-nav__trigger.is-active,
.site-nav__group.is-open .site-nav__trigger {
  color: var(--white);
  background: rgba(175, 232, 255, .09);
}

.site-nav__chevron {
  width: 9px;
  height: 9px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  transition: transform 180ms ease;
}

.site-nav__group.is-open .site-nav__chevron {
  transform: rotate(225deg) translateY(-1px);
}

.site-nav__menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 220px;
  padding: 10px;
  border: 1px solid rgba(180, 231, 255, .15);
  border-radius: 18px;
  background: rgba(4, 18, 39, .94);
  box-shadow: 0 24px 54px rgba(1, 5, 16, .44);
  backdrop-filter: blur(18px) saturate(1.15);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.site-nav__group.is-open .site-nav__menu,
.site-nav__group:focus-within .site-nav__menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.site-nav__menu a {
  display: block;
  padding: 11px 12px;
  border-radius: 12px;
  color: #dcecf4;
  font-size: .92rem;
  font-weight: 620;
}

.site-nav__menu a:hover,
.site-nav__menu a:focus-visible {
  background: rgba(175, 232, 255, .09);
  color: var(--white);
}

.site-nav > a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 6px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--blue-300);
  box-shadow: 0 0 12px var(--blue-300);
  opacity: 0;
  transform: translate(-50%, 4px) scale(.4);
  transition: opacity 180ms ease, transform 180ms ease;
}

.site-nav > a.is-active::after {
  opacity: 1;
  transform: translate(-50%, 0) scale(1);
}

.motion-button,
.menu-button {
  border: 0;
  cursor: pointer;
}

.motion-button {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-left: 7px;
  border: 1px solid rgba(179, 231, 255, .14);
  border-radius: 50%;
  background: rgba(5, 22, 47, .44);
  transition: border-color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.motion-button:hover {
  transform: translateY(-1px);
  border-color: rgba(179, 231, 255, .34);
  background: rgba(16, 74, 113, .42);
}

.motion-button__icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 16px;
  height: 16px;
}

.motion-button__icon i {
  width: 3px;
  height: 12px;
  border-radius: 3px;
  background: var(--blue-200);
  transition: transform 180ms ease, height 180ms ease;
}

.motion-button[aria-pressed="true"] .motion-button__icon i:first-child {
  height: 10px;
  transform: translateX(2px) rotate(58deg);
}

.motion-button[aria-pressed="true"] .motion-button__icon i:last-child {
  height: 10px;
  transform: translateX(-2px) rotate(-58deg);
}

.menu-button {
  display: none;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 2px 0 12px;
  background: transparent;
}

.menu-button__label {
  color: #c9dce7;
  font-size: .88rem;
  font-weight: 700;
}

.menu-button__lines {
  position: relative;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(180, 231, 255, .16);
  border-radius: 50%;
  background: rgba(5, 22, 47, .45);
}

.menu-button__lines i {
  position: absolute;
  left: 10px;
  width: 14px;
  height: 1.5px;
  border-radius: 2px;
  background: var(--blue-200);
  transition: top 180ms ease, transform 180ms ease;
}

.menu-button__lines i:first-child { top: 13px; }
.menu-button__lines i:last-child { top: 20px; }

.menu-button[aria-expanded="true"] .menu-button__lines i:first-child {
  top: 17px;
  transform: rotate(45deg);
}

.menu-button[aria-expanded="true"] .menu-button__lines i:last-child {
  top: 17px;
  transform: rotate(-45deg);
}

.section {
  position: relative;
  padding: clamp(96px, 10vw, 152px) 0;
  scroll-margin-top: var(--header-height);
}

.hero {
  display: grid;
  place-items: center;
  min-height: max(740px, 100svh);
  padding-top: calc(var(--header-height) + 54px);
  padding-bottom: 96px;
}

.hero__layout {
  display: grid;
  grid-template-columns: minmax(0, 820px);
  align-items: center;
  justify-content: start;
}

.hero__content {
  max-width: 780px;
  min-width: 0;
  overflow: visible;
}

.eyebrow,
.section-index {
  margin: 0 0 20px;
  color: var(--blue-200);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .17em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
}

.signal {
  position: relative;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue-300);
  box-shadow: 0 0 16px rgba(112, 223, 255, .9);
}

.signal::after {
  content: "";
  position: absolute;
  inset: -5px;
  border: 1px solid rgba(119, 225, 255, .45);
  border-radius: inherit;
  animation: signal-pulse 2.6s ease-out infinite;
}

@keyframes signal-pulse {
  0% { transform: scale(.55); opacity: .85; }
  80%, 100% { transform: scale(1.9); opacity: 0; }
}

.hero__title {
  position: relative;
  display: inline-block;
  width: max-content;
  max-width: 100%;
  margin: 0;
  padding-bottom: .22em;
  overflow: visible;
  white-space: nowrap;
  font-size: clamp(4.2rem, 10.5vw, 9rem);
  font-weight: 780;
  line-height: 1.01;
  letter-spacing: -.087em;
  text-shadow: 0 2px 44px rgba(2, 8, 23, .42);
}

.hero__title span,
.hero__title strong,
.hero__title em,
.hero__title small {
  font-style: normal;
  font-weight: inherit;
}

.hero__title-deep {
  position: relative;
  display: inline-block;
  padding-right: .02em;
  margin-right: -.01em;
}

.hero__title-sub {
  position: absolute;
  left: calc(100% - .92em);
  top: .14em;
  font-size: .152em;
  font-weight: 700;
  letter-spacing: .08em;
  line-height: 1;
  white-space: nowrap;
  text-transform: uppercase;
  color: var(--blue-200);
  text-shadow: 0 0 16px rgba(110, 219, 251, .35);
  z-index: 2;
}

.hero__title-skies {
  display: inline-block;
  margin-left: -.02em;
}

.hero__title strong {
  display: inline-block;
  padding-right: .075em;
  margin-right: -.075em;
  color: transparent;
  background: linear-gradient(115deg, #f5fdff 4%, #b8edfb 34%, #63cbe9 72%, #e5f9ff 100%);
  background-clip: text;
  -webkit-background-clip: text;
  filter: drop-shadow(0 0 20px rgba(82, 201, 239, .22));
}

.hero__lede {
  max-width: 670px;
  margin: 26px 0 0;
  color: #d6e8f1;
  font-size: clamp(1.22rem, 2.1vw, 1.62rem);
  line-height: 1.42;
  letter-spacing: -.035em;
  text-wrap: balance;
}

.hero__aside {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: .98rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 780;
  line-height: 1;
  letter-spacing: -.02em;
  transition: transform 180ms var(--ease), border-color 180ms ease, background-color 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.button svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 180ms var(--ease);
}

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

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

.button--primary {
  background: linear-gradient(135deg, #a6ebfb, #54c7e9);
  color: #03101f;
  box-shadow: 0 11px 36px rgba(31, 164, 210, .25), inset 0 1px rgba(255, 255, 255, .62);
}

.button--primary:hover {
  box-shadow: 0 15px 42px rgba(31, 164, 210, .36), inset 0 1px rgba(255, 255, 255, .62);
}

.button--ghost {
  border-color: rgba(183, 231, 251, .22);
  background: rgba(3, 17, 37, .46);
  color: #e6f6fb;
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.button--ghost:hover {
  border-color: rgba(183, 231, 251, .45);
  background: rgba(11, 54, 87, .46);
}

.button--wide {
  width: 100%;
}


.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(199, 224, 236, .72);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: .67rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.scroll-cue i {
  position: relative;
  width: 28px;
  height: 40px;
  border: 1px solid rgba(181, 231, 250, .22);
  border-radius: 999px;
}

.scroll-cue i::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 8px;
  width: 3px;
  height: 7px;
  border-radius: 3px;
  background: var(--blue-300);
  box-shadow: 0 0 8px rgba(112, 223, 255, .7);
  transform: translateX(-50%);
  animation: scroll-dot 2s ease-in-out infinite;
}

@keyframes scroll-dot {
  0% { opacity: 0; transform: translate(-50%, 0); }
  22% { opacity: 1; }
  75% { opacity: 1; }
  100% { opacity: 0; transform: translate(-50%, 15px); }
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 430px);
  align-items: end;
  gap: 60px;
  margin-bottom: clamp(46px, 6vw, 78px);
}

.section-heading h2,
.support-intro h2 {
  max-width: 800px;
  margin: 0;
  font-size: clamp(2.7rem, 5.6vw, 5.1rem);
  font-weight: 730;
  line-height: .98;
  letter-spacing: -.066em;
  text-wrap: balance;
}

.section-heading > p,
.support-intro > p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.72;
}

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

.project-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: linear-gradient(145deg, rgba(5, 24, 50, .78), rgba(2, 13, 31, .72));
  box-shadow: 0 26px 70px rgba(0, 5, 17, .18), inset 0 1px rgba(255, 255, 255, .04);
  -webkit-backdrop-filter: blur(18px) saturate(1.15);
  backdrop-filter: blur(18px) saturate(1.15);
  transition: transform 260ms var(--ease), border-color 260ms ease, box-shadow 260ms ease;
}

.project-card--featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, .85fr);
  min-height: 455px;
}

.project-card:hover {
  transform: translateY(-5px);
  border-color: var(--line-strong);
  box-shadow: 0 34px 86px rgba(0, 5, 17, .30), 0 0 48px rgba(45, 174, 219, .08), inset 0 1px rgba(255, 255, 255, .06);
}

.project-card__visual {
  position: relative;
  min-height: 225px;
  overflow: hidden;
  border-bottom: 1px solid rgba(182, 232, 251, .11);
  background-color: rgba(3, 14, 32, .72);
  isolation: isolate;
}

.project-card--featured .project-card__visual {
  min-height: 100%;
  border-right: 1px solid rgba(182, 232, 251, .11);
  border-bottom: 0;
}

.project-card__visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: linear-gradient(rgba(2, 12, 29, .24), rgba(2, 12, 29, .6)), url("assets/deepskies.jpg");
  background-size: cover;
  filter: saturate(1.16) contrast(1.08) brightness(.74);
  transform: scale(1.04);
  transition: transform 900ms var(--ease), filter 600ms ease;
}

.project-card:hover .project-card__visual::before {
  transform: scale(1.09);
  filter: saturate(1.28) contrast(1.1) brightness(.8);
}

.project-card__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(circle at 50% 50%, rgba(58, 194, 235, .08), transparent 48%), linear-gradient(135deg, rgba(2, 10, 26, .04), rgba(2, 10, 26, .55));
}

.project-card__visual--site::before { background-position: 44% 31%; }
.project-card__visual--migration::before { background-position: 13% 56%; filter: saturate(.9) contrast(1.12) brightness(.48); }
.project-card__visual--astro::before { background-position: 78% 64%; filter: saturate(1.08) contrast(1.16) brightness(.42); }

.project-card__grid {
  position: absolute;
  inset: 0;
  opacity: .18;
  background-image: linear-gradient(rgba(164, 229, 251, .14) 1px, transparent 1px), linear-gradient(90deg, rgba(164, 229, 251, .14) 1px, transparent 1px);
  background-size: 32px 32px;
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,.9), transparent 92%);
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.9), transparent 92%);
}

.project-card__window {
  position: absolute;
  left: 50%;
  top: 52%;
  width: min(76%, 560px);
  aspect-ratio: 1.65;
  border: 1px solid rgba(190, 235, 252, .25);
  border-radius: 17px;
  background: rgba(3, 14, 32, .68);
  box-shadow: 0 30px 80px rgba(0, 4, 16, .4), inset 0 1px rgba(255,255,255,.06);
  -webkit-backdrop-filter: blur(13px);
  backdrop-filter: blur(13px);
  transform: translate(-50%, -50%) perspective(900px) rotateX(4deg) rotateY(-7deg) rotateZ(-1deg);
}

.project-card__window::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 30px;
  height: 1px;
  background: rgba(190, 235, 252, .12);
}

.project-card__window > i {
  position: relative;
  display: inline-block;
  width: 6px;
  height: 6px;
  margin: 12px 1px 0;
  border-radius: 50%;
  background: rgba(185, 231, 249, .42);
}

.project-card__window > i:first-child { margin-left: 14px; background: rgba(255, 216, 186, .65); }
.project-card__window > i:nth-child(2) { background: rgba(127, 218, 247, .65); }

.project-card__window b,
.project-card__window small {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.project-card__window b {
  top: 41%;
  font-size: clamp(1.9rem, 4vw, 3.7rem);
  line-height: 1;
  letter-spacing: -.07em;
}

.project-card__window b span { color: var(--blue-300); }
.project-card__window small {
  top: 64%;
  color: rgba(202, 229, 240, .68);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: clamp(.48rem, .9vw, .68rem);
  letter-spacing: .1em;
  text-transform: uppercase;
}

.migration-node {
  position: absolute;
  top: 50%;
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  border: 1px solid rgba(183, 233, 251, .27);
  border-radius: 22px;
  background: rgba(4, 27, 57, .62);
  box-shadow: 0 18px 40px rgba(0, 5, 18, .25), 0 0 25px rgba(59, 186, 228, .10);
  color: var(--blue-200);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .09em;
  transform: translateY(-50%);
}

.migration-node--a { left: 15%; }
.migration-node--b { right: 15%; }

.migration-line {
  position: absolute;
  left: calc(15% + 74px);
  right: calc(15% + 74px);
  top: 50%;
  height: 1px;
  background: linear-gradient(90deg, rgba(116, 218, 250, .12), rgba(144, 231, 255, .68), rgba(116, 218, 250, .12));
}

.migration-line::after {
  content: "";
  position: absolute;
  top: -3px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #e8fbff;
  box-shadow: 0 0 13px #8ce4fb;
  animation: packet 3s ease-in-out infinite;
}

@keyframes packet {
  0% { left: 0; opacity: 0; }
  15% { opacity: 1; }
  85% { opacity: 1; }
  100% { left: calc(100% - 7px); opacity: 0; }
}

.migration-dots {
  position: absolute;
  inset: 0;
  opacity: .48;
  background-image:
    radial-gradient(circle at 31% 24%, white 0 1px, transparent 1.5px),
    radial-gradient(circle at 62% 76%, #8ce4fb 0 1px, transparent 1.5px),
    radial-gradient(circle at 78% 28%, white 0 1px, transparent 1.5px),
    radial-gradient(circle at 17% 72%, #8ce4fb 0 1px, transparent 1.5px);
}

.project-card__visual--astro {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  padding: 35px;
  color: #bdeaf7;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: clamp(.72rem, 1.3vw, .91rem);
}

.terminal-line {
  display: block;
  opacity: .86;
}

.terminal-line:nth-of-type(2),
.terminal-line:nth-of-type(3) {
  color: #80d9f4;
}

.terminal-cursor {
  width: 8px;
  height: 16px;
  margin-top: 2px;
  background: var(--blue-300);
  box-shadow: 0 0 10px rgba(112, 223, 255, .64);
  animation: blink 1.1s steps(1) infinite;
}

@keyframes blink { 50% { opacity: 0; } }

.project-card__body {
  padding: clamp(24px, 3vw, 34px);
}

.project-card--featured .project-card__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(32px, 5vw, 58px);
}

.card-meta,
.note-card__date {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
  color: var(--muted-2);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: .67rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.status::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.status--active { color: var(--blue-200); }
.status--active::before { background: var(--blue-300); box-shadow: 0 0 11px rgba(112, 223, 255, .85); }
.status--complete::before { background: rgba(167, 196, 210, .66); }

.project-card h3,
.note-card h3 {
  margin: 0;
  font-weight: 710;
  letter-spacing: -.042em;
}

.project-card h3 {
  font-size: clamp(1.55rem, 2.4vw, 2.25rem);
  line-height: 1.08;
}

.project-card p {
  margin: 17px 0 0;
  color: #b5ccd8;
  line-height: 1.7;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 23px 0 0;
  padding: 0;
  list-style: none;
}

.tag-list li {
  padding: 6px 9px;
  border: 1px solid rgba(172, 226, 247, .13);
  border-radius: 999px;
  background: rgba(15, 65, 99, .22);
  color: #b8dce9;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .03em;
}

.text-link,
.note-card__link {
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
  color: var(--blue-200);
  font-weight: 760;
  text-align: left;
}

.text-link {
  align-self: flex-start;
  margin-top: 26px;
}

.text-link span,
.note-card__link span {
  display: inline-block;
  margin-left: 4px;
  transition: transform 180ms var(--ease);
}

.text-link:hover span,
.note-card__link:hover span {
  transform: translate(3px, -2px);
}

.section--tinted::before {
  content: "";
  position: absolute;
  inset: 4% 0;
  z-index: -1;
  border-top: 1px solid rgba(177, 229, 249, .08);
  border-bottom: 1px solid rgba(177, 229, 249, .08);
  background: linear-gradient(180deg, rgba(3, 16, 35, .12), rgba(3, 17, 38, .32), rgba(3, 16, 35, .12));
}

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

.note-card {
  display: flex;
  flex-direction: column;
  min-height: 385px;
  padding: 27px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: linear-gradient(145deg, rgba(6, 29, 58, .62), rgba(2, 14, 32, .58));
  box-shadow: 0 22px 60px rgba(0, 5, 17, .15), inset 0 1px rgba(255,255,255,.035);
  -webkit-backdrop-filter: blur(17px) saturate(1.16);
  backdrop-filter: blur(17px) saturate(1.16);
  transition: transform 240ms var(--ease), border-color 240ms ease, background 240ms ease;
}

.note-card:hover {
  transform: translateY(-5px);
  border-color: var(--line-strong);
  background: linear-gradient(145deg, rgba(8, 38, 75, .7), rgba(2, 15, 34, .62));
}

.note-card h3 {
  font-size: clamp(1.34rem, 2vw, 1.72rem);
  line-height: 1.2;
}

.note-card > p {
  margin: 17px 0 0;
  color: #adc6d3;
  line-height: 1.68;
}

.note-card .tag-list {
  margin-top: 22px;
}

.note-card__link {
  margin-top: auto;
  padding-top: 28px;
}

.section--support {
  padding-bottom: clamp(110px, 12vw, 170px);
}

.section--support::before {
  content: "";
  position: absolute;
  inset: 9% 0 0;
  z-index: -1;
  background: radial-gradient(ellipse 65% 60% at 50% 60%, rgba(21, 116, 165, .2), transparent 70%);
}

.support-intro {
  max-width: 890px;
  margin: 0 auto clamp(48px, 7vw, 78px);
  text-align: center;
}

.support-intro .section-index {
  margin-bottom: 22px;
}

.support-intro > p:last-child {
  max-width: 650px;
  margin: 27px auto 0;
}

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

.tier-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 430px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: linear-gradient(150deg, rgba(6, 29, 58, .69), rgba(2, 13, 31, .66));
  box-shadow: 0 24px 65px rgba(0, 5, 17, .18), inset 0 1px rgba(255,255,255,.04);
  -webkit-backdrop-filter: blur(18px) saturate(1.15);
  backdrop-filter: blur(18px) saturate(1.15);
}

.tier-card--popular {
  border-color: rgba(132, 224, 250, .45);
  background: linear-gradient(150deg, rgba(10, 57, 91, .78), rgba(3, 20, 43, .76));
  box-shadow: 0 28px 78px rgba(0, 5, 17, .28), 0 0 55px rgba(53, 180, 222, .10), inset 0 1px rgba(255,255,255,.07);
}

.tier-card__flag {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 6px 9px;
  border: 1px solid rgba(190, 238, 253, .22);
  border-radius: 999px;
  background: rgba(123, 222, 249, .12);
  color: var(--blue-200);
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.tier-card__name {
  margin: 0;
  color: var(--muted);
  font-weight: 720;
}

.tier-card__price {
  display: flex;
  align-items: flex-start;
  margin: 18px 0 0;
  font-size: 4.2rem;
  font-weight: 730;
  line-height: .9;
  letter-spacing: -.065em;
}

.tier-card__price > span {
  margin: 5px 4px 0 0;
  color: var(--blue-300);
  font-size: 1.15rem;
}

.tier-card__price small {
  align-self: flex-end;
  margin: 0 0 7px 7px;
  color: var(--muted-2);
  font-size: .72rem;
  font-weight: 650;
  letter-spacing: 0;
}

.tier-card ul {
  display: grid;
  gap: 13px;
  margin: 34px 0 32px;
  padding: 0;
  list-style: none;
  color: #b7cdd8;
}

.tier-card li {
  position: relative;
  padding-left: 22px;
}

.tier-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .66em;
  width: 7px;
  height: 7px;
  border: 1px solid var(--blue-300);
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(112, 223, 255, .28);
}

.tier-card .button {
  margin-top: auto;
}

.site-footer {
  position: relative;
  border-top: 1px solid rgba(179, 230, 250, .09);
  background: rgba(1, 7, 20, .48);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.site-footer__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  min-height: 128px;
}

.brand--footer {
  justify-self: start;
}

.site-footer p {
  margin: 0;
  color: var(--muted-2);
  font-size: .82rem;
  text-align: center;
}

.back-to-top {
  justify-self: end;
  color: var(--blue-200);
  font-size: .82rem;
  font-weight: 730;
}

.back-to-top span {
  display: inline-block;
  margin-left: 5px;
  transition: transform 180ms var(--ease);
}

.back-to-top:hover span {
  transform: translateY(-3px);
}



.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 720ms var(--ease), transform 720ms var(--ease);
}

.reveal--delay,
.reveal--delay-1 { transition-delay: 100ms; }
.reveal--delay-2 { transition-delay: 190ms; }

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

body.motion-paused *,
body.motion-paused *::before,
body.motion-paused *::after {
  animation-play-state: paused !important;
}

@media (max-width: 960px) {
  :root { --header-height: 72px; }

  .menu-button { display: flex; }

  .site-nav {
    position: fixed;
    left: 20px;
    right: 20px;
    top: calc(var(--header-height) + 8px);
    display: grid;
    gap: 3px;
    padding: 12px;
    border: 1px solid rgba(180, 231, 250, .15);
    border-radius: 20px;
    background: rgba(3, 17, 37, .94);
    box-shadow: 0 24px 70px rgba(0, 4, 15, .46);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px) scale(.985);
    transition: opacity 180ms ease, transform 180ms var(--ease);
    -webkit-backdrop-filter: blur(24px) saturate(1.25);
    backdrop-filter: blur(24px) saturate(1.25);
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }

  .site-nav > a {
    justify-content: space-between;
    padding-inline: 16px;
  }

  .site-nav > a::after {
    left: auto;
    right: 17px;
    bottom: 50%;
    transform: translateY(50%) scale(.4);
  }

  .site-nav > a.is-active::after {
    transform: translateY(50%) scale(1);
  }

  .motion-button {
    width: 100%;
    height: 44px;
    margin: 4px 0 0;
    border-radius: 12px;
  }

  .motion-button::after {
    content: "Sky motion";
    margin-left: 10px;
    color: #c8dce6;
    font-size: .85rem;
    font-weight: 680;
  }

  .motion-button {
    display: flex;
  }

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

  .hero__content {
    max-width: 800px;
  }


  .project-card--featured {
    grid-template-columns: 1fr;
  }

  .project-card--featured .project-card__visual {
    min-height: 360px;
    border-right: 0;
    border-bottom: 1px solid rgba(182, 232, 251, .11);
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .section-heading > p {
    max-width: 660px;
  }

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

  .note-card:last-child {
    grid-column: 1 / -1;
    min-height: 330px;
  }

  .tier-grid {
    grid-template-columns: 1fr;
    max-width: 680px;
    margin-inline: auto;
  }

  .tier-card {
    min-height: 0;
  }
}

@media (max-width: 720px) {
  .shell {
    width: min(calc(100% - 28px), var(--shell));
  }

  .hero {
    min-height: max(720px, 100svh);
    padding-top: calc(var(--header-height) + 62px);
  }

  .hero__layout {
    gap: 52px;
  }

  .hero__title {
    font-size: clamp(3.45rem, 17.1vw, 5.8rem);
    letter-spacing: -.078em;
  }

  .hero__lede {
    margin-top: 28px;
  }

  .hero__actions {
    align-items: stretch;
  }

  .hero__actions .button {
    flex: 1 1 100%;
  }


  .scroll-cue span {
    display: none;
  }

  .project-grid,
  .notes-grid {
    grid-template-columns: 1fr;
  }

  .project-card--featured {
    grid-column: auto;
  }

  .project-card--featured .project-card__visual {
    min-height: 280px;
  }

  .project-card__window {
    width: 84%;
  }

  .notes-grid .note-card:last-child {
    grid-column: auto;
  }

  .note-card {
    min-height: 350px;
  }


  .site-footer__inner {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 14px;
    padding-block: 34px;
    text-align: center;
  }

  .brand--footer,
  .back-to-top {
    justify-self: center;
  }

  .cosmos__quiet-zone {
    background:
      radial-gradient(ellipse 88% 40% at 50% 35%, rgba(2, 10, 27, .58) 0, rgba(2, 10, 27, .36) 40%, transparent 100%),
      linear-gradient(180deg, rgba(2, 8, 23, .35) 0, transparent 20%, transparent 65%, rgba(2, 8, 23, .58) 100%);
  }
}

@media (max-width: 430px) {
  .brand__word { font-size: 1.08rem; }
  .menu-button__label { display: none; }

  .section {
    padding-block: 88px;
  }

  .hero {
    padding-top: calc(var(--header-height) + 44px);
    padding-bottom: 86px;
  }

  .hero__title {
    font-size: clamp(3.35rem, 17vw, 4.3rem);
  }

  .hero__lede {
    font-size: 1.14rem;
  }

  .section-heading h2,
  .support-intro h2 {
    font-size: clamp(2.45rem, 13vw, 3.3rem);
  }

  .project-card__body,
  .project-card--featured .project-card__body,
  .note-card,
  .tier-card {
    padding: 23px;
  }

  .project-card--featured .project-card__visual {
    min-height: 235px;
  }

  .project-card__window small {
    max-width: 90%;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .migration-node {
    width: 62px;
    height: 62px;
  }

  .migration-node--a { left: 9%; }
  .migration-node--b { right: 9%; }
  .migration-line { left: calc(9% + 62px); right: calc(9% + 62px); }

  .project-card__visual--astro {
    padding: 25px;
  }

  .tier-card__flag {
    position: static;
    align-self: flex-start;
    margin-bottom: 20px;
  }

}

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

  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .001ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .cosmos__anchor-star {
    opacity: var(--peak);
    transform: translate3d(-50%, -50%, 0) scale(1);
  }
}

@media (prefers-contrast: more) {
  :root {
    --line: rgba(211, 243, 255, .34);
    --line-strong: rgba(227, 248, 255, .62);
    --muted: #c7dce6;
    --muted-2: #a7c0cc;
  }

  .cosmos__quiet-zone { background: rgba(1, 7, 20, .32); }
}


.product-panel,
.about-panel {
  display: grid;
  align-items: center;
  min-height: 100svh;
  padding-block: calc(var(--header-height) + 54px) 84px;
}

.product-panel--alt {
  background: linear-gradient(180deg, rgba(5, 16, 34, .18) 0, rgba(5, 16, 34, .32) 100%);
}

.product-panel__layout,
.about-panel__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr);
  gap: 34px;
  align-items: center;
}

.product-panel__copy,
.about-panel__copy {
  max-width: 760px;
}

.product-panel h2,
.about-panel h2 {
  margin: 0;
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: .96;
  letter-spacing: -.05em;
}

.product-panel__lede,
.about-panel__lede {
  margin: 22px 0 0;
  color: #d9ebf4;
  font-size: clamp(1.14rem, 2.1vw, 1.5rem);
  line-height: 1.48;
  letter-spacing: -.025em;
}

.product-panel__body,
.about-panel__body {
  margin: 18px 0 0;
  max-width: 720px;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.72;
}

.product-panel__card,
.about-panel__card {
  align-self: stretch;
  padding: 28px 26px;
  border: 1px solid rgba(190, 232, 255, .12);
  border-radius: 28px;
  background: rgba(4, 18, 39, .58);
  box-shadow: 0 26px 64px rgba(0, 4, 14, .24);
  backdrop-filter: blur(18px) saturate(1.18);
}

.product-panel__label,
.about-panel__label {
  margin: 0 0 18px;
  color: var(--blue-200);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.product-panel__card ul,
.about-panel__card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 16px;
}

.product-panel__card li,
.about-panel__card li {
  position: relative;
  padding-left: 18px;
  color: #deedf5;
  line-height: 1.6;
}

.product-panel__card li::before,
.about-panel__card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .58em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue-300);
  box-shadow: 0 0 14px rgba(112, 223, 255, .72);
}

@media (max-width: 960px) {
  .product-panel__layout,
  .about-panel__layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .site-nav__menu {
    position: static;
    min-width: 0;
    margin-top: 8px;
    transform: none;
    opacity: 1;
    pointer-events: auto;
    display: none;
  }

  .site-nav__group.is-open .site-nav__menu {
    display: block;
  }
}

@media (max-width: 720px) {
  .product-panel,
  .about-panel {
    min-height: auto;
    padding-block: calc(var(--header-height) + 48px) 72px;
  }
}


/* v20 responsive hero and brand layout */
.brand__word {
  display: inline-flex;
  align-items: baseline;
  flex-wrap: nowrap;
  white-space: nowrap;
  gap: 0;
  color: var(--white);
  font-size: clamp(.96rem, 1.75vw, 1.23rem);
  line-height: 1;
}

.brand__deep {
  color: var(--white);
}

.brand__skies {
  color: transparent;
  background: linear-gradient(115deg, #f5fdff 4%, #c7edf9 46%, #82d8ef 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.brand__interactive {
  margin-left: .34em;
  color: var(--blue-200);
  font-size: .78em;
  font-style: normal;
  font-weight: 720;
  letter-spacing: -.02em;
}

.hero {
  position: relative !important;
  display: block !important;
  width: 100% !important;
  height: var(--hero-height, 100svh) !important;
  min-height: var(--hero-height, 100svh) !important;
  padding: 0 !important;
  overflow: hidden;
}

.hero__layout {
  position: absolute !important;
  inset: 0 !important;
  display: block !important;
  width: 100% !important;
  max-width: none !important;
  height: 100% !important;
  margin: 0 !important;
}

.hero__content {
  position: absolute !important;
  inset: 0 !important;
  display: block !important;
  width: 100% !important;
  max-width: none !important;
  height: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  text-align: center !important;
  overflow: visible !important;
}

.hero__copy {
  position: absolute !important;
  left: 50% !important;
  top: var(--hero-copy-y, 50%) !important;
  width: min(calc(100vw - 40px), 980px) !important;
  margin: 0 !important;
  padding: 0 !important;
  text-align: center !important;
  transform: translate(-50%, -50%) !important;
}

.hero__title {
  position: relative;
  display: inline-grid !important;
  grid-template-columns: auto auto !important;
  grid-template-areas:
    "deep skies"
    ". sub" !important;
  align-items: end !important;
  width: max-content;
  max-width: 100%;
  margin: 0 auto !important;
  padding: 0 0 .05em !important;
  overflow: visible;
  white-space: nowrap;
  column-gap: 0;
  row-gap: .01em;
  font-size: clamp(3.1rem, min(10.5vw, 15vh), 9rem);
  font-weight: 780;
  line-height: 1.01;
  letter-spacing: -.087em;
  text-shadow: 0 2px 44px rgba(2, 8, 23, .42);
}

.hero__title-deep {
  grid-area: deep !important;
  display: inline-block;
  margin: 0 -.01em 0 0 !important;
  padding: 0 !important;
}

.hero__title-skies {
  grid-area: skies !important;
  display: inline-block;
  margin: 0 -.075em 0 -.02em !important;
  padding-right: .075em;
  color: transparent;
  background: linear-gradient(115deg, #f5fdff 4%, #b8edfb 34%, #63cbe9 72%, #e5f9ff 100%);
  background-clip: text;
  -webkit-background-clip: text;
  filter: drop-shadow(0 0 20px rgba(82, 201, 239, .22));
}

.hero__title-sub {
  grid-area: sub !important;
  position: static !important;
  display: block !important;
  justify-self: start !important;
  align-self: start !important;
  margin: -.06em 0 0 .04em !important;
  color: var(--blue-200);
  font-size: .145em !important;
  font-style: normal;
  font-weight: 700;
  letter-spacing: .08em;
  line-height: 1;
  text-transform: uppercase;
  text-shadow: 0 0 16px rgba(110, 219, 251, .35);
  transform: none !important;
}

.hero__aside {
  margin: 14px 0 0 !important;
  color: var(--muted);
  font-size: clamp(.88rem, 1.45vw, .98rem);
  text-align: center;
}

.hero__actions {
  position: absolute !important;
  left: 50% !important;
  bottom: calc(var(--hero-actions-bottom, 24px) + env(safe-area-inset-bottom)) !important;
  display: flex !important;
  flex-wrap: wrap;
  justify-content: center !important;
  align-items: center;
  gap: 12px;
  width: max-content;
  max-width: calc(100vw - 28px);
  margin: 0 !important;
  padding: 0 !important;
  transform: translateX(-50%) !important;
}

.hero .scroll-cue {
  display: none !important;
}

@media (max-width: 720px) {
  .brand__word {
    font-size: clamp(.86rem, 3.7vw, 1.08rem);
  }

  .brand__interactive {
    margin-left: .24em;
    font-size: .72em;
  }

  .hero__copy {
    width: min(calc(100vw - 24px), 720px) !important;
  }

  .hero__title {
    font-size: clamp(2.85rem, min(17vw, 13.5vh), 5.8rem);
    letter-spacing: -.078em;
  }

  .hero__title-sub {
    margin-top: -.03em !important;
    font-size: .17em !important;
  }

  .hero__actions {
    flex-direction: column;
    width: min(calc(100vw - 28px), 360px);
    gap: 10px;
  }

  .hero__actions .button {
    width: 100%;
    min-height: 46px;
  }
}

@media (max-height: 680px) {
  .hero__title {
    font-size: clamp(2.7rem, min(9.5vw, 12.5vh), 6.5rem);
  }

  .hero__aside {
    margin-top: 7px !important;
    font-size: .84rem;
  }

  .hero__actions .button {
    min-height: 44px;
  }
}

@media (max-width: 430px) {
  .brand__mark {
    width: 20px;
    height: 20px;
    flex-basis: 20px;
  }

  .brand {
    gap: 8px;
  }

  .brand__word {
    font-size: clamp(.78rem, 3.35vw, .94rem);
  }

  .brand__interactive {
    margin-left: .20em;
    font-size: .68em;
  }
}
/* v20: deterministic responsive hero and header branding */

.brand__word {
  display: inline-flex;
  align-items: baseline;
  flex-wrap: nowrap;
  gap: 0;
  white-space: nowrap;
}

.brand__deep {
  color: var(--white) !important;
}

.brand__skies {
  color: transparent !important;
  background: linear-gradient(115deg, #f5fdff 5%, #c8ecf9 44%, #82d8f1 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.brand__interactive {
  margin-left: .28em;
  color: var(--blue-300) !important;
  font-size: .78em;
  font-style: normal;
  font-weight: 720;
  letter-spacing: -.025em;
}

.hero {
  position: relative !important;
  display: block !important;
  width: 100% !important;
  height: var(--app-viewport-height, 100dvh) !important;
  min-height: 0 !important;
  max-height: none !important;
  padding: 0 !important;
  overflow: hidden !important;
}

.hero__layout {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  max-width: none !important;
  height: 100% !important;
  margin: 0 !important;
  display: block !important;
}

.hero__content {
  position: relative !important;
  width: 100% !important;
  max-width: none !important;
  height: 100% !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  display: block !important;
  overflow: visible !important;
  text-align: center !important;
}

.hero__copy {
  position: absolute !important;
  left: 50% !important;
  top: 50% !important;
  width: min(94vw, 1120px) !important;
  transform: translate(-50%, -50%) !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
}

.hero__title {
  position: relative !important;
  display: inline-grid !important;
  grid-template-columns: auto auto !important;
  grid-template-areas:
    "deep skies"
    ". sub" !important;
  align-items: end !important;
  column-gap: 0 !important;
  row-gap: .01em !important;
  width: max-content !important;
  max-width: calc(100vw - 28px) !important;
  margin: 0 auto !important;
  padding: 0 0 .04em !important;
  overflow: visible !important;
  white-space: nowrap !important;
  font-size: clamp(3.1rem, min(10.4vw, 14dvh), 9rem) !important;
  font-weight: 780 !important;
  line-height: .94 !important;
  letter-spacing: -.087em !important;
  text-shadow: 0 2px 44px rgba(2, 8, 23, .42) !important;
}

.hero__title-deep {
  grid-area: deep !important;
  display: inline-block !important;
  margin: 0 -.01em 0 0 !important;
  padding: 0 !important;
}

.hero__title-skies {
  grid-area: skies !important;
  display: inline-block !important;
  margin: 0 !important;
  padding-right: .075em !important;
  color: transparent !important;
  background: linear-gradient(115deg, #f5fdff 4%, #b8edfb 34%, #63cbe9 72%, #e5f9ff 100%) !important;
  background-clip: text !important;
  -webkit-background-clip: text !important;
  filter: drop-shadow(0 0 20px rgba(82, 201, 239, .22)) !important;
}

.hero__title-sub {
  grid-area: sub !important;
  position: static !important;
  display: block !important;
  justify-self: start !important;
  align-self: start !important;
  margin: -.02em 0 0 .05em !important;
  padding: 0 !important;
  transform: none !important;
  color: var(--blue-200) !important;
  font-size: .145em !important;
  font-style: normal !important;
  font-weight: 700 !important;
  letter-spacing: .08em !important;
  line-height: 1 !important;
  text-transform: uppercase !important;
  text-shadow: 0 0 16px rgba(110, 219, 251, .35) !important;
}

.hero__aside {
  margin: clamp(12px, 2.1dvh, 22px) 0 0 !important;
  color: var(--muted) !important;
  font-size: clamp(.9rem, min(1.35vw, 2.2dvh), 1.04rem) !important;
  line-height: 1.35 !important;
  text-align: center !important;
}

.hero__actions {
  position: absolute !important;
  left: 50% !important;
  bottom: max(24px, env(safe-area-inset-bottom)) !important;
  width: max-content !important;
  margin: 0 !important;
  padding: 0 !important;
  transform: translateX(-50%) !important;
  display: flex !important;
  flex-wrap: nowrap !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 12px !important;
}

.hero > .scroll-cue {
  left: auto !important;
  right: max(20px, env(safe-area-inset-right)) !important;
  bottom: max(20px, env(safe-area-inset-bottom)) !important;
  transform: none !important;
}

@media (max-width: 960px) {
  .brand__interactive {
    margin-left: .22em;
    font-size: .74em;
  }

  .hero__copy {
    width: min(96vw, 900px) !important;
  }

  .hero__title {
    font-size: clamp(3rem, min(13.5vw, 13dvh), 7rem) !important;
  }

  .hero__title-sub {
    margin-top: 0 !important;
    font-size: .16em !important;
  }

  .hero > .scroll-cue {
    display: none !important;
  }
}

@media (max-width: 720px) {
  .brand {
    gap: 8px;
  }

  .brand__word {
    font-size: .98rem !important;
  }

  .brand__interactive {
    margin-left: .18em;
    font-size: .69em;
  }

  .hero__copy {
    width: calc(100vw - 24px) !important;
  }

  .hero__title {
    max-width: calc(100vw - 20px) !important;
    font-size: clamp(2.65rem, min(15.6vw, 11.5dvh), 5.5rem) !important;
    letter-spacing: -.077em !important;
  }

  .hero__title-sub {
    margin-left: .03em !important;
    font-size: .17em !important;
  }

  .hero__aside {
    margin-top: 10px !important;
    font-size: clamp(.86rem, 3.8vw, .98rem) !important;
  }

  .hero__actions {
    bottom: max(16px, env(safe-area-inset-bottom)) !important;
    width: min(calc(100vw - 28px), 330px) !important;
    flex-direction: column !important;
    gap: 9px !important;
  }

  .hero__actions .button {
    width: 100% !important;
    min-height: 46px !important;
  }
}

@media (max-height: 700px) and (min-width: 721px) {
  .hero__title {
    font-size: clamp(3rem, min(9.4vw, 11.5dvh), 6.4rem) !important;
  }

  .hero__aside {
    margin-top: 8px !important;
  }

  .hero__actions {
    bottom: max(14px, env(safe-area-inset-bottom)) !important;
  }
}

@media (max-height: 610px) {
  .hero__title {
    font-size: clamp(2.65rem, min(8.8vw, 10.5dvh), 5.2rem) !important;
  }

  .hero__aside {
    margin-top: 6px !important;
    font-size: .86rem !important;
  }

  .hero__actions {
    bottom: max(10px, env(safe-area-inset-bottom)) !important;
  }
}


/* v20 typography tuning */
.brand__word {
  display: inline-flex !important;
  align-items: baseline !important;
  gap: .10em !important;
  font-size: 1.34rem !important;
  line-height: 1 !important;
  white-space: nowrap !important;
}

.brand__word > :first-child {
  color: #f4fbff !important;
}

.brand__interactive {
  margin-left: 0 !important;
  font-size: 1em !important;
  font-weight: 760 !important;
  color: var(--blue-200) !important;
}

.brand__skies {
  font-size: 1em !important;
  font-weight: 760 !important;
}

.hero__copy {
  width: min(94vw, 1120px) !important;
}

.hero__title {
  font-size: clamp(5.25rem, min(14.2vw, 16.5dvh), 11.6rem) !important;
  line-height: .94 !important;
}

.hero__title-sub {
  font-size: .175em !important;
  letter-spacing: .075em !important;
}

@media (max-width: 960px) {
  .brand__word {
    font-size: 1.18rem !important;
  }

  .brand__interactive,
  .brand__skies {
    font-size: 1em !important;
  }

  .hero__title {
    font-size: clamp(4.05rem, min(15.8vw, 16.8dvh), 8.75rem) !important;
  }

  .hero__title-sub {
    font-size: .178em !important;
  }
}

@media (max-width: 720px) {
  .brand__word {
    gap: .08em !important;
    font-size: 1.02rem !important;
  }

  .brand__interactive,
  .brand__skies {
    font-size: 1em !important;
  }

  .hero__copy {
    width: calc(100vw - 18px) !important;
  }

  .hero__title {
    max-width: calc(100vw - 16px) !important;
    font-size: clamp(3.5rem, min(17.6vw, 14.2dvh), 6.9rem) !important;
    letter-spacing: -.08em !important;
  }

  .hero__title-sub {
    font-size: .182em !important;
  }
}

@media (max-height: 700px) and (min-width: 721px) {
  .hero__title {
    font-size: clamp(3.8rem, min(11vw, 14.2dvh), 8rem) !important;
  }
}

@media (max-height: 610px) {
  .hero__title {
    font-size: clamp(3.2rem, min(10.4vw, 13.4dvh), 6.6rem) !important;
  }

  .hero__title-sub {
    font-size: .17em !important;
  }
}


/* v21 size adjustments */
.brand__word {
  font-size: .9rem !important;
}

.brand__interactive,
.brand__skies {
  font-size: 1em !important;
}

.hero__title {
  font-size: clamp(6.3rem, min(17.04vw, 19.8dvh), 13.92rem) !important;
}

@media (max-width: 960px) {
  .brand__word {
    font-size: .9rem !important;
  }

  .hero__title {
    font-size: clamp(4.86rem, min(18.96vw, 20.16dvh), 10.5rem) !important;
  }
}

@media (max-width: 720px) {
  .brand__word {
    font-size: .9rem !important;
  }

  .hero__title {
    font-size: clamp(4.2rem, min(21.12vw, 17.04dvh), 8.28rem) !important;
  }
}

@media (max-height: 700px) and (min-width: 721px) {
  .hero__title {
    font-size: clamp(4.56rem, min(13.2vw, 17.04dvh), 9.6rem) !important;
  }
}

@media (max-height: 610px) {
  .hero__title {
    font-size: clamp(3.84rem, min(12.48vw, 16.08dvh), 7.92rem) !important;
  }
}


/* v22 final cleanup */
.product-panel,
.about-panel,
.site-footer {
  content-visibility: auto;
  contain-intrinsic-size: 960px;
}

.hero__copy {
  padding-bottom: clamp(10px, 2vh, 26px) !important;
}

.hero__actions {
  padding-bottom: max(12px, env(safe-area-inset-bottom)) !important;
}

@media (max-width: 720px) {
  .site-nav {
    max-height: calc(100svh - var(--header-height) - 16px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .product-panel,
  .about-panel,
  .site-footer {
    content-visibility: visible;
    contain-intrinsic-size: auto;
  }
}


/* v25 external product documents */
.product-document main {
  position: relative;
  z-index: 1;
}

.product-document .product-panel {
  min-height: 100svh;
  padding-top: calc(var(--header-height) + clamp(52px, 8vh, 92px));
  padding-bottom: clamp(64px, 9vh, 104px);
}

.product-document .product-panel__layout {
  width: min(calc(100% - 40px), var(--shell));
  margin-inline: auto;
}

.site-nav__menu a[aria-current="page"] {
  color: var(--white);
  background: rgba(175, 232, 255, .12);
}

.product-document__footer-link {
  color: var(--blue-200);
}

@media (max-width: 720px) {
  .product-document .product-panel {
    min-height: 100svh;
    padding-top: calc(var(--header-height) + 42px);
    padding-bottom: 64px;
  }

  .product-document .product-panel__layout {
    width: min(calc(100% - 28px), var(--shell));
  }
}

/* v25 product document heading and immediate paint */
.product-document .product-panel {
  content-visibility: visible;
  contain-intrinsic-size: auto;
}

.product-panel h1,
.about-panel h1 {
  margin: 0;
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: .96;
  letter-spacing: -.05em;
}


/* v26 runtime-composed product sections */
.product-panel--loading .product-panel__layout,
.about-panel--loading .about-panel__layout {
  min-height: min(420px, 48svh);
  align-content: center;
}

.product-load-status {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: .95rem;
  line-height: 1.5;
}

.product-load-status > span {
  width: 10px;
  height: 10px;
  flex: 0 0 10px;
  border-radius: 50%;
  background: var(--blue-300);
  box-shadow: 0 0 15px rgba(112, 223, 255, .7);
  animation: product-load-pulse 1.25s ease-in-out infinite;
}

.content-slot--error .product-load-status {
  display: block;
  color: #d9e8ef;
}

.content-slot--error .product-load-status .text-link {
  margin-left: .3em;
}

@keyframes product-load-pulse {
  0%, 100% { opacity: .35; transform: scale(.72); }
  50% { opacity: 1; transform: scale(1); }
}

@media (prefers-reduced-motion: reduce) {
  .product-load-status > span { animation: none; opacity: .8; }
}


/* v28 studio contact */
.about-panel__card a,
.site-footer__contact {
  color: var(--blue-200);
  text-decoration: none;
  text-underline-offset: .2em;
  transition: color 180ms ease, text-decoration-color 180ms ease;
}

.about-panel__card a:hover,
.about-panel__card a:focus-visible,
.site-footer__contact:hover,
.site-footer__contact:focus-visible {
  color: var(--white);
  text-decoration: underline;
  text-decoration-color: rgba(190, 232, 255, .55);
}

.site-footer__contact {
  display: inline-block;
  margin-top: 6px;
  font-weight: 650;
}

@media (max-width: 480px) {
  .about-panel__card a,
  .site-footer__contact {
    overflow-wrap: anywhere;
  }
}


/* v29 runtime-composed About artifact */
.about-document .about-panel {
  content-visibility: visible;
  contain-intrinsic-size: auto;
  min-height: 100svh;
}

.about-document .about-panel__layout {
  width: min(calc(100% - 40px), var(--shell));
  margin-inline: auto;
}

@media (max-width: 720px) {
  .about-document .about-panel {
    min-height: 100svh;
  }

  .about-document .about-panel__layout {
    width: min(calc(100% - 28px), var(--shell));
  }
}
