:root {
  --bg: #f3f7f4;
  --ink: #11211a;
  --muted: #4a6254;
  --surface: #ffffff;
  --accent: #00795f;
  --accent-strong: #005a47;
  --glow: #95e8cf;
  --line: #d7e7de;
  --radius-lg: 20px;
  --radius-md: 14px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
}

body {
  font-family: "Avenir Next", "Segoe UI", "Trebuchet MS", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 10%, #d7ffef 0, transparent 28%),
    radial-gradient(circle at 90% 0%, #e5f2ff 0, transparent 24%),
    linear-gradient(180deg, #f7fffb 0%, #eef4f1 100%);
}

.container {
  width: min(1080px, 92vw);
  margin: 0 auto;
}

.hero {
  padding: 18px 0 24px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand-dot {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: linear-gradient(140deg, var(--accent) 0%, #10c394 100%);
  box-shadow: 0 0 0 5px rgba(16, 195, 148, 0.16);
}

.hero-body {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 20px;
  align-items: stretch;
  margin-top: 18px;
}

.hero-copy,
.hero-panel {
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(6px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
}

.eyebrow {
  color: var(--accent-strong);
  font-weight: 700;
  margin: 0 0 8px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 12px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-size: clamp(30px, 5.8vw, 56px);
  line-height: 1.05;
  margin-bottom: 12px;
}

.hero-text {
  color: var(--muted);
  max-width: 52ch;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.cta-btn,
.ghost-btn {
  border: 0;
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.cta-btn {
  background: linear-gradient(140deg, var(--accent) 0%, #0ab486 100%);
  color: white;
  box-shadow: 0 10px 24px rgba(0, 121, 95, 0.28);
}

.ghost-btn {
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--ink);
}

.cta-btn:hover,
.ghost-btn:hover {
  transform: translateY(-1px);
}

.hero-note {
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
}

.panel-title {
  font-weight: 700;
  margin-bottom: 12px;
}

.status-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.status-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--line);
  padding-bottom: 8px;
}

.pill {
  border-radius: 999px;
  font-size: 12px;
  padding: 4px 10px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.pill.stable {
  color: #074b3b;
  background: #c5f4e3;
}

.pill.busy {
  color: #7a4e00;
  background: #ffe7bf;
}

.speed-box {
  margin-top: 14px;
  border-radius: var(--radius-md);
  padding: 14px;
  background: #effaf5;
}

.speed-box p {
  color: var(--muted);
  margin-bottom: 4px;
}

.speed-box strong {
  font-size: 26px;
}

.section {
  padding: 44px 0;
}

.section h2 {
  font-size: clamp(24px, 4.6vw, 36px);
  margin-bottom: 10px;
}

.section-lead {
  color: var(--muted);
  max-width: 65ch;
}

.feature-grid {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.feature-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 18px;
}

.feature-card h3 {
  margin-bottom: 8px;
}

.feature-card p {
  color: var(--muted);
  margin: 0;
}

.section-alt {
  background: linear-gradient(180deg, #eefaf4 0%, #f8fffc 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.review-wrap {
  display: grid;
  gap: 14px;
}

.review-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 20px;
}

.review-quote {
  font-size: clamp(18px, 3.8vw, 24px);
  line-height: 1.4;
}

.review-name {
  color: var(--muted);
}

.review-actions {
  display: flex;
  gap: 10px;
}

.news-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.news-item {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 18px;
}

.news-date {
  font-size: 12px;
  text-transform: uppercase;
  color: var(--accent-strong);
  font-weight: 700;
  letter-spacing: 0.04em;
}

.metrics-grid,
.plans-grid,
.steps-grid {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.metric-card,
.plan-card,
.step-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 18px;
}

.metric-card strong {
  display: block;
  font-size: clamp(22px, 4.2vw, 34px);
  margin-bottom: 4px;
}

.metric-card p,
.step-card p {
  margin: 0;
  color: var(--muted);
}

.plans-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.plan-tag {
  display: inline-block;
  margin-bottom: 10px;
  border-radius: 999px;
  background: #e3f8ef;
  color: #06664f;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 5px 10px;
  font-weight: 700;
}

.plan-price {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
}

.plan-points {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  display: grid;
  gap: 8px;
}

.steps-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.step-index {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--accent-strong);
  font-weight: 700;
}

.faq-list {
  margin-top: 16px;
  display: grid;
  gap: 10px;
}

.faq-item {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 14px 16px;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 700;
}

.faq-item p {
  color: var(--muted);
  margin: 10px 0 0;
}

.footer {
  padding: 46px 0 56px;
  background: #081a14;
  color: #ddf5eb;
}

.footer-inner {
  text-align: center;
}

.footer p {
  color: #b8ddd0;
}

.footer .cta-row {
  justify-content: center;
}

.footer small {
  display: block;
  margin-top: 20px;
  color: #99bdb0;
}

.footer-note {
  margin-top: 16px;
  font-size: 14px;
}

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

.hero-copy,
.hero-panel,
.feature-card,
.review-card,
.news-item,
.metric-card,
.plan-card,
.step-card,
.faq-item {
  animation: riseIn 520ms ease both;
}

@media (max-width: 960px) {
  .hero-body {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .news-list {
    grid-template-columns: 1fr 1fr;
  }

  .metrics-grid,
  .plans-grid,
  .steps-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 620px) {
  .hero {
    padding-top: 10px;
  }

  .hero-copy,
  .hero-panel {
    padding: 18px;
  }

  .cta-btn,
  .ghost-btn {
    width: 100%;
  }

  .feature-grid,
  .news-list,
  .metrics-grid,
  .plans-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 34px 0;
  }
}
