:root {
  color-scheme: light;
  --ink: #17201e;
  --muted: #53615d;
  --line: #d7ded9;
  --paper: #fbfcfa;
  --band: #eef5f1;
  --teal: #174f4a;
  --teal-2: #1f7669;
  --gold: #c58a21;
  --coral: #bf5f4a;
  --white: #ffffff;
  --shadow: 0 20px 50px rgba(23, 32, 30, 0.12);
  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;
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.5;
}

a {
  color: inherit;
}

.site-header,
.site-footer {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  color: var(--ink);
  font-size: 0.98rem;
  font-weight: 750;
  text-decoration: none;
}

.brand img {
  flex: 0 0 auto;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  color: var(--muted);
  font-size: 0.94rem;
}

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

.site-nav a:hover,
.site-footer a:hover {
  color: var(--teal);
}

.hero {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 46px 0 72px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.75fr);
  align-items: center;
  gap: clamp(36px, 7vw, 88px);
}

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

.eyebrow {
  margin: 0 0 12px;
  color: var(--teal-2);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
}

h1 {
  max-width: 13ch;
  font-size: clamp(2.9rem, 7vw, 5.8rem);
  font-weight: 850;
}

h2 {
  max-width: 780px;
  font-size: clamp(2rem, 5vw, 4.25rem);
  font-weight: 820;
}

h3 {
  font-size: 1.1rem;
  font-weight: 780;
}

.lede {
  max-width: 680px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1.16rem, 2vw, 1.48rem);
}

.lede.small {
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 18px;
  font-weight: 750;
  text-decoration: none;
}

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

.button.secondary {
  background: var(--white);
  color: var(--teal);
}

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

.product-snapshot {
  border: 1px solid rgba(23, 79, 74, 0.18);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
  padding: clamp(22px, 4vw, 34px);
}

.snapshot-header,
.metric-grid,
.detail-row,
.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.snapshot-title {
  color: var(--teal);
  font-size: 1.1rem;
  font-weight: 850;
}

.snapshot-status {
  border-radius: 999px;
  background: #f7edda;
  color: #7b5414;
  padding: 6px 10px;
  font-size: 0.75rem;
  font-weight: 800;
}

.metric-grid {
  margin-top: 28px;
}

.metric-grid > div {
  flex: 1;
  border-left: 3px solid var(--gold);
  padding-left: 14px;
}

.metric-grid > div + div {
  border-left-color: var(--coral);
}

.metric-label {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 760;
}

.metric-grid strong {
  display: block;
  margin-top: 4px;
  font-size: clamp(1.25rem, 2.2vw, 1.55rem);
}

.training-chart {
  height: 230px;
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  align-items: end;
  gap: 12px;
  border-bottom: 1px solid var(--line);
}

.training-chart span {
  display: block;
  min-height: 42px;
  border-radius: 6px 6px 0 0;
  background: var(--teal);
}

.training-chart span:nth-child(2n) {
  background: var(--gold);
}

.training-chart span:nth-child(3n) {
  background: var(--coral);
}

.snapshot-note {
  margin-top: 18px;
  color: var(--muted);
}

.section {
  padding: 86px 0;
}

.band {
  background: var(--band);
}

.section-inner {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.section-inner.split {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
}

.section-inner.narrow {
  max-width: 760px;
}

.detail-list {
  border-top: 1px solid var(--line);
}

.detail-row {
  min-height: 70px;
  border-bottom: 1px solid var(--line);
}

.detail-row span {
  color: var(--muted);
}

.detail-row strong {
  text-align: right;
}

.service-grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.service-card {
  min-height: 180px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 24px;
}

.service-card p,
.contact-panel p,
.legal-page p {
  color: var(--muted);
}

.contact-panel {
  border-left: 4px solid var(--teal);
  padding-left: 24px;
}

.email-link {
  display: inline-block;
  margin-top: 8px;
  color: var(--teal);
  font-size: clamp(1.42rem, 4vw, 2.3rem);
  font-weight: 850;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.legal-page {
  min-height: calc(100svh - 170px);
}

.legal-page h1 {
  max-width: 100%;
  font-size: clamp(2.4rem, 8vw, 5.2rem);
}

.legal-page h2 {
  margin-top: 38px;
  font-size: clamp(1.35rem, 3vw, 2rem);
}

.site-footer {
  min-height: 88px;
  color: var(--muted);
  font-size: 0.92rem;
}

@media (max-width: 820px) {
  .site-header {
    min-height: 76px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding: 16px 0;
  }

  .site-nav {
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 2px;
  }

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

  h1 {
    max-width: 100%;
    font-size: clamp(2.5rem, 12vw, 4.8rem);
  }

  .section-inner.split,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 64px 0;
  }

  .product-snapshot {
    max-width: 520px;
  }
}

@media (max-width: 560px) {
  .site-header,
  .site-footer,
  .hero,
  .section-inner {
    width: min(100% - 28px, 1120px);
  }

  .brand {
    align-items: flex-start;
  }

  .site-nav {
    gap: 14px;
    font-size: 0.9rem;
  }

  .hero-actions {
    display: grid;
    margin-top: 22px;
  }

  .button {
    width: 100%;
  }

  .metric-grid,
  .detail-row,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    justify-content: flex-start;
  }

  .metric-grid {
    gap: 18px;
  }

  .detail-row {
    gap: 6px;
    padding: 18px 0;
  }

  .detail-row strong {
    text-align: left;
  }

  .training-chart {
    height: 180px;
    gap: 8px;
  }

  .email-link {
    font-size: clamp(1.2rem, 8vw, 1.8rem);
  }

  .product-snapshot {
    display: none;
  }
}
