:root {
  --accent: #41c9ff;
  --pink: #ff5bd6;
  --ink: #0a0a0a;
  --white: #fff;
  --paper: #f6f9fb;
  --muted: #5c6970;
  --line: rgba(10, 10, 10, 0.08);
  --blue: #5678dc;
  --deep: #151b47;
  --lucid-blue: #68baf4;
  --lucid-blue-deep: #4ea8e7;
  --card-dark: #071522;
  --soft-cream: #f6f3ec;
  --signal-gold: #f6c84f;
  --shadow-blue: 86, 120, 220;
  --sans: "DM Sans", Arial, sans-serif;
  --serif: var(--sans);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 85% 18%, rgba(104, 186, 244, 0.18), transparent 28%),
    radial-gradient(circle at 18% 88%, rgba(255, 255, 255, 0.9), transparent 30%),
    linear-gradient(135deg, #f7f5ef 0%, #f8fbfd 52%, #edf7ff 100%);
  background-attachment: fixed;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
input,
select {
  font: inherit;
}

section {
  scroll-margin-top: 80px;
}

.pill {
  display: inline-flex;
  min-height: 45px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 18px;
  border: 1px solid rgba(7, 21, 34, 0.14);
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  white-space: nowrap;
}

.pill:hover {
  border-color: var(--accent);
  box-shadow: inset 0 0 0 1px rgba(65, 201, 255, 0.18);
}

.pill-light {
  border-color: var(--white);
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 10px 24px rgba(7, 21, 34, 0.07);
}

.pill-ghost {
  border-color: rgba(7, 21, 34, 0.16);
  background: rgba(255, 255, 255, 0.66);
  color: var(--ink);
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 24px;
  align-items: center;
  padding: 15px 34px;
  border-bottom: 1px solid rgba(7, 21, 34, 0.07);
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(28px) saturate(1.25);
  -webkit-backdrop-filter: blur(28px) saturate(1.25);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 14px 36px rgba(86, 120, 220, 0.08);
}

.nav-logo img {
  width: 158px;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  color: rgba(10, 10, 10, 0.64);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

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

.nav-menu {
  display: none;
  width: 42px;
  height: 42px;
  place-content: center;
  gap: 5px;
  border: 0;
  border-radius: 50%;
  background: var(--ink);
}

.nav-menu span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--white);
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  color: var(--ink);
  background: var(--soft-cream);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.16;
  background-image: radial-gradient(circle, rgba(86, 120, 220, 0.18) 1px, transparent 1.2px);
  background-size: 16px 16px;
  mask-image: linear-gradient(180deg, transparent 0%, #000 22%, #000 82%, transparent 100%);
  pointer-events: none;
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg {
  background:
    radial-gradient(circle at 75% 26%, rgba(104, 186, 244, 0.3), transparent 30%),
    radial-gradient(circle at 18% 84%, rgba(255, 255, 255, 0.9), transparent 28%),
    linear-gradient(135deg, #f7f4ee 0%, #f8fbfd 46%, #dff2ff 100%);
  transform: scale(1.02);
}

.hero-overlay {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.38)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.34) 58%, rgba(255, 255, 255, 0.06));
}

.cell-field {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.cell-field::before {
  content: none;
  position: absolute;
  top: 16%;
  right: 7%;
  width: min(34vw, 460px);
  height: min(62vw, 780px);
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 999px;
  background:
    linear-gradient(110deg, rgba(255, 255, 255, 0.36), rgba(255, 255, 255, 0.06)),
    radial-gradient(circle at 50% 10%, rgba(255, 255, 255, 0.72), transparent 18%);
  box-shadow:
    inset 0 0 80px rgba(255, 255, 255, 0.28),
    0 36px 110px rgba(86, 120, 220, 0.22);
  transform: rotate(6deg);
  opacity: 0.34;
}

.cell-field::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 32%;
  opacity: 0.22;
  background:
    linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.42)),
    radial-gradient(circle at 15% 100%, rgba(255, 255, 255, 0.38), transparent 28%);
}

.cell {
  display: none;
}

.cell::before,
.cell::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 0 22px rgba(65, 201, 255, 0.16);
}

.cell::before {
  top: 24%;
  left: 24%;
  width: 14%;
  height: 14%;
}

.cell::after {
  right: 18%;
  bottom: 24%;
  width: 18%;
  height: 18%;
}

.cell-one {
  top: 18%;
  right: 22%;
  width: clamp(76px, 8vw, 124px);
  height: clamp(76px, 8vw, 124px);
}

.cell-two {
  top: 38%;
  right: 10%;
  width: clamp(130px, 14vw, 220px);
  height: clamp(130px, 14vw, 220px);
  opacity: 0.86;
}

.cell-three {
  top: 10%;
  left: 48%;
  width: clamp(58px, 6vw, 96px);
  height: clamp(58px, 6vw, 96px);
  opacity: 0.58;
  filter: blur(0.2px) saturate(1.1);
}

.cell-four {
  left: 61%;
  bottom: 13%;
  width: clamp(54px, 5vw, 84px);
  height: clamp(54px, 5vw, 84px);
  opacity: 0.46;
  filter: blur(0.8px);
}

.cell-five {
  right: 33%;
  bottom: 24%;
  width: clamp(36px, 4vw, 68px);
  height: clamp(36px, 4vw, 68px);
  opacity: 0.62;
  filter: blur(0.6px);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 0.72fr);
  min-height: 100svh;
  align-items: center;
  gap: clamp(40px, 6vw, 96px);
  padding: 110px 40px 72px;
}

.hero-main {
  max-width: 760px;
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: #777;
}

h1,
h2 {
  margin: 0;
  font-family: var(--sans);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 0.96;
}

h1 {
  max-width: 980px;
  font-size: clamp(42px, 4.6vw, 72px);
  line-height: 0.98;
}

.hero p {
  max-width: 660px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.65;
}

.hero-quote {
  display: grid;
  grid-template-columns: 92px 1fr;
  width: min(430px, 32vw);
  min-width: 330px;
  gap: 18px;
  align-items: center;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.48)),
    rgba(255, 255, 255, 0.42);
  backdrop-filter: blur(24px) saturate(1.12);
  -webkit-backdrop-filter: blur(24px) saturate(1.12);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    0 22px 60px rgba(86, 120, 220, 0.1);
}

.hero-quote img {
  width: 92px;
  aspect-ratio: 1;
  border-radius: 18px;
  object-fit: cover;
  object-position: center top;
}

.hero-quote span {
  display: block;
  margin-bottom: 8px;
  color: var(--accent);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-quote p {
  margin: 0 0 10px;
  color: var(--blue);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.45;
}

.hero-quote strong {
  color: var(--ink);
  font-size: 13px;
}

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

.hero-meta {
  display: grid;
  min-width: 260px;
  gap: 12px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(18px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.34),
    0 24px 60px rgba(86, 120, 220, 0.16);
}

.hero-meta span {
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.headline-section {
  position: relative;
  min-height: auto;
  display: flex;
  align-items: center;
  padding: 92px 40px;
  overflow: hidden;
  color: var(--ink);
  background: #fff;
}

.headline-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 88% 12%, rgba(65, 201, 255, 0.12), transparent 26%),
    radial-gradient(circle at 74% 82%, rgba(255, 91, 214, 0.07), transparent 28%),
    linear-gradient(180deg, #fff 0%, #f8fbfd 100%);
  background-position: center;
  background-size: cover;
}

.headline-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.42fr);
  gap: clamp(36px, 7vw, 110px);
  align-items: end;
  width: 100%;
}

.clinic-copy {
  max-width: 820px;
}

.headline-content h2 {
  max-width: 760px;
  font-size: clamp(38px, 4.2vw, 60px);
  line-height: 1.04;
}

.final-content h2 {
  font-size: clamp(42px, 5.8vw, 86px);
  line-height: 1.02;
}

.headline-content p {
  max-width: 620px;
  margin: 24px 0 30px;
  color: var(--muted);
  font-size: 18px;
}

.final-content p {
  max-width: 650px;
  margin: 28px 0 34px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 19px;
}

.clinic-principles {
  display: grid;
  gap: 10px;
  margin: 18px 0 24px;
}

.clinic-principles span {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  border: 1px solid rgba(10, 10, 10, 0.08);
  border-radius: 999px;
  padding: 8px 14px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.84);
  font-size: 12px;
  font-weight: 700;
}

.clinic-panel {
  padding: 26px;
  border: 1px solid rgba(65, 201, 255, 0.18);
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(240, 248, 252, 0.9)),
    #fff;
  box-shadow: 0 18px 46px rgba(86, 120, 220, 0.06);
}

.clinic-panel p {
  margin: 0;
  color: var(--blue);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.55;
}

.panel-label {
  display: block;
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.network,
.shop-section,
.access-section,
.experts {
  padding: 88px 40px;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, #fff 0%, #f8fbfd 100%);
}

.network {
  padding-top: 104px;
  padding-bottom: 104px;
  overflow: hidden;
  background: #fff;
}

.network-intro {
  max-width: 1040px;
  margin-bottom: 42px;
}

.network-intro p {
  margin: 0;
  max-width: 880px;
  font-size: clamp(26px, 2.4vw, 36px);
  font-weight: 600;
  line-height: 1.24;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2vw, 24px);
  align-items: stretch;
}

.feature-grid article,
.shop-card,
.expert-card,
.access-card {
  border: 1px solid rgba(10, 10, 10, 0.08);
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(246, 249, 251, 0.86)),
    #fff;
  box-shadow: 0 18px 46px rgba(86, 120, 220, 0.055);
}

.feature-grid article {
  display: flex;
  min-height: 320px;
  flex-direction: column;
  padding: 30px;
  transition: transform 0.45s cubic-bezier(0.19, 1, 0.22, 1), border-color 0.3s ease, box-shadow 0.3s ease;
}

.feature-grid article:nth-child(2),
.feature-grid article:nth-child(4) {
  margin-top: 0;
}

.feature-grid article:hover {
  transform: translateY(-3px);
  border-color: rgba(65, 201, 255, 0.32);
  box-shadow: 0 24px 56px rgba(86, 120, 220, 0.08);
}

.feature-number,
.card-index,
.timeline span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border: 1px solid rgba(65, 201, 255, 0.22);
  border-radius: 50%;
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
}

.section-lead {
  max-width: 720px;
  margin: -18px 0 42px;
  font-size: 18px;
  line-height: 1.75;
}

h3 {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.12;
}

p {
  color: var(--muted);
}

.section-title {
  max-width: 880px;
  margin: 0 0 38px;
  font-size: clamp(40px, 4.4vw, 66px);
  line-height: 1.04;
}

.shop-section {
  background: #f5f9fc;
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.4vw, 34px);
  align-items: stretch;
}

.shop-card {
  overflow: hidden;
  display: flex;
  min-height: 560px;
  flex-direction: column;
  padding: 20px 20px 28px;
  transition: transform 0.45s cubic-bezier(0.19, 1, 0.22, 1), border-color 0.25s ease, box-shadow 0.25s ease;
}

.shop-card:hover {
  transform: translateY(-4px);
  border-color: rgba(65, 201, 255, 0.45);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.07);
}

.shop-media {
  aspect-ratio: 16 / 10;
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 14px;
  background: #edf4f7;
}

.shop-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.shop-card p {
  flex: 1;
  min-height: 0;
  margin-bottom: 24px;
  line-height: 1.72;
}

.shop-card .pill {
  margin-top: auto;
  align-self: flex-start;
}

.access-section {
  background: linear-gradient(180deg, #fff 0%, #f3f8fb 100%);
}

.access-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.95fr);
  gap: clamp(30px, 5vw, 66px);
  padding: clamp(30px, 5vw, 60px);
  overflow: hidden;
  position: relative;
}

.access-card::before {
  content: "";
  position: absolute;
  right: -10%;
  top: -18%;
  width: 36rem;
  height: 36rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(65, 201, 255, 0.16), transparent 65%);
  pointer-events: none;
}

.access-card h2 {
  max-width: 680px;
  font-size: clamp(40px, 4.5vw, 68px);
  line-height: 1.04;
}

.access-card > div > p {
  max-width: 640px;
  font-size: 18px;
}

.timeline {
  display: grid;
  gap: 16px;
  position: relative;
  z-index: 1;
}

