/* ─── Reset & Base ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --obsidian: #0A0A0F;
  --obsidian-2: #111118;
  --obsidian-3: #18181F;
  --emerald: #1A4A3A;
  --emerald-light: #245945;
  --emerald-glow: rgba(26, 74, 58, 0.35);
  --gold: #C9A96E;
  --gold-dim: rgba(201, 169, 110, 0.5);
  --gold-glow: rgba(201, 169, 110, 0.15);
  --cream: #F0EBE0;
  --muted: rgba(240, 235, 224, 0.45);
  --frost: rgba(255, 255, 255, 0.04);
  --frost-border: rgba(255, 255, 255, 0.07);
  --text: #F0EBE0;
  --text-dim: rgba(240, 235, 224, 0.55);
  --text-dimmer: rgba(240, 235, 224, 0.3);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--obsidian);
  color: var(--text);
  font-family: 'Jost', system-ui, sans-serif;
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* ─── Typography ───────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

/* ─── Navigation ───────────────────────────────────────── */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.25rem 2.5rem;
  background: linear-gradient(to bottom, rgba(10,10,15,0.95) 0%, transparent 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

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

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--cream);
}

.nav-cap {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.cap-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--emerald-light);
  box-shadow: 0 0 8px var(--emerald);
  animation: pulse-dot 2.5s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

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

.hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4rem;
  align-items: center;
}

.hero-headline {
  font-size: clamp(3.2rem, 7vw, 6.5rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.05;
}

.hero-headline br { display: block; }

.hero-sub {
  margin-top: 1.5rem;
  font-size: 1.05rem;
  color: var(--text-dim);
  max-width: 420px;
  font-weight: 300;
}

/* Counter block */
.hero-counter {
  background: var(--frost);
  border: 1px solid var(--frost-border);
  border-radius: 2px;
  padding: 2rem 2.5rem;
  text-align: center;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  min-width: 280px;
}

.counter-label {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dimmer);
  margin-bottom: 1.5rem;
}

.counter-grid {
  display: flex;
  align-items: center;
  gap: 2rem;
  justify-content: center;
}

.counter-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}

.counter-sep {
  width: 1px;
  height: 40px;
  background: var(--frost-border);
}

.counter-type {
  display: block;
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dimmer);
  margin-top: 0.4rem;
}

.counter-cap {
  margin-top: 1.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--frost-border);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.cap-badge {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--cream);
}

.cap-text {
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dimmer);
}

/* Atmosphere */
.hero-atmosphere {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.atm-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
}

.atm-glow-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(26,74,58,0.25) 0%, transparent 70%);
  top: -10%;
  right: -5%;
}

.atm-glow-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(201,169,110,0.08) 0%, transparent 70%);
  bottom: 5%;
  left: 20%;
}

/* ─── Stats ─────────────────────────────────────────────── */
.stats-section {
  padding: 5rem 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  background: var(--obsidian-2);
}

.stats-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.stat-item {
  flex: 1;
  text-align: center;
  padding: 0 2rem;
}

.stat-value {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cream);
  margin-top: 0.75rem;
  font-weight: 400;
}

.stat-desc {
  font-size: 0.78rem;
  color: var(--text-dimmer);
  margin-top: 0.5rem;
}

.stat-divider {
  width: 1px;
  align-self: stretch;
  background: rgba(255,255,255,0.06);
}

/* ─── Manifesto ───────────────────────────────────────── */
.manifesto-section {
  padding: 7rem 2.5rem;
}

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

.manifesto-statement {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.3;
  font-style: italic;
}

.manifesto-statement em {
  font-style: normal;
  color: var(--gold);
}

.manifesto-body {
  margin-top: 2.5rem;
  font-size: 1rem;
  color: var(--text-dim);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}

/* ─── How It Works ─────────────────────────────────────── */
.hiw-section {
  padding: 6rem 2.5rem;
  background: var(--obsidian-2);
}

