:root {
  --bg: #0a0a0a;
  --fg: #f5f0e8;
  --accent: #ff6b35;
  --accent-light: #ff8c5a;
  --muted: #8a8578;
  --surface: #141410;
  --surface-border: #2a2820;
  --tag-bg: rgba(255, 107, 53, 0.12);
  --tag-fg: #ff8c5a;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Plus Jakarta Sans', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

.hero-tag {
  display: inline-block;
  background: var(--tag-bg);
  color: var(--tag-fg);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 32px;
}

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

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

.hero .lede {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--muted);
  max-width: 560px;
  line-height: 1.7;
}

/* Stats Bar */
.stats-bar {
  display: flex;
  gap: 0;
  margin-top: 64px;
  border-top: 1px solid var(--surface-border);
  max-width: 700px;
}

.stat {
  flex: 1;
  padding: 28px 0;
  border-right: 1px solid var(--surface-border);
}

.stat:last-child { border-right: none; }

.stat-number {
  font-family: 'Syne', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  display: block;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 4px;
  display: block;
}

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

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

.features-header h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.features-header p {
  color: var(--muted);
  font-size: 1.1rem;
  max-width: 500px;
}

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

.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: var(--accent);
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: var(--tag-bg);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 20px;
}

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

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

/* Advantage Section */
.advantage {
  padding: 80px 6vw 100px;
}

.advantage-inner {
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.06) 0%, rgba(255, 107, 53, 0.02) 100%);
  border: 1px solid rgba(255, 107, 53, 0.15);
  border-radius: 24px;
  padding: 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.advantage h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.advantage p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.advantage-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.advantage-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.advantage-list .check {
  width: 28px;
  height: 28px;
  min-width: 28px;
  background: var(--tag-bg);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-weight: 700;
  font-size: 0.9rem;
  margin-top: 2px;
}

.advantage-list h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.advantage-list p {
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Closing */
.closing {
  padding: 80px 6vw 100px;
  text-align: center;
}

.closing h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  max-width: 700px;
  margin: 0 auto 20px;
}

.closing h2 span {
  color: var(--accent);
}

.closing p {
  color: var(--muted);
  font-size: 1.1rem;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Footer */
footer {
  padding: 40px 6vw;
  border-top: 1px solid var(--surface-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

footer .brand {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
}

footer .meta {
  color: var(--muted);
  font-size: 0.85rem;
}

/* Mobile */
@media (max-width: 768px) {
  .hero { padding: 100px 24px 60px; min-height: auto; }
  .features { padding: 60px 24px; }
  .features-grid { grid-template-columns: 1fr; }
  .advantage { padding: 40px 24px 60px; }
  .advantage-inner { grid-template-columns: 1fr; padding: 36px 28px; }
  .closing { padding: 60px 24px 80px; }
  .stats-bar { flex-direction: column; }
  .stat { border-right: none; border-bottom: 1px solid var(--surface-border); padding: 16px 0; }
  .stat:last-child { border-bottom: none; }
  footer { flex-direction: column; gap: 12px; text-align: center; }
}