.timeline article {
  min-height: 150px;
  padding: 20px;
  border: 1px solid rgba(10, 10, 10, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(14px);
  transition: transform 0.35s ease, border-color 0.25s ease;
}

.timeline article:nth-child(even) {
  transform: none;
}

.timeline article:hover {
  border-color: rgba(65, 201, 255, 0.34);
}

.timeline strong {
  display: block;
  margin-bottom: 6px;
  font-size: 17px;
}

.timeline p {
  margin: 0;
  font-size: 14px;
}

.experts {
  background: #f6f9fb;
}

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

.expert-card {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 26px;
  align-items: center;
  padding: 24px;
  min-height: 300px;
}

.expert-card img,
.expert-placeholder {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 18px;
  object-fit: cover;
  object-position: center top;
  background:
    linear-gradient(135deg, rgba(65, 201, 255, 0.14), rgba(255, 91, 214, 0.08)),
    url("/images/shop-medical-knowhow.png");
  background-position: center;
  background-size: cover;
}

.expert-card span {
  display: block;
  margin-bottom: 12px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.final-cta {
  position: relative;
  min-height: 680px;
  display: grid;
  place-items: center;
  padding: 96px 40px;
  overflow: hidden;
  color: var(--white);
  text-align: center;
  background: #0d1028;
}

.final-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 20% 18%, rgba(65, 201, 255, 0.2), transparent 32%),
    radial-gradient(circle at 76% 72%, rgba(255, 91, 214, 0.12), transparent 30%),
    linear-gradient(135deg, #0d1028 0%, #18275f 58%, #253b8a 100%);
}

.final-content {
  position: relative;
  z-index: 1;
  width: min(980px, 100%);
}

.final-content p {
  margin-left: auto;
  margin-right: auto;
}

.assessment-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(180px, 1fr) auto auto;
  gap: 12px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

.assessment-form input,
.assessment-form select {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  padding: 0 16px;
  color: var(--white);
  background: rgba(0, 0, 0, 0.28);
}

.assessment-form input::placeholder {
  color: rgba(255, 255, 255, 0.68);
}

.assessment-form option {
  color: var(--ink);
}

.assessment-form button {
  cursor: pointer;
}

.assessment-form .pill {
  min-height: 48px;
  justify-content: center;
  color: var(--white);
  white-space: nowrap;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 36px 40px;
  background: var(--white);
}

.footer img {
  width: 142px;
}

.footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.hero-system-layout {
  align-items: center;
}

.hero-system-layout h1 {
  max-width: 960px;
}

.journey-visual {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: 100%;
  min-width: 0;
  gap: 10px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.76), rgba(255, 255, 255, 0.44)),
    rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(24px) saturate(1.08);
  -webkit-backdrop-filter: blur(24px) saturate(1.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    0 24px 66px rgba(86, 120, 220, 0.11);
}

.journey-visual span,
.process-flow span {
  position: relative;
  display: flex;
  min-height: 46px;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 16px;
  border: 1px solid rgba(65, 201, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
}

.journey-visual span {
  flex-direction: column;
  min-height: 84px;
  justify-content: center;
  padding: 13px 34px 13px 14px;
}

.journey-visual span strong {
  color: var(--blue);
  font-size: 15px;
}

.journey-visual span small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
}

.journey-visual span::after,
.process-flow span::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(65, 201, 255, 0.1);
}

.positioning-strip {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 22px;
  align-items: center;
  padding: 22px 40px;
  border-top: 1px solid rgba(7, 21, 34, 0.06);
  border-bottom: 1px solid rgba(7, 21, 34, 0.06);
  background: #fff;
}

.positioning-strip > span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.positioning-strip div {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.positioning-strip strong {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  border: 1px solid rgba(104, 186, 244, 0.24);
  border-radius: 999px;
  padding: 0 16px;
  color: var(--card-dark);
  background: #eef8ff;
  font-size: 13px;
  font-weight: 900;
}

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

.system-section .headline-content {
  align-items: center;
}

.section-kicker {
  margin-bottom: 42px;
}

.premium-grid article {
  background:
    radial-gradient(circle at 90% 0%, rgba(65, 201, 255, 0.12), transparent 26%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(246, 249, 251, 0.9));
}

.protocol-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 28px);
}

.protocol-card {
  display: flex;
  min-height: 360px;
  flex-direction: column;
  padding: 28px;
  border: 1px solid rgba(10, 10, 10, 0.08);
  border-radius: 24px;
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 91, 214, 0.08), transparent 30%),
    radial-gradient(circle at 0% 100%, rgba(65, 201, 255, 0.12), transparent 32%),
    #fff;
  box-shadow: 0 18px 46px rgba(86, 120, 220, 0.055);
  transition: transform 0.35s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.protocol-card:hover {
  transform: translateY(-4px);
  border-color: rgba(65, 201, 255, 0.32);
  box-shadow: 0 24px 60px rgba(86, 120, 220, 0.08);
}

.protocol-card > span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  margin-bottom: 42px;
  border: 1px solid rgba(65, 201, 255, 0.22);
  border-radius: 50%;
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
}

.protocol-card p {
  flex: 1;
}

.protocol-card .pill {
  align-self: flex-start;
}

.access-large {
  min-height: 680px;
}

.dashboard-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1fr);
  gap: clamp(32px, 6vw, 92px);
  align-items: center;
  padding: 104px 40px;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 92% 18%, rgba(65, 201, 255, 0.12), transparent 28%),
    linear-gradient(180deg, #fff 0%, #f6f9fb 100%);
}

.dashboard-copy p {
  max-width: 620px;
  margin-bottom: 28px;
  font-size: 18px;
}

.biomarker-panel {
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(7, 21, 34, 0.08);
  border-radius: 32px;
  background: #fff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.84),
    0 24px 70px rgba(7, 21, 34, 0.075);
}

.panel-topline {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 28px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
}

.panel-topline span {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.metric-row {
  display: grid;
  grid-template-columns: minmax(150px, 0.9fr) 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 16px 0;
  border-top: 1px solid rgba(10, 10, 10, 0.07);
  color: var(--blue);
  font-weight: 700;
}

.metric-row i {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(104, 186, 244, 0.16);
}

.metric-row i::before {
  content: "";
  display: block;
  width: var(--value);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--lucid-blue), var(--lucid-blue-deep));
}

.metric-row strong {
  font-size: 13px;
}

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

.expert-grid-three .expert-card {
  grid-template-columns: 1fr;
}

.expert-grid-three .expert-card img,
.expert-grid-three .expert-placeholder {
  max-width: 210px;
}

.page-hero {
  position: relative;
  min-height: 560px;
  display: grid;
  align-items: end;
  padding: 130px 40px 70px;
  overflow: hidden;
  background:
    radial-gradient(circle at 76% 22%, rgba(65, 201, 255, 0.24), transparent 28%),
    radial-gradient(circle at 84% 78%, rgba(255, 91, 214, 0.16), transparent 32%),
    linear-gradient(135deg, #fbfdfe 0%, #eaf7fc 48%, #f8e8f4 100%);
}

.page-hero h1 {
  max-width: 920px;
}

.page-hero p {
  max-width: 720px;
  font-size: clamp(18px, 1.6vw, 22px);
}

.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 34px;
}

.tab {
  min-height: 40px;
  padding: 9px 15px;
  border: 1px solid rgba(10, 10, 10, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
}

.content-band {
  padding: 88px 40px;
  border-top: 1px solid var(--line);
  background: #fff;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1fr);
  gap: clamp(32px, 6vw, 84px);
  align-items: start;
}

.info-list,
.component-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.info-list li,
.component-list li {
  padding: 16px 18px;
  border: 1px solid rgba(10, 10, 10, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--blue);
  font-weight: 700;
}

.placeholder-visual {
  min-height: 360px;
  border: 1px solid rgba(65, 201, 255, 0.18);
  border-radius: 28px;
  background:
    radial-gradient(circle at 74% 24%, rgba(65, 201, 255, 0.16), transparent 32%),
    radial-gradient(circle at 24% 80%, rgba(255, 91, 214, 0.08), transparent 30%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(246, 249, 251, 0.78));
  box-shadow: 0 24px 70px rgba(86, 120, 220, 0.07);
}

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

.text-card {
  min-height: 220px;
  padding: 26px;
  border: 1px solid rgba(10, 10, 10, 0.08);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 18px 46px rgba(86, 120, 220, 0.05);
}

.text-card span {
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Category-defining landing page rhythm */
.clinic-hero {
  min-height: 100svh;
}

.hero-cinema {
  width: min(480px, 100%);
  min-width: 0;
}

.clinic-transform-card {
  display: grid;
  gap: 16px;
  padding: 18px;
  border: 1px solid rgba(7, 21, 34, 0.07);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 24px 70px rgba(7, 21, 34, 0.08);
}

.transform-node {
  min-height: 148px;
  padding: 26px;
  border: 1px solid rgba(7, 21, 34, 0.08);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(7, 21, 34, 0.045);
}

.transform-node:nth-of-type(1) {
  border-color: rgba(104, 186, 244, 0.42);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent 42%),
    linear-gradient(135deg, var(--lucid-blue) 0%, var(--lucid-blue-deep) 100%);
  color: var(--white);
}

.transform-node:nth-of-type(3) {
  border-color: rgba(7, 21, 34, 0.12);
  background: var(--card-dark);
  color: var(--white);
}

.transform-node.final {
  border-color: rgba(7, 21, 34, 0.08);
  background: #fff;
  color: var(--ink);
}

.transform-node span {
  display: block;
  margin-bottom: 10px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.transform-node strong {
  display: block;
  color: var(--blue);
  font-size: 28px;
  font-weight: 900;
  line-height: 1.08;
}

.transform-node p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
}

.transform-node:nth-of-type(1) span,
.transform-node:nth-of-type(1) strong,
.transform-node:nth-of-type(1) p,
.transform-node:nth-of-type(3) strong,
.transform-node:nth-of-type(3) p {
  color: var(--white);
}

.transform-node:nth-of-type(3) span {
  display: inline-grid;
  width: auto;
  min-height: 26px;
  place-items: center;
  border-radius: 999px;
  padding: 0 10px;
  color: var(--card-dark);
  background: var(--signal-gold);
}

.transform-arrow {
  color: rgba(7, 21, 34, 0.38);
  font-size: 16px;
  font-weight: 900;
  text-align: center;
  line-height: 1;
}

.system-section {
  color: var(--white);
  background:
    radial-gradient(circle at 86% 18%, rgba(104, 186, 244, 0.2), transparent 28%),
    linear-gradient(135deg, #071522 0%, #10283e 58%, #173e5f 100%);
}

.system-section .headline-bg {
  background:
    radial-gradient(circle at 18% 80%, rgba(255, 91, 214, 0.08), transparent 30%),
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
  background-size: auto, 42px 42px, 42px 42px;
}

.system-section .eyebrow,
.system-section h2 {
  color: var(--white);
}

.system-section p {
  max-width: 780px;
  color: rgba(255, 255, 255, 0.84);
}

.clinic-os {
  position: relative;
  display: grid;
  gap: 10px;
  min-height: auto;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 26px 80px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(18px);
  counter-reset: clinic-flow;
}

.os-line {
  display: none;
}

.clinic-os span {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 72px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.94);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.25;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
}

.clinic-os span::before {
  counter-increment: clinic-flow;
  content: "0" counter(clinic-flow);
  display: grid;
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  place-items: center;
  border-radius: 50%;
  background: rgba(65, 201, 255, 0.13);
  color: var(--accent);
  font-size: 10px;
  font-weight: 900;
  box-shadow:
    0 0 0 1px rgba(65, 201, 255, 0.28),
    0 8px 20px rgba(65, 201, 255, 0.1);
}

.clinic-os span:nth-of-type(even) {
  text-align: left;
  background: var(--lucid-blue);
  color: var(--white);
}

.receive-section {
  background: #fff;
}

.how-section {
  background:
    radial-gradient(circle at 88% 8%, rgba(104, 186, 244, 0.18), transparent 26%),
    linear-gradient(180deg, #f7f5ef 0%, #fff 100%);
}

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

.pathway-grid article {
  min-height: 230px;
  padding: 24px;
}

.receive-section .feature-grid article {
  min-height: 260px;
  padding: 26px;
}

.pathway-grid article,
.premium-grid article {
  border-radius: 28px;
}

.pathway-grid article:nth-child(1),
.premium-grid article:nth-child(1) {
  border-color: rgba(104, 186, 244, 0.34);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.14), transparent 42%),
    linear-gradient(135deg, var(--lucid-blue), var(--lucid-blue-deep));
  color: var(--white);
}

.pathway-grid article:nth-child(1) h3,
.pathway-grid article:nth-child(1) p,
.pathway-grid article:nth-child(1) .feature-number,
.premium-grid article:nth-child(1) h3,
.premium-grid article:nth-child(1) p,
.premium-grid article:nth-child(1) .feature-number {
  color: var(--white);
}

.pathway-grid article:nth-child(3),
.premium-grid article:nth-child(3) {
  border-color: rgba(7, 21, 34, 0.12);
  background: var(--card-dark);
  color: var(--white);
}

.pathway-grid article:nth-child(3) h3,
.pathway-grid article:nth-child(3) p,
.premium-grid article:nth-child(3) h3,
.premium-grid article:nth-child(3) p {
  color: var(--white);
}

.pathway-grid article:nth-child(3) .feature-number,
.premium-grid article:nth-child(3) .feature-number {
  border-color: rgba(246, 200, 79, 0.26);
  color: var(--card-dark);
  background: var(--signal-gold);
}

.premium-grid {
  grid-template-columns: 1.15fr 0.9fr 0.9fr 1.15fr;
}

.premium-grid article:nth-child(1),
.premium-grid article:nth-child(4) {
  min-height: 280px;
}

.cinematic-protocols {
  padding-top: 68px;
  padding-bottom: 72px;
}

.cinematic-protocols .section-title {
  max-width: 680px;
  margin-bottom: 20px;
  font-size: clamp(34px, 3.6vw, 50px);
}

.cinematic-protocols .section-lead {
  margin-bottom: 28px;
}

.protocol-world-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.protocol-world {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: stretch;
  min-height: 0;
  padding: 20px;
  overflow: hidden;
  border: 1px solid rgba(7, 21, 34, 0.08);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 18px 52px rgba(7, 21, 34, 0.055);
}

.protocol-world h3 {
  max-width: 360px;
  font-family: var(--sans);
  font-size: clamp(25px, 2.1vw, 34px);
  font-weight: 800;
  line-height: 1.04;
}

.protocol-world > div > span {
  display: inline-grid;
  width: 32px;
  height: 32px;
  place-items: center;
  margin-bottom: 12px;
  border: 1px solid rgba(65, 201, 255, 0.22);
  border-radius: 50%;
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
}

.protocol-world p {
  max-width: 360px;
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1.55;
}

