:root {
  --bg: #0c1222;
  --bg-surface: #111b30;
  --bg-card: #162038;
  --fg: #e8ecf4;
  --fg-muted: #8a95ad;
  --accent: #d4a853;
  --accent-glow: rgba(212, 168, 83, 0.15);
  --accent-light: #e8c97a;
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --radius: 16px;
  --max-width: 1120px;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 24px 80px;
  overflow: hidden;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  text-align: center;
}

.hero-badge {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent);
  border: 1.5px solid var(--accent);
  padding: 6px 20px;
  border-radius: 100px;
  margin-bottom: 40px;
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 28px;
}

.hero-accent {
  color: var(--accent);
  display: block;
}

.hero-lede {
  font-size: 1.15rem;
  color: var(--fg-muted);
  max-width: 640px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.tag {
  font-size: 13px;
  font-weight: 500;
  color: var(--accent-light);
  background: var(--accent-glow);
  padding: 6px 16px;
  border-radius: 100px;
  border: 1px solid rgba(212, 168, 83, 0.25);
}

.hero-glow {
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(212, 168, 83, 0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

/* ---- FEATURES ---- */
.features {
  padding: 100px 24px;
}

.features-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-label {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.features-header h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  line-height: 1.2;
  margin-bottom: 56px;
  max-width: 600px;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid rgba(138, 149, 173, 0.1);
  border-radius: var(--radius);
  padding: 40px 36px;
  transition: border-color 0.3s, transform 0.3s;
}

.feature-card:hover {
  border-color: rgba(212, 168, 83, 0.3);
  transform: translateY(-2px);
}

.feature-card-large {
  grid-column: span 2;
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(212, 168, 83, 0.06) 100%);
  border-color: rgba(212, 168, 83, 0.15);
}

.feature-icon {
  font-size: 28px;
  color: var(--accent);
  margin-bottom: 20px;
}

.feature-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 12px;
}

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

/* ---- METRICS ---- */
.metrics {
  padding: 100px 24px;
  background: var(--bg-surface);
}

.metrics-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

.metrics-text h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  line-height: 1.25;
  margin-bottom: 20px;
}

.metric-highlight {
  color: var(--accent);
}

.metrics-body {
  color: var(--fg-muted);
  font-size: 1rem;
  line-height: 1.7;
}

.metrics-numbers {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.metric-block {
  display: flex;
  flex-direction: column;
  padding: 24px 28px;
  background: var(--bg-card);
  border-radius: var(--radius);
  border-left: 3px solid var(--accent);
}

.metric-value {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2rem;
  color: var(--fg);
  line-height: 1.1;
  margin-bottom: 6px;
}

.metric-label {
  font-size: 0.85rem;
  color: var(--fg-muted);
}

/* ---- CLOSING ---- */
.closing {
  padding: 120px 24px;
  text-align: center;
}

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

.closing h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.15;
  margin-bottom: 24px;
  background: linear-gradient(135deg, var(--fg) 30%, var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

/* ---- FOOTER ---- */
.site-footer {
  padding: 32px 24px;
  border-top: 1px solid rgba(138, 149, 173, 0.1);
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.footer-brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  color: var(--fg-muted);
  letter-spacing: 1px;
}

.footer-divider {
  color: rgba(138, 149, 173, 0.3);
}

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

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .hero { min-height: 70vh; padding: 80px 20px 60px; }
  .features-grid { grid-template-columns: 1fr; }
  .feature-card-large { grid-column: span 1; }
  .metrics-inner { grid-template-columns: 1fr; gap: 40px; }
  .feature-card { padding: 28px 24px; }
  .metrics-numbers { flex-direction: row; flex-wrap: wrap; gap: 16px; }
  .metric-block { flex: 1; min-width: 140px; }
}