:root {
  --ink: #041a22;
  --muted: #5a7178;
  --teal: #12a896;
  --teal-dark: #0a7d72;
  --sea: #0d4f58;
  --white: #ffffff;
  --mist: #eef5f5;
  --line: #c5d8da;
  --warn: #c48a1a;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "DM Sans", system-ui, sans-serif;
  --radius: 18px;
  --shadow: 0 24px 60px rgba(4, 26, 34, 0.12);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.55;
}

a { color: inherit; text-decoration: none; }

.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
.container.narrow { max-width: 720px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 28px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
}

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

.site-header nav {
  display: flex;
  gap: 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
}

.site-header nav a:hover { color: var(--ink); }

.header-cta { display: flex; gap: 10px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 14px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
}

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

.btn.primary {
  background: linear-gradient(135deg, #0fb39f, var(--teal-dark));
  color: var(--white);
  box-shadow: 0 8px 24px rgba(18, 168, 150, 0.35);
}

.btn.ghost {
  background: var(--white);
  border-color: var(--line);
  color: var(--ink);
}

.btn.large { padding: 14px 24px; font-size: 15px; }
.btn.full { width: 100%; margin-top: 10px; }

.hero {
  background:
    radial-gradient(ellipse 70% 60% at 20% 0%, rgba(18, 168, 150, 0.2), transparent 55%),
    linear-gradient(165deg, #041a22 0%, #0a3540 50%, #0d4f58 100%);
  color: #e8f4f4;
  padding: 80px 24px 100px;
}

.hero-inner { max-width: 800px; margin: 0 auto; text-align: center; }

.eyebrow {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #5ee0cc;
  margin: 0 0 16px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.5rem);
  line-height: 1.08;
  margin: 0 0 20px;
  color: var(--white);
}

.lead {
  font-size: 1.2rem;
  color: rgba(232, 244, 244, 0.88);
  margin: 0 0 32px;
  line-height: 1.6;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 32px;
}

.hero-stats div {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 16px;
}

.hero-stats strong {
  display: block;
  font-size: 1.5rem;
  color: var(--white);
  font-family: var(--font-display);
}

.hero-stats span { font-size: 12px; color: rgba(232, 244, 244, 0.7); }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 20px;
}

.hero-proof { font-size: 13px; color: rgba(232, 244, 244, 0.65); margin: 0; }

.band { padding: 72px 0; }
.band.dark { background: var(--ink); color: #e8f4f4; }
.band.dark h2 { color: var(--white); }
.band.mist { background: var(--mist); }

.band h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin: 0 0 12px;
}

.section-lead {
  color: var(--muted);
  max-width: 640px;
  margin: 0 0 36px;
  font-size: 1.05rem;
}

.band.dark .section-lead { color: rgba(232, 244, 244, 0.75); }

.card-grid {
  display: grid;
  gap: 16px;
}

.card-grid.four { grid-template-columns: repeat(4, 1fr); }
.card-grid.three { grid-template-columns: repeat(3, 1fr); }

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
}

.band.dark .card {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.1);
}

.card span {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--teal);
}

.band.dark .card span { color: #5ee0cc; }

.card strong {
  display: block;
  margin: 10px 0 8px;
  font-size: 1.1rem;
  line-height: 1.3;
}

.card p { margin: 0; font-size: 14px; color: var(--muted); }
.band.dark .card p { color: rgba(232, 244, 244, 0.75); }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.split .steps {
  position: sticky;
  top: 88px;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
}

.check-list li {
  padding: 12px 0 12px 28px;
  position: relative;
  border-bottom: 1px solid var(--line);
  font-weight: 600;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 800;
}

.steps article {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.steps article span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #0fb39f, var(--teal-dark));
  color: white;
  font-weight: 800;
  border-radius: 12px;
}

.steps article strong { display: block; margin-bottom: 4px; }
.steps article p { margin: 0; font-size: 14px; color: var(--muted); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.price-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.price-card.featured {
  border: 2px solid var(--teal);
  transform: scale(1.02);
}

.price-card .tier {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--teal);
}

.price-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin: 8px 0;
}

.price-card .amount {
  font-size: 2rem;
  font-weight: 800;
  font-family: var(--font-display);
}

.price-card .amount small { font-size: 1rem; font-weight: 600; color: var(--muted); }

.price-card ul {
  flex: 1;
  margin: 20px 0;
  padding-left: 18px;
  font-size: 14px;
  color: var(--muted);
}

.price-card .btn { margin-top: auto; }

.compare-table-wrap { overflow-x: auto; }

.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.compare-table th,
.compare-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.compare-table th { font-weight: 800; background: var(--mist); }
.compare-table td:last-child { background: #f0faf8; font-weight: 600; }

.buy-steps {
  margin: 24px 0 0;
  padding-left: 20px;
  font-size: 1.05rem;
  line-height: 1.8;
}

.contact-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}

.contact-card h3 { font-family: var(--font-display); margin-top: 0; }
.contact-card .fine { font-size: 12px; color: var(--muted); margin-top: 16px; }

.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}

.faq-item strong { display: block; margin-bottom: 6px; }
.faq-item p { margin: 0; color: var(--muted); font-size: 14px; }

.site-footer {
  padding: 32px 24px;
  text-align: center;
  font-size: 13px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.site-footer a { color: var(--teal); font-weight: 600; }

@media (max-width: 900px) {
  .site-header nav { display: none; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .card-grid.four, .card-grid.three, .pricing-grid, .split { grid-template-columns: 1fr; }
  .price-card.featured { transform: none; }
}
