:root {
  color-scheme: dark;
  --runtime-dark-bg: #0f1a2a;
  --runtime-dark-surface: #141e2e;
  --runtime-dark-surface-alt: #202b3e;
  --runtime-dark-text: #f7f5f0;
  --runtime-dark-text-muted: #b8b3a8;
  --runtime-dark-border: #2a3548;
  --runtime-brand-accent: #d9b36a;
  --runtime-radius-md: 4px;
  --runtime-radius-lg: 8px;
  --runtime-font-sans: Inter, "Geist Sans", Arial, sans-serif;
  --runtime-font-mono: "Aptos Mono", "Geist Mono", SFMono-Regular, Menlo, Consolas, monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  background:
    linear-gradient(90deg, rgba(216, 212, 202, 0.05) 1px, transparent 1px) 0 0 / 72px 72px,
    linear-gradient(rgba(216, 212, 202, 0.04) 1px, transparent 1px) 0 0 / 72px 72px,
    var(--runtime-dark-bg);
  color: var(--runtime-dark-text);
  font: 15px/1.62 var(--runtime-font-sans);
}

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

a:hover,
a:focus-visible {
  color: var(--runtime-dark-text);
  outline: none;
  text-decoration: underline;
  text-decoration-color: var(--runtime-brand-accent);
  text-underline-offset: 4px;
}

p,
h1,
h2,
h3,
dl,
dd {
  margin: 0;
}

ul {
  margin: 0;
  padding-left: 18px;
}

.static-shell {
  display: grid;
  min-height: 100vh;
  grid-template-rows: auto 1fr auto;
  padding: clamp(20px, 3vw, 40px);
}

.static-nav,
.static-main,
.static-footer {
  width: min(1120px, 100%);
  margin-inline: auto;
}

.static-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 34px;
}

.wordmark {
  color: var(--runtime-dark-text);
  font-weight: 760;
  letter-spacing: 0;
}

.wordmark span,
.kicker,
.mono {
  font-family: var(--runtime-font-mono);
}

.wordmark span,
.kicker,
.mono {
  color: var(--runtime-brand-accent);
}

.static-nav nav,
.static-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--runtime-dark-text-muted);
  font-size: 14px;
}

.static-main {
  display: grid;
  gap: clamp(34px, 6vh, 70px);
}

.page-hero {
  display: grid;
  gap: 18px;
  padding: clamp(40px, 8vh, 88px) 0 clamp(26px, 5vh, 46px);
  border-top: 1px solid var(--runtime-dark-border);
  border-bottom: 1px solid var(--runtime-dark-border);
}

.page-hero h1 {
  max-width: 860px;
  color: var(--runtime-dark-text);
  font-size: clamp(42px, 7vw, 78px);
  font-weight: 760;
  letter-spacing: 0;
  line-height: 0.98;
}

.page-hero p,
.section-copy,
.legal-copy p,
.legal-copy li,
.muted {
  max-width: 800px;
  color: var(--runtime-dark-text-muted);
  font-size: clamp(15px, 1.5vw, 18px);
  line-height: 1.62;
}

.kicker,
.mono {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

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

.module {
  display: grid;
  align-content: start;
  gap: 14px;
  min-width: 0;
  padding: 22px;
  border: 1px solid var(--runtime-dark-border);
  border-radius: var(--runtime-radius-lg);
  background: rgba(20, 30, 46, 0.78);
}

.module h2,
.module h3,
.legal-copy h2,
.legal-copy h3 {
  color: var(--runtime-dark-text);
}

.module h2 {
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.08;
}

.module h3 {
  font-size: 18px;
  line-height: 1.22;
}

.module ul,
.legal-copy ul {
  display: grid;
  gap: 8px;
}

.price {
  color: var(--runtime-dark-text);
  font-size: 34px;
  font-weight: 760;
  line-height: 1;
}

.price span {
  color: var(--runtime-dark-text-muted);
  font-size: 14px;
  font-weight: 500;
}

.note {
  max-width: 900px;
  padding: 18px;
  border: 1px solid var(--runtime-dark-border);
  border-radius: var(--runtime-radius-lg);
  background: rgba(20, 30, 46, 0.78);
  color: var(--runtime-dark-text-muted);
}

.legal-copy {
  display: grid;
  gap: 18px;
  max-width: 920px;
  padding: clamp(24px, 4vw, 40px);
  border: 1px solid var(--runtime-dark-border);
  border-radius: var(--runtime-radius-lg);
  background: rgba(20, 30, 46, 0.78);
}

.legal-copy h2 {
  margin-top: 16px;
  padding-top: 18px;
  border-top: 1px solid var(--runtime-dark-border);
  font-size: 22px;
}

.legal-copy h3 {
  font-size: 17px;
}

.legal-copy blockquote {
  margin: 0;
  padding: 16px 18px;
  border-left: 3px solid var(--runtime-brand-accent);
  background: rgba(15, 26, 42, 0.78);
  color: var(--runtime-dark-text-muted);
}

.legal-copy table {
  width: 100%;
  border-collapse: collapse;
  color: var(--runtime-dark-text-muted);
}

.legal-copy th,
.legal-copy td {
  vertical-align: top;
  padding: 12px;
  border: 1px solid var(--runtime-dark-border);
  text-align: left;
}

.legal-copy th {
  color: var(--runtime-dark-text);
}

.static-footer {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr;
  gap: 24px;
  margin-top: clamp(42px, 8vh, 88px);
  padding-top: 24px;
  border-top: 1px solid var(--runtime-dark-border);
  color: var(--runtime-dark-text-muted);
  font-size: 14px;
  line-height: 1.55;
}

.static-footer strong {
  color: var(--runtime-dark-text);
}

.static-footer nav {
  justify-content: flex-end;
}

.footer-note {
  grid-column: 1 / -1;
  max-width: 900px;
  padding-top: 18px;
  border-top: 1px solid var(--runtime-dark-border);
  color: var(--runtime-dark-text-muted);
  font-size: 12px;
}

@media (max-width: 900px) {
  .static-nav,
  .static-footer,
  .grid,
  .grid.four {
    grid-template-columns: 1fr;
  }

  .static-nav {
    align-items: flex-start;
    flex-direction: column;
  }

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

@media (max-width: 620px) {
  .legal-copy table,
  .legal-copy tbody,
  .legal-copy tr,
  .legal-copy th,
  .legal-copy td {
    display: block;
  }
}
