@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=Cabinet+Grotesk:wght@300;400;500;700;800&display=swap');

/* ─── DESIGN TOKENS ─────────────────────────────────────────── */
:root {
  /* Backgrounds */
  --bg-dark:    #070709;
  --bg-surface: #0e0e14;
  --bg-card:    #13131c;
  --bg-glass:   rgba(19, 19, 28, 0.6);

  /* Gold palette */
  --gold:       #c9963a;
  --gold-light: #f0c76a;
  --gold-bright:#ffd96a;
  --gold-dim:   #7a5c1e;
  --gold-glow:  rgba(201, 150, 58, 0.18);
  --gold-glow-sm: rgba(201, 150, 58, 0.08);

  /* Borders */
  --border:       rgba(255, 255, 255, 0.07);
  --border-hover: rgba(201, 150, 58, 0.35);

  /* Typography */
  --text-primary:   #ede8e0;
  --text-secondary: #8e8b97;
  --text-muted:     #4d4b57;

  /* Status */
  --green:  #3ecf8e;
  --yellow: #f5c842;
  --red:    #f5665a;

  /* Transitions */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg-dark);
  color: var(--text-primary);
  font-family: 'Cabinet Grotesk', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  /* Subtle noise texture for depth */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.025'/%3E%3C/svg%3E");
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ─── SCROLL REVEAL ──────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ─── LANDING NAV ────────────────────────────────────────────── */
.landing-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  height: 58px;
  background: rgba(7, 7, 9, 0.72);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border-bottom: 1px solid var(--border);
}

.landing-nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text-primary);
}

.landing-nav-brand .brand-icon {
  color: var(--gold);
  font-size: 1.2rem;
  line-height: 1;
  filter: drop-shadow(0 0 8px var(--gold-glow));
}

.landing-nav-brand .brand-text {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: -0.01em;
}

.landing-nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  background: transparent;
  border: 1px solid var(--border-hover);
  border-radius: 6px;
  color: var(--gold);
  text-decoration: none;
  font-family: 'Syne', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: background 0.2s, border-color 0.2s, box-shadow 0.2s, color 0.2s;
}

.landing-nav-cta:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #070709;
  box-shadow: 0 0 20px var(--gold-glow);
}

/* ─── HERO ───────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  padding: 130px 0 90px;
  overflow: hidden;
}

/* Atmospheric background orbs */
.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -15%;
  width: 70vw;
  height: 70vw;
  max-width: 900px;
  max-height: 900px;
  background: radial-gradient(ellipse at center, var(--gold-glow) 0%, transparent 65%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -10%;
  left: -20%;
  width: 60vw;
  height: 60vw;
  max-width: 700px;
  max-height: 700px;
  background: radial-gradient(ellipse at center, rgba(80, 40, 120, 0.1) 0%, transparent 65%);
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 5px 15px 5px 7px;
  border: 1px solid rgba(201, 150, 58, 0.25);
  border-radius: 100px;
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 44px;
  width: fit-content;
  background: rgba(201, 150, 58, 0.06);
}

.hero-badge-dot {
  width: 18px;
  height: 18px;
  background: rgba(201, 150, 58, 0.15);
  border: 1px solid rgba(201, 150, 58, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-badge-dot::after {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse-dot 2s ease infinite;
}

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

.hero h1 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(3.2rem, 7.5vw, 6rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  max-width: 820px;
  margin-bottom: 30px;
}

.hero h1 .gold {
  color: var(--gold);
  text-shadow: 0 0 60px rgba(201, 150, 58, 0.3);
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-secondary);
  max-width: 520px;
  line-height: 1.75;
  font-weight: 400;
}

/* ─── HERO CTA ───────────────────────────────────────────────── */
.hero-actions {
  margin-top: 48px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.hero-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--gold);
  color: #070709;
  border-radius: 7px;
  text-decoration: none;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: -0.01em;
  transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
  position: relative;
  overflow: hidden;
}

.hero-btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.12) 0%, transparent 60%);
}

.hero-btn-primary:hover {
  background: var(--gold-light);
  box-shadow: 0 4px 32px rgba(201, 150, 58, 0.4);
  transform: translateY(-1px);
}

.hero-btn-primary:active { transform: scale(0.98); }

/* ─── STATS BAR ──────────────────────────────────────────────── */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  margin: 90px auto;
  max-width: 680px;
}

.stat {
  background: var(--bg-surface);
  padding: 32px;
  text-align: center;
  position: relative;
  transition: background 0.2s;
}

.stat:hover { background: var(--bg-card); }

.stat-num {
  font-family: 'Syne', sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  display: block;
}

.stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: block;
}

