@font-face {
  font-family: "Space Grotesk";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("fonts/space-grotesk-300.woff2") format("woff2");
}
@font-face {
  font-family: "Space Grotesk";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("fonts/space-grotesk-400.woff2") format("woff2");
}
@font-face {
  font-family: "Space Grotesk";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("fonts/space-grotesk-500.woff2") format("woff2");
}
@font-face {
  font-family: "Space Grotesk";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("fonts/space-grotesk-600.woff2") format("woff2");
}
@font-face {
  font-family: "Space Grotesk";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("fonts/space-grotesk-700.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("fonts/inter-400.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("fonts/inter-500.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("fonts/inter-600.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("fonts/inter-700.woff2") format("woff2");
}
@font-face {
  font-family: "Space Mono";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("fonts/space-mono-400.woff2") format("woff2");
}
@font-face {
  font-family: "Space Mono";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("fonts/space-mono-700.woff2") format("woff2");
}

/* Perigee — perigee.site
   Zero external requests. System font stacks only. */

:root {
  --void: #04060b;
  --deep: #070a11;
  --panel: #0a0e16;
  --panel-2: #0d121b;

  --line: rgba(140, 174, 214, 0.11);
  --line-2: rgba(140, 174, 214, 0.2);
  --line-3: rgba(140, 174, 214, 0.34);

  --ink: #e9eff7;
  --ink-2: #94a3b8;
  --ink-3: #77869c;
  --ink-4: #5a6779;

  --ice: #8fd6ff;
  --ice-dim: rgba(143, 214, 255, 0.5);
  --signal: #ff9e4a;

  --display: "Space Grotesk", -apple-system, BlinkMacSystemFont, "PingFang SC", sans-serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue",
    Helvetica, Arial, sans-serif;
  --mono: "Space Mono", ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas,
    "Liberation Mono", monospace;

  --gut: clamp(20px, 5vw, 56px);
  --maxw: 1240px;
  --ease: cubic-bezier(0.2, 0.7, 0.25, 1);
}

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

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--void);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-wrap: pretty;
}

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

a { color: var(--ice); text-decoration: none; }
a:hover { color: #fff; }

:focus-visible {
  outline: 2px solid var(--ice);
  outline-offset: 3px;
  border-radius: 2px;
}

::selection { background: rgba(143, 214, 255, 0.28); color: #fff; }

.skip {
  position: absolute;
  left: -9999px;
  top: 8px;
  z-index: 100;
  padding: 10px 16px;
  background: var(--ice);
  color: #04060b;
  font: 600 13px/1 var(--mono);
  letter-spacing: 0.06em;
  border-radius: 3px;
}
.skip:focus { left: 12px; }

/* ---------- shared atoms ---------- */

.eyebrow {
  margin: 0;
  font: 500 11px/1 var(--mono);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-3);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0;
  padding: 7px 14px 7px 12px;
  border: 1px solid var(--line-2);
  border-radius: 100px;
  background: rgba(143, 214, 255, 0.04);
  font: 500 11px/1 var(--mono);
  letter-spacing: 0.19em;
  text-transform: uppercase;
  color: var(--ink-2);
  white-space: nowrap;
}

.badge__dot {
  position: relative;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--signal);
  box-shadow: 0 0 10px 1px rgba(255, 158, 74, 0.75);
  flex: none;
}
.badge__dot::after {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 1px solid var(--signal);
  opacity: 0;
  animation: ping 2.6s var(--ease) infinite;
}
@keyframes ping {
  0%   { transform: scale(0.6); opacity: 0.9; }
  70%  { transform: scale(2.2); opacity: 0; }
  100% { transform: scale(2.2); opacity: 0; }
}

.display {
  margin: 0;
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 0.92;
  color: #fff;
}

.tagline {
  margin: 0;
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--ink);
}

.sub {
  margin: 0;
  color: var(--ink-2);
  letter-spacing: -0.005em;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 4px;
  border: 1px solid transparent;
  font: 500 14px/1 var(--sans);
  letter-spacing: -0.01em;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease),
    border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.btn:active { transform: translateY(1px); }

.btn--primary {
  background: #f2f7ff;
  color: #05070c;
  box-shadow: 0 0 0 0 rgba(143, 214, 255, 0);
}
.btn--primary:hover {
  background: #fff;
  color: #05070c;
  box-shadow: 0 6px 30px -8px rgba(143, 214, 255, 0.55);
}

.btn--ghost {
  border-color: var(--line-2);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.015);
}
.btn--ghost:hover {
  border-color: var(--line-3);
  background: rgba(143, 214, 255, 0.06);
  color: #fff;
}

/* ---------- mark ---------- */

.mark { width: 28px; height: 28px; flex: none; overflow: visible; }
.mark--lg { width: 96px; height: 96px; }
.mark--sm { width: 18px; height: 18px; }

