:root {
  --bg: #f7f7fb;
  --bg-alt: #ffffff;
  --border-subtle: #e0e3ee;
  --text-main: #101828;
  --text-muted: #667085;
  --cobalt: #2563eb;
  --cobalt-soft: #e0ecff;
  --chip-bg: #eef2ff;
  --chip-border: #c7d2fe;
  --shadow-soft: 0 16px 40px rgba(15, 23, 42, 0.12);

  --radius-lg: 0;
  --radius-xl: 0;
  --radius-pill: 0;
}

/* Global */

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text",
    "Helvetica Neue", Arial, sans-serif;
  background: radial-gradient(circle at top left, #eef2ff 0, #f7f7fb 45%, #ffffff 100%);
  color: var(--text-main);
  -webkit-font-smoothing: antialiased;
}

/* Links & text */

a {
  color: var(--cobalt);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

p {
  margin: 0 0 0.75rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Layout helpers */

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(20px);
  background: rgba(247, 247, 251, 0.85);
  border-bottom: 1px solid rgba(226, 232, 240, 0.6);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.9rem 0.25rem;
}

/* Brand / logo */

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-logo {
  display: block;
  height: 80px;
  width: auto;
  object-fit: contain;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-weight: 600;
  font-size: 1.1rem;
}

.brand-subtitle {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Nav */

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-size: 0.9rem;
}

.nav-link {
  color: var(--text-muted);
}

.nav-link:hover {
  color: var(--text-main);
  text-decoration: none;
}

.nav-cta {
  display: flex;
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.25rem;
  border-radius: 0;
  font-size: 0.9rem;
  font-weight: 500;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--cobalt);
  color: #f9fafb;
  box-shadow: none;
}

.btn-primary:hover {
  background: #1d4ed8;
  text-decoration: none;
  box-shadow: none;
}

.btn-outline {
  background: transparent;
  border-color: rgba(148, 163, 184, 0.8);
  color: var(--text-main);
  box-shadow: none;
}

.btn-outline:hover {
  border-color: #4b5563;
  text-decoration: none;
  box-shadow: none;
}

.btn-ghost {
  background: transparent;
  color: var(--text-main);
  border-color: transparent;
  box-shadow: none;
}

.btn-ghost:hover {
  background: rgba(148, 163, 184, 0.08);
  text-decoration: none;
  box-shadow: none;
}

/* Hero */

.hero {
  padding: 3.5rem 0 3rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1.05fr);
  gap: 2.5rem;
  align-items: center;
}

.hero-title {
  font-size: 2.35rem;
  line-height: 1.1;
  margin: 0 0 1rem;
  letter-spacing: -0.03em;
}

.hero-subtitle {
  font-size: 0.98rem;
  margin-bottom: 1rem;
}

.hero-features {
  margin: 0 0 1rem 1.25rem;
  padding: 0;
  color: var(--text-main);
  font-size: 0.9rem;
}

.hero-features li {
  margin-bottom: 0.25rem;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 0.9rem;
}

.hero-note {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Hero card */

.hero-card {
  background: linear-gradient(145deg, #ffffff, #eef2ff);
  border-radius: var(--radius-xl);
  padding: 1.4rem 1.3rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(148, 163, 184, 0.25);
  position: relative;
}

/* Floating chip on hero card */

.chip-live-floating {
  position: absolute;
  top: -14px;
  left: 20px;
  background: #2f6bff;
  color: #fff;
  padding: 6px 14px;
  font-size: 0.7rem;
  font-weight: 600;
  border-radius: 0;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  box-shadow: none;
  border: none;
  z-index: 5;
}

/* Generic chip (if used elsewhere) */

.chip {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.7rem;
  border-radius: 0;
  font-size: 0.72rem;
  font-weight: 500;
  white-space: nowrap;
}

/* Hero card content */

.hero-card-block + .hero-card-block {
  margin-top: 0.9rem;
}

.hero-label {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}

.hero-label-raptor {
  color: #1d4ed8;
}

.hero-bubble {
  border-radius: 16px;
  padding: 0.75rem 0.85rem;
  font-size: 0.9rem;
  line-height: 1.6;
}

.hero-bubble-muted {
  background: rgba(148, 163, 184, 0.07);
  color: var(--text-muted);
}

.hero-bubble-strong {
  background: rgba(37, 99, 235, 0.06);
  border: 1px solid rgba(37, 99, 235, 0.25);
  color: var(--text-main);
}

.hero-card-footer {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.1rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(226, 232, 240, 0.9);
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* Sections */

.section {
  padding: 3.2rem 0;
}

.section-alt {
  background: rgba(255, 255, 255, 0.9);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.section-header {
  margin-bottom: 1.8rem;
  max-width: 640px;
}

.section-header h2 {
  margin: 0 0 0.4rem;
  font-size: 1.6rem;
}

/* Steps */

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.3rem;
}

.step-card {
  background: rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-lg);
  padding: 1rem 1rem 1.1rem;
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.06);
}

.step-number {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: var(--cobalt-soft);
  color: var(--cobalt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
}

.step-card h3 {
  margin: 0 0 0.4rem;
  font-size: 1rem;
}

/* Pricing */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
}

.pricing-card {
  border-radius: var(--radius-lg);
  padding: 1rem 1rem 1.1rem;
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.04);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

/* Highlighted pricing card + chip */

.pricing-card-highlight {
  border-color: rgba(37, 99, 235, 0.35);
  box-shadow: 0 18px 40px rgba(37, 99, 235, 0.18);
  position: relative;
}

.pricing-card-highlight::before {
  content: "Most popular";
  position: absolute;
  top: -14px;
  left: 20px;
  background: #2f6bff;
  color: #ffffff;
  padding: 6px 14px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: 0;
  box-shadow: none;
  border: none;
  z-index: 5;
}

.pricing-label {
  font-size: 0.9rem;
  font-weight: 600;
}

.pricing-credits {
  font-size: 1.1rem;
  font-weight: 700;
}

.pricing-price {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--cobalt);
}

.pricing-note {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.pricing-cta {
  font-size: 0.82rem;
  margin-top: 0.35rem;
}

.pricing-footnote {
  margin-top: 1.2rem;
  font-size: 0.8rem;
}

/* FAQ */

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}

.faq-item {
  background: rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-lg);
  padding: 1rem 1rem 1.1rem;
  border: 1px solid rgba(226, 232, 240, 0.9);
}

.faq-q {
  margin: 0 0 0.4rem;
  font-size: 0.98rem;
}

.faq-a {
  font-size: 0.88rem;
}

/* Footer */

.site-footer {
  border-top: 1px solid var(--border-subtle);
  background: #ffffff;
  padding: 1.5rem 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.footer-brand {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.footer-text {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-links {
  display: flex;
  gap: 1rem;
  font-size: 0.85rem;
}

.footer-link {
  color: var(--text-muted);
}

.footer-link:hover {
  color: var(--text-main);
}

/* Responsive */

@media (max-width: 880px) {
  .header-inner {
    flex-wrap: wrap;
    row-gap: 0.75rem;
  }

  .main-nav {
    display: none;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-card {
    order: -1;
  }

  .steps-grid,
  .pricing-grid,
  .faq-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 640px) {
  .hero {
    padding-top: 2.4rem;
  }

  .hero-title {
    font-size: 1.8rem;
  }

  .hero-card {
    padding: 1.1rem 1rem;
  }

  .section {
    padding: 2.5rem 0;
  }

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