:root {
  --ink: #f3eee6;
  --paper: #050505;
  --coral: #ff735e;
  --line: rgba(243, 238, 230, 0.22);
  --mono: "DM Mono", monospace;
  --serif: "Fraunces", Georgia, serif;
  --sans: "Manrope", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
}

a { color: inherit; }

main { overflow: hidden; position: relative; }

#aura-field {
  height: 100vh;
  left: 0;
  opacity: 0.78;
  pointer-events: none;
  position: fixed;
  top: 0;
  width: 100vw;
  z-index: 0;
}

main::before {
  background: linear-gradient(90deg, rgba(5, 5, 5, 0.95) 0%, rgba(5, 5, 5, 0.25) 60%, rgba(5, 5, 5, 0.82) 100%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 0;
}

.nav, .hero, .manifesto, .closing, footer {
  max-width: 1440px;
  margin: 0 auto;
  padding-left: clamp(1.5rem, 6vw, 6.5rem);
  padding-right: clamp(1.5rem, 6vw, 6.5rem);
}

.nav {
  align-items: center;
  display: flex;
  justify-content: space-between;
  min-height: 90px;
  position: relative;
  z-index: 1;
}

.wordmark {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0;
  text-decoration: none;
}

.wordmark span { color: var(--coral); }

.nav-link, .section-label, .eyebrow, footer {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0;
  text-transform: uppercase;
}

.nav-link {
  align-items: center;
  display: flex;
  gap: 0.6rem;
  text-decoration: none;
}

.nav-link span { color: var(--coral); font-size: 1.25rem; }

.hero {
  min-height: calc(100vh - 90px);
  padding-top: clamp(4rem, 10vh, 8rem);
  padding-bottom: 4rem;
  position: relative;
  z-index: 1;
}

.eyebrow { align-items: center; display: flex; gap: 0.55rem; }
.eyebrow span { background: var(--coral); border-radius: 50%; height: 7px; width: 7px; }

h1, h2, p { margin-top: 0; }

h1, h2 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(4rem, 10vw, 9.8rem);
  line-height: 0.95;
  margin: clamp(2rem, 5vw, 4rem) 0;
}

em { color: var(--coral); font-style: italic; }

.hero-bottom {
  align-items: end;
  display: flex;
  gap: 2rem;
  justify-content: space-between;
  max-width: 780px;
}

.hero-bottom p, .body-copy { font-size: 1rem; line-height: 1.65; max-width: 360px; }

.button {
  align-items: center;
  background: var(--ink);
  color: #101010;
  display: inline-flex;
  flex: 0 0 auto;
  font-family: var(--mono);
  font-size: 0.7rem;
  gap: 2rem;
  padding: 1.1rem 1.35rem;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 180ms ease, transform 180ms ease;
}

.button:hover { background: var(--coral); transform: translateY(-3px); }
.button span { font-size: 1.2rem; }

.manifesto {
  align-items: center;
  background: rgba(5, 5, 5, 0.78);
  color: var(--ink);
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(250px, 0.72fr);
  gap: clamp(3rem, 10vw, 12rem);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  max-width: none;
  padding-top: clamp(4.5rem, 10vw, 9rem);
  padding-bottom: clamp(4.5rem, 10vw, 9rem);
}

.manifesto-copy { margin-left: auto; max-width: 550px; width: 100%; }
.manifesto .section-label { color: #aaa39b; margin-bottom: 3.75rem; }

h2 { font-size: clamp(2.8rem, 5vw, 5.3rem); line-height: 1; margin-bottom: 2rem; }
.manifesto em { color: var(--coral); }
.body-copy { color: #c8c2bb; }

.signal-mark {
  align-items: center;
  aspect-ratio: 1;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  margin: 0 auto;
  max-width: 440px;
  position: relative;
  width: 100%;
}

.signal-mark::before, .signal-mark::after {
  border: 1px solid rgba(255, 115, 94, 0.56);
  border-radius: 50%;
  content: "";
  position: absolute;
}

.signal-mark::before { inset: 17%; }
.signal-mark::after { inset: 34%; }
.signal-core { background: var(--coral); border-radius: 50%; box-shadow: 0 0 40px rgba(255, 115, 94, 0.6); height: 10px; width: 10px; }
.signal-mark span { bottom: 1.5rem; color: #aaa39b; font-family: var(--mono); font-size: 0.65rem; position: absolute; text-transform: uppercase; }

.closing { min-height: 75vh; padding-top: clamp(5rem, 12vw, 11rem); position: relative; z-index: 1; }
.closing h2 { max-width: 780px; }
.closing .section-label { margin-bottom: 3rem; }

.circle-link {
  align-items: center;
  background: var(--ink);
  border-radius: 50%;
  bottom: clamp(3rem, 8vw, 8rem);
  display: flex;
  height: clamp(100px, 12vw, 160px);
  justify-content: center;
  position: absolute;
  right: clamp(1.5rem, 8vw, 9rem);
  text-decoration: none;
  transition: transform 200ms ease;
  width: clamp(100px, 12vw, 160px);
}

.circle-link:hover { transform: rotate(20deg) scale(1.06); }
.circle-link span { color: var(--paper); font-family: var(--serif); font-size: clamp(2rem, 4vw, 4rem); }

footer {
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  min-height: 84px;
  align-items: center;
  color: #aaa39b;
  position: relative;
  z-index: 1;
}

footer p { margin: 0; }
footer a { text-decoration: none; }

@media (max-width: 680px) {
  .hero { min-height: 700px; }
  .hero-bottom { align-items: start; flex-direction: column; }
  .manifesto { grid-template-columns: 1fr; gap: 4.5rem; }
  .manifesto-copy { margin-left: 0; }
  .signal-mark { max-width: 320px; }
  .closing { min-height: 560px; }
  .circle-link { bottom: 3rem; }
}