:root {
  --ink: #15211d;
  --muted: #5b6862;
  --deep: #17352f;
  --deep-2: #235044;
  --accent: #1f9d8a;
  --amber: #d7793f;
  --paper: #fffdf8;
  --soft: #eef5f1;
  --line: #d8e0dc;
  --warning: #fff4e8;
  --max: 1140px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

img {
  max-width: 100%;
}

a {
  color: inherit;
}

.wrap {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.narrow {
  max-width: 780px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  z-index: 50;
  padding: 10px 14px;
  background: var(--deep);
  color: #fff;
}

.skip-link:focus {
  left: 12px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(21, 33, 29, 0.08);
  background: rgba(255, 253, 248, 0.92);
  backdrop-filter: blur(14px);
}

.nav {
  width: min(var(--max), calc(100% - 32px));
  min-height: 72px;
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  margin-right: auto;
  text-decoration: none;
}

.brand img {
  width: 148px;
  height: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

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

.nav-links a {
  padding: 8px 10px;
}

.nav-action {
  margin: 0;
}

.nav-contact {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 13px;
  color: var(--deep);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

button,
.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 8px;
  padding: 0 18px;
  color: #fff;
  font: inherit;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.nav-action button,
.button.primary {
  background: var(--amber);
  box-shadow: 0 12px 24px rgba(215, 121, 63, 0.18);
}

.button.secondary {
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--deep);
  box-shadow: none;
}

button:focus-visible,
.button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid rgba(31, 157, 138, 0.35);
  outline-offset: 2px;
}

.hero,
.page-hero {
  padding: clamp(42px, 6vw, 82px) 0;
  background:
    linear-gradient(180deg, #fffdf8 0%, #f4f8f5 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
}

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

.eyebrow,
.section-kicker {
  display: inline-flex;
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(38px, 5vw, 62px);
  line-height: 1.02;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.14;
  letter-spacing: 0;
}

.lead {
  max-width: 650px;
  color: var(--muted);
  font-size: clamp(17px, 1.7vw, 21px);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0 14px;
}

.actions form {
  margin: 0;
}

.microcopy {
  max-width: 620px;
  color: var(--muted);
  font-size: 14px;
}

.hero-media {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 18px 42px rgba(21, 33, 29, 0.08);
}

.hero-media img {
  width: 100%;
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.hero-media figcaption {
  padding: 13px 16px;
  color: var(--deep);
  font-size: 14px;
  font-weight: 800;
}

.band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.signal-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
}

.signal-strip span {
  padding: 16px 12px;
  color: var(--deep);
  font-weight: 800;
  text-align: center;
}

.section {
  padding: clamp(54px, 6vw, 82px) 0;
}

.muted {
  background: var(--soft);
}

.split,
.product-grid,
.cta-grid,
.detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(320px, 0.72fr);
  gap: clamp(24px, 5vw, 62px);
  align-items: start;
}

.check-grid,
.steps,
.metrics {
  display: grid;
  gap: 14px;
}

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

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

.check-grid article,
.steps article,
.product-grid article,
.summary-panel,
.admin article,
.metrics span {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.check-grid article,
.steps article,
.product-grid article,
.summary-panel,
.admin article {
  padding: 22px;
}

.check-grid strong,
.check-grid span,
.steps strong,
.steps p {
  display: block;
}

.check-grid strong,
.steps strong {
  margin-bottom: 6px;
  color: var(--deep);
  font-size: 18px;
}

.check-grid span,
.steps p,
.product-grid li,
.summary-panel dd,
.prose p,
.prose li {
  color: var(--muted);
}

.steps span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  margin-bottom: 12px;
  border-radius: 8px;
  background: #dff3ef;
  color: var(--deep);
  font-weight: 900;
}

.cta {
  padding: clamp(44px, 5.2vw, 72px) 0;
  background: var(--deep);
  color: #fff;
}

.cta p,
.cta .section-kicker {
  color: rgba(255, 255, 255, 0.78);
}

.cta-grid {
  align-items: center;
}

.cta-grid form {
  justify-self: end;
}

.plain-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.plain-list li {
  position: relative;
  padding-left: 24px;
}

.plain-list li::before {
  content: "";
  position: absolute;
  left: 1px;
  top: 0.62em;
  width: 10px;
  height: 6px;
  border-left: 3px solid var(--accent);
  border-bottom: 3px solid var(--accent);
  transform: rotate(-45deg);
}

.summary-panel dl,
.detail-list {
  display: grid;
  gap: 12px;
  margin: 0;
}

.summary-panel div,
.detail-list div {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 12px;
}

dt {
  color: var(--deep);
  font-weight: 900;
}

dd {
  margin: 0;
}

.notice {
  padding: 12px 14px;
  border: 1px solid #f0c79e;
  border-radius: 8px;
  background: var(--warning);
  color: #7d431d;
}

.notice.error {
  border-color: #e3a4a4;
  background: #fff0f0;
  color: #8d2424;
}

.form-wrap {
  max-width: 760px;
}

.panel-form {
  display: grid;
  gap: 14px;
  margin-top: 22px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.panel-form label {
  display: grid;
  gap: 6px;
  color: var(--deep);
  font-weight: 800;
}

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

textarea {
  resize: vertical;
}

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

.legal {
  padding: clamp(42px, 6vw, 84px) 0;
  background: var(--paper);
}

.prose h2 {
  margin-top: 28px;
  font-size: 24px;
}

.admin {
  padding: 34px 0 72px;
  background: #f6f8f6;
}

.admin-head {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  margin-bottom: 18px;
}

.admin h1 {
  font-size: clamp(32px, 4vw, 48px);
}

.metrics {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-bottom: 18px;
}

.metrics span {
  padding: 14px;
  color: var(--muted);
  font-weight: 800;
}

.metrics strong {
  display: block;
  color: var(--deep);
  font-size: 24px;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

th,
td {
  padding: 13px 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

th {
  color: var(--deep);
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

td a {
  overflow-wrap: anywhere;
}

.status {
  display: inline-flex;
  padding: 4px 8px;
  border-radius: 999px;
  background: #dff3ef;
  color: var(--deep);
  font-size: 12px;
  font-weight: 900;
}

.inline-form {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.lower {
  margin-top: 22px;
}

.timeline {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 20px;
}

.timeline li {
  padding-left: 4px;
}

.timeline span {
  display: block;
  color: var(--muted);
  font-size: 12px;
}

.site-footer {
  padding: 34px 0;
  background: #111b18;
  color: rgba(255, 255, 255, 0.72);
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.footer-grid strong,
.site-footer a {
  color: #fff;
}

.footer-grid div:last-child {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

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

  .hero-grid,
  .split,
  .product-grid,
  .cta-grid,
  .detail-grid {
    grid-template-columns: 1fr;
  }

  .cta-grid form {
    justify-self: start;
  }

  .signal-strip,
  .steps,
  .metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .wrap,
  .nav {
    width: min(var(--max), calc(100% - 26px));
  }

  .brand img {
    width: 126px;
  }

  .nav-action button,
  .nav-contact {
    min-height: 40px;
    padding: 0 12px;
    font-size: 13px;
  }

  h1 {
    font-size: clamp(31px, 10vw, 42px);
  }

  .actions,
  .actions form,
  .button,
  .panel-form button {
    width: 100%;
  }

  .signal-strip,
  .check-grid,
  .steps,
  .metrics {
    grid-template-columns: 1fr;
  }

  .summary-panel div,
  .detail-list div {
    grid-template-columns: 1fr;
  }

  .inline-form {
    flex-direction: column;
  }

  .footer-grid {
    flex-direction: column;
  }
}
