:root {
  --background: #f7faf7;
  --surface: #ffffff;
  --mint-soft: #ddf6ea;
  --mint: #5ed6a0;
  --mint-deep: #1aa86f;
  --ink: #17211d;
  --muted: #66736d;
  --border: #d7e3dc;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--background);
  color: var(--ink);
  font-family: "Manrope", Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

main { min-height: 100vh; overflow: hidden; }

.site-header {
  position: relative;
  z-index: 10;
  width: min(100% - 80px, 1440px);
  height: 86px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(215, 227, 220, .72);
}

.wordmark { font-size: 21px; font-weight: 800; letter-spacing: -.035em; }

nav { display: flex; align-items: center; gap: 28px; font-size: 15px; font-weight: 650; }

nav > a:first-child { color: var(--muted); }

.nav-cta {
  padding: 12px 18px;
  border: 1px solid var(--ink);
  border-radius: 11px;
  transition: background .18s ease, color .18s ease, transform .18s ease;
}

.nav-cta:hover, .nav-cta:focus-visible { background: var(--ink); color: #fff; transform: translateY(-2px); }

.hero {
  position: relative;
  min-height: 550px;
  width: min(100% - 80px, 1440px);
  margin: 0 auto;
  padding: 72px 0 64px;
  display: grid;
  grid-template-columns: minmax(430px, .9fr) minmax(560px, 1.1fr);
  gap: 72px;
  align-items: center;
}

.hero-grid {
  position: absolute;
  z-index: -2;
  inset: 2% -12% -8% 43%;
  opacity: .43;
  background-image: linear-gradient(rgba(94,214,160,.14) 1px, transparent 1px), linear-gradient(90deg, rgba(94,214,160,.14) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(circle at center, #000 8%, transparent 69%);
}

.hero-copy { position: relative; z-index: 2; }

.eyebrow {
  margin: 0 0 22px;
  color: var(--mint-deep);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  max-width: 640px;
  font-size: clamp(54px, 5.1vw, 76px);
  line-height: .98;
  letter-spacing: -.062em;
  font-weight: 820;
}

.lede {
  max-width: 560px;
  margin: 25px 0 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.58;
  letter-spacing: -.015em;
}

.hero-actions { display: flex; align-items: center; gap: 18px; margin-top: 32px; flex-wrap: wrap; }

.primary-cta {
  min-height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 0 22px;
  background: var(--ink);
  color: #fff;
  border-radius: 11px;
  font-size: 16px;
  font-weight: 760;
  box-shadow: 0 14px 30px rgba(23,33,29,.14);
  transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
}

.primary-cta:hover, .primary-cta:focus-visible { transform: translateY(-2px); background: #24322c; box-shadow: 0 18px 38px rgba(23,33,29,.2); }
.primary-cta span { font-size: 21px; }

.beta-badge {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 15px;
  color: #087c50;
  background: rgba(221,246,234,.82);
  border: 1px solid #b7e7cf;
  border-radius: 11px;
  font-size: 15px;
  font-weight: 750;
}

.beta-badge span { display: grid; place-items: center; width: 25px; height: 25px; background: #fff; border-radius: 50%; }
.cta-note { margin: 15px 0 0; color: #77837d; font-size: 12.5px; }

.workflow-wrap { position: relative; min-height: 390px; display: grid; place-items: center; }

.orbit { position: absolute; border: 1px solid rgba(94,214,160,.22); border-radius: 50%; }
.orbit-one { width: 560px; height: 560px; }
.orbit-two { width: 420px; height: 420px; }

.workflow-card {
  position: relative;
  z-index: 1;
  width: min(100%, 690px);
  padding: 22px 26px 20px;
  background: rgba(255,255,255,.93);
  border: 1px solid rgba(185,206,194,.9);
  border-radius: 22px;
  box-shadow: 0 24px 60px rgba(23,33,29,.11);
  backdrop-filter: blur(16px);
}

.workflow-topline { display: flex; justify-content: space-between; align-items: center; padding-bottom: 18px; color: var(--muted); font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.live-pill { display: inline-flex; align-items: center; gap: 7px; color: #087c50; padding: 6px 9px; background: var(--mint-soft); border-radius: 999px; }
.live-pill i { width: 7px; height: 7px; background: var(--mint-deep); border-radius: 50%; box-shadow: 0 0 0 4px rgba(26,168,111,.12); }

.workflow-steps { display: grid; grid-template-columns: 1fr 55px 1fr 55px 1fr; align-items: center; }
.flow-step { text-align: center; }
.icon-box { width: 82px; height: 82px; margin: 0 auto 14px; display: grid; place-items: center; background: linear-gradient(145deg, #f8fffb, #e8f8ef); border: 1px solid #b9ddc9; border-radius: 19px; transition: transform .2s ease, border-color .2s ease; }
.flow-step:hover .icon-box { transform: translateY(-3px); border-color: var(--mint); }
.icon-box svg { width: 46px; height: 46px; fill: none; stroke: #2a3932; stroke-width: 2.15; stroke-linecap: round; stroke-linejoin: round; }
.flow-step h2 { margin: 0; font-size: 16px; letter-spacing: -.025em; }
.flow-step p { margin: 5px 0 0; color: var(--muted); font-size: 13px; }
.flow-arrow { display: flex; align-items: center; color: var(--mint); }
.flow-arrow span { flex: 1; border-top: 2px dashed var(--mint); }
.flow-arrow b { margin-left: -2px; font-size: 29px; font-weight: 400; line-height: 0; }

.workflow-proof { margin-top: 22px; padding-top: 16px; display: flex; gap: 22px; justify-content: center; border-top: 1px solid #edf2ef; color: var(--muted); font-size: 11.5px; }
.workflow-proof b { color: var(--ink); }

.demo {
  width: min(100% - 80px, 1440px);
  margin: 0 auto 34px;
  padding: 30px;
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 42px;
  align-items: center;
  background: var(--ink);
  color: #fff;
  border-radius: 22px;
  box-shadow: 0 18px 50px rgba(23,33,29,.13);
}

.demo-copy { padding: 4px 0 4px 8px; }
.demo-copy .eyebrow { margin-bottom: 12px; color: var(--mint); }
.demo-copy h2 { margin: 0; max-width: 480px; font-size: 34px; line-height: 1.08; letter-spacing: -.04em; }
.demo-copy > p:not(.eyebrow) { margin: 17px 0 0; max-width: 500px; color: #c2d0c9; font-size: 15px; line-height: 1.65; }
.demo-copy strong { color: #fff; }
.demo-proof { margin-top: 22px; display: flex; flex-wrap: wrap; gap: 9px; }
.demo-proof span { padding: 8px 10px; color: #bcf2d7; background: rgba(94,214,160,.1); border: 1px solid rgba(94,214,160,.26); border-radius: 999px; font-size: 11.5px; font-weight: 700; }

.video-shell { overflow: hidden; border: 1px solid rgba(255,255,255,.14); border-radius: 16px; background: #0e1713; box-shadow: 0 16px 36px rgba(0,0,0,.24); }
.video-shell video { display: block; width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }

.scope {
  width: min(100% - 80px, 1440px);
  margin: 0 auto 34px;
  padding: 28px 30px;
  display: grid;
  grid-template-columns: 1.05fr 3.25fr;
  gap: 36px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: 0 12px 38px rgba(23,33,29,.055);
}

.scope-intro .eyebrow { margin-bottom: 9px; font-size: 10.5px; }
.scope-intro h2 { margin: 0; max-width: 250px; font-size: 28px; line-height: 1.05; letter-spacing: -.045em; }
.scope-items { display: grid; grid-template-columns: repeat(4, 1fr); }
.scope-items article { min-height: 112px; padding: 4px 22px; border-left: 1px solid var(--border); }
.scope-items article > span { color: var(--mint-deep); font-size: 10px; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.scope-items h3 { margin: 9px 0 6px; font-size: 15px; letter-spacing: -.02em; }
.scope-items p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.48; }
.scope-items .price-card { margin: -10px 0; padding: 14px 18px; border: 0; border-radius: 14px; background: var(--mint-soft); }
.price-card h3 { color: #075d3d; }

footer { width: min(100% - 80px, 1440px); margin: 0 auto; padding: 0 0 28px; display: flex; justify-content: space-between; color: var(--muted); font-size: 12px; }
footer p { margin: 0; }
footer a { color: var(--ink); font-weight: 750; }

@media (max-width: 1100px) {
  .hero { grid-template-columns: 1fr; gap: 42px; padding-top: 52px; }
  .workflow-wrap { min-height: 350px; }
  .demo { grid-template-columns: 1fr; }
  .scope { grid-template-columns: 1fr; }
  .scope-intro h2 { max-width: none; }
}

@media (max-width: 760px) {
  .site-header, .hero, .demo, .scope, footer { width: min(100% - 36px, 1440px); }
  .site-header { height: 72px; }
  .wordmark { font-size: 17px; }
  nav > a:first-child { display: none; }
  .nav-cta { padding: 10px 13px; }
  .hero { padding: 44px 0 42px; grid-template-columns: minmax(0,1fr); }
  h1 { font-size: clamp(48px, 13vw, 66px); }
  .lede { font-size: 17px; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .primary-cta, .beta-badge { width: 100%; }
  .beta-badge { justify-content: center; }
  .workflow-wrap { min-height: 490px; }
  .workflow-card { padding: 19px 18px; }
  .workflow-steps { grid-template-columns: 1fr; gap: 12px; }
  .flow-arrow { width: 2px; height: 23px; margin: 0 auto; flex-direction: column; }
  .flow-arrow span { border-top: 0; border-left: 2px dashed var(--mint); }
  .flow-arrow b { margin: -4px 0 0; transform: rotate(90deg); }
  .icon-box { width: 66px; height: 66px; margin-bottom: 8px; }
  .icon-box svg { width: 38px; height: 38px; }
  .workflow-proof { gap: 10px; flex-wrap: wrap; }
  .demo { padding: 22px 18px; gap: 24px; }
  .demo-copy { padding: 0; }
  .demo-copy h2 { font-size: 29px; }
  .scope { padding: 24px 20px; }
  .scope-items { grid-template-columns: 1fr 1fr; gap: 20px 0; }
  .scope-items article:nth-child(odd) { border-left: 0; }
  .scope-items .price-card { margin: -5px 0 -5px 10px; }
  footer { gap: 16px; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}
