:root {
  color: #14221b;
  background: #f6faf5;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body {
  margin: 0;
}

button,
input {
  font: inherit;
}

main {
  min-height: 100vh;
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  gap: 18px;
  align-items: center;
  min-height: 54px;
  padding: 0 max(20px, calc((100vw - 1180px) / 2));
  background: rgba(246, 250, 245, 0.94);
  border-bottom: 1px solid rgba(20, 34, 27, 0.08);
  backdrop-filter: blur(12px);
}

.site-nav a {
  color: #294036;
  text-decoration: none;
  font-size: 14px;
  font-weight: 750;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  gap: 36px;
  align-items: center;
  width: min(1180px, calc(100vw - 40px));
  min-height: 92vh;
  margin: 0 auto;
  padding: 32px 0;
}

.eyebrow {
  margin: 0 0 12px;
  color: #166534;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

h1 {
  max-width: 680px;
  margin: 0;
  font-size: 56px;
  line-height: 1.02;
  letter-spacing: 0;
}

.subhead {
  max-width: 610px;
  margin: 18px 0 24px;
  color: #4b5b52;
  font-size: 18px;
  line-height: 1.55;
}

.proof-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 24px;
}

.proof-strip span {
  padding: 7px 10px;
  color: #174031;
  background: #e5f6e9;
  border: 1px solid rgba(22, 101, 52, 0.16);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.checkout-form {
  display: grid;
  grid-template-columns: minmax(220px, 360px) auto;
  gap: 10px;
  align-items: end;
}

.checkout-form label {
  display: grid;
  gap: 6px;
  color: #4b5b52;
  font-size: 13px;
  font-weight: 700;
}

.checkout-form input {
  min-height: 46px;
  box-sizing: border-box;
  padding: 10px 12px;
  border: 1px solid rgba(20, 34, 27, 0.16);
  border-radius: 7px;
  color: #14221b;
  background: #ffffff;
}

.checkout-form button {
  min-height: 46px;
  padding: 0 18px;
  border: 0;
  border-radius: 7px;
  color: #ffffff;
  background: #166534;
  cursor: pointer;
  font-weight: 800;
}

.status {
  min-height: 22px;
  margin-top: 12px;
  color: #4b5b52;
}

.page {
  width: min(980px, calc(100vw - 40px));
  min-height: auto;
  margin: 0 auto;
  padding: 54px 0;
}

.page h1 {
  margin-bottom: 20px;
}

.page-panel {
  margin: 14px 0;
  padding: 18px;
  background: #ffffff;
  border: 1px solid rgba(20, 34, 27, 0.12);
  border-radius: 8px;
}

.page-panel h2 {
  margin: 0 0 10px;
  font-size: 20px;
}

.page-panel p,
.page-panel li {
  color: #4b5b52;
  line-height: 1.6;
}

.page-panel code {
  padding: 2px 5px;
  overflow-wrap: anywhere;
  background: #eef7f0;
  border-radius: 4px;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 16px;
}

.metric-card {
  padding: 16px;
  background: #ffffff;
  border: 1px solid rgba(20, 34, 27, 0.12);
  border-radius: 8px;
}

.metric-card strong,
.metric-card span {
  display: block;
}

.metric-card strong {
  font-size: 24px;
}

.metric-card span {
  margin-top: 6px;
  color: #4b5b52;
  font-size: 13px;
}

.support-form {
  display: grid;
  gap: 12px;
}

.support-form label {
  display: grid;
  gap: 6px;
  color: #4b5b52;
  font-size: 13px;
  font-weight: 750;
}

.support-form select,
.support-form input,
.support-form textarea {
  box-sizing: border-box;
  width: 100%;
  padding: 10px 12px;
  color: #14221b;
  background: #ffffff;
  border: 1px solid rgba(20, 34, 27, 0.16);
  border-radius: 7px;
  font: inherit;
}

.support-form button {
  width: fit-content;
  min-height: 42px;
  padding: 0 16px;
  color: #ffffff;
  background: #166534;
  border: 0;
  border-radius: 7px;
  cursor: pointer;
  font-weight: 800;
}

.product-shot {
  overflow: hidden;
  min-height: 470px;
  background: #ffffff;
  border: 1px solid rgba(20, 34, 27, 0.12);
  border-radius: 8px;
  box-shadow: 0 28px 80px rgba(20, 34, 27, 0.16);
}

.shot-header {
  display: flex;
  gap: 8px;
  align-items: center;
  height: 42px;
  padding: 0 14px;
  background: #e8f4ea;
  border-bottom: 1px solid rgba(20, 34, 27, 0.08);
}

.shot-header span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #6a7d72;
}

.shot-grid {
  display: grid;
  grid-template-columns: 190px 1fr;
  min-height: 428px;
}

.shot-grid aside {
  padding: 18px;
  background: #f2f7f3;
  border-right: 1px solid rgba(20, 34, 27, 0.08);
}

.shot-grid aside strong {
  display: block;
  margin-bottom: 18px;
}

.shot-grid aside p {
  padding: 10px 0;
  margin: 0;
  color: #4b5b52;
  border-bottom: 1px solid rgba(20, 34, 27, 0.08);
}

.shot-grid section {
  padding: 20px;
}

.prompt-row {
  margin-bottom: 10px;
  padding: 13px 14px;
  background: #f7faf7;
  border: 1px solid rgba(20, 34, 27, 0.08);
  border-radius: 7px;
}

.prompt-row.active {
  border-color: #166534;
  background: #e8f8ed;
  font-weight: 800;
}

pre {
  margin: 18px 0 0;
  padding: 16px;
  overflow: auto;
  color: #173024;
  background: #101a14;
  border-radius: 7px;
  color: #dff5e6;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 13px;
  line-height: 1.5;
}

@media (max-width: 860px) {
  .site-nav {
    overflow-x: auto;
    justify-content: flex-start;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 28px 0;
  }

  h1 {
    font-size: 42px;
  }

  .checkout-form {
    grid-template-columns: 1fr;
  }

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

  .product-shot {
    min-height: 390px;
  }

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

  .shot-grid aside {
    display: none;
  }
}
