:root {
  color-scheme: dark;
  --bg: #050907;
  --bg-deep: #020403;
  --bg-green: #0b1710;
  --surface: rgba(247, 248, 244, 0.045);
  --surface-strong: rgba(247, 248, 244, 0.08);
  --text: #f7f8f4;
  --muted: #9aa9a2;
  --faint: #72867d;
  --line: rgba(247, 248, 244, 0.16);
  --line-strong: rgba(22, 215, 181, 0.35);
  --teal: #16d7b5;
  --teal-deep: #0a8d76;
  --amber: #ffb21c;
  --max: 1180px;
  --header: 76px;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
}

body::selection {
  background: rgba(22, 215, 181, 0.32);
}

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

img,
svg {
  display: block;
}

button,
input,
textarea {
  font: inherit;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  color: var(--text);
  line-height: 1;
  flex: 0 0 auto;
}

.brand-lockup {
  width: auto;
  height: 56px;
  max-width: min(38vw, 196px);
  object-fit: contain;
}

.brand-mark--compact .brand-lockup {
  height: 50px;
  max-width: 176px;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 0 clamp(20px, 5vw, 56px);
  color: var(--text);
  transition:
    background 180ms ease,
    border-color 180ms ease,
    backdrop-filter 180ms ease;
}

.site-header--scrolled {
  background: rgba(3, 7, 5, 0.82);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 3vw, 42px);
  color: rgba(247, 248, 244, 0.82);
  font-size: 14px;
  line-height: 1;
}

.site-nav a {
  transition: color 160ms ease;
}

.site-nav a:hover {
  color: var(--text);
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border: 1px solid var(--line-strong);
  border-radius: 2px;
  padding: 0 26px;
  color: var(--text);
  font-size: 15px;
  font-weight: 560;
  line-height: 1;
  transition:
    background 160ms ease,
    color 160ms ease,
    border-color 160ms ease,
    transform 160ms ease;
}

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

.button--primary {
  min-height: 64px;
  border-color: transparent;
  background: linear-gradient(90deg, var(--teal), #7fe9d5);
  color: #02120f;
}

.button--ghost,
.button--outline {
  background: transparent;
  color: var(--teal);
}

.button--ghost {
  min-height: 44px;
  padding: 0 22px;
  font-size: 14px;
}

.button--outline:hover,
.button--ghost:hover {
  background: rgba(22, 215, 181, 0.08);
  border-color: var(--teal);
}

.button--plain {
  border-color: rgba(247, 248, 244, 0.24);
  background: rgba(247, 248, 244, 0.04);
  color: rgba(247, 248, 244, 0.82);
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  border-bottom: 1px solid var(--line);
  background: var(--bg-deep);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -3;
  /* Derived from NASA/JPL-Caltech PIA03654, the Milky Way galactic center. */
  background:
    linear-gradient(90deg, rgba(2, 4, 3, 0.92) 0%, rgba(2, 4, 3, 0.68) 38%, rgba(2, 4, 3, 0.18) 100%),
    linear-gradient(180deg, rgba(2, 4, 3, 0.22) 0%, rgba(2, 4, 3, 0.06) 45%, rgba(2, 4, 3, 0.94) 100%),
    url("/assets/hero-galactic-center.jpg") 64% 52% / cover no-repeat;
  filter: brightness(0.62) contrast(1.14) saturate(0.95) hue-rotate(136deg);
  transform: scale(1.02);
}

.hero-bg::after {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 70% 45%, rgba(22, 215, 181, 0.16), transparent 28%),
    radial-gradient(ellipse at 66% 72%, rgba(255, 178, 28, 0.12), transparent 48%);
  content: "";
  mix-blend-mode: screen;
  pointer-events: none;
}

.hero-grid {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(22, 215, 181, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(22, 215, 181, 0.055) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, transparent 0%, black 30%, black 75%, transparent 100%);
  opacity: 0.22;
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 28%;
  background: linear-gradient(180deg, transparent, var(--bg));
  content: "";
}

.hero-inner {
  width: min(var(--max), calc(100% - 40px));
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.46fr);
  align-items: center;
  gap: clamp(36px, 5vw, 64px);
  margin: 0 auto;
  padding: calc(var(--header) + 34px) 0 72px;
}

.hero-copy {
  max-width: 790px;
}

.hero h1,
.section h2,
.simple-card h1,
.legal-page h1 {
  margin: 0;
  color: var(--text);
  font-weight: 560;
  line-height: 1.02;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 820px;
  font-size: clamp(52px, 5.6vw, 76px);
}

.hero-title-line {
  display: block;
}

