:root {
  --bg: #090d14;
  --bg-soft: #101722;
  --bg-card: rgba(16, 23, 34, 0.78);
  --line: rgba(255,255,255,0.08);
  --text: #eef4ff;
  --muted: #a6b5cb;
  --primary: #3d7bff;
  --primary-strong: #5ea3ff;
  --accent: #1b2a42;
  --graphite: #151b24;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.36);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 20% 0%, rgba(61,123,255,.2), transparent 30%),
    radial-gradient(circle at 90% 10%, rgba(29,78,216,.12), transparent 28%),
    linear-gradient(180deg, #06080d 0%, #0a1018 45%, #0b1119 100%);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container { width: min(var(--container), calc(100% - 32px)); margin: 0 auto; }
.section { padding: 50px 0; }
#faq {padding-bottom: 75px;}
.site-shell { min-height: 100vh; }

.header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(18px);
  background: rgba(8, 12, 18, 0.6);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: -.03em;
}

.brand__mark {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: white;
  background: linear-gradient(135deg, var(--primary), #1644c2);
  box-shadow: 0 12px 30px rgba(61,123,255,.32);
}

.brand__text { font-size: 1.05rem; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-links a:not(.btn) {
  color: var(--muted);
  font-weight: 500;
  transition: color .2s ease;
}

.nav-links a:not(.btn):hover { color: var(--text); }

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.02);
  color: var(--text);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  background: white;
  display: block;
  border-radius: 999px;
}

.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  height: 100dvh;
  min-height: 100dvh;
  width: min(84vw, 320px);
  z-index: 60;
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: #0d1420;
  border-right: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 24px 56px rgba(0,0,0,.42);
  transform: translateX(-105%);
  transition: transform .24s ease;
}
.mobile-nav.is-open {
  transform: translateX(0);
}
.mobile-nav__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}
.mobile-nav__eyebrow {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #8fb4ff;
  margin-bottom: 8px;
}
.mobile-nav__title {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -.03em;
}
.mobile-nav__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.04);
  color: #eef4ff;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}
.mobile-nav__links {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,.06);
}
.mobile-nav__links a:not(.btn) {
  color: #dce8ff;
  font-weight: 600;
  display: block;
  padding: 16px 4px;
  line-height: 1.35;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  height: 100dvh;
  min-height: 100dvh;
  z-index: 50;
  background: rgba(3,7,14,.42);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
}
.mobile-nav-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.hero { padding-top: 72px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 36px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid rgba(94,163,255,.18);
  background: rgba(61,123,255,.08);
  color: #b9d4ff;
  font-size: .85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.hero h1,
.section-head h2,
.cta-band h2 {
  margin: 18px 0 16px;
  line-height: 1;
  letter-spacing: -.05em;
}

.hero h1 { font-size: clamp(2.8rem, 6vw, 4.6rem); }
.section-head h2,
.cta-band h2 { font-size: clamp(2rem, 4vw, 3.2rem); }

.hero-text,
.section-head p,
.cta-band p,
.footer-copy {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
  max-width: 680px;
}

.hero-actions {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-points {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.point {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #dce8ff;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), #8db7ff);
  box-shadow: 0 0 0 6px rgba(61,123,255,.12);
}

.glass-card,
.feature-card,
.step-card,
.pricing-card,
.faq-item,
.logo-pill,
.cta-band__inner {
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.status-card {
  padding: 26px;
  position: relative;
  overflow: hidden;
}
.status-card::after {
  content: "";
  position: absolute;
  inset: auto -20% -35% auto;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(61,123,255,.18), transparent 62%);
  pointer-events: none;
}

.status-card__top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
}

.muted { color: var(--muted); font-size: .92rem; margin-bottom: 6px; }
.status-pill {
  white-space: nowrap;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(42,199,117,.12);
  border: 1px solid rgba(42,199,117,.22);
  color: #9bf0be;
  font-size: .9rem;
  font-weight: 700;
}

.status-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.status-item {
  padding: 16px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.05);
}

.status-item__label { display: block; color: var(--muted); font-size: .85rem; margin-bottom: 8px; }
.status-item__value { font-weight: 700; }

.chat-preview {
  margin-top: 26px;
  display: grid;
  gap: 12px;
}
.chat-msg {
  max-width: 85%;
  padding: 14px 16px;
  border-radius: 18px;
  font-size: .95rem;
  line-height: 1.5;
}
.chat-msg--bot {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.06);
}
.chat-msg--user {
  justify-self: end;
  background: linear-gradient(135deg, var(--primary), #2759dd);
}

.logos-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}
.logo-pill {
  padding: 14px 18px;
  color: #d7e5ff;
  font-weight: 600;
  border-radius: 999px;
}

.section-head {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 42px;
}
.section-head .eyebrow { margin-inline: auto; }

.cards-grid,
.steps-grid,
.pricing-grid {
  display: grid;
  gap: 20px;
}
.cards-grid--3,
.steps-grid,
.pricing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card,
.step-card,
.pricing-card {
  padding: 28px;
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: rgba(61,123,255,.12);
  font-size: 1.4rem;
  margin-bottom: 18px;
}

