:root {
  --accent: oklch(0.55 0.10 243);
  --accent-dark: oklch(0.48 0.10 243);
  --accent-deep: oklch(0.42 0.10 243);
  --accent-soft: oklch(0.95 0.025 243);
  --tint: oklch(0.97 0.016 243);
  --bg: #fbfcfe;
  --ink: oklch(0.26 0.035 248);
  --ink-2: oklch(0.28 0.03 248);
  --ink-3: oklch(0.35 0.04 248);
  --body: oklch(0.48 0.02 248);
  --muted: oklch(0.58 0.015 248);
  --line: oklch(0.92 0.015 243);
  --line-soft: oklch(0.94 0.012 243);
  --serif: Newsreader, Georgia, serif;
  --sans: Manrope, Helvetica, Arial, sans-serif;
  --mono: ui-monospace, Menlo, monospace;
  --hatch: repeating-linear-gradient(135deg, oklch(0.96 0.015 243) 0 10px, oklch(0.985 0.006 243) 10px 20px);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--bg);
  color: oklch(0.30 0.025 248);
  font-family: var(--sans);
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--accent-dark); text-decoration: none; }
a:hover { color: var(--accent-deep); }
img { max-width: 100%; }

h1, h2, h3 { margin: 0; }

h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(30px, 3.6vw, 42px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-wrap: pretty;
}

.wrap { max-width: 1160px; margin: 0 auto; padding-inline: 28px; }
.wrap-narrow { max-width: 900px; margin: 0 auto; padding-inline: 28px; }
.section { padding-block: 80px; }
.section-flush { padding: 0 0 88px; }
.section-tint { background: var(--tint); }
.center { text-align: center; }
.mb-lg { margin-bottom: 26px; }

.eyebrow {
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}
.eyebrow.muted { color: oklch(0.62 0.015 248); font-weight: 600; }

.lead { font-size: 17px; line-height: 1.6; color: oklch(0.50 0.02 248); margin: 14px 0 0; text-wrap: pretty; }
.fine { font-size: 13.5px; color: var(--muted); margin: 16px 0 0; }