.protocol-visual {
  position: relative;
  order: -1;
  min-height: 132px;
  overflow: hidden;
  border-radius: 24px;
  background:
    radial-gradient(circle at 26% 30%, rgba(255, 255, 255, 0.72), transparent 16%),
    radial-gradient(circle at 72% 68%, rgba(104, 186, 244, 0.26), transparent 28%),
    linear-gradient(135deg, #f8fbfd, #dff2ff);
}

.protocol-visual i {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: inset -10px -10px 26px rgba(65, 201, 255, 0.14), 0 18px 42px rgba(86, 120, 220, 0.07);
}

.protocol-visual i:nth-child(1) { width: 86px; height: 86px; top: 18px; left: 28px; }
.protocol-visual i:nth-child(2) { width: 118px; height: 118px; right: 24px; bottom: -34px; }
.protocol-visual i:nth-child(3) { width: 38px; height: 38px; right: 44%; top: 38%; background: rgba(255, 91, 214, 0.13); }

.mito-world .protocol-visual {
  background:
    radial-gradient(circle at 75% 62%, rgba(255, 255, 255, 0.4), transparent 32%),
    linear-gradient(135deg, var(--lucid-blue), var(--lucid-blue-deep));
}

.cognitive-world .protocol-visual {
  background: radial-gradient(circle at 70% 28%, rgba(104, 186, 244, 0.22), transparent 32%), linear-gradient(135deg, var(--card-dark), #123553);
}

.recovery-world .protocol-visual {
  background: radial-gradient(circle at 28% 74%, rgba(104, 186, 244, 0.18), transparent 36%), linear-gradient(135deg, #fff, #eef8ff);
}

.aging-world .protocol-visual {
  background: radial-gradient(circle at 74% 24%, rgba(246, 200, 79, 0.24), transparent 30%), linear-gradient(135deg, #fff, #f7f5ef);
}

.why-section {
  padding: 110px 40px;
  background:
    radial-gradient(circle at 16% 18%, rgba(65, 201, 255, 0.12), transparent 28%),
    radial-gradient(circle at 88% 82%, rgba(255, 91, 214, 0.08), transparent 30%),
    #fff;
}

.why-inner {
  width: min(1080px, 100%);
  margin: 0 auto;
}

.why-inner h2 {
  max-width: 980px;
  margin: 12px 0 24px;
  color: var(--ink);
  font-size: clamp(34px, 4.4vw, 66px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
}

.why-inner p {
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(18px, 1.8vw, 24px);
  line-height: 1.45;
}

.signature-dashboard {
  position: relative;
  overflow: hidden;
  grid-template-columns: minmax(0, 0.62fr) minmax(520px, 1.38fr);
  min-height: 920px;
  padding-top: 128px;
  padding-bottom: 128px;
  background:
    radial-gradient(circle at 82% 24%, rgba(104, 186, 244, 0.24), transparent 32%),
    linear-gradient(180deg, #f7f5ef 0%, #fff 100%);
}

.dashboard-stage {
  position: relative;
  min-height: 640px;
}

.hero-panel {
  position: relative;
  z-index: 2;
  width: min(720px, 100%);
}

.energy-score {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin: 10px 0 24px;
}

.energy-score strong {
  font-family: var(--sans);
  font-size: clamp(82px, 8vw, 138px);
  font-weight: 800;
  line-height: 0.88;
}

.energy-score span {
  color: var(--blue);
  font-weight: 800;
}

.physician-note {
  position: absolute;
  right: 0;
  bottom: 22px;
  z-index: 3;
  width: min(360px, 48%);
  padding: 22px;
  border: 1px solid rgba(7, 21, 34, 0.1);
  border-radius: 26px;
  background: var(--card-dark);
  box-shadow: 0 20px 60px rgba(7, 21, 34, 0.14);
}

.physician-note span {
  color: var(--signal-gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.physician-note p {
  color: rgba(255, 255, 255, 0.82);
}

.cellular-map {
  position: absolute;
  right: 4%;
  top: 4%;
  width: min(430px, 58%);
  aspect-ratio: 1;
  border: 1px solid rgba(65, 201, 255, 0.16);
  border-radius: 50%;
  opacity: 0.8;
}

.cellular-map i {
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 10px rgba(65, 201, 255, 0.1);
}

.cellular-map i:nth-child(1) { top: 16%; left: 26%; }
.cellular-map i:nth-child(2) { right: 18%; top: 34%; background: var(--pink); box-shadow: 0 0 0 10px rgba(255, 91, 214, 0.08); }
.cellular-map i:nth-child(3) { left: 44%; bottom: 16%; }
.cellular-map i:nth-child(4) { left: 18%; bottom: 34%; width: 11px; height: 11px; }

.human-trust {
  background:
    radial-gradient(circle at 88% 10%, rgba(255, 91, 214, 0.08), transparent 28%),
    radial-gradient(circle at 10% 92%, rgba(65, 201, 255, 0.12), transparent 30%),
    linear-gradient(180deg, #fff 0%, #f7fbfd 100%);
}

.physician-editorial {
  display: grid;
  gap: 36px;
}

.physician-lead p {
  max-width: 760px;
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 650;
  line-height: 1.32;
}

.medical-leadership-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 22px;
  align-items: stretch;
}

.medical-expert-card {
  min-height: 300px;
  padding: 32px;
  border: 1px solid rgba(7, 21, 34, 0.08);
  border-radius: 30px;
  background: #fff;
  box-shadow: 0 18px 46px rgba(7, 21, 34, 0.055);
}

.medical-expert-card span {
  display: block;
  margin-bottom: 12px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.medical-expert-card h3 {
  margin-bottom: 18px;
  font-size: clamp(30px, 3vw, 46px);
}

.medical-expert-card p {
  margin: 0;
  max-width: 420px;
  font-size: 16px;
}

.kay-card {
  display: grid;
  grid-template-columns: 128px 1fr;
  gap: 24px;
  align-items: center;
}

.kay-card img {
  width: 128px;
  height: 158px;
  border-radius: 18px;
  object-fit: cover;
  object-position: center top;
  background: #fff;
}

/* Site-wide premium gradient background */
body::before,
body::after {
  content: none;
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

body::before {
  opacity: 0.82;
  background:
    radial-gradient(ellipse at 16% 8%, rgba(65, 201, 255, 0.18), transparent 34%),
    radial-gradient(ellipse at 86% 14%, rgba(255, 91, 214, 0.12), transparent 32%),
    radial-gradient(ellipse at 68% 82%, rgba(65, 201, 255, 0.1), transparent 38%),
    linear-gradient(135deg, rgba(251, 253, 254, 0.96) 0%, rgba(234, 247, 252, 0.78) 42%, rgba(248, 232, 244, 0.64) 100%);
}

body::after {
  opacity: 0.34;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.68), transparent 36%, rgba(255, 255, 255, 0.48)),
    radial-gradient(ellipse at 50% 42%, rgba(255, 255, 255, 0.42), transparent 44%);
  filter: blur(18px);
}

section > :not(.hero-bg):not(.hero-overlay):not(.headline-bg):not(.final-bg),
.footer > * {
  position: relative;
  z-index: 2;
}

.hero::before,
.hero::after,
.system-section::before,
.system-section::after,
.signature-dashboard::before,
.signature-dashboard::after,
.final-cta::before,
.final-cta::after,
.page-hero::before,
.page-hero::after {
  content: none;
}

.hero-content,
.headline-content,
.dashboard-copy,
.dashboard-stage,
.final-content,
.page-hero > div {
  position: relative;
  z-index: 2;
}

.clinic-os,
.biomarker-panel,
.journey-visual {
  position: relative;
  z-index: 2;
}

@media (max-width: 1080px) {
  .nav {
    grid-template-columns: auto 1fr auto;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-menu {
    display: grid;
    justify-self: end;
  }

  .hero-content,
  .access-card,
  .headline-content {
    grid-template-columns: 1fr;
    align-items: flex-start;
  }

  .hero-meta {
    width: min(420px, 100%);
  }

  .hero-quote {
    width: min(460px, 100%);
    min-width: 0;
  }

  .feature-grid,
  .shop-grid,
  .medical-leadership-grid,
  .protocol-grid,
  .assessment-form {
    grid-template-columns: repeat(2, 1fr);
  }

  .dashboard-section,
  .split-layout,
  .protocol-world,
  .physician-editorial {
    grid-template-columns: 1fr;
  }

  .hero-cinema {
    width: min(560px, 100%);
    min-width: 0;
  }

  .positioning-strip {
    grid-template-columns: 1fr;
  }

  .positioning-strip div {
    justify-content: flex-start;
  }

  .clinic-os span,
  .clinic-os span:nth-of-type(even) {
    width: auto;
    transform: none;
    text-align: left;
  }

  .signature-dashboard {
    min-height: auto;
  }

  .expert-grid-three,
  .text-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-grid article:nth-child(2),
  .feature-grid article:nth-child(4) {
    margin-top: 0;
  }

  .expert-card {
    grid-template-columns: 170px 1fr;
  }
}

@media (max-width: 720px) {
  .nav {
    padding: 12px 20px;
  }

  .nav-logo img,
  .footer img {
    width: 126px;
  }

  .hero-content {
    gap: 28px;
    padding: 104px 24px 36px;
  }

  h1 {
    font-size: clamp(36px, 9.8vw, 45px);
    line-height: 1.04;
  }

  .hero p {
    font-size: 17px;
    line-height: 1.55;
  }

  .hero-quote {
    grid-template-columns: 72px 1fr;
    gap: 14px;
    padding: 14px;
  }

  .hero-quote img {
    width: 72px;
    border-radius: 14px;
  }

  .hero-quote p {
    font-size: 13px;
  }

  .hero-meta {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    padding: 18px;
  }

  .hero-meta span {
    font-size: 11px;
  }

  .headline-content h2,
  .final-content h2,
  .access-card h2,
  .section-title {
    font-size: clamp(36px, 10vw, 46px);
  }

  .headline-section,
  .network,
  .shop-section,
  .access-section,
  .experts,
  .final-cta {
    padding-left: 24px;
    padding-right: 24px;
  }

  .feature-grid,
  .shop-grid,
  .expert-grid,
  .protocol-world-list,
  .medical-leadership-grid,
  .protocol-grid,
  .expert-grid-three,
  .text-card-grid,
  .assessment-form {
    grid-template-columns: 1fr;
  }

  .kay-card {
    grid-template-columns: 92px 1fr;
  }

  .kay-card img {
    width: 92px;
    height: 116px;
  }

  .hero-system-layout {
    justify-content: start;
  }

  .journey-visual {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    min-width: 0;
  }

  .journey-visual {
    grid-template-columns: 1fr;
  }

  .process-flow {
    grid-template-columns: 1fr;
  }

  .dashboard-section,
  .page-hero,
  .content-band {
    padding-left: 24px;
    padding-right: 24px;
  }

  .protocol-world {
    min-height: auto;
    padding: 24px;
  }

  .protocol-world h3 {
    font-size: clamp(34px, 10vw, 46px);
  }

  .protocol-visual {
    min-height: 150px;
  }

  .dashboard-stage {
    min-height: auto;
  }

  .physician-note,
  .cellular-map {
    position: relative;
    width: 100%;
    right: auto;
    top: auto;
    bottom: auto;
    margin-top: 18px;
  }

  .cellular-map {
    max-width: 320px;
  }

  .metric-row {
    grid-template-columns: 1fr;
  }

  .feature-grid article,
  .shop-card {
    min-height: auto;
  }

  .timeline article:nth-child(even) {
    transform: none;
  }

  .expert-card {
    grid-template-columns: 1fr;
  }

  .expert-card img,
  .expert-placeholder {
    max-width: 260px;
  }

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

  .footer nav {
    justify-content: flex-start;
  }
}

/* Premium clinical operating-system visual layer */
:root {
  --ink: #07111f;
  --muted: #66737f;
  --line: rgba(7, 17, 31, 0.08);
  --accent: #79c8f2;
  --blue: #2c6f9f;
  --deep: #081522;
  --card-dark: #07111f;
  --silver: #eef3f7;
  --lucid-blue: #79c8f2;
  --lucid-blue-deep: #2c6f9f;
  --signal-gold: #d8c79d;
  --glass: rgba(255, 255, 255, 0.58);
  --glass-strong: rgba(255, 255, 255, 0.76);
}

body {
  background:
    radial-gradient(900px 620px at 78% 12%, rgba(121, 200, 242, 0.18), transparent 62%),
    radial-gradient(740px 520px at 18% 78%, rgba(8, 21, 34, 0.08), transparent 66%),
    radial-gradient(680px 500px at 58% 42%, rgba(255, 255, 255, 0.78), transparent 68%),
    linear-gradient(135deg, #fbfcfd 0%, #eef4f8 48%, #f8fafb 100%);
  color: var(--ink);
}

body::before {
  content: none;
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.34;
  background-image:
    linear-gradient(rgba(7, 17, 31, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 17, 31, 0.018) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at 50% 20%, #000 0%, transparent 74%);
}

body::after {
  content: none;
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.18;
  background:
    radial-gradient(circle at 45% 18%, rgba(255, 255, 255, 0.92), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(8, 21, 34, 0.035));
  filter: none;
}

.nav {
  border-bottom: 1px solid rgba(255, 255, 255, 0.58);
  background: rgba(255, 255, 255, 0.62);
  backdrop-filter: blur(30px) saturate(1.16);
  -webkit-backdrop-filter: blur(30px) saturate(1.16);
  box-shadow: 0 18px 48px rgba(8, 21, 34, 0.055);
}

.nav-logo img {
  width: 168px;
}

.pill {
  min-height: 48px;
  border-color: rgba(8, 21, 34, 0.12);
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.54);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    0 10px 28px rgba(8, 21, 34, 0.045);
  backdrop-filter: blur(16px);
}

.pill-light {
  border-color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.86);
}

.pill-ghost {
  background: rgba(255, 255, 255, 0.34);
}

.hero {
  background: transparent;
}

.hero-bg {
  background:
    radial-gradient(820px 540px at 76% 24%, rgba(121, 200, 242, 0.22), transparent 64%),
    radial-gradient(780px 520px at 20% 78%, rgba(8, 21, 34, 0.08), transparent 68%),
    linear-gradient(135deg, #fbfcfd 0%, #edf5fa 52%, #f8fafb 100%);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.38) 58%, rgba(255, 255, 255, 0.12)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(245, 249, 252, 0.62));
}

.hero-content {
  min-height: 100svh;
  padding-top: 116px;
  padding-bottom: 92px;
}

.hero-main h1 {
  max-width: 980px;
  font-size: clamp(58px, 7.8vw, 126px);
  line-height: 0.9;
  letter-spacing: -0.025em;
}

.hero-main p {
  max-width: 760px;
  color: rgba(7, 17, 31, 0.66);
  font-size: clamp(18px, 1.45vw, 23px);
  line-height: 1.48;
}

.eyebrow {
  color: var(--blue);
  font-size: 12px;
  letter-spacing: 0.18em;
}

.hero-cinema {
  width: min(540px, 100%);
}

.clinic-transform-card,
.biomarker-panel,
.medical-expert-card,
.protocol-world,
.feature-grid article,
.positioning-strip,
.assessment-form {
  border: 1px solid rgba(255, 255, 255, 0.72);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.76), rgba(255, 255, 255, 0.38)),
    rgba(255, 255, 255, 0.44);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.86),
    0 24px 70px rgba(8, 21, 34, 0.075);
  backdrop-filter: blur(28px) saturate(1.06);
  -webkit-backdrop-filter: blur(28px) saturate(1.06);
}

.clinic-transform-card {
  gap: 12px;
  padding: 16px;
  border-radius: 34px;
}

.transform-node {
  min-height: 152px;
  border-color: rgba(255, 255, 255, 0.62);
  border-radius: 26px;
  background:
    radial-gradient(460px 240px at 88% 12%, rgba(121, 200, 242, 0.18), transparent 62%),
    rgba(255, 255, 255, 0.58);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.84);
}

.transform-node:nth-of-type(1),
.transform-node:nth-of-type(3),
.transform-node.final {
  border-color: rgba(255, 255, 255, 0.62);
  background:
    radial-gradient(480px 240px at 80% 12%, rgba(121, 200, 242, 0.22), transparent 60%),
    rgba(255, 255, 255, 0.58);
  color: var(--ink);
}

.transform-node:nth-of-type(1) span,
.transform-node:nth-of-type(1) strong,
.transform-node:nth-of-type(1) p,
.transform-node:nth-of-type(3) strong,
.transform-node:nth-of-type(3) p,
.transform-node.final strong,
.transform-node.final p {
  color: inherit;
}

.transform-node:nth-of-type(3) span {
  background: rgba(121, 200, 242, 0.16);
  color: var(--blue);
}

.transform-node span,
.feature-number,
.protocol-world > div > span {
  color: var(--blue);
}

.transform-node strong {
  color: var(--ink);
}

.transform-node p {
  color: rgba(7, 17, 31, 0.62);
}

.transform-arrow {
  color: rgba(7, 17, 31, 0.22);
}

.positioning-strip {
  margin: 0 40px;
  border-radius: 999px;
  transform: translateY(-32px);
}

.headline-section,
.network,
.shop-section,
.why-section,
.dashboard-section,
.experts {
  background: transparent;
}

.system-section {
  color: var(--white);
  background:
    radial-gradient(820px 520px at 72% 18%, rgba(121, 200, 242, 0.18), transparent 62%),
    linear-gradient(135deg, #07111f 0%, #0d2034 54%, #102b45 100%);
}

.system-section .headline-bg {
  background:
    radial-gradient(680px 420px at 82% 24%, rgba(255, 255, 255, 0.12), transparent 68%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent);
}

.clinic-os {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(28px);
}

.clinic-os span,
.clinic-os span:nth-of-type(even) {
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.1);
}

.pathway-grid article:nth-child(1),
.premium-grid article:nth-child(1),
.pathway-grid article:nth-child(3),
.premium-grid article:nth-child(3) {
  border-color: rgba(255, 255, 255, 0.72);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.76), rgba(255, 255, 255, 0.38)),
    rgba(255, 255, 255, 0.44);
  color: var(--ink);
}

.pathway-grid article:nth-child(1) h3,
.pathway-grid article:nth-child(1) p,
.pathway-grid article:nth-child(1) .feature-number,
.premium-grid article:nth-child(1) h3,
.premium-grid article:nth-child(1) p,
.premium-grid article:nth-child(1) .feature-number,
.pathway-grid article:nth-child(3) h3,
.pathway-grid article:nth-child(3) p,
.premium-grid article:nth-child(3) h3,
.premium-grid article:nth-child(3) p {
  color: inherit;
}

.section-title,
.why-inner h2 {
  letter-spacing: -0.02em;
}

.protocol-visual {
  min-height: 156px;
  background:
    radial-gradient(520px 240px at 78% 24%, rgba(121, 200, 242, 0.22), transparent 64%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(236, 244, 249, 0.76));
}

.mito-world .protocol-visual,
.cognitive-world .protocol-visual,
.recovery-world .protocol-visual,
.aging-world .protocol-visual {
  background:
    radial-gradient(520px 240px at 78% 24%, rgba(121, 200, 242, 0.24), transparent 64%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(236, 244, 249, 0.76));
}

.cognitive-world .protocol-visual {
  background:
    radial-gradient(480px 220px at 78% 24%, rgba(121, 200, 242, 0.18), transparent 62%),
    linear-gradient(135deg, #07111f, #17324c);
}

.signature-dashboard {
  background:
    radial-gradient(820px 520px at 78% 20%, rgba(121, 200, 242, 0.18), transparent 62%),
    linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.42));
}

.physician-note {
  border-color: rgba(255, 255, 255, 0.14);
  background:
    radial-gradient(420px 220px at 78% 18%, rgba(121, 200, 242, 0.16), transparent 62%),
    rgba(7, 17, 31, 0.92);
}

.physician-note span {
  color: #b9e3f8;
}

.cellular-map {
  opacity: 0.45;
  filter: blur(0.2px);
}

.human-trust {
  background:
    radial-gradient(720px 420px at 86% 12%, rgba(121, 200, 242, 0.16), transparent 62%),
    transparent;
}

.final-cta {
  background: #07111f;
}

.final-bg {
  background:
    radial-gradient(760px 520px at 28% 20%, rgba(121, 200, 242, 0.22), transparent 64%),
    radial-gradient(620px 420px at 72% 78%, rgba(255, 255, 255, 0.08), transparent 66%),
    linear-gradient(135deg, #07111f, #102b45);
}

@media (max-width: 760px) {
  .hero-main h1 {
    font-size: clamp(48px, 12vw, 72px);
  }

  .positioning-strip {
    margin: 0 18px;
    border-radius: 28px;
    transform: translateY(-18px);
  }
}

/* Cell Clinics V3 conversion-first */
.cc-v3 {
  background:
    radial-gradient(760px 500px at 82% 8%, rgba(91, 196, 244, 0.026), transparent 68%),
    linear-gradient(180deg, #fcfdfe 0%, #f8fafc 46%, #ffffff 100%);
}

.cc-v3 .cc-nav {
  padding-block: 14px;
  background: rgba(255, 255, 255, 0.88);
}

.cc-v3 .cc-button {
  color: #0b1730;
  border: 1px solid rgba(190, 210, 235, 0.5);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.78));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.96),
    0 12px 28px rgba(7, 20, 33, 0.055);
}

.cc-v3 .cc-button:hover {
  border-color: rgba(91, 196, 244, 0.28);
  background:
    radial-gradient(220px 90px at 50% 0%, rgba(91, 196, 244, 0.12), transparent 72%),
    linear-gradient(145deg, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0.84));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 1),
    0 14px 30px rgba(7, 20, 33, 0.065);
}

