:root {
  --bg: #04070d;
  --bg-deep: #07111a;
  --panel: rgba(11, 18, 29, 0.84);
  --panel-soft: rgba(255, 255, 255, 0.04);
  --panel-strong: rgba(255, 255, 255, 0.07);
  --border: rgba(255, 255, 255, 0.09);
  --border-strong: rgba(255, 255, 255, 0.16);
  --text: #f4f7fb;
  --muted: #9aa6b6;
  --muted-strong: #cdd6e1;
  --accent: #18c86b;
  --accent-bright: #97f6bc;
  --accent-soft: rgba(24, 200, 107, 0.14);
  --accent-border: rgba(24, 200, 107, 0.32);
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
  --radius-xl: 30px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(20, 200, 107, 0.12), transparent 28%),
    radial-gradient(circle at top right, rgba(41, 86, 255, 0.1), transparent 26%),
    linear-gradient(180deg, #07111a 0%, #04070d 35%, #04070d 100%);
}

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

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

button {
  font: inherit;
}

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

.page-shell {
  position: relative;
  overflow: clip;
}

.bg-grid {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.5), transparent 92%);
}

.bg-orb {
  position: absolute;
  width: 34rem;
  height: 34rem;
  border-radius: 999px;
  filter: blur(100px);
  opacity: 0.16;
  pointer-events: none;
}

.bg-orb-left {
  left: -10rem;
  top: 4rem;
  background: #16d26f;
}

.bg-orb-right {
  right: -8rem;
  top: 18rem;
  background: #2567ff;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.section {
  padding: 6.5rem 0;
}

