:root {
  color-scheme: dark;
  --paper: #f4efe5;
  --muted: rgba(244, 239, 229, 0.72);
  --field: #101815;
  --panel: rgba(17, 24, 21, 0.68);
  --panel-strong: rgba(244, 239, 229, 0.09);
  --line: rgba(244, 239, 229, 0.13);
  --gold: #dfb15c;
  --green: #6cb5a1;
  --red: #c6553f;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  min-height: 100%;
  margin: 0;
}

body {
  background: var(--field);
  color: var(--paper);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  letter-spacing: 0;
}

#network {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  background:
    linear-gradient(90deg, rgba(244, 239, 229, 0.06) 1px, transparent 1px),
    linear-gradient(rgba(244, 239, 229, 0.045) 1px, transparent 1px),
    linear-gradient(135deg, #101815 0%, #17241f 50%, #2a1c18 100%);
  background-size: 34px 34px, 34px 34px, auto;
}

main {
  position: relative;
  min-height: 100vh;
}

.hero,
.band {
  width: min(1180px, 100%);
  margin: 0 auto;
  padding-inline: clamp(20px, 5vw, 64px);
}

.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
  padding-block: clamp(56px, 10vw, 120px);
}

.hero-copy {
  display: grid;
  gap: clamp(18px, 3vw, 28px);
}

.eyebrow {
  margin: 0;
  color: var(--gold);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p,
li {
  margin: 0;
}

h1 {
  max-width: 11ch;
  font-family:
    ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
  font-size: clamp(3.5rem, 11vw, 8.8rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.9;
}

h2 {
  max-width: 13ch;
  font-family:
    ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
  font-size: clamp(2rem, 5.8vw, 5rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.96;
}

h3 {
  font-size: 1.08rem;
  letter-spacing: 0;
}

.lede {
  width: min(620px, 100%);
  color: var(--muted);
  font-size: clamp(1.12rem, 2vw, 1.35rem);
  line-height: 1.5;
}

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

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 18px;
  color: var(--paper);
  font-weight: 800;
  text-decoration: none;
}

.button.primary {
  border-color: rgba(223, 177, 92, 0.72);
  background: rgba(223, 177, 92, 0.18);
}

.button.secondary {
  background: rgba(244, 239, 229, 0.07);
}

.truth-note {
  display: grid;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background: var(--panel);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(10px);
}

.truth-note p {
  color: rgba(244, 239, 229, 0.86);
  font-size: 1rem;
  line-height: 1.55;
}

.band {
  display: grid;
  gap: clamp(24px, 4vw, 42px);
  padding-block: clamp(46px, 8vw, 92px);
}

.section-head {
  display: grid;
  gap: 12px;
}

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

.feature-grid article,
.price-card {
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 178px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
  background: var(--panel);
  backdrop-filter: blur(8px);
}

.feature-grid p,
.price-card p,
.closing p,
.spec-content p,
.spec-content li {
  color: var(--muted);
  line-height: 1.55;
}

.price-card.featured {
  border-color: rgba(108, 181, 161, 0.62);
  background: rgba(108, 181, 161, 0.12);
}

.price {
  color: var(--paper);
  font-family:
    ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  font-weight: 700;
  line-height: 1;
}

.price span {
  color: var(--muted);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-size: 1rem;
  font-weight: 800;
}

.closing {
  padding-bottom: clamp(72px, 12vw, 140px);
}

.closing p {
  width: min(720px, 100%);
  font-size: clamp(1.06rem, 2vw, 1.28rem);
}

.spec-page {
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: clamp(28px, 6vw, 84px) clamp(20px, 5vw, 64px);
}

.top-link {
  color: var(--gold);
  font-weight: 800;
  text-decoration: none;
}

.spec-hero {
  display: grid;
  gap: 18px;
  padding-block: clamp(36px, 7vw, 92px);
}

.spec-hero h1 {
  max-width: 10ch;
}

.spec-hero .lede {
  max-width: 780px;
}

.spec-content {
  display: grid;
  gap: 18px;
  padding-bottom: clamp(60px, 10vw, 120px);
}

.spec-section {
  display: grid;
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(18px, 3vw, 28px);
  background: var(--panel);
  backdrop-filter: blur(8px);
}

.spec-section h2 {
  max-width: 16ch;
  font-size: clamp(1.75rem, 3.6vw, 3.1rem);
}

.spec-section h3 {
  color: var(--paper);
}

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

.spec-list {
  display: grid;
  gap: 10px;
  padding-left: 20px;
}

.spec-table {
  display: grid;
  gap: 10px;
}

.spec-row {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  gap: 14px;
  border-top: 1px solid var(--line);
  padding-top: 10px;
}

.spec-row strong {
  color: var(--paper);
}

@media (max-width: 820px) {
  .hero,
  .feature-grid,
  .pricing-grid,
  .spec-grid,
  .spec-row {
    grid-template-columns: 1fr;
  }

  .hero {
    align-content: center;
  }

  .truth-note {
    max-width: 520px;
  }
}

@media (max-width: 520px) {
  h1 {
    max-width: 10ch;
  }

  .button {
    width: 100%;
  }
}
