:root {
  --bg: #0E0E11;
  --fg: #F5F0E8;
  --accent: #FFB830;
  --accent-dim: rgba(255, 184, 48, 0.12);
  --lavender: #C8A8E9;
  --lavender-dim: rgba(200, 168, 233, 0.10);
  --muted: rgba(245, 240, 232, 0.45);
  --surface: #161619;
  --border: rgba(245, 240, 232, 0.07);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* HERO */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 80px 8vw;
  position: relative;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  top: -20%;
  left: -10%;
  width: 70vw;
  height: 70vw;
  background: radial-gradient(circle, rgba(255,184,48,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content { position: relative; z-index: 2; }

.hero-badge {
  display: inline-block;
  background: var(--accent-dim);
  color: var(--accent);
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  border: 1px solid rgba(255,184,48,0.25);
  margin-bottom: 32px;
}

.hero-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 28px;
}

.hero-sub {
  font-size: 18px;
  color: var(--muted);
  max-width: 480px;
  line-height: 1.7;
}

.hero-visual {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  position: relative;
  z-index: 2;
}

.glow-orb {
  position: absolute;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(255,184,48,0.15) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse 4s ease-in-out infinite;
}

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

.product-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px;
  width: 320px;
  position: relative;
  overflow: hidden;
}

.card-glow {
  position: absolute;
  top: -40px;
  right: -40px;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(255,184,48,0.12) 0%, transparent 70%);
  border-radius: 50%;
}

.card-stat {
  padding: 16px 0;
}

.stat-num {
  display: block;
  font-family: 'Syne', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 13px;
  color: var(--muted);
}

.card-divider {
  height: 1px;
  background: var(--border);
}

/* MANIFESTO */
.manifesto {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 8vw;
}

.manifesto-inner { max-width: 860px; }

.manifesto-text {
  font-size: clamp(20px, 2.5vw, 28px);
  line-height: 1.55;
  color: var(--fg);
  font-weight: 300;
  font-style: italic;
}

.manifesto-rule {
  width: 60px;
  height: 2px;
  background: var(--accent);
  margin: 48px 0;
}

.manifesto-tag {
  font-family: 'Syne', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* PILLARS */
.pillars {
  padding: 100px 8vw;
}

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

.pillar {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 44px 36px;
  position: relative;
  transition: border-color 0.3s ease;
}

.pillar:hover { border-color: rgba(255,184,48,0.25); }

.pillar-icon {
  margin-bottom: 28px;
}

.pillar h3 {
  font-family: 'Syne', sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--fg);
}

.pillar p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
}

/* CLOSING */
.closing {
  padding: 120px 8vw;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.closing-glow {
  position: absolute;
  bottom: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 80vw;
  height: 60vh;
  background: radial-gradient(ellipse, rgba(200,168,233,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.closing-inner { position: relative; z-index: 2; max-width: 700px; margin: 0 auto; }

.closing h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
  color: var(--fg);
}

.closing p {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 48px;
}

.closing-tag {
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.25);
}

/* FOOTER */
footer {
  border-top: 1px solid var(--border);
  padding: 40px 8vw;
}

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

.footer-brand { display: flex; flex-direction: column; gap: 4px; }

.footer-logo {
  font-family: 'Syne', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--accent);
}

.footer-tagline { font-size: 13px; color: var(--muted); }

.footer-copy { font-size: 13px; color: rgba(245,240,232,0.2); }

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 60px 6vw;
    min-height: auto;
    padding-top: 100px;
    padding-bottom: 60px;
    gap: 48px;
  }

  .hero-visual { justify-content: flex-start; }

  .glow-orb { width: 180px; height: 180px; }

  .product-card { width: 100%; }

  .pillars { padding: 60px 6vw; }

  .pillars-grid { grid-template-columns: 1fr; gap: 16px; }

  .manifesto { padding: 60px 6vw; }

  .closing { padding: 80px 6vw; }

  .footer-inner { flex-direction: column; gap: 16px; text-align: center; }

  .hero-headline { font-size: 42px; }
}