:root {
  --ink: #15211f;
  --muted: #60706c;
  --line: #d9e4e1;
  --line-strong: #b8cac6;
  --paper: #f4f8f7;
  --white: #ffffff;
  --green: #1d7a68;
  --green-dark: #0f4f45;
  --blue: #2d6f93;
  --mint: #dff4ee;
  --aqua: #35b8c8;
  --violet: #7367d8;
  --amber: #b97819;
  --navy: #063662;
  --night: #071a24;
  --night-2: #0b2633;
  --shadow: 0 20px 60px rgba(6, 54, 98, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    linear-gradient(180deg, #fbfefe, #f4fbfa 44%, #eef7f5 74%, #ffffff);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

.ambient-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image: linear-gradient(90deg, rgba(6, 54, 98, 0.045) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, transparent, #000 20%, #000 78%, transparent);
}

img {
  max-width: 100%;
  display: block;
}

picture {
  display: block;
}

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

:focus-visible {
  outline: 3px solid var(--aqua);
  outline-offset: 3px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

button,
input,
select {
  font: inherit;
}

.topbar {
  position: sticky;
  top: 10px;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 72px;
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  padding: 12px clamp(16px, 3vw, 38px);
  border: 1px solid rgba(217, 228, 225, 0.86);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 38px rgba(6, 54, 98, 0.09);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 10px;
  font-weight: 850;
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  overflow: hidden;
  border-radius: 8px;
  background: #eefcff;
}

.brand-mark img {
  width: 160%;
  max-width: none;
}

.brand-icon {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.nav {
  display: flex;
  gap: 20px;
  margin-left: auto;
  color: var(--muted);
  font-size: 14px;
}

.nav a:hover {
  color: var(--ink);
}

.menu-toggle {
  display: none;
  place-items: center;
  align-content: center;
  gap: 4px;
  width: 44px;
  height: 44px;
  margin-left: auto;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  color: var(--navy);
  cursor: pointer;
}

.menu-toggle i {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 160ms ease, opacity 160ms ease;
}

.menu-toggle[aria-expanded="true"] i:nth-of-type(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] i:nth-of-type(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] i:nth-of-type(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.nav a,
.solid-button,
.ghost-button,
.footer-links a {
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

.solid-button,
.ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 8px;
  border: 1px solid transparent;
  cursor: pointer;
  font-weight: 800;
}

.solid-button {
  color: var(--white);
  background: linear-gradient(135deg, #0b9caf, #063662);
  box-shadow: 0 12px 28px rgba(6, 54, 98, 0.18);
}

.solid-button:hover {
  transform: translateY(-1px);
  background: linear-gradient(135deg, #0f4f45, #062c4f);
}

.ghost-button {
  color: var(--white);
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.36);
}

.large {
  min-height: 50px;
  padding: 0 22px;
}

.hero {
  position: relative;
  min-height: 92vh;
  margin-top: -82px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(390px, 0.74fr);
  gap: clamp(30px, 4.6vw, 70px);
  align-items: center;
  padding: 134px clamp(20px, 5vw, 72px) 96px;
  overflow: hidden;
  background:
    radial-gradient(circle at 86% 18%, rgba(53, 184, 200, 0.24), transparent 28rem),
    linear-gradient(135deg, #071a24 0%, #063662 62%, #07566a 100%);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 30, 55, 0.92), rgba(4, 30, 55, 0.38) 58%, rgba(4, 30, 55, 0.12)),
    linear-gradient(180deg, rgba(7, 26, 36, 0.12), rgba(7, 26, 36, 0.34));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100% - 32px));
  margin-left: 0;
  padding: 10px 0 70px;
  color: var(--white);
  transform: translateY(-34px);
}

.product-stage {
  position: relative;
  z-index: 2;
  align-self: center;
  justify-self: end;
  width: min(520px, 38vw);
  margin-top: 50px;
  transform: translateY(calc(var(--scroll, 0) * -0.055px));
  will-change: transform;
}

.product-stage::before {
  content: "";
  position: absolute;
  inset: -18px -18px 28px;
  border: 1px solid rgba(169, 231, 216, 0.24);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.04)),
    rgba(4, 30, 55, 0.28);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(14px);
}

.product-stage::after {
  content: "";
  position: absolute;
  left: 12%;
  right: 10%;
  bottom: 2%;
  height: 28px;
  border-radius: 50%;
  background: rgba(2, 18, 27, 0.34);
  filter: blur(20px);
}

.product-stage > picture,
.product-stage > picture img {
  position: relative;
  z-index: 1;
  width: 100%;
}

.product-stage > picture img {
  width: 100%;
  aspect-ratio: 3 / 4;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 8px;
  object-fit: cover;
  object-position: 50% 50%;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.28);
}

.product-callout {
  display: none;
}

.product-callout strong,
.product-callout span {
  display: block;
}

.product-callout strong {
  color: #ffffff;
  font-size: 14px;
}

.product-callout span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 12px;
  line-height: 1.35;
}

.product-callout.sample {
  top: 10%;
  right: -7%;
}

.product-callout.logistics {
  left: -8%;
  bottom: 14%;
}

.hero-content::before {
  content: "";
  position: absolute;
  left: -28px;
  top: 128px;
  bottom: 100px;
  width: 4px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--aqua), #ffffff, transparent);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #a9e7d8;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.13);
  color: var(--white) !important;
}

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

h1 {
  max-width: 720px;
  margin-bottom: 16px;
  font-size: clamp(38px, 3.8vw, 58px);
  line-height: 1.02;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 20px;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(17px, 1.7vw, 20px);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-checks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, max-content));
  gap: 8px 28px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.hero-checks li {
  position: relative;
  padding-left: 26px;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 700;
}

.hero-checks li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: rgba(169, 231, 216, 0.32);
  color: #a9e7d8;
  font-size: 12px;
}

.hero-selling-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 20px 0 18px;
}

.hero-selling-points article {
  position: relative;
  min-height: 132px;
  padding: 16px;
  border: 1px solid rgba(169, 231, 216, 0.5);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.08)),
    rgba(3, 23, 35, 0.66);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.15),
    0 18px 42px rgba(0, 0, 0, 0.17);
  backdrop-filter: blur(10px);
}

.hero-selling-points article::after {
  content: "";
  position: absolute;
  left: -1px;
  top: 16px;
  bottom: 16px;
  width: 3px;
  border-radius: 99px;
  background: linear-gradient(180deg, #a9e7d8, var(--aqua));
}

.hero-selling-points strong,
.hero-selling-points small,
.hero-selling-points span {
  display: block;
}

.hero-selling-points small {
  margin-bottom: 9px;
  color: #a9e7d8;
  font-size: 12px;
  font-weight: 900;
}

.hero-selling-points strong {
  color: #ffffff;
  font-size: clamp(15px, 1.18vw, 18px);
  line-height: 1.12;
}

.hero-selling-points span {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 12.5px;
  line-height: 1.42;
}

.price-button {
  gap: 18px;
  border-radius: 8px;
  min-width: 320px;
}

.price-button strong {
  padding-left: 18px;
  border-left: 1px solid rgba(255, 255, 255, 0.28);
}

.price-button em {
  font-style: normal;
  font-size: 22px;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.trust-strip span {
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
}

.hero-checks li,
.trust-strip span,
.hero-selling-points article,
.stat,
.workflow-feature-list div,
.feature-grid div,
.proof-list article,
.comparison-grid article {
  outline: 1px solid transparent;
}

.hero-proof {
  position: absolute;
  left: clamp(20px, 5vw, 72px);
  right: clamp(16px, 7vw, 88px);
  bottom: 24px;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 760px;
}

.hero-interface {
  position: relative;
  z-index: 1;
  width: min(360px, 100%);
  padding: 18px;
  margin-top: 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 18px;
  background:
    radial-gradient(circle at 80% 12%, rgba(53, 184, 200, 0.35), transparent 10rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.08));
  color: var(--white);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(22px);
}

.hero-interface::after {
  content: none;
}

.interface-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}

.interface-top span,
.interface-top strong {
  display: block;
}

.interface-top span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
}

