:root {
  --ink: #0e141b;
  --mist: #e9eef2;
  --teal: #0ea5a4;
  --coral: #ff7a59;
  --lime: #b7f171;
  --sand: #f7f3ee;
  --shadow: 0 20px 60px rgba(14, 20, 27, 0.18);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Source Sans 3", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: linear-gradient(135deg, rgba(14, 165, 164, 0.12), rgba(183, 241, 113, 0.18));
  min-height: 100vh;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(circle at 20% 20%, rgba(14, 165, 164, 0.18), transparent 45%),
    radial-gradient(circle at 80% 10%, rgba(255, 122, 89, 0.14), transparent 50%),
    radial-gradient(circle at 15% 70%, rgba(183, 241, 113, 0.14), transparent 55%),
    radial-gradient(circle at 85% 80%, rgba(14, 20, 27, 0.08), transparent 60%),
    repeating-linear-gradient(120deg, rgba(14, 20, 27, 0.025), rgba(14, 20, 27, 0.025) 1px, transparent 1px, transparent 6px);
  z-index: -1;
}

h1,
h2,
h3,
.logo {
  font-family: "Space Grotesk", "Helvetica Neue", Arial, sans-serif;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  line-height: 1.05;
  margin-bottom: 1.2rem;
}

h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 0.8rem;
}

h3 {
  font-size: 1.2rem;
  margin-bottom: 0.4rem;
}

p {
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(14, 20, 27, 0.85);
}

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

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.nav {
  position: sticky;
  top: 0;
  background: rgba(247, 243, 238, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(14, 20, 27, 0.06);
  z-index: 10;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 0;
  gap: 1rem;
}

.logo {
  font-size: 1.6rem;
  font-weight: 700;
}

.hero__brand {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.nav__links {
  display: flex;
  gap: 1.4rem;
  font-size: 0.95rem;
  color: rgba(14, 20, 27, 0.72);
}

.nav__links a:hover {
  color: var(--ink);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn--primary {
  background: var(--ink);
  color: var(--sand);
  box-shadow: 0 12px 30px rgba(14, 20, 27, 0.25);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(14, 20, 27, 0.3);
}

.btn--secondary {
  border-color: rgba(14, 20, 27, 0.2);
  background: rgba(247, 243, 238, 0.7);
}

.btn--secondary:hover,
.btn--ghost:hover {
  border-color: rgba(14, 20, 27, 0.5);
  transform: translateY(-2px);
}

.btn--ghost {
  border-color: rgba(14, 20, 27, 0.15);
  background: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.hero {
  padding: 5.5rem 0 4.5rem;
}

.hero__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 3rem;
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  font-weight: 600;
  color: rgba(14, 20, 27, 0.55);
  margin-bottom: 1rem;
}

.lead {
  font-size: 1.15rem;
  margin-bottom: 1.8rem;
}

.hero__cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.6rem;
}

.trust {
  font-size: 0.9rem;
  color: rgba(14, 20, 27, 0.55);
}

.hero__panel {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 24px;
  padding: 2rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(14, 20, 27, 0.06);
}

.panel__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  margin-bottom: 1.6rem;
}

.pill {
  background: rgba(14, 165, 164, 0.15);
  color: var(--teal);
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  font-size: 0.75rem;
}

.panel__metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.metric__label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(14, 20, 27, 0.45);
}

.metric__value {
  font-size: 1.4rem;
  font-weight: 600;
  margin-top: 0.4rem;
}

.panel__chart {
  background: var(--mist);
  border-radius: 16px;
  padding: 1.4rem;
  margin-bottom: 1.2rem;
}

.chart__line {
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--teal), var(--lime));
  margin-bottom: 1rem;
}

.chart__bars {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.4rem;
  align-items: end;
  height: 80px;
}

.chart__bars span {
  display: block;
  background: rgba(14, 20, 27, 0.2);
  border-radius: 8px 8px 4px 4px;
}

.chart__bars span:nth-child(1) {
  height: 35%;
}

.chart__bars span:nth-child(2) {
  height: 52%;
  background: rgba(14, 165, 164, 0.4);
}

.chart__bars span:nth-child(3) {
  height: 68%;
}

.chart__bars span:nth-child(4) {
  height: 44%;
  background: rgba(183, 241, 113, 0.6);
}

.chart__bars span:nth-child(5) {
  height: 78%;
}

.chart__bars span:nth-child(6) {
  height: 60%;
  background: rgba(255, 122, 89, 0.45);
}

.panel__footer {
  font-size: 0.75rem;
  color: rgba(14, 20, 27, 0.45);
}

.section {
  padding: 4.5rem 0;
}

.section.alt {
  background: rgba(247, 243, 238, 0.7);
  border-top: 1px solid rgba(14, 20, 27, 0.05);
  border-bottom: 1px solid rgba(14, 20, 27, 0.05);
}

.section__head {
  max-width: 640px;
  margin-bottom: 2.4rem;
}

