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

:root {
  --bg-primary: #0a0a0a;
  --bg-secondary: #111111;
  --bg-tertiary: #1a1a1a;
  --fg-primary: #ffffff;
  --fg-secondary: #a0a0a0;
  --fg-muted: #666666;
  --gold: #c9a84c;
  --gold-light: #e8d48b;
  --gold-dark: #a07d2e;
  --accent-glow: rgba(201, 168, 76, 0.15);
  --border: rgba(255,255,255,0.06);
  --radius: 16px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg-primary);
  color: var(--fg-primary);
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ---- NAV ---- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  color: var(--fg-primary);
  text-decoration: none;
}

.nav-logo span {
  color: var(--gold);
}

.nav-tag {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.3);
  padding: 4px 12px;
  border-radius: 100px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

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

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dark), transparent);
}

.hero-inner {
  max-width: 900px;
}

.hero-eyebrow {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-eyebrow::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.hero h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
}

.hero h1 .gold {
  color: var(--gold);
}

.hero-sub {
  font-size: 1.25rem;
  color: var(--fg-secondary);
  max-width: 560px;
  line-height: 1.7;
  font-weight: 300;
}

/* ---- STATS BAR ---- */
.stats-bar {
  display: flex;
  gap: 0;
  padding: 0 40px;
  border-bottom: 1px solid var(--border);
}

.stat-item {
  flex: 1;
  padding: 48px 32px;
  border-right: 1px solid var(--border);
  text-align: center;
}

.stat-item:last-child {
  border-right: none;
}

.stat-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}

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

/* ---- PRODUCTS ---- */
.products {
  padding: 120px 40px;
  position: relative;
}

.products::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 80px;
  background: linear-gradient(to bottom, var(--gold-dark), transparent);
}

.section-header {
  max-width: 600px;
  margin-bottom: 80px;
}

.section-eyebrow {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-header h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-header p {
  color: var(--fg-secondary);
  font-size: 1.05rem;
  font-weight: 300;
}

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

.product-card {
  background: var(--bg-secondary);
  padding: 48px 36px;
  position: relative;
  transition: background 0.3s ease;
}

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

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-dark), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.product-card:hover::before {
  opacity: 1;
}

.product-icon {
  font-size: 2rem;
  margin-bottom: 20px;
  display: block;
}

.product-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.product-card p {
  font-size: 0.95rem;
  color: var(--fg-secondary);
  font-weight: 300;
  line-height: 1.6;
}

.product-price {
  display: inline-block;
  margin-top: 16px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  color: var(--gold);
  font-size: 0.9rem;
}

/* ---- PHILOSOPHY ---- */
.philosophy {
  padding: 120px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.philosophy-text h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 24px;
}

.philosophy-text p {
  color: var(--fg-secondary);
  font-size: 1.05rem;
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 20px;
}

.philosophy-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.philosophy-points li {
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.philosophy-points li:first-child {
  border-top: 1px solid var(--border);
}

.point-number {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  color: var(--gold);
  font-size: 0.85rem;
  min-width: 28px;
}

.point-text {
  font-size: 1rem;
  color: var(--fg-secondary);
  font-weight: 400;
}

.point-text strong {
  color: var(--fg-primary);
}

/* ---- AUDIENCE ---- */
.audience {
  padding: 120px 40px;
  text-align: center;
}

.audience h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.audience > p {
  color: var(--fg-secondary);
  font-size: 1.05rem;
  font-weight: 300;
  max-width: 500px;
  margin: 0 auto 64px;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.audience-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 20px;
  transition: border-color 0.3s;
}

.audience-card:hover {
  border-color: rgba(201,168,76,0.3);
}

.audience-emoji {
  font-size: 2rem;
  margin-bottom: 12px;
  display: block;
}

.audience-card h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.audience-card p {
  font-size: 0.8rem;
  color: var(--fg-muted);
  font-weight: 400;
}

/* ---- CLOSING ---- */
.closing {
  padding: 140px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.closing::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201,168,76,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.closing h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 24px;
  position: relative;
}

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

.closing p {
  color: var(--fg-secondary);
  font-size: 1.15rem;
  font-weight: 300;
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.7;
  position: relative;
}

/* ---- FOOTER ---- */
.footer {
  padding: 40px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-logo {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--fg-primary);
}

.footer-logo span {
  color: var(--gold);
}

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

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .nav { padding: 16px 20px; }
  .hero { padding: 120px 20px 80px; }
  .stats-bar { flex-direction: column; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--border); padding: 32px 20px; }
  .stat-item:last-child { border-bottom: none; }
  .products { padding: 80px 20px; }
  .product-grid { grid-template-columns: 1fr; gap: 2px; }
  .philosophy { grid-template-columns: 1fr; gap: 48px; padding: 80px 20px; }
  .audience { padding: 80px 20px; }
  .audience-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .closing { padding: 100px 20px; }
  .footer { padding: 24px 20px; flex-direction: column; gap: 12px; text-align: center; }
}