@import url("https://fonts.googleapis.com/css2?family=Instrument+Sans:wght@400;500;600;700&family=Space+Grotesk:wght@500;600;700&display=swap");

:root {
  --ink: #061a3a;
  --ink-soft: #38506d;
  --navy: #041e42;
  --blue: #0b64d8;
  --cyan: #00b8d9;
  --cyan-soft: #dff8fc;
  --mist: #eef5f8;
  --porcelain: #f8fbfc;
  --white: #ffffff;
  --line: rgba(8, 52, 89, 0.13);
  --glass: rgba(255, 255, 255, 0.72);
  --glass-strong: rgba(255, 255, 255, 0.9);
  --shadow-sm: 0 12px 34px rgba(8, 42, 73, 0.08);
  --shadow-lg: 0 34px 90px rgba(8, 42, 73, 0.14);
  --radius-sm: 14px;
  --radius: 24px;
  --radius-lg: 38px;
  --container: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(rgba(8, 52, 89, 0.033) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8, 52, 89, 0.033) 1px, transparent 1px),
    radial-gradient(circle at 10% 6%, rgba(0, 184, 217, 0.12), transparent 28rem),
    var(--porcelain);
  background-size: 56px 56px, 56px 56px, auto, auto;
  font-family: "Instrument Sans", sans-serif;
  line-height: 1.65;
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 88% 42%, rgba(11, 100, 216, 0.08), transparent 24rem);
  z-index: -1;
}

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

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: -5rem;
  z-index: 1000;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: var(--navy);
  color: var(--white);
  text-decoration: none;
}

.skip-link:focus {
  top: 1rem;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 96px 0;
}

.section-tight {
  padding: 64px 0;
}

.section-navy {
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 78% 22%, rgba(0, 184, 217, 0.2), transparent 26rem),
    linear-gradient(135deg, #031a3a 0%, #072957 100%);
}

.section-mist {
  background: rgba(231, 241, 245, 0.72);
  border-block: 1px solid rgba(8, 52, 89, 0.06);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(280px, 0.4fr);
  gap: 3rem;
  align-items: end;
  margin-bottom: 42px;
}

.section-head > p {
  max-width: 540px;
  margin: 0 0 0 auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0 0 1rem;
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
}

.section-navy .eyebrow,
.hero .eyebrow {
  color: #8eeeff;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

h1 {
  max-width: 980px;
  font-size: clamp(3.15rem, 7vw, 6.9rem);
}

h2 {
  font-size: clamp(2.3rem, 4.6vw, 4.6rem);
}

h3 {
  font-size: clamp(1.3rem, 2vw, 1.75rem);
}

p {
  color: var(--ink-soft);
}

.section-navy p,
.hero p {
  color: rgba(255, 255, 255, 0.78);
}

.lede {
  max-width: 760px;
  margin: 1.5rem 0 0;
  font-size: clamp(1.08rem, 1.7vw, 1.35rem);
}

.utility-bar {
  color: rgba(255, 255, 255, 0.82);
  background: var(--navy);
  font-size: 0.76rem;
  letter-spacing: 0.04em;
}

.utility-inner {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 8px 0;
}

.utility-group {
  display: flex;
  gap: 1.35rem;
}

.utility-bar a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 12px 0;
  border-bottom: 1px solid rgba(8, 52, 89, 0.08);
  background: rgba(248, 251, 252, 0.76);
  backdrop-filter: blur(22px) saturate(150%);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  color: var(--navy);
  text-decoration: none;
}

.brand-horizontal {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  height: 50px;
}

.brand-mark,
.brand-wordmark {
  display: block;
  flex: 0 0 auto;
  background-image: url("../images/upone-health-logo.png?v=20260725.1");
  background-repeat: no-repeat;
}

.brand-mark {
  width: 44px;
  height: 50px;
  background-position: center top;
  background-size: 44px auto;
}

.brand-wordmark {
  width: 112px;
  height: 46px;
  background-position: center -126px;
  background-size: 112px auto;
}

.brand img.brand-lockup {
  display: block;
  width: auto;
  height: 150px;
  object-fit: contain;
}

.brand-copy {
  display: grid;
  line-height: 1;
}