/* Buttons */
.btn {
  display: inline-block;
  font-size: 14.5px;
  font-weight: 600;
  border-radius: 10px;
  padding: 10px 18px;
  transition: background .18s ease, border-color .18s ease, color .18s ease;
  white-space: nowrap;
}
.btn-lg { font-size: 15px; padding: 14px 24px; border-radius: 11px; }
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-dark); color: #fff; }
.btn-glow { box-shadow: 0 6px 18px oklch(0.55 0.10 243 / 0.25); }
.btn-ghost { background: #fff; color: var(--ink-3); border: 1px solid oklch(0.89 0.02 243); }
.btn-ghost:hover { border-color: oklch(0.75 0.06 243); color: var(--ink-3); }
.btn-invert { background: #fff; color: var(--accent-deep); font-weight: 700; padding: 15px 26px; }
.btn-invert:hover { background: oklch(0.96 0.01 243); color: var(--accent-deep); }
.btn-outline-light { color: #fff; border: 1px solid oklch(0.80 0.06 243); padding: 15px 26px; }
.btn-outline-light:hover { color: #fff; background: oklch(0.50 0.10 243); }
.link-strong { font-size: 14.5px; font-weight: 600; color: oklch(0.38 0.03 248); }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(251, 252, 254, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid oklch(0.92 0.015 243);
}
.header-inner { display: flex; align-items: center; gap: 32px; padding-block: 16px; }
.brand { display: flex; align-items: center; gap: 10px; margin-right: auto; }
.brand-mark {
  width: 30px; height: 30px; border-radius: 9px;
  background: var(--accent); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 15px; letter-spacing: -0.02em;
}
.brand-mark-sm { width: 26px; height: 26px; border-radius: 8px; font-size: 13px; }
.brand-name { font-size: 19px; font-weight: 700; letter-spacing: -0.02em; color: var(--ink-2); }
.brand-name-sm { font-size: 16px; color: oklch(0.30 0.03 248); }
.nav { display: flex; gap: 28px; font-size: 14.5px; font-weight: 500; }
.nav a { color: oklch(0.45 0.02 248); }
.nav a:hover { color: var(--accent-dark); }
.header-actions { display: flex; gap: 12px; align-items: center; }
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: 0; cursor: pointer; padding: 8px;
}
.nav-toggle span { display: block; width: 20px; height: 2px; border-radius: 2px; background: var(--ink-2); }

/* Hero */
.hero {
  padding: 88px 0 72px;
  background: linear-gradient(180deg, oklch(0.97 0.018 243) 0%, var(--bg) 78%);
}
.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 56px;
  align-items: center;
}
.hero-grid > div { min-width: 0; }
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; border: 1px solid oklch(0.90 0.02 243);
  color: oklch(0.48 0.07 243);
  font-size: 13px; font-weight: 600;
  padding: 7px 14px; border-radius: 999px;
}
.dot { width: 7px; height: 7px; border-radius: 50%; background: oklch(0.68 0.11 175); }
.display {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(40px, 5vw, 60px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 22px 0 0;
  color: var(--ink);
  text-wrap: pretty;
}
.display em { font-style: italic; color: oklch(0.50 0.10 243); }
.hero .lead { font-size: 18px; margin-top: 22px; max-width: 30em; }
.cta-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }

/* Browser mock + placeholders */
.browser {
  background: #fff;
  border: 1px solid oklch(0.91 0.018 243);
  border-radius: 18px;
  box-shadow: 0 20px 50px oklch(0.55 0.08 243 / 0.12);
  overflow: hidden;
}
.browser-bar {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--line-soft);
}
.bullet { width: 9px; height: 9px; border-radius: 50%; background: oklch(0.90 0.02 243); }
.browser-url { margin-left: 8px; font-size: 12px; color: oklch(0.62 0.015 248); font-family: var(--mono); }
.placeholder {
  background-image: var(--hatch);
  display: flex; align-items: center; justify-content: center;
}
.ratio-4-3 { aspect-ratio: 4 / 3; }
.ratio-1-1 { aspect-ratio: 1 / 1; }
.ph-label {
  font-family: var(--mono); font-size: 12.5px; color: oklch(0.55 0.04 243);
  background: #fff; border: 1px solid oklch(0.90 0.02 243);
  padding: 8px 14px; border-radius: 8px; text-align: center;
}
.framed { border-radius: 16px; overflow: hidden; border: 1px solid oklch(0.90 0.02 243); background: #fff; }

/* Logos */
.logos { padding: 0 0 64px; }
.logos-inner {
  border-top: 1px solid oklch(0.93 0.015 243);
  padding-top: 28px;
  display: flex; flex-wrap: wrap; align-items: center; gap: 14px 40px;
}
.logo-row { display: flex; flex-wrap: wrap; gap: 12px; flex: 1; min-width: 260px; }
.logo-slot {
  flex: 1; min-width: 120px; height: 38px; border-radius: 8px;
  background-image: repeating-linear-gradient(135deg, oklch(0.96 0.012 243) 0 8px, oklch(0.985 0.005 243) 8px 16px);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--mono); font-size: 11px; color: oklch(0.62 0.02 243);
}

/* Section heads */
.section-head { max-width: 34em; }
.section-head h2 { margin-top: 14px; }
.section-head-center { margin-inline: auto; text-align: center; }

