:root {
  --ink: #173c35;
  --ink-2: #244d45;
  --forest: #0e5a47;
  --mint: #d9f2e8;
  --mint-2: #eef8f3;
  --cream: #fbfaf6;
  --coral: #ef6a52;
  --white: #fff;
  --muted: #5b6f69;
  --line: #dce7e2;
  --shadow: 0 20px 60px rgba(20, 60, 52, 0.12);
  --radius: 24px;
  --max: 1180px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font:
    17px/1.72 Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
}
a {
  color: inherit;
}
img {
  display: block;
  max-width: 100%;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 1000;
  padding: 10px 14px;
  background: #fff;
  transform: translateY(-150%);
}
.skip-link:focus {
  transform: none;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 250, 246, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(23, 60, 53, 0.09);
}
.nav-wrap {
  width: min(var(--max), calc(100% - 40px));
  height: 78px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 19px;
  font-weight: 750;
  text-decoration: none;
  letter-spacing: -0.025em;
}
.brand b {
  color: var(--coral);
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: var(--ink);
  color: #fff;
  font:
    800 20px/1 Georgia,
    serif;
}
.nav-wrap nav {
  display: flex;
  align-items: center;
  gap: 27px;
}
.nav-wrap nav > a:not(.button) {
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}
.nav-wrap nav > a:hover {
  color: var(--coral);
}
.nav-toggle {
  display: none;
  border: 0;
  background: none;
  padding: 8px;
}
.nav-toggle span:not(.sr-only) {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px;
  background: var(--ink);
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 15px 24px;
  text-decoration: none;
  font-weight: 800;
  line-height: 1.2;
  transition:
    transform 0.2s,
    box-shadow 0.2s,
    background 0.2s;
}
.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(20, 60, 52, 0.18);
}
.button small {
  display: block;
  font-size: 11px;
  font-weight: 600;
  opacity: 0.82;
}
.button-small {
  padding: 11px 18px;
  background: var(--ink);
  color: #fff;
  font-size: 14px;
}
.button-primary {
  background: var(--coral);
  color: #fff;
  box-shadow: 0 10px 24px rgba(239, 106, 82, 0.24);
}
.button-secondary {
  border-color: rgba(23, 60, 53, 0.22);
  background: rgba(255, 255, 255, 0.7);
}
.button-white {
  background: #fff;
  color: var(--ink);
}
.hero {
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 20%, #d9f2e8 0, rgba(217, 242, 232, 0) 33%),
    linear-gradient(180deg, #f4f7f2 0, var(--cream) 100%);
}
.hero-grid {
  width: min(var(--max), calc(100% - 40px));
  min-height: 720px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.03fr 0.97fr;
  align-items: center;
  gap: 70px;
  padding: 70px 0;
}
.eyebrow {
  margin: 0 0 14px;
  color: var(--coral);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.eyebrow.light {
  color: #aee2cf;
}
.hero h1 {
  max-width: 760px;
  margin: 0;
  font:
    700 clamp(45px, 5.8vw, 78px) / 0.99 Georgia,
    "Times New Roman",
    serif;
  letter-spacing: -0.048em;
}
.lead {
  max-width: 720px;
  margin: 27px 0;
  font-size: 19px;
  line-height: 1.65;
  color: var(--ink-2);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 30px 0 12px;
}
.hero-actions .button-primary {
  flex-direction: column;
}
.microcopy {
  font-size: 12px;
  color: var(--muted);
}
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 22px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
  font-size: 13px;
  font-weight: 750;
}
.trust-row li:before {
  content: "✓";
  margin-right: 7px;
  color: var(--forest);
}
.hero-visual {
  position: relative;
  margin: 0;
}
.hero-visual:before {
  content: "";
  position: absolute;
  inset: -20px 30px 20px -20px;
  border: 1px solid rgba(23, 60, 53, 0.15);
  border-radius: 48% 52% 42% 58%/55% 40% 60% 45%;
  transform: rotate(-4deg);
}
.hero-visual img {
  position: relative;
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: center;
  border-radius: 48% 52% 42% 58%/55% 40% 60% 45%;
  filter: saturate(0.8) contrast(1.04);
  box-shadow: var(--shadow);
}
.hero-visual figcaption {
  position: absolute;
  right: -14px;
  bottom: 45px;
  width: min(310px, 84%);
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 16px;
  box-shadow: var(--shadow);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
}
.live-dot {
  display: inline-block;
  width: 9px;
  height: 9px;
  margin-right: 8px;
  border-radius: 50%;
  background: #2cb67d;
  box-shadow: 0 0 0 5px rgba(44, 182, 125, 0.14);
}
.disclosure {
  width: min(var(--max), calc(100% - 40px));
  margin: 26px auto -10px;
  padding: 18px 23px;
  border: 1px solid #eadfcd;
  border-radius: 14px;
  background: #fff9e9;
  color: #594d39;
  font-size: 13px;
  line-height: 1.55;
}
.section {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 105px 0;
}
.section-tint {
  width: 100%;
  max-width: none;
  padding-left: max(20px, calc((100% - var(--max)) / 2));
  padding-right: max(20px, calc((100% - var(--max)) / 2));
  background: var(--mint-2);
}
.section-intro {
  max-width: 800px;
  margin: 0 auto 50px;
  text-align: center;
}
.section-intro h2,
.demo-section h2,
.image-band h2,
.final-cta h2 {
  margin: 0 0 18px;
  font:
    700 clamp(36px, 4.6vw, 58px) / 1.06 Georgia,
    "Times New Roman",
    serif;
  letter-spacing: -0.035em;
}
.section-intro > p:last-child {
  color: var(--muted);
}
.answer-card {
  max-width: 930px;
  margin: auto;
  padding: 42px 48px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 15px 45px rgba(20, 60, 52, 0.06);
  font-size: 18px;
}
.answer-card p {
  margin: 0;
}
.answer-card p + p {
  margin-top: 20px;
}
.comparison {
  overflow-x: auto;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 14px 35px rgba(20, 60, 52, 0.06);
}
table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
}
th,
td {
  padding: 20px 22px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
thead th {
  background: var(--ink);
  color: #fff;
  font-size: 14px;
}
tbody th {
  font-size: 14px;
}
tbody td {
  font-size: 14px;
  color: var(--muted);
}
tbody tr:last-child > * {
  border-bottom: 0;
}
.prose-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-top: 55px;
}
.prose-grid h3,
.use-case-feature h3,
.card h3,
.price-card h3,
.calculator h3,
.prose-wide h3 {
  margin: 0 0 12px;
  font:
    700 27px/1.2 Georgia,
    serif;
}
.prose-grid p,
.card p,
.use-case-feature p {
  color: var(--muted);
}
.use-case-feature {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
  gap: 65px;
  margin-bottom: 42px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: #fff;
}
.use-case-feature img {
  height: 440px;
  width: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 20px;
  filter: saturate(0.72) sepia(0.08);
}
.cards {
  display: grid;
  gap: 22px;
}
.cards.three {
  grid-template-columns: repeat(3, 1fr);
}
.card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
}
.card-number {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 30px;
  border-radius: 50%;
  background: var(--mint);
  font-size: 12px;
  font-weight: 850;
}
.card h3 {
  font-size: 23px;
}
.note {
  margin-top: 26px;
  padding: 25px 30px;
  border-left: 4px solid var(--coral);
  border-radius: 0 14px 14px 0;
  background: #fff4f0;
  color: #674a42;
}
.demo-section {
  max-width: 1400px;
  margin: auto;
  padding: 95px max(20px, calc((100% - var(--max)) / 2));
  background: var(--ink);
  color: #fff;
  border-radius: 34px;
}
.demo-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 80px;
  align-items: center;
}
.demo-grid > div > p:not(.eyebrow) {
  color: #d3e3de;
}
.steps {
  margin: 35px 0 0;
  padding: 0;
  list-style: none;
}
.steps li {
  display: flex;
  gap: 18px;
  margin: 20px 0;
}
.steps li > span {
  flex: 0 0 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #2a655a;
  color: #fff;
  font-weight: 800;
}
.steps strong {
  display: block;
}
.steps p {
  margin: 3px 0;
  color: #bfd3cd;
  font-size: 14px;
}
.demo-card {
  padding: 42px;
  text-align: center;
  border-radius: 24px;
  background: var(--coral);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}