.hiw-header {
  text-align: center;
  margin-bottom: 4rem;
}

.hiw-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--cream);
}

.hiw-sub {
  margin-top: 0.75rem;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dimmer);
}

.hiw-grid {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.hiw-card {
  background: var(--frost);
  border: 1px solid var(--frost-border);
  border-radius: 2px;
  padding: 2.5rem 2rem;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: border-color 0.3s ease;
}

.hiw-card:hover {
  border-color: var(--gold-dim);
}

.hiw-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--gold-dim);
  line-height: 1;
  margin-bottom: 1.5rem;
}

.hiw-card-title {
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 0.75rem;
}

.hiw-card-body {
  font-size: 0.85rem;
  color: var(--text-dim);
  line-height: 1.7;
}

/* ─── Privacy ───────────────────────────────────────────── */
.privacy-section {
  padding: 7rem 2.5rem;
}

.privacy-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.privacy-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.2;
}

.privacy-title em {
  font-style: italic;
  color: var(--gold);
}

.privacy-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.privacy-item:first-child {
  padding-top: 0;
}

.privacy-icon {
  width: 36px;
  height: 36px;
  border: 1px solid var(--gold-dim);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.privacy-item h4 {
  font-family: 'Jost', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--cream);
  letter-spacing: 0.04em;
  margin-bottom: 0.3rem;
}

.privacy-item p {
  font-size: 0.8rem;
  color: var(--text-dim);
  line-height: 1.6;
}

/* ─── Pricing ───────────────────────────────────────────── */
.pricing-section {
  padding: 7rem 2.5rem;
  background: var(--obsidian-2);
}

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

.pricing-header {
  margin-bottom: 3rem;
}

.pricing-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--cream);
}

.pricing-sub {
  margin-top: 0.75rem;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dimmer);
}

.pricing-card {
  background: var(--frost);
  border: 1px solid var(--frost-border);
  border-radius: 2px;
  padding: 3rem 3.5rem;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.pricing-tier {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.pricing-amount {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.2rem;
}

.price-currency {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  color: var(--text-dim);
  align-self: flex-start;
  margin-top: 0.5rem;
}

.price-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  font-weight: 300;
  color: var(--cream);
  line-height: 1;
}

.price-period {
  font-size: 0.85rem;
  color: var(--text-dim);
  margin-left: 0.25rem;
}

.pricing-divider {
  height: 1px;
  background: var(--frost-border);
  margin: 2rem 0;
}

.pricing-features {
  list-style: none;
  text-align: left;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem 2rem;
}

.pricing-features li {
  font-size: 0.82rem;
  color: var(--text-dim);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.pricing-features li::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.pricing-urgency {
  margin-top: 2.5rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--frost-border);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-size: 0.75rem;
  color: var(--text-dimmer);
  letter-spacing: 0.06em;
}

.urgency-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse-dot 2s ease-in-out infinite;
}

/* ─── Closing ───────────────────────────────────────────── */
.closing-section {
  padding: 7rem 2.5rem 8rem;
  position: relative;
}

.closing-inner {
  max-width: 960px;
  margin: 0 auto;
}

.closing-quote {
  text-align: center;
  margin-bottom: 5rem;
}

.closing-quote blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  font-weight: 300;
  font-style: italic;
  color: var(--cream);
  line-height: 1.5;
  max-width: 700px;
  margin: 0 auto;
}

.closing-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 4rem;
}

.closing-stat {
  text-align: center;
}

.cs-value {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}

.cs-label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dimmer);
  margin-top: 0.6rem;
}

/* ─── Footer ───────────────────────────────────────────── */
.site-footer {
  border-top: 1px solid rgba(255,255,255,0.04);
  padding: 3rem 2.5rem;
}

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

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  letter-spacing: 0.25em;
  color: var(--cream);
}

.footer-tagline {
  font-size: 0.72rem;
  color: var(--text-dimmer);
  margin-top: 0.25rem;
  letter-spacing: 0.1em;
}

