:root {
  --bg: #07101f;
  --surface: rgba(255, 255, 255, 0.08);
  --surface-strong: rgba(255, 255, 255, 0.12);
  --text: #f8fbff;
  --muted: #a8b4cf;
  --line: rgba(255, 255, 255, 0.12);
  --accent: #74a7ff;
  --accent-strong: #9f7bff;
  --shadow: 0 30px 80px rgba(4, 8, 20, 0.36);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "IBM Plex Sans", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 10%, rgba(116, 167, 255, 0.18), transparent 24%),
    radial-gradient(circle at 85% 12%, rgba(159, 123, 255, 0.18), transparent 28%),
    linear-gradient(180deg, #07101f 0%, #091225 40%, #08111f 100%);
}

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

img {
  max-width: 100%;
}

.bg-orb {
  position: fixed;
  border-radius: 999px;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

.orb-one {
  top: 80px;
  left: -60px;
  width: 240px;
  height: 240px;
  background: rgba(116, 167, 255, 0.22);
}

.orb-two {
  top: 160px;
  right: -50px;
  width: 320px;
  height: 320px;
  background: rgba(159, 123, 255, 0.18);
}

.page-shell {
  position: relative;
  z-index: 1;
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 16px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 18px 0 0;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(7, 16, 31, 0.62);
  backdrop-filter: blur(22px);
  box-shadow: 0 18px 50px rgba(5, 10, 23, 0.28);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand-logo {
  width: 172px;
  height: auto;
  filter: brightness(0) invert(1);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.site-nav a,
.button,
h1,
h2,
h3,
.footer-wordmark {
  font-family: "Manrope", sans-serif;
}

.site-nav a {
  color: #d6def2;
  font-size: 0.9rem;
  white-space: nowrap;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, #9f7bff, #74a7ff);
  color: #07101f;
  font-weight: 800;
}

.menu-toggle {
  display: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
  gap: 44px;
  align-items: center;
  min-height: calc(100vh - 130px);
  padding: 70px 0 26px;
}

.eyebrow {
  margin: 0 0 14px;
  color: #a8c7ff;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 10ch;
  margin-bottom: 18px;
  font-size: clamp(3.4rem, 7vw, 6rem);
  line-height: 0.93;
  letter-spacing: -0.06em;
}

h2 {
  margin-bottom: 12px;
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.18rem;
}

.hero-text,
.section-heading p,
.step-card p,
.result-card p,
.price-card li,
.cta-copy p,
.site-footer p {
  color: var(--muted);
  line-height: 1.68;
}

.hero-text {
  max-width: 54ch;
  font-size: 1.08rem;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-actions {
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.button:hover,
.button:focus-visible,
.site-nav a:hover,
.nav-cta:hover,
.industry-card:hover,
.about-card:hover,
.step-card:hover,
.result-card:hover,
.price-card:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: linear-gradient(135deg, #9f7bff, #74a7ff);
  color: #07101f;
  box-shadow: 0 18px 42px rgba(116, 167, 255, 0.28);
}

.button-secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

.chat-shell,
.value-strip,
.support-strip,
.step-card,
.result-card,
.about-card,
.industry-card,
.price-card,
.cta-panel,
.site-footer {
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.chat-shell {
  padding: 22px;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06));
  backdrop-filter: blur(28px);
}

.chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.chat-status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #e9efff;
  font-family: "Manrope", sans-serif;
  font-weight: 700;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #4ade80;
  box-shadow: 0 0 0 8px rgba(74, 222, 128, 0.12);
}

.chat-pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #c7d6fb;
  font-size: 0.84rem;
}

.chat-thread {
  display: grid;
  gap: 12px;
}

.chat-bubble {
  max-width: 88%;
  padding: 14px 16px;
  border-radius: 20px;
  line-height: 1.58;
}

.chat-bubble-in {
  background: rgba(255, 255, 255, 0.08);
  color: #edf3ff;
}

.chat-bubble-out {
  justify-self: end;
  background: linear-gradient(135deg, #6c8cff, #9f7bff);
  color: #fff;
}

.top-strip-section {
  padding-top: 30px;
}

.value-strip,
.support-strip,
.steps-grid,
.results-grid,
.about-grid,
.industry-grid,
.pricing-grid {
  display: grid;
  gap: 18px;
}

.value-strip,
.support-strip {
  grid-template-columns: repeat(3, 1fr);
}

.value-strip article,
.support-strip article,
.about-card,
.industry-card,
.step-card,
.result-card,
.price-card {
  padding: 22px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(18px);
}

.support-strip {
  margin-top: 16px;
}

.value-strip strong,
.support-strip strong {
  font: 700 1rem "Manrope", sans-serif;
}

.section {
  padding: 96px 0 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.section-note {
  color: #d8e4ff;
  font-weight: 600;
}

.steps-grid,
.results-grid,
.about-grid,
.pricing-grid {
  grid-template-columns: repeat(3, 1fr);
}

.step-card span,
.result-label,
.plan-name {
  display: inline-block;
  margin-bottom: 14px;
  color: #a8c7ff;
  font: 700 0.76rem "Manrope", sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.result-card strong {
  display: block;
  margin-bottom: 10px;
  font: 800 2rem "Manrope", sans-serif;
}

.about-card h3,
.industry-card {
  margin: 0;
}

.industry-card {
  display: grid;
  place-items: center;
  min-height: 90px;
  font-family: "Manrope", sans-serif;
  font-weight: 700;
}

.price-card h3 {
  margin-bottom: 16px;
  font-size: 2.1rem;
}

.price-card h3 span {
  color: var(--muted);
  font-size: 0.95rem;
}

.price-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.price-card li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
}

.price-card li::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, #74a7ff, #9f7bff);
}

.price-card.featured {
  background: linear-gradient(180deg, rgba(116, 167, 255, 0.14), rgba(255, 255, 255, 0.08));
}

.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 34px;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top left, rgba(116, 167, 255, 0.18), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.05));
  backdrop-filter: blur(20px);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 88px 0 26px;
  padding: 24px 26px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(18px);
}

.footer-wordmark {
  display: block;
  margin-bottom: 10px;
  font-size: 1.05rem;
  letter-spacing: 0.08em;
}

.footer-links {
  display: flex;
  gap: 18px;
  color: var(--muted);
}

.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 560ms ease, transform 560ms ease;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .button,
  .js .reveal,
  .site-nav a,
  .nav-cta,
  .industry-card,
  .about-card,
  .step-card,
  .result-card,
  .price-card {
    transition: none;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  .hero,
  .value-strip,
  .support-strip,
  .steps-grid,
  .results-grid,
  .about-grid,
  .industry-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .site-header {
    flex-wrap: wrap;
    border-radius: 28px;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 14px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--text);
    font: inherit;
  }

  .site-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 8px;
  }

  .site-nav.is-open {
    display: flex;
  }

  .cta-panel,
  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .page-shell {
    width: min(100% - 20px, 1200px);
  }

  .site-header {
    top: 10px;
    padding: 14px;
  }

  .brand-logo {
    width: 154px;
  }

  .hero {
    min-height: auto;
    padding: 30px 0 16px;
  }

  h1 {
    font-size: 2.65rem;
  }

  .chat-shell,
  .value-strip,
  .support-strip,
  .step-card,
  .result-card,
  .about-card,
  .industry-card,
  .price-card,
  .cta-panel,
  .site-footer {
    border-radius: 22px;
  }
}