.brand-copy strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.1rem;
  letter-spacing: -0.03em;
}

.brand-copy span {
  margin-top: 0.32rem;
  color: #587089;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.site-nav > a {
  padding: 0.65rem 0.72rem;
  border-radius: 999px;
  color: #1d3858;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 180ms ease, background 180ms ease;
}

.site-nav > a:hover,
.site-nav > a[aria-current="page"] {
  color: var(--blue);
  background: rgba(11, 100, 216, 0.08);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--navy);
  background: var(--glass);
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  content: "";
  display: block;
  width: 18px;
  height: 1.5px;
  margin: 4px auto;
  background: currentColor;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.78rem 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(5, 38, 76, 0.12);
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
  backdrop-filter: blur(18px) saturate(160%);
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(5, 38, 76, 0.18);
}

.button-primary {
  border-color: rgba(0, 184, 217, 0.58);
  color: var(--white);
  background: linear-gradient(135deg, rgba(7, 82, 177, 0.94), rgba(0, 184, 217, 0.9));
}

.button-glass {
  border-color: rgba(8, 52, 89, 0.14);
  color: var(--navy);
  background: rgba(255, 255, 255, 0.68);
}

.button-light {
  color: var(--navy);
  background: rgba(255, 255, 255, 0.9);
}

.button-text {
  min-height: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  color: var(--blue);
  background: none;
  backdrop-filter: none;
}

.button-text::after {
  content: ">";
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 760px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(3, 24, 54, 0.98) 0%, rgba(3, 29, 64, 0.92) 38%, rgba(3, 29, 64, 0.36) 68%, rgba(3, 29, 64, 0.06) 100%),
    url("../images/upone-clinic-hero.png?v=20260725.1") center / cover no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background:
    linear-gradient(rgba(133, 233, 255, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(133, 233, 255, 0.18) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: linear-gradient(90deg, #000, transparent 72%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 760px;
  align-content: center;
  padding: 120px 0 100px;
}

.hero h1 {
  max-width: 860px;
}

.hero .lede {
  max-width: 660px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.hero-signals {
  display: grid;
  max-width: 780px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 3.3rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.2);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(22px);
}

.signal {
  padding: 1.15rem;
  background: rgba(4, 31, 67, 0.52);
}

.signal strong {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.25rem;
}

.signal span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.79rem;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 112px 0 86px;
  color: var(--white);
  background:
    radial-gradient(circle at 82% 18%, rgba(0, 184, 217, 0.25), transparent 24rem),
    linear-gradient(135deg, #031a3a 0%, #073369 100%);
}

.page-hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
  width: 460px;
  height: 460px;
  right: -120px;
  bottom: -250px;
  border: 1px solid rgba(125, 226, 246, 0.22);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(125, 226, 246, 0.04), 0 0 0 140px rgba(125, 226, 246, 0.03);
}

.page-hero h1 {
  max-width: 1040px;
  font-size: clamp(3rem, 6.6vw, 6.4rem);
}

.page-hero .lede {
  color: rgba(255, 255, 255, 0.75);
}

.breadcrumb {
  margin-bottom: 2.4rem;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.breadcrumb a {
  color: #8eeeff;
  text-decoration: none;
}

.trust-strip {
  margin-top: -34px;
  position: relative;
  z-index: 4;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: var(--radius);
  background: var(--glass-strong);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(24px);
}

.trust-item {
  min-height: 110px;
  padding: 1.25rem;
  border-right: 1px solid var(--line);
}

.trust-item:last-child {
  border-right: 0;
}

.trust-item strong {
  display: block;
  color: var(--navy);
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.1rem;
}

.trust-item span {
  color: #5f7489;
  font-size: 0.84rem;
}

.trust-item.review-proof {
  display: block;
  color: inherit;
  text-decoration: none;
  transition: background 180ms ease, transform 180ms ease;
}

.trust-item.review-proof:hover {
  background: rgba(255, 255, 255, 0.52);
  transform: translateY(-2px);
}

.trust-item.review-proof:focus-visible {
  outline: 3px solid rgba(11, 100, 216, 0.34);
  outline-offset: -4px;
}

.trust-item .review-stars {
  display: block;
  margin-bottom: 0.42rem;
  color: #e9a900;
  font-size: 0.92rem;
  line-height: 1;
  letter-spacing: 0.08em;
}

.glass-panel,
.card {
  border: 1px solid rgba(255, 255, 255, 0.76);
  background: var(--glass);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(20px) saturate(145%);
}

.glass-panel {
  border-radius: var(--radius-lg);
}

.card {
  border-radius: var(--radius);
}

.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 1.2rem;
}

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

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

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

.feature-card,
.service-card,
.value-card,
.article-card,
.team-card {
  position: relative;
  overflow: hidden;
  padding: 1.55rem;
}

.feature-card {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 0;
  color: var(--white);
  background:
    radial-gradient(circle at 90% 0%, rgba(0, 184, 217, 0.32), transparent 15rem),
    linear-gradient(145deg, #052657, #083f7e);
}

.feature-card:nth-child(2) {
  background:
    radial-gradient(circle at 90% 0%, rgba(64, 198, 255, 0.26), transparent 15rem),
    linear-gradient(145deg, #05223f, #0a5577);
}

.feature-card:nth-child(3) {
  background:
    radial-gradient(circle at 90% 0%, rgba(119, 235, 210, 0.25), transparent 15rem),
    linear-gradient(145deg, #05253c, #0b5a67);
}

.feature-card p {
  color: rgba(255, 255, 255, 0.74);
}

.feature-card > div {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  padding: 1.55rem;
}

.feature-card .button {
  margin-top: auto;
}

.feature-media {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.86) contrast(1.03);
}

.card-index,
.service-code {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  color: #a9f2ff;
  font-family: "Space Grotesk", sans-serif;
}

.feature-card .card-index {
  position: absolute;
  z-index: 2;
  top: 1rem;
  left: 1rem;
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(3, 26, 58, 0.62);
  backdrop-filter: blur(14px);
}

.service-card {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.74);
}

.service-card::after {
  content: "";
  position: absolute;
  width: 130px;
  height: 130px;
  right: -80px;
  top: -70px;
  border-radius: 50%;
  background: rgba(0, 184, 217, 0.08);
}

.service-card h3 {
  margin-top: 1.8rem;
}

.service-card p {
  flex: 1;
}

.service-gallery {
  align-items: stretch;
}

.service-card-visual {
  min-height: 450px;
  padding: 0;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(241, 249, 252, 0.82));
  transition:
    transform 420ms cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 420ms ease,
    border-color 420ms ease;
}

.service-card-visual::after {
  display: none;
}

.service-card-visual:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 184, 217, 0.34);
  box-shadow: 0 26px 64px rgba(9, 37, 69, 0.15);
}

