@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Merriweather:wght@400;700&display=swap');

:root {
  --bg: #070b12;
  --bg-soft: #0d131d;
  --surface: #121b27;
  --surface-strong: #0a111a;
  --text: #e9f1fb;
  --muted: #9eb0c4;
  --brand: #2fbf7f;
  --brand-deep: #1f915f;
  --accent: #5fb5e9;
  --accent-deep: #3f8fc0;
  --chip: #88d7ff;
  --line: #2a3b4f;
  --radius-xl: 22px;
  --radius-lg: 16px;
  --radius-sm: 10px;
  --shadow: 0 18px 44px rgba(2, 6, 13, 0.48);
  --shadow-soft: 0 10px 28px rgba(2, 6, 13, 0.36);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  font-family: 'Manrope', 'Segoe UI', 'Trebuchet MS', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 92% -6%, rgba(47, 191, 127, 0.2), transparent 40%),
    radial-gradient(circle at -8% 22%, rgba(95, 181, 233, 0.16), transparent 42%),
    linear-gradient(180deg, #111927 0%, var(--bg-soft) 34%, var(--bg) 100%);
  line-height: 1.62;
}

#bb-initial-loader {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 14% 10%, rgba(95, 181, 233, 0.18), transparent 45%),
    linear-gradient(180deg, #111927 0%, var(--bg-soft) 40%, var(--bg) 100%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
}

.bb-initial-loader__inner {
  display: inline-flex;
  align-items: center;
  gap: 0.78rem;
  color: #c6f8df;
  letter-spacing: 0.08em;
}

.bb-initial-loader__text {
  font-size: 0.88rem;
  font-weight: 600;
  text-transform: uppercase;
}

html.bb-js.bb-loading body {
  overflow: hidden;
}

html.bb-js.bb-loading body > *:not(#bb-initial-loader) {
  visibility: hidden;
}

html.bb-js.bb-loading #bb-initial-loader {
  opacity: 1;
  pointer-events: auto;
}

html.bb-js:not(.bb-loading) #bb-initial-loader {
  opacity: 0;
  pointer-events: none;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(82, 108, 133, 0.34);
  background: rgba(8, 13, 20, 0.82);
  backdrop-filter: blur(8px);
}

.header-inner,
.main,
.footer-inner {
  width: min(1160px, 94vw);
  margin: 0 auto;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
  text-decoration: none;
}

.brand-badge {
  width: 2.65rem;
  height: 2.65rem;
  border-radius: 0.72rem;
  background: rgba(47, 191, 127, 0.18);
  border: 1px solid rgba(47, 191, 127, 0.38);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #c6f8df;
  font-size: 0.98rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.02em;
}

.brand-name {
  display: inline-flex;
  align-items: center;
  min-height: 2.65rem;
  font-family: 'Manrope', 'Segoe UI', 'Trebuchet MS', sans-serif;
  color: #c6f8df;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  line-height: 1;
}

.nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.95rem;
}

.nav a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.94rem;
}

.nav a:hover {
  color: #ffffff;
}

.main {
  padding: 1.75rem 0 3.4rem;
}

