:root {
  --bg: #FAF7F2;
  --bg-alt: #F0EDE7;
  --fg: #2D2A26;
  --fg-muted: #6B6560;
  --accent: #E8614D;
  --accent-light: rgba(232, 97, 77, 0.1);
  --teal: #2A9D8F;
  --teal-light: rgba(42, 157, 143, 0.08);
  --radius: 16px;
  --radius-sm: 10px;
}

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

html { scroll-behavior: smooth; }

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

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ===== NAV ===== */
.nav {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: var(--fg);
  letter-spacing: -0.5px;
}

.nav-logo span {
  color: var(--accent);
}

.nav-tag {
  font-size: 13px;
  color: var(--fg-muted);
  background: var(--accent-light);
  padding: 6px 14px;
  border-radius: 20px;
  font-weight: 500;
}

/* ===== HERO ===== */
.hero {
  padding: 80px 0 100px;
  text-align: left;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero h1 {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: clamp(2.8rem, 5vw, 4rem);
  line-height: 1.08;
  letter-spacing: -2px;
  color: var(--fg);
  margin-bottom: 24px;
}

.hero h1 em {
  font-style: normal;
  color: var(--accent);
}

.hero-sub {
  font-size: 19px;
  color: var(--fg-muted);
  max-width: 460px;
  line-height: 1.6;
}

.hero-visual {
  background: linear-gradient(145deg, var(--teal-light), var(--accent-light));
  border-radius: var(--radius);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
}

.hero-visual::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
  opacity: 0.08;
}

.status-card {
  background: white;
  border-radius: var(--radius-sm);
  padding: 18px 22px;
  margin-bottom: 14px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  font-weight: 500;
}

.status-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.status-icon.green { background: rgba(42, 157, 143, 0.12); }
.status-icon.orange { background: rgba(232, 97, 77, 0.12); }
.status-icon.blue { background: rgba(59, 130, 246, 0.12); }

.status-label { color: var(--fg-muted); font-weight: 400; }
.status-value { margin-left: auto; font-weight: 600; color: var(--fg); font-size: 14px; }

/* ===== SECTION ===== */
.section {
  padding: 90px 0;
}

.section-alt {
  background: var(--bg-alt);
}

.section-label {
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 14px;
}

.section-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 20px;
}

.section-desc {
  font-size: 17px;
  color: var(--fg-muted);
  max-width: 560px;
  line-height: 1.7;
}

/* ===== COVERAGE GRID ===== */
.coverage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 50px;
}

.coverage-card {
  background: white;
  border-radius: var(--radius);
  padding: 32px 28px;
  border: 1px solid rgba(0,0,0,0.04);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.coverage-card:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
  transform: translateY(-2px);
}

.coverage-emoji {
  font-size: 32px;
  margin-bottom: 16px;
  display: block;
}

.coverage-card h3 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 8px;
  letter-spacing: -0.3px;
}

.coverage-card p {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* ===== HOW IT WORKS ===== */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 50px;
}

.step {
  position: relative;
}

.step-num {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 48px;
  color: var(--accent);
  opacity: 0.15;
  line-height: 1;
  margin-bottom: 12px;
}

.step h3 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 8px;
  letter-spacing: -0.3px;
}

.step p {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* ===== CLOSING ===== */
.closing {
  text-align: center;
  padding: 100px 0;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 100%);
}

.closing-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
}

.closing-title em {
  font-style: normal;
  color: var(--accent);
}

.closing-sub {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ===== FOOTER ===== */
footer {
  padding: 40px 0;
  border-top: 1px solid rgba(0,0,0,0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: var(--fg-muted);
}

footer .foot-logo {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  color: var(--fg);
  font-size: 17px;
}

footer .foot-logo span {
  color: var(--accent);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero { padding: 50px 0 70px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero { text-align: center; }
  .hero-sub { margin: 0 auto; }
  .coverage-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; gap: 30px; }
  .section { padding: 60px 0; }
  footer { flex-direction: column; gap: 12px; text-align: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 20px; }
  .hero h1 { font-size: 2.2rem; letter-spacing: -1px; }
  .hero-visual { padding: 28px 20px; }
}