.cc-v3 .cc-button-subtle,
.cc-v3 .cc-final .cc-button-subtle {
  color: #0b1730;
  border-color: rgba(190, 210, 235, 0.5);
  background: rgba(255, 255, 255, 0.82);
}

.cc-v3 .cc-section,
.cc-v3 .cc-leadership,
.cc-v3 .cc-assessment {
  padding-block: clamp(58px, 6vw, 92px);
}

.cc-v3 .cc-hero-v2 {
  min-height: auto;
  grid-template-columns: minmax(0, 0.98fr) minmax(360px, 0.82fr);
  gap: clamp(28px, 4vw, 60px);
  padding-top: clamp(48px, 5vw, 80px);
  padding-bottom: clamp(42px, 5vw, 74px);
}

.cc-v3 .cc-hero-v2::before,
.cc-v3 .cc-deliverables,
.cc-v3 .cc-intelligence {
  background: none;
}

.cc-v3 .cc-hero-v2 h1 {
  max-width: 760px;
  font-size: clamp(46px, 4.3vw, 76px);
}

.cc-v3 .cc-hero p {
  max-width: 720px;
}

.cc-v3 .cc-hero-visual {
  min-height: 420px;
}

.cc-v3 .cc-hero-visual img {
  width: min(620px, 94%);
  filter: drop-shadow(0 24px 48px rgba(7, 20, 33, 0.08));
}

.cc-v3 .cc-hero-panel {
  right: 5%;
  bottom: 5%;
  width: min(320px, 82%);
}

.cc-v3 .cc-trust-row {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 860px;
  gap: 10px;
}

.cc-v3 .cc-trust-row span {
  min-height: 58px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 13px 14px;
  color: #0b1730;
  font-size: 13px;
}

.cc-v3 .cc-trust-row span::before {
  content: "✓";
  color: rgba(40, 111, 167, 0.82);
  font-weight: 950;
}

.cc-v3 .cc-section-head {
  max-width: 900px;
  margin-bottom: 34px;
}

.cc-v3 .cc-section h2,
.cc-v3 .cc-leadership h2,
.cc-v3 .cc-assessment h2 {
  max-width: 860px;
  font-size: clamp(38px, 3.8vw, 66px);
}

.cc-v3 .cc-deliverable-grid article,
.cc-v3 .cc-glass-grid article,
.cc-v3 .cc-system-list article,
.cc-v3 .cc-leadership-card,
.cc-v3 .cc-intake-form {
  border-color: rgba(190, 210, 235, 0.34);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.82)),
    rgba(255, 255, 255, 0.82);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 1),
    0 18px 42px rgba(7, 20, 33, 0.055);
}

.cc-v3 .cc-deliverable-grid article::before,
.cc-v3 .cc-system-list article::before {
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.95), transparent 36%);
}

.cc-v3 .cc-deliverable-grid article {
  min-height: 270px;
  padding: 28px;
}

.cc-v3 .cc-system-list article {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
  min-height: 300px;
  padding: clamp(24px, 3vw, 38px);
}

.cc-v3 .cc-system-list article:nth-child(even) {
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
}

.cc-v3 .cc-system-list h3 {
  font-size: clamp(28px, 2.6vw, 46px);
}

.cc-v3 .cc-system-list p {
  max-width: 520px;
  font-size: 18px;
}

.cc-v3 .cc-system-list article img {
  width: min(420px, 86%);
  filter: drop-shadow(0 18px 38px rgba(7, 20, 33, 0.06));
}

.cc-v3 .cc-leadership {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.46fr);
  align-items: center;
}

.cc-v3 .cc-stat-row {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 680px;
}

.cc-v3 .cc-stat-row span {
  min-height: 76px;
}

.cc-v3 .cc-leadership-card {
  max-width: 360px;
  justify-self: center;
  border-radius: 28px;
}

.cc-v3 .cc-leadership-card img {
  aspect-ratio: 1 / 0.82;
}

.cc-v3 .cc-leadership-card div {
  padding: 22px;
}

.cc-v3 .cc-leadership-card h3 {
  font-size: 26px;
}

.cc-v3 .cc-assessment {
  display: block;
  max-width: 980px;
  margin: 0 auto;
  background: transparent;
}

.cc-v3 .cc-assessment-copy {
  max-width: 900px;
  margin: 0 auto 28px;
  text-align: center;
}

.cc-v3 .cc-assessment-copy p {
  margin-left: auto;
  margin-right: auto;
}

.cc-v3 .cc-intake-form {
  max-width: 900px;
  margin: 0 auto;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: clamp(22px, 3.4vw, 36px);
}

.cc-v3 .cc-intake-form label:last-of-type,
.cc-v3 .cc-intake-form button,
.cc-v3 .cc-intake-form > p {
  grid-column: 1 / -1;
}

.cc-v3 .cc-intake-form textarea {
  min-height: 98px;
}

.cc-v3 .cc-footer {
  padding-block: 26px;
}

@media (max-width: 1100px) {
  .cc-v3 .cc-hero-v2,
  .cc-v3 .cc-leadership {
    grid-template-columns: 1fr;
  }

  .cc-v3 .cc-hero-visual {
    min-height: auto;
  }

  .cc-v3 .cc-trust-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .cc-v3 .cc-hero-v2 h1 {
    font-size: clamp(40px, 10vw, 56px);
  }

  .cc-v3 .cc-trust-row,
  .cc-v3 .cc-intake-form {
    grid-template-columns: 1fr;
  }

  .cc-v3 .cc-system-list article,
  .cc-v3 .cc-system-list article:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .cc-v3 .cc-system-list article:nth-child(even) div {
    order: 0;
  }

  .cc-v3 .cc-stat-row {
    grid-template-columns: 1fr;
  }
}