.section,
.hero,
.panel,
.feature-card,
.price-card,
.faq-item,
.legal-card,
.stat-card,
.quote-card,
.step-card,
.cta-band {
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.hero {
  position: relative;
  overflow: hidden;
  margin-bottom: 1.25rem;
  padding: 2rem;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(40deg, rgba(95, 181, 233, 0.13), transparent 45%),
    repeating-linear-gradient(
      135deg,
      rgba(203, 223, 243, 0.02) 0,
      rgba(203, 223, 243, 0.02) 12px,
      transparent 12px,
      transparent 24px
    );
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 1.2rem;
}

.hero h1,
.section-heading h2,
.panel h2,
.feature-card h3,
.price-card h3,
.step-card h3,
.cta-band h2,
h1,
h2,
h3 {
  font-family: 'Merriweather', Georgia, serif;
  letter-spacing: 0.01em;
  line-height: 1.15;
}

.hero h1 {
  margin: 0 0 0.8rem;
  font-size: clamp(2rem, 4.8vw, 3.35rem);
}

.subtitle,
.lede {
  color: var(--muted);
  max-width: 68ch;
}

.lede {
  font-size: 1.05rem;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.25rem 0.62rem;
  margin-bottom: 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(47, 191, 127, 0.44);
  background: rgba(47, 191, 127, 0.14);
  color: #a7f4ce;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.cta-row {
  margin-top: 1.2rem;
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.64rem 1.18rem;
  text-decoration: none;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

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

.btn:focus-visible {
  outline: 2px solid var(--chip);
  outline-offset: 2px;
}

.btn-primary {
  background: linear-gradient(180deg, #44d796, var(--brand));
  color: #07110b;
  box-shadow: 0 10px 22px rgba(47, 191, 127, 0.28);
}

.btn-primary:hover {
  background: linear-gradient(180deg, #39c987, var(--brand-deep));
}

.btn-secondary {
  border-color: rgba(142, 167, 192, 0.42);
  color: var(--text);
  background: rgba(19, 31, 44, 0.72);
}

.btn-secondary:hover {
  border-color: rgba(196, 216, 236, 0.68);
}

.hero-note {
  margin-top: 0.75rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-stack {
  display: grid;
  gap: 0.8rem;
}

.stat-card {
  padding: 0.95rem 1rem;
}

.stat-label {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.74rem;
  font-weight: 700;
}

.stat-value {
  font-family: 'Merriweather', Georgia, serif;
  font-size: clamp(1.35rem, 3vw, 2rem);
  margin-top: 0.25rem;
}

.stat-detail {
  color: var(--muted);
  font-size: 0.9rem;
}

.grid {
  display: grid;
  gap: 0.95rem;
}

.grid.cols-2 {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.grid.cols-3 {
  grid-template-columns: repeat(auto-fit, minmax(218px, 1fr));
}

.section {
  margin-top: 1rem;
  padding: 1.2rem;
}

.section-heading {
  margin-bottom: 0.8rem;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(1.55rem, 2.9vw, 2.2rem);
}

[data-kpi-section='problem-fit'] .feature-card,
[data-kpi-section='how-steps'] .step-card,
[data-kpi-section='how-outcomes'] .feature-card,
[data-kpi-section='pricing-cards'] .price-card,
[data-kpi-section='pricing-faq'] .feature-card,
[data-kpi-section='faq-list'] .faq-item {
  border-color: #1f2d3e;
}

.feature-card,
.step-card,
.price-card,
.faq-item,
.quote-card,
.panel,
.legal-card,
.cta-band {
  padding: 1rem 1.1rem;
}

.feature-card h3,
.step-card h3,
.price-card h3,
.faq-item h3,
.quote-card h3 {
  margin: 0;
  font-size: 1.25rem;
}

.feature-card p,
.step-card p,
.price-card p,
.faq-item p,
.quote-card p,
.panel p {
  margin-top: 0.55rem;
}

.badge-row {
  margin-top: 0.55rem;
  display: flex;
  gap: 0.42rem;
  flex-wrap: wrap;
}

.badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid rgba(47, 191, 127, 0.34);
  background: rgba(47, 191, 127, 0.15);
  color: #b7f6d5;
  padding: 0.2rem 0.5rem;
  font-size: 0.73rem;
  font-weight: 700;
}

.timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.9rem;
}

.timeline li {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(10, 17, 26, 0.82);
  padding: 0.9rem;
}

.timeline-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.58rem;
  height: 1.58rem;
  border-radius: 999px;
  background: var(--surface-strong);
  color: #ebf5ff;
  font-size: 0.78rem;
  font-weight: 700;
  margin-right: 0.42rem;
}

.timeline-title {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 1.1rem;
}

.roadmap {
  margin-top: 0.35rem;
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.roadmap span {
  font-size: 0.78rem;
  color: var(--muted);
  border: 1px dashed rgba(142, 167, 192, 0.42);
  border-radius: 999px;
  padding: 0.18rem 0.5rem;
}

.quote-card {
  background: linear-gradient(180deg, rgba(47, 191, 127, 0.11), rgba(95, 181, 233, 0.12));
}

.quote-card blockquote {
  margin: 0;
  font-size: 1rem;
}

.quote-card cite {
  margin-top: 0.62rem;
  display: block;
  color: var(--muted);
  font-size: 0.86rem;
  font-style: normal;
}

.price-tag {
  display: inline-flex;
  align-items: baseline;
  gap: 0.2rem;
  margin-top: 0.55rem;
  font-family: 'Merriweather', Georgia, serif;
  font-size: 2rem;
  line-height: 1;
}

.price-tag small {
  color: var(--muted);
  font-family: 'Manrope', 'Segoe UI', 'Trebuchet MS', sans-serif;
  font-size: 0.85rem;
}

.price-card ul,
.panel ul,
.legal-card ul {
  margin: 0.7rem 0 0;
  padding-left: 1.1rem;
}

.price-card li,
.panel li,
.legal-card li {
  margin-top: 0.25rem;
}

.cta-band {
  margin-top: 1rem;
  background: linear-gradient(130deg, #0f2a1e, #15362a 46%, #183f56 100%);
  color: #f5fbff;
  border-color: rgba(245, 251, 255, 0.22);
}

.cta-band p {
  color: rgba(245, 251, 255, 0.82);
}

.cta-band .btn-secondary {
  border-color: rgba(245, 251, 255, 0.44);
  color: #f5fbff;
  background: rgba(12, 22, 33, 0.22);
}

.cta-band .btn-secondary:hover {
  border-color: rgba(245, 251, 255, 0.78);
}

.faq-item h2,
.panel h2,
.price-card h2,
.feature-card h2,
.step-card h2 {
  margin-top: 0;
  margin-bottom: 0.4rem;
}

.legal-card h2 {
  margin-top: 0;
  margin-bottom: 0.45rem;
}

.legal-card p + h2,
.legal-card ul + h2 {
  margin-top: 1.2rem;
}

.panel h2 {
  font-size: 1.45rem;
}

.legal-card h1 {
  margin: 0;
  font-size: clamp(2rem, 4.2vw, 2.75rem);
}

.legal-meta {
  margin-top: 0.3rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.footnote {
  margin-top: 0.7rem;
  color: var(--muted);
  font-size: 0.86rem;
}

.footer {
  border-top: 1px solid rgba(82, 108, 133, 0.34);
  margin-top: 2.5rem;
  background: rgba(7, 12, 18, 0.78);
}

.footer-inner {
  padding: 1.35rem 0;
  color: var(--muted);
  font-size: 0.91rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.footer a {
  color: #d2e2f2;
}

.footer a:hover {
  color: #ffffff;
}

[data-animate] {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  [data-animate] {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .btn {
    transition: none;
  }
}

@media (max-width: 900px) {
  .hero {
    padding: 1.35rem;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .header-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    row-gap: 0.5rem;
  }
}

@media (max-width: 700px) {
  .brand {
    gap: 0.58rem;
  }

  .brand-badge {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 0.62rem;
    font-size: 0.84rem;
  }

  .brand-name {
    min-height: 2.25rem;
    font-size: 1rem;
    letter-spacing: 0.19em;
  }

  .main {
    padding-top: 1.1rem;
  }

  .hero h1 {
    font-size: clamp(1.85rem, 10vw, 2.45rem);
  }

  .section,
  .feature-card,
  .price-card,
  .faq-item,
  .legal-card,
  .step-card,
  .quote-card,
  .panel,
  .cta-band,
  .stat-card {
    padding: 0.9rem;
  }

  .footer-inner {
    font-size: 0.86rem;
  }
}
