/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #0b0b0b;
  --bg-2: #111111;
  --fg: #f0ede8;
  --fg-muted: #8a8580;
  --amber: #f59e0b;
  --amber-dim: #b37309;
  --amber-glow: rgba(245, 158, 11, 0.12);
  --white: #ffffff;
  --border: rgba(240, 237, 232, 0.08);
  --border-amber: rgba(245, 158, 11, 0.25);
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', system-ui, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4 { font-family: 'Fraunces', Georgia, serif; font-weight: 700; line-height: 1.15; }

.section-eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--fg);
  margin-bottom: 3rem;
}

/* === HEADER === */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.25rem 2rem;
  background: rgba(11, 11, 11, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wordmark {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 900;
  font-size: 1.3rem;
  color: var(--amber);
  letter-spacing: -0.02em;
}

.wordmark-sm {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 900;
  font-size: 1rem;
  color: var(--amber);
  letter-spacing: -0.02em;
}

.header-tag {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-muted);
  font-weight: 500;
}

/* === HERO === */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 2rem 5rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 85% 40%, rgba(245, 158, 11, 0.07) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 10% 90%, rgba(245, 158, 11, 0.04) 0%, transparent 60%);
}

.geo-accent {
  position: absolute;
  top: 0;
  right: 0;
  width: 40vw;
  height: 100%;
  background:
    repeating-linear-gradient(
      90deg,
      transparent 0,
      transparent 80px,
      rgba(245, 158, 11, 0.04) 80px,
      rgba(245, 158, 11, 0.04) 81px
    ),
    repeating-linear-gradient(
      0deg,
      transparent 0,
      transparent 80px,
      rgba(245, 158, 11, 0.03) 80px,
      rgba(245, 158, 11, 0.03) 81px
    );
  opacity: 0.7;
}

.hero-inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1.75rem;
  background: var(--amber-glow);
  border: 1px solid var(--border-amber);
  padding: 0.4rem 1rem;
  border-radius: 2px;
}

.label-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--amber);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

.hero-headline {
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 900;
  color: var(--fg);
  max-width: 700px;
  margin-bottom: 1.75rem;
  line-height: 1.05;
}

.hero-headline em {
  font-style: italic;
  color: var(--amber);
}

.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--fg-muted);
  max-width: 560px;
  margin-bottom: 3.5rem;
  line-height: 1.7;
  font-weight: 300;
}

.hero-stats {
  display: flex;
  align-items: stretch;
  gap: 0;
  max-width: 560px;
}

.stat {
  flex: 1;
  padding: 1.25rem 1.5rem;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.02);
}

.stat:first-child { border-radius: 4px 0 0 4px; }
.stat:last-child { border-radius: 0 4px 4px 0; }

.stat-div {
  width: 1px;
  background: var(--border);
}

.stat-num {
  display: block;
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1rem, 1.8vw, 1.4rem);
  font-weight: 700;
  color: var(--amber);
  margin-bottom: 0.25rem;
}

.stat-label {
  display: block;
  font-size: 0.65rem;
  color: var(--fg-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 500;
}

/* === PROOF === */
.proof {
  padding: 7rem 2rem;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}

.proof-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.proof-header {
  text-align: center;
  margin-bottom: 3rem;
}

.proof-header .section-title { margin-bottom: 0; }

.proof-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.proof-card {
  padding: 2.25rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  position: relative;
  overflow: hidden;
}

.proof-card.shared {
  background: rgba(255,255,255,0.01);
}

.proof-card.exclusive {
  background: rgba(245, 158, 11, 0.04);
  border-color: var(--border-amber);
}

.card-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 2px;
  margin-bottom: 1rem;
}

.card-badge-shared {
  background: rgba(255,255,255,0.06);
  color: var(--fg-muted);
  border: 1px solid rgba(255,255,255,0.1);
}

.card-badge-exclusive {
  background: var(--amber);
  color: #000;
}

.card-desc {
  font-size: 0.8rem;
  color: var(--fg-muted);
  margin-bottom: 1.25rem;
  font-weight: 500;
}

.card-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.card-points li {
  font-size: 0.88rem;
  color: var(--fg);
  padding-left: 1.25rem;
  position: relative;
  font-weight: 300;
  line-height: 1.5;
}

.card-points li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--amber);
}

