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

:root {
  --navy: #0D1B2A;
  --navy-mid: #162336;
  --gold: #C9A84C;
  --gold-light: #DFC078;
  --gold-dim: rgba(201,168,76,0.15);
  --cream: #FAFAF7;
  --cream-dim: rgba(250,250,247,0.07);
  --text-muted: rgba(250,250,247,0.55);
}

html { scroll-behavior: smooth; }

body {
  background-color: var(--navy);
  color: var(--cream);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  line-height: 1.75;
  overflow-x: hidden;
}

/* Noise texture overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
}

/* Ambient glow */
.glow-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
}
.glow-orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
  top: -200px; right: -200px;
}
.glow-orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(201,168,76,0.05) 0%, transparent 70%);
  bottom: 100px; left: -100px;
}

/* Layout */
.container {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 1;
}

/* Header */
header {
  padding: 48px 0 0;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards;
}

.brand-mark {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 80px;
}

.brand-line {
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.brand-name {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

/* Hero */
.hero {
  padding-bottom: 72px;
  border-bottom: 1px solid rgba(201,168,76,0.2);
}

.eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.1s forwards;
}

h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(38px, 6vw, 58px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.2s forwards;
}

h1 em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-sub {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.8;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.3s forwards;
}

/* Body copy */
.body-section {
  padding: 64px 0;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.4s forwards;
}

.body-section p {
  font-size: 16px;
  line-height: 1.9;
  color: rgba(250,250,247,0.82);
  margin-bottom: 24px;
}

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

.pull-quote {
  margin: 48px 0;
  padding: 32px 40px;
  border-left: 2px solid var(--gold);
  background: var(--cream-dim);
  border-radius: 0 8px 8px 0;
}

.pull-quote p {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-style: italic;
  line-height: 1.6;
  color: var(--cream);
  margin: 0;
}

.framework-heading {
  font-size: 14px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 24px;
}

/* Framework pills */
.framework {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 48px 0;
}

.framework-item {
  padding: 20px 24px;
  background: var(--cream-dim);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 8px;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.framework-item:hover {
  border-color: rgba(201,168,76,0.4);
  background: rgba(201,168,76,0.07);
}

.framework-letter {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}

.framework-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 4px;
}

.framework-desc {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Deliverables */
.deliverables {
  margin: 48px 0;
  padding: 40px;
  background: linear-gradient(135deg, rgba(201,168,76,0.08) 0%, rgba(201,168,76,0.03) 100%);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 12px;
}

.deliverables-title {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.deliverable-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 16px;
}

.deliverable-row:last-child { margin-bottom: 0; }

.deliverable-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  margin-top: 8px;
  flex-shrink: 0;
}

.deliverable-text {
  font-size: 15px;
  color: rgba(250,250,247,0.85);
  line-height: 1.6;
}

/* Waitlist section */
.waitlist-section {
  padding: 64px 0 96px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.5s forwards;
}

.waitlist-card {
  background: linear-gradient(160deg, rgba(201,168,76,0.1) 0%, rgba(13,27,42,0.8) 60%);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 16px;
  padding: 56px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.waitlist-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.waitlist-card h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 4vw, 36px);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 16px;
}

.waitlist-card h2 em {
  font-style: italic;
  color: var(--gold-light);
}

.waitlist-sub {
  font-size: 15px;
  color: var(--text-muted);
  max-width: 420px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.cta-btn {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 18px 44px;
  border-radius: 4px;
  transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
  box-shadow: 0 4px 24px rgba(201,168,76,0.25);
}

.cta-btn:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(201,168,76,0.35);
}

.cta-btn:active { transform: translateY(0); }

.waitlist-note {
  margin-top: 24px;
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.waitlist-note span {
  color: var(--gold);
}

/* Divider */
.gold-divider {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 48px 0;
}

.gold-divider-line {
  flex: 1;
  height: 1px;
  background: rgba(201,168,76,0.2);
}

.gold-divider-mark {
  width: 6px;
  height: 6px;
  background: var(--gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* Footer */
footer {
  border-top: 1px solid rgba(201,168,76,0.12);
  padding: 32px 0 48px;
  position: relative;
  z-index: 1;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-brand {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.footer-link {
  font-size: 12px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-link:hover { color: var(--cream); }

/* Animations */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 600px) {
  .framework { grid-template-columns: 1fr; }
  .waitlist-card { padding: 40px 28px; }
  .pull-quote { padding: 24px 28px; }
  .deliverables { padding: 28px 24px; }
  .brand-mark { margin-bottom: 56px; }
}