.section-divider {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(4, 7, 13, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav {
  min-height: 5.3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand img {
  width: 164px;
}

.nav-links,
.nav-actions,
.mobile-menu,
.hero-actions,
.hero-inline-proof,
.comparison-cards,
.footer-grid {
  display: flex;
}

.nav-links,
.nav-actions {
  align-items: center;
  gap: 1rem;
}

.nav-links a,
.mobile-menu a,
.footer-grid a {
  color: var(--muted-strong);
  transition: color 180ms ease;
}

.nav-links a:hover,
.mobile-menu a:hover,
.footer-grid a:hover {
  color: var(--text);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border-radius: 999px;
  padding: 0.88rem 1.28rem;
  font-size: 0.95rem;
  font-weight: 800;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

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

.button-primary {
  color: #04110a;
  background: linear-gradient(135deg, #20d773 0%, #9af8bf 100%);
  box-shadow: 0 18px 38px rgba(24, 200, 107, 0.22);
}

.button-primary:hover {
  box-shadow: 0 22px 44px rgba(24, 200, 107, 0.28);
}

.button-ghost {
  color: var(--text);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
}

.button-ghost:hover {
  border-color: var(--border-strong);
  background: rgba(255, 255, 255, 0.05);
}

.button-large {
  padding: 1rem 1.55rem;
}

.menu-toggle,
.mobile-menu {
  display: none;
}

.menu-toggle {
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.3rem;
  color: var(--text);
}

.menu-toggle span {
  width: 1.05rem;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.hero {
  padding-top: 5.5rem;
}

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

.hero-grid {
  align-items: center;
}

.eyebrow,
.section-kicker,
.badge,
.card-tag,
.state-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  width: fit-content;
  border-radius: 999px;
  font-size: 0.84rem;
  letter-spacing: 0.01em;
}

.eyebrow,
.section-kicker,
.card-tag,
.state-label {
  padding: 0.52rem 0.88rem;
  color: var(--muted-strong);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.eyebrow-dot {
  width: 0.58rem;
  height: 0.58rem;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 18px rgba(24, 200, 107, 0.7);
}

h1,
h2,
h3,
strong {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: -0.04em;
}

h1 {
  margin-top: 1.4rem;
  max-width: 11ch;
  font-size: clamp(3.2rem, 7vw, 5.8rem);
  line-height: 0.97;
}

h2 {
  max-width: 13ch;
  font-size: clamp(2.25rem, 4.4vw, 3.8rem);
  line-height: 1.01;
}

h3 {
  font-size: 1.35rem;
  line-height: 1.12;
}

.hero-text,
.section-heading p,
.pain-card p,
.solution-card p,
.compare-card li,
.flow-step p,
.benefit-card p,
.cta-shell p,
.footer-grid p,
.trust-card span,
.micro-copy {
  color: var(--muted);
  line-height: 1.72;
}

.hero-text {
  max-width: 40rem;
  margin: 1.45rem 0 0;
  font-size: 1.08rem;
}

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

.hero-trust {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2.4rem;
}

.trust-card,
.state-card,
.hero-conversation,
.pain-card,
.solution-card,
.compare-card,
.flow-step,
.benefit-card,
.cta-shell,
.sticky-cta {
  border: 1px solid var(--border);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.025)),
    var(--panel);
  box-shadow: var(--shadow);
}

.trust-card {
  padding: 1.1rem 1.15rem;
  border-radius: var(--radius-md);
}

.trust-card strong {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 1rem;
}

.hero-frame {
  display: grid;
  gap: 1rem;
}

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

.state-card {
  min-height: 14rem;
  padding: 1.35rem;
  border-radius: var(--radius-lg);
}

.state-card-muted {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
    rgba(10, 16, 27, 0.88);
}

.state-card-accent {
  border-color: var(--accent-border);
  background:
    radial-gradient(circle at top, rgba(24, 200, 107, 0.14), transparent 55%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.025)),
    rgba(9, 20, 14, 0.88);
}

.state-card h3 {
  margin-top: 0.9rem;
  margin-bottom: 1rem;
}

.state-list {
  display: grid;
  gap: 0.8rem;
}

.state-list li {
  position: relative;
  padding-left: 1.15rem;
  color: var(--muted-strong);
  line-height: 1.6;
}

.state-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62rem;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 999px;
  background: var(--accent);
}

.hero-conversation {
  padding: 1.35rem;
  border-radius: var(--radius-xl);
}

.conversation-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.badge {
  padding: 0.46rem 0.8rem;
  color: var(--muted-strong);
  background: rgba(255, 255, 255, 0.06);
}

.badge-green {
  color: #b8f9d2;
  background: rgba(24, 200, 107, 0.16);
  border: 1px solid rgba(24, 200, 107, 0.22);
}

.badge-soft {
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.chat-flow {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-top: 1.15rem;
}

.bubble {
  max-width: 88%;
  padding: 0.92rem 1rem;
  border-radius: 18px;
  line-height: 1.52;
  font-size: 0.95rem;
}

.bubble-in {
  align-self: flex-start;
  color: var(--muted-strong);
  background: rgba(255, 255, 255, 0.06);
}

.bubble-out {
  align-self: flex-end;
  background: linear-gradient(135deg, rgba(24, 200, 107, 0.2), rgba(24, 200, 107, 0.08));
  border: 1px solid var(--accent-border);
}

.hero-inline-proof {
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.2rem;
}

.proof-pill {
  padding: 0.68rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted-strong);
  font-size: 0.9rem;
}

.section-heading {
  display: grid;
  gap: 1rem;
  margin-bottom: 2.4rem;
}

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

.pain-card {
  padding: 1.5rem;
  border-radius: var(--radius-lg);
}

.pain-card-wide {
  grid-column: span 6;
}

.pain-card:not(.pain-card-wide) {
  grid-column: span 6;
}

.card-tag {
  margin-bottom: 1rem;
}

.solution-stack,
.benefits-stack {
  display: grid;
  gap: 1rem;
}

.solution-card,
.benefit-card {
  padding: 1.4rem;
  border-radius: var(--radius-lg);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
}

.solution-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: var(--accent-soft);
  border: 1px solid var(--accent-border);
  color: var(--accent-bright);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
}

.comparison-cards {
  gap: 1rem;
  align-items: stretch;
}

.compare-card {
  flex: 1;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
}

.compare-card-featured {
  border-color: var(--accent-border);
  background:
    radial-gradient(circle at top, rgba(24, 200, 107, 0.15), transparent 50%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.025)),
    rgba(9, 18, 15, 0.92);
}

