:root {
  --bg-deep: #0a0f0a;
  --bg-card: #111a11;
  --bg-elevated: #1a2a1a;
  --fg: #e8e4dd;
  --fg-muted: #9a9588;
  --fg-dim: #5a574f;
  --accent: #c8a84e;
  --accent-glow: #d4b85e;
  --green-bright: #4a8a3a;
  --green-muted: #2a4a2a;
  --green-subtle: #1a2e1a;
  --border: #2a3a2a;
  --radius: 12px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg-deep);
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem 2rem 4rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(74,138,58,0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -10%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(200,168,78,0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-inner {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-tag {
  font-family: 'Syne', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 2rem;
  display: inline-block;
  padding: 0.4rem 1rem;
  border: 1px solid var(--accent);
  border-radius: 100px;
}

.hero h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 1.5rem;
}

.hero h1 em {
  font-style: normal;
  color: var(--accent);
}

.hero-sub {
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  color: var(--fg-muted);
  max-width: 600px;
  line-height: 1.8;
}

/* ─── STORY ─── */
.story {
  padding: 8rem 2rem;
  position: relative;
}

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

.story-visual {
  position: relative;
  height: 400px;
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(135deg, var(--green-subtle) 0%, var(--bg-card) 50%, var(--green-subtle) 100%);
  border: 1px solid var(--border);
}

.story-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 200px 300px at 30% 40%, rgba(74,138,58,0.3), transparent),
    radial-gradient(ellipse 150px 200px at 70% 60%, rgba(200,168,78,0.15), transparent);
}

.story-visual-text {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  right: 2rem;
  font-family: 'Syne', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fg-dim);
}

.story-content h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  color: var(--fg);
}

.story-content p {
  color: var(--fg-muted);
  font-size: 1.05rem;
  margin-bottom: 1rem;
}

.story-content p strong {
  color: var(--accent);
  font-weight: 500;
}

/* ─── FEATURES ─── */
.features {
  padding: 6rem 2rem 8rem;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.features-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.features-label {
  font-family: 'Syne', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green-bright);
  margin-bottom: 1rem;
}

.features h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 4rem;
  max-width: 500px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.feature-card {
  padding: 2rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.3s ease;
}

.feature-card:hover {
  border-color: var(--green-bright);
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: var(--green-subtle);
  border: 1px solid var(--green-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
}

.feature-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 0.75rem;
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* ─── TRANSPARENCY ─── */
.transparency {
  padding: 8rem 2rem;
  position: relative;
}

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

.transparency h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--fg);
}

.transparency p {
  font-size: 1.1rem;
  color: var(--fg-muted);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.stat-row {
  display: flex;
  justify-content: center;
  gap: 4rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
}

.stat-value {
  font-family: 'Syne', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--fg-dim);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 0.5rem;
}

/* ─── CLOSING ─── */
.closing {
  padding: 8rem 2rem;
  background: linear-gradient(180deg, var(--bg-deep) 0%, var(--green-subtle) 50%, var(--bg-deep) 100%);
  text-align: center;
}

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

.closing h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  color: var(--fg);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.closing h2 em {
  font-style: normal;
  color: var(--accent);
}

.closing p {
  font-size: 1.1rem;
  color: var(--fg-muted);
  line-height: 1.8;
}

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

.footer p {
  font-size: 0.8rem;
  color: var(--fg-dim);
  letter-spacing: 0.05em;
}

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

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  .hero { padding: 4rem 1.5rem 3rem; min-height: 80vh; }
  .story-inner { grid-template-columns: 1fr; gap: 2rem; }
  .story-visual { height: 250px; }
  .features-grid { grid-template-columns: 1fr; }
  .features { padding: 4rem 1.5rem; }
  .stat-row { gap: 2rem; }
  .story { padding: 5rem 1.5rem; }
  .transparency { padding: 5rem 1.5rem; }
  .closing { padding: 5rem 1.5rem; }
}