:root {
  color-scheme: light;
  --ink: #121413;
  --muted: #5e635f;
  --line: #d8d4ca;
  --paper: #f8f5ee;
  --panel: #ffffff;
  --accent: #0f766e;
  --accent-dark: #0d4f4a;
  --rose: #b84a62;
  --clay: #9c674e;
  --mist: #e6f0ed;
  --gold: #d6b45f;
  --shadow: 0 22px 55px rgba(18, 20, 19, 0.12);
  --deep: #101412;
  --cream: #f8f3ea;
}

* {
  box-sizing: border-box;
}

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

a {
  color: inherit;
}

[id] {
  scroll-margin-top: 96px;
}

.site-header {
  align-items: center;
  backdrop-filter: blur(14px);
  background: rgba(248, 245, 238, 0.9);
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  padding: 14px clamp(18px, 5vw, 64px);
  position: sticky;
  top: 0;
  z-index: 10;
}

.brand {
  font-size: 19px;
  font-weight: 800;
  text-decoration: none;
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 14px;
}

nav a,
footer a {
  color: var(--muted);
  text-decoration: none;
}

.hero {
  align-items: center;
  background: var(--deep);
  color: white;
  display: grid;
  gap: clamp(24px, 5vw, 64px);
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  min-height: calc(88svh - 64px);
  overflow: hidden;
  padding: clamp(48px, 7vw, 96px) clamp(18px, 5vw, 64px);
  position: relative;
}

.hero::before {
  background:
    radial-gradient(circle at 78% 28%, rgba(184, 74, 98, 0.18), transparent 32%),
    radial-gradient(circle at 20% 78%, rgba(15, 118, 110, 0.16), transparent 38%),
    linear-gradient(90deg, rgba(15, 118, 110, 0.14), rgba(184, 74, 98, 0.06));
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.hero > * {
  position: relative;
}

.eyebrow,
.tag {
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  margin: 0 0 10px;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #95d6cf;
}

h1,
h2,
h3 {
  letter-spacing: 0;
  line-height: 1.02;
  margin: 0;
}

h1 {
  font-size: clamp(42px, 6.6vw, 76px);
  max-width: 840px;
}

h2 {
  font-size: clamp(30px, 4vw, 48px);
}

h3 {
  font-size: clamp(24px, 3vw, 32px);
}

.lede {
  color: var(--muted);
  font-size: clamp(18px, 2.2vw, 23px);
  margin: 22px 0 0;
  max-width: 680px;
}

.hero .lede {
  color: #d8dfda;
}

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

.proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.proof-row span {
  background: rgba(230, 240, 237, 0.12);
  border: 1px solid rgba(149, 214, 207, 0.35);
  border-radius: 999px;
  color: #e9fffb;
  font-size: 13px;
  font-weight: 800;
  padding: 8px 12px;
}

.button {
  align-items: center;
  border: 1px solid currentColor;
  border-radius: 6px;
  display: inline-flex;
  font-weight: 800;
  min-height: 46px;
  padding: 0 18px;
  text-decoration: none;
}

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

.hero .button {
  color: white;
}

.hero .button.primary {
  background: white;
  border-color: white;
  color: #111412;
}

.hero-media {
  align-items: center;
  display: grid;
  gap: 10px;
  justify-content: center;
  min-height: 420px;
  padding: 0;
}

.hero-media img,
.product img {
  display: block;
  height: auto;
  max-width: 100%;
}

.source-card {
  background: var(--cream);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.34);
  color: var(--ink);
  display: grid;
  overflow: hidden;
  position: relative;
}

.source-card img {
  aspect-ratio: 1.4 / 1;
  object-fit: cover;
  width: min(100%, 620px);
}

.source-pill {
  background: var(--rose);
  border-radius: 999px;
  color: white;
  font-size: 12px;
  font-weight: 800;
  padding: 8px 12px;
  position: absolute;
  right: 18px;
  text-transform: uppercase;
  top: 18px;
  z-index: 1;
}

.source-meta {
  align-items: center;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  justify-content: space-between;
  padding: 16px 18px;
}

.source-meta span {
  color: var(--muted);
  font-weight: 700;
}

.image-note {
  color: #d8dfda;
  font-size: 13px;
  font-weight: 700;
  margin: 0;
  text-align: center;
}

.notice {
  background: #fffaf1;
  border-bottom: 1px solid var(--line);
  color: #433c35;
  padding: 18px clamp(18px, 5vw, 64px);
}

