:root {
  --bg: #f8fafc;
  --surface: #ffffff;
  --surface-soft: #eef4ff;
  --text: #132238;
  --muted: #64748b;
  --line: #dbe4f0;
  --primary: #6754e8;
  --primary-dark: #4f3bd0;
  --accent: #f5c451;
  --navy: #0f1d2e;
  --navy-2: #16283d;
  --success: #2e9d78;
  --shadow: 0 22px 60px rgba(30, 41, 59, 0.12);
  --radius: 24px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

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

button,
input {
  font: inherit;
}

.container {
  width: min(1160px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(248, 250, 252, 0.86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(219, 228, 240, 0.7);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1rem;
  font-weight: 800;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), #8a72ff);
  border-radius: 14px;
  font-size: 0.82rem;
  box-shadow: 0 10px 25px rgba(103, 84, 232, 0.28);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-weight: 600;
  font-size: 0.92rem;
}

.main-nav a:hover {
  color: var(--primary);
}

.nav-cta {
  padding: 11px 17px;
  color: white !important;
  background: var(--primary);
  border-radius: 12px;
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  margin: 5px;
  background: var(--text);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 100px 0 90px;
  background:
    radial-gradient(circle at 83% 20%, rgba(103, 84, 232, 0.15), transparent 30%),
    radial-gradient(circle at 10% 0%, rgba(245, 196, 81, 0.16), transparent 28%),
    linear-gradient(180deg, #fbfdff, #f5f8fc);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 72px;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.split-copy h2,
.ai-copy h2,
.contact-card h2 {
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(2.8rem, 6vw, 5.6rem);
  margin-bottom: 24px;
}

.hero-copy > p {
  max-width: 670px;
  color: var(--muted);
  font-size: 1.12rem;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin: 34px 0 26px;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 50px;
  padding: 0 22px;
  border: 0;
  border-radius: 14px;
  font-weight: 800;
  cursor: pointer;
  transition: 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: white;
  background: var(--primary);
  box-shadow: 0 15px 30px rgba(103, 84, 232, 0.23);
}

.btn-primary:hover {
  background: var(--primary-dark);
}

.btn-secondary {
  background: white;
  border: 1px solid var(--line);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  color: var(--muted);
  font-size: 0.88rem;
}

.hero-visual {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
}

.phone {
  width: 300px;
  padding: 12px;
  border: 6px solid #1a2431;
  border-radius: 46px;
  background: #131c28;
  box-shadow: 0 35px 80px rgba(24, 37, 55, 0.28);
  transform: rotate(2deg);
}

.phone-top {
  width: 100px;
  height: 22px;
  margin: -4px auto 8px;
  background: #131c28;
  border-radius: 0 0 15px 15px;
}

.phone-screen {
  min-height: 500px;
  padding: 24px 18px;
  border-radius: 34px;
  background: linear-gradient(180deg, #fdfdff, #edf1ff);
}

.screen-head {
  display: flex;
  justify-content: space-between;
  align-items: start;
  margin-bottom: 22px;
}

.screen-head small,
.mini-card small,
.flow-node small,
.ai-features small,
.parsed-card small,
.parsed-card span {
  display: block;
  color: var(--muted);
}

.screen-head h3 {
  font-size: 1.35rem;
}

.date-chip {
  padding: 7px 10px;
  color: var(--primary);
  background: white;
  border: 1px solid var(--line);
  border-radius: 10px;
  font-weight: 800;
  font-size: 0.78rem;
}

.mini-card {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 12px;
  padding: 14px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 16px;
}

.icon {
  font-size: 1.45rem;
}

.progress-block {
  margin: 24px 0;
}

.progress-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.83rem;
}

.progress {
  height: 8px;
  margin-top: 10px;
  overflow: hidden;
  background: #dde4f1;
  border-radius: 99px;
}

.progress span {
  display: block;
  width: 72%;
  height: 100%;
  background: linear-gradient(90deg, var(--primary), #947cff);
}

.screen-button {
  width: 100%;
  min-height: 46px;
  color: white;
  background: var(--primary);
  border: 0;
  border-radius: 13px;
  font-weight: 800;
}

.floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 210px;
  padding: 14px 16px;
  background: rgba(255,255,255,0.94);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.floating-card span {
  font-size: 1.4rem;
}

.floating-card small {
  display: block;
  color: var(--muted);
}

.card-one {
  left: 0;
  top: 85px;
}

.card-two {
  right: -12px;
  bottom: 80px;
}

.section {
  padding: 105px 0;
}

.alt-section {
  background: white;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 56px;
  text-align: center;
}

.section-heading h2,
.split-copy h2,
.ai-copy h2,
.contact-card h2 {
  font-size: clamp(2rem, 4vw, 3.7rem);
  margin-bottom: 18px;
}

.section-heading p,
.split-copy > p,
.ai-copy > p,
.contact-card p {
  color: var(--muted);
  font-size: 1.04rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.info-card {
  min-height: 250px;
  padding: 28px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 16px 40px rgba(30, 41, 59, 0.05);
}

.card-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 22px;
  background: var(--surface-soft);
  border-radius: 16px;
  font-size: 1.4rem;
}

.info-card h3 {
  margin-bottom: 10px;
}

.info-card p {
  color: var(--muted);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.step {
  padding: 30px 26px;
  border-top: 3px solid var(--primary);
  background: #f8faff;
  border-radius: 0 0 20px 20px;
}

.step-no {
  display: block;
  margin-bottom: 28px;
  color: var(--primary);
  font-weight: 800;
}

.step h3 {
  margin-bottom: 10px;
}

.step p {
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 80px;
  align-items: center;
}

.check-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 32px;
  font-weight: 700;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 23px;
  height: 23px;
  display: grid;
  place-items: center;
  color: white;
  background: var(--success);
  border-radius: 50%;
  font-size: 0.8rem;
}

.benefit-panel {
  padding: 26px;
  background: linear-gradient(160deg, #eef3ff, #fff8e7);
  border: 1px solid var(--line);
  border-radius: 30px;
}

.benefit-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px;
  background: rgba(255,255,255,0.82);
  border-radius: 18px;
}

.benefit-row + .benefit-row {
  margin-top: 14px;
}

.benefit-row > span {
  font-size: 1.6rem;
}

.benefit-row small {
  display: block;
  color: var(--muted);
}

.impact-section {
  color: white;
  background:
    radial-gradient(circle at 50% 0%, rgba(103, 84, 232, 0.18), transparent 38%),
    linear-gradient(135deg, var(--navy), #081421);
}

.light h2,
.light p {
  color: white;
}

.light p {
  opacity: 0.72;
}

.impact-flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 22px;
  align-items: stretch;
}

.flow-node {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 230px;
  padding: 28px;
  text-align: center;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 24px;
}

.flow-node > span {
  margin-bottom: 14px;
  font-size: 2.2rem;
}

.flow-node small {
  color: rgba(255,255,255,0.62);
}

.flow-node.featured {
  background: linear-gradient(160deg, rgba(103,84,232,0.9), rgba(76,58,190,0.9));
}

.flow-node.featured > span {
  font-weight: 800;
  font-size: 1.3rem;
}

.flow-arrow {
  display: grid;
  place-items: center;
  font-size: 2rem;
  opacity: 0.65;
}

.ai-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 50%, rgba(103,84,232,0.18), transparent 28%),
    #f6f3ff;
}

.ai-grid {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 72px;
  align-items: center;
}

.badge {
  display: inline-flex;
  margin-right: 12px;
  padding: 7px 11px;
  color: var(--primary);
  background: white;
  border: 1px solid #d9d0ff;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
}

.ai-features {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.ai-features > div {
  padding: 15px 17px;
  background: rgba(255,255,255,0.75);
  border: 1px solid #ded8fb;
  border-radius: 16px;
}

.voice-card {
  padding: 28px;
  background: #121a28;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 28px;
  box-shadow: var(--shadow);
  color: white;
}

.voice-status {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  color: #b9c2d0;
}

.pulse {
  width: 10px;
  height: 10px;
  background: #f75e7d;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(247,94,125,0.55);
  animation: pulse 1.7s infinite;
}

.waveform {
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 18px 0;
}

.waveform span {
  width: 7px;
  background: linear-gradient(#a995ff, #6754e8);
  border-radius: 99px;
  animation: wave 1.2s infinite ease-in-out;
}

.waveform span:nth-child(1),
.waveform span:nth-child(10) { height: 18px; }
.waveform span:nth-child(2),
.waveform span:nth-child(9) { height: 36px; animation-delay: .1s; }
.waveform span:nth-child(3),
.waveform span:nth-child(8) { height: 55px; animation-delay: .2s; }
.waveform span:nth-child(4),
.waveform span:nth-child(7) { height: 75px; animation-delay: .3s; }
.waveform span:nth-child(5),
.waveform span:nth-child(6) { height: 90px; animation-delay: .4s; }

.voice-card blockquote {
  color: #d8deea;
  font-size: 1.05rem;
}

.parsed-card {
  margin-top: 20px;
  padding: 17px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
}

.parsed-card strong {
  display: block;
  margin: 4px 0;
}

.parsed-card small,
.parsed-card span {
  color: #aab5c6;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.stat {
  padding: 30px 24px;
  text-align: center;
  background: white;
  border: 1px solid var(--line);
  border-radius: 22px;
}

.stat strong {
  display: block;
  color: var(--primary);
  font-size: 2rem;
}

.stat span {
  color: var(--muted);
}

.contact-section {
  padding-top: 40px;
}

.contact-card {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
  padding: 54px;
  color: white;
  background: linear-gradient(135deg, #4e39c6, #7a63f0);
  border-radius: 32px;
  box-shadow: 0 30px 70px rgba(79, 59, 208, 0.25);
}

.contact-card .eyebrow,
.contact-card p {
  color: white;
}

.contact-card p {
  opacity: 0.75;
}

.waitlist-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.waitlist-form input {
  min-height: 52px;
  padding: 0 16px;
  border: 0;
  border-radius: 14px;
  outline: none;
}

.waitlist-form .btn {
  background: var(--accent);
  color: #2e260e;
  box-shadow: none;
}

.form-message {
  grid-column: 1 / -1;
  min-height: 24px;
  font-size: 0.88rem;
}

.site-footer {
  margin-top: 110px;
  padding: 64px 0 24px;
  color: #d6dce6;
  background: #0c1623;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 40px;
}

.footer-brand {
  color: white;
}

.footer-grid > div {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-grid p,
.footer-grid a,
.footer-grid span {
  color: #8f9caf;
  font-size: 0.9rem;
}

.footer-grid a:hover {
  color: white;
}

.copyright {
  margin-top: 42px;
  padding-top: 22px;
  color: #768396;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.86rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

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

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

@keyframes pulse {
  70% { box-shadow: 0 0 0 12px rgba(247,94,125,0); }
  100% { box-shadow: 0 0 0 0 rgba(247,94,125,0); }
}

@keyframes wave {
  0%, 100% { transform: scaleY(.55); opacity: .65; }
  50% { transform: scaleY(1); opacity: 1; }
}

@media (max-width: 980px) {
  .main-nav {
    position: absolute;
    top: 76px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 22px;
    background: white;
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow);
  }

  .main-nav.open {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .hero-grid,
  .split,
  .ai-grid,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-copy > p,
  .hero-proof {
    justify-content: center;
    margin-inline: auto;
  }

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

  .grid-4,
  .steps,
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .impact-flow {
    grid-template-columns: 1fr;
  }

  .flow-arrow {
    transform: rotate(90deg);
  }

  .contact-card {
    text-align: center;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, 1160px);
  }

  .hero {
    padding-top: 72px;
  }

  .hero h1 {
    font-size: 2.65rem;
  }

  .hero-actions,
  .waitlist-form {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

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

  .hero-visual {
    min-height: 500px;
  }

  .phone {
    width: 270px;
  }

  .floating-card {
    min-width: 175px;
    padding: 11px 13px;
    font-size: 0.8rem;
  }

  .card-one {
    left: -8px;
  }

  .card-two {
    right: -8px;
  }

  .grid-4,
  .steps,
  .stats-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 78px 0;
  }

  .contact-card {
    padding: 34px 24px;
  }

  .waitlist-form {
    display: grid;
  }
}