.compare-title,
.panel-label {
  color: var(--accent-bright);
  font-size: 0.88rem;
  font-weight: 700;
}

.compare-card h3 {
  margin-top: 0.9rem;
  margin-bottom: 1rem;
}

.compare-list {
  display: grid;
  gap: 0.78rem;
}

.compare-list li {
  position: relative;
  padding-left: 1.2rem;
}

.compare-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.64rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
}

.compare-list-negative li::before {
  background: #ff6d6d;
}

.compare-list-positive li::before {
  background: var(--accent);
}

.flow-shell {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
}

.flow-step {
  padding: 1.45rem;
  border-radius: var(--radius-lg);
  min-height: 15rem;
}

.flow-number {
  width: 2.45rem;
  height: 2.45rem;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 1rem;
  background: var(--accent-soft);
  border: 1px solid var(--accent-border);
  color: var(--accent-bright);
  font-family: "Space Grotesk", sans-serif;
}

.benefits-grid {
  align-items: start;
}

.benefit-card {
  grid-template-columns: 1fr;
}

.cta-section {
  padding-bottom: 9rem;
}

.cta-shell {
  padding: 3rem;
  border-radius: var(--radius-xl);
  text-align: center;
  background:
    radial-gradient(circle at top, rgba(24, 200, 107, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    rgba(10, 17, 28, 0.9);
}

.cta-shell h2,
.cta-shell p {
  margin-left: auto;
  margin-right: auto;
}

.cta-shell p {
  max-width: 42rem;
}

.cta-shell .hero-actions {
  justify-content: center;
}

.site-footer {
  padding: 2rem 0 7rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-grid {
  align-items: start;
  justify-content: space-between;
  gap: 2rem;
}

.footer-grid > div {
  display: grid;
  gap: 0.7rem;
}

.footer-logo {
  width: 154px;
}

.footer-title {
  color: var(--text);
  font-weight: 800;
}

.sticky-cta {
  position: fixed;
  left: 50%;
  bottom: 1.1rem;
  transform: translateX(-50%);
  z-index: 25;
  width: min(calc(100% - 1.5rem), 760px);
  padding: 0.8rem 0.9rem 0.8rem 1.1rem;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  backdrop-filter: blur(18px);
}

.sticky-cta p {
  margin: 0;
  color: var(--muted-strong);
  font-size: 0.95rem;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

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

@media (max-width: 1120px) {
  .nav-links,
  .nav-actions {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .mobile-menu {
    display: none;
    flex-direction: column;
    gap: 0.85rem;
    padding: 0 1rem 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
  }

  .mobile-menu.is-open {
    display: flex;
  }

  .hero-grid,
  .solution-grid,
  .benefits-grid,
  .flow-shell {
    grid-template-columns: 1fr;
  }

  .hero-trust,
  .hero-before-after,
  .comparison-cards,
  .footer-grid {
    flex-direction: column;
  }

  .comparison-cards {
    display: grid;
    grid-template-columns: 1fr;
  }

  .pain-card,
  .pain-card-wide {
    grid-column: span 12;
  }

}

@media (max-width: 820px) {
  .section {
    padding: 5rem 0;
  }

  .hero {
    padding-top: 4.2rem;
  }

  h1,
  h2 {
    max-width: none;
  }

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

  .conversation-top,
  .sticky-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .sticky-cta {
    border-radius: 24px;
  }

  .sticky-cta .button {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 1.25rem), var(--container));
  }

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

  .hero-actions .button {
    width: 100%;
  }

  .cta-shell {
    padding: 2rem 1.15rem;
  }

  .sticky-cta {
    width: calc(100% - 1rem);
    left: 0.5rem;
    right: 0.5rem;
    bottom: 0.5rem;
    transform: none;
  }

  .site-footer {
    padding-bottom: 9rem;
  }
}

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

  .reveal,
  .button,
  .nav-links a,
  .mobile-menu a,
  .footer-grid a {
    transition: none;
  }
}
