/* === COLORS === */
:root {
  --bg: #0B0B0F;
  --bg-alt: #101015;
  --fg: #EEEEEB;
  --fg-dim: rgba(238, 238, 235, 0.55);
  --accent: #FF3B00;
  --accent-dim: rgba(255, 59, 0, 0.12);
  --border: rgba(238, 238, 235, 0.08);
  --radius: 10px;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', system-ui, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 { font-family: 'Syne', sans-serif; line-height: 1.15; }
a { color: inherit; text-decoration: none; }

/* === HEADER === */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 48px;
  border-bottom: 1px solid var(--border);
}
.logo {
  font-family: 'Syne', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.tagline {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-dim);
}

/* === HERO === */
.hero {
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  padding: 80px 48px;
  position: relative;
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
.hero-label {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.hero-headline {
  font-size: clamp(3.2rem, 6vw, 5.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
}
.hero-headline br { display: block; }
.hero-right { display: flex; flex-direction: column; gap: 28px; }
.hero-desc {
  font-size: 1.05rem;
  color: var(--fg-dim);
  max-width: 420px;
  line-height: 1.7;
}
.hero-stats {
  display: flex;
  gap: 32px;
}
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat-number {
  font-family: 'Syne', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--accent);
}
.stat-label {
  font-size: 0.72rem;
  color: var(--fg-dim);
  letter-spacing: 0.04em;
}
.hero-bg-text {
  position: absolute;
  bottom: -60px;
  right: -20px;
  font-family: 'Syne', sans-serif;
  font-size: 20vw;
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 1px rgba(238, 238, 235, 0.04);
  letter-spacing: -0.05em;
  pointer-events: none;
  user-select: none;
  line-height: 1;
}

/* === FEATURES === */
.features { padding: 100px 48px; background: var(--bg-alt); }
.features-inner { max-width: 1200px; margin: 0 auto; }
.section-label {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fg-dim);
  margin-bottom: 48px;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.feature-card {
  padding: 40px 36px;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: background 0.2s;
}
.feature-card:hover { background: #141419; }
.feature-icon { color: var(--accent); }
.feature-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.feature-card p {
  font-size: 0.9rem;
  color: var(--fg-dim);
  line-height: 1.65;
}
.features-bottom { margin-top: 64px; }
.compare-block {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 48px;
  padding: 40px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.compare-left, .compare-right { display: flex; flex-direction: column; gap: 12px; }
.compare-label {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-dim);
  margin-bottom: 4px;
}
.compare-label.highlight { color: var(--accent); }
.compare-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.compare-list li {
  font-size: 0.9rem;
  color: var(--fg-dim);
  padding-left: 16px;
  position: relative;
}
.compare-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
}
.compare-divider { background: var(--border); }

/* === CLOSING === */
.closing { padding: 120px 48px; }
.closing-inner { max-width: 900px; margin: 0 auto; text-align: center; }
.closing-badge {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--accent-dim);
  background: var(--accent-dim);
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 36px;
}
.closing-headline {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-bottom: 24px;
  line-height: 1.2;
}
.closing-sub {
  font-size: 1.05rem;
  color: var(--fg-dim);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* === FOOTER === */
.site-footer { border-top: 1px solid var(--border); padding: 32px 48px; }
.footer-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; }
.footer-brand { display: flex; flex-direction: column; gap: 2px; }
.footer-logo { font-family: 'Syne', sans-serif; font-size: 0.9rem; font-weight: 700; }
.footer-tagline { font-size: 0.72rem; color: var(--fg-dim); }
.footer-note { font-size: 0.78rem; color: var(--fg-dim); }

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .site-header { padding: 20px 24px; }
  .hero { padding: 60px 24px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-headline { font-size: 3rem; }
  .hero-bg-text { display: none; }
  .features { padding: 60px 24px; }
  .features-grid { grid-template-columns: 1fr; }
  .compare-block { grid-template-columns: 1fr; gap: 24px; padding: 24px; }
  .compare-divider { height: 1px; width: 100%; }
  .closing { padding: 80px 24px; }
  .site-footer { padding: 24px; }
  .footer-inner { flex-direction: column; gap: 12px; text-align: center; }
}
@media (max-width: 480px) {
  .hero-stats { flex-direction: column; gap: 16px; }
}