/* v40: controlled premium typography scale */
.hero-content {
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 0.68fr);
  min-height: auto;
  padding-top: clamp(128px, 9vw, 160px);
  padding-bottom: clamp(72px, 7vw, 112px);
  gap: clamp(44px, 5vw, 82px);
}

.hero-main {
  max-width: 820px;
}

.hero-main h1 {
  max-width: 780px;
  font-size: clamp(54px, 5.2vw, 92px);
  line-height: 0.94;
  letter-spacing: -0.018em;
}

.hero-main p {
  max-width: 700px;
  margin-top: 24px;
  font-size: clamp(17px, 1.18vw, 21px);
  line-height: 1.55;
}

.section-title,
.headline-content h2,
.why-inner h2,
.final-content h2 {
  font-size: clamp(38px, 3.7vw, 68px);
  line-height: 1.02;
  letter-spacing: -0.016em;
}

.cinematic-protocols .section-title {
  font-size: clamp(36px, 3.2vw, 58px);
}

.protocol-world h3 {
  font-size: clamp(26px, 2vw, 38px);
  line-height: 1.05;
}

.energy-score strong {
  font-size: clamp(70px, 6vw, 108px);
}

.medical-expert-card h3 {
  font-size: clamp(28px, 2.4vw, 40px);
}

.physician-lead p {
  font-size: clamp(18px, 1.5vw, 24px);
}

.transform-node {
  min-height: 132px;
  padding: 22px;
}

.transform-node strong {
  font-size: clamp(24px, 1.7vw, 30px);
}

.transform-node p {
  font-size: 15px;
  line-height: 1.48;
}

.clinic-transform-card {
  padding: 14px;
}

.nav {
  padding-top: 14px;
  padding-bottom: 14px;
}

@media (min-width: 1440px) {
  .hero-main h1 {
    font-size: clamp(64px, 4.6vw, 88px);
  }
}

@media (max-width: 1080px) {
  .hero-content {
    grid-template-columns: 1fr;
    padding-top: 112px;
  }

  .hero-main h1 {
    max-width: 760px;
    font-size: clamp(48px, 8.4vw, 76px);
  }
}

@media (max-width: 760px) {
  .hero-main h1 {
    font-size: clamp(40px, 10.5vw, 58px);
    line-height: 0.98;
  }

  .hero-main p {
    font-size: 16px;
  }

  .section-title,
  .headline-content h2,
  .why-inner h2,
  .final-content h2 {
    font-size: clamp(34px, 8.8vw, 46px);
  }
}

/* Cell Clinic 2026 rebuild */
.cc-v2 {
  --cc-ink: #081625;
  --cc-muted: #62717f;
  --cc-blue: #49bff5;
  --cc-blue-deep: #1d6ba9;
  --cc-line: rgba(8, 22, 37, 0.08);
  --cc-glass: rgba(255, 255, 255, 0.66);
  margin: 0;
  color: var(--cc-ink);
  background:
    radial-gradient(900px 620px at 82% 8%, rgba(73, 191, 245, 0.19), transparent 62%),
    radial-gradient(680px 520px at 18% 56%, rgba(29, 107, 169, 0.08), transparent 68%),
    linear-gradient(180deg, #fbfdff 0%, #f4f9fc 48%, #fff 100%);
  font-family: var(--sans);
}

.cc-v2 * {
  box-sizing: border-box;
}

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

.cc-nav {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 18px clamp(22px, 4vw, 58px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(24px) saturate(1.12);
  -webkit-backdrop-filter: blur(24px) saturate(1.12);
}

.cc-logo img {
  width: clamp(118px, 10vw, 164px);
}

.cc-nav-links {
  display: flex;
  justify-content: center;
  gap: 26px;
  color: rgba(8, 22, 37, 0.62);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.cc-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(8, 22, 37, 0.1);
  border-radius: 999px;
  padding: 12px 22px;
  color: #fff;
  background: linear-gradient(135deg, #0c2238, #1d6ba9);
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 18px 44px rgba(29, 107, 169, 0.18);
  white-space: nowrap;
}

.cc-button-subtle {
  color: var(--cc-ink);
  background: rgba(255, 255, 255, 0.72);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 16px 34px rgba(8, 22, 37, 0.06);
}

.cc-label {
  display: block;
  margin-bottom: 16px;
  color: var(--cc-blue-deep);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.cc-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1.12fr);
  min-height: calc(100svh - 84px);
  gap: clamp(36px, 5vw, 86px);
  align-items: center;
  padding: clamp(68px, 7vw, 118px) clamp(24px, 5vw, 72px) clamp(48px, 6vw, 92px);
  overflow: hidden;
}

.cc-hero::before {
  content: "";
  position: absolute;
  inset: 8% -10% auto 42%;
  height: 54%;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(73, 191, 245, 0.24), transparent 64%);
  filter: blur(10px);
  pointer-events: none;
}

.cc-hero-copy {
  position: relative;
  z-index: 2;
  max-width: 740px;
}

.cc-hero h1,
.cc-section h2,
.cc-showcase h2,
.cc-intelligence h2,
.cc-network h2,
.cc-final h2 {
  margin: 0;
  color: var(--cc-ink);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 0.96;
}

.cc-hero h1 {
  max-width: 760px;
  font-size: clamp(54px, 5.4vw, 96px);
}

.cc-hero p,
.cc-section-head p,
.cc-showcase p,
.cc-intelligence p,
.cc-network p,
.cc-final p {
  color: var(--cc-muted);
  font-size: clamp(17px, 1.35vw, 22px);
  line-height: 1.55;
}

.cc-hero p {
  max-width: 680px;
  margin: 26px 0 0;
}

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

.cc-hero-visual {
  position: relative;
  z-index: 1;
  min-height: 560px;
  display: grid;
  place-items: center;
}

.cc-hero-visual img {
  width: min(960px, 118%);
  max-width: none;
  filter: drop-shadow(0 38px 70px rgba(29, 107, 169, 0.18));
}

.cc-hero-panel {
  position: absolute;
  right: 7%;
  bottom: 8%;
  width: min(360px, 78%);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 28px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.68);
  backdrop-filter: blur(22px);
  box-shadow: 0 24px 60px rgba(8, 22, 37, 0.1);
}

.cc-hero-panel span,
.cc-dashboard-top span,
.cc-note span,
.cc-system-list article span {
  color: var(--cc-blue-deep);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.cc-hero-panel strong {
  display: block;
  margin-top: 8px;
  font-size: 20px;
  line-height: 1.18;
}

.cc-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  padding: 0 clamp(22px, 5vw, 72px) 68px;
}

.cc-strip span {
  border: 1px solid rgba(73, 191, 245, 0.18);
  border-radius: 999px;
  padding: 12px 18px;
  color: rgba(8, 22, 37, 0.72);
  background: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  font-weight: 850;
  backdrop-filter: blur(18px);
}

.cc-section,
.cc-showcase,
.cc-intelligence,
.cc-network,
.cc-final {
  padding: clamp(76px, 8vw, 132px) clamp(24px, 5vw, 72px);
}

.cc-deliverables {
  position: relative;
  background:
    radial-gradient(780px 420px at 22% 38%, rgba(73, 191, 245, 0.08), transparent 68%),
    radial-gradient(720px 420px at 84% 70%, rgba(29, 107, 169, 0.08), transparent 70%);
}

.cc-section-head {
  max-width: 960px;
  margin-bottom: 44px;
}

.cc-section h2,
.cc-showcase h2,
.cc-intelligence h2,
.cc-network h2,
.cc-final h2 {
  max-width: 940px;
  font-size: clamp(42px, 4.4vw, 78px);
}

.cc-section-head p,
.cc-showcase p,
.cc-intelligence p,
.cc-network p,
.cc-final p {
  max-width: 720px;
  margin: 22px 0 0;
}

.cc-steps,
.cc-deliverable-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.cc-steps article,
.cc-deliverable-grid article,
.cc-system-list article,
.cc-dashboard-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 30px;
  background:
    radial-gradient(460px 260px at 86% 0%, rgba(73, 191, 245, 0.18), transparent 62%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.58) 56%, rgba(232, 247, 255, 0.46)),
    rgba(255, 255, 255, 0.62);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.96),
    inset 0 -1px 0 rgba(73, 191, 245, 0.09),
    0 22px 54px rgba(8, 22, 37, 0.08),
    0 54px 120px rgba(29, 107, 169, 0.08);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  isolation: isolate;
  transition:
    transform 360ms cubic-bezier(0.19, 1, 0.22, 1),
    border-color 360ms ease,
    box-shadow 360ms ease;
}

.cc-steps article::before,
.cc-deliverable-grid article::before,
.cc-system-list article::before,
.cc-dashboard-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.72), transparent 34%),
    radial-gradient(240px 160px at 18% 0%, rgba(255, 255, 255, 0.92), transparent 66%),
    radial-gradient(220px 180px at 100% 100%, rgba(29, 107, 169, 0.1), transparent 70%);
}

.cc-steps article::after,
.cc-deliverable-grid article::after,
.cc-system-list article::after,
.cc-dashboard-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  box-shadow:
    inset 0 0 0 1px rgba(73, 191, 245, 0.11),
    inset 0 24px 54px rgba(255, 255, 255, 0.34);
}

.cc-steps article:hover,
.cc-deliverable-grid article:hover,
.cc-system-list article:hover,
.cc-dashboard-card:hover {
  transform: translateY(-6px);
  border-color: rgba(73, 191, 245, 0.34);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.98),
    inset 0 -1px 0 rgba(73, 191, 245, 0.14),
    0 26px 64px rgba(8, 22, 37, 0.1),
    0 64px 138px rgba(29, 107, 169, 0.13);
}

.cc-steps article,
.cc-deliverable-grid article {
  min-height: 278px;
  padding: 30px;
}

.cc-deliverable-grid article {
  min-height: 310px;
  border-color: rgba(73, 191, 245, 0.24);
  background:
    radial-gradient(420px 240px at 88% 0%, rgba(73, 191, 245, 0.24), transparent 62%),
    radial-gradient(320px 220px at 18% 100%, rgba(29, 107, 169, 0.1), transparent 70%),
    linear-gradient(150deg, rgba(255, 255, 255, 0.97), rgba(246, 252, 255, 0.78) 52%, rgba(235, 248, 255, 0.62));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.98),
    inset 0 -1px 0 rgba(73, 191, 245, 0.14),
    0 18px 34px rgba(8, 22, 37, 0.07),
    0 48px 110px rgba(29, 107, 169, 0.12);
}

.cc-deliverable-grid article::before {
  z-index: 0;
  background:
    linear-gradient(180deg, rgba(73, 191, 245, 0.2), transparent 1px),
    linear-gradient(120deg, rgba(255, 255, 255, 0.86), transparent 34%),
    radial-gradient(260px 180px at 100% 0%, rgba(73, 191, 245, 0.2), transparent 70%);
}

.cc-deliverable-grid article > * {
  position: relative;
  z-index: 1;
}

.cc-steps article span {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  color: var(--cc-blue-deep);
  border: 1px solid rgba(73, 191, 245, 0.2);
  background:
    radial-gradient(circle at 32% 28%, rgba(255, 255, 255, 0.92), transparent 46%),
    rgba(73, 191, 245, 0.12);
  font-size: 12px;
  font-weight: 900;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.85),
    0 10px 26px rgba(73, 191, 245, 0.14);
}

.cc-deliverable-grid {
  counter-reset: deliverables;
}

.cc-deliverable-grid article {
  counter-increment: deliverables;
}

.cc-deliverable-grid h3::before {
  content: counter(deliverables, decimal-leading-zero);
  display: grid;
  width: 44px;
  height: 44px;
  margin-bottom: 26px;
  place-items: center;
  border: 1px solid rgba(73, 191, 245, 0.34);
  border-radius: 50%;
  color: var(--cc-blue-deep);
  background:
    radial-gradient(circle at 30% 26%, rgba(255, 255, 255, 0.98), transparent 46%),
    linear-gradient(145deg, rgba(73, 191, 245, 0.18), rgba(255, 255, 255, 0.72));
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.03em;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    0 12px 28px rgba(73, 191, 245, 0.2);
}

.cc-steps h3,
.cc-deliverable-grid h3,
.cc-system-list h3 {
  margin: 24px 0 12px;
  color: var(--cc-ink);
  font-size: clamp(23px, 1.7vw, 32px);
  line-height: 1.05;
}

.cc-steps p,
.cc-deliverable-grid p,
.cc-system-list p {
  margin: 0;
  color: var(--cc-muted);
  font-size: 16px;
  line-height: 1.56;
}

.cc-deliverable-grid article:nth-child(2),
.cc-deliverable-grid article:nth-child(4),
.cc-steps article:nth-child(2),
.cc-steps article:nth-child(4) {
  background:
    radial-gradient(480px 260px at 88% 0%, rgba(73, 191, 245, 0.28), transparent 64%),
    radial-gradient(360px 220px at 18% 100%, rgba(29, 107, 169, 0.12), transparent 70%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(241, 250, 255, 0.74) 58%, rgba(255, 255, 255, 0.56));
}

