:root {
  --white: #fbfdfb;
  --mint: #e8f0ec;
  --sage: #7da092;
  --deep: #17231f;
  --ink: #22302c;
  --gold: #c8b06f;
  --line: rgba(34, 48, 44, 0.14);
  --sans: "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--white);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.55;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 18px clamp(20px, 4vw, 56px);
  background: linear-gradient(to bottom, rgba(251, 253, 251, 0.96), rgba(251, 253, 251, 0.72), rgba(251, 253, 251, 0));
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.mark {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  background: var(--deep);
  color: var(--white);
  font-size: 15px;
  font-weight: 800;
}

.brand-lockup strong {
  display: block;
  font-size: 21px;
  font-weight: 800;
  line-height: 1;
}

.brand-lockup em {
  display: block;
  margin-top: 5px;
  color: rgba(34, 48, 44, 0.68);
  font-size: 10px;
  font-style: normal;
  font-weight: 800;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: clamp(14px, 2.5vw, 30px);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero {
  min-height: 92vh;
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) 1.1fr;
  align-items: center;
  gap: clamp(34px, 7vw, 92px);
  padding: 150px clamp(22px, 7vw, 104px) 74px;
  background:
    linear-gradient(90deg, rgba(251, 253, 251, 1), rgba(251, 253, 251, 0.84)),
    linear-gradient(135deg, #f7faf8, #dfeae5);
}

.eyebrow,
.kicker {
  margin: 0 0 18px;
  color: var(--sage);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

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

h1 {
  max-width: 780px;
  margin-bottom: 24px;
  color: var(--deep);
  font-size: clamp(52px, 7vw, 96px);
  line-height: 0.96;
}

h2 {
  max-width: 920px;
  margin-bottom: 24px;
  color: var(--deep);
  font-size: clamp(34px, 4.8vw, 68px);
  line-height: 1;
}

h3 {
  margin-bottom: 12px;
  color: var(--deep);
  font-size: 25px;
  line-height: 1.08;
}

.hero-copy-block p,
.standard > div > p,
.request p {
  max-width: 720px;
  color: rgba(34, 48, 44, 0.72);
  font-size: clamp(17px, 1.4vw, 21px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.button,
.request-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid rgba(125, 160, 146, 0.74);
  padding: 0 22px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.primary,
.request-form button {
  background: var(--deep);
  color: var(--white);
}

.secondary {
  background: #ffffff;
}

.hero-visual img {
  display: block;
  width: 100%;
  min-height: 420px;
  object-fit: cover;
}

.signal-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--deep);
  color: var(--white);
}

.signal-strip div {
  min-height: 142px;
  padding: 28px clamp(20px, 4vw, 56px);
  border-right: 1px solid rgba(251, 253, 251, 0.14);
}

.signal-strip span {
  display: block;
  margin-bottom: 8px;
  color: #b7d0c5;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.signal-strip strong {
  display: block;
  font-size: clamp(22px, 2.3vw, 34px);
  line-height: 1.08;
}

.section {
  padding: clamp(72px, 9vw, 128px) clamp(22px, 7vw, 104px);
}

.categories {
  background: var(--white);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 34px;
  border: 1px solid var(--line);
  background: var(--line);
}

.category-grid article {
  min-height: 280px;
  padding: 30px;
  background: #ffffff;
}

.category-grid span {
  display: block;
  margin-bottom: 44px;
  color: var(--sage);
  font-size: 12px;
  font-weight: 800;
}

.category-grid p,
.standard-list p,
.workflow-list p {
  color: rgba(34, 48, 44, 0.68);
}

.standard {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) 1.2fr;
  gap: clamp(34px, 6vw, 72px);
  background: var(--mint);
}

.standard-list {
  display: grid;
  gap: 14px;
}

.standard-list article {
  padding: 28px;
  background: rgba(255, 255, 255, 0.78);
  border-left: 4px solid var(--sage);
}

.workflow {
  background: var(--deep);
  color: var(--white);
}

.workflow h2 {
  color: var(--white);
}

.workflow-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
  background: rgba(251, 253, 251, 0.14);
}

.workflow-list li {
  min-height: 260px;
  padding: 30px;
  background: #20312b;
}

.workflow-list span {
  color: #b7d0c5;
  font-size: 12px;
  font-weight: 800;
}

.workflow-list strong {
  display: block;
  margin: 46px 0 12px;
  font-size: 27px;
}

.workflow-list p {
  color: rgba(251, 253, 251, 0.68);
}

.request {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) 1.25fr;
  gap: clamp(34px, 6vw, 72px);
  background: var(--white);
}

.request-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.request-form label {
  display: grid;
  gap: 8px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.request-form input,
.request-form select,
.request-form textarea {
  width: 100%;
  border: 1px solid rgba(34, 48, 44, 0.18);
  border-radius: 0;
  padding: 13px 14px;
  background: #ffffff;
  color: var(--ink);
  font: inherit;
}

.request-form .full {
  grid-column: 1 / -1;
}

.site-footer {
  padding: 36px clamp(22px, 7vw, 104px);
  background: var(--deep);
  color: var(--white);
}

.site-footer strong {
  display: block;
  margin-bottom: 10px;
  font-size: 23px;
}

.site-footer p {
  max-width: 900px;
  margin-bottom: 0;
  color: rgba(251, 253, 251, 0.68);
  font-size: 13px;
}

@media (max-width: 900px) {
  .site-header {
    position: absolute;
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links {
    flex-wrap: wrap;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 220px;
  }

  .signal-strip,
  .category-grid,
  .standard,
  .workflow-list,
  .request,
  .request-form {
    grid-template-columns: 1fr;
  }
}


/* Inventory launch additions */
.inventory {
  background: #ffffff;
}
.inventory-note {
  max-width: 860px;
  color: rgba(34, 48, 44, 0.68);
  font-size: clamp(16px, 1.25vw, 20px);
}
.inventory-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}
.inventory-card {
  display: flex;
  min-height: 310px;
  flex-direction: column;
  gap: 12px;
  padding: 26px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
}
.inventory-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}
.inventory-top span {
  color: var(--sage);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}
.inventory-top strong {
  color: var(--deep);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}
.inventory-card h3 { margin-bottom: 0; }
.inventory-card .strength {
  color: var(--sage);
  font-weight: 800;
}
.inventory-card p { color: rgba(34, 48, 44, 0.68); }
.inventory-card small {
  display: block;
  margin-top: auto;
  color: rgba(34, 48, 44, 0.68);
  font-size: 12px;
}
.inventory-request {
  display: inline-flex;
  width: fit-content;
  margin-top: 8px;
  border-bottom: 1px solid var(--sage);
  color: var(--deep);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}
.is-waitlist { opacity: 0.72; }
.footer-links a { text-decoration: underline; text-underline-offset: 3px; }
@media (max-width: 980px) {
  .inventory-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  .inventory-grid { grid-template-columns: 1fr; }
}