.service-photo {
  position: relative;
  height: 205px;
  overflow: hidden;
  isolation: isolate;
  background: #dcecf2;
}

.service-photo::before,
.service-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.service-photo::before {
  background:
    linear-gradient(180deg, transparent 44%, rgba(5, 31, 62, 0.3) 100%),
    linear-gradient(120deg, rgba(0, 184, 217, 0.08), transparent 56%);
}

.service-photo::after {
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 184, 217, 0.55), transparent);
}

.service-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.9) contrast(1.02);
  transition:
    transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1),
    filter 500ms ease;
}

.service-card-visual:hover .service-photo img {
  transform: scale(1.055);
  filter: saturate(1) contrast(1.035);
}

.service-photo-iv img {
  object-position: center 42%;
}

.service-photo-student img {
  object-position: center 38%;
}

.service-photo .service-code {
  position: absolute;
  left: 1.35rem;
  bottom: 1.15rem;
  z-index: 2;
  display: grid;
  place-items: center;
  min-width: 48px;
  height: 48px;
  padding: 0 0.8rem;
  color: var(--navy);
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 10px 30px rgba(5, 31, 62, 0.18);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.service-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1.5rem 1.6rem 1.65rem;
}

.service-card-body h3 {
  margin: 0 0 0.72rem;
}

.service-card-body p {
  margin-bottom: 1.1rem;
}

.service-card-body .button-text {
  align-self: flex-start;
}

.service-code {
  border-color: rgba(11, 100, 216, 0.18);
  color: var(--blue);
  background: var(--cyan-soft);
}

