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

:root {
  --bg: #07090f;
  --bg-elevated: #0f121c;
  --bg-card: #141a28;
  --text: #ece8df;
  --text-muted: #9c968a;
  --gold: #c9a84c;
  --gold-soft: #e8d49a;
  --rose: #b88a9a;
  --rose-soft: #d4b4be;
  --line: rgba(236, 232, 223, 0.1);
  --radius: 14px;
  font-size: clamp(17px, 0.5vw + 16px, 18px);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "DM Sans", system-ui, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
}

h1,
h2,
h3,
.eyebrow,
.tagline {
  font-family: "Instrument Serif", Georgia, serif;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.5rem, 5.5vw, 4rem);
  margin: 0 0 1rem;
}

h2 {
  font-size: clamp(1.75rem, 3vw, 2.45rem);
  margin: 0 0 0.65rem;
}

h3 {
  font-size: 1.15rem;
  margin: 0 0 0.4rem;
}

p {
  margin: 0 0 1rem;
}

a {
  color: var(--gold-soft);
}

.wrap {
  width: min(1080px, 92vw);
  margin-inline: auto;
}

.eyebrow {
  font-family: "DM Sans", sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rose-soft);
  margin: 0 0 0.75rem;
}

.lede {
  font-size: 1.14rem;
  color: var(--text-muted);
  max-width: 46ch;
}

.lede--wide {
  max-width: 58ch;
}

.muted {
  color: var(--text-muted);
}

.divider {
  border: none;
  height: 1px;
  margin: 0;
  background: linear-gradient(90deg, transparent, var(--line) 20%, var(--gold) 50%, var(--line) 80%, transparent);
  opacity: 0.6;
}

/* Nav */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0;
}

.nav__brand {
  font-family: "Instrument Serif", serif;
  font-size: 1.35rem;
  color: var(--text);
  text-decoration: none;
}

.nav__links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 1.15rem;
}

.nav__links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
}

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

/* Hero */
.hero {
  display: grid;
  gap: 2.5rem;
  padding: 0.5rem 0 4rem;
  align-items: center;
}

@media (min-width: 900px) {
  .hero {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3rem;
    padding-bottom: 5rem;
  }
}

.hero__verse p {
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  font-style: italic;
}

.hero__verse p:last-child {
  margin-bottom: 0;
}

.tagline {
  margin-top: 2rem;
  font-size: 1.35rem;
  color: var(--gold-soft);
}

/* Constellation */
.constellation {
  position: relative;
  aspect-ratio: 1;
  max-width: 380px;
  margin-inline: auto;
}

.constellation__ring {
  position: absolute;
  inset: 6%;
  border-radius: 50%;
  border: 1px dashed rgba(201, 168, 76, 0.22);
}

.constellation__ring--inner {
  inset: 22%;
  border-style: solid;
  border-color: rgba(184, 138, 154, 0.2);
}

.constellation__node {
  position: absolute;
  width: 10px;
  height: 10px;
  margin: -5px 0 0 -5px;
  border-radius: 50%;
  background: var(--gold-soft);
  box-shadow: 0 0 18px rgba(232, 212, 154, 0.35);
}

.constellation__node--center {
  left: 50%;
  top: 50%;
  width: 14px;
  height: 14px;
  margin: -7px 0 0 -7px;
  background: var(--gold);
}

.constellation__node--a {
  left: 28%;
  top: 32%;
}
.constellation__node--b {
  left: 72%;
  top: 28%;
}
.constellation__node--c {
  left: 22%;
  top: 68%;
}
.constellation__node--d {
  left: 78%;
  top: 62%;
}
.constellation__node--e {
  left: 50%;
  top: 18%;
  width: 7px;
  height: 7px;
  margin: -3.5px 0 0 -3.5px;
  opacity: 0.75;
}

.constellation__line {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 1px;
  height: 32%;
  margin-left: -0.5px;
  background: linear-gradient(to top, rgba(201, 168, 76, 0.35), transparent);
  transform-origin: bottom center;
}

.constellation__line:nth-child(4) {
  transform: rotate(-55deg);
}
.constellation__line:nth-child(5) {
  transform: rotate(35deg);
}
.constellation__line:nth-child(6) {
  transform: rotate(125deg);
}
.constellation__line:nth-child(7) {
  transform: rotate(-140deg);
}
.constellation__line:nth-child(8) {
  transform: rotate(-90deg);
  height: 22%;
}

.constellation__caption {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 1rem;
}

/* Sections */
section {
  padding: 4rem 0;
}

.strip {
  background: var(--bg-elevated);
  border-block: 1px solid var(--line);
}

.section-intro {
  max-width: 54ch;
  margin-bottom: 2.25rem;
}

.section-intro.center {
  text-align: center;
  margin-inline: auto;
}

/* Lists */
.list-check,
.list-plain {
  margin: 0 0 1rem;
  padding-left: 1.2rem;
  color: var(--text-muted);
}

.list-check li,
.list-plain li {
  margin-bottom: 0.35rem;
}

.list-check {
  list-style: none;
  padding-left: 0;
}

.list-check li {
  padding: 0.3rem 0 0.3rem 1.35rem;
  position: relative;
}

.list-check li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72rem;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--rose);
}

.reject-list li::before {
  background: transparent;
  width: 8px;
  height: 1px;
  top: 0.85rem;
  border-radius: 0;
  background: var(--text-muted);
  opacity: 0.5;
}

/* Grid */
.grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .grid--2 {
    grid-template-columns: 1fr 1fr;
  }
  .grid--3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card {
  padding: 1.35rem;
  border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid var(--line);
}

.card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 0;
}

.card ul {
  margin: 0.5rem 0 0;
  padding-left: 1.1rem;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.card li {
  margin-bottom: 0.25rem;
}

/* Pillars */
.pillars {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
}

.pillars li {
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Metaphor */
.metaphor {
  display: grid;
  gap: 0.65rem;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.metaphor li {
  padding: 0.65rem 1rem;
  border-left: 2px solid rgba(201, 168, 76, 0.4);
  color: var(--gold-soft);
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 1.1rem;
}

/* Coming soon */
.coming {
  text-align: center;
  max-width: 42ch;
  margin-inline: auto;
}

.coming ul {
  text-align: left;
  display: inline-block;
  margin: 1rem auto 0;
  color: var(--text-muted);
}

.footer {
  padding: 3rem 0 4rem;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  border-top: 1px solid var(--line);
}

.footer__brand {
  font-family: "Instrument Serif", serif;
  font-size: 1.5rem;
  color: var(--text);
  margin-bottom: 0.35rem;
}

.footer__closing {
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 1.15rem;
  color: var(--gold-soft);
  margin-top: 1.25rem;
  font-style: italic;
}