.footer-meta p {
  font-size: 0.75rem;
  color: var(--text-dimmer);
  text-align: right;
}

/* ─── Responsive ────────────────────────────────────────── */
@media (max-width: 768px) {
  .site-nav { padding: 1rem 1.5rem; }
  
  .hero { padding: 7rem 1.5rem 4rem; }
  .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-counter { min-width: unset; width: 100%; }
  
  .stats-inner { flex-direction: column; gap: 2rem; }
  .stat-divider { display: none; }
  
  .manifesto-section { padding: 5rem 1.5rem; }
  
  .hiw-grid { grid-template-columns: 1fr; gap: 1rem; }
  
  .privacy-inner { grid-template-columns: 1fr; gap: 3rem; }
  
  .pricing-card { padding: 2rem 1.5rem; }
  .pricing-features { grid-template-columns: 1fr; }
  
  .closing-stats { grid-template-columns: 1fr; gap: 1.5rem; }
  
  .footer-inner { flex-direction: column; gap: 1rem; text-align: center; }
  .footer-meta p { text-align: center; }
}

@media (max-width: 480px) {
  .nav-cap { display: none; }
  .counter-grid { gap: 1rem; }
  .counter-num { font-size: 2.8rem; }
}
/* ─── Navigation CTA Buttons ────────────────────────────── */
.nav-logo { text-decoration: none; }
.nav-right {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.nav-join-btn {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  border: 1px solid var(--gold-dim);
  padding: 0.4rem 1rem;
  border-radius: 1px;
  transition: all 0.2s ease;
}
.nav-join-btn:hover { background: rgba(201,169,110,0.08); }
.nav-login-btn {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dimmer);
  text-decoration: none;
  transition: color 0.2s ease;
}
.nav-login-btn:hover { color: var(--cream); }

/* ─── Hero CTAs ─────────────────────────────────────────── */
.hero-ctas {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}
.cta-primary {
  display: inline-block;
  padding: 0.85rem 2.2rem;
  border: 1px solid var(--gold-dim);
  border-radius: 2px;
  color: var(--gold);
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.25s ease;
  background: transparent;
}
.cta-primary:hover { background: rgba(201,169,110,0.08); border-color: var(--gold); }
.cta-secondary {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dimmer);
  text-decoration: none;
  transition: color 0.2s ease;
}
.cta-secondary:hover { color: var(--cream); }

/* Counter CTA */
.counter-cta-wrap {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--frost-border);
}
.counter-cta {
  display: block;
  width: 100%;
  padding: 0.85rem;
  background: transparent;
  border: 1px solid var(--gold-dim);
  border-radius: 2px;
  color: var(--gold);
  font-family: 'Jost', sans-serif;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none;
  transition: all 0.25s ease;
}
.counter-cta:hover { background: rgba(201,169,110,0.08); }

/* ─── Pricing CTA ───────────────────────────────────────── */
.pricing-cta-group {
  margin: 2rem 0 1.5rem;
  text-align: center;
}
.pricing-cta-btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  border: 1px solid var(--gold-dim);
  border-radius: 2px;
  color: var(--gold);
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.25s ease;
  background: transparent;
}
.pricing-cta-btn:hover { background: rgba(201,169,110,0.1); border-color: var(--gold); }
.pricing-cta-note {
  font-size: 0.7rem;
  color: var(--text-dimmer);
  margin-top: 0.75rem;
  letter-spacing: 0.06em;
}

/* ─── Footer links ──────────────────────────────────────── */
.footer-links {
  display: flex;
  gap: 1.5rem;
}
.footer-link {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dimmer);
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-link:hover { color: var(--gold); }

@media (max-width: 768px) {
  .nav-right { gap: 0.75rem; }
  .nav-cap { display: none; }
  .hero-ctas { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
  .footer-links { display: none; }
}