.bento {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.2rem;
}

.bento-main,
.bento-side {
  padding: clamp(1.5rem, 4vw, 3.2rem);
}

.bento-side {
  position: relative;
  isolation: isolate;
  min-height: 620px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(3, 26, 58, 0.9) 0%, rgba(3, 34, 68, 0.72) 48%, rgba(3, 31, 62, 0.18) 74%, rgba(3, 28, 58, 0.54) 100%),
    linear-gradient(90deg, rgba(3, 27, 59, 0.98) 0%, rgba(3, 37, 73, 0.82) 48%, rgba(3, 40, 73, 0.2) 100%),
    url("../images/patient-access-phone.png?v=20260725.1") 58% center / cover no-repeat;
  box-shadow: 0 28px 70px rgba(4, 33, 70, 0.2);
}

.bento-side::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: auto -20% -22% 16%;
  height: 52%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 184, 217, 0.22), transparent 68%);
  filter: blur(8px);
  pointer-events: none;
}

.bento-side > * {
  position: relative;
  z-index: 1;
}

.bento-side h3 {
  max-width: 11ch;
  margin-bottom: 2rem;
  font-size: clamp(2.6rem, 3.3vw, 3.8rem);
  line-height: 1;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.bento-side .clean-list {
  max-width: 92%;
  display: grid;
  gap: 0.7rem;
  font-size: clamp(1.05rem, 1.2vw, 1.2rem);
  line-height: 1.45;
}

.bento-side .button {
  margin-top: auto;
  font-size: 1rem;
}

.bento-side p {
  color: rgba(255, 255, 255, 0.72);
}

.photo-break {
  position: relative;
  z-index: 4;
  margin-top: -40px;
}

.editorial-frame {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-lg);
}

.editorial-frame img {
  width: 100%;
  height: clamp(360px, 52vw, 650px);
  object-fit: cover;
}

.editorial-frame figcaption {
  position: absolute;
  right: 1.1rem;
  bottom: 1.1rem;
  max-width: 420px;
  padding: 0.72rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 999px;
  color: var(--white);
  background: rgba(3, 26, 58, 0.7);
  font-size: 0.78rem;
  font-weight: 600;
  backdrop-filter: blur(16px);
}

.media-story {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.media-story img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

.media-story-copy {
  padding: 1.35rem;
}

.media-story-copy p {
  margin-bottom: 0;
}

.check-list,
.clean-list,
.symptom-list {
  margin: 1.4rem 0 0;
  padding: 0;
  list-style: none;
}

.check-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem 1.5rem;
}

.check-list li,
.clean-list li,
.symptom-list li {
  position: relative;
  padding-left: 1.5rem;
  color: var(--ink-soft);
}

.section-navy .check-list li,
.bento-side .clean-list li {
  color: rgba(255, 255, 255, 0.78);
}

.check-list li::before,
.clean-list li::before,
.symptom-list li::before {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  left: 0;
  top: 0.56rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  box-shadow: 0 0 0 5px rgba(0, 184, 217, 0.1);
}

.steps {
  counter-reset: step;
}

.step {
  position: relative;
  padding: 1.4rem 1.4rem 1.4rem 5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.step::before {
  counter-increment: step;
  content: "0" counter(step);
  position: absolute;
  left: 0;
  top: 1.18rem;
  color: #8eeeff;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.35rem;
}

.step p {
  margin-bottom: 0;
}

.program-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.42fr) minmax(0, 0.58fr);
  gap: 4rem;
  align-items: start;
}

.program-sticky {
  position: sticky;
  top: 110px;
}

.program-sticky .glass-panel {
  padding: 2rem;
}

.content-stack {
  display: grid;
  gap: 1.2rem;
}

.content-card {
  padding: clamp(1.4rem, 3vw, 2.3rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-sm);
}

.content-card h3 + p {
  margin-top: 0.8rem;
}

.symptom-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem 1.2rem;
}

.number-list {
  display: grid;
  gap: 1rem;
  margin-top: 1.4rem;
}

.number-item {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 1rem;
}

.number-item strong:first-child {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--blue);
  background: var(--cyan-soft);
  font-family: "Space Grotesk", sans-serif;
}

