:root {
  --bg: #0c2340;
  --bg-soft: #112d4e;
  --accent: #0e7c7b;
  --accent-soft: #2a9d8f;
  --text: #e9eef5;
  --text-soft: #b0bec8;
  --text-mute: #7a8693;
  --card: rgba(255, 255, 255, 0.03);
  --border: rgba(255, 255, 255, 0.08);
  --radius: 8px;
  --maxw: 720px;
  --mono: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, monospace;
  --sans: -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI", Roboto, sans-serif;
}

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

html { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
}

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

header {
  padding: 48px 0 24px;
  border-bottom: 1px solid var(--border);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand img {
  width: 40px;
  height: 40px;
  border-radius: 6px;
}

.brand-name {
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.01em;
}

.brand-name span { color: var(--accent-soft); }

.hero {
  padding: 64px 0 48px;
}

.hero h1 {
  font-size: 44px;
  line-height: 1.15;
  letter-spacing: -0.025em;
  font-weight: 700;
  margin-bottom: 16px;
}

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

.hero .lead {
  font-size: 19px;
  color: var(--text-soft);
  max-width: 580px;
  margin-bottom: 32px;
}

.cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 15px;
  transition: background 0.15s ease;
}

.cta:hover { background: var(--accent-soft); }

.cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  color: var(--text-soft);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  margin-left: 12px;
}

.cta-secondary:hover { color: var(--text); }

section {
  padding: 56px 0;
  border-top: 1px solid var(--border);
}

section h2 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-soft);
  margin-bottom: 24px;
}

.section-title {
  font-size: 28px;
  line-height: 1.3;
  letter-spacing: -0.02em;
  font-weight: 700;
  margin-bottom: 32px;
}

.bullets {
  list-style: none;
}

.bullets li {
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.bullets li:last-child { border-bottom: none; }

.bullet-num {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--accent-soft);
  flex-shrink: 0;
  padding-top: 3px;
  min-width: 24px;
}

.bullet-text strong {
  display: block;
  margin-bottom: 4px;
  font-size: 16px;
  color: var(--text);
}

.bullet-text p {
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.55;
}

.post-meta {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--text-mute);
  margin-bottom: 12px;
}

.post-title {
  font-size: 28px;
  line-height: 1.3;
  letter-spacing: -0.02em;
  font-weight: 700;
  margin-bottom: 24px;
}

.post-body {
  color: var(--text-soft);
  font-size: 16px;
  line-height: 1.7;
}

.post-body p { margin-bottom: 18px; }

.post-body h3 {
  color: var(--text);
  font-size: 18px;
  font-weight: 700;
  margin: 28px 0 8px;
  letter-spacing: -0.01em;
}

.post-body strong { color: var(--text); }

.post-body a { color: var(--accent-soft); text-decoration: underline; text-decoration-color: rgba(46, 157, 143, 0.4); }
.post-body a:hover { text-decoration-color: var(--accent-soft); }

.post-body ul {
  list-style: none;
  margin: 16px 0;
}

.post-body ul li {
  padding-left: 20px;
  position: relative;
  margin-bottom: 8px;
}

.post-body ul li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--accent-soft);
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 24px;
}

@media (max-width: 600px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 34px; }
}

.price-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}

.price-card.featured {
  border-color: var(--accent);
}

.price-tier {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-soft);
  margin-bottom: 8px;
}

.price-amount {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}

.price-amount span {
  font-size: 16px;
  color: var(--text-mute);
  font-weight: 500;
}

.price-desc {
  font-size: 14px;
  color: var(--text-soft);
  margin-bottom: 16px;
}

.price-features {
  list-style: none;
  font-size: 14px;
  color: var(--text-soft);
  margin-bottom: 20px;
}

.price-cta {
  display: block;
  text-align: center;
  width: 100%;
  padding: 11px 16px;
  margin-top: 4px;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 14px;
  transition: background 0.15s ease;
}

.price-cta:hover { background: var(--accent-soft); }

.price-card.featured .price-cta { background: var(--accent-soft); }
.price-card.featured .price-cta:hover { background: var(--accent); }

.price-features li {
  padding: 6px 0;
  padding-left: 18px;
  position: relative;
}

.price-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-soft);
}

footer {
  padding: 40px 0 60px;
  border-top: 1px solid var(--border);
  color: var(--text-mute);
  font-size: 13px;
}

footer p { margin-bottom: 8px; }

footer a { color: var(--text-soft); }

.disclaimer {
  font-size: 12px;
  font-style: italic;
  margin-top: 24px;
  color: var(--text-mute);
  line-height: 1.5;
}