.cc-deliverable-grid article:hover {
  transform: translateY(-8px);
  border-color: rgba(73, 191, 245, 0.48);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 1),
    inset 0 -1px 0 rgba(73, 191, 245, 0.18),
    0 22px 42px rgba(8, 22, 37, 0.09),
    0 62px 140px rgba(29, 107, 169, 0.16);
}

.cc-showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(420px, 1.28fr);
  gap: clamp(32px, 6vw, 96px);
  align-items: center;
  overflow: hidden;
}

.cc-showcase-visual img {
  width: min(980px, 116%);
  max-width: none;
  filter: drop-shadow(0 30px 62px rgba(29, 107, 169, 0.13));
}

.cc-system-list {
  display: grid;
  gap: 22px;
}

.cc-system-list article {
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(360px, 1fr);
  gap: 30px;
  align-items: center;
  min-height: 360px;
  padding: clamp(24px, 4vw, 48px);
  overflow: hidden;
}

.cc-system-list article:nth-child(even) {
  grid-template-columns: minmax(360px, 1fr) minmax(0, 0.74fr);
}

.cc-system-list article:nth-child(even) div {
  order: 2;
}

.cc-system-list article img {
  width: min(720px, 110%);
  max-width: none;
  justify-self: center;
  filter: drop-shadow(0 24px 56px rgba(29, 107, 169, 0.12));
}

.cc-intelligence {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1fr);
  gap: clamp(34px, 6vw, 92px);
  align-items: center;
  background:
    radial-gradient(760px 520px at 80% 30%, rgba(73, 191, 245, 0.16), transparent 64%),
    linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.58));
}

.cc-dashboard-card {
  padding: clamp(26px, 4vw, 44px);
}

.cc-dashboard-top {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.cc-dashboard-top strong {
  color: rgba(8, 22, 37, 0.58);
  font-size: 13px;
}

.cc-score {
  display: flex;
  align-items: baseline;
  gap: 18px;
  margin-bottom: 22px;
}

.cc-score strong {
  font-size: clamp(76px, 7vw, 128px);
  font-weight: 900;
  line-height: 0.9;
}

.cc-score span {
  color: var(--cc-blue-deep);
  font-weight: 900;
}

.cc-metric {
  display: grid;
  grid-template-columns: minmax(160px, 0.8fr) 1fr auto;
  gap: 14px;
  align-items: center;
  border-top: 1px solid rgba(8, 22, 37, 0.07);
  padding: 15px 0;
  color: rgba(8, 22, 37, 0.78);
  font-weight: 800;
}

.cc-metric i {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(73, 191, 245, 0.14);
}

.cc-metric i::before {
  content: "";
  display: block;
  width: var(--value);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--cc-blue), var(--cc-blue-deep));
}

.cc-note {
  margin-top: 24px;
  border-radius: 24px;
  padding: 20px;
  background: #081625;
}

.cc-note p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  line-height: 1.5;
}

.cc-network {
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(420px, 1.24fr);
  gap: clamp(36px, 6vw, 100px);
  align-items: center;
}

.cc-network img {
  width: min(920px, 112%);
  max-width: none;
  justify-self: center;
  filter: drop-shadow(0 30px 64px rgba(29, 107, 169, 0.12));
}

.cc-final {
  display: grid;
  place-items: center;
  min-height: 620px;
  color: #fff;
  text-align: center;
  background:
    radial-gradient(760px 520px at 50% 18%, rgba(73, 191, 245, 0.2), transparent 64%),
    linear-gradient(135deg, #081625, #12395a);
}

.cc-final h2,
.cc-final p {
  color: #fff;
}

.cc-final p {
  color: rgba(255, 255, 255, 0.76);
  margin-left: auto;
  margin-right: auto;
}

.cc-final .cc-button {
  margin-top: 30px;
  color: var(--cc-ink);
  background: #fff;
}

.cc-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 34px clamp(24px, 5vw, 72px);
  background: #fff;
}

.cc-footer img {
  width: 140px;
}

.cc-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--cc-muted);
  font-size: 13px;
  font-weight: 800;
}

@media (max-width: 1100px) {
  .cc-hero,
  .cc-showcase,
  .cc-intelligence,
  .cc-network {
    grid-template-columns: 1fr;
  }

  .cc-hero-visual {
    min-height: auto;
  }

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

  .cc-system-list article,
  .cc-system-list article:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .cc-system-list article:nth-child(even) div {
    order: 0;
  }
}

@media (max-width: 760px) {
  .cc-nav {
    grid-template-columns: 1fr auto;
  }

  .cc-nav-links {
    display: none;
  }

  .cc-hero {
    padding-top: 54px;
  }

  .cc-hero h1,
  .cc-section h2,
  .cc-showcase h2,
  .cc-intelligence h2,
  .cc-network h2,
  .cc-final h2 {
    font-size: clamp(38px, 10vw, 54px);
  }

  .cc-hero-visual img,
  .cc-showcase-visual img,
  .cc-network img,
  .cc-system-list article img {
    width: 100%;
    max-width: 100%;
  }

  .cc-hero-panel {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: -22px;
  }

  .cc-steps,
  .cc-deliverable-grid {
    grid-template-columns: 1fr;
  }

  .cc-metric {
    grid-template-columns: 1fr;
  }

  .cc-footer {
    display: grid;
  }
}

/* Cell Clinics V2 */
.cc-clinics {
  --cc-ink: #071421;
  --cc-muted: #637180;
  --cc-blue: #5bc4f4;
  --cc-blue-deep: #286fa7;
  --cc-line: rgba(7, 20, 33, 0.08);
  background:
    radial-gradient(820px 520px at 80% 8%, rgba(91, 196, 244, 0.055), transparent 66%),
    radial-gradient(760px 560px at 8% 42%, rgba(7, 20, 33, 0.035), transparent 72%),
    linear-gradient(180deg, #fcfdfe 0%, #f7fafc 45%, #ffffff 100%);
}

.cc-clinics .cc-nav {
  border-bottom-color: rgba(7, 20, 33, 0.055);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 60px rgba(7, 20, 33, 0.045);
}

.cc-clinics .cc-logo img {
  width: clamp(118px, 9vw, 152px);
}

.cc-clinics .cc-button {
  border-color: rgba(7, 20, 33, 0.12);
  background: linear-gradient(135deg, #071421, #17304a);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 18px 42px rgba(7, 20, 33, 0.13);
}

.cc-clinics .cc-button-subtle,
.cc-clinics .cc-final .cc-button-subtle {
  color: var(--cc-ink);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.72));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.96),
    0 18px 42px rgba(7, 20, 33, 0.07);
}

.cc-clinics .cc-label {
  color: rgba(40, 111, 167, 0.88);
  letter-spacing: 0.19em;
}

.cc-hero-v2 {
  grid-template-columns: minmax(0, 0.9fr) minmax(390px, 1.1fr);
  min-height: calc(100svh - 86px);
  padding-top: clamp(62px, 6vw, 94px);
}

.cc-hero-v2::before {
  opacity: 0.28;
  background: radial-gradient(circle, rgba(91, 196, 244, 0.09), transparent 68%);
}

.cc-hero-v2 h1 {
  max-width: 820px;
  font-size: clamp(48px, 4.85vw, 84px);
  line-height: 0.98;
}

.cc-hero-v2 .cc-hero-visual img {
  width: min(920px, 112%);
  filter: drop-shadow(0 34px 74px rgba(7, 20, 33, 0.11));
}

.cc-clinics .cc-hero-panel,
.cc-white-panel,
.cc-glass-grid article,
.cc-pathway-rail article,
.cc-deliverable-grid article,
.cc-dashboard-card,
.cc-map-panel,
.cc-leadership-card,
.cc-testimonial-grid article,
.cc-faq-grid details,
.cc-intake-form,
.cc-timeline article {
  border: 1px solid rgba(255, 255, 255, 0.92);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.74)),
    rgba(255, 255, 255, 0.72);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.98),
    inset 0 -1px 0 rgba(7, 20, 33, 0.035),
    0 20px 52px rgba(7, 20, 33, 0.07);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
}

.cc-clinics .cc-hero-panel {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.7));
}

.cc-trust-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 34px;
  max-width: 790px;
}

.cc-trust-row span {
  min-height: 74px;
  border: 1px solid rgba(7, 20, 33, 0.07);
  border-radius: 22px;
  padding: 16px;
  color: rgba(7, 20, 33, 0.58);
  background: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.25;
}

.cc-trust-row strong {
  display: block;
  margin-bottom: 4px;
  color: var(--cc-ink);
  font-size: 18px;
}

.cc-trusted {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(24px, 4vw, 60px);
  align-items: center;
  padding: 34px clamp(24px, 5vw, 72px);
  border-block: 1px solid rgba(7, 20, 33, 0.055);
  background: rgba(255, 255, 255, 0.62);
}

.cc-trusted > span {
  color: rgba(7, 20, 33, 0.46);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.cc-trusted div {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.cc-trusted strong {
  display: grid;
  min-height: 62px;
  place-items: center;
  border: 1px solid rgba(7, 20, 33, 0.065);
  border-radius: 18px;
  color: rgba(7, 20, 33, 0.48);
  background: rgba(255, 255, 255, 0.64);
  font-size: 13px;
  font-weight: 900;
  filter: grayscale(1);
}

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

.cc-glass-grid article,
.cc-pathway-rail article {
  min-height: 250px;
  border-color: rgba(7, 20, 33, 0.055);
  border-radius: 30px;
  padding: 30px;
}

.cc-glass-grid article span,
.cc-pathway-rail article span,
.cc-timeline article span {
  display: inline-grid;
  min-width: 42px;
  height: 38px;
  margin-bottom: 26px;
  place-items: center;
  border: 1px solid rgba(7, 20, 33, 0.08);
  border-radius: 999px;
  color: rgba(40, 111, 167, 0.8);
  background: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 950;
}

.cc-glass-grid h3,
.cc-pathway-rail h3,
.cc-timeline h3,
.cc-testimonial-grid h3 {
  margin: 0 0 12px;
  color: var(--cc-ink);
  font-size: clamp(22px, 1.6vw, 30px);
  line-height: 1.08;
}

.cc-glass-grid p,
.cc-pathway-rail p,
.cc-timeline p {
  margin: 0;
  color: var(--cc-muted);
  font-size: 16px;
  line-height: 1.55;
}

.cc-inline-cta {
  display: inline-flex;
  margin-top: 30px;
  border-bottom: 1px solid rgba(7, 20, 33, 0.28);
  color: var(--cc-ink);
  font-weight: 900;
}

.cc-leadership {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(380px, 0.72fr);
  gap: clamp(34px, 6vw, 92px);
  align-items: center;
  padding: clamp(84px, 8vw, 132px) clamp(24px, 5vw, 72px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.52), rgba(246, 250, 253, 0.72));
}

.cc-leadership h2,
.cc-assessment h2 {
  margin: 0;
  max-width: 880px;
  color: var(--cc-ink);
  font-size: clamp(42px, 4.4vw, 76px);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 0.98;
}

.cc-leadership p,
.cc-assessment p {
  max-width: 720px;
  color: var(--cc-muted);
  font-size: clamp(17px, 1.25vw, 21px);
  line-height: 1.55;
}

.cc-stat-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 30px 0;
  max-width: 880px;
}

.cc-stat-row span {
  border: 1px solid rgba(7, 20, 33, 0.07);
  border-radius: 22px;
  padding: 18px;
  color: rgba(7, 20, 33, 0.58);
  background: rgba(255, 255, 255, 0.72);
  font-weight: 800;
}

.cc-stat-row strong {
  display: block;
  color: var(--cc-ink);
  font-size: 18px;
}

.cc-leadership-card {
  overflow: hidden;
  border-color: rgba(7, 20, 33, 0.06);
  border-radius: 34px;
}

.cc-leadership-card img {
  width: 100%;
  aspect-ratio: 1 / 0.88;
  object-fit: cover;
  object-position: center 16%;
  filter: saturate(0.9);
}

.cc-leadership-card div {
  padding: 28px;
}

.cc-leadership-card span {
  color: rgba(40, 111, 167, 0.82);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.cc-leadership-card h3 {
  margin: 10px 0;
  font-size: 32px;
  line-height: 1.05;
}

.cc-map-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.64fr) minmax(360px, 1fr);
  gap: 28px;
  align-items: stretch;
  border-color: rgba(7, 20, 33, 0.06);
  border-radius: 36px;
  padding: clamp(24px, 4vw, 46px);
}

.cc-map-copy h3 {
  margin: 0 0 12px;
  font-size: clamp(30px, 2.7vw, 48px);
  line-height: 1;
}

.cc-map-copy p {
  color: var(--cc-muted);
  font-size: 18px;
  line-height: 1.5;
}

.cc-region-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  align-content: center;
}

.cc-region-grid span {
  display: grid;
  min-height: 92px;
  place-items: center;
  border: 1px solid rgba(7, 20, 33, 0.07);
  border-radius: 24px;
  color: rgba(7, 20, 33, 0.72);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.62));
  font-size: 14px;
  font-weight: 900;
}

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

.cc-pathway-rail article {
  min-height: 230px;
  padding: 24px;
}

.cc-clinics .cc-deliverables {
  background:
    linear-gradient(180deg, rgba(249, 252, 254, 0.74), rgba(255, 255, 255, 0.86));
}

.cc-clinics .cc-deliverable-grid {
  gap: 24px;
}

.cc-clinics .cc-six-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cc-clinics .cc-deliverable-grid article {
  min-height: 340px;
  border-color: rgba(7, 20, 33, 0.065);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.78)),
    rgba(255, 255, 255, 0.8);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 1),
    inset 0 -1px 0 rgba(7, 20, 33, 0.035),
    0 24px 70px rgba(7, 20, 33, 0.08);
}