.feature-card h3,
.step-card h3,
.pricing-card h3 {
  margin: 0 0 14px;
  font-size: 1.3rem;
  letter-spacing: -.03em;
}

.feature-card p,
.step-card p,
.pricing-card p { color: var(--muted); line-height: 1.7; }

.step-number {
  display: inline-block;
  margin-bottom: 18px;
  font-size: 1rem;
  color: #9fb7dc;
  font-weight: 800;
}

.pricing-card {
  position: relative;
}
.pricing-card--featured {
  transform: translateY(-8px);
  border-color: rgba(94,163,255,.24);
  background: linear-gradient(180deg, rgba(61,123,255,.12), rgba(255,255,255,.03));
}
.pricing-card__label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  color: #d7e5ff;
  font-weight: 700;
  font-size: .82rem;
}
.pricing-card__label--accent {
  background: rgba(61,123,255,.16);
  color: #b7d2ff;
}
.pricing-price {
  margin-bottom: 16px;
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: -.05em;
}
.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 24px 0 28px;
  display: grid;
  gap: 12px;
}
.pricing-card li {
  padding-left: 24px;
  position: relative;
  color: #dce8ff;
}
.pricing-card li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  position: absolute;
  left: 0;
  top: .55em;
  background: var(--primary-strong);
}

.cta-band__inner {
  padding: 75px 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  border-color: rgba(94,163,255,.24);
  background: linear-gradient(180deg, rgba(61,123,255,.12), rgba(255,255,255,.03));
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  gap: 16px;
}
.faq-item {
  padding: 22px 24px;
  transition: border-color .24s ease, background .24s ease, transform .24s ease;
}
.faq-item:hover {
  transform: translateY(-2px);
  border-color: rgba(94,163,255,.16);
}
.faq-item__toggle {
  appearance: none;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font-weight: 700;
  font-size: 1.06rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  text-align: left;
}
.faq-item__toggle::after {
  content: "+";
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-size: 1.15rem;
  color: #dbe7ff;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  transition: transform .28s ease, background .28s ease, border-color .28s ease;
}
.faq-item.faq-item--open {
  border-color: rgba(94,163,255,.22);
  background: linear-gradient(180deg, rgba(61,123,255,.08), rgba(255,255,255,.03));
}
.faq-item.faq-item--open .faq-item__toggle::after {
  transform: rotate(45deg);
  background: rgba(61,123,255,.14);
  border-color: rgba(94,163,255,.22);
}
.faq-item__body {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height .36s cubic-bezier(.2,.8,.2,1), opacity .24s ease;
}
.faq-item.faq-item--open .faq-item__body {
  opacity: 1;
}
.faq-item p {
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.footer {
  padding: 72px 0;
  border-top: 1px solid rgba(255,255,255,.06);
}
.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255,255,255,.06);
  align-items: start;
}
.footer-links {
  display: grid;
  gap: 12px;
  text-align: right;
}
.footer-links a { color: var(--muted); }
.footer-links a:hover { color: var(--text); }
.brand--footer { margin-bottom: 14px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px;
  border: 1px solid transparent;
  border-radius: 16px;
  cursor: pointer;
  font-weight: 700;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn--primary {
  background: linear-gradient(135deg, var(--primary), #2451d7);
  color: white;
  box-shadow: 0 18px 40px rgba(61,123,255,.28);
}
.btn--ghost {
  border-color: rgba(255,255,255,.1);
  background: rgba(255,255,255,.03);
  color: var(--text);
}
.btn--sm { padding: 11px 16px; font-size: .95rem; }
.btn--lg { padding: 16px 22px; font-size: 1rem; }
.btn--full { width: 100%; }

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal--delay { transition-delay: .08s; }
.reveal--delay-2 { transition-delay: .16s; }
.polit {
  padding: 15px 0;
  text-align: center;
  width: 100%;
}
.polit a {
  color: #8ab4ff;
}
@media (max-width: 1024px) {
  .hero-grid,
  .cards-grid--3,
  .steps-grid,
  .pricing-grid,
  .cta-band__inner {
    grid-template-columns: 1fr;
  }

  .hero-grid { gap: 26px; }
  .pricing-card--featured { transform: none; }
  .cta-band__inner { display: grid; }
}

@media (max-width: 820px) {
  .nav-links--desktop { display: none; }
  .nav-toggle { display: inline-flex; }
  .section { padding: 78px 0; }
  .hero { padding-top: 42px; }
  .footer-grid {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-links { text-align: left; }
  body.mobile-nav-open { overflow: hidden; }
}

@media (max-width: 560px) {
  .container { width: min(var(--container), calc(100% - 24px)); }
  .hero-actions { flex-direction: column; }
  .btn--lg, .btn--full { width: 100%; }
  .status-grid { grid-template-columns: 1fr; }
  .feature-card,
  .step-card,
  .pricing-card,
  .status-card,
  .faq-item,
  .cta-band__inner { padding: 22px; }
  .hero h1 { font-size: clamp(2.4rem, 11vw, 4rem); }
}