.headphones {
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: #fff;
  color: var(--coral);
  font-size: 36px;
}
.demo-card h3 {
  margin: 0;
  font:
    700 30px/1.2 Georgia,
    serif;
}
.demo-card > p {
  color: #fff !important;
}
.demo-card .button {
  width: 100%;
  margin-top: 12px;
}
.demo-privacy {
  font-size: 11px;
}
.checklist {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.checklist > div {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 13px;
  align-items: start;
  padding: 21px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: #fff;
}
.checklist span {
  font-weight: 850;
  color: var(--coral);
}
.checklist p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}
.checklist strong {
  color: var(--ink);
}
.cost-grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 28px;
}
.price-card,
.calculator {
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
}
.price-card h3 strong {
  display: block;
  margin: 10px 0;
  color: var(--forest);
  font-size: 38px;
}
.price-card > p {
  color: var(--muted);
}
.text-link {
  font-weight: 800;
  color: var(--forest);
}
.coupon {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  margin: 30px 0 12px;
  padding: 18px;
  border: 1px dashed var(--coral);
  border-radius: 14px;
  background: #fff7f4;
}
.coupon span {
  grid-column: 1/-1;
  font-size: 12px;
  font-weight: 800;
}
.coupon code {
  font-size: 18px;
  font-weight: 800;
}
.coupon button {
  border: 0;
  border-radius: 9px;
  background: var(--ink);
  color: #fff;
  font-weight: 750;
  cursor: pointer;
}
.price-card small {
  color: var(--muted);
}
.calculator label {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  margin: 26px 0;
  font-weight: 700;
}
.range-output {
  color: var(--coral);
}
.calculator input {
  grid-column: 1/-1;
  width: 100%;
  accent-color: var(--coral);
}
.result {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px 20px;
  margin-top: 32px;
  padding: 22px;
  border-radius: 15px;
  background: var(--mint-2);
}
.result span {
  font-size: 14px;
}
.result strong {
  font-size: 20px;
}
.timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.timeline article {
  padding: 27px;
  border-top: 3px solid var(--coral);
  background: #fff;
  box-shadow: 0 10px 30px rgba(20, 60, 52, 0.06);
}
.timeline span {
  font-size: 11px;
  font-weight: 850;
  color: var(--coral);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.timeline h3 {
  margin: 10px 0;
  font:
    700 23px/1.2 Georgia,
    serif;
}
.timeline p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}
.image-band {
  width: min(1400px, calc(100% - 32px));
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  background: var(--forest);
  color: #fff;
  border-radius: 34px;
  overflow: hidden;
}
.image-band img {
  width: 100%;
  height: 100%;
  min-height: 570px;
  object-fit: cover;
  filter: saturate(0.75) contrast(1.05);
}
.image-band > div {
  padding: 70px;
}
.image-band > div p:not(.eyebrow) {
  color: #d3e8df;
}
.prose-wide {
  max-width: 880px;
  margin: auto;
}
.prose-wide > p {
  color: var(--muted);
}
.prose-wide h3 {
  margin-top: 35px;
}
.source-callout {
  max-width: 880px;
  margin: 45px auto 0;
  padding: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: #fff;
}
.source-callout strong {
  width: 100%;
}
.source-callout a {
  color: var(--forest);
  font-size: 14px;
  font-weight: 750;
}
.faq-list {
  max-width: 900px;
  margin: auto;
}
.faq-list details {
  border-bottom: 1px solid #cbdcd5;
  padding: 0;
}
.faq-list summary {
  cursor: pointer;
  padding: 22px 36px 22px 0;
  font-weight: 800;
  list-style: none;
  position: relative;
}
.faq-list summary:after {
  content: "+";
  position: absolute;
  right: 8px;
  font-size: 25px;
  font-weight: 400;
}
.faq-list details[open] summary:after {
  content: "−";
}
.faq-list p {
  margin: 0 0 24px;
  color: var(--muted);
}
.final-cta {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 72px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: center;
  border-radius: 32px;
  background: var(--coral);
  color: #fff;
}
.final-cta > div:last-child {
  text-align: center;
}
.final-cta .button {
  width: 100%;
}
.registration-link {
  display: block;
  margin: 18px 0;
  color: #fff;
  font-weight: 800;
}
.final-cta > div > p:not(.eyebrow) {
  color: #ffe6df;
}
.final-cta > div:last-child p {
  font-size: 11px;
}
.legal {
  font-size: 15px;
}
.legal-details {
  max-width: 900px;
  margin: 14px auto;
  padding: 20px 24px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
}
.legal-details summary {
  cursor: pointer;
  font-weight: 800;
}
.legal-details > div {
  padding-top: 16px;
  color: var(--muted);
}
footer {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto 90px;
  padding: 60px 0;
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 50px;
  border-top: 1px solid var(--line);
  font-size: 14px;
}
footer > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
}
footer p {
  color: var(--muted);
}
footer a:not(.brand) {
  color: var(--muted);
  text-decoration: none;
}
.sticky-cta {
  position: fixed;
  left: 50%;
  bottom: 16px;
  z-index: 90;
  width: min(580px, calc(100% - 24px));
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 9px 10px 9px 20px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(23, 60, 53, 0.96);
  color: #fff;
  box-shadow: 0 14px 50px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(12px);
}
.sticky-cta span {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}
.sticky-cta small {
  opacity: 0.72;
}
.sticky-cta .button {
  padding: 12px 19px;
  font-size: 14px;
}
.automation-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.automation-grid article {
  padding: 34px;
  border: 1px solid var(--line);
  border-top: 4px solid var(--forest);
  border-radius: 22px;
  background: #fff;
}
.automation-grid article:first-child {
  border-top-color: var(--coral);
}
.automation-grid h3 {
  margin: 0 0 12px;
  font: 700 27px/1.2 Georgia, serif;
}
.automation-grid p {
  color: var(--muted);
}
.scope-note {
  max-width: 900px;
  margin: 26px auto 0;
  padding: 20px 24px;
  border-radius: 14px;
  background: var(--mint-2);
  color: var(--muted);
  font-size: 14px;
}
.scope-note strong {
  color: var(--ink);
}
@media (max-width: 980px) {
  .nav-toggle {
    display: block;
  }
  .nav-wrap nav {
    display: none;
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    padding: 20px;
    flex-direction: column;
    align-items: stretch;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
  }
  .nav-wrap nav.open {
    display: flex;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 60px 0 90px;
  }
  .hero-visual {
    max-width: 650px;
    margin: auto;
  }
  .hero-visual img {
    aspect-ratio: 4/3;
  }
  .use-case-feature,
  .demo-grid,
  .cost-grid,
  .image-band,
  .final-cta {
    grid-template-columns: 1fr;
  }
  .cards.three,
  .timeline {
    grid-template-columns: 1fr 1fr;
  }
  .image-band > div {
    padding: 50px;
  }
  .image-band img {
    min-height: 400px;
  }
  .final-cta {
    padding: 55px;
  }
  .final-cta > div:last-child {
    text-align: left;
  }
  footer {
    grid-template-columns: 2fr 1fr 1fr;
  }
  footer > div:last-child {
    grid-column: 2;
  }
}
@media (max-width: 680px) {
  .automation-grid {
    grid-template-columns: 1fr;
  }
  body {
    font-size: 16px;
  }
  .nav-wrap {
    width: calc(100% - 28px);
  }
  .hero-grid,
  .section,
  .disclosure,
  .final-cta {
    width: calc(100% - 28px);
  }
  .hero h1 {
    font-size: 43px;
  }
  .hero-actions {
    flex-direction: column;
  }
  .hero-actions .button {
    width: 100%;
  }
  .hero-visual figcaption {
    right: 0;
    bottom: 20px;
  }
  .section {
    padding-top: 75px;
    padding-bottom: 75px;
  }
  .section-tint {
    width: 100%;
    padding-left: 14px;
    padding-right: 14px;
  }
  .answer-card {
    padding: 28px;
  }
  .prose-grid,
  .cards.three,
  .checklist,
  .timeline {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .use-case-feature {
    grid-template-columns: 1fr;
    padding: 16px;
    gap: 25px;
  }
  .use-case-feature img {
    height: 300px;
  }
  .demo-section {
    border-radius: 0;
    padding-top: 75px;
    padding-bottom: 75px;
  }
  .demo-card {
    padding: 28px;
  }
  .price-card,
  .calculator {
    padding: 27px;
  }
  .image-band {
    width: 100%;
    border-radius: 0;
  }
  .image-band > div {
    padding: 45px 25px;
  }
  .image-band img {
    min-height: 320px;
  }
  .final-cta {
    padding: 38px 25px;
  }
  .final-cta h2 {
    font-size: 39px;
  }
  footer {
    grid-template-columns: 1fr 1fr;
    margin-bottom: 110px;
  }
  footer > div:first-child {
    grid-column: 1/-1;
  }
  footer > div:last-child {
    grid-column: auto;
  }
  .sticky-cta > span {
    display: none;
  }
  .sticky-cta .button {
    width: 100%;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