.cc-clinics .cc-deliverable-grid article::before {
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.9), transparent 34%),
    radial-gradient(280px 180px at 100% 0%, rgba(91, 196, 244, 0.055), transparent 72%);
}

.cc-clinics .cc-deliverable-grid h3::before {
  border-color: rgba(7, 20, 33, 0.08);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.cc-ecosystem-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.cc-ecosystem-flow article {
  position: relative;
  min-height: 230px;
  border: 1px solid rgba(7, 20, 33, 0.06);
  border-radius: 30px;
  padding: 30px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.72)),
    rgba(255, 255, 255, 0.76);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.98),
    0 20px 52px rgba(7, 20, 33, 0.065);
}

.cc-ecosystem-flow article:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -18px;
  width: 18px;
  height: 1px;
  background: rgba(7, 20, 33, 0.18);
}

.cc-ecosystem-flow span {
  display: inline-grid;
  min-width: 42px;
  height: 38px;
  margin-bottom: 26px;
  place-items: center;
  border: 1px solid rgba(7, 20, 33, 0.08);
  border-radius: 999px;
  color: rgba(40, 111, 167, 0.82);
  background: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 950;
}

.cc-ecosystem-flow h3 {
  margin: 0 0 12px;
  color: var(--cc-ink);
  font-size: clamp(22px, 1.6vw, 30px);
  line-height: 1.08;
}

.cc-ecosystem-flow p {
  margin: 0;
  color: var(--cc-muted);
  font-size: 16px;
  line-height: 1.55;
}

.cc-clinics .cc-system-list {
  gap: 26px;
}

.cc-clinics .cc-system-list article {
  min-height: 420px;
  border-color: rgba(7, 20, 33, 0.06);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.68)),
    rgba(255, 255, 255, 0.75);
}

.cc-clinics .cc-system-list article img {
  filter: drop-shadow(0 26px 56px rgba(7, 20, 33, 0.08));
}

.cc-clinics .cc-intelligence {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(247, 250, 252, 0.92));
}

.cc-clinics .cc-dashboard-card {
  border-color: rgba(7, 20, 33, 0.07);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.74));
}

.cc-clinics .cc-score strong {
  font-size: clamp(66px, 6vw, 112px);
}

.cc-clinics .cc-metric i {
  background: rgba(7, 20, 33, 0.07);
}

.cc-clinics .cc-metric i::before {
  background: linear-gradient(90deg, #071421, #5a7185);
}

.cc-clinics .cc-note {
  background: #071421;
}

.cc-timeline,
.cc-testimonial-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.cc-timeline article {
  border-radius: 28px;
  padding: 26px;
}

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

.cc-testimonial-grid article {
  border-radius: 30px;
  padding: 32px;
}

.cc-testimonial-grid p {
  margin: 0 0 24px;
  color: var(--cc-ink);
  font-size: clamp(22px, 2vw, 32px);
  font-weight: 850;
  letter-spacing: -0.02em;
  line-height: 1.12;
}

.cc-testimonial-grid span {
  color: var(--cc-muted);
  font-size: 13px;
  font-weight: 900;
}

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

.cc-faq-grid details {
  border-radius: 24px;
  padding: 24px;
}

.cc-faq-grid summary {
  cursor: pointer;
  color: var(--cc-ink);
  font-size: 20px;
  font-weight: 900;
}

.cc-faq-grid p {
  margin: 14px 0 0;
  color: var(--cc-muted);
  line-height: 1.55;
}

.cc-assessment {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(420px, 1fr);
  gap: clamp(34px, 6vw, 92px);
  align-items: start;
  padding: clamp(84px, 8vw, 132px) clamp(24px, 5vw, 72px);
  background:
    linear-gradient(180deg, rgba(247, 250, 252, 0.76), rgba(255, 255, 255, 0.94));
}

.cc-intake-form {
  display: grid;
  gap: 18px;
  border-color: rgba(7, 20, 33, 0.06);
  border-radius: 36px;
  padding: clamp(24px, 4vw, 42px);
}

.cc-intake-form fieldset,
.cc-intake-form label {
  display: grid;
  gap: 12px;
  margin: 0;
  border: 0;
  padding: 0;
  color: var(--cc-ink);
  font-size: 14px;
  font-weight: 950;
}

.cc-intake-form legend {
  margin-bottom: 12px;
  color: var(--cc-ink);
  font-size: 14px;
  font-weight: 950;
}

.cc-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cc-options label {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  border: 1px solid rgba(7, 20, 33, 0.08);
  border-radius: 999px;
  padding: 10px 14px;
  color: rgba(7, 20, 33, 0.72);
  background: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.cc-intake-form input[type="text"],
.cc-intake-form input[type="email"],
.cc-intake-form select,
.cc-intake-form textarea {
  width: 100%;
  border: 1px solid rgba(7, 20, 33, 0.08);
  border-radius: 20px;
  padding: 16px 18px;
  color: var(--cc-ink);
  background: rgba(255, 255, 255, 0.72);
  font: inherit;
  font-weight: 700;
  outline: none;
}

.cc-intake-form select {
  appearance: none;
}

.cc-intake-form textarea {
  min-height: 118px;
  resize: vertical;
}

.cc-intake-form > p {
  margin: 0;
  color: var(--cc-muted);
  font-size: 14px;
}

.cc-clinics .cc-final {
  min-height: 540px;
  background:
    radial-gradient(780px 440px at 50% 0%, rgba(255, 255, 255, 0.08), transparent 62%),
    linear-gradient(135deg, #071421, #122236);
}

.cc-actions-center {
  justify-content: center;
}

.cc-clinics .cc-footer {
  border-top: 1px solid rgba(7, 20, 33, 0.06);
}

.cc-clinics .cc-footer img {
  width: 148px;
}

@media (max-width: 1100px) {
  .cc-hero-v2,
  .cc-leadership,
  .cc-map-panel,
  .cc-assessment {
    grid-template-columns: 1fr;
  }

  .cc-trust-row,
  .cc-glass-grid,
  .cc-pathway-rail,
  .cc-region-grid,
  .cc-timeline,
  .cc-ecosystem-flow,
  .cc-clinics .cc-six-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cc-trusted {
    grid-template-columns: 1fr;
  }

  .cc-trusted div {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .cc-hero-v2 h1 {
    font-size: clamp(42px, 11vw, 58px);
  }

  .cc-trust-row,
  .cc-glass-grid,
  .cc-pathway-rail,
  .cc-region-grid,
  .cc-timeline,
  .cc-testimonial-grid,
  .cc-faq-grid,
  .cc-trusted div,
  .cc-ecosystem-flow,
  .cc-clinics .cc-six-grid {
    grid-template-columns: 1fr;
  }

  .cc-ecosystem-flow article::after {
    display: none;
  }

  .cc-leadership h2,
  .cc-assessment h2 {
    font-size: clamp(38px, 10vw, 54px);
  }

  .cc-stat-row {
    grid-template-columns: 1fr;
  }
}

/* Final V3 overrides after legacy Cell Clinics rules */
.cc-v3 .cc-button,
.cc-v3 .cc-nav .cc-button,
.cc-v3 .cc-actions .cc-button,
.cc-v3 .cc-intake-form .cc-button {
  color: #0b1730;
  border: 1px solid rgba(190, 210, 235, 0.5);
  background:
    radial-gradient(220px 90px at 50% 0%, rgba(91, 196, 244, 0.07), transparent 72%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.8));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.98),
    0 12px 28px rgba(7, 20, 33, 0.055);
}

.cc-v3 .cc-button:hover,
.cc-v3 .cc-nav .cc-button:hover,
.cc-v3 .cc-actions .cc-button:hover,
.cc-v3 .cc-intake-form .cc-button:hover {
  color: #0b1730;
  border-color: rgba(91, 196, 244, 0.28);
  background:
    radial-gradient(240px 100px at 50% 0%, rgba(91, 196, 244, 0.12), transparent 72%),
    linear-gradient(145deg, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0.86));
}

.cc-v3 .cc-hero-v2::before {
  display: none;
}

.cc-v3 .cc-hero-visual img {
  width: min(620px, 94%);
}

.cc-v3 .cc-system-list article img {
  width: min(420px, 86%);
}

.cc-v3 .cc-deliverable-grid article,
.cc-v3 .cc-system-list article,
.cc-v3 .cc-leadership-card,
.cc-v3 .cc-intake-form {
  border-color: rgba(190, 210, 235, 0.34);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.82)),
    rgba(255, 255, 255, 0.82);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 1),
    0 18px 42px rgba(7, 20, 33, 0.055);
}

/* V3 conversion CTA hierarchy */
.cc-v3 .cc-primary,
.cc-v3 .cc-nav .cc-primary,
.cc-v3 .cc-actions .cc-primary,
.cc-v3 .cc-section-cta .cc-primary,
.cc-v3 .cc-intake-form .cc-primary,
.cc-sticky-cta {
  color: #ffffff;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #0a2342, #1d4ed8);
  box-shadow: 0 10px 30px rgba(29, 78, 216, 0.18);
  transition:
    transform 300ms ease,
    box-shadow 300ms ease,
    background 300ms ease;
}

.cc-v3 .cc-primary:hover,
.cc-v3 .cc-nav .cc-primary:hover,
.cc-v3 .cc-actions .cc-primary:hover,
.cc-v3 .cc-section-cta .cc-primary:hover,
.cc-v3 .cc-intake-form .cc-primary:hover,
.cc-sticky-cta:hover {
  color: #ffffff;
  border: 0;
  transform: translateY(-2px);
  background: linear-gradient(135deg, #0d2c52, #2563eb);
  box-shadow:
    0 12px 34px rgba(29, 78, 216, 0.24),
    0 0 0 5px rgba(29, 78, 216, 0.045);
}

.cc-v3 .cc-button-subtle {
  color: #0b1730;
  border: 1px solid rgba(190, 210, 235, 0.5);
  background:
    radial-gradient(220px 90px at 50% 0%, rgba(91, 196, 244, 0.07), transparent 72%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.8));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.98),
    0 12px 28px rgba(7, 20, 33, 0.055);
}

.cc-v3 .cc-nav .cc-primary {
  min-height: 54px;
  padding-inline: 26px;
  font-size: 15px;
  box-shadow: 0 14px 36px rgba(29, 78, 216, 0.24);
}

.cc-section-cta {
  display: flex;
  margin-top: 30px;
}

.cc-v3 .cc-text-link {
  display: inline-flex;
  align-items: center;
  color: #0b1730;
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
  border-bottom: 1px solid rgba(11, 23, 48, 0.28);
}

.cc-form-message {
  min-height: 24px;
  font-weight: 800;
}

.cc-form-message.is-success {
  color: #0d5f3f;
}

.cc-form-message.is-error {
  color: #a13a2c;
}

.cc-intake-form button:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.cc-sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 40;
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 15px 24px;
  color: #fff;
  font-size: 14px;
  font-weight: 950;
  line-height: 1;
  text-decoration: none;
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
}

.cc-sticky-cta.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

@media (max-width: 760px) {
  .cc-sticky-cta {
    right: 14px;
    bottom: 14px;
    left: 14px;
    width: auto;
    min-height: 56px;
  }
}

/* V52 minimal Apple-style CTA reset */
.cc-v3 .cc-primary,
.cc-v3 .cc-nav .cc-primary,
.cc-v3 .cc-actions .cc-primary,
.cc-v3 .cc-section-cta .cc-primary,
.cc-v3 .cc-intake-form .cc-primary,
.cc-sticky-cta {
  color: #0b1730;
  border: 1px solid rgba(190, 210, 235, 0.5);
  background: rgba(255, 255, 255, 0.92);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 1),
    inset 0 -16px 28px rgba(190, 210, 235, 0.06),
    0 8px 18px rgba(7, 20, 33, 0.04);
  transition:
    transform 300ms ease,
    border-color 300ms ease,
    box-shadow 300ms ease,
    background 300ms ease;
}

.cc-v3 .cc-primary:hover,
.cc-v3 .cc-nav .cc-primary:hover,
.cc-v3 .cc-actions .cc-primary:hover,
.cc-v3 .cc-section-cta .cc-primary:hover,
.cc-v3 .cc-intake-form .cc-primary:hover,
.cc-sticky-cta:hover {
  color: #0b1730;
  border: 1px solid rgba(150, 184, 220, 0.62);
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.98);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 1),
    inset 0 -18px 30px rgba(91, 196, 244, 0.07),
    0 10px 22px rgba(7, 20, 33, 0.05);
}

.cc-v3 .cc-nav .cc-primary {
  color: #0b1730;
  border: 1px solid rgba(150, 184, 220, 0.62);
  background: rgba(255, 255, 255, 0.94);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 1),
    inset 0 -14px 26px rgba(190, 210, 235, 0.07),
    0 10px 26px rgba(7, 20, 33, 0.06);
}

.cc-sticky-cta {
  color: #0b1730;
  text-align: center;
}

/* V53 mobile optimization + language switcher */
.cc-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.cc-v3 .cc-nav {
  grid-template-columns: auto minmax(0, 1fr) auto;
}

.cc-nav-actions {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  justify-self: end;
}

.cc-lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  border: 1px solid rgba(190, 210, 235, 0.48);
  border-radius: 999px;
  padding: 4px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    0 8px 20px rgba(7, 20, 33, 0.035);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.cc-lang-switch button {
  min-width: 38px;
  height: 34px;
  border: 0;
  border-radius: 999px;
  color: rgba(11, 23, 48, 0.62);
  background: transparent;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition:
    color 220ms ease,
    background 220ms ease,
    box-shadow 220ms ease;
}

