:root {
  --bg: #0d0d0f;
  --surface: #141418;
  --surface-2: #1c1c21;
  --border: #2a2a30;
  --fg: #f0efe9;
  --fg-muted: #8a8880;
  --accent: #e8a838;
  --accent-dim: rgba(232, 168, 56, 0.15);
  --accent-glow: rgba(232, 168, 56, 0.08);
  --red: #e85c4a;
  --green: #5cce8a;
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --radius: 4px;
}

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

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

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 80px 64px;
  gap: 80px;
  position: relative;
  overflow: hidden;
}

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

.hero-inner {
  flex: 1;
  max-width: 600px;
}

.hero-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
  font-family: var(--font-body);
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(42px, 5.5vw, 72px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 28px;
}

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

.hero-sub {
  font-size: 18px;
  line-height: 1.7;
  color: var(--fg-muted);
  max-width: 480px;
  margin-bottom: 40px;
  font-weight: 300;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 500;
  color: var(--fg-muted);
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 320px;
  flex-shrink: 0;
}

.visual-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  animation: slideIn 0.6s ease-out both;
}

.visual-card.accent-card {
  border-color: rgba(232, 168, 56, 0.3);
  background: var(--accent-dim);
}

.visual-card:nth-child(2) { animation-delay: 0.15s; }

@keyframes slideIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.card-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 12px;
}

.card-metric {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 800;
  color: var(--fg);
  line-height: 1;
  margin-bottom: 8px;
}

.card-sub {
  font-size: 13px;
  color: var(--fg-muted);
  margin-bottom: 16px;
}

.card-bar {
  height: 4px;
  background: var(--border);
  border-radius: 2px;
  margin-bottom: 10px;
}

.card-bar-fill {
  height: 100%;
  background: var(--accent);
  border-radius: 2px;
}

.card-meta {
  font-size: 12px;
  color: var(--fg-muted);
}

.card-action {
  font-size: 14px;
  line-height: 1.5;
  color: var(--fg);
  margin-bottom: 12px;
}

/* ── FEATURES ── */
.features {
  padding: 120px 64px;
  background: var(--surface);
  border-top: 1px solid var(--border);
}

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

.section-header {
  margin-bottom: 72px;
}

.section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--fg);
}

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

.feature-item {
  padding: 40px 40px 40px 0;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding-right: 40px;
  padding-bottom: 48px;
}

.feature-item:nth-child(3n) {
  border-right: none;
}

.feature-item:nth-last-child(-n+3) {
  border-bottom: none;
}

.feature-num {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 16px;
}

.feature-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 10px;
}

.feature-desc {
  font-size: 14px;
  line-height: 1.65;
  color: var(--fg-muted);
  font-weight: 300;
}

/* ── CLOSING ── */
.closing {
  padding: 120px 64px;
  background: var(--bg);
}

.closing-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 100px;
}

.closing-statement {
  flex: 1;
}

.closing-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}

.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 24px;
}

.closing-body {
  font-size: 16px;
  line-height: 1.75;
  color: var(--fg-muted);
  max-width: 480px;
  font-weight: 300;
}

.closing-aside {
  width: 340px;
  flex-shrink: 0;
}

.closing-quote {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 40px;
}

.quote-mark {
  font-family: var(--font-display);
  font-size: 72px;
  line-height: 1;
  color: var(--accent);
  margin-bottom: 16px;
  font-weight: 800;
}

.quote-text {
  font-size: 16px;
  line-height: 1.7;
  color: var(--fg);
  font-weight: 400;
}

/* ── FOOTER ── */
.footer {
  padding: 48px 64px;
  border-top: 1px solid var(--border);
  background: var(--bg);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.footer-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  color: var(--fg);
}

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

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

.footer-copy {
  font-size: 11px;
  color: var(--fg-muted);
  opacity: 0.6;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    padding: 80px 32px 60px;
    min-height: auto;
    gap: 48px;
  }

  .hero-visual {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .visual-card { flex: 1 1 280px; }

  .features { padding: 80px 32px; }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .feature-item {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: 32px 0;
  }

  .feature-item:last-child { border-bottom: none; }

  .closing { padding: 80px 32px; }

  .closing-inner {
    flex-direction: column;
    gap: 48px;
  }

  .closing-aside { width: 100%; }

  .footer { padding: 40px 32px; }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .hero { padding: 60px 24px 48px; }
  .features { padding: 60px 24px; }
  .closing { padding: 60px 24px; }
  .footer { padding: 32px 24px; }
  .visual-card.accent-card { display: none; }
}