:root {
  --paper: #fbf7ef;
  --paper-strong: #f3eadb;
  --ink: #14211f;
  --muted: #63716d;
  --green: #377b69;
  --green-soft: #dbe8df;
  --navy: #17263d;
  --brass: #b98a44;
  --line: #e0d6c7;
  --white: #fffdf8;
  --shadow: 0 24px 60px rgba(20, 33, 31, 0.12);
  --radius: 8px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(224, 214, 199, 0.8);
  background: rgba(251, 247, 239, 0.92);
  backdrop-filter: blur(16px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 750;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(185, 138, 68, 0.45);
  border-radius: 8px;
  overflow: hidden;
  background: var(--green);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 0.94rem;
  color: var(--muted);
}

.site-nav a[aria-current="page"],
.site-nav a:hover {
  color: var(--ink);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
  content: "";
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 700;
  line-height: 1;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.btn-primary {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 12px 26px rgba(33, 79, 67, 0.18);
}

.btn-secondary {
  border-color: var(--line);
  background: var(--white);
  color: var(--ink);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--brass);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 650;
  letter-spacing: 0;
  line-height: 1.05;
}

h1 {
  max-width: 780px;
  font-size: clamp(3rem, 4.7vw, 4.65rem);
}

h2 {
  font-size: clamp(2.1rem, 4vw, 3.8rem);
}

h3 {
  font-size: 1.42rem;
}

p {
  margin: 0;
  color: var(--muted);
}

.lead {
  max-width: 680px;
  font-size: clamp(1.05rem, 1.8vw, 1.28rem);
}

.hero {
  padding: 76px 0 54px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
  align-items: center;
  gap: 46px;
}

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

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-note {
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.95rem;
}

.hero-media {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(224, 214, 199, 0.9);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.hero-media img {
  width: 100%;
  min-height: 470px;
  object-fit: cover;
}

.hero-card {
  position: absolute;
  right: 20px;
  bottom: 20px;
  width: min(270px, calc(100% - 40px));
  padding: 18px;
  border: 1px solid rgba(224, 214, 199, 0.92);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.94);
  box-shadow: 0 18px 42px rgba(20, 33, 31, 0.14);
}

.metric {
  color: var(--green);
  font-family: Georgia, serif;
  font-size: 2.1rem;
  line-height: 1;
}

.strip {
  border-block: 1px solid var(--line);
  background: var(--paper-strong);
}

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

.strip-item {
  min-height: 120px;
  padding: 24px;
  background: rgba(255, 253, 248, 0.35);
}

.strip-item strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
}

.section {
  padding: 86px 0;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 34px;
  margin-bottom: 36px;
}

.section-heading p {
  max-width: 520px;
}

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

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

.card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.card h3 {
  margin-bottom: 12px;
}

.icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 8px;
  background: var(--green-soft);
  color: var(--green);
  font-weight: 850;
}

.workflow {
  counter-reset: step;
}

.workflow .card {
  position: relative;
  min-height: 240px;
}

.workflow .card::before {
  counter-increment: step;
  content: "0" counter(step);
  display: block;
  margin-bottom: 28px;
  color: var(--brass);
  font-family: Georgia, serif;
  font-size: 2rem;
}

.feature-band {
  background: var(--green);
  color: var(--white);
}

.feature-band h2,
.feature-band h3,
.feature-band p {
  color: var(--white);
}

.feature-band p {
  opacity: 0.78;
}

.interface {
  border: 1px solid rgba(255, 253, 248, 0.16);
  border-radius: var(--radius);
  background: #193f36;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.2);
}

.interface-top {
  display: flex;
  gap: 8px;
  padding: 16px;
  border-bottom: 1px solid rgba(255, 253, 248, 0.12);
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 253, 248, 0.38);
}

.interface-body {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 16px;
  padding: 18px;
}

.panel {
  min-height: 280px;
  padding: 18px;
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.08);
}

.line {
  height: 10px;
  margin-bottom: 12px;
  border-radius: 99px;
  background: rgba(255, 253, 248, 0.2);
}

.line.short {
  width: 58%;
}

.check-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  color: rgba(255, 253, 248, 0.82);
  font-size: 0.92rem;
}

.check {
  display: grid;
  flex: 0 0 22px;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--brass);
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 900;
}

.quote {
  padding: 40px;
  border-left: 4px solid var(--brass);
  background: var(--white);
  font-family: Georgia, serif;
  font-size: clamp(1.45rem, 3vw, 2.5rem);
  line-height: 1.18;
}

.pricing {
  align-items: stretch;
}

.price-card {
  display: flex;
  flex-direction: column;
}

