:root {
  color-scheme: light;
  --ink: #202421;
  --muted: #5f6765;
  --line: #d8dedb;
  --paper: #f7faf8;
  --paper-strong: #ffffff;
  --sage: #426d66;
  --sage-dark: #1f4f4a;
  --sage-soft: #dbe8df;
  --blue: #2f6f9f;
  --blue-soft: #dcecf6;
  --amber: #b96f1d;
  --amber-soft: #f4e1c2;
  --sand: #e7ece8;
  --shadow: 0 24px 70px rgba(21, 38, 35, 0.12);
  --radius: 8px;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(247, 250, 248, 0.99)),
    var(--paper);
  color: var(--ink);
}

body,
button,
input,
textarea {
  font: inherit;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 18px clamp(20px, 5vw, 68px);
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(216, 222, 219, 0.85);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  max-width: 330px;
}

.brand strong {
  display: block;
  font-size: 1.02rem;
  line-height: 1.05;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.2;
  text-transform: uppercase;
}

.brand-mark {
  position: relative;
  display: inline-grid;
  width: 44px;
  height: 34px;
  place-items: end center;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--sage-soft), #fff);
  border: 1px solid var(--line);
}

.brand-mark::before,
.brand-mark::after,
.brand-mark span {
  content: "";
  position: absolute;
  bottom: 8px;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-bottom: 18px solid var(--sage);
}

.brand-mark::before {
  left: 7px;
  opacity: 0.85;
}

.brand-mark::after {
  right: 7px;
  border-bottom-color: #88a79c;
}

.brand-mark span {
  top: 5px;
  right: 7px;
  width: 8px;
  height: 8px;
  border: 0;
  border-radius: 999px;
  background: var(--amber);
}

.nav {
  display: flex;
  justify-content: center;
  gap: 26px;
  color: #343934;
  font-size: 0.95rem;
}

.nav a {
  padding: 8px 0;
}

.nav a:hover,
.nav a:focus-visible,
.text-button:hover,
.text-button:focus-visible {
  color: var(--sage-dark);
}

.button,
button.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--sage-dark);
  border-radius: var(--radius);
  background: var(--sage-dark);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 12px 24px rgba(31, 79, 74, 0.16);
  cursor: pointer;
}

.button:hover,
.button:focus-visible {
  background: #183f3b;
}

.button:disabled,
button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.button.secondary {
  background: rgba(255, 255, 255, 0.9);
  color: var(--sage-dark);
  box-shadow: none;
}

.button.full {
  width: 100%;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(420px, 1fr);
  align-items: center;
  gap: clamp(24px, 4vw, 54px);
  min-height: calc(100vh - 82px);
  padding: 54px clamp(20px, 5vw, 68px) 36px;
}

.hero-copy {
  max-width: 720px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--sage-dark);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  max-width: 100%;
  overflow-wrap: anywhere;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(3rem, 6.5vw, 6.6rem);
  line-height: 0.95;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 4vw, 4.5rem);
  line-height: 1;
}

h3 {
  margin-bottom: 10px;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  line-height: 1.1;
}

.hero-lede {
  max-width: 620px;
  color: var(--muted);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 30px;
}

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

.trust-row div {
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.trust-row dt {
  margin-bottom: 5px;
  font-weight: 800;
}

.trust-row dd {
  margin: 0;
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.45;
}

.hero-media {
  position: relative;
  margin: 0;
  overflow: hidden;
  min-height: min(58vw, 640px);
  border: 1px solid rgba(216, 222, 219, 0.9);
  border-radius: var(--radius);
  background: var(--sand);
  box-shadow: var(--shadow);
}

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

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(247, 250, 248, 0.18), rgba(247, 250, 248, 0));
  pointer-events: none;
}

section {
  padding: 78px clamp(20px, 5vw, 68px);
}

.section-heading {
  max-width: 840px;
  margin-bottom: 30px;
}

.section-heading p:not(.eyebrow),
.audit-copy p,
.launch p,
.contact p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.section-heading.compact {
  max-width: 620px;
}

.path-grid,
.offer-grid,
.demo-grid,
.guardrail-grid {
  display: grid;
  gap: 18px;
}

.path-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.path-card,
.offer-grid article,
.demo-output,
.audit-panel,
.launch,
.contact,
.step-grid li,
.guardrail-grid p {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 14px 45px rgba(21, 38, 35, 0.08);
}

.path-card {
  padding: clamp(24px, 4vw, 42px);
  transition:
    border-color 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.path-card.active {
  border-color: var(--sage);
  box-shadow: 0 18px 55px rgba(31, 79, 74, 0.14);
  transform: translateY(-2px);
}

.path-card p {
  color: var(--muted);
  line-height: 1.6;
}

.path-card ul,
.demo-output ul {
  display: grid;
  gap: 10px;
  margin: 22px 0;
  padding: 0;
  list-style: none;
}

.path-card li,
.demo-output li {
  position: relative;
  padding-left: 28px;
  color: #41483f;
}

.path-card li::before,
.demo-output li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--sage);
  font-weight: 900;
}

.icon-badge {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 50%;
  background: var(--sage-soft);
  color: var(--sage-dark);
  font-size: 1.8rem;
  font-weight: 900;
}

.icon-badge.amber {
  background: var(--amber-soft);
  color: #8b4c0f;
}

.text-button {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--sage);
  font-weight: 800;
  cursor: pointer;
}

.audit-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.58fr);
  gap: 38px;
  align-items: center;
  margin: 36px clamp(20px, 5vw, 68px);
  padding: clamp(26px, 5vw, 52px);
}

.audit-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.audit-facts span {
  padding: 9px 12px;
  border-radius: 999px;
  background: var(--sage-soft);
  color: var(--sage-dark);
  font-weight: 700;
  font-size: 0.9rem;
}