@keyframes mark-spin { to { transform: rotate(360deg); } }
.mark__ring { transform-origin: 20px 20px; }
.mark__node { transform-origin: 20px 20px; animation: mark-spin 24s linear infinite; }

/* ---------- header ---------- */

.hdr {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px var(--gut);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.hdr[data-stuck] {
  background: rgba(4, 6, 11, 0.72);
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  border-bottom-color: var(--line);
}

.hdr__brand {
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
}
.hdr__brand:hover { color: #fff; }
.hdr__word {
  font: 600 16px/1 var(--sans);
  letter-spacing: -0.02em;
}

.hdr__nav {
  display: flex;
  align-items: center;
  gap: 6px;
}
.hdr__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 4px;
  color: var(--ink-2);
  font: 500 12px/1 var(--mono);
  letter-spacing: 0.08em;
  transition: color 0.2s var(--ease), background 0.2s var(--ease);
}
.hdr__link:hover { color: #fff; background: rgba(255, 255, 255, 0.05); }
.hdr__link svg { width: 15px; height: 15px; fill: currentColor; }

/* ---------- starfield ---------- */

.stars {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* ---------- hero: shared ---------- */

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--void);
}

.hero__inner {
  position: relative;
  z-index: 2;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(48px, 9vw, 104px) var(--gut) clamp(56px, 10vw, 120px);
}

/* ============ VARIANT B — deep space horizon ============ */

.heroB { text-align: center; }
.heroB .hero__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
  min-height: 84vh;
  justify-content: center;
  padding-bottom: clamp(140px, 22vw, 280px);
}
.heroB .display {
  font-size: clamp(72px, 15vw, 210px);
  letter-spacing: -0.045em;
}
.heroB .tagline { font-size: clamp(20px, 2.6vw, 32px); }
.heroB .sub { font-size: clamp(14.5px, 1.35vw, 17px); max-width: 56ch; }
.heroB .cta-row { justify-content: center; margin-top: 10px; }

.heroB__stage {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
.heroB__stage svg {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: min(1600px, 168%);
  transform: translateX(-50%);
}
.heroB__glow {
  position: absolute;
  left: 50%;
  bottom: -46%;
  width: min(1500px, 150%);
  aspect-ratio: 1;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(143, 214, 255, 0.16),
    rgba(143, 214, 255, 0.05) 45%,
    transparent 62%
  );
}

/* orbital svg shared bits */
.orb-track { fill: none; stroke: var(--line-2); stroke-width: 1; }
.orb-track--lit { stroke: rgba(143, 214, 255, 0.4); }
.orb-tick { stroke: var(--line-2); stroke-width: 1; }
.orb-earth-fill { fill: url(#earthFill); }
.orb-earth-rim { fill: none; stroke: rgba(143, 214, 255, 0.55); stroke-width: 1.25; }
.orb-label {
  font: 500 9px/1 var(--mono);
  letter-spacing: 0.18em;
  fill: var(--ink-4);
  text-transform: uppercase;
}
.orb-node { fill: var(--signal); }
.orb-node-halo { fill: none; stroke: var(--signal); stroke-width: 1; opacity: 0.45; }

/* ---------- responsive ---------- */

@media (max-width: 900px) {
  .hdr__word { display: none; }
}

@media (max-width: 560px) {
  .btn { width: 100%; justify-content: center; }
  .cta-row { width: 100%; }
  .hdr__link span { display: none; }
  .hdr__link { padding: 8px; }
  .hdr__word { display: block; }
}

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

/* ---------- page starfield ---------- */
.stars--page { position: fixed; inset: 0; z-index: 0; }
.hero--page { background: transparent; }

/* ---------- reveal ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}
[data-reveal].is-in { opacity: 1; transform: none; }

/* ---------- corner brackets ---------- */
.brk {
  position: absolute;
  width: 12px; height: 12px;
  border: 1px solid var(--line-3);
  pointer-events: none;
  z-index: 1;
}
.brk:nth-of-type(1) { top: -1px; left: -1px; border-right: 0; border-bottom: 0; }
.brk:nth-of-type(2) { top: -1px; right: -1px; border-left: 0; border-bottom: 0; }
.brk:nth-of-type(3) { bottom: -1px; left: -1px; border-right: 0; border-top: 0; }
.brk:nth-of-type(4) { bottom: -1px; right: -1px; border-left: 0; border-top: 0; }

/* ---------- section shell ---------- */
.sec {
  position: relative;
  z-index: 2;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(60px, 9vw, 128px) var(--gut);
}
.sec--tight { padding-top: clamp(24px, 3vw, 40px); }
.sec__head {
  display: flex;
  align-items: baseline;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: clamp(26px, 4vw, 44px);
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.sec__title {
  margin: 0;
  font-size: clamp(23px, 3vw, 34px);
  font-weight: 600;
  letter-spacing: -0.028em;
  color: #fff;
}
.sec__idx {
  margin-left: auto;
  font: 500 10px/1 var(--mono);
  letter-spacing: 0.22em;
  color: var(--ink-4);
}

/* ---------- feature cards ---------- */
.cards {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}
@media (min-width: 880px) { .cards { grid-template-columns: repeat(3, 1fr); } }
.card {
  position: relative;
  background: var(--deep);
  padding: clamp(24px, 3vw, 34px);
  display: flex;
  flex-direction: column;
  gap: 13px;
  min-height: 232px;
  transition: background 0.35s var(--ease);
}
.card:hover { background: var(--panel-2); }
.card::after {
  content: "";
  position: absolute;
  left: 0; top: 0;
  width: 100%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--ice-dim), transparent);
  opacity: 0;
  transition: opacity 0.35s var(--ease);
}
.card:hover::after { opacity: 0.6; }
.card__n {
  font: 500 10px/1 var(--mono);
  letter-spacing: 0.2em;
  color: var(--ink-4);
  margin-bottom: 4px;
}
.card__t {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #fff;
}
.card__b { margin: 0; font-size: 14.5px; color: var(--ink-2); }

/* ---------- product shot slot ---------- */
.shot {
  position: relative;
  border: 1px solid var(--line-2);
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(143, 214, 255, 0.045), transparent 62%), var(--panel);
  aspect-ratio: 16 / 10;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.shot::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 46px 46px;
  -webkit-mask-image: radial-gradient(ellipse at 50% 50%, #000, transparent 74%);
  mask-image: radial-gradient(ellipse at 50% 50%, #000, transparent 74%);
}
.shot__in {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 13px;
  padding: 26px;
  text-align: center;
}
.shot__k {
  font: 500 10px/1 var(--mono);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ice);
}
.shot__h {
  margin: 0;
  font: 400 12.5px/1.75 var(--mono);
  color: var(--ink-3);
  max-width: 54ch;
}
.shot > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 2; }