.interface-top strong {
  color: #a9e7d8;
  font-size: 14px;
}

.interface-ring {
  display: grid;
  place-items: center;
  width: 104px;
  height: 104px;
  margin: 16px auto;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, rgba(16, 35, 31, 0.88) 0 52%, transparent 53%),
    conic-gradient(var(--aqua), var(--green), #f5b74f, rgba(255, 255, 255, 0.16) 78%);
}

.interface-ring span,
.interface-ring small {
  grid-area: 1 / 1;
}

.interface-ring span {
  font-size: 30px;
  font-weight: 900;
}

.interface-ring small {
  margin-top: 42px;
  color: rgba(255, 255, 255, 0.65);
  text-transform: uppercase;
  font-size: 11px;
}

.interface-bars {
  display: grid;
  gap: 11px;
}

.interface-bars label {
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  font-weight: 800;
}

.interface-bars i {
  display: block;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--aqua) var(--w), rgba(255, 255, 255, 0.15) var(--w));
}

.interface-chip {
  display: inline-flex;
  margin-top: 18px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(169, 231, 216, 0.14);
  color: #a9e7d8;
  font-size: 12px;
  font-weight: 850;
}

.hero-proof div {
  padding: 16px 22px;
  border-left: 1px solid rgba(255, 255, 255, 0.22);
  color: var(--white);
}

.hero-proof strong,
.hero-proof span {
  display: block;
}

.hero-proof strong {
  font-size: 25px;
  line-height: 1;
}

.hero-proof span {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 12px;
  text-transform: uppercase;
}

.band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  position: relative;
  background: transparent;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 -14px 60px rgba(18, 38, 34, 0.06);
}

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

.stat {
  min-height: 126px;
  padding: 26px clamp(18px, 3vw, 36px);
  background: rgba(255, 255, 255, 0.98);
  border-right: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.stat strong {
  display: block;
  color: var(--green-dark);
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.08;
}

.stat span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.35;
}

.section {
  padding: clamp(64px, 9vw, 112px) clamp(16px, 5vw, 72px);
}

.section-heading {
  max-width: 850px;
  margin-bottom: 30px;
}

.section-heading p,
.split > div > p,
.cta-section p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

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

.step-gallery article,
.comparison-grid article,
.proof-list article,
.sample-card,
.lead-form,
details {
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(248, 252, 251, 0.96));
  box-shadow: 0 6px 20px rgba(6, 54, 98, 0.045);
}

.step-gallery article,
.comparison-grid article,
.sample-card,
.lead-form {
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.step-gallery article:hover,
.comparison-grid article:hover,
.sample-card:hover,
.lead-form:hover {
  transform: translateY(-3px);
  border-color: rgba(29, 122, 104, 0.28);
  box-shadow: 0 18px 50px rgba(18, 38, 34, 0.11);
}

.step-gallery article {
  overflow: hidden;
}

.step-picture {
  aspect-ratio: 3 / 4;
  background: var(--mint);
  overflow: hidden;
}

.step-picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}

.step-picture picture,
.step-picture picture img {
  width: 100%;
  height: 100%;
}

.step-gallery span {
  display: inline-block;
  margin: 22px 22px 10px;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
}

.step-gallery h3,
.step-gallery p {
  margin-left: 22px;
  margin-right: 22px;
}

.step-gallery p {
  margin-bottom: 24px;
  color: var(--muted);
  line-height: 1.55;
}

.workflow-feature-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.workflow-feature-list div {
  min-height: 124px;
  padding: 18px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background:
    radial-gradient(circle at 90% 0%, rgba(53, 184, 200, 0.12), transparent 9rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 252, 251, 0.92));
  box-shadow: 0 8px 28px rgba(18, 38, 34, 0.06);
}

.workflow-feature-list strong,
.workflow-feature-list span {
  display: block;
}

.workflow-feature-list strong {
  color: var(--green-dark);
}

.workflow-feature-list span {
  margin-top: 7px;
  color: var(--muted);
  line-height: 1.45;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(26px, 5vw, 64px);
  align-items: center;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.92), rgba(236, 248, 245, 0.86));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.dark-panel {
  background:
    linear-gradient(135deg, var(--night) 0%, var(--night-2) 54%, #0d3b46 100%);
  color: var(--white);
}

.dark-panel .eyebrow {
  color: #a9e7d8;
}

.dark-panel p,
.dark-panel .feature-grid span,
.dark-panel .sample-card p,
.dark-panel .tube span {
  color: rgba(255, 255, 255, 0.72);
}

.dark-panel .feature-grid div,
.dark-panel .sample-card,
.dark-panel .tube {
  border-color: rgba(169, 231, 216, 0.24);
  background: rgba(255, 255, 255, 0.07);
}

.dark-panel .feature-grid strong,
.dark-panel .tube strong {
  color: #ffffff;
}

.reveal-block {
  opacity: 1;
  transform: none;
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal-block.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal-block {
    opacity: 1;
    transform: none;
  }
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 26px;
}

.feature-grid div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.feature-grid strong,
.feature-grid span {
  display: block;
}

.feature-grid span {
  margin-top: 6px;
  color: var(--muted);
  line-height: 1.45;
}

.sample-card {
  padding: 28px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.sample-card::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  right: -70px;
  top: -70px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(53, 184, 200, 0.18), transparent 68%);
}

.tube {
  position: relative;
  min-height: 92px;
  margin-bottom: 16px;
  padding: 20px 20px 20px 92px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(90deg, var(--mint), #f8fbfa);
}

.tube::before {
  content: "";
  position: absolute;
  left: 26px;
  top: 18px;
  width: 34px;
  height: 56px;
  border: 3px solid var(--green-dark);
  border-radius: 16px 16px 8px 8px;
  background: linear-gradient(0deg, rgba(29, 122, 104, 0.42) var(--fill), transparent var(--fill));
}

.tube-small {
  --fill: 28%;
}

.tube-large {
  --fill: 78%;
}

.tube span,
.tube strong {
  display: block;
}

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

.tube strong {
  margin-top: 4px;
  color: var(--green-dark);
  font-size: 24px;
}

.sample-card p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.55;
}

.speed-section {
  background: linear-gradient(180deg, rgba(238, 247, 245, 0.84), rgba(245, 250, 249, 0.96));
}

.dashboard-section {
  background: var(--white);
}

.dashboard-wrap {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(360px, 1fr);
  gap: 28px;
  align-items: stretch;
}

.dashboard-copy {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.dashboard-copy p {
  color: var(--muted);
  line-height: 1.6;
}

.mini-feature {
  padding: 16px 0;
  border-top: 1px solid var(--line);
}

.mini-feature strong,
.mini-feature span {
  display: block;
}

.mini-feature span {
  margin-top: 5px;
  color: var(--muted);
}

.dashboard-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    radial-gradient(circle at 85% 12%, rgba(53, 184, 200, 0.22), transparent 22rem),
    linear-gradient(145deg, rgba(16, 35, 31, 0.98), rgba(18, 54, 62, 0.96));
  color: var(--white);
  box-shadow: var(--shadow);
}

.dashboard-top {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.dashboard-top span,
.dashboard-top strong {
  display: block;
}

.dashboard-top span {
  color: rgba(255, 255, 255, 0.64);
}

.dashboard-top strong {
  margin-top: 5px;
  font-size: 22px;
}

.dashboard-top b {
  display: grid;
  place-items: center;
  width: 70px;
  height: 70px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--green);
  font-size: 30px;
}