.proof-callout {
  text-align: center;
  padding: 1.25rem 2rem;
  background: var(--amber-glow);
  border: 1px solid var(--border-amber);
  border-radius: 4px;
  font-size: 0.95rem;
  color: var(--fg-muted);
  font-weight: 300;
  font-style: italic;
}

.proof-callout strong { color: var(--amber); font-style: normal; }

/* === HOW IT WORKS === */
.howitworks {
  padding: 7rem 2rem;
  background: var(--bg);
}

.howitworks-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: 0;
}

.step {
  padding: 2rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: rgba(255,255,255,0.01);
}

.step-num {
  display: block;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--amber-dim);
  margin-bottom: 0.75rem;
  opacity: 0.6;
}

.step-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 0.75rem;
}

.step-desc {
  font-size: 0.88rem;
  color: var(--fg-muted);
  line-height: 1.65;
  font-weight: 300;
}

.step-connector {
  display: flex;
  align-items: center;
  padding: 0 0.75rem;
  padding-top: 2.5rem;
  color: var(--border-amber);
  font-size: 1.5rem;
}

.step-connector::after {
  content: '→';
  color: var(--amber-dim);
  opacity: 0.5;
  font-size: 1.2rem;
}

/* === MANIFESTO === */
.manifesto {
  padding: 7rem 2rem;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.manifesto-inner {
  max-width: 760px;
  margin: 0 auto;
}

.manifesto-quote {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  font-weight: 400;
  font-style: italic;
  color: var(--fg);
  line-height: 1.5;
  margin-bottom: 2rem;
  padding-left: 1.75rem;
  border-left: 3px solid var(--amber);
}

.manifesto-body {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.8;
  margin-bottom: 1.25rem;
  font-weight: 300;
}

/* === NICHES === */
.niches {
  padding: 7rem 2rem;
  background: var(--bg);
}

.niches-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.niches .section-title { margin-bottom: 3rem; }

.niche-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.niche-card {
  padding: 2rem 1.5rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: rgba(255,255,255,0.02);
  text-align: left;
  transition: border-color 0.2s ease;
}

.niche-card:hover {
  border-color: var(--border-amber);
}

.niche-icon {
  display: block;
  font-size: 1.75rem;
  margin-bottom: 1rem;
  line-height: 1;
}

.niche-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 0.6rem;
}

.niche-desc {
  font-size: 0.83rem;
  color: var(--fg-muted);
  line-height: 1.65;
  font-weight: 300;
}

.niches-footnote {
  font-size: 0.82rem;
  color: var(--fg-muted);
  font-style: italic;
  font-weight: 300;
}

/* === CLOSING === */
.closing {
  padding: 7rem 2rem;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}

.closing-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.closing-rule {
  width: 48px;
  height: 2px;
  background: var(--amber);
  margin: 0 auto 2.5rem;
}

.closing-headline {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--fg);
  margin-bottom: 1.75rem;
}

.closing-body {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.8;
  margin-bottom: 1.25rem;
  font-weight: 300;
}

.closing-tagline {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: var(--fg-muted);
  margin-top: 2.5rem;
  font-weight: 400;
}

.tagline-accent {
  color: var(--amber);
  font-style: italic;
}

/* === FOOTER === */
.site-footer {
  padding: 2.5rem 2rem;
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-tagline {
  font-size: 0.8rem;
  color: var(--fg-muted);
  font-weight: 300;
}

.footer-note {
  font-size: 0.72rem;
  color: var(--fg-muted);
  opacity: 0.5;
  font-weight: 300;
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .steps {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .step-connector { display: none; }
  .proof-grid { grid-template-columns: 1fr; }
  .niche-grid { grid-template-columns: 1fr 1fr; }
  .hero-stats { flex-direction: column; max-width: 100%; }
  .stat-div { display: none; }
  .stat { border-radius: 4px; border-left: none; border-right: none; }
  .stat:first-child { border-radius: 0; }
  .stat:last-child { border-radius: 0; }
  .geo-accent { display: none; }
}

@media (max-width: 600px) {
  .niche-grid { grid-template-columns: 1fr; }
  .hero { padding: 7rem 1.5rem 4rem; }
  .proof, .howitworks, .manifesto, .niches, .closing { padding: 5rem 1.5rem; }
  .footer-inner { flex-direction: column; gap: 0.75rem; text-align: center; }
  .proof-callout { padding: 1rem 1.25rem; }
}