/* ---------- repo cards ---------- */
.repos { display: grid; gap: 18px; }
@media (min-width: 820px) { .repos { grid-template-columns: 1fr 1fr; } }
.repo {
  display: block;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  overflow: hidden;
  color: var(--ink);
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease),
    box-shadow 0.3s var(--ease);
}
.repo:hover {
  color: var(--ink);
  border-color: var(--line-3);
  transform: translateY(-2px);
  box-shadow: 0 26px 54px -34px rgba(0, 0, 0, 0.95);
}
.repo__bar {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 14px;
  border-bottom: 1px solid var(--line);
  background: var(--panel-2);
}
.repo__dots { display: flex; gap: 5px; }
.repo__dots i { width: 8px; height: 8px; border-radius: 50%; background: var(--line-3); }
.repo__path {
  font: 500 11px/1 var(--mono);
  letter-spacing: 0.04em;
  color: var(--ink-3);
  margin-left: 3px;
}
.repo__body { padding: 20px 18px 22px; display: flex; flex-direction: column; gap: 11px; }
.repo__cmd { font: 500 12.5px/1 var(--mono); color: var(--ink-4); }
.repo__cmd b { color: var(--ice); font-weight: 500; }
.repo__name {
  margin: 0;
  font: 600 19px/1 var(--mono);
  letter-spacing: -0.015em;
  color: #fff;
}
.repo__b { margin: 0; font-size: 14.5px; color: var(--ink-2); }
.repo__go {
  margin-top: 5px;
  font: 500 12px/1 var(--mono);
  letter-spacing: 0.06em;
  color: var(--ice);
}

/* ---------- about ---------- */
.about { display: grid; gap: 18px; max-width: 62ch; }
.about p {
  margin: 0;
  font-size: clamp(17px, 2.1vw, 23px);
  font-weight: 500;
  letter-spacing: -0.022em;
  line-height: 1.5;
  color: var(--ink);
}
.about p + p { color: var(--ink-2); }

/* ---------- footer ---------- */
.ftr { position: relative; z-index: 2; border-top: 1px solid var(--line); background: var(--void); }
.ftr__in {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(34px, 5vw, 54px) var(--gut) clamp(38px, 6vw, 62px);
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.ftr__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.ftr__links { display: flex; gap: 8px; flex-wrap: wrap; }
.ftr__link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 5px;
  color: var(--ink-2);
  font: 500 12px/1 var(--mono);
  letter-spacing: 0.05em;
  transition: color 0.25s var(--ease), border-color 0.25s var(--ease),
    background 0.25s var(--ease);
}
.ftr__link:hover { color: #fff; border-color: var(--line-3); background: rgba(143, 214, 255, 0.05); }
.ftr__link svg { width: 14px; height: 14px; fill: currentColor; flex: none; }
.ftr__fine {
  margin: 0;
  font: 400 12px/1.75 var(--mono);
  letter-spacing: 0.015em;
  color: var(--ink-2);
  max-width: 78ch;
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1 !important; transform: none !important; }
}

/* ---------- language toggle ---------- */
.lang {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 5px;
  overflow: hidden;
  margin-right: 4px;
}
.lang button {
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 8px 11px;
  font: 500 11px/1 var(--mono);
  letter-spacing: 0.12em;
  color: var(--ink-3);
  transition: color 0.2s var(--ease), background 0.2s var(--ease);
}
.lang button + button { border-left: 1px solid var(--line); }
.lang button:hover { color: #fff; }
.lang button.is-on { background: rgba(143, 214, 255, 0.11); color: #fff; }

/* ---------- filled product shot ---------- */
.shot--filled { aspect-ratio: auto; display: block; background: var(--panel-2); }
.shot--filled::before { display: none; }
.shot--filled > img {
  position: static;
  width: 100%;
  height: auto;
  display: block;
}
.shot__cap {
  margin: 14px 0 0;
  font: 400 11.5px/1.6 var(--mono);
  letter-spacing: 0.04em;
  color: var(--ink-4);
}

/* ---------- CJK typography ---------- */
html[lang^="zh"] body {
  font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Hiragino Sans GB",
    "Microsoft YaHei", "Segoe UI", sans-serif;
}
html[lang^="zh"] .display { letter-spacing: -0.015em; }
html[lang^="zh"] .tagline { letter-spacing: 0; }
html[lang^="zh"] .sub,
html[lang^="zh"] .card__b,
html[lang^="zh"] .repo__b { letter-spacing: 0.01em; }
html[lang^="zh"] .about p { letter-spacing: -0.005em; line-height: 1.6; }
html[lang^="zh"] .sec__title { letter-spacing: -0.012em; }

/* ---------- globe scope (hero + capabilities) ---------- */
.gscope { position: relative; }
.gscope > section { position: relative; z-index: 1; }
.gscope__art {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}
.globe { position: absolute; left: 0; top: 0; }
.orb { position: absolute; left: 0; top: 0; overflow: visible; }
.orb [data-node] { filter: drop-shadow(0 0 7px rgba(255,158,74,.85)); }

.gfade { position: absolute; left: 0; right: 0; z-index: 2; pointer-events: none; display: block; }
.gfade--top {
  top: 0;
  height: 26vh;
  background: linear-gradient(180deg, #04060b 0%, rgba(4,6,11,.82) 45%, rgba(4,6,11,0) 100%);
}
.orb--top { z-index: 3; }
.gfade--bot {
  bottom: 0;
  height: 240px;
  background: linear-gradient(180deg, rgba(4,6,11,0) 0%, rgba(4,6,11,.9) 62%, #04060b 100%);
}

.gfade { position: absolute; left: 0; right: 0; z-index: 2; pointer-events: none; display: block; }
.gfade--top {
  top: 0;
  height: 26vh;
  background: linear-gradient(180deg, #04060b 0%, rgba(4,6,11,.82) 45%, rgba(4,6,11,0) 100%);
}
.orb--top { z-index: 3; }
.gfade--bot {
  bottom: 0;
  height: 240px;
  background: linear-gradient(180deg, rgba(4,6,11,0) 0%, rgba(4,6,11,.9) 62%, #04060b 100%);
}

/* section heads sit over the globe — give them their own ground */
.gscope .sec__head { position: relative; }
.gscope .sec__head::before {
  content: "";
  position: absolute;
  inset: -34px -8vw -12px;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(90deg,
    rgba(4,6,11,.97) 0%, rgba(4,6,11,.96) 62%, rgba(4,6,11,.93) 88%, rgba(4,6,11,.88) 100%);
}

/* legibility over the globe: haloed text instead of a blocking scrim */
.gscope .display,
.gscope .tagline,
.gscope .sub,
.gscope .sec__title {
  text-shadow: 0 0 10px rgba(4,6,11,.92), 0 2px 26px rgba(4,6,11,.9), 0 0 56px rgba(4,6,11,.8);
}
.gscope .sec__idx,
.gscope .badge {
  text-shadow: 0 0 8px rgba(4,6,11,.95), 0 0 22px rgba(4,6,11,.9);
}
.gscope .badge { background: rgba(4,6,11,.72); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); }
.gscope .sec__head { position: relative; }
.gscope .sec__head::before {
  content: "";
  position: absolute;
  inset: -30px -6vw -8px;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(ellipse 58% 100% at 22% 50%,
    rgba(4,6,11,.9) 0%, rgba(4,6,11,.62) 52%, rgba(4,6,11,0) 100%);
}

/* type upgrade: display font for headings */
h1, h2, h3 { font-family: var(--display); letter-spacing: -0.015em; }
