:root {
  color-scheme: light;
  --ink: #142019;
  --muted: #59675f;
  --line: #cbd6d0;
  --paper: #ffffff;
  --surface: #f5f8f6;
  --mint: #e3f1ea;
  --green: #14734f;
  --green-dark: #0b583c;
  --coral: #ef6548;
  --coral-soft: #fff1ed;
  --yellow: #f6cf66;
  --shadow: 0 18px 50px rgba(20, 32, 25, 0.12);
  font-family:
    Inter,
    ui-sans-serif,
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    sans-serif;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-size: 16px;
  line-height: 1.55;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  background: var(--ink);
  color: white;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 72px;
  padding: 0 4vw;
  border-bottom: 1px solid rgba(203, 214, 208, 0.85);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: max-content;
  font-weight: 750;
}

.brand-mark {
  position: relative;
  display: inline-block;
  width: 24px;
  height: 20px;
}

.brand-mark span {
  position: absolute;
  width: 14px;
  height: 7px;
  border: 2px solid var(--green);
  border-radius: 3px;
}

.brand-mark span:first-child {
  top: 1px;
  left: 0;
}

.brand-mark span:last-child {
  right: 0;
  bottom: 1px;
  border-color: var(--coral);
}

.brand-product {
  padding-left: 8px;
  border-left: 1px solid var(--line);
  color: var(--muted);
  font-weight: 550;
}

nav {
  display: flex;
  align-items: center;
  gap: 30px;
  color: var(--muted);
  font-size: 14px;
}

nav a,
footer > a {
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 5px;
}

nav a:hover,
footer > a:hover {
  color: var(--ink);
  text-decoration-color: var(--coral);
}

.site-header > .button {
  justify-self: end;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 19px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 700;
  transition:
    background-color 160ms ease,
    border-color 160ms ease,
    transform 160ms ease;
}

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

.button svg,
.copy-button svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button-small {
  min-height: 40px;
  padding: 0 15px;
  background: var(--ink);
  color: white;
  font-size: 14px;
}

.button-primary {
  background: var(--green);
  color: white;
}

.button-primary:hover,
.button-small:hover {
  background: var(--green-dark);
}

.button-secondary {
  border-color: var(--line);
  background: var(--paper);
}

.button-secondary:hover {
  border-color: var(--green);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 70px max(4vw, calc((100vw - 1180px) / 2)) 0;
  background: var(--surface);
}

.hero::after {
  position: absolute;
  top: 96px;
  right: 4vw;
  width: 80px;
  height: 9px;
  background: var(--coral);
  content: '';
}

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

.eyebrow {
  margin: 0 0 13px;
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0;
  text-transform: uppercase;
}

.status-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 7px;
  border-radius: 50%;
  background: #35a875;
  box-shadow: 0 0 0 3px rgba(53, 168, 117, 0.14);
}

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(48px, 7vw, 88px);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-statement {
  margin: 22px 0 0;
  font-size: clamp(25px, 3vw, 38px);
  font-weight: 650;
  line-height: 1.15;
}

.hero-detail {
  max-width: 720px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
}

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

.download-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.product-frame {
  overflow: hidden;
  margin: 0;
  border: 1px solid #b9c8c0;
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.hero-product {
  position: relative;
  z-index: 2;
  width: min(1180px, 100%);
  margin-top: 54px;
}

.window-bar {
  position: relative;
  display: flex;
  min-height: 37px;
  align-items: center;
  gap: 7px;
  padding: 0 13px;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.window-bar > span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #c9d2cd;
}

.window-bar > span:first-child {
  background: var(--coral);
}

.window-bar p {
  position: absolute;
  left: 50%;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  transform: translateX(-50%);
}

.hero-product img,
.proof-product img {
  width: 100%;
  height: auto;
}

.hero-product figcaption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 15px 18px;
  color: var(--muted);
  font-size: 13px;
}

.hero-product figcaption strong {
  margin-right: 8px;
  color: var(--green-dark);
  text-transform: uppercase;
}

.local-badge {
  flex: none;
}

.evidence-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  padding: 24px 4vw;
  border-block: 1px solid var(--line);
  background: var(--ink);
  color: white;
}

.evidence-strip p {
  margin: 0;
  color: #b8c7be;
  font-size: 13px;
  text-transform: uppercase;
}

.evidence-strip ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 14px;
  font-weight: 650;
}

.evidence-strip li::before {
  margin-right: 8px;
  color: var(--coral);
  content: '•';
}

.section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 112px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  column-gap: 70px;
}

.section-heading .eyebrow {
  grid-column: 1 / -1;
}

h2 {
  margin: 0;
  font-size: clamp(34px, 4.5vw, 58px);
  line-height: 1.05;
  letter-spacing: 0;
}

.section-heading > p:last-child,
.proof-copy > p,
.final-cta > p,
.beta-details {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin: 62px 0 0;
  padding: 0;
  border-block: 1px solid var(--line);
  list-style: none;
}

.steps li {
  min-height: 240px;
  padding: 24px;
  border-right: 1px solid var(--line);
}

.steps li:last-child {
  border-right: 0;
}

.step-number {
  display: block;
  color: var(--coral);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 13px;
  font-weight: 700;
}

.steps h3 {
  margin: 55px 0 8px;
  font-size: 23px;
}

.steps p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.proof {
  display: grid;
  grid-template-columns: 0.68fr 1.32fr;
  align-items: center;
  gap: 72px;
  max-width: none;
  padding-inline: max(4vw, calc((100vw - 1180px) / 2));
  background: var(--mint);
}

