:root {
  --bg: #090807;
  --bg-soft: #11100e;
  --text: #f4efe7;
  --muted: #b7ab9b;
  --quiet: #817467;
  --gold: #c89b3b;
  --gold-soft: #e0c36f;
  --line: rgba(244, 239, 231, 0.13);
  --max: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Manrope, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  min-height: 100vh;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% -10%, rgba(200,155,59,0.17), transparent 33rem),
    radial-gradient(circle at 8% 22%, rgba(255,255,255,0.035), transparent 24rem),
    linear-gradient(180deg, rgba(255,255,255,.018), transparent 24rem);
}

.grain {
  pointer-events: none;
  position: fixed;
  inset: 0;
  opacity: .18;
  mix-blend-mode: soft-light;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 250 250' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.72' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E");
}

.ambient { position: fixed; border-radius: 50%; pointer-events: none; filter: blur(70px); opacity: .18; }
.ambient-one { width: 420px; height: 420px; background: rgba(200,155,59,.24); top: -210px; left: calc(50% - 210px); }
.ambient-two { width: 360px; height: 360px; background: rgba(255,255,255,.08); bottom: 8%; right: -180px; }

a { color: inherit; text-decoration: none; }
.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  padding: 28px clamp(22px, 5vw, 72px);
  background: linear-gradient(to bottom, rgba(9,8,7,.60), rgba(9,8,7,0));
  backdrop-filter: blur(3px);
  pointer-events: none;
}
.wordmark {
  pointer-events: auto;
  color: rgba(244,239,231,.74);
  font-size: 12px;
  letter-spacing: .32em;
  text-transform: uppercase;
  transition: color .25s ease;
}
.wordmark:hover { color: var(--gold-soft); }

.hero {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 132px 22px 90px;
  position: relative;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 12% 9% 12%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200,155,59,.48), transparent);
}
.hero-inner { max-width: 980px; text-align: center; }
.hero-logo {
  width: clamp(176px, 22vw, 270px);
  margin: 0 auto 26px;
  display: block;
  filter: drop-shadow(0 24px 50px rgba(200,155,59,.18));
}
.eyebrow, .section-kicker {
  color: var(--gold-soft);
  text-transform: uppercase;
  letter-spacing: .24em;
  font-size: 11px;
  margin: 0 0 20px;
}
h1, h2, h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  line-height: .98;
  margin: 0;
}
h1 { font-size: clamp(56px, 9vw, 118px); letter-spacing: -.045em; }
.hero-copy { max-width: 700px; margin: 30px auto 0; color: var(--muted); font-size: clamp(18px, 2vw, 23px); font-weight: 300; }
.button, button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(200,155,59,.60);
  background: var(--gold);
  color: #0b0906;
  min-height: 50px;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: .04em;
  cursor: pointer;
  margin-top: 44px;
  transition: transform .22s ease, background .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.button:hover, button:hover { transform: translateY(-2px); background: var(--gold-soft); box-shadow: 0 0 38px rgba(200,155,59,.18); }
.button.ghost { background: transparent; color: var(--text); border-color: var(--line); }
.button.ghost:hover { border-color: var(--gold); color: var(--gold-soft); background: transparent; }

.section { max-width: var(--max); margin: 0 auto; padding: clamp(86px, 11vw, 156px) clamp(22px, 5vw, 72px); position: relative; }
.intro-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: clamp(40px, 7vw, 98px); align-items: start; }
.intro h2, .signup h2 { font-size: clamp(42px, 6vw, 78px); letter-spacing: -.035em; }
.intro-copy { color: var(--muted); font-size: 18px; max-width: 540px; font-weight: 300; }
.intro-copy p:first-child { color: var(--text); }

.essentials {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding-top: 0;
  padding-bottom: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.essentials p {
  margin: 0;
  padding: 38px 22px;
  text-align: center;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(30px, 4vw, 48px);
  color: var(--text);
  border-right: 1px solid var(--line);
}
.essentials p:last-child { border-right: 0; }

.manifesto { text-align: center; padding-top: clamp(90px, 12vw, 170px); }
.manifesto p { font-family: "Cormorant Garamond", Georgia, serif; font-size: clamp(38px, 5vw, 74px); line-height: 1.04; max-width: 920px; margin: 0 auto; color: var(--text); }

.signup { display: grid; grid-template-columns: .95fr 1.05fr; gap: clamp(36px, 6vw, 86px); align-items: center; border-top: 1px solid var(--line); }
.signup p { color: var(--muted); margin-top: 18px; font-weight: 300; }
.signup-form { border: 1px solid var(--line); background: linear-gradient(145deg, rgba(255,255,255,.055), rgba(255,255,255,.018)); padding: clamp(24px, 4vw, 42px); border-radius: 28px; box-shadow: 0 24px 80px rgba(0,0,0,.22); }
.signup-form label { display: block; color: var(--gold-soft); font-size: 12px; text-transform: uppercase; letter-spacing: .16em; margin-bottom: 12px; }
.form-row { display: flex; gap: 12px; }
input { width: 100%; min-height: 54px; border: 1px solid var(--line); border-radius: 999px; background: rgba(0,0,0,.28); color: var(--text); padding: 0 18px; font: inherit; }
input::placeholder { color: rgba(183,171,155,.62); }
input:focus { outline: none; border-color: rgba(200,155,59,.82); box-shadow: 0 0 0 4px rgba(200,155,59,.09); }
form button { margin-top: 0; min-width: 116px; }
.form-note { font-size: 13px; margin-bottom: 0; }
.hidden { display: none; }

.site-footer { max-width: var(--max); margin: 0 auto; padding: 30px clamp(22px, 5vw, 72px) 48px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; gap: 16px; color: var(--muted); font-size: 14px; position: relative; }
.site-footer a { color: var(--gold-soft); }

.success-page { display: grid; min-height: 100svh; place-items: center; padding: 28px; }
.success-wrap { text-align: center; max-width: 680px; }
.success-logo { width: 160px; margin-bottom: 28px; filter: drop-shadow(0 22px 42px rgba(200,155,59,.16)); }
.success-wrap h1 { font-size: clamp(58px, 10vw, 112px); }
.success-wrap p:not(.eyebrow) { color: var(--muted); font-size: 19px; max-width: 520px; margin: 24px auto 0; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .9s ease, transform .9s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .button, button { transition: none; }
}
@media (max-width: 850px) {
  .intro-grid, .signup { grid-template-columns: 1fr; }
  .essentials { grid-template-columns: 1fr 1fr; }
  .essentials p:nth-child(2) { border-right: 0; }
  .essentials p:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .form-row { flex-direction: column; }
  button { width: 100%; }
}
@media (max-width: 540px) {
  .site-header { padding-top: 22px; }
  .hero { padding-top: 106px; }
  .hero-logo { width: 176px; }
  h1 { font-size: 54px; }
  .essentials { grid-template-columns: 1fr; }
  .essentials p { border-right: 0; border-bottom: 1px solid var(--line); }
  .essentials p:last-child { border-bottom: 0; }
  .site-footer { flex-direction: column; }
}