.score-list {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.score-list label {
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 750;
}

.score-list progress {
  width: 100%;
  height: 10px;
  overflow: hidden;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
}

.score-list progress::-webkit-progress-bar {
  background: rgba(255, 255, 255, 0.16);
}

.score-list progress::-webkit-progress-value {
  background: linear-gradient(90deg, #32c7ad, #f5b74f);
}

.marker-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 24px;
}

.marker-list div {
  padding: 14px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.marker-list strong,
.marker-list span,
.marker-list em {
  display: block;
}

.marker-list span {
  margin-top: 6px;
  color: #a9e7d8;
  font-size: 13px;
}

.marker-list em {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-style: normal;
}

.specimen-section {
  display: grid;
  grid-template-columns: minmax(360px, 0.95fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 74px);
  align-items: center;
  border-top: 1px solid rgba(184, 202, 198, 0.72);
  border-bottom: 1px solid rgba(184, 202, 198, 0.72);
  background:
    linear-gradient(110deg, rgba(255, 255, 255, 0.92), rgba(242, 249, 248, 0.88)),
    radial-gradient(circle at 12% 18%, rgba(53, 184, 200, 0.14), transparent 24rem),
    linear-gradient(180deg, #f7fbfb, #edf6f5);
  color: var(--ink);
  overflow: hidden;
}

.specimen-visual {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border: 1px solid rgba(184, 202, 198, 0.92);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 28px 70px rgba(6, 54, 98, 0.14);
  transform: translateY(calc(var(--scroll, 0) * -0.018px));
  will-change: transform;
}

.specimen-visual picture,
.specimen-visual img {
  width: 100%;
  height: 100%;
}

.specimen-visual img {
  position: absolute;
  inset: 0;
  object-fit: cover;
  object-position: 54% 50%;
  filter: saturate(0.96) contrast(1.02);
}

.specimen-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08), transparent 45%),
    linear-gradient(180deg, transparent 66%, rgba(6, 54, 98, 0.16));
  pointer-events: none;
}

.specimen-phone {
  position: absolute;
  right: clamp(14px, 4vw, 34px);
  bottom: clamp(14px, 4vw, 32px);
  z-index: 1;
  width: min(132px, 31%);
  min-width: 104px;
  padding: 14px 12px 16px;
  border: 1px solid rgba(6, 54, 98, 0.2);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 44px rgba(6, 54, 98, 0.2);
  backdrop-filter: blur(14px);
}

.specimen-phone span,
.specimen-phone b {
  display: block;
}

.specimen-phone span {
  color: var(--green);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0;
}

.specimen-phone b {
  margin: 8px 0 12px;
  color: var(--ink);
  font-size: 13px;
  line-height: 1.15;
}

.specimen-phone i {
  display: block;
  height: 6px;
  margin-top: 8px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--green), var(--aqua) 68%, #f5b74f);
}

.specimen-copy .eyebrow {
  color: var(--green);
}

.specimen-copy p {
  max-width: 680px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.specimen-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.specimen-metrics div {
  min-height: 104px;
  padding: 18px;
  border: 1px solid rgba(184, 202, 198, 0.9);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 18px 36px rgba(6, 54, 98, 0.08);
}

.specimen-metrics strong,
.specimen-metrics span {
  display: block;
}

.specimen-metrics strong {
  color: var(--ink);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1;
}

.specimen-metrics span {
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.35;
}

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

.timeline div {
  min-height: 210px;
  padding: 24px;
  border-left: 5px solid var(--green);
  border-radius: 8px;
  background: var(--white);
}

.timeline span {
  color: var(--blue);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.timeline strong {
  display: block;
  margin-top: 10px;
  font-size: 22px;
}

.timeline p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

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

.comparison-grid article {
  padding: 24px;
}

.comparison-grid p,
.comparison-grid li {
  color: var(--muted);
  line-height: 1.55;
}

.comparison-grid ul {
  margin: 18px 0 0;
  padding-left: 20px;
}

.comparison-grid li + li {
  margin-top: 8px;
}

.highlight-card {
  border-color: rgba(29, 122, 104, 0.45) !important;
  background: linear-gradient(180deg, #ffffff, var(--mint)) !important;
  box-shadow: var(--shadow) !important;
}

.proof-section {
  display: grid;
  grid-template-columns: minmax(240px, 0.75fr) minmax(0, 1.25fr);
  gap: 32px;
  background: linear-gradient(135deg, #052d51, #0f4f62);
  color: var(--white);
}

.proof-section .eyebrow {
  color: #a9e7d8;
}

.proof-list {
  display: grid;
  gap: 12px;
}

.proof-list article {
  padding: 20px;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: none;
}

.proof-list strong {
  display: block;
  margin-bottom: 8px;
  color: #a9e7d8;
}

.proof-list p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.55;
}

.cta-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 0.65fr);
  gap: 36px;
  align-items: start;
  background:
    radial-gradient(circle at 72% 20%, rgba(53, 184, 200, 0.12), transparent 24rem),
    transparent;
}

.lead-form {
  display: grid;
  gap: 14px;
  padding: 24px;
}

.lead-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 750;
}

.lead-form input,
.lead-form select {
  width: 100%;
  min-height: 46px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
}

.form-message {
  min-height: 24px;
  margin: 0;
  color: var(--green-dark);
  font-weight: 750;
}

.form-error {
  min-height: 22px;
  margin: 0;
  color: #9f2d20;
  font-weight: 800;
}

.faq-section {
  background: var(--white);
}

details {
  max-width: 900px;
  padding: 18px 22px;
  box-shadow: none;
}

details + details {
  margin-top: 12px;
}

summary {
  cursor: pointer;
  font-weight: 850;
}

details p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.footer {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  padding: 28px clamp(16px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.82);
  background: #10231f;
}

.footer strong {
  color: var(--white);
}

.fine-print {
  width: 100%;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
}

.payment-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.payment-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(29, 122, 104, 0.18);
  border-radius: 7px;
  background: linear-gradient(145deg, #ffffff, #edf7f5);
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 850;
  box-shadow: 0 8px 20px rgba(18, 38, 34, 0.06);
}

.order-card {
  padding: 28px;
  border: 1px solid rgba(29, 122, 104, 0.28);
  border-radius: 8px;
  background:
    radial-gradient(circle at 85% 15%, rgba(53, 184, 200, 0.18), transparent 12rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(239, 248, 246, 0.94));
  box-shadow: var(--shadow);
}

.order-price {
  display: block;
  margin: 18px 0;
  color: var(--green-dark);
  font-size: 54px;
  line-height: 1;
}

.order-card small {
  display: block;
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.45;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.mobile-sticky-cta {
  display: none;
}

.page-topbar {
  margin-top: 10px;
}

.page-main {
  padding: clamp(54px, 7vw, 96px) clamp(16px, 5vw, 72px);
}

.checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: 32px;
  align-items: start;
}

.page-main h1,
.policy-page h1 {
  color: var(--ink);
  font-size: clamp(42px, 6vw, 72px);
}

.page-copy {
  max-width: 780px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.checkout-form,
.summary-card,
.policy-page,
.contact-grid div {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 252, 251, 0.92));
  box-shadow: 0 12px 36px rgba(18, 38, 34, 0.08);
}

.checkout-form {
  display: grid;
  gap: 18px;
  margin-top: 28px;
  padding: 24px;
}

.form-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.optional-label {
  color: var(--muted);
  font-size: 12px;
  font-weight: 650;
}

.checkout-form fieldset {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0 0 20px;
  border: 0;
  border-bottom: 1px solid var(--line);
}

.checkout-form fieldset:last-of-type {
  border-bottom: 0;
  padding-bottom: 0;
}

.checkout-form legend {
  margin-bottom: 10px;
  color: var(--green-dark);
  font-size: 20px;
  font-weight: 900;
}

.checkout-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 760;
}

.checkout-form input,
.checkout-form select,
.checkout-form textarea {
  min-height: 46px;
  width: 100%;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.checkout-form textarea {
  min-height: 116px;
  padding: 12px;
  resize: vertical;
}

.application-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0;
}

.application-points span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid rgba(29, 122, 104, 0.18);
  border-radius: 8px;
  background: #ffffff;
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 850;
}

.partner-summary ol {
  margin: 0 0 18px;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.55;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 90px 120px;
  gap: 12px;
}

.form-row.two-col {
  grid-template-columns: 1fr 1fr;
}

.large-strip {
  margin-top: 0;
}

.processor-note {
  color: var(--muted);
  line-height: 1.55;
}

.terms-check {
  grid-template-columns: auto 1fr !important;
  align-items: start;
  font-weight: 600 !important;
}