.number-item p {
  margin: 0.2rem 0 0;
}

.price-panel {
  padding: clamp(1.8rem, 4vw, 3.2rem);
  color: var(--white);
  background:
    radial-gradient(circle at 88% 18%, rgba(0, 184, 217, 0.3), transparent 16rem),
    linear-gradient(145deg, #031a3a, #084b7d);
}

.price {
  margin: 1.2rem 0 0.25rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(3rem, 6vw, 5.8rem);
  line-height: 1;
}

.price-panel p {
  color: rgba(255, 255, 255, 0.74);
}

.specialty-list {
  display: grid;
  gap: 1rem;
}

.specialty {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.77);
  box-shadow: var(--shadow-sm);
}

.specialty summary {
  display: grid;
  grid-template-columns: 52px 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1.25rem;
  list-style: none;
  cursor: pointer;
}

.specialty summary::-webkit-details-marker {
  display: none;
}

.specialty summary::after {
  content: "+";
  color: var(--blue);
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.8rem;
}

.specialty[open] summary::after {
  content: "-";
}

.specialty .service-code {
  flex: 0 0 auto;
}

.specialty-body {
  padding: 0 1.25rem 1.5rem 5.5rem;
}

.specialty-services {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.6rem 1.2rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.specialty-services li {
  padding-bottom: 0.55rem;
  border-bottom: 1px solid rgba(8, 52, 89, 0.08);
  color: var(--ink-soft);
}

.team-card {
  min-height: 330px;
  display: flex;
  flex-direction: column;
}

.avatar {
  display: grid;
  width: 78px;
  height: 78px;
  place-items: center;
  border: 1px solid rgba(11, 100, 216, 0.18);
  border-radius: 50%;
  color: var(--blue);
  background:
    radial-gradient(circle at 30% 25%, #fff, transparent 50%),
    linear-gradient(135deg, var(--cyan-soft), #dbe9ff);
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.4rem;
  box-shadow: inset 0 0 0 8px rgba(255, 255, 255, 0.52);
}

.team-card h3 {
  margin-top: 1.5rem;
}

.team-card .role {
  margin: 0.4rem 0 0;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.team-card .button-text {
  margin-top: auto;
  align-self: flex-start;
}

.article-card {
  min-height: 310px;
  display: flex;
  flex-direction: column;
}

.article-meta {
  color: var(--blue);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.article-card h3 {
  margin-top: 1rem;
}

.article-card .button-text {
  margin-top: auto;
  align-self: flex-start;
}

.notice {
  padding: 1rem 1.2rem;
  border: 1px solid rgba(11, 100, 216, 0.16);
  border-radius: var(--radius-sm);
  color: #36526c;
  background: rgba(223, 248, 252, 0.7);
  font-size: 0.88rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.42fr) minmax(0, 0.58fr);
  gap: 1.2rem;
}

.contact-card {
  padding: clamp(1.5rem, 4vw, 3rem);
}

.contact-card-dark {
  color: var(--white);
  background:
    radial-gradient(circle at 90% 10%, rgba(0, 184, 217, 0.28), transparent 16rem),
    linear-gradient(145deg, #031a3a, #073f72);
}

.contact-card-dark p,
.contact-card-dark a {
  color: rgba(255, 255, 255, 0.78);
}

.contact-list {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.contact-row {
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.contact-row span {
  display: block;
  color: #8eeeff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.contact-row strong,
.contact-row a {
  display: inline-block;
  margin-top: 0.2rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.15rem;
  text-decoration: none;
}

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

.field {
  display: grid;
  gap: 0.45rem;
}

.field-full {
  grid-column: 1 / -1;
}

.field label {
  color: #34516c;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 50px;
  padding: 0.8rem 0.9rem;
  border: 1px solid rgba(8, 52, 89, 0.14);
  border-radius: 13px;
  outline: none;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.76);
}

.field textarea {
  min-height: 118px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 4px rgba(0, 184, 217, 0.12);
}

.cta-band {
  position: relative;
  overflow: hidden;
  padding: clamp(2rem, 5vw, 4.6rem);
  color: var(--white);
  background:
    radial-gradient(circle at 88% 20%, rgba(0, 184, 217, 0.35), transparent 20rem),
    linear-gradient(135deg, #031a3a, #07539a);
}

.cta-band::after {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  right: -180px;
  top: -190px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
}

.cta-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
}

.cta-band h2 {
  max-width: 820px;
}

.cta-band p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.72);
}

.site-footer {
  padding: 72px 0 28px;
  color: rgba(255, 255, 255, 0.72);
  background: #02152f;
}

.insurance-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 16%, rgba(0, 184, 217, 0.1), transparent 28%),
    radial-gradient(circle at 88% 82%, rgba(89, 142, 230, 0.1), transparent 28%),
    linear-gradient(180deg, #f7fbfd, #edf6f9);
}

.insurance-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(8, 45, 79, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8, 45, 79, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 82%, transparent);
}

.insurance-shell {
  position: relative;
  z-index: 1;
  padding: clamp(2rem, 5vw, 4.5rem);
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 38px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 30px 80px rgba(8, 45, 79, 0.1);
  backdrop-filter: blur(24px) saturate(135%);
  -webkit-backdrop-filter: blur(24px) saturate(135%);
}

.insurance-copy {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: end;
}

.insurance-copy h2 {
  max-width: 11ch;
  margin-bottom: 0;
}

.insurance-intro {
  max-width: 560px;
}

.insurance-intro p {
  margin-bottom: 1.35rem;
}

.insurance-logo-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: clamp(2.5rem, 6vw, 4.5rem);
}

.insurance-logo {
  min-height: 104px;
  display: grid;
  place-items: center;
  padding: 1.1rem;
  border: 1px solid rgba(8, 45, 79, 0.1);
  border-radius: 20px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(236, 246, 250, 0.72));
  box-shadow: 0 14px 34px rgba(8, 45, 79, 0.07);
  transition:
    transform 320ms ease,
    border-color 320ms ease,
    box-shadow 320ms ease;
}

.insurance-logo img {
  max-width: 100%;
  height: auto;
  filter: grayscale(1);
  opacity: 0.68;
  transition:
    filter 320ms ease,
    opacity 320ms ease,
    transform 320ms ease;
}

.insurance-logo:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 184, 217, 0.32);
  box-shadow: 0 22px 46px rgba(8, 45, 79, 0.12);
}

