:root {
  --ink: #111715;
  --ink-soft: #33423b;
  --muted: #66746c;
  --paper: #f5f7f2;
  --white: #fefffc;
  --line: #dce4d7;
  --line-strong: #c4d0c5;
  --green: #0b7f5d;
  --green-dark: #10201b;
  --orange: #c75f28;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--paper);
}

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

a {
  color: inherit;
}

code {
  padding: 0.1rem 0.35rem;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--white);
  color: var(--green-dark);
  font-size: 0.92em;
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 60px;
  padding: 0 24px;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  font-weight: 700;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 6px;
  color: var(--white);
  background: var(--green-dark);
  font-size: 0.72rem;
}

.site-nav nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.site-nav nav a {
  padding: 0.4rem 0;
  text-decoration: none;
  white-space: nowrap;
}

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

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

h1 {
  margin-bottom: 0.6rem;
  font-size: 2.65rem;
  line-height: 1.05;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0.8rem;
  font-size: 1.25rem;
  line-height: 1.2;
}

h3 {
  margin-bottom: 0.4rem;
  font-size: 1.02rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0.55rem 1rem;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  color: var(--ink);
  background: var(--white);
  text-decoration: none;
  font-weight: 600;
  line-height: 1.1;
}

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

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

.btn.secondary {
  color: var(--ink-soft);
  background: var(--paper);
}

.full-width {
  width: 100%;
}

main {
  width: min(880px, calc(100% - 40px));
  margin: 0 auto;
  padding: 32px 0 56px;
}

/* Homepage product hero */
.product-hero {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2rem;
  align-items: center;
  margin-bottom: 48px;
}

.product-shot {
  width: 100%;
  height: auto;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: var(--white);
}

.product-pitch .tagline {
  margin: 0 0 1.2rem;
  color: var(--ink-soft);
  font-size: 1.1rem;
}

.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

/* Homepage spec table */
.spec {
  margin-bottom: 32px;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--line);
  background: var(--white);
}

.spec-table th,
.spec-table td {
  padding: 0.7rem 0.9rem;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.spec-table thead th {
  background: var(--paper);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0;
  color: var(--muted);
}

.spec-table tbody tr:last-child td {
  border-bottom: none;
}

.spec-table td:last-child {
  color: var(--muted);
}

.spec-note {
  margin: 0.7rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.compliance-line {
  margin: 0 0 40px;
  padding: 0.8rem 1rem;
  border-left: 3px solid var(--green);
  background: var(--white);
  color: var(--ink-soft);
  font-size: 0.95rem;
}

/* Shared page shell (pricing/support/privacy) */
.page-shell {
  width: min(880px, calc(100% - 40px));
  margin: 0 auto;
  padding: 40px 0 56px;
}

.page-shell.narrow {
  width: min(720px, calc(100% - 40px));
}

.eyebrow {
  margin: 0 0 0.6rem;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
}

.page-hero {
  margin-bottom: 1.6rem;
}

.page-hero h1 {
  color: var(--green-dark);
}

.page-hero p:not(.eyebrow) {
  max-width: 60ch;
  color: var(--muted);
  font-size: 1.08rem;
}

/* Pricing */
.plan-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.plan-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 1.4rem;
}

.featured-plan {
  border-color: var(--green);
}

.plan-name {
  margin-bottom: 0.5rem;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
}

.plan-price {
  margin-bottom: 0.75rem;
  color: var(--green-dark);
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
}

.plan-price span {
  color: var(--muted);
  font-size: 1rem;
  font-weight: 500;
}

.plan-summary {
  color: var(--muted);
}

.check-list {
  display: grid;
  gap: 0.6rem;
  margin: 1.2rem 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 1.4rem;
  color: var(--ink-soft);
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 0.5rem;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 2px;
  background: var(--green);
}

.comparison-band,
.contact-band,
.prose-block {
  margin-top: 1.6rem;
}

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.comparison-grid div {
  padding: 0.9rem;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
}

.comparison-grid span {
  display: block;
  margin-top: 0.25rem;
  color: var(--muted);
}

/* Support */
.support-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1rem;
}

.support-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 1.3rem;
}

.support-grid ol,
.support-grid ul,
.prose-block ul {
  padding-left: 1.2rem;
}

.support-grid p,
.support-grid li,
.prose-block p,
.prose-block li {
  color: var(--muted);
}

/* Footer */
.site-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  padding: 1.5rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
}

.site-footer a {
  text-decoration: none;
}

.muted {
  color: var(--muted);
}

@media (max-width: 760px) {
  .product-hero,
  .plan-grid,
  .comparison-grid,
  .support-grid {
    grid-template-columns: 1fr;
  }

  .site-nav {
    padding: 0 16px;
  }

  main,
  .page-shell,
  .page-shell.narrow {
    width: calc(100% - 24px);
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 2.05rem;
  }

  .site-nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 12px 16px;
  }
}