/* Feature cards */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  margin-top: 44px;
}
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 26px;
  transition: border-color .18s ease, transform .18s ease;
}
.card:hover { border-color: oklch(0.80 0.05 243); }
.card h3 { font-size: 17px; font-weight: 700; letter-spacing: -0.01em; margin: 18px 0 8px; color: oklch(0.27 0.03 248); }
.card p { font-size: 15px; line-height: 1.6; color: oklch(0.50 0.02 248); margin: 0; }
.icon {
  width: 38px; height: 38px; border-radius: 11px;
  background: var(--accent-soft);
  display: flex; align-items: center; justify-content: center;
}
.icon i { display: block; width: 13px; height: 13px; background: var(--accent); }
.shape-square { border-radius: 3px; }
.shape-circle { border-radius: 50%; }
.shape-diamond { transform: rotate(45deg); }

/* Steps */
.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 56px;
  align-items: center;
}
.split > div { min-width: 0; }
.steps { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 22px; }
.steps li { display: flex; gap: 16px; }
.step-num {
  flex: none; width: 30px; height: 30px; border-radius: 50%;
  background: #fff; border: 1px solid oklch(0.88 0.03 243);
  color: oklch(0.50 0.10 243); font-size: 14px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.steps h3 { font-size: 16.5px; font-weight: 700; margin: 3px 0 6px; color: oklch(0.27 0.03 248); }
.steps p { font-size: 15px; line-height: 1.6; color: var(--body); margin: 0; }

/* Proof */
.proof { text-align: center; }
.stats { display: flex; flex-wrap: wrap; justify-content: center; gap: 40px 64px; margin-bottom: 56px; }
.stat-num { font-family: var(--serif); font-size: 44px; line-height: 1; color: oklch(0.50 0.10 243); }
.stat-label { font-size: 14.5px; color: oklch(0.50 0.02 248); margin-top: 8px; }
blockquote {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(22px, 2.6vw, 30px);
  line-height: 1.4;
  color: oklch(0.30 0.035 248);
  text-wrap: pretty;
}
.quote-author { display: flex; align-items: center; justify-content: center; gap: 12px; margin-top: 26px; }
.avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background-image: repeating-linear-gradient(135deg, oklch(0.95 0.015 243) 0 6px, oklch(0.985 0.006 243) 6px 12px);
  border: 1px solid oklch(0.91 0.02 243);
}
.author-name { font-size: 15px; font-weight: 700; color: var(--ink-2); text-align: left; }
.author-role { font-size: 14px; color: oklch(0.55 0.02 248); text-align: left; }