.terms-check input {
  width: auto;
  min-height: 0;
  margin-top: 5px;
}

.terms-check a {
  color: var(--green-dark);
  text-decoration: underline;
}

.summary-card {
  position: sticky;
  top: 104px;
  padding: 24px;
}

.summary-card h2 {
  font-size: 30px;
}

.summary-line,
.summary-total {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.summary-total {
  color: var(--green-dark);
  font-size: 22px;
  font-weight: 900;
}

.summary-card p,
.summary-card li {
  color: var(--muted);
  line-height: 1.55;
}

.policy-page {
  max-width: 940px;
  margin: clamp(54px, 8vw, 92px) auto;
  padding: clamp(28px, 5vw, 56px);
}

.policy-page h2 {
  margin-top: 30px;
  font-size: 28px;
}

.policy-page p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 28px 0;
}

.contact-grid div {
  padding: 18px;
}

.contact-grid strong,
.contact-grid span,
.contact-grid a {
  display: block;
}

.contact-grid span,
.contact-grid a {
  margin-top: 6px;
  color: var(--muted);
}

.contact-grid a {
  font-weight: 750;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.login-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: 36px;
  align-items: center;
}

.portal-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.portal-preview-grid div,
.portal-login-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 252, 251, 0.92));
  box-shadow: 0 12px 36px rgba(18, 38, 34, 0.08);
}

.portal-preview-grid div {
  padding: 18px;
}

.portal-preview-grid strong,
.portal-preview-grid span {
  display: block;
}

.portal-preview-grid span {
  margin-top: 6px;
  color: var(--muted);
  line-height: 1.45;
}

.portal-login-card {
  display: grid;
  gap: 14px;
  padding: 28px;
}

.portal-login-card label {
  display: grid;
  gap: 8px;
  font-weight: 760;
}

.portal-login-card input {
  min-height: 46px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.portal-login-card .password-toggle {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 10px;
  font-size: 14px;
  font-weight: 720;
  color: var(--muted);
  cursor: pointer;
}

.portal-login-card .password-toggle input[type="checkbox"] {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  min-height: 0;
  margin: 0;
  padding: 0;
  accent-color: var(--green);
}

.portal-login-card small {
  color: var(--muted);
  line-height: 1.45;
}

.portal-login-card > p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.preview-badge {
  display: inline-flex;
  justify-self: start;
  min-height: 30px;
  align-items: center;
  padding: 0 10px;
  border: 1px solid #f0c875;
  border-radius: 999px;
  background: #fff8e6;
  color: #6f4b08;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.confirmation-page {
  min-height: min(620px, calc(100vh - 190px));
  display: grid;
  align-content: center;
}

.confirmation-page .eyebrow {
  margin-bottom: 8px;
}

.confirmation-page h1 {
  margin-top: 0;
}

.confirmation-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-top: 28px;
}

.text-link,
.policy-page a:not(.solid-button) {
  color: var(--green-dark);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.portal-body {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 292px minmax(0, 1fr);
  background: #f7fbfd;
  color: #071835;
}

.portal-sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 26px 16px;
  background:
    radial-gradient(circle at 42% 0%, rgba(53, 184, 200, 0.2), transparent 13rem),
    linear-gradient(180deg, #071835 0%, #06274a 56%, #05182f 100%);
  color: var(--white);
}

.portal-brand {
  color: var(--white);
  padding: 0 10px;
}

.portal-sidebar .brand-mark {
  background: #e8fbff;
  color: #06274a;
}

.portal-kicker {
  margin: -12px 10px 8px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  font-weight: 850;
  text-transform: uppercase;
}

.portal-nav {
  display: grid;
  gap: 8px;
}

.portal-nav a,
.ghost-dark {
  padding: 13px 16px;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 760;
}

.portal-nav a.active,
.portal-nav a:hover,
.ghost-dark:hover {
  background: rgba(53, 184, 200, 0.18);
  color: var(--white);
}

.portal-account-card {
  display: grid;
  justify-items: center;
  gap: 8px;
  margin-top: auto;
  padding: 22px 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  text-align: center;
}

.portal-account-card span,
.portal-header-actions strong {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, #35b8c8, #0a2d5f);
  color: #ffffff;
  font-weight: 900;
}

.portal-account-card small {
  color: rgba(255, 255, 255, 0.72);
}

.portal-account-card a {
  width: 100%;
  min-height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: #ffffff;
  font-weight: 850;
}

.ghost-dark {
  border: 1px solid rgba(255, 255, 255, 0.18);
  text-align: center;
}

.portal-main {
  padding: 26px 34px 20px;
  overflow-x: hidden;
}

.portal-header {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  margin-bottom: 20px;
}

.portal-header h1 {
  margin: 0 0 8px;
  color: #071835;
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1;
}

.portal-header p:last-child {
  color: var(--muted);
  margin: 0;
}

.portal-header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #263855;
  font-size: 14px;
  font-weight: 780;
}

.portal-header-actions button {
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid #dbe5ed;
  border-radius: 8px;
  background: #ffffff;
  color: #263855;
  cursor: pointer;
  font-weight: 800;
}

.portal-alert {
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #35b8c8;
  color: #ffffff;
  font-size: 11px;
  font-weight: 900;
}

.portal-stats {
  display: grid;
  grid-template-columns: 1.05fr 1.8fr 1.05fr 1.2fr;
  gap: 16px;
  margin: 0 0 18px;
}

.portal-stats article,
.portal-panel {
  border: 1px solid #dbe5ed;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 38px rgba(7, 24, 53, 0.07);
}

.portal-stats article {
  padding: 22px;
}

.portal-stats span,
.portal-stats small {
  display: block;
  color: var(--muted);
}

.portal-stats strong {
  display: block;
  margin: 8px 0;
  color: #071835;
  font-size: 40px;
  line-height: 1;
}

.portal-stats a {
  display: inline-block;
  margin-top: 18px;
  color: #008aa4;
  font-weight: 850;
}

.status-counts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 22px 0 4px;
}

.status-counts b {
  display: block;
  color: #008aa4;
  font-size: 31px;
  line-height: 1;
}

.status-counts small {
  margin-top: 8px;
  color: #60708a;
  font-size: 12px;
  font-weight: 700;
}

.target-stat strong {
  display: grid;
  place-items: center;
  width: 92px;
  height: 92px;
  margin-left: auto;
  border: 9px solid #1598aa;
  border-radius: 50%;
  color: #071835;
  font-size: 28px;
}

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

.portal-image-showcase {
  display: grid;
  gap: 24px;
}

.portal-image-card {
  margin: 0;
  border: 1px solid #dbe5ed;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 52px rgba(7, 24, 53, 0.08);
  overflow: hidden;
}

.portal-image-card figcaption {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  padding: 18px 20px;
  border-bottom: 1px solid #dbe5ed;
}

.portal-image-card figcaption span,
.portal-image-card figcaption strong {
  display: block;
}

.portal-image-card figcaption span {
  color: #008aa4;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.portal-image-card figcaption strong {
  color: #071835;
  font-size: 18px;
}

.portal-image-card img {
  display: block;
  width: 100%;
  height: auto;
}

.portal-card-body {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  padding: 22px;
}

.portal-card-body article {
  min-height: 132px;
  padding: 18px;
  border: 1px solid #dbe5ed;
  border-radius: 8px;
  background: linear-gradient(180deg, #f8fcfd, #ffffff);
}

.portal-card-body b,
.portal-card-body strong,
.portal-card-body small {
  display: block;
  letter-spacing: 0;
}

.portal-card-body b {
  color: #52686c;
  font-size: 13px;
}

.portal-card-body strong {
  margin-top: 14px;
  color: #063662;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1;
}

.portal-card-body small {
  margin-top: 12px;
  color: #60706c;
  font-size: 13px;
  line-height: 1.35;
}

.portal-panel {
  padding: 22px;
  overflow: auto;
}

.portal-panel.wide {
  grid-column: span 2;
}

.panel-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin-bottom: 16px;
}

.panel-top h2 {
  margin: 0;
  color: #071835;
  font-size: 22px;
}

