:root {
  --bg: #07111f;
  --bg-soft: #0d1727;
  --panel: rgba(18, 29, 47, 0.88);
  --panel-strong: #142238;
  --panel-elevated: rgba(28, 42, 66, 0.92);
  --text: #f3f7fb;
  --muted: #9aabc1;
  --muted-strong: #c6d3e5;
  --border: rgba(110, 140, 184, 0.22);
  --accent: #2f80ed;
  --accent-2: #14b8a6;
  --success: #22c55e;
  --success-strong: #16a34a;
  --shadow: 0 28px 70px rgba(0, 0, 0, 0.35);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 18px;
  --radius-sm: 14px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Inter", system-ui, sans-serif;
  line-height: 1.65;
  background:
    radial-gradient(900px 520px at 5% 0%, rgba(47, 128, 237, 0.20), transparent 60%),
    radial-gradient(900px 520px at 100% 0%, rgba(20, 184, 166, 0.14), transparent 55%),
    linear-gradient(180deg, #07111f 0%, #091423 100%);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

img {
  display: block;
  max-width: 100%;
}

.page-orb {
  position: fixed;
  width: 420px;
  height: 420px;
  border-radius: 999px;
  filter: blur(90px);
  opacity: 0.3;
  pointer-events: none;
  z-index: 0;
}

.page-orb-left {
  top: -80px;
  left: -120px;
  background: rgba(47, 128, 237, 0.35);
}

.page-orb-right {
  top: 120px;
  right: -140px;
  background: rgba(20, 184, 166, 0.25);
}

.container,
.container-fluid {
  position: relative;
  z-index: 1;
}

.section-block {
  padding: 5.75rem 0;
}

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

.container-narrow {
  max-width: 920px;
}

.glass-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.eyebrow {
  margin: 0 0 0.85rem;
  color: #7ec9ff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-head {
  max-width: 780px;
  margin: 0 auto 3rem;
}

.section-head.compact {
  max-width: 860px;
  margin-bottom: 1.75rem;
}

.section-title {
  margin: 0;
  color: var(--text);
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.section-copy {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.site-header {
  background: rgba(7, 17, 31, 0.74);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.site-header .container {
  padding-top: 0.85rem;
  padding-bottom: 0.85rem;
}

.navbar-brand.brand-lockup {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: linear-gradient(135deg, rgba(47, 128, 237, 0.95), rgba(20, 184, 166, 0.78));
  color: #ffffff;
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  box-shadow: 0 16px 34px rgba(47, 128, 237, 0.25);
}

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

.brand-name {
  color: var(--text);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.brand-tag {
  color: var(--muted);
  font-size: 0.84rem;
}

.nav-links {
  gap: 0.4rem;
}

.nav-link {
  color: var(--muted-strong);
  font-weight: 500;
}

.nav-link:hover,
.nav-link:focus {
  color: #ffffff;
}

.nav-cta {
  margin-left: 0.75rem;
}

.navbar-toggler {
  border-color: rgba(255, 255, 255, 0.2);
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler-icon {
  filter: invert(1);
}

.btn {
  border-radius: 12px;
  font-weight: 700;
  padding: 0.82rem 1.3rem;
}

.btn-primary {
  --bs-btn-bg: var(--success);
  --bs-btn-border-color: var(--success);
  --bs-btn-hover-bg: var(--success-strong);
  --bs-btn-hover-border-color: var(--success-strong);
  --bs-btn-focus-shadow-rgb: 34, 197, 94;
  color: #07111f;
}

.btn-outline-secondary {
  --bs-btn-color: #eff5fb;
  --bs-btn-border-color: rgba(139, 158, 185, 0.28);
  --bs-btn-hover-color: #ffffff;
  --bs-btn-hover-bg: rgba(255, 255, 255, 0.06);
  --bs-btn-hover-border-color: rgba(139, 158, 185, 0.44);
  --bs-btn-focus-shadow-rgb: 126, 174, 232;
  background: rgba(255, 255, 255, 0.02);
}

.hero-section {
  padding: 9.5rem 0 5.2rem;
}

.hero-copy {
  max-width: 620px;
}

.display-heading {
  margin: 0;
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: clamp(3rem, 5vw, 5.3rem);
  line-height: 0.96;
  letter-spacing: -0.06em;
}

.hero-subcopy {
  margin: 1.4rem 0 0;
  color: var(--muted);
  font-size: 1.15rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.6rem;
}

.info-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.7rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(138, 159, 190, 0.14);
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted-strong);
  font-size: 0.9rem;
  font-weight: 600;
}

.hero-stats {
  margin-top: 2rem;
}

.stat-card {
  height: 100%;
  padding: 1.2rem 1.15rem;
}

.stat-card strong {
  display: block;
  color: #ffffff;
  font-size: 1rem;
  margin-bottom: 0.55rem;
}

.stat-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.showcase-shell {
  position: relative;
  max-width: 610px;
  margin: 0 auto;
  padding: 1.4rem 0 3rem;
}

.showcase-frame {
  padding: 1rem;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(23, 35, 54, 0.95), rgba(12, 20, 34, 0.96));
}

.showcase-frame img {
  width: 100%;
  border-radius: 22px;
}

.floating-note {
  position: absolute;
  width: min(280px, 62%);
  padding: 1rem 1rem 1.05rem;
  border: 1px solid rgba(138, 159, 190, 0.18);
  border-radius: 18px;
  background: rgba(12, 22, 37, 0.94);
  box-shadow: 0 22px 40px rgba(0, 0, 0, 0.35);
}

.floating-note-top {
  top: 0;
  right: -1rem;
}

.floating-note-bottom {
  bottom: 0;
  left: -1rem;
}

.floating-label,
.path-pill,
.pricing-label,
.video-kicker {
  display: inline-flex;
  align-items: center;
  margin-bottom: 0.7rem;
  padding: 0.4rem 0.72rem;
  border-radius: 999px;
  color: #94f2e9;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: rgba(20, 184, 166, 0.1);
  border: 1px solid rgba(20, 184, 166, 0.22);
}

.floating-note strong {
  display: block;
  font-size: 1rem;
  line-height: 1.45;
}

.role-strip {
  padding: 1.5rem 0 4rem;
}

.role-cloud {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.9rem;
}

.role-cloud span {
  display: inline-flex;
  align-items: center;
  padding: 0.85rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(138, 159, 190, 0.12);
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted-strong);
  font-weight: 600;
}

.path-card,
.step-card,
.workflow-card,
.video-card,
.pricing-panel,
.cta-panel {
  height: 100%;
  padding: 1.55rem;
}

.path-card-featured {
  background:
    linear-gradient(180deg, rgba(28, 42, 66, 0.95), rgba(16, 27, 43, 0.95));
}

.path-card h3,
.step-card h3,
.workflow-copy h3 {
  margin: 0 0 0.7rem;
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: 1.55rem;
  line-height: 1.08;
}

.path-card p,
.step-card p,
.workflow-copy p,
.pricing-panel p,
.cta-panel p {
  margin: 0;
  color: var(--muted);
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 1.2rem 0 0;
}

.feature-list li {
  position: relative;
  padding-left: 1.6rem;
  margin-bottom: 0.8rem;
  color: var(--muted-strong);
}

.feature-list li::before {
  content: "";
  position: absolute;
  top: 0.55rem;
  left: 0.15rem;
  width: 0.58rem;
  height: 0.58rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
}

.step-card {
  padding-top: 1.35rem;
}

.step-index {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(47, 128, 237, 0.12);
  border: 1px solid rgba(47, 128, 237, 0.22);
  color: #8ecbff;
  font-weight: 800;
  margin-bottom: 1rem;
}

.workflow-card {
  overflow: hidden;
}

.workflow-card img {
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.workflow-copy {
  margin-top: 1.2rem;
}

.video-card {
  padding-bottom: 1.2rem;
}

.video-card .ratio {
  overflow: hidden;
  border-radius: 16px;
}

.video-card iframe {
  border: 0;
}

.pricing-copy {
  margin: 0;
}

.pricing-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.4rem;
}

.pricing-number {
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: clamp(2.8rem, 5vw, 4rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.pricing-number span {
  font-size: 1.05rem;
  letter-spacing: 0;
  color: var(--muted);
}

.pricing-badge {
  align-self: flex-start;
  padding: 0.6rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(34, 197, 94, 0.22);
  background: rgba(34, 197, 94, 0.12);
  color: #b5f4c9;
  font-weight: 700;
}

.pricing-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-top: 1.4rem;
}

.pricing-footer p {
  max-width: 420px;
}

.faq-shell .accordion-item {
  margin-bottom: 1rem;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--panel);
  overflow: hidden;
}

.faq-shell .accordion-button {
  background: transparent;
  color: #f6fbff;
  font-weight: 700;
  box-shadow: none;
}

.faq-shell .accordion-button:not(.collapsed) {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.03);
}

.faq-shell .accordion-button::after {
  filter: invert(1) brightness(1.4);
}

.faq-shell .accordion-body {
  color: var(--muted);
}

.cta-panel {
  padding: 2.4rem;
}

.site-footer {
  padding: 2.5rem 0 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(7, 17, 31, 0.78);
}

.footer-shell {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.25rem;
  align-items: center;
}

.footer-brand {
  margin: 0;
  font-weight: 700;
  color: #ffffff;
}

.footer-copy {
  margin: 0.4rem 0 0;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.4rem;
}

.footer-links a {
  color: var(--muted-strong);
}

.footer-links a:hover,
.footer-links a:focus {
  color: #ffffff;
}

:focus-visible {
  outline: 3px solid rgba(126, 174, 232, 0.45);
  outline-offset: 2px;
}

@media (max-width: 991px) {
  .hero-section {
    padding-top: 8rem;
  }

  .site-header .navbar-collapse {
    margin-top: 0.85rem;
    padding: 1rem;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: rgba(8, 16, 28, 0.96);
  }

  .nav-links {
    align-items: stretch !important;
    gap: 0.4rem;
  }

  .nav-item,
  .nav-links .btn {
    width: 100%;
  }

  .nav-link {
    padding-left: 0;
    padding-right: 0;
  }

  .showcase-shell {
    padding-bottom: 5rem;
  }

  .floating-note-top {
    right: 0;
  }

  .floating-note-bottom {
    left: 0;
  }

  .nav-cta {
    margin-left: 0;
  }

  .nav-links {
    padding-top: 1rem;
  }
}

@media (max-width: 767px) {
  .section-block {
    padding: 4.25rem 0;
  }

  .display-heading {
    font-size: clamp(2.6rem, 10vw, 4rem);
  }

  .section-title {
    font-size: clamp(2rem, 9vw, 2.8rem);
  }

  .hero-actions,
  .pricing-footer,
  .footer-links {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn,
  .pricing-footer .btn {
    width: 100%;
  }

  .showcase-shell {
    padding-bottom: 1rem;
  }

  .floating-note {
    position: static;
    width: 100%;
    margin-top: 1rem;
  }

  .site-header .container {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
  }

  .footer-shell {
    text-align: center;
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