.audit-request-card {
  display: grid;
  gap: 16px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.form-head p {
  color: var(--muted);
  line-height: 1.55;
}

.action-status {
  min-height: 1.3em;
  margin: -4px 0 0;
  color: var(--sage-dark);
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.45;
}

label {
  display: grid;
  gap: 8px;
  color: #333934;
  font-weight: 800;
}

input {
  width: 100%;
  min-height: 44px;
  padding: 9px 12px;
  border: 1px solid #cfc8bb;
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
}

textarea {
  width: 100%;
  min-height: 112px;
  resize: vertical;
  padding: 11px 12px;
  border: 1px solid #cfc8bb;
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  line-height: 1.45;
}

.form-note {
  margin: -2px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.5;
}

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

input[type="range"] {
  min-height: 28px;
  padding: 0;
  accent-color: var(--sage);
}

output {
  color: var(--sage-dark);
  font-weight: 900;
}

.result-box {
  display: grid;
  gap: 6px;
  padding: 18px;
  border-radius: var(--radius);
  background: var(--sage-soft);
}

.result-box span {
  color: var(--sage-dark);
  font-weight: 800;
}

.result-box strong {
  color: var(--sage-dark);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
}

.step-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: steps;
}

.step-grid li {
  counter-increment: steps;
  min-height: 190px;
  padding: 24px;
}

.step-grid li::before {
  content: counter(steps);
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  margin-bottom: 30px;
  border-radius: 50%;
  background: var(--sage);
  color: #fff;
  font-weight: 900;
}

.step-grid strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.18rem;
}

.step-grid span {
  color: var(--muted);
  line-height: 1.55;
}

.offers {
  background: linear-gradient(180deg, rgba(220, 236, 246, 0.42), rgba(247, 250, 248, 0.9));
}

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

.offer-grid article {
  padding: 28px;
}

.offer-grid p {
  color: var(--muted);
  line-height: 1.65;
}

.price {
  color: var(--sage-dark) !important;
  font-weight: 900;
}

.price span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.95rem;
}

.demo-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.demo-tab {
  min-height: 58px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.86);
  color: var(--ink);
  font-weight: 800;
  cursor: pointer;
}

.demo-tab.active,
.demo-tab:hover,
.demo-tab:focus-visible {
  border-color: var(--sage);
  background: var(--sage-dark);
  color: #fff;
}

.demo-output {
  margin-top: 18px;
  padding: 30px;
}

.demo-output p {
  color: var(--muted);
  line-height: 1.65;
}

.launch {
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(380px, 1fr);
  gap: 36px;
  align-items: start;
  margin: 36px clamp(20px, 5vw, 68px);
  padding: clamp(26px, 5vw, 52px);
}

.timeline {
  display: grid;
  gap: 14px;
}

.timeline article {
  padding: 18px 0 18px 24px;
  border-left: 3px solid var(--sage);
}

.timeline span {
  color: var(--amber);
  font-weight: 900;
}

.timeline h3 {
  margin: 5px 0;
  font-size: 1.15rem;
}

.timeline p {
  margin: 0;
}

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

.guardrail-grid p {
  margin: 0;
  padding: 22px;
  color: #374037;
  font-weight: 800;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) auto;
  gap: 24px;
  align-items: center;
  margin: 36px clamp(20px, 5vw, 68px) 70px;
  padding: clamp(26px, 5vw, 48px);
  background: var(--sage-dark);
  color: #fff;
}

.contact .eyebrow,
.contact p {
  color: rgba(255, 255, 255, 0.78);
}

.contact-actions {
  display: grid;
  gap: 12px;
}

.contact .button {
  background: #fff;
  color: var(--sage-dark);
  border-color: #fff;
}

.contact .button.secondary {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
}

.contact .action-status {
  color: rgba(255, 255, 255, 0.86);
  text-align: center;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 26px clamp(20px, 5vw, 68px);
  border-top: 1px solid var(--line);
  color: var(--muted);
}

@media (max-width: 1050px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav {
    display: none;
  }

  .hero,
  .audit-panel,
  .launch {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-media {
    min-height: 430px;
  }

  .offer-grid,
  .path-grid,
  .step-grid,
  .guardrail-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 720px) {
  .site-header {
    gap: 14px;
    padding: 14px 18px;
  }

  .header-button {
    display: none;
  }

  .brand strong {
    font-size: 0.86rem;
  }

  .brand small {
    font-size: 0.56rem;
  }

  .hero,
  section {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero {
    padding-top: 34px;
    overflow: hidden;
  }

  .hero-copy,
  .hero-media {
    width: 100%;
    max-width: min(100%, 354px);
    min-width: 0;
  }

  .section-heading,
  .path-grid,
  .offer-grid,
  .demo-grid,
  .demo-output,
  .step-grid,
  .guardrail-grid {
    width: 100%;
    max-width: min(100%, 354px);
  }

  .hero-media {
    max-width: 100%;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(2.35rem, 10.5vw, 3rem);
    line-height: 1;
  }

  .hero-lede {
    max-width: 354px;
  }

  .trust-row dd {
    overflow-wrap: anywhere;
  }

  h2 {
    font-size: clamp(1.85rem, 8.5vw, 2.45rem);
  }

  .trust-row,
  .path-grid,
  .offer-grid,
  .step-grid,
  .guardrail-grid,
  .demo-grid,
  .contact {
    grid-template-columns: 1fr;
  }

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

  .audit-panel,
  .launch,
  .contact {
    margin-left: 18px;
    margin-right: 18px;
  }

  .contact-actions,
  .hero-actions {
    width: 100%;
  }

  .contact-actions .button,
  .hero-actions .button {
    width: 100%;
  }

  .site-footer {
    display: grid;
  }
}