/* Pricing */
.toggle-wrap { display: flex; justify-content: center; margin: 28px 0 36px; }
.toggle {
  display: flex; gap: 4px;
  background: #fff; border: 1px solid oklch(0.90 0.02 243);
  border-radius: 999px; padding: 4px;
}
.toggle-btn {
  font-family: inherit; font-size: 14px; font-weight: 600;
  border: 0; cursor: pointer;
  padding: 9px 18px; border-radius: 999px;
  background: transparent; color: oklch(0.48 0.02 248);
  transition: background .18s ease, color .18s ease;
}
.toggle-btn.is-on { background: var(--accent); color: #fff; }

.plans {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 18px;
  align-items: start;
}
.plan {
  position: relative;
  background: #fff;
  border: 1px solid oklch(0.91 0.018 243);
  border-radius: 18px;
  padding: 28px;
}
.plan-featured {
  border-color: var(--accent);
  box-shadow: 0 16px 40px oklch(0.55 0.08 243 / 0.16);
}
.plan-badge {
  position: absolute; top: -11px; left: 28px;
  background: var(--accent); color: #fff;
  font-size: 11.5px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 5px 11px; border-radius: 999px;
}
.plan h3 { font-size: 17px; font-weight: 700; color: oklch(0.27 0.03 248); }
.plan-desc { font-size: 14.5px; line-height: 1.55; color: oklch(0.52 0.02 248); margin: 8px 0 20px; min-height: 3.1em; }
.plan-price { display: flex; align-items: baseline; gap: 6px; }
.plan-price .amount { font-family: var(--serif); font-size: 40px; line-height: 1; color: var(--ink); }
.plan-price .per { font-size: 14px; color: oklch(0.55 0.02 248); }
.plan-note { font-size: 13px; color: oklch(0.58 0.02 248); margin-top: 6px; }
.plan-cta {
  display: block; text-align: center; margin-top: 22px;
  font-size: 14.5px; font-weight: 600;
  padding: 13px; border-radius: 11px;
  background: #fff; color: var(--ink-3); border: 1px solid oklch(0.89 0.02 243);
}
.plan-cta:hover { border-color: oklch(0.75 0.06 243); color: var(--ink-3); }
.plan-featured .plan-cta { background: var(--accent); color: #fff; border-color: var(--accent); font-weight: 700; }
.plan-featured .plan-cta:hover { background: var(--accent-dark); color: #fff; }
.plan-features {
  list-style: none; margin: 22px 0 0; padding: 20px 0 0;
  display: flex; flex-direction: column; gap: 10px;
  border-top: 1px solid oklch(0.93 0.015 243);
}
.plan-features li {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 14.5px; line-height: 1.5; color: oklch(0.42 0.02 248);
}
.plan-features li::before {
  content: ""; flex: none;
  width: 6px; height: 6px; border-radius: 50%;
  background: oklch(0.62 0.10 243); margin-top: 7px;
}

/* FAQ */
.faq { display: flex; flex-direction: column; gap: 10px; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: 14px; overflow: hidden; }
.faq-q {
  width: 100%; display: flex; align-items: center; gap: 16px; text-align: left;
  background: none; border: 0; padding: 18px 22px; cursor: pointer;
  font-family: inherit; font-size: 16px; font-weight: 600; color: var(--ink-2);
}
.faq-q span:first-child { flex: 1; }
.faq-icon {
  flex: none; width: 24px; height: 24px; border-radius: 50%;
  background: oklch(0.96 0.015 243); color: var(--accent);
  font-size: 16px; font-weight: 600;
  display: flex; align-items: center; justify-content: center;
  transition: transform .18s ease;
}
.faq-item.is-open .faq-icon { transform: rotate(45deg); }
.faq-a {
  padding: 0 22px; max-height: 0; overflow: hidden;
  transition: max-height .22s ease, padding .22s ease;
  font-size: 15px; line-height: 1.65; color: var(--body);
}
.faq-item.is-open .faq-a { padding: 0 22px 20px; max-height: 320px; }

/* CTA band */
.cta-band {
  background: var(--accent);
  border-radius: 22px;
  padding: clamp(40px, 6vw, 68px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  align-items: center;
}
.on-accent { color: #fff; font-size: clamp(28px, 3.4vw, 40px); }
.on-accent-soft { font-size: 17px; line-height: 1.6; color: oklch(0.94 0.02 243); margin: 14px 0 0; max-width: 28em; }
.cta-band-actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: flex-end; }

/* Footer */
.site-footer { border-top: 1px solid oklch(0.93 0.015 243); padding-block: 40px; }
.footer-inner { display: flex; flex-wrap: wrap; gap: 20px 40px; align-items: center; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 24px; font-size: 14px; }
.footer-nav a { color: oklch(0.50 0.02 248); }
.footer-nav a:hover { color: var(--accent-dark); }
.copyright { font-size: 13.5px; color: oklch(0.62 0.015 248); width: 100%; }

/* Responsive */
@media (max-width: 900px) {
  .header-inner { flex-wrap: wrap; gap: 16px; }
  .nav, .header-actions { display: none; width: 100%; }
  .nav-toggle { display: flex; }
  .site-header.is-open .nav { display: flex; flex-direction: column; gap: 14px; font-size: 16px; }
  .site-header.is-open .header-actions { display: flex; padding-bottom: 6px; }
  .cta-band-actions { justify-content: flex-start; }
}
@media (max-width: 640px) {
  .hero { padding-top: 56px; }
  .section { padding-block: 60px; }
  .stats { gap: 32px; }
}
@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
}