.hero h1::selection {
  color: #031511;
}

.hero-copy p {
  max-width: 610px;
  margin: 30px 0 0;
  color: rgba(247, 248, 244, 0.76);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 46px;
}

.hero-system {
  display: grid;
  place-items: center;
  min-height: 520px;
}

.system-ring {
  position: relative;
  width: min(34vw, 430px);
  min-width: 340px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(22, 215, 181, 0.16) 0%, rgba(22, 215, 181, 0.035) 42%, transparent 70%);
}

.system-orbit,
.system-orbit::before,
.system-ring::after {
  position: absolute;
  border-radius: 50%;
  content: "";
}

.system-orbit {
  inset: 0;
  border: 1px dashed rgba(22, 215, 181, 0.45);
  animation: slow-spin 36s linear infinite;
}

.system-orbit::before {
  inset: 18%;
  border: 1px solid rgba(255, 178, 28, 0.46);
  box-shadow: 0 0 50px rgba(22, 215, 181, 0.08);
}

.system-ring::after {
  inset: 38%;
  background: rgba(7, 22, 17, 0.66);
  border: 1px solid rgba(22, 215, 181, 0.2);
}

.system-ring strong {
  position: relative;
  z-index: 1;
  color: var(--teal);
  font-size: 13px;
  font-weight: 620;
  letter-spacing: 0.09em;
  line-height: 1.35;
  text-align: center;
  text-transform: uppercase;
}