.panel-top button,
.portal-panel table button {
  min-height: 34px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f7fbfd;
  color: #006f87;
  cursor: pointer;
  font-weight: 800;
}

.chart-panel {
  min-height: 294px;
}

.line-chart {
  position: relative;
  min-height: 178px;
  margin: 14px 0 12px;
  border-left: 1px solid #dbe5ed;
  border-bottom: 1px solid #dbe5ed;
  background:
    linear-gradient(#e9eef4 1px, transparent 1px) 0 22px / 100% 40px;
}

.line-chart::before {
  content: "";
  position: absolute;
  left: 4%;
  right: 4%;
  top: 58%;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #287ee7, #22a5b7, #ff9f2a, #5aac49);
  transform: rotate(-8deg);
  transform-origin: left center;
}

.reports-chart::before {
  background: #5aac49;
  transform: rotate(-13deg);
}

.line-chart i {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #287ee7;
  box-shadow: 0 0 0 4px rgba(40, 126, 231, 0.12);
}

.reports-chart i {
  background: #5aac49;
  box-shadow: 0 0 0 4px rgba(90, 172, 73, 0.12);
}

.chart-key {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  color: #425574;
  font-size: 13px;
}

.chart-key span::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 3px;
  margin-right: 6px;
  border-radius: 999px;
  background: #1598aa;
  vertical-align: middle;
}

.portal-panel table {
  width: 100%;
  border-collapse: collapse;
  min-width: 780px;
}