.insurance-logo:hover img {
  filter: grayscale(0);
  opacity: 1;
  transform: scale(1.04);
}

.insurance-note {
  max-width: 1020px;
  margin: 1.45rem auto 0;
  color: #62778c;
  font-size: 0.78rem;
  line-height: 1.65;
  text-align: center;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 0.7fr);
  gap: 3rem;
}

.site-footer .brand-footer {
  width: fit-content;
  padding: 1rem 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.16);
}

.site-footer .brand-copy span {
  color: rgba(255, 255, 255, 0.54);
}

.footer-intro {
  max-width: 360px;
}

.footer-intro p {
  color: rgba(255, 255, 255, 0.58);
}

.footer-col h3 {
  margin-bottom: 1rem;
  color: #8eeeff;
  font-family: "Instrument Sans", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-col a,
.footer-col span {
  display: block;
  margin: 0.46rem 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  text-decoration: none;
}

.footer-col a:hover {
  color: var(--white);
}

.footer-base {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  margin-top: 3.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.44);
  font-size: 0.78rem;
}

dialog {
  width: min(720px, calc(100% - 24px));
  max-height: calc(100vh - 32px);
  padding: 0;
  overflow: auto;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: var(--radius-lg);
  color: var(--ink);
  background: rgba(248, 251, 252, 0.94);
  box-shadow: 0 40px 120px rgba(0, 20, 46, 0.34);
  backdrop-filter: blur(26px);
}

dialog::backdrop {
  background: rgba(1, 16, 35, 0.62);
  backdrop-filter: blur(5px);
}

.dialog-inner {
  padding: clamp(1.4rem, 4vw, 2.5rem);
}