.ring-node {
  position: absolute;
  z-index: 2;
  width: 96px;
  color: rgba(247, 248, 244, 0.88);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.06em;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.ring-node span {
  display: block;
  animation: counter-spin 36s linear infinite;
}

.ring-node::before {
  width: 14px;
  height: 14px;
  display: block;
  margin: 0 auto 10px;
  border-radius: 999px;
  background: var(--teal);
  box-shadow: 0 0 22px rgba(22, 215, 181, 0.5);
  content: "";
}

.ring-node--6::before {
  background: var(--amber);
  box-shadow: 0 0 22px rgba(255, 178, 28, 0.55);
}

.ring-node--1 {
  top: 3%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.ring-node--2 {
  top: 26%;
  right: -12%;
}

.ring-node--3 {
  right: -7%;
  bottom: 22%;
}

.ring-node--4 {
  bottom: 1%;
  left: 50%;
  transform: translate(-50%, 50%);
}

.ring-node--5 {
  bottom: 22%;
  left: -7%;
}

.ring-node--6 {
  top: 26%;
  left: -12%;
  color: var(--amber);
}

.section {
  position: relative;
  padding: clamp(82px, 9vw, 132px) 0;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 50% 0%, rgba(22, 215, 181, 0.1), transparent 34%),
    linear-gradient(180deg, var(--bg), var(--bg-green));
}

.section-heading {
  width: min(920px, calc(100% - 40px));
  margin: 0 auto clamp(48px, 7vw, 76px);
  text-align: center;
}

.section-heading p,
.section-label {
  margin: 0 0 18px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 680;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.section h2 {
  font-size: clamp(34px, 4.5vw, 62px);
}

.proof-item {
  position: relative;
  min-height: 260px;
  padding: 28px 24px;
  border: 1px solid var(--line);
  background: rgba(247, 248, 244, 0.035);
}

.proof-item::after {
  position: absolute;
  top: -1px;
  left: -1px;
  width: 10px;
  height: 10px;
  background: var(--teal);
  opacity: 0;
  content: "";
  transition: opacity 160ms ease;
}

.proof-item:hover::after {
  opacity: 1;
}

.proof-item h3 {
  margin: 36px 0 14px;
  color: var(--text);
  font-size: 20px;
  font-weight: 560;
  line-height: 1.2;
}

.proof-item p,
.section--about p,
.legal-page p,
.simple-card p {
  margin: 0;
  color: var(--muted);
}

.section--product {
  background:
    linear-gradient(rgba(247, 248, 244, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(247, 248, 244, 0.02) 1px, transparent 1px),
    var(--bg);
  background-size: 58px 58px;
}

.proof-grid {
  width: min(var(--max), calc(100% - 40px));
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin: 0 auto;
  background: var(--line);
  border: 1px solid var(--line);
}

.proof-item {
  min-height: 290px;
  border: 0;
  background: #07100c;
}

.proof-icon {
  --axis: 0deg;
  --bearing: -34deg;
  --drift-x: 0px;
  --drift-y: 0px;
  position: relative;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(22, 215, 181, 0.46);
  border-radius: 50%;
  background:
    radial-gradient(circle, #07100c 0 57%, transparent 58%),
    conic-gradient(
      from var(--axis),
      rgba(22, 215, 181, 0.74) 0deg 3deg,
      transparent 3deg 87deg,
      rgba(22, 215, 181, 0.74) 87deg 93deg,
      transparent 93deg 177deg,
      rgba(22, 215, 181, 0.74) 177deg 183deg,
      transparent 183deg 267deg,
      rgba(22, 215, 181, 0.74) 267deg 273deg,
      transparent 273deg 360deg
    ),
    #07100c;
  box-shadow:
    inset 0 0 0 8px rgba(22, 215, 181, 0.025),
    0 0 24px rgba(22, 215, 181, 0.12);
  opacity: 0.96;
  transform: translate(var(--drift-x), var(--drift-y));
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.proof-icon::before,
.proof-icon::after {
  position: absolute;
  content: "";
}

.proof-icon::before {
  inset: 8px;
  border: 1px solid rgba(22, 215, 181, 0.16);
  border-radius: inherit;
  background:
    linear-gradient(
      var(--axis),
      transparent calc(50% - 0.5px),
      rgba(22, 215, 181, 0.68) calc(50% - 0.5px) calc(50% + 0.5px),
      transparent calc(50% + 0.5px)
    ),
    linear-gradient(
      calc(var(--axis) + 90deg),
      transparent calc(50% - 0.5px),
      rgba(22, 215, 181, 0.68) calc(50% - 0.5px) calc(50% + 0.5px),
      transparent calc(50% + 0.5px)
    );
}

.proof-icon::after {
  top: 50%;
  left: 50%;
  z-index: 1;
  width: 4px;
  height: 38px;
  border-radius: 999px;
  background: linear-gradient(
    180deg,
    var(--amber) 0 43%,
    transparent 43% 56%,
    rgba(22, 215, 181, 0.82) 56% 100%
  );
  clip-path: polygon(50% 0, 100% 36%, 62% 50%, 100% 100%, 0 100%, 38% 50%, 0 36%);
  filter: drop-shadow(0 0 8px rgba(22, 215, 181, 0.28));
  transform: translate(-50%, -50%) rotate(var(--bearing));
  transform-origin: center;
  transition: transform 180ms ease;
}

.proof-icon__pin {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow:
    0 0 0 2px #07100c,
    0 0 18px rgba(22, 215, 181, 0.52);
  transform: translate(-50%, -50%);
}

.proof-item:nth-child(1) .proof-icon {
  --axis: 0deg;
  --bearing: -34deg;
}

.proof-item:nth-child(2) .proof-icon {
  --axis: 18deg;
  --bearing: 42deg;
  --drift-x: 6px;
  --drift-y: -2px;
}

.proof-item:nth-child(3) .proof-icon {
  --axis: -12deg;
  --bearing: 224deg;
  --drift-x: -3px;
  --drift-y: 4px;
}

.proof-item:nth-child(4) .proof-icon {
  --axis: 28deg;
  --bearing: 142deg;
  --drift-x: 7px;
  --drift-y: 3px;
}

.proof-item:hover .proof-icon {
  border-color: rgba(22, 215, 181, 0.72);
  box-shadow:
    inset 0 0 0 8px rgba(22, 215, 181, 0.04),
    0 0 30px rgba(22, 215, 181, 0.18);
  transform: translate(var(--drift-x), calc(var(--drift-y) - 2px));
}

.proof-item:hover .proof-icon::after {
  transform: translate(-50%, -50%) rotate(calc(var(--bearing) + 12deg));
}

.section--about {
  width: min(var(--max), calc(100% - 40px));
  display: grid;
  grid-template-columns: minmax(620px, 1.35fr) minmax(340px, 0.55fr);
  gap: clamp(36px, 5vw, 72px);
  margin: 0 auto;
  border-bottom: 0;
  background: transparent;
}

.section--about h2 {
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.08;
  margin-bottom: 24px;
}

.section--about > div:first-child p:last-child {
  max-width: 570px;
  font-size: 18px;
}

.about-panel {
  display: grid;
  gap: 34px;
  align-content: center;
  padding-left: clamp(24px, 4vw, 48px);
  border-left: 1px solid var(--line);
}

.about-panel dl {
  display: grid;
  gap: 22px;
  margin: 0;
}

.about-panel div {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 18px;
}

.about-panel dt {
  color: var(--faint);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.about-panel dd {
  margin: 0;
  color: rgba(247, 248, 244, 0.86);
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #020403;
}

.footer-inner {
  width: min(var(--max), calc(100% - 40px));
  min-height: 92px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 34px;
  margin: 0 auto;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 26px;
  color: rgba(247, 248, 244, 0.68);
  font-size: 13px;
}

.site-footer p {
  margin: 0;
  color: var(--faint);
  font-size: 13px;
}

.simple-page,
.legal-page {
  min-height: calc(100svh - 92px);
  padding: calc(var(--header) + 82px) 20px 90px;
  background:
    radial-gradient(circle at 70% 12%, rgba(22, 215, 181, 0.14), transparent 34%),
    linear-gradient(180deg, var(--bg-deep), var(--bg-green));
}

.simple-card,
.legal-page article {
  width: min(780px, 100%);
  margin: 0 auto;
  border: 1px solid var(--line);
  background: rgba(247, 248, 244, 0.045);
  padding: clamp(30px, 6vw, 60px);
}

.simple-card h1,
.legal-page h1 {
  font-size: clamp(42px, 6vw, 72px);
}

.simple-card p {
  max-width: 620px;
  margin-top: 22px;
  font-size: 18px;
}

.simple-card .button {
  margin-top: 34px;
}

.fine-print {
  color: var(--faint) !important;
  font-size: 14px !important;
}

.interest-page {
  min-height: calc(100svh - 92px);
  padding: calc(var(--header) + 82px) 20px 90px;
  background:
    radial-gradient(circle at 76% 12%, rgba(22, 215, 181, 0.16), transparent 34%),
    linear-gradient(180deg, var(--bg-deep), var(--bg-green));
}

.interest-shell {
  width: min(var(--max), 100%);
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 0.9fr);
  grid-template-areas:
    "copy panel"
    "meta panel";
  column-gap: clamp(42px, 7vw, 92px);
  row-gap: 0;
  align-items: start;
  margin: 0 auto;
}

.interest-copy {
  grid-area: copy;
  padding-top: clamp(8px, 2vw, 28px);
}

.interest-copy h1 {
  margin: 0;
  max-width: 560px;
  color: var(--text);
  font-size: clamp(44px, 6vw, 76px);
  font-weight: 560;
  line-height: 1.02;
  letter-spacing: 0;
}

.interest-copy > p {
  max-width: 570px;
  margin: 28px 0 0;
  color: rgba(247, 248, 244, 0.76);
  font-size: clamp(18px, 2vw, 21px);
}

.interest-meta {
  grid-area: meta;
  display: grid;
  gap: 1px;
  margin-top: 44px;
  border: 1px solid var(--line);
  background: var(--line);
}

.interest-meta div {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 20px;
  padding: 18px 20px;
  background: rgba(7, 16, 12, 0.86);
}

.interest-meta span {
  color: var(--faint);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.interest-meta strong {
  color: rgba(247, 248, 244, 0.9);
  font-size: 15px;
  font-weight: 560;
}

.interest-meta a,
.secondary-link {
  color: var(--teal);
}

.interest-panel {
  grid-area: panel;
  border: 1px solid var(--line);
  background: rgba(247, 248, 244, 0.045);
  padding: clamp(24px, 4vw, 36px);
}

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

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

.form-row {
  display: grid;
  gap: 8px;
}

.form-row--wide,
.form-status,
.form-actions {
  grid-column: 1 / -1;
}

.form-row label {
  color: rgba(247, 248, 244, 0.86);
  font-size: 13px;
  font-weight: 620;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(247, 248, 244, 0.18);
  border-radius: 2px;
  background: rgba(2, 4, 3, 0.52);
  color: var(--text);
  padding: 12px 14px;
  outline: 0;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.form-row textarea {
  min-height: 150px;
  resize: vertical;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(22, 215, 181, 0.12);
}

.form-row--honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.form-row textarea::placeholder {
  color: rgba(154, 169, 162, 0.62);
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-top: 8px;
}

.form-actions .button {
  border: 0;
  cursor: pointer;
}

.form-actions .button:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.secondary-link {
  font-size: 14px;
  font-weight: 620;
}

.form-status {
  min-height: 22px;
  margin: -4px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.form-status[data-tone="success"] {
  color: var(--teal);
}

.form-status[data-tone="error"] {
  color: #ffb21c;
}

.tally-frame {
  width: 100%;
  min-height: 680px;
  border: 0;
  background: #fff;
}

.admin-page {
  min-height: calc(100svh - 92px);
  padding: calc(var(--header) + 72px) 20px 90px;
  background:
    radial-gradient(circle at 74% 10%, rgba(22, 215, 181, 0.14), transparent 34%),
    linear-gradient(180deg, var(--bg-deep), var(--bg-green));
}

.admin-shell {
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.admin-heading {
  max-width: 680px;
  margin-bottom: 34px;
}

.admin-heading h1 {
  margin: 0;
  color: var(--text);
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 560;
  line-height: 1.02;
  letter-spacing: 0;
}

.admin-heading p:last-child {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.admin-toolbar {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto auto;
  gap: 14px;
  align-items: end;
  margin-bottom: 14px;
}

.admin-toolbar label {
  position: absolute;
  left: -9999px;
}

.admin-toolbar input {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(247, 248, 244, 0.18);
  border-radius: 2px;
  background: rgba(2, 4, 3, 0.52);
  color: var(--text);
  padding: 12px 14px;
  outline: 0;
}

.admin-toolbar input:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(22, 215, 181, 0.12);
}

.admin-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  background: rgba(247, 248, 244, 0.035);
}

.admin-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

.admin-table th,
.admin-table td {
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.admin-table th {
  color: var(--faint);
  font-size: 12px;
  font-weight: 680;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.admin-table td {
  color: rgba(247, 248, 244, 0.84);
  font-size: 14px;
}

.admin-table tbody tr:last-child td {
  border-bottom: 0;
}

.admin-table a {
  color: var(--teal);
}

.legal-page article {
  background: rgba(2, 4, 3, 0.45);
}

.legal-page h2 {
  margin: 40px 0 12px;
  color: var(--text);
  font-size: 22px;
  font-weight: 560;
}

.legal-page p {
  margin-top: 14px;
}

.legal-page a,
.about-panel a {
  color: var(--teal);
}

@keyframes slow-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes counter-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-360deg);
  }
}

@media (min-width: 981px) {
  .hero-title-line {
    white-space: nowrap;
  }

  .section--about h2 {
    white-space: nowrap;
  }
}

@media (max-width: 1080px) {
  .section--about {
    grid-template-columns: 1fr;
  }

  .about-panel {
    padding-left: 0;
    padding-top: 34px;
    border-top: 1px solid var(--line);
    border-left: 0;
  }
}

@media (max-width: 980px) {
  :root {
    --header: 68px;
  }

  .site-nav {
    display: none;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    align-items: start;
    padding-top: calc(var(--header) + 54px);
  }

  .hero-system {
    min-height: 390px;
  }

  .system-ring {
    width: min(78vw, 390px);
    min-width: 286px;
  }

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

  .section--about {
    grid-template-columns: 1fr;
  }

  .interest-shell {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "panel"
      "meta";
    gap: 32px;
  }

  .interest-copy {
    padding-top: 0;
  }

  .interest-meta {
    margin-top: 0;
  }

  .about-panel {
    padding-left: 0;
    padding-top: 34px;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    justify-items: start;
    padding: 28px 0;
  }

  .site-footer nav {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding-inline: 16px;
  }

  .brand-mark {
    max-width: 160px;
  }

  .brand-lockup {
    height: 48px;
    max-width: 160px;
  }

  .header-cta {
    min-height: 38px;
    padding: 0 14px;
    font-size: 12px;
  }

  .hero-inner,
  .proof-grid,
  .section-heading,
  .section--about,
  .footer-inner {
    width: min(100% - 32px, var(--max));
  }

  .hero {
    min-height: auto;
  }

  .hero h1 {
    font-size: clamp(42px, 12vw, 58px);
  }

  .hero-copy p {
    font-size: 17px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .site-header .button {
    width: auto;
    flex: 0 0 auto;
  }

  .hero-system {
    min-height: 320px;
  }

  .system-ring {
    min-width: 252px;
  }

  .ring-node {
    width: 80px;
    font-size: 10px;
  }

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

  .proof-item {
    min-height: auto;
  }

  .about-panel div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .interest-page {
    padding-inline: 16px;
    padding-top: calc(var(--header) + 48px);
  }

  .interest-shell {
    gap: 28px;
  }

  .interest-copy h1 {
    font-size: clamp(38px, 11vw, 48px);
  }

  .interest-copy > p {
    margin-top: 22px;
    font-size: 17px;
  }

  .interest-form {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .interest-panel {
    padding: 18px 22px;
  }

  .interest-panel .button--primary {
    min-height: 56px;
  }

  .interest-panel .form-actions {
    gap: 12px;
    margin-top: 2px;
  }

  .interest-panel .form-row input,
  .interest-panel .form-row select,
  .interest-panel .form-row textarea {
    min-height: 44px;
    padding: 10px 12px;
  }

  .admin-toolbar {
    grid-template-columns: 1fr;
  }

  .interest-meta div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .form-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .secondary-link {
    text-align: center;
  }
}

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