:root {
  --bg: #0a0a0f;
  --fg: #f0eee6;
  --fg-muted: #9b978e;
  --accent: #ff6b35;
  --accent-glow: rgba(255, 107, 53, 0.15);
  --surface: #14141c;
  --surface-border: rgba(255, 255, 255, 0.06);
  --gradient-warm: linear-gradient(135deg, #ff6b35 0%, #f7c948 100%);
}

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

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

/* ---- HERO ---- */
.hero {
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 6vw 60px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -20%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  pointer-events: none;
}

.hero-label {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
}

.hero h1 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(2.4rem, 5.5vw, 4.5rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  max-width: 800px;
  margin-bottom: 28px;
}

.highlight {
  background: var(--gradient-warm);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.lede {
  font-size: 1.15rem;
  color: var(--fg-muted);
  max-width: 560px;
  line-height: 1.7;
}

.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid var(--surface-border);
}

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

.stat-value {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 2rem;
  background: var(--gradient-warm);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--fg-muted);
  letter-spacing: 0.02em;
}

/* ---- SECTION TAGS ---- */
.section-tag {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 20px;
}

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

.features-header {
  margin-bottom: 64px;
}

.features-header h2 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  letter-spacing: -0.02em;
  max-width: 600px;
}

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

.feature-card {
  background: var(--surface);
  border: 1px solid var(--surface-border);
  border-radius: 16px;
  padding: 40px 36px;
  transition: border-color 0.3s;
}

.feature-card:hover {
  border-color: rgba(255, 107, 53, 0.25);
}

.feature-large {
  grid-column: span 2;
  background: linear-gradient(160deg, var(--surface) 0%, rgba(255, 107, 53, 0.04) 100%);
}

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

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

.feature-card p {
  color: var(--fg-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 440px;
}

/* ---- MARKET ---- */
.market {
  padding: 100px 6vw;
  background: linear-gradient(180deg, transparent 0%, rgba(255, 107, 53, 0.03) 50%, transparent 100%);
}

.market-inner { max-width: 800px; }

.market h2 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  letter-spacing: -0.02em;
  line-height: 1.3;
  margin-bottom: 56px;
}

.market h2 em {
  font-style: italic;
  color: var(--accent);
}

.market-points {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.market-point {
  display: flex;
  gap: 28px;
  align-items: flex-start;
}

.point-number {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--accent);
  opacity: 0.6;
  flex-shrink: 0;
  padding-top: 2px;
}

.point-text h4 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.point-text p {
  color: var(--fg-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

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

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

.closing h2 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(1.8rem, 4vw, 3rem);
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 24px;
}

.closing-text {
  color: var(--fg-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

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

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

.footer-brand {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

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

.footer-powered a {
  color: var(--accent);
  text-decoration: none;
}

.footer-powered a:hover { text-decoration: underline; }

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .hero { min-height: auto; padding: 60px 5vw 40px; }
  .hero-stats { flex-direction: column; gap: 24px; }
  .features-grid { grid-template-columns: 1fr; }
  .feature-large { grid-column: span 1; }
  .market-point { flex-direction: column; gap: 8px; }
  .closing { padding: 80px 5vw; }
  .footer-inner { flex-direction: column; gap: 12px; text-align: center; }
}