.portal-panel th,
.portal-panel td {
  padding: 13px 10px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.portal-panel th {
  color: var(--muted);
  font-size: 13px;
  text-transform: uppercase;
}

.status {
  display: inline-flex;
  padding: 5px 8px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 850;
}

.status.good {
  background: #dff4ee;
  color: var(--green-dark);
}

.status.warn {
  background: #fff0d0;
  color: #8a5a0a;
}

.status.info {
  background: #d8f3f7;
  color: #007b91;
}

.status.blue {
  background: #dbeafe;
  color: #1f6ed4;
}

.muted-status {
  background: #edf1f0;
  color: var(--muted);
}

.tracking-rail {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
  margin: 18px 0;
}

.tracking-rail span {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 54px;
  padding: 8px;
  border: 1px solid #dbe5ed;
  border-radius: 999px;
  color: #60708a;
  font-size: 12px;
  font-weight: 850;
  text-align: center;
}

.tracking-rail span.complete {
  border-color: rgba(21, 152, 170, 0.42);
  background: #e8faf8;
  color: #007b91;
}

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

.report-score-grid div {
  min-height: 144px;
  padding: 16px;
  border: 1px solid #dbe5ed;
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff, #f7fbfd);
  text-align: center;
}

.report-score-grid b {
  display: grid;
  place-items: center;
  width: 70px;
  height: 70px;
  margin: 0 auto 10px;
  border: 6px solid #17985d;
  border-radius: 50%;
  color: #071835;
  font-size: 26px;
}

.report-score-grid div:nth-child(2) b {
  border-color: #f0a11d;
}

.report-score-grid div:nth-child(4) b {
  border-color: #ef5b18;
}

.report-score-grid span,
.report-score-grid em {
  display: block;
}

.report-score-grid span {
  color: #071835;
  font-weight: 850;
}

.report-score-grid em {
  margin-top: 6px;
  color: #60708a;
  font-style: normal;
  font-size: 13px;
}

.portal-disclaimer {
  margin: 16px 0 0;
  color: #60708a;
  font-size: 13px;
}

.mini-form {
  display: grid;
  gap: 12px;
}

.mini-form label {
  display: grid;
  gap: 7px;
  font-weight: 760;
}

.mini-form input,
.mini-form select {
  min-height: 42px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.status-list,
.team-list,
.invoice-list,
.requirement-grid {
  display: grid;
  gap: 10px;
}

.status-list div,
.team-list div,
.invoice-list div,
.requirement-grid div,
.reorder-card {
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.status-list span,
.status-list strong,
.status-list em,
.team-list strong,
.team-list span,
.invoice-list span,
.invoice-list strong,
.invoice-list em,
.requirement-grid strong,
.requirement-grid span,
.reorder-card strong,
.reorder-card span {
  display: block;
}

.status-list strong,
.reorder-card span {
  margin-top: 5px;
  color: var(--green-dark);
  font-size: 20px;
}

.status-list em,
.team-list span,
.invoice-list em,
.requirement-grid span,
.reorder-card p {
  margin-top: 5px;
  color: var(--muted);
  font-style: normal;
  line-height: 1.45;
}

.invoice-list div {
  position: relative;
  padding-right: 88px;
}

.invoice-list strong {
  margin-top: 5px;
  color: var(--green-dark);
  font-size: 24px;
}

.invoice-list .status {
  position: absolute;
  right: 14px;
  top: 16px;
}

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

@media (max-width: 900px) {
  .checkout-layout,
  .form-row,
  .contact-grid,
  .login-layout,
  .portal-preview-grid {
    grid-template-columns: 1fr;
  }

  .summary-card {
    position: static;
  }
}

@media (max-width: 900px) {
  .portal-body {
    grid-template-columns: 1fr;
  }

  .portal-sidebar {
    position: static;
    height: auto;
    gap: 12px;
    padding: 12px 14px 16px;
  }

  .portal-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .portal-nav a {
    padding: 10px 13px;
    white-space: normal;
  }

  .portal-nav a:nth-child(n + 5) {
    display: none;
  }

  .portal-kicker,
  .ghost-dark {
    display: none;
  }

  .portal-stats,
  .portal-grid,
  .requirement-grid {
    grid-template-columns: 1fr;
  }

  .status-counts,
  .report-score-grid,
  .tracking-rail {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .portal-panel.wide {
    grid-column: auto;
  }

  .portal-header {
    display: grid;
    max-width: 100%;
  }

  .portal-header-actions {
    display: grid;
    grid-template-columns: auto auto minmax(0, 1fr);
    width: 100%;
    max-width: 100%;
  }

  .portal-header-actions button {
    grid-column: 1 / -1;
    width: min(100%, 260px);
  }

  .portal-main {
    max-width: 100vw;
    padding: 18px 14px;
  }

  .portal-stats,
  .portal-panel,
  .portal-image-card,
  .portal-grid {
    max-width: 100%;
    min-width: 0;
  }

  .portal-image-card {
    overflow: hidden;
  }

  .portal-image-card figcaption {
    display: grid;
    gap: 8px;
    padding: 16px;
  }

  .portal-image-card img {
    width: 100%;
    max-width: 100%;
    aspect-ratio: 16 / 11;
    object-fit: cover;
    object-position: 0 0;
  }

  .portal-account-card {
    display: none;
  }
}

@media (max-width: 1040px) {
  .nav {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    width: min(320px, calc(100vw - 32px));
    margin-left: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.99);
    box-shadow: var(--shadow);
  }

  .nav.is-open {
    display: flex;
  }

  .nav a {
    display: flex;
    align-items: center;
    min-height: 44px;
    padding: 0 12px;
    border-radius: 7px;
    color: var(--ink);
    font-size: 15px;
  }

  .nav a:hover,
  .nav a:focus-visible {
    background: var(--paper);
  }

  .menu-toggle {
    display: grid;
  }

  .topbar {
    justify-content: space-between;
  }

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

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

  .step-gallery,
  .split,
  .proof-section,
  .cta-section,
  .dashboard-wrap,
  .specimen-section {
    grid-template-columns: 1fr;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 104px clamp(16px, 5vw, 42px) 46px;
    background:
      linear-gradient(180deg, #062c4f 0, #07566a 100%);
  }

  .hero-content {
    width: min(760px, 100%);
    margin-left: 0;
    padding: 0 0 14px;
    transform: none;
  }

  .product-stage {
    width: min(760px, 100%);
    justify-self: stretch;
    margin: 8px auto 34px;
  }

  .product-callout.sample {
    right: 0;
  }

  .product-callout.logistics {
    left: 0;
  }
}

@media (max-width: 680px) {
  body {
    padding-bottom: 0;
  }

  .topbar {
    min-height: 62px;
    top: 0;
    width: 100%;
    border-radius: 0;
    padding: 8px 14px;
    gap: 8px;
  }

  .brand {
    gap: 8px;
    font-size: 15px;
  }

  .brand-icon {
    width: 32px;
    height: 32px;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
  }

  .topbar .solid-button {
    display: inline-flex;
    min-height: 40px;
    padding: 0 10px;
    font-size: 12px;
    text-align: center;
    box-shadow: none;
  }

  .nav {
    top: calc(100% + 6px);
    right: 12px;
    left: 12px;
    width: auto;
  }

  .hero {
    min-height: auto;
    margin-top: 0;
    padding: 14px 16px 28px;
    gap: 16px;
    background:
      radial-gradient(circle at 72% 8%, rgba(53, 184, 200, 0.28), transparent 17rem),
      linear-gradient(180deg, #062c4f 0, #07566a 58%, #063662 100%);
  }

  .hero-shade,
  .hero-content::before,
  .product-stage::before,
  .product-stage::after {
    display: none;
  }

  .hero-content {
    order: 2;
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--white);
    box-shadow: none;
  }

  .hero .eyebrow,
  .hero-badge {
    color: #dff4ee !important;
  }

  .hero-badge {
    max-width: 100%;
    border-color: rgba(169, 231, 216, 0.28);
    background: rgba(255, 255, 255, 0.12);
    font-size: 11px;
    line-height: 1.15;
  }

  .product-stage {
    order: 1;
    width: 100%;
    margin: 0 auto;
  }

  .product-stage img {
    height: clamp(280px, 79vw, 338px);
    max-height: 338px;
    border-color: rgba(255, 255, 255, 0.34);
    border-radius: 8px;
    object-fit: cover;
    object-position: 50% 62%;
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.24);
  }

  .product-callout {
    display: none;
  }

  .product-callout.sample,
  .product-callout.logistics {
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
  }

  h1 {
    max-width: 100%;
    margin-bottom: 10px;
    color: #ffffff;
    font-size: clamp(30px, 8vw, 34px);
    line-height: 1.03;
  }

  h2 {
    font-size: clamp(28px, 8vw, 34px);
    line-height: 1.08;
  }

  h3 {
    font-size: 19px;
  }

  .hero-copy {
    order: 3;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: 15.5px;
    line-height: 1.5;
  }

  .hero-checks li {
    color: var(--white);
  }

  .hero-checks li::before {
    background: rgba(169, 231, 216, 0.24);
    color: #dff4ee;
  }

  .hero-selling-points {
    order: 5;
    grid-template-columns: 1fr;
    gap: 8px;
    margin: 14px 0;
  }

  .hero-selling-points article {
    min-height: auto;
    padding: 11px 13px 11px 16px;
    border-color: rgba(169, 231, 216, 0.26);
    background: rgba(3, 23, 35, 0.42);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  }

  .hero-selling-points article::after {
    top: 13px;
    bottom: 13px;
    background: linear-gradient(180deg, #a9e7d8, var(--aqua));
  }

  .hero-selling-points small {
    margin-bottom: 5px;
    color: #a9e7d8;
  }

  .hero-selling-points strong {
    color: #ffffff;
    font-size: 15.5px;
  }

  .hero-selling-points span {
    color: rgba(255, 255, 255, 0.76);
    font-size: 12.5px;
    line-height: 1.32;
  }

  .ghost-button {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.1);
  }

  .trust-strip {
    order: 6;
    margin-top: 16px;
  }

  .trust-strip span {
    width: calc(50% - 5px);
    padding: 8px 9px;
    border-color: rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.82);
    font-size: 12px;
    line-height: 1.25;
  }

  .hero-actions {
    order: 4;
    margin-top: 18px;
  }

  .hero-actions a {
    width: 100%;
  }

  .price-button {
    min-width: 0;
  }

  .hero-checks,
  .hero-proof,
  .marker-list {
    grid-template-columns: 1fr;
  }

  .hero-proof {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    width: 100%;
    order: 3;
    margin: 0 auto;
    overflow: hidden;
    border: 1px solid rgba(169, 231, 216, 0.26);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: none;
  }

  .hero-proof div {
    padding: 12px 14px;
    border-left: 0;
    border-top: 1px solid rgba(169, 231, 216, 0.18);
    color: #ffffff;
  }

  .hero-proof div:first-child {
    border-top: 0;
  }

  .hero-proof strong {
    font-size: 22px;
  }

  .hero-proof span {
    color: rgba(255, 255, 255, 0.72);
  }

  .band,
  .band.stats-band,
  .timeline,
  .comparison-grid,
  .feature-grid,
  .workflow-feature-list,
  .specimen-metrics {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 48px 16px;
  }

  .reveal-block {
    opacity: 1;
    transform: none;
  }

  .section-heading {
    margin-bottom: 22px;
  }

  .section-heading p,
  .split > div > p,
  .cta-section p {
    font-size: 15.5px;
    line-height: 1.55;
  }

  .stat {
    min-height: auto;
    padding: 20px 18px;
  }

  .stat strong {
    font-size: 22px;
  }

  .step-picture {
    aspect-ratio: 4 / 3;
  }

  .workflow-feature-list div,
  .feature-grid div,
  .proof-list article,
  .timeline div,
  .comparison-grid article {
    min-height: auto;
    padding: 16px;
  }

  .sample-card,
  .dashboard-copy,
  .dashboard-card,
  .order-card {
    padding: 20px;
  }

  .specimen-visual {
    min-height: 280px;
  }

  .specimen-phone {
    width: 112px;
    min-width: 0;
  }

  .dashboard-top {
    align-items: center;
  }

  .dashboard-top strong {
    font-size: 18px;
  }

  .dashboard-top b {
    width: 56px;
    height: 56px;
    font-size: 24px;
  }

  .order-price {
    font-size: 42px;
  }

  .footer {
    display: grid;
    padding: 24px 16px;
  }

  .step-gallery article:hover,
  .comparison-grid article:hover,
  .sample-card:hover,
  .lead-form:hover {
    transform: none;
  }

  .mobile-sticky-cta {
    display: none;
  }
}

@media (max-width: 360px) {
  .brand > span {
    display: none;
  }

  .topbar .solid-button {
    padding: 0 8px;
    font-size: 11px;
  }
}

/* Premium BioLabKit program redesign */
.program-site {
  background:
    linear-gradient(180deg, #f9fcfc 0%, #eef6f6 42%, #ffffff 100%);
}

.bk-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(440px, 1.1fr);
  gap: clamp(28px, 4vw, 58px);
  align-items: start;
  min-height: 78vh;
  margin-top: -82px;
  padding: 112px clamp(20px, 5vw, 72px) 42px;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 10%, rgba(53, 184, 200, 0.17), transparent 28rem),
    linear-gradient(135deg, #f8fcfc 0%, #eef7f6 48%, #dcebed 100%);
}

.bk-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(6, 54, 98, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(6, 54, 98, 0.035) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: linear-gradient(180deg, #000, transparent 82%);
  pointer-events: none;
}

.bk-hero-copy,
.bk-hero-visual,
.benefit-tiles {
  position: relative;
  z-index: 1;
}

.bk-hero-copy {
  display: grid;
  justify-items: center;
  text-align: center;
}

.bk-hero-copy h1 {
  max-width: 800px;
  color: #0d2428;
  font-size: clamp(42px, 4.7vw, 66px);
  line-height: 0.98;
}

.bk-hero-copy p {
  max-width: 680px;
  color: #4e6465;
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.58;
}

.hero-claim-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  width: min(100%, 760px);
  margin-top: 20px;
}

.hero-claim-strip strong {
  display: grid;
  place-items: center;
  min-height: 56px;
  padding: 10px 12px;
  border: 1px solid rgba(6, 54, 98, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  color: #0f4f45;
  box-shadow: 0 12px 32px rgba(6, 54, 98, 0.08);
  font-size: 15px;
  line-height: 1.18;
}

.bk-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

.bk-actions .ghost-button {
  color: #063662;
  border-color: rgba(6, 54, 98, 0.18);
  background: rgba(255, 255, 255, 0.7);
}

.bk-hero-visual {
  justify-self: stretch;
}

.bk-hero .lifestyle-stage {
  width: min(650px, 100%);
  margin-top: 0;
  justify-self: end;
}

.bk-hero .lifestyle-stage > picture img {
  object-position: 50% 56%;
}

.kit-scene {
  position: relative;
  min-height: 560px;
  border: 1px solid rgba(184, 202, 198, 0.82);
  border-radius: 8px;
  background:
    radial-gradient(circle at 28% 18%, rgba(255, 255, 255, 0.95), transparent 16rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(226, 239, 239, 0.92));
  box-shadow: 0 32px 90px rgba(6, 54, 98, 0.15);
  overflow: hidden;
}

.kit-scene::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: 12%;
  height: 38%;
  border-radius: 50%;
  background: rgba(6, 54, 98, 0.08);
  filter: blur(28px);
}

.kit-box,
.status-card,
.report-card,
.mailer,
.collection-device {
  position: absolute;
  border: 1px solid rgba(6, 54, 98, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 22px 54px rgba(6, 54, 98, 0.14);
}

.kit-box {
  left: 9%;
  top: 14%;
  width: 52%;
  min-height: 170px;
  padding: 28px;
  display: grid;
  align-content: center;
  transform: rotate(-2deg);
}

.kit-box span,
.status-card span,
.report-card span {
  color: #1d7a68;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.kit-box strong {
  color: #10231f;
  font-size: 26px;
  line-height: 1.08;
}

.collection-device {
  right: 11%;
  top: 12%;
  width: 118px;
  height: 210px;
  background: linear-gradient(180deg, #ffffff, #edf4f4);
}

.collection-device::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 26px;
  width: 54px;
  height: 112px;
  border-radius: 30px;
  background: linear-gradient(180deg, #e94d3e, #f7a24f);
  transform: translateX(-50%);
}

.collection-device span {
  position: absolute;
  left: 50%;
  bottom: 26px;
  width: 44px;
  height: 44px;
  border: 4px solid #dcebed;
  border-radius: 50%;
  transform: translateX(-50%);
}

.mailer {
  left: 13%;
  bottom: 15%;
  width: 42%;
  min-height: 118px;
  display: grid;
  place-items: center;
  color: #60706c;
  font-weight: 850;
  transform: rotate(3deg);
}

.status-card {
  right: 8%;
  bottom: 33%;
  width: 42%;
  padding: 20px;
}

.status-card strong,
.report-card strong {
  display: block;
  margin: 6px 0 14px;
  color: #10231f;
  font-size: 22px;
}

.status-card i {
  display: block;
  height: 8px;
  margin-top: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, #35b8c8 var(--w), #e5eeee var(--w));
}

.report-card {
  right: 12%;
  bottom: 11%;
  width: 46%;
  padding: 20px;
  background: linear-gradient(145deg, #10231f, #063662);
}

.report-card strong {
  color: #ffffff;
}

.report-card small {
  color: rgba(255, 255, 255, 0.72);
}

.benefit-tiles {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 4px;
  border: 1px solid rgba(184, 202, 198, 0.82);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 18px 50px rgba(6, 54, 98, 0.08);
}

.benefit-tiles article {
  padding: 22px;
  background: rgba(255, 255, 255, 0.88);
}

.benefit-tiles strong,
.benefit-tiles span {
  display: block;
}

.benefit-tiles strong {
  color: #0f4f45;
  font-size: 18px;
}

.benefit-tiles span {
  margin-top: 7px;
  color: #60706c;
  line-height: 1.45;
}

.product-photo-section {
  background: #ffffff;
  border-top: 1px solid #d9e4e1;
  border-bottom: 1px solid #d9e4e1;
}

.bk-section {
  padding: clamp(44px, 6vw, 76px) clamp(16px, 5vw, 72px);
}

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

.program-grid article,
.kit-contents article,
.integration-list article,
.trust-grid article {
  min-height: 170px;
  padding: 22px;
  border: 1px solid rgba(184, 202, 198, 0.84);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 32px rgba(6, 54, 98, 0.06);
}

.program-grid article span {
  color: #35b8c8;
  font-size: 12px;
  font-weight: 900;
}

.program-grid strong,
.kit-contents strong,
.integration-list strong,
.trust-grid strong {
  display: block;
  margin-top: 8px;
  color: #0f4f45;
  font-size: 20px;
  line-height: 1.15;
}

.program-grid p,
.integration-list span,
.trust-grid p {
  color: #60706c;
  line-height: 1.5;
}

.kit-section,
.portal-section,
.wholesale-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.kit-section {
  background: #ffffff;
  border-top: 1px solid #d9e4e1;
  border-bottom: 1px solid #d9e4e1;
}

.kit-section > div > p,
.panel-section > div > p,
.portal-section > div > p,
.wholesale-section > div > p {
  color: #60706c;
  font-size: 17px;
  line-height: 1.62;
}

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

.kit-contents article {
  min-height: 118px;
}

.kit-contents i {
  display: block;
  width: 46px;
  height: 46px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(53, 184, 200, 0.22), rgba(29, 122, 104, 0.08)),
    #eef7f6;
}

.workflow-section {
  background:
    linear-gradient(180deg, #10231f, #063662);
  color: #ffffff;
}

.workflow-section .eyebrow,
.workflow-section .section-heading p {
  color: #a9e7d8;
}

.workflow-rail {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.workflow-rail article {
  min-height: 188px;
  padding: 20px;
  border: 1px solid rgba(169, 231, 216, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.workflow-rail span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(169, 231, 216, 0.18);
  color: #a9e7d8;
  font-weight: 900;
}

.workflow-rail strong {
  display: block;
  margin-top: 16px;
  color: #ffffff;
  font-size: 19px;
}

.workflow-rail p {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.45;
}

.split-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 0.72fr);
  gap: clamp(28px, 5vw, 66px);
  align-items: center;
}

.split-panel p {
  color: #60706c;
  font-size: 17px;
  line-height: 1.65;
}

.volume-visual {
  padding: 26px;
  border: 1px solid #b8cac6;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 20px 60px rgba(6, 54, 98, 0.1);
}

.volume-visual div {
  padding: 20px;
  border-radius: 8px;
  background: #eef7f6;
}

.volume-visual div + div {
  margin-top: 12px;
  background: linear-gradient(135deg, #0f4f45, #063662);
  color: #ffffff;
}

.volume-visual span,
.volume-visual strong {
  display: block;
}

.volume-visual strong {
  margin-top: 4px;
  font-size: 28px;
}

.volume-visual p {
  margin: 18px 0 0;
  font-size: 14px;
}

.integration-section {
  background: linear-gradient(180deg, #f8fcfc, #eef6f6);
}

.panel-section {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1fr);
  gap: 34px;
  align-items: center;
  background: #ffffff;
}

.panel-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.panel-cloud span {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 0 16px;
  border: 1px solid rgba(29, 122, 104, 0.18);
  border-radius: 8px;
  background: linear-gradient(145deg, #ffffff, #eef7f6);
  color: #0f4f45;
  font-weight: 850;
}

.portal-section {
  background: linear-gradient(135deg, #edf6f5, #ffffff);
}

.portal-mock {
  border: 1px solid rgba(6, 54, 98, 0.16);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 28px 80px rgba(6, 54, 98, 0.16);
  overflow: hidden;
}

.portal-shot-card {
  background: #f7fbfd;
}

.portal-shot-card img {
  display: block;
  width: 100%;
  height: auto;
}

.portal-preview-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.portal-preview-stack figure {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(6, 54, 98, 0.14);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 14px 36px rgba(6, 54, 98, 0.08);
}

.portal-preview-stack img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: 0 0;
}

.portal-preview-stack figcaption {
  padding: 10px 12px;
  color: #0f4f45;
  font-size: 13px;
  font-weight: 850;
}

.portal-showcase {
  display: grid;
  grid-template-columns: 126px minmax(0, 1fr);
  min-height: 430px;
}

.portal-showcase aside {
  padding: 20px 14px;
  background:
    radial-gradient(circle at 42% 0%, rgba(53, 184, 200, 0.22), transparent 11rem),
    linear-gradient(180deg, #071835, #06274a);
  color: #ffffff;
}

.portal-showcase aside strong,
.portal-showcase aside span,
.portal-showcase aside b {
  display: block;
}

.portal-showcase aside strong {
  font-size: 18px;
}

.portal-showcase aside span {
  margin: 4px 0 24px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.portal-showcase aside b {
  margin-top: 10px;
  padding: 10px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  font-size: 12px;
}

.portal-screen {
  padding: 22px;
  background: #f7fbfd;
}

.mock-top {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  margin-bottom: 16px;
}

.mock-top span,
.mock-top strong,
.mock-stat-grid strong,
.mock-stat-grid span,
.mock-stat-grid small,
.report-preview-mini b,
.report-preview-mini span {
  display: block;
}

.mock-top span {
  color: #60708a;
  font-size: 12px;
}

.mock-top strong {
  color: #071835;
  font-size: 26px;
}

.mock-top small {
  padding: 8px 10px;
  border: 1px solid #dbe5ed;
  border-radius: 8px;
  background: #ffffff;
  color: #425574;
  font-weight: 800;
}

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

.mock-stat-grid article {
  min-height: 116px;
  padding: 14px;
  border: 1px solid #dbe5ed;
  border-radius: 8px;
  background: #ffffff;
}

.mock-stat-grid strong {
  margin: 14px 0 4px;
  color: #071835;
  font-size: 32px;
  line-height: 1;
}

.mock-stat-grid span {
  color: #071835;
  font-weight: 850;
}

.mock-stat-grid small {
  color: #60708a;
  font-size: 12px;
}

.sample-track {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  margin: 16px 0;
  padding: 16px;
  border: 1px solid #dbe5ed;
  border-radius: 8px;
  background: #ffffff;
}

.sample-track span {
  min-height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid #dbe5ed;
  border-radius: 999px;
  color: #60708a;
  font-size: 11px;
  font-weight: 850;
  text-align: center;
}

.sample-track .done {
  border-color: rgba(21, 152, 170, 0.42);
  background: #e8faf8;
  color: #007b91;
}

.report-preview-mini {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.report-preview-mini div {
  padding: 14px;
  border: 1px solid #dbe5ed;
  border-radius: 8px;
  background: #ffffff;
  text-align: center;
}

.report-preview-mini b {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin: 0 auto 8px;
  border: 5px solid #17985d;
  border-radius: 50%;
  color: #071835;
  font-size: 22px;
}

.report-preview-mini div:nth-child(2) b {
  border-color: #f0a11d;
}

.report-preview-mini span {
  color: #425574;
  font-size: 12px;
  font-weight: 800;
}

.comparison-section {
  background: #ffffff;
}

.comparison-section .comparison-grid article {
  min-height: auto;
}

.comparison-section .highlight-card {
  background: linear-gradient(180deg, #ffffff, #e8f7f4) !important;
}

.wholesale-section {
  background:
    radial-gradient(circle at 76% 16%, rgba(53, 184, 200, 0.15), transparent 22rem),
    linear-gradient(135deg, #f8fcfc, #eef7f6);
}

.trust-section {
  background: #10231f;
  color: #ffffff;
}

.trust-section .eyebrow,
.trust-section .section-heading p {
  color: #a9e7d8;
}

.trust-grid article {
  border-color: rgba(169, 231, 216, 0.22);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.trust-grid strong {
  color: #ffffff;
}

.trust-grid p {
  color: rgba(255, 255, 255, 0.74);
}

.bk-final-cta {
  padding: clamp(64px, 9vw, 112px) clamp(16px, 5vw, 72px);
  text-align: center;
  background:
    linear-gradient(135deg, rgba(6, 54, 98, 0.96), rgba(15, 79, 69, 0.96));
  color: #ffffff;
}

.bk-final-cta .eyebrow {
  color: #a9e7d8;
}

.bk-final-cta h2 {
  max-width: 820px;
  margin: 0 auto 28px;
  color: #ffffff;
}

@media (max-width: 1040px) {
  .bk-hero,
  .kit-section,
  .portal-section,
  .wholesale-section,
  .split-panel,
  .panel-section {
    grid-template-columns: 1fr;
  }

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

  .workflow-rail,
  .program-grid,
  .integration-list,
  .trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .program-site .topbar {
    position: sticky;
    justify-content: space-between;
    gap: 12px;
    box-shadow: 0 10px 26px rgba(6, 54, 98, 0.1);
  }

  .program-site .topbar .solid-button {
    display: inline-flex;
    min-height: 38px;
    padding: 0 11px;
    font-size: 12px;
    line-height: 1.05;
    text-align: center;
    box-shadow: none;
  }

  .bk-hero {
    margin-top: 0;
    padding: 26px 16px 38px;
    gap: 18px;
  }

  .bk-hero-copy {
    order: 1;
  }

  .bk-hero-visual {
    order: 2;
  }

  .bk-hero .lifestyle-stage {
    width: 100%;
    margin-top: 0;
    justify-self: stretch;
  }

  .benefit-tiles {
    order: 3;
  }

  .bk-hero-copy h1 {
    margin-bottom: 12px;
    font-size: clamp(31px, 9vw, 39px);
    line-height: 1.02;
  }

  .bk-hero-copy p {
    margin-bottom: 0;
    font-size: 16px;
    line-height: 1.5;
  }

  .hero-claim-strip {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 16px;
  }

  .hero-claim-strip strong {
    min-height: 44px;
    font-size: 14px;
  }

  .bk-actions {
    gap: 10px;
    margin-top: 20px;
  }

  .bk-actions a,
  .bk-actions .price-button {
    width: 100%;
  }

  .kit-scene {
    min-height: 300px;
  }

  .kit-box {
    left: 7%;
    top: 8%;
    width: 60%;
    min-height: 126px;
    padding: 18px;
  }

  .kit-box strong {
    font-size: 20px;
  }

  .collection-device {
    right: 7%;
    top: 9%;
    width: 82px;
    height: 148px;
  }

  .collection-device::before {
    width: 38px;
    height: 78px;
  }

  .collection-device span {
    width: 32px;
    height: 32px;
  }

  .mailer {
    left: 7%;
    bottom: 15%;
    width: 48%;
    min-height: 84px;
    font-size: 13px;
    text-align: center;
  }

  .status-card {
    right: 6%;
    bottom: 34%;
    width: 46%;
    padding: 14px;
  }

  .status-card strong,
  .report-card strong {
    font-size: 16px;
  }

  .report-card {
    right: 8%;
    bottom: 8%;
    width: 52%;
    padding: 14px;
  }

  .benefit-tiles,
  .program-grid,
  .kit-contents,
  .workflow-rail,
  .integration-list,
  .trust-grid,
  .comparison-grid {
    grid-template-columns: 1fr;
  }

  .benefit-tiles article,
  .program-grid article,
  .kit-contents article,
  .workflow-rail article,
  .integration-list article,
  .trust-grid article {
    min-height: auto;
    padding: 18px;
  }

  .bk-section {
    padding: 38px 16px;
  }

  .panel-cloud span {
    width: 100%;
  }

  .portal-showcase {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .portal-showcase aside {
    display: none;
  }

  .portal-screen {
    padding: 14px;
  }

  .mock-top,
  .mock-stat-grid,
  .sample-track,
  .report-preview-mini {
    grid-template-columns: 1fr;
  }

  .mock-top {
    display: grid;
  }

  .form-row.two-col {
    grid-template-columns: 1fr;
  }

  .portal-mock {
    padding: 0;
  }

  .portal-section {
    gap: 24px;
  }

  .portal-preview-stack {
    grid-template-columns: 1fr;
    margin-top: 18px;
  }

  .portal-preview-stack img {
    aspect-ratio: 16 / 9;
  }

  .portal-card-body {
    grid-template-columns: 1fr;
    padding: 16px;
  }

  .portal-card-body article {
    min-height: auto;
  }
}