.products {
  background:
    linear-gradient(180deg, #f2f5ef 0%, #f7f4ed 100%);
  display: grid;
  gap: 24px;
  padding: clamp(34px, 6vw, 78px) clamp(18px, 5vw, 64px);
}

.section-heading {
  display: grid;
  gap: 12px;
  max-width: 820px;
}

.section-heading p {
  color: var(--muted);
  margin: 0;
}

.product-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product {
  align-content: start;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(18, 20, 19, 0.06);
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
  min-height: 100%;
  padding: clamp(16px, 2.2vw, 24px);
}

.product img {
  aspect-ratio: 1 / 1;
  background: #f3efe6;
  border-radius: 6px;
  box-shadow: inset 0 0 0 1px rgba(18, 20, 19, 0.05);
  object-fit: cover;
  width: 100%;
}

.product.featured {
  border-color: rgba(15, 118, 110, 0.35);
  box-shadow: var(--shadow);
}

.product.featured img {
  aspect-ratio: 1.28 / 1;
}

.product p,
.request p,
.process p,
.process li,
li,
.fineprint {
  color: var(--muted);
}

.fact-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.fact-row span {
  background: #f2f5ef;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #414842;
  font-size: 12px;
  font-weight: 800;
  padding: 6px 10px;
}

.source-system {
  align-items: start;
  background: #fffaf1;
  border-top: 1px solid var(--line);
  display: grid;
  gap: clamp(24px, 5vw, 64px);
  grid-template-columns: minmax(0, 0.86fr) minmax(280px, 1.14fr);
  padding: clamp(34px, 6vw, 78px) clamp(18px, 5vw, 64px);
}

.source-system .lede {
  font-size: clamp(16px, 1.7vw, 20px);
}

.system-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.system-grid article {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 10px;
  min-height: 180px;
  padding: 18px;
}

.system-grid span {
  color: var(--rose);
  font-size: 12px;
  font-weight: 900;
}

.system-grid strong {
  font-size: 18px;
}

.system-grid p {
  color: var(--muted);
  margin: 0;
}

.process {
  align-items: start;
  background: #121413;
  color: white;
  display: grid;
  gap: clamp(20px, 4vw, 50px);
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1.1fr);
  padding: clamp(34px, 6vw, 78px) clamp(18px, 5vw, 64px);
}

.process .eyebrow,
.process p,
.process li {
  color: #d8dedb;
}

.process ol {
  display: grid;
  gap: 14px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.process li {
  background: #242424;
  border: 1px solid #3a3a3a;
  border-radius: 8px;
  padding: 16px;
}

.request {
  background: #eadfd2;
  display: grid;
  gap: clamp(24px, 5vw, 64px);
  grid-template-columns: minmax(0, 0.8fr) minmax(280px, 1.2fr);
  padding: clamp(34px, 6vw, 78px) clamp(18px, 5vw, 64px);
}

.trust {
  background: var(--paper);
  display: grid;
  gap: clamp(20px, 4vw, 48px);
  grid-template-columns: minmax(0, 0.85fr) minmax(280px, 1.15fr);
  padding: clamp(34px, 6vw, 78px) clamp(18px, 5vw, 64px);
}

.trust-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.trust-grid a {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 8px;
  min-height: 152px;
  padding: 18px;
  text-decoration: none;
}

.trust-grid span {
  color: var(--muted);
}

form {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: clamp(18px, 3vw, 30px);
}

label {
  display: grid;
  font-size: 13px;
  font-weight: 800;
  gap: 7px;
}

.check {
  align-items: start;
  display: grid;
  font-weight: 700;
  gap: 10px;
  grid-template-columns: 20px minmax(0, 1fr);
}

.check input {
  min-height: auto;
  margin-top: 3px;
}

.full,
.fineprint,
form button,
#form-status {
  grid-column: 1 / -1;
}

input,
select,
textarea {
  border: 1px solid #c8c2b5;
  border-radius: 6px;
  color: var(--ink);
  font: inherit;
  min-height: 44px;
  padding: 10px 12px;
}

textarea {
  resize: vertical;
}

footer {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  padding: 24px clamp(18px, 5vw, 64px);
}

footer span {
  font-weight: 800;
}

@media (max-width: 820px) {
  .site-header,
  footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero,
  .product,
  .product-grid,
  .process,
  .source-system,
  .system-grid,
  .trust,
  .trust-grid,
  .request,
  form {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-media {
    min-height: 300px;
  }

  .product-grid {
    gap: 14px;
  }

  h1 {
    font-size: clamp(39px, 12vw, 50px);
  }
}