/* ─── SECTION LABELS ─────────────────────────────────────────── */
.section-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-label::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--gold-dim);
}

.section-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 64px;
  max-width: 580px;
}

/* ─── PROBLEM SECTION ────────────────────────────────────────── */
.problem {
  padding: 110px 0;
  border-top: 1px solid var(--border);
}

.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.problem-left h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 22px;
}

.problem-left h2 .gold { color: var(--gold); }

.problem-left p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.8;
}

.pain-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pain-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 20px;
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.55;
  backdrop-filter: blur(8px);
  transition: border-color 0.2s, background 0.2s;
}

.pain-list li:hover {
  border-color: var(--border-hover);
  background: rgba(201, 150, 58, 0.04);
}

.pain-icon {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 150, 58, 0.1);
  border-radius: 7px;
  color: var(--gold);
  font-size: 13px;
}

/* ─── MODULES SECTION ────────────────────────────────────────── */
.modules {
  padding: 110px 0;
  border-top: 1px solid var(--border);
}

.module-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.module-card {
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 32px 26px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: border-color 0.25s, background 0.25s, transform 0.25s var(--ease), box-shadow 0.25s;
  cursor: default;
}

.module-card:hover {
  border-color: var(--border-hover);
  background: rgba(201, 150, 58, 0.05);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4), 0 0 0 1px rgba(201, 150, 58, 0.12);
}

.module-card-icon {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 150, 58, 0.08);
  border: 1px solid rgba(201, 150, 58, 0.2);
  border-radius: 10px;
  margin-bottom: 20px;
  font-size: 17px;
  transition: background 0.2s, border-color 0.2s;
}

.module-card:hover .module-card-icon {
  background: rgba(201, 150, 58, 0.15);
  border-color: rgba(201, 150, 58, 0.4);
}

.module-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.module-card p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ─── PULSE SECTION ──────────────────────────────────────────── */
.pulse {
  padding: 110px 0;
  border-top: 1px solid var(--border);
}

.pulse-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.pulse-visual {
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.pulse-meter {
  display: flex;
  align-items: center;
  gap: 14px;
}

.pulse-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.pulse-dot.green  { background: var(--green);  box-shadow: 0 0 10px rgba(62, 207, 142, 0.5); }
.pulse-dot.yellow { background: var(--yellow); box-shadow: 0 0 10px rgba(245, 200, 66, 0.5); }
.pulse-dot.red    { background: var(--red);    box-shadow: 0 0 10px rgba(245, 102, 90, 0.5); }

.pulse-meter-label {
  font-size: 0.88rem;
  color: var(--text-primary);
  width: 120px;
  flex-shrink: 0;
}

.pulse-meter-bar {
  flex: 1;
  height: 5px;
  background: rgba(255,255,255,0.05);
  border-radius: 3px;
  overflow: hidden;
}

.pulse-meter-fill {
  height: 100%;
  border-radius: 3px;
  transition: width 1.2s var(--ease);
}

.pulse-meter-fill.green  { background: var(--green);  width: 85%; }
.pulse-meter-fill.yellow { background: var(--yellow); width: 55%; }
.pulse-meter-fill.red    { background: var(--red);    width: 28%; }

.pulse-info h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 4vw, 2.9rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 20px;
}

.pulse-info h2 .gold { color: var(--gold); }

.pulse-info p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 14px;
}

/* ─── CLOSING ────────────────────────────────────────────────── */
.closing {
  padding: 130px 0 90px;
  border-top: 1px solid var(--border);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.closing::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
  width: 600px;
  height: 600px;
  background: radial-gradient(ellipse, var(--gold-glow-sm) 0%, transparent 70%);
  pointer-events: none;
}

.closing h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.5rem, 5.5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.035em;
  margin-bottom: 22px;
}

.closing h2 .gold {
  color: var(--gold);
  text-shadow: 0 0 50px rgba(201, 150, 58, 0.25);
}

.closing p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  max-width: 520px;
  margin: 0 auto 44px;
  line-height: 1.75;
}

/* ─── FOOTER ─────────────────────────────────────────────────── */
.footer {
  padding: 36px 0;
  border-top: 1px solid var(--border);
  text-align: center;
}

.footer p {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.footer-brand {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  color: var(--gold-dim);
}

/* ─── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 768px) {
  .stats-bar       { grid-template-columns: 1fr; }
  .problem-grid    { grid-template-columns: 1fr; gap: 44px; }
  .module-grid     { grid-template-columns: 1fr; }
  .pulse-layout    { grid-template-columns: 1fr; }
  .hero            { padding: 88px 0 60px; min-height: auto; }
  .container       { padding: 0 20px; }
  .hero h1         { letter-spacing: -0.03em; }
}
