:root {
  color-scheme: light;
  --ink: #14201b;
  --muted: #5e6b64;
  --line: #d8e0db;
  --panel: #ffffff;
  --page: #f6f8f6;
  --forest: #143d2b;
  --green: #1f8a5b;
  --blue: #286fb5;
  --amber: #c37a15;
  --coral: #c6543a;
  --shadow: 0 18px 50px rgba(20, 32, 27, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 24px;
  align-items: center;
  min-height: 72px;
  padding: 14px clamp(18px, 5vw, 72px);
  border-bottom: 1px solid rgba(216, 224, 219, 0.86);
  background: rgba(246, 248, 246, 0.92);
  backdrop-filter: blur(14px);
}

.brand,
.site-nav,
.hero-actions,
.site-footer {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  min-width: 0;
  font-weight: 760;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 8px;
  background: var(--forest);
  color: #f9fbf9;
  font-size: 0.78rem;
  font-weight: 800;
}

.site-nav {
  gap: 8px;
}

.site-nav a,
.header-cta {
  min-height: 40px;
  padding: 9px 13px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 680;
}

.site-nav a {
  color: var(--muted);
}

.site-nav a:hover {
  color: var(--ink);
  background: #e8eee9;
}

.header-cta {
  background: var(--ink);
  color: #ffffff;
}

.hero {
  position: relative;
  display: grid;
  min-height: 78svh;
  overflow: hidden;
  isolation: isolate;
  padding: clamp(72px, 10vw, 118px) clamp(18px, 5vw, 72px) clamp(46px, 7vw, 86px);
  background: #eef3ef;
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: rgba(238, 243, 239, 0.72);
}

.hero-scene {
  position: absolute;
  top: 8%;
  right: -2%;
  z-index: -2;
  width: min(680px, 58vw);
  transform: rotate(-2deg);
}

.scene-shell {
  overflow: hidden;
  border: 1px solid rgba(20, 32, 27, 0.16);
  border-radius: 8px;
  background: #fdfefd;
  box-shadow: var(--shadow);
}

.scene-topbar {
  display: flex;
  gap: 7px;
  align-items: center;
  height: 42px;
  padding: 0 16px;
  border-bottom: 1px solid var(--line);
  background: #f8faf8;
}

.scene-topbar span {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--green);
}

.scene-topbar span:nth-child(2) {
  background: var(--amber);
}

.scene-topbar span:nth-child(3) {
  background: var(--coral);
}

.scene-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 14px;
  padding: 18px;
}

.scene-panel {
  min-height: 132px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.scene-panel-large {
  min-height: 278px;
  grid-row: span 2;
}

.scene-panel-wide {
  min-height: 118px;
  grid-column: span 2;
}

.scene-label,
.kit-code,
.eyebrow {
  margin: 0;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.scene-value {
  margin-top: 12px;
  color: var(--ink);
  font-size: 1.55rem;
  font-weight: 780;
}

.bar-chart {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  align-items: end;
  height: 150px;
  margin-top: 28px;
}

.bar-chart span {
  display: block;
  min-height: 36px;
  border-radius: 6px 6px 0 0;
  background: var(--blue);
}

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

.pipeline,
.seat-row,
.status-track {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

.pipeline span,
.status-track span {
  display: block;
  height: 18px;
  border-radius: 999px;
  background: #dce9e2;
}

.pipeline span:nth-child(2) {
  width: 76%;
  background: #dce8f6;
}

.pipeline span:nth-child(3) {
  width: 54%;
  background: #f4e3c8;
}

.seat-row {
  grid-template-columns: repeat(4, 30px);
}

.seat-row span {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: #dce9e2;
}

.seat-row span:nth-child(2) {
  background: #dce8f6;
}

.seat-row span:nth-child(3) {
  background: #f4e3c8;
}

.seat-row span:nth-child(4) {
  background: #f3dbd3;
}

.status-track {
  grid-template-columns: 1.1fr 0.8fr 1fr 0.65fr;
}

.status-track span {
  height: 24px;
}

.hero-content {
  width: min(650px, 100%);
  align-self: center;
}

.hero h1 {
  margin: 10px 0 18px;
  font-size: 5.4rem;
  line-height: 0.96;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 610px;
  margin: 0;
  color: #32433a;
  font-size: 1.16rem;
}

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

.button,
.kit-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 8px;
  font-weight: 760;
}

.button {
  padding: 12px 18px;
}

.button-primary {
  background: var(--green);
  color: #ffffff;
}

.button-primary:hover,
.kit-cta:hover {
  background: #176f49;
}

.button-secondary {
  border: 1px solid rgba(20, 32, 27, 0.18);
  background: rgba(255, 255, 255, 0.74);
  color: var(--ink);
}

.kits-section,
.compare-section {
  padding: clamp(54px, 8vw, 92px) clamp(18px, 5vw, 72px);
}

.section-heading {
  max-width: 790px;
  margin-bottom: 28px;
}

.section-heading h2 {
  margin: 8px 0 10px;
  font-size: 3rem;
  line-height: 1.05;
  letter-spacing: 0;
}

.section-heading p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
}

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

.kit-card,
.compare-grid > div {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.kit-card {
  display: flex;
  min-height: 474px;
  flex-direction: column;
  padding: 22px;
  box-shadow: 0 10px 26px rgba(20, 32, 27, 0.06);
}

.kit-card-featured {
  border-color: rgba(31, 138, 91, 0.42);
  box-shadow: 0 18px 46px rgba(31, 138, 91, 0.16);
}

.kit-header h3 {
  margin: 8px 0 0;
  font-size: 1.45rem;
  line-height: 1.1;
  letter-spacing: 0;
}

.kit-use {
  min-height: 54px;
  margin: 16px 0 18px;
  color: var(--muted);
}

.kit-facts {
  display: grid;
  gap: 10px;
  margin: 0 0 24px;
}

.kit-facts div {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 12px;
  align-items: start;
  min-height: 38px;
  padding-bottom: 10px;
  border-bottom: 1px solid #edf1ee;
}

.kit-facts dt {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 720;
}

.kit-facts dd {
  margin: 0;
  font-weight: 740;
}

.kit-cta {
  margin-top: auto;
  padding: 12px 16px;
  background: var(--ink);
  color: #ffffff;
}

.compare-section {
  background: #ffffff;
}

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

.compare-grid > div {
  display: grid;
  gap: 8px;
  min-height: 138px;
  padding: 20px;
}

.compare-grid strong {
  font-size: 1.02rem;
}

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

.site-footer {
  justify-content: space-between;
  gap: 18px;
  padding: 26px clamp(18px, 5vw, 72px);
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer a {
  color: var(--ink);
  font-weight: 740;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-nav {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 58px;
  }

  .hero h1 {
    font-size: 4rem;
  }

  .section-heading h2 {
    font-size: 2.35rem;
  }

  .hero-scene {
    top: 18px;
    right: -140px;
    width: 520px;
    opacity: 0.42;
  }

  .kit-grid,
  .compare-grid {
    grid-template-columns: 1fr;
  }

  .kit-card {
    min-height: auto;
  }
}

@media (max-width: 620px) {
  .site-header {
    min-height: 64px;
    gap: 12px;
    padding-inline: 14px;
  }

  .brand {
    font-size: 0.95rem;
  }

  .header-cta {
    padding-inline: 12px;
  }

  .hero {
    padding: 42px 16px 44px;
  }

  .hero-scene {
    display: none;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .section-heading h2 {
    font-size: 2rem;
  }

  .hero-copy {
    font-size: 1rem;
  }

  .button,
  .kit-cta {
    width: 100%;
  }

  .kits-section,
  .compare-section {
    padding-inline: 16px;
  }

  .kit-facts div {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    padding-inline: 16px;
  }
}