.cc-lang-switch button.is-active {
  color: #0b1730;
  background: rgba(255, 255, 255, 0.94);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 1),
    0 5px 14px rgba(7, 20, 33, 0.06);
}

.cc-mobile-toggle,
.cc-mobile-menu {
  display: none;
}

.cc-mobile-toggle {
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border: 1px solid rgba(190, 210, 235, 0.5);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 1),
    0 8px 18px rgba(7, 20, 33, 0.04);
}

.cc-mobile-toggle span:not(.cc-sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #0b1730;
}

.cc-mobile-menu {
  position: sticky;
  top: 73px;
  z-index: 19;
  margin: 0;
  border-bottom: 1px solid rgba(190, 210, 235, 0.36);
  padding: 18px 18px 22px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(24px) saturate(1.08);
  -webkit-backdrop-filter: blur(24px) saturate(1.08);
  box-shadow: 0 18px 38px rgba(7, 20, 33, 0.055);
}

.cc-mobile-menu:not([hidden]) {
  display: grid;
  gap: 10px;
}

.cc-mobile-menu > a:not(.cc-button) {
  min-height: 48px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(190, 210, 235, 0.24);
  color: rgba(11, 23, 48, 0.78);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.cc-mobile-menu .cc-lang-switch {
  width: max-content;
  margin: 8px 0 4px;
}

@media (max-width: 900px) {
  body.cc-v3 {
    background:
      radial-gradient(520px 360px at 92% 6%, rgba(91, 196, 244, 0.04), transparent 70%),
      linear-gradient(180deg, #fcfdfe 0%, #f8fafc 58%, #ffffff 100%);
  }

  .cc-v3 .cc-nav {
    grid-template-columns: auto auto;
    padding: 12px 16px;
  }

  .cc-v3 .cc-logo img {
    width: clamp(112px, 36vw, 148px);
  }

  .cc-nav-links,
  .cc-nav-actions {
    display: none;
  }

  .cc-mobile-toggle {
    display: inline-grid;
    justify-self: end;
  }

  .cc-v3 .cc-hero-v2,
  .cc-v3 .cc-leadership,
  .cc-v3 .cc-assessment,
  .cc-v3 .cc-system-list article,
  .cc-v3 .cc-system-list article:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .cc-v3 .cc-hero-v2,
  .cc-v3 .cc-section,
  .cc-v3 .cc-leadership,
  .cc-v3 .cc-assessment {
    padding-left: 18px;
    padding-right: 18px;
  }

  .cc-v3 .cc-hero-v2 {
    gap: 24px;
    padding-top: 42px;
    padding-bottom: 46px;
  }

  .cc-v3 .cc-hero-copy {
    max-width: none;
  }

  .cc-v3 .cc-hero-v2 h1 {
    max-width: 11ch;
    font-size: clamp(34px, 10.5vw, 42px);
    line-height: 1.05;
    letter-spacing: -0.035em;
  }

  .cc-v3 .cc-hero p,
  .cc-v3 .cc-section-head p,
  .cc-v3 .cc-leadership p,
  .cc-v3 .cc-assessment p {
    font-size: 17px;
    line-height: 1.52;
  }

  .cc-v3 .cc-actions,
  .cc-v3 .cc-section-cta {
    display: grid;
    width: 100%;
    gap: 10px;
  }

  .cc-v3 .cc-actions .cc-button,
  .cc-v3 .cc-section-cta .cc-button,
  .cc-mobile-menu .cc-button {
    width: 100%;
  }

  .cc-v3 .cc-button {
    min-height: 52px;
    padding: 14px 18px;
    white-space: normal;
  }

  .cc-v3 .cc-trust-row {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 24px;
  }

  .cc-v3 .cc-trust-row span {
    min-height: 46px;
    padding: 11px 13px;
  }

  .cc-v3 .cc-hero-visual {
    min-height: auto;
    order: 2;
  }

  .cc-v3 .cc-hero-visual img {
    width: min(100%, 420px);
    max-width: 100%;
  }

  .cc-v3 .cc-hero-panel {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: -12px;
    border-radius: 22px;
    padding: 16px;
  }

  .cc-v3 .cc-hero-panel strong {
    font-size: 16px;
  }

  .cc-v3 .cc-section,
  .cc-v3 .cc-leadership,
  .cc-v3 .cc-assessment {
    padding-top: 48px;
    padding-bottom: 52px;
  }

  .cc-v3 .cc-section-head {
    margin-bottom: 24px;
  }

  .cc-v3 .cc-section h2,
  .cc-v3 .cc-leadership h2,
  .cc-v3 .cc-assessment h2 {
    font-size: clamp(32px, 8.8vw, 36px);
    line-height: 1.03;
    letter-spacing: -0.03em;
  }

  .cc-v3 .cc-deliverable-grid,
  .cc-v3 .cc-stat-row,
  .cc-v3 .cc-intake-form {
    grid-template-columns: 1fr;
  }

  .cc-v3 .cc-deliverable-grid {
    gap: 14px;
  }

  .cc-v3 .cc-deliverable-grid article {
    min-height: auto;
    padding: 22px;
    border-radius: 24px;
  }

  .cc-deliverable-grid h3::before {
    width: 34px;
    height: 34px;
    margin-bottom: 18px;
  }

  .cc-v3 .cc-deliverable-grid h3,
  .cc-v3 .cc-system-list h3 {
    font-size: clamp(23px, 7vw, 30px);
    line-height: 1.08;
  }

  .cc-v3 .cc-system-list {
    gap: 16px;
  }

  .cc-v3 .cc-system-list article,
  .cc-v3 .cc-system-list article:nth-child(even) {
    min-height: auto;
    gap: 18px;
    padding: 22px;
    border-radius: 26px;
  }

  .cc-v3 .cc-system-list article:nth-child(even) div {
    order: 0;
  }

  .cc-v3 .cc-system-list p {
    font-size: 16px;
  }

  .cc-v3 .cc-system-list article img {
    width: min(100%, 320px);
    max-width: 100%;
    justify-self: center;
  }

  .cc-v3 .cc-leadership {
    gap: 26px;
  }

  .cc-v3 .cc-stat-row {
    gap: 10px;
    margin: 22px 0;
  }

  .cc-v3 .cc-stat-row span {
    min-height: auto;
    padding: 15px;
  }

  .cc-v3 .cc-leadership-card {
    width: 100%;
    max-width: 340px;
    justify-self: center;
    border-radius: 24px;
  }

  .cc-v3 .cc-leadership-card div {
    padding: 18px;
  }

  .cc-v3 .cc-leadership-card h3 {
    font-size: 23px;
  }

  .cc-v3 .cc-assessment-copy {
    margin-bottom: 20px;
    text-align: left;
  }

  .cc-v3 .cc-intake-form {
    gap: 12px;
    padding: 18px;
    border-radius: 26px;
  }

  .cc-v3 .cc-intake-form label {
    gap: 7px;
    font-size: 13px;
  }

  .cc-v3 .cc-intake-form input[type="text"],
  .cc-v3 .cc-intake-form input[type="email"],
  .cc-v3 .cc-intake-form select,
  .cc-v3 .cc-intake-form textarea {
    min-height: 52px;
    border-radius: 16px;
    padding: 13px 15px;
    font-size: 16px;
  }

  .cc-v3 .cc-intake-form textarea {
    min-height: 92px;
  }

  .cc-v3 .cc-intake-form button {
    width: 100%;
    margin-top: 2px;
  }

  .cc-v3 .cc-form-note,
  .cc-v3 .cc-form-message {
    font-size: 13px;
  }

  .cc-sticky-cta {
    right: 12px;
    bottom: 12px;
    left: 12px;
    width: auto;
    min-height: 54px;
    padding: 14px 18px;
  }

  .cc-v3 .cc-footer {
    display: grid;
    gap: 18px;
    padding: 28px 18px 86px;
  }

  .cc-v3 .cc-footer img {
    width: 128px;
  }

  .cc-v3 .cc-footer nav {
    display: grid;
    gap: 12px;
  }
}

@media (min-width: 901px) {
  .cc-mobile-menu {
    display: none !important;
  }
}

/* V53 strict no-gradient button finish */
.cc-v3 .cc-button,
.cc-v3 .cc-button-subtle,
.cc-v3 .cc-nav .cc-button,
.cc-v3 .cc-actions .cc-button,
.cc-v3 .cc-section-cta .cc-button,
.cc-v3 .cc-intake-form .cc-button,
.cc-mobile-menu .cc-button,
.cc-sticky-cta {
  color: #0b1730;
  border: 1px solid rgba(190, 210, 235, 0.5);
  background-color: rgba(255, 255, 255, 0.92);
  background-image: none;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 1),
    inset 0 -16px 28px rgba(190, 210, 235, 0.06),
    0 8px 18px rgba(7, 20, 33, 0.04);
}

.cc-v3 .cc-button:hover,
.cc-v3 .cc-button-subtle:hover,
.cc-v3 .cc-nav .cc-button:hover,
.cc-v3 .cc-actions .cc-button:hover,
.cc-v3 .cc-section-cta .cc-button:hover,
.cc-v3 .cc-intake-form .cc-button:hover,
.cc-mobile-menu .cc-button:hover,
.cc-sticky-cta:hover {
  color: #0b1730;
  border-color: rgba(150, 184, 220, 0.62);
  background-color: rgba(255, 255, 255, 0.98);
  background-image: none;
  transform: translateY(-1px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 1),
    inset 0 -18px 30px rgba(91, 196, 244, 0.07),
    0 10px 22px rgba(7, 20, 33, 0.05);
}

/* V55 refined mobile menu */
@media (max-width: 900px) {
  .cc-v3 .cc-nav {
    z-index: 60;
    min-height: 72px;
    border-bottom-color: rgba(190, 210, 235, 0.22);
    background: rgba(255, 255, 255, 0.84);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.9),
      0 12px 30px rgba(7, 20, 33, 0.035);
  }

  .cc-mobile-toggle {
    position: relative;
    width: 44px;
    height: 44px;
    gap: 0;
    overflow: hidden;
    border-color: rgba(190, 210, 235, 0.42);
    background: rgba(255, 255, 255, 0.76);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    transition:
      border-color 240ms ease,
      background 240ms ease,
      box-shadow 240ms ease;
  }

  .cc-mobile-toggle span:not(.cc-sr-only) {
    position: absolute;
    left: 13px;
    width: 18px;
    height: 1.6px;
    background: rgba(11, 23, 48, 0.86);
    transition:
      transform 260ms ease,
      opacity 180ms ease,
      top 260ms ease;
  }

  .cc-mobile-toggle span:not(.cc-sr-only):nth-child(1) {
    top: 15px;
  }

  .cc-mobile-toggle span:not(.cc-sr-only):nth-child(2) {
    top: 21px;
  }

  .cc-mobile-toggle span:not(.cc-sr-only):nth-child(3) {
    top: 27px;
  }

  .cc-mobile-toggle[aria-expanded="true"] {
    border-color: rgba(150, 184, 220, 0.62);
    background: rgba(255, 255, 255, 0.94);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 1),
      0 12px 28px rgba(7, 20, 33, 0.07);
  }

  .cc-mobile-toggle[aria-expanded="true"] span:not(.cc-sr-only):nth-child(1) {
    top: 21px;
    transform: rotate(45deg);
  }

  .cc-mobile-toggle[aria-expanded="true"] span:not(.cc-sr-only):nth-child(2) {
    opacity: 0;
    transform: translateX(7px);
  }

  .cc-mobile-toggle[aria-expanded="true"] span:not(.cc-sr-only):nth-child(3) {
    top: 21px;
    transform: rotate(-45deg);
  }

  .cc-mobile-menu {
    position: fixed;
    top: 82px;
    left: 14px;
    right: 14px;
    z-index: 55;
    border: 1px solid rgba(190, 210, 235, 0.4);
    border-radius: 28px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.95),
      0 22px 60px rgba(7, 20, 33, 0.11);
    backdrop-filter: blur(28px) saturate(1.12);
    -webkit-backdrop-filter: blur(28px) saturate(1.12);
  }

  .cc-mobile-menu:not([hidden]) {
    display: grid;
    gap: 6px;
  }

  .cc-mobile-menu > a:not(.cc-button) {
    min-height: 50px;
    border: 0;
    border-radius: 18px;
    padding: 0 14px;
    color: rgba(11, 23, 48, 0.78);
    background: rgba(255, 255, 255, 0.45);
    font-size: 13px;
    font-weight: 950;
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }

  .cc-mobile-menu > a:not(.cc-button):active {
    background: rgba(235, 244, 252, 0.72);
  }

  .cc-mobile-menu .cc-lang-switch {
    width: 100%;
    justify-content: space-between;
    margin: 8px 0 4px;
    padding: 5px;
    background: rgba(244, 248, 252, 0.72);
  }

  .cc-mobile-menu .cc-lang-switch button {
    flex: 1;
    height: 38px;
  }

  .cc-mobile-menu .cc-button {
    margin-top: 4px;
    min-height: 52px;
    border-radius: 18px;
  }

  body.cc-menu-open {
    overflow: hidden;
  }

  body.cc-menu-open::after {
    content: "";
    position: fixed;
    inset: 72px 0 0;
    z-index: 50;
    background:
      linear-gradient(180deg, rgba(247, 250, 252, 0.72), rgba(247, 250, 252, 0.24)),
      rgba(8, 22, 37, 0.035);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    pointer-events: none;
  }
}
