:root {
  --bg: #0e1118;
  --bg-2: #141821;
  --surface: #1a1f2c;
  --surface-2: #222837;
  --border: rgba(255, 255, 255, 0.08);
  --border-2: rgba(255, 255, 255, 0.14);
  --fg: #ecedf1;
  --fg-soft: #c8c9d2;
  --muted: #8f93a3;
  --red: #e6353f;
  --red-soft: #ff6168;
  --green: #58c98e;
  --max: 1120px;
  --radius: 14px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  font-weight: 700;
  letter-spacing: -0.4px;
  line-height: 1.2;
  color: var(--fg);
}

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

.eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--red-soft);
  margin-bottom: 14px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(14, 17, 24, 0.85);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--border);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: -0.2px;
}
.logo__mark { display: inline-flex; }
.logo__name { font-size: 17px; color: var(--fg); }
.logo--small .logo__name { font-size: 15px; }

.site-nav {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.site-nav a {
  font-size: 14.5px;
  color: var(--fg-soft);
  padding: 8px 14px;
  border-radius: 8px;
  transition: background-color 0.15s ease, color 0.15s ease;
}
.site-nav a:hover { background: var(--surface); color: var(--fg); }
.site-nav__cta {
  background: var(--red);
  color: #fff !important;
  font-weight: 700;
  letter-spacing: 0.3px;
}
.site-nav__cta:hover { background: #ff444e; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14.5px;
  letter-spacing: 0.2px;
  border: 1px solid transparent;
  transition: transform 0.15s ease, background-color 0.15s ease, border-color 0.15s ease;
}
.btn--primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 12px 24px -10px rgba(230, 53, 63, 0.55);
}
.btn--primary:hover { background: #ff444e; transform: translateY(-1px); }
.btn--ghost {
  background: transparent;
  border-color: var(--border-2);
  color: var(--fg);
}
.btn--ghost:hover { border-color: rgba(255,255,255,0.32); }

/* Hero */
.hero {
  position: relative;
  padding: 72px 0 56px;
  background:
    radial-gradient(900px 400px at 90% -10%, rgba(230, 53, 63, 0.18), transparent 60%),
    radial-gradient(800px 380px at 0% 110%, rgba(60, 80, 140, 0.18), transparent 60%);
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 56px;
  align-items: center;
}
.hero h1 {
  font-size: clamp(34px, 5vw, 52px);
  margin: 0 0 18px;
  letter-spacing: -1px;
  line-height: 1.05;
}
.lede {
  font-size: 18px;
  color: var(--fg-soft);
  max-width: 520px;
  margin: 0 0 28px;
}
.hero__ctas {
  display: flex;
  gap: 12px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}
.hero__bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
  color: var(--fg-soft);
  font-size: 15px;
}
.hero__bullets li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.hero__bullets li span { color: var(--green); font-weight: 700; }

/* Hero panel */
.hero__panel { position: relative; }
.panel-card {
  background: linear-gradient(180deg, var(--surface), var(--surface-2));
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 22px 22px;
  box-shadow: 0 30px 60px -30px rgba(0,0,0,0.8);
}
.panel-card__row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-size: 14.5px;
}
.panel-card__label { color: var(--fg-soft); }
.panel-card__value { color: var(--fg); font-weight: 700; }
.panel-card__value--muted { color: var(--muted); font-weight: 500; }
.panel-card__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--muted);
}
.panel-card__dot--green {
  background: var(--green);
  box-shadow: 0 0 10px rgba(88, 201, 142, 0.6);
}
.panel-card__divider {
  height: 1px;
  background: var(--border);
  margin: 10px 0;
}

/* Section heading */
.section-head { margin-bottom: 36px; max-width: 720px; }
.section-head h2 {
  font-size: clamp(28px, 3.5vw, 38px);
  margin: 0 0 10px;
  letter-spacing: -0.6px;
}
.section-head p { color: var(--fg-soft); font-size: 17px; margin: 0; }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }

/* Features */
.features { padding: 72px 0 32px; }
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.feature {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 22px;
}
.feature__icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(230, 53, 63, 0.12);
  color: var(--red-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.feature h3 { font-size: 18px; margin: 0 0 8px; }
.feature p { margin: 0; color: var(--fg-soft); font-size: 14.8px; }

/* Why */
.why {
  padding: 72px 0;
  background: linear-gradient(180deg, transparent, rgba(255,255,255,0.02));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-top: 50px;
}
.why__inner {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 56px;
  align-items: center;
}
.why__copy h2 {
  font-size: clamp(28px, 3.6vw, 40px);
  margin: 0 0 18px;
  letter-spacing: -0.6px;
}
.why__copy p { color: var(--fg-soft); font-size: 17px; margin: 0 0 14px; }

.why__stats {
  display: grid;
  gap: 14px;
}
.stat {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 18px;
  padding: 22px 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.stat__num {
  font-size: 38px;
  font-weight: 800;
  color: var(--red-soft);
  letter-spacing: -1px;
  line-height: 1;
}
.stat__label { color: var(--fg-soft); font-size: 15px; }

/* Plans */
.plans { padding: 72px 0 60px; }
.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.plan {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
}
.plan--highlight {
  background: linear-gradient(180deg, rgba(230, 53, 63, 0.10), rgba(230, 53, 63, 0.02));
  border-color: rgba(230, 53, 63, 0.45);
}
.plan__tag {
  position: absolute;
  top: -10px;
  left: 22px;
  background: var(--red);
  color: #fff;
  font-size: 11.5px;
  letter-spacing: 0.8px;
  font-weight: 800;
  padding: 5px 10px;
  border-radius: 999px;
  text-transform: uppercase;
}
.plan h3 { font-size: 20px; margin: 0 0 8px; }
.plan__price { margin: 0 0 4px; color: var(--fg-soft); font-size: 14px; }
.plan__price span { color: var(--fg); font-size: 32px; font-weight: 800; letter-spacing: -0.8px; }
.plan__line { color: var(--muted); margin: 0 0 18px; font-size: 14px; }
.plan ul {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  flex: 1;
  display: grid;
  gap: 9px;
}
.plan li {
  color: var(--fg-soft);
  font-size: 14.5px;
  padding-left: 22px;
  position: relative;
}
.plan li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 12px;
  height: 8px;
  border-left: 2px solid var(--green);
  border-bottom: 2px solid var(--green);
  transform: rotate(-45deg);
}
.plans__note {
  text-align: center;
  font-size: 13px;
  color: var(--muted);
  margin: 24px auto 0;
  max-width: 640px;
}

/* Voices */
.voices { padding: 24px 0 80px; }
.voices__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.voices blockquote {
  margin: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 22px;
}
.voices blockquote p {
  margin: 0 0 14px;
  font-size: 15.5px;
  color: var(--fg);
  line-height: 1.55;
}
.voices blockquote footer {
  color: var(--muted);
  font-size: 13.5px;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  background: #0a0d13;
  padding: 36px 0 26px;
}
.site-footer__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.site-footer__tag {
  color: var(--muted);
  font-size: 14px;
  margin: 10px 0 0;
}
.site-footer nav {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.site-footer nav a {
  font-size: 14.5px;
  color: var(--fg-soft);
  padding: 6px 12px;
  border-radius: 8px;
}
.site-footer nav a:hover { background: var(--surface); color: var(--fg); }
.site-footer__credit {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 13px;
}

/* Generic page (blog, faq) */
.page {
  padding: 56px 0 80px;
}
.page__head { margin-bottom: 36px; max-width: 760px; }
.page__head h1 {
  font-size: clamp(32px, 4.2vw, 46px);
  margin: 0 0 10px;
  letter-spacing: -0.8px;
}
.page__head p {
  color: var(--fg-soft);
  font-size: 17px;
  margin: 0;
}

/* Blog list */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.post-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 24px;
  transition: border-color 0.15s ease, transform 0.15s ease;
}
.post-card:hover { border-color: var(--border-2); transform: translateY(-1px); }
.post-card__meta {
  font-size: 12.5px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 14px;
}
.post-card h2 {
  font-size: 20px;
  margin: 0 0 10px;
  letter-spacing: -0.3px;
}
.post-card p {
  margin: 0 0 18px;
  color: var(--fg-soft);
  font-size: 15px;
  flex: 1;
}
.post-card__link {
  color: var(--red-soft);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.2px;
}
.post-card__link::after {
  content: " →";
}

/* Single blog post */
.post-article {
  max-width: 720px;
  margin: 0 auto;
}
.post-article__meta {
  color: var(--muted);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  margin-bottom: 16px;
}
.post-article h1 {
  font-size: clamp(30px, 4vw, 42px);
  margin: 0 0 22px;
  letter-spacing: -0.8px;
  line-height: 1.15;
}
.post-article h2 {
  font-size: 22px;
  margin: 32px 0 10px;
  letter-spacing: -0.3px;
}
.post-article p, .post-article li {
  color: var(--fg-soft);
  font-size: 16.5px;
  line-height: 1.7;
}
.post-article ul { padding-left: 22px; margin: 12px 0; }
.post-article li { margin-bottom: 6px; }
.back-link {
  display: inline-block;
  margin-top: 40px;
  color: var(--red-soft);
  font-size: 14px;
  font-weight: 600;
}

/* FAQ */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: grid;
  gap: 10px;
}
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 22px;
}
.faq-item h3 {
  margin: 0 0 8px;
  font-size: 17px;
  letter-spacing: -0.2px;
}
.faq-item p {
  margin: 0;
  color: var(--fg-soft);
  font-size: 15.5px;
  line-height: 1.6;
}

/* Mobile */
@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; gap: 36px; }
  .hero__panel { order: -1; max-width: 420px; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .why__inner { grid-template-columns: 1fr; gap: 32px; }
  .plan-grid { grid-template-columns: 1fr; }
  .voices__grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .hero { padding: 48px 0 36px; }
  .features, .plans, .why { padding-top: 48px; padding-bottom: 36px; }
  .feature-grid { grid-template-columns: 1fr; }
  .site-nav a { padding: 8px 10px; font-size: 14px; }
  .site-nav__cta { padding: 8px 14px; }
}