.proof-copy h2 {
  font-size: clamp(34px, 4vw, 52px);
}

.proof-copy > p {
  margin-top: 20px;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 30px 0 0;
  padding: 24px 0 0;
  border-top: 1px solid #b7ccc1;
  list-style: none;
  font-size: 14px;
  font-weight: 650;
}

.check-list span {
  margin-right: 9px;
  color: var(--green);
}

.proof-product {
  min-width: 0;
}

.setup .section-heading {
  display: block;
  max-width: 720px;
}

.setup .section-heading > p:last-child {
  margin-top: 18px;
}

.command-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 45px;
}

.command-block {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.command-block header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 17px;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.command-block h3 {
  margin: 0;
  font-size: 16px;
}

.command-block code {
  display: block;
  overflow-x: auto;
  padding: 24px;
  color: #224b38;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 14px;
  line-height: 1.8;
  white-space: nowrap;
}

.copy-button {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  gap: 7px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: var(--paper);
  color: var(--muted);
  cursor: pointer;
  font: inherit;
  font-size: 12px;
}

.copy-button:hover {
  border-color: var(--green);
  color: var(--green-dark);
}

.copy-button svg {
  width: 15px;
  height: 15px;
}

.beta-note {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
  max-width: none;
  padding-inline: max(4vw, calc((100vw - 1180px) / 2));
  border-block: 1px solid var(--line);
  background: var(--coral-soft);
}

.beta-note h2 {
  max-width: 450px;
  font-size: clamp(34px, 4vw, 50px);
}

.beta-details {
  display: grid;
  gap: 18px;
}

.beta-details p {
  margin: 0;
  padding-bottom: 18px;
  border-bottom: 1px solid #e8c9c0;
}

.beta-details p:last-child {
  border-bottom: 0;
}

.beta-details strong {
  color: var(--ink);
}

.final-cta {
  padding: 118px 4vw;
  text-align: center;
}

.final-cta h2 {
  max-width: 820px;
  margin: 0 auto;
}

.final-cta > p:not(.eyebrow) {
  margin-top: 18px;
}

.centered {
  justify-content: center;
}

.text-link {
  padding: 12px 8px;
  color: var(--green-dark);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: var(--coral);
  text-underline-offset: 5px;
}

footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  padding: 32px 4vw;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

footer p {
  margin: 0;
  text-align: center;
}

footer > a:last-child {
  justify-self: end;
}

.toast {
  position: fixed;
  z-index: 50;
  right: 20px;
  bottom: 20px;
  display: grid;
  grid-template-columns: 1fr auto;
  width: min(440px, calc(100vw - 40px));
  padding: 17px;
  border: 1px solid #8bb59f;
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.toast[hidden] {
  display: none;
}

.toast strong {
  color: var(--green-dark);
}

.toast span {
  grid-column: 1;
  color: var(--muted);
  font-size: 13px;
}

.toast button {
  grid-column: 2;
  grid-row: 1 / 3;
  align-self: center;
  min-height: 36px;
  margin-left: 14px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: var(--surface);
  cursor: pointer;
}

@media (max-width: 1220px) {
  .section {
    margin-inline: 4vw;
  }

  .proof,
  .beta-note {
    margin-inline: 0;
  }
}

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

  nav {
    display: none;
  }

  .hero {
    padding-top: 55px;
  }

  .hero::after {
    top: 70px;
    width: 42px;
  }

  .section {
    padding-block: 80px;
  }

  .section-heading,
  .proof,
  .beta-note {
    grid-template-columns: 1fr;
  }

  .section-heading {
    gap: 22px;
  }

  .steps {
    grid-template-columns: 1fr 1fr;
  }

  .steps li:nth-child(2) {
    border-right: 0;
  }

  .steps li:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .proof,
  .beta-note {
    gap: 48px;
  }
}

@media (max-width: 620px) {
  .site-header {
    min-height: 64px;
    padding-inline: 18px;
  }

  .brand-product,
  .site-header .button svg {
    display: none;
  }

  .site-header .button {
    min-height: 38px;
    padding-inline: 12px;
  }

  .hero {
    padding: 42px 18px 0;
  }

  .hero::after {
    display: none;
  }

  h1 {
    font-size: 48px;
  }

  .hero-statement {
    font-size: 27px;
  }

  .hero-detail {
    font-size: 16px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-product {
    width: calc(100% + 36px);
    margin-top: 40px;
    margin-left: -18px;
    border-inline: 0;
    border-radius: 0;
  }

  .hero-product figcaption {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }

  .evidence-strip {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    padding-inline: 18px;
  }

  .evidence-strip ul {
    justify-content: flex-start;
    gap: 8px 18px;
  }

  .section {
    margin-inline: 18px;
    padding-block: 70px;
  }

  .proof,
  .beta-note {
    margin-inline: 0;
    padding-inline: 18px;
  }

  .steps,
  .command-grid {
    grid-template-columns: 1fr;
  }

  .steps li,
  .steps li:nth-child(2) {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .steps li:last-child {
    border-bottom: 0;
  }

  .steps h3 {
    margin-top: 28px;
  }

  .command-block code {
    font-size: 12px;
  }

  .final-cta {
    padding: 78px 18px;
  }

  footer {
    grid-template-columns: 1fr auto;
    padding-inline: 18px;
  }

  footer p {
    display: none;
  }

  .toast {
    right: 12px;
    bottom: 12px;
    width: calc(100vw - 24px);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