.price {
  margin: 18px 0;
  color: var(--green);
  font-family: Georgia, serif;
  font-size: 2.6rem;
  line-height: 1;
}

.price small {
  color: var(--muted);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 700;
}

.beta-card {
  border-color: rgba(185, 138, 68, 0.55);
  background: #fff9eb;
  box-shadow: 0 18px 44px rgba(185, 138, 68, 0.12);
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 4px;
}

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid rgba(185, 138, 68, 0.4);
  border-radius: 999px;
  background: rgba(185, 138, 68, 0.12);
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 850;
}

.value-stack {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.value-item {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.value-item strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
}

.list {
  display: grid;
  gap: 12px;
  margin: 22px 0 28px;
  padding: 0;
  list-style: none;
}

.list li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
}

.list li::before {
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 900;
  content: "✓";
}

.cta-band {
  padding: 66px 0;
  background: var(--navy);
  color: var(--white);
}

.cta-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.cta-band h2,
.cta-band p {
  color: var(--white);
}

.cta-band p {
  opacity: 0.76;
}

.page-hero {
  padding: 74px 0 48px;
  border-bottom: 1px solid var(--line);
  background: var(--paper-strong);
}

.page-hero h1 {
  font-size: clamp(2.8rem, 5vw, 5rem);
}

.split {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 46px;
  align-items: start;
}

.callout {
  padding: 28px;
  border: 1px solid rgba(185, 138, 68, 0.35);
  border-radius: var(--radius);
  background: #fff8e9;
}

.resource-link {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.resource-link span {
  color: var(--brass);
  font-weight: 800;
}

.case-video {
  overflow: hidden;
  width: min(100%, 560px);
  margin-left: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.case-video video {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  background: var(--ink);
  object-fit: cover;
}

.case-stat {
  padding: 24px;
  border-top: 1px solid var(--line);
}

.case-stat strong {
  display: block;
  color: var(--green);
  font-family: Georgia, serif;
  font-size: 2rem;
  line-height: 1.1;
}

.feature-row {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 28px;
  padding: 30px 0;
  border-top: 1px solid var(--line);
}

.feature-row:last-child {
  border-bottom: 1px solid var(--line);
}

.feature-row h3 {
  font-size: 1.7rem;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.capability {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.capability strong {
  display: block;
  margin-bottom: 5px;
  color: var(--ink);
}

.legal-content,
.support-content {
  max-width: 820px;
}

.legal-content h2,
.legal-content h3 {
  margin-top: 34px;
  margin-bottom: 12px;
}

.legal-content h2 {
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
  font-size: 1.55rem;
}

.legal-content h3 {
  font-size: 1.12rem;
}

.legal-content ul {
  margin: 12px 0 0;
  padding-left: 22px;
  color: var(--muted);
}

.legal-content li {
  margin: 7px 0;
}

.legal-content a,
.support-content a:not(.btn) {
  color: var(--green);
  font-weight: 750;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.support-card {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.contact-form {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.field {
  display: grid;
  gap: 7px;
}

.field label {
  color: var(--ink);
  font-weight: 750;
}

.optional {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdfa;
  color: var(--ink);
  font: inherit;
  padding: 12px 14px;
}

.field textarea {
  min-height: 150px;
  resize: vertical;
}

.field-hidden {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-notice {
  margin: 14px 0 0;
  padding: 12px 14px;
  border-radius: var(--radius);
  font-weight: 750;
}

.form-notice.success {
  border: 1px solid rgba(33, 79, 67, 0.25);
  background: var(--green-soft);
  color: var(--green);
}

.form-notice.error {
  border: 1px solid rgba(153, 27, 27, 0.25);
  background: #fff1f1;
  color: #991b1b;
}

.site-footer {
  padding: 46px 0;
  border-top: 1px solid var(--line);
  background: var(--paper-strong);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: start;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--muted);
  font-size: 0.92rem;
}

@media (max-width: 900px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    inset: 78px 20px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .hero-grid,
  .split,
  .feature-row,
  .grid-2,
  .cta-wrap,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid,
  .split {
    display: grid;
  }

  .strip-grid,
  .grid-3,
  .capability-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-heading,
  .cta-wrap {
    align-items: start;
    flex-direction: column;
  }
}

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

  .hero {
    padding-top: 48px;
  }

  h1 {
    font-size: 2.75rem;
  }

  .strip-grid,
  .grid-3,
  .capability-grid,
  .interface-body {
    grid-template-columns: 1fr;
  }

  .hero-media img {
    min-height: 320px;
  }

  .hero-card {
    position: static;
    width: auto;
    margin: 14px;
  }

  .section {
    padding: 62px 0;
  }
}