.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2.5rem;
  align-items: center;
}

.list {
  list-style: none;
  display: grid;
  gap: 1.2rem;
}

.list li {
  background: rgba(255, 255, 255, 0.75);
  padding: 1.1rem 1.3rem;
  border-radius: 16px;
  border: 1px solid rgba(14, 20, 27, 0.06);
  box-shadow: 0 10px 22px rgba(14, 20, 27, 0.06);
}

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

.card {
  background: rgba(255, 255, 255, 0.85);
  padding: 1.6rem;
  border-radius: 18px;
  border: 1px solid rgba(14, 20, 27, 0.06);
  box-shadow: 0 12px 28px rgba(14, 20, 27, 0.08);
}

.note {
  margin-top: 1.8rem;
  font-size: 0.95rem;
  color: rgba(14, 20, 27, 0.65);
}

.dashboard {
  background: rgba(14, 20, 27, 0.9);
  color: var(--sand);
  padding: 2.5rem;
  border-radius: 24px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 1.5rem;
}

.dashboard__title {
  font-size: 1.4rem;
  font-weight: 600;
}

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

.dashboard__metric {
  background: rgba(255, 255, 255, 0.08);
  padding: 1rem;
  border-radius: 14px;
}

.dashboard__metric span {
  font-size: 0.8rem;
  color: rgba(247, 243, 238, 0.7);
}

.dashboard__metric strong {
  font-size: 1.4rem;
  display: block;
  margin-top: 0.4rem;
}

.dashboard__chart {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.spark {
  height: 80px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(14, 165, 164, 0.4), rgba(183, 241, 113, 0.15));
  position: relative;
  overflow: hidden;
}

.spark::after {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 10px;
  border: 2px dashed rgba(247, 243, 238, 0.35);
}

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

.price-card {
  background: rgba(255, 255, 255, 0.9);
  padding: 2rem;
  border-radius: 20px;
  border: 1px solid rgba(14, 20, 27, 0.06);
  box-shadow: 0 18px 40px rgba(14, 20, 27, 0.08);
}

.price-card ul {
  list-style: none;
  margin-top: 1.6rem;
  display: grid;
  gap: 0.8rem;
}

.price-card li {
  font-size: 0.98rem;
  color: rgba(14, 20, 27, 0.75);
}

.price-card__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
}

.featured {
  border-color: rgba(14, 165, 164, 0.4);
  box-shadow: 0 24px 50px rgba(14, 165, 164, 0.2);
  transform: translateY(-12px);
}

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

.roadmap__item {
  background: rgba(255, 255, 255, 0.85);
  padding: 1.4rem;
  border-radius: 16px;
  border: 1px solid rgba(14, 20, 27, 0.06);
  font-weight: 600;
  text-align: center;
}

.faq {
  display: grid;
  gap: 1.5rem;
}

.faq__item {
  background: rgba(255, 255, 255, 0.8);
  padding: 1.6rem;
  border-radius: 18px;
  border: 1px solid rgba(14, 20, 27, 0.06);
}

.demo {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2.5rem;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 24px;
  border: 1px solid rgba(14, 20, 27, 0.06);
}

.demo__embed {
  margin-top: 2rem;
}

.calendly-wrapper {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 24px;
  border: 1px solid rgba(14, 20, 27, 0.06);
  box-shadow: var(--shadow);
  overflow: hidden;
  min-height: 720px;
}

.calendly-inline-widget {
  width: 100%;
  min-width: 320px;
  height: 720px;
}

.embed-fallback {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: rgba(14, 20, 27, 0.6);
}

.embed-fallback a {
  color: rgba(14, 20, 27, 0.8);
  text-decoration: underline;
  word-break: break-word;
}

.footer {
  padding: 2.5rem 0 3.5rem;
  font-size: 0.95rem;
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(14, 20, 27, 0.08);
  padding-top: 1.6rem;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

body.hero-ready .hero__copy,
body.hero-ready .hero__panel {
  opacity: 1;
  transform: translateY(0);
}

.hero__copy,
.hero__panel {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

@media (max-width: 960px) {
  .hero__grid,
  .split,
  .cards,
  .pricing,
  .roadmap,
  .dashboard__grid {
    grid-template-columns: 1fr;
  }

  .nav__links {
    display: none;
  }

  .hero {
    padding-top: 4rem;
  }

  .hero__panel {
    order: -1;
  }

  .panel__metrics {
    grid-template-columns: 1fr;
  }

  .dashboard__chart {
    grid-template-columns: 1fr;
  }

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

  .calendly-wrapper {
    min-height: 860px;
  }

  .calendly-inline-widget {
    height: 860px;
  }

  .featured {
    transform: none;
  }
}

@media (max-width: 600px) {
  .nav__inner {
    padding: 1rem 0;
  }

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

  .footer__inner {
    flex-direction: column;
    gap: 0.6rem;
  }
}