.dialog-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.dialog-close {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--navy);
  background: var(--white);
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 680ms ease, transform 680ms cubic-bezier(0.2, 0.72, 0.2, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1080px) {
  .site-nav {
    position: fixed;
    inset: 77px 20px auto;
    display: none;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: var(--radius);
    background: rgba(248, 251, 252, 0.96);
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(22px);
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav > a {
    padding: 0.75rem 0.9rem;
  }

  .menu-toggle {
    display: inline-block;
  }

  .nav-actions > .button {
    display: none;
  }

  .section-head,
  .program-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .program-sticky {
    position: static;
  }

  .section-head > p {
    margin-left: 0;
  }

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

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

@media (max-width: 760px) {
  .utility-bar {
    display: none;
  }

  .container {
    width: min(100% - 28px, var(--container));
  }

  .section {
    padding: 72px 0;
  }

  .hero,
  .hero-inner {
    min-height: 720px;
  }

  .hero {
    background:
      linear-gradient(180deg, rgba(3, 24, 54, 0.94) 0%, rgba(3, 29, 64, 0.88) 62%, rgba(3, 29, 64, 0.45) 100%),
      url("../images/upone-clinic-hero.png?v=20260725.1") 63% center / cover no-repeat;
  }

  h1 {
    font-size: clamp(2.8rem, 13vw, 4.5rem);
  }

  h2 {
    font-size: clamp(2.15rem, 9vw, 3.3rem);
  }

  .hero-signals,
  .trust-grid,
  .grid-2,
  .grid-3,
  .grid-4,
  .bento,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .signal,
  .trust-item {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .signal:last-child,
  .trust-item:last-child {
    border-bottom: 0;
  }

  .check-list,
  .symptom-list,
  .specialty-services,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .field-full {
    grid-column: auto;
  }

  .specialty-body {
    padding-left: 1.25rem;
  }

  .cta-grid {
    grid-template-columns: 1fr;
  }

  .footer-base {
    display: grid;
  }

  .brand-copy span {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

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

/*
 * Pale cards on dark-blue sections use the surrounding blue palette as their
 * lettering. This lives in the primary stylesheet so it cannot be skipped by
 * a missing page-specific stylesheet on either desktop or mobile.
 */
.section-navy .content-card h1,
.section-navy .content-card h2,
.section-navy .content-card h3,
.section-navy .content-card h4,
.section-navy .content-card p,
.section-navy .content-card li,
.section-navy .content-card span,
.section-navy .content-card strong,
.section-navy .content-card small,
.section-navy .content-card a {
  color: #0a365f !important;
  -webkit-text-fill-color: #0a365f !important;
}

@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  .section-navy .content-card h1,
  .section-navy .content-card h2,
  .section-navy .content-card h3,
  .section-navy .content-card h4,
  .section-navy .content-card p,
  .section-navy .content-card li,
  .section-navy .content-card span,
  .section-navy .content-card strong,
  .section-navy .content-card small,
  .section-navy .content-card a {
    background: linear-gradient(105deg, #147fac 0%, #0a5583 48%, #062c55 100%) !important;
    background-size: 100% 100% !important;
    background-repeat: no-repeat !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    color: transparent !important;
    -webkit-text-fill-color: transparent !important;
  }
}

/* One-time logo shimmer on page load. The duplicate inherits each cropped logo
   background, so the highlight remains confined to the actual logo artwork. */
.brand-header .brand-mark,
.brand-header .brand-wordmark {
  position: relative;
  overflow: hidden;
}

.brand-header .brand-mark::after,
.brand-header .brand-wordmark::after {
  position: absolute;
  inset: 0;
  background: inherit;
  clip-path: polygon(0 0, 30% 0, 58% 100%, 26% 100%);
  content: "";
  filter: brightness(1.85) saturate(0.72);
  opacity: 0.88;
  pointer-events: none;
  transform: translateX(-190%);
  animation: upone-logo-shimmer 920ms cubic-bezier(0.22, 0.72, 0.24, 1) 460ms 1 both;
}

.brand-header .brand-wordmark::after {
  animation-delay: 540ms;
}

@keyframes upone-logo-shimmer {
  0% { transform: translateX(-190%); }
  100% { transform: translateX(260%); }
}

@media (prefers-reduced-motion: reduce) {
  .brand-header .brand-mark::after,
  .brand-header .brand-wordmark::after {
    display: none;
    animation: none;
  }
}