/* ==========================================================================
   CARESTOP INDIA — Design System
   Theme: Baby Blue / Clinical Calm. Light only. No dark mode.
   ========================================================================== */

/* ---------- 1. Tokens ---------------------------------------------------- */
:root {
  /* Baby blue ramp — cooler, deeper at the top end so text can sit on it */
  --sky-50:  #f6fbff;
  --sky-100: #e9f4ff;
  --sky-200: #d2e8fb;
  --sky-300: #aed6f6;
  --sky-400: #82c0ee;
  --sky-500: #52a3e0;
  --sky-600: #2f83c6;
  --sky-700: #1d6499;
  --sky-800: #144b74;
  --sky-900: #0f3a5a;

  /* Supporting hues */
  --mint-200: #d2f2ea;
  --mint-500: #45c0a8;
  --mint-700: #23806e;
  --sand-100: #fdf3e2;
  --sand-500: #dc9f36;
  --sand-700: #8f6210;
  --rose-100: #fdedef;
  --rose-600: #bd4d63;

  /* Ink — deeper for contrast against pale surfaces */
  --ink:        #0c1f33;
  --ink-soft:   #385171;
  --ink-muted:  #5f7995;
  --ink-faint:  #8ba3ba;

  /* Surfaces */
  --canvas:     #f3f9ff;
  --surface:    #ffffff;
  --surface-2:  #f8fcff;
  --line:       #dbeaf7;
  --line-soft:  #eaf3fb;

  /* Elevation — low, wide and blue-tinted; nothing harsh */
  --sh-xs: 0 1px 2px rgba(12, 52, 90, .05);
  --sh-sm: 0 2px 8px rgba(12, 52, 90, .06), 0 1px 2px rgba(12, 52, 90, .04);
  --sh-md: 0 12px 28px -10px rgba(15, 74, 116, .17), 0 2px 6px rgba(15, 74, 116, .06);
  --sh-lg: 0 28px 56px -22px rgba(15, 74, 116, .28), 0 6px 16px rgba(15, 74, 116, .07);
  --sh-xl: 0 48px 90px -34px rgba(15, 74, 116, .36), 0 12px 28px rgba(15, 74, 116, .09);
  --ring:  0 0 0 4px rgba(82, 163, 224, .3);

  /* Geometry */
  --r-xs: 8px;
  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 24px;
  --r-xl: 32px;
  --r-pill: 999px;

  --wrap: 1240px;
  --wrap-narrow: 860px;
  --gut: clamp(24px, 5.2vw, 56px);

  --ease: cubic-bezier(.22, .61, .36, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);

  /* Editorial serif for display, humanist sans for everything operational */
  --font-display: 'Newsreader', 'Iowan Old Style', Georgia, 'Times New Roman', serif;
  --font-ui: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --font-body: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --nav-h: 82px;
}/* ---------- 2. Reset ----------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }* { margin: 0; }html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 20px); }/* clip, not hidden: hidden would make body a scroll container and kill
   position:sticky everywhere (pinned gallery, journey media, table headers). */
html, body { overflow-x: clip; }body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--canvas);
  line-height: 1.7;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}img, svg, video { display: block; max-width: 100%; }img { height: auto; }a { color: inherit; text-decoration: none; }button, input, select, textarea { font: inherit; color: inherit; }button { background: none; border: 0; cursor: pointer; }ul, ol { list-style: none; padding: 0; }:focus-visible { outline: 3px solid var(--sky-500); outline-offset: 3px; border-radius: 6px; }::selection { background: var(--sky-200); color: var(--ink); }/* Display serif carries the voice; small headings stay in the UI sans where
   a serif would get muddy at 15–18px. */
h1, h2{
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -.018em;
  color: var(--ink);
  text-wrap: balance;
  font-optical-sizing: auto;
}h3, h4, h5, .h-sm {
  font-family: var(--font-ui);
  font-weight: 700;
  line-height: 1.22;
  letter-spacing: -.014em;
  color: var(--ink);
  text-wrap: balance;
}em{ font-family: var(--font-display); font-style: italic; font-weight: 500; }p { text-wrap: pretty; }/* Scrollbar */
::-webkit-scrollbar { width: 12px; height: 12px; }::-webkit-scrollbar-track { background: var(--sky-50); }::-webkit-scrollbar-thumb { background: var(--sky-300); border-radius: 99px; border: 3px solid var(--sky-50); }::-webkit-scrollbar-thumb:hover { background: var(--sky-400); }/* ---------- 3. Layout helpers ------------------------------------------- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gut); }.wrap-narrow { max-width: var(--wrap-narrow); }main { flex: 1 0 auto; }.stack > * + * { margin-top: var(--sp, 18px); }.grid { display: grid; gap: clamp(18px, 2.4vw, 30px); }.g2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }.g-form { grid-template-columns: 1.35fr .95fr; }.g3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }.g4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }.center { text-align: center; }@media (max-width: 980px) {.g4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }.g3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}@media (max-width: 900px) {.g-form { grid-template-columns: minmax(0, 1fr); }
}@media (max-width: 640px) {.g2, .g3, .g4 { grid-template-columns: minmax(0, 1fr); }
}
@keyframes pulse-dot { 0%,100% { box-shadow: 0 0 0 0 rgba(90,171,232,.45); } 50% { box-shadow: 0 0 0 7px rgba(90,171,232,0); } }.h-sm { font-size: clamp(1.08rem, 1.5vw, 1.28rem); }.lede { font-size: clamp(1.03rem, 1.35vw, 1.22rem); color: var(--ink-soft); line-height: 1.72; }.muted { color: var(--ink-muted); }.small { font-size: .88rem; }.tiny { font-size: .78rem; }.mono-num { font-variant-numeric: tabular-nums; font-feature-settings: "tnum"; }.grad-text {
  background: linear-gradient(104deg, var(--sky-600) 4%, var(--sky-400) 48%, var(--mint-500) 96%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}/* Highlight rule sits behind the text as a background so the phrase can wrap
   on narrow screens instead of forcing the page wider. */
.underline-sweep {
  display: inline;
  background-image: linear-gradient(90deg, var(--sky-200), var(--mint-200));
  background-repeat: no-repeat;
  background-position: 0 92%;
  background-size: 100% .26em;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}/* ---------- 5. Buttons --------------------------------------------------- */
.btn {
  --btn-bg: var(--sky-700);
  --btn-fg: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-ui); font-weight: 700; font-size: .93rem; letter-spacing: -.01em;
  padding: 14px 26px; border-radius: var(--r-pill);
  background: var(--btn-bg); color: var(--btn-fg);
  border: 1px solid transparent;
  box-shadow: 0 10px 22px -10px rgba(34, 111, 172, .65);
  transition: transform .32s var(--ease-out), box-shadow .32s var(--ease-out), background .25s ease, color .25s ease, border-color .25s ease;
  position: relative; overflow: hidden; isolation: isolate;
  white-space: nowrap;
}.btn::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(120deg, var(--sky-600), var(--sky-800));
  opacity: 0; transition: opacity .35s ease;
}.btn:hover { transform: translateY(-2px); box-shadow: 0 18px 34px -14px rgba(34, 111, 172, .75); }.btn:hover::after { opacity: 1; }.btn:active { transform: translateY(0); }.btn--ghost {
  --btn-bg: var(--surface); --btn-fg: var(--ink);
  border-color: var(--line); box-shadow: var(--sh-sm);
}.btn--ghost::after { background: var(--sky-50); }.btn--ghost:hover { color: var(--sky-700); border-color: var(--sky-300); box-shadow: var(--sh-md); }.btn--lg { padding: 17px 34px; font-size: 1rem; }.btn--block { width: 100%; }.btn .arw { transition: transform .35s var(--ease-out); }.btn:hover .arw { transform: translateX(4px); }.link-arrow {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--font-ui); font-weight: 700; font-size: .9rem; color: var(--sky-700);
}.link-arrow svg { transition: transform .35s var(--ease-out); }.link-arrow:hover svg { transform: translateX(4px); }/* ---------- 6. Cards ----------------------------------------------------- */
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(22px, 2.6vw, 34px);
  box-shadow: var(--sh-sm);
  transition: transform .45s var(--ease-out), box-shadow .45s var(--ease-out), border-color .35s ease;
  position: relative; overflow: hidden;
}.card--hover:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); border-color: var(--sky-200); }.card--sky { background: linear-gradient(165deg, var(--sky-50), var(--sky-100)); border-color: var(--sky-200); }.card--flat { box-shadow: none; }.card__topline {
  position: absolute; inset: 0 0 auto 0; height: 3px;
  background: linear-gradient(90deg, var(--sky-400), var(--mint-500));
  transform: scaleX(0); transform-origin: left;
  transition: transform .55s var(--ease-out);
}.card--hover:hover .card__topline { transform: scaleX(1); }.icon-badge {
  width: 54px; height: 54px; flex: none;
  display: grid; place-items: center;
  border-radius: 16px;
  background: linear-gradient(160deg, var(--sky-100), var(--sky-200));
  border: 1px solid var(--sky-200);
  color: var(--sky-700);
  font-size: 1.5rem;
  box-shadow: inset 0 1px 0 #fff;
  transition: transform .4s var(--ease-out), background .3s ease;
}.icon-badge svg { width: 26px; height: 26px; }.card--hover:hover .icon-badge { transform: scale(1.06) rotate(-3deg); }.icon-badge--mint { background: linear-gradient(160deg, #eafaf6, var(--mint-200)); border-color: var(--mint-200); color: var(--mint-700); }.icon-badge--sand { background: linear-gradient(160deg, #fefaf1, var(--sand-100)); border-color: #f4e3c2; color: var(--sand-700); }.icon-badge--sm { width: 40px; height: 40px; border-radius: 12px; font-size: 1.1rem; }.icon-badge--sm svg { width: 19px; height: 19px; }.chip {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .74rem; font-weight: 700; font-family: var(--font-display);
  letter-spacing: .05em; text-transform: uppercase;
  padding: 5px 11px; border-radius: var(--r-pill);
  background: var(--sky-100); color: var(--sky-700); border: 1px solid var(--sky-200);
}.chip--mint { background: var(--mint-200); color: var(--mint-700); border-color: #b6e8dd; }.chip--sand { background: var(--sand-100); color: var(--sand-700); border-color: #f2e0bd; }.chip--plain { background: var(--surface-2); color: var(--ink-muted); border-color: var(--line); text-transform: none; letter-spacing: 0; font-weight: 600; }/* ---------- 7. Top bar + Navigation -------------------------------------- */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 100%;
  transform: scaleX(0); transform-origin: left; z-index: 1200;
  background: linear-gradient(90deg, var(--sky-400), var(--mint-500));
  will-change: transform;
}.topbar {
  background: linear-gradient(90deg, var(--sky-700), var(--sky-600) 55%, var(--mint-700));
  color: #eaf6ff; font-size: .8rem;
  position: relative; z-index: 1100;
}.topbar__in { display: flex; align-items: center; justify-content: space-between; gap: 18px; min-height: 40px; padding-block: 7px; }.topbar a { display: inline-flex; align-items: center; gap: 7px; color: #fff; font-weight: 600; }.topbar a:hover { text-decoration: underline; text-underline-offset: 3px; }.topbar__left { display: flex; gap: 22px; align-items: center; flex-wrap: wrap; }.topbar__right { display: flex; gap: 18px; align-items: center; }.topbar svg { width: 14px; height: 14px; opacity: .9; }@media (max-width: 820px) { .topbar__right { display: none; }.topbar__in { justify-content: center; } }.nav {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid transparent;
  transition: box-shadow .35s ease, border-color .35s ease, background .35s ease;
}.nav.is-stuck { box-shadow: 0 8px 30px -18px rgba(23,84,127,.4); border-bottom-color: var(--line-soft); background: rgba(255,255,255,.93); }.nav__in { display: flex; align-items: center; justify-content: space-between; gap: 20px; min-height: var(--nav-h); }.brand { display: flex; align-items: center; gap: 13px; }.brand__mark {
  width: 42px; height: 50px; flex: none; display: block;
  filter: drop-shadow(0 6px 12px rgba(21, 85, 133, .26));
  transition: transform .5s var(--ease-out);
}.brand__mark svg { width: 100%; height: 100%; }.brand:hover .brand__mark { transform: translateY(-2px) rotate(-3deg); }.brand__name {
  font-family: var(--font-display); font-weight: 600; font-size: 1.22rem;
  letter-spacing: -.012em; line-height: 1.1; color: var(--ink); white-space: nowrap;
}.brand__sub {
  font-family: var(--font-ui); font-size: .58rem; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: var(--sky-600); white-space: nowrap;
}.brand { flex: none; }.nav__links { display: flex; align-items: center; gap: 3px; }.nav__links > li { position: relative; }.nav__links a.nav-item {
  display: flex; align-items: center; gap: 5px; white-space: nowrap;
  padding: 10px 12px; border-radius: var(--r-pill);
  font-family: var(--font-ui); font-weight: 600; font-size: .86rem; color: var(--ink-soft);
  transition: color .22s ease, background .22s ease;
}.nav__links a.nav-item:hover { color: var(--sky-700); background: var(--sky-50); }.nav__links a.nav-item.is-active { color: var(--sky-700); background: var(--sky-100); }.nav__links .caret { width: 12px; height: 12px; transition: transform .3s ease; }.nav__links li:hover .caret, .nav__links li:focus-within .caret { transform: rotate(180deg); }.dropdown {
  position: absolute; top: calc(100% + 10px); left: 50%; transform: translate(-50%, 10px);
  width: min(660px, 88vw); padding: 16px; border-radius: var(--r-lg);
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(20px);
  border: 1px solid var(--line); box-shadow: var(--sh-xl);
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 6px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .28s var(--ease), transform .28s var(--ease), visibility .28s;
}.nav__links li:hover > .dropdown, .nav__links li:focus-within > .dropdown {
  opacity: 1; visibility: visible; pointer-events: auto; transform: translate(-50%, 0);
}.dropdown::before {
  content: ""; position: absolute; top: -10px; left: 0; right: 0; height: 10px;
}.dropdown a {
  display: flex; gap: 12px; align-items: flex-start; padding: 11px 13px; border-radius: var(--r-sm);
  transition: background .2s ease, transform .2s ease;
}.dropdown a:hover { background: var(--sky-50); }.dropdown .dd-ico { font-size: 1.15rem; line-height: 1.3; width: 30px; height: 30px; display: grid; place-items: center; border-radius: 9px; background: var(--sky-100); flex: none; }.dropdown .dd-t { font-family: var(--font-ui); font-weight: 700; font-size: .87rem; line-height: 1.3; }.dropdown .dd-d { font-size: .76rem; color: var(--ink-muted); line-height: 1.45; }.dropdown__all { grid-column: 1 / -1; margin-top: 6px; padding-top: 12px; border-top: 1px solid var(--line-soft); display: flex; justify-content: space-between; align-items: center; }.nav__cta { display: flex; align-items: center; gap: 10px; }.nav__burger {
  display: none; width: 46px; height: 46px; border-radius: 13px;
  border: 1px solid var(--line); background: var(--surface); box-shadow: var(--sh-xs);
  place-items: center;
}.burger-bars { width: 20px; height: 14px; position: relative; }.burger-bars i {
  position: absolute; left: 0; height: 2px; width: 100%; border-radius: 2px; background: var(--ink);
  transition: transform .35s var(--ease-out), opacity .2s ease, width .3s ease;
}.burger-bars i:nth-child(1) { top: 0; }.burger-bars i:nth-child(2) { top: 6px; width: 70%; }.burger-bars i:nth-child(3) { top: 12px; }.is-open .burger-bars i:nth-child(1) { transform: translateY(6px) rotate(45deg); }.is-open .burger-bars i:nth-child(2) { opacity: 0; }.is-open .burger-bars i:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }@media (max-width: 1180px) and (min-width: 981px) {.nav .wrap { padding-inline: 14px; }.nav__in { gap: 8px; }.nav__links a.nav-item { padding: 8px 6px; font-size: .79rem; }.nav__links a.nav-item::after { left: 6px; right: 6px; }.nav__cta .btn { padding: 11px 14px; font-size: .8rem; gap: 0; }.nav__cta .btn .arw { display: none; }.brand__mark { width: 34px; height: 40px; }.brand__name { font-size: 1rem; }.brand__sub { font-size: .52rem; letter-spacing: .14em; }}@media (max-width: 980px) {.nav__links, .nav__cta .btn { display: none; }.nav__burger { display: grid; }
}.mobile-panel {
  position: fixed; inset: 0; z-index: 1150;
  background: rgba(9, 40, 66, .28); backdrop-filter: blur(4px);
  opacity: 0; visibility: hidden; transition: opacity .35s ease, visibility .35s;
}.mobile-panel.is-open { opacity: 1; visibility: visible; }.mobile-panel__sheet {
  position: absolute; top: 0; right: 0; bottom: 0; width: min(400px, 92vw);
  background: var(--surface); box-shadow: var(--sh-xl);
  transform: translateX(100%); transition: transform .45s var(--ease-out);
  display: flex; flex-direction: column; overflow-y: auto;
  padding: 22px 22px 40px;
}.mobile-panel.is-open .mobile-panel__sheet { transform: translateX(0); }.mobile-panel__head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 22px; }.mobile-panel a.m-link {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 4px; border-bottom: 1px solid var(--line-soft);
  font-family: var(--font-ui); font-weight: 700; font-size: 1.02rem;
}.mobile-panel a.m-link.is-active { color: var(--sky-700); }.mobile-panel .m-sub { padding: 4px 0 12px; display: grid; grid-template-columns: 1fr 1fr; gap: 4px; }.mobile-panel .m-sub a { font-size: .84rem; padding: 8px 10px; border-radius: 9px; background: var(--sky-50); color: var(--ink-soft); font-weight: 600; }.icon-btn { width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; border: 1px solid var(--line); background: var(--surface-2); }.icon-btn:hover { background: var(--sky-50); }
@keyframes drift {
  0%   { transform: translate3d(0,0,0) scale(1); }
  50%  { transform: translate3d(3%, -4%, 0) scale(1.08); }
  100% { transform: translate3d(-3%, 4%, 0) scale(.96); }
}.hero .lede { max-width: 560px; margin-bottom: 30px; }
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-13px); } }.mini-stat { display: flex; align-items: center; gap: 12px; }.mini-stat__n { font-family: var(--font-ui); font-weight: 800; font-size: 1.32rem; line-height: 1; color: var(--sky-700); }.mini-stat__l { font-size: .72rem; color: var(--ink-muted); font-weight: 600; letter-spacing: .02em; }
@keyframes slide { to { transform: translateX(-50%); } }/* ---------- 11. Reveal animation ----------------------------------------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .85s var(--ease-out), transform .85s var(--ease-out); }.reveal.is-in { opacity: 1; transform: none; }.reveal--left { transform: translateX(-30px); }.reveal--right { transform: translateX(30px); }.reveal.is-in.reveal--left, .reveal.is-in.reveal--right{ transform: none; }/* Stacked layouts read better rising than sliding — and a sideways offset on a
   narrow screen widens the page before the element animates in. */
@media (max-width: 900px) {
  .reveal--left, .reveal--right { transform: translateY(26px); }
}/* ---------- 12. Service rail --------------------------------------------- */
.rail-wrap { position: relative; }.rail {
  display: flex; gap: 20px; overflow-x: auto; scroll-snap-type: x mandatory;
  padding: 6px 4px 26px; scrollbar-width: none;
}.rail::-webkit-scrollbar { display: none; }.rail > * { scroll-snap-align: start; flex: 0 0 clamp(240px, 27vw, 300px); }.rail-btn {
  width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--line);
  background: var(--surface); display: grid; place-items: center; box-shadow: var(--sh-sm);
  transition: background .2s, transform .2s, opacity .2s;
}.rail-btn:hover { background: var(--sky-50); transform: translateY(-2px); }.rail-btn[disabled] { opacity: .35; pointer-events: none; }/* ---------- 13. Treatment tiles ------------------------------------------ */
.t-toolbar {
  display: flex; flex-wrap: wrap; gap: 14px; align-items: center; justify-content: space-between;
  margin-bottom: 26px; padding: 16px; border-radius: var(--r-lg);
  background: var(--surface); border: 1px solid var(--line); box-shadow: var(--sh-sm);
}.search-field { position: relative; flex: 1 1 260px; }.search-field svg { position: absolute; left: 15px; top: 50%; transform: translateY(-50%); width: 17px; height: 17px; color: var(--ink-faint); }.search-field input {
  width: 100%; padding: 13px 16px 13px 42px; border-radius: var(--r-pill);
  border: 1px solid var(--line); background: var(--surface-2); font-size: .92rem;
  transition: border-color .2s, box-shadow .2s, background .2s;
}.search-field input:focus { outline: none; border-color: var(--sky-400); background: #fff; box-shadow: var(--ring); }.filter-row { display: flex; gap: 8px; flex-wrap: wrap; }.filter-chip {
  padding: 9px 16px; border-radius: var(--r-pill); border: 1px solid var(--line);
  background: var(--surface-2); font-family: var(--font-ui); font-weight: 600; font-size: .82rem; color: var(--ink-soft);
  transition: all .25s ease;
}.filter-chip:hover { border-color: var(--sky-300); color: var(--sky-700); }.filter-chip.is-active { background: var(--sky-600); border-color: var(--sky-600); color: #fff; box-shadow: 0 8px 16px -8px rgba(34,111,172,.7); }.t-tile {
  text-align: left; width: 100%; height: 100%;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 26px 24px; display: flex; flex-direction: column; gap: 13px;
  position: relative; overflow: hidden;
  transition: transform .45s var(--ease-out), box-shadow .45s var(--ease-out), border-color .3s;
}.t-tile::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: linear-gradient(180deg, var(--sky-400), var(--mint-500));
  transform: scaleY(0); transform-origin: top; transition: transform .5s var(--ease-out);
}.t-tile:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); border-color: var(--sky-200); }.t-tile:hover::before { transform: scaleY(1); }.t-tile__top { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }.t-tile__title { font-family: var(--font-ui); font-weight: 800; font-size: 1.09rem; line-height: 1.25; }.t-tile__meta { font-size: .82rem; color: var(--ink-muted); }.t-tile__foot { margin-top: auto; padding-top: 14px; border-top: 1px dashed var(--line); display: flex; align-items: center; justify-content: space-between; gap: 10px; }.t-tile__price { font-family: var(--font-ui); font-weight: 800; font-size: .95rem; color: var(--sky-700); }.t-tile__price small { display: block; font-size: .68rem; font-weight: 600; color: var(--ink-faint); letter-spacing: .06em; text-transform: uppercase; }.t-tile .go { width: 32px; height: 32px; border-radius: 50%; background: var(--sky-100); color: var(--sky-700); display: grid; place-items: center; transition: background .3s, transform .3s; }.t-tile:hover .go { background: var(--sky-600); color: #fff; transform: translateX(3px); }.empty-state { padding: 60px 20px; text-align: center; color: var(--ink-muted); }/* ---------- 15. Cost comparison ------------------------------------------ */
.cost-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 14px; }.cost-cell {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 18px 18px 20px; position: relative; overflow: hidden;
}.cost-cell__flag { font-size: 1.05rem; }.cost-cell__k { font-size: .74rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-muted); display: flex; align-items: center; gap: 7px; margin-bottom: 8px; }.cost-cell__v { font-family: var(--font-ui); font-weight: 800; font-size: 1.02rem; line-height: 1.3; }.cost-cell--hero { background: linear-gradient(160deg, var(--sky-50), var(--sky-100)); border-color: var(--sky-300); box-shadow: var(--sh-md); }.cost-cell--hero .cost-cell__k { color: var(--sky-700); }.cost-cell--hero .cost-cell__v { color: var(--sky-800); font-size: 1.14rem; }.cost-cell__save { margin-top: 8px; font-size: .74rem; font-weight: 700; color: var(--mint-700); }
@keyframes fade-late { to { opacity: 1; } }table.data-table { width: 100%; border-collapse: separate; border-spacing: 0; font-size: .87rem; }.table-scroll { overflow-x: auto; border-radius: var(--r-lg); border: 1px solid var(--line); background: var(--surface); box-shadow: var(--sh-sm); }.data-table th, .data-table td { padding: 14px 16px; text-align: left; border-bottom: 1px solid var(--line-soft); white-space: nowrap; }.data-table thead th {
  background: var(--sky-50); font-family: var(--font-ui); font-weight: 800; font-size: .74rem;
  letter-spacing: .09em; text-transform: uppercase; color: var(--sky-700); position: sticky; top: 0;
}.data-table tbody tr { transition: background .2s ease; }.data-table tbody tr:hover { background: var(--sky-50); }.data-table tbody tr:last-child td { border-bottom: 0; }.data-table td.name { font-weight: 700; font-family: var(--font-display); white-space: normal; min-width: 190px; }.data-table td.india { color: var(--sky-800); font-weight: 800; background: rgba(234,245,255,.6); }.stat-card__n {
  font-family: var(--font-display); font-weight: 600; font-size: clamp(2.4rem, 4vw, 3.5rem);
  line-height: 1; letter-spacing: -.03em; margin-bottom: 8px;
  background: linear-gradient(140deg, var(--sky-600), var(--mint-500));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}/* ---------- 18. Split feature -------------------------------------------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 62px); align-items: center; }.split--rev .split__media { order: 2; }@media (max-width: 900px) {.split { grid-template-columns: 1fr; }.split--rev .split__media { order: 0; } }.media-frame {
  position: relative; border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--sh-lg);
  border: 6px solid #fff;
}.media-frame img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease-out); }.media-frame:hover img { transform: scale(1.05); }.media-frame--tall { aspect-ratio: 4/4.4; }.media-frame--wide { aspect-ratio: 16/10; }.media-tag {
  position: absolute; left: 16px; bottom: 16px; z-index: 2;
  background: rgba(255,255,255,.92); backdrop-filter: blur(12px);
  border-radius: var(--r-pill); padding: 8px 16px; font-size: .78rem; font-weight: 700;
  font-family: var(--font-display); box-shadow: var(--sh-md); display: flex; align-items: center; gap: 8px;
}.check-list li { display: flex; gap: 13px; align-items: flex-start; padding: 11px 0; }.check-list li + li { border-top: 1px solid var(--line-soft); }.check-list .tick {
  width: 26px; height: 26px; border-radius: 9px; flex: none; display: grid; place-items: center;
  background: var(--sky-100); color: var(--sky-700); margin-top: 2px;
}.check-list .tick svg { width: 14px; height: 14px; }.check-list strong { font-family: var(--font-display); }/* ---------- 19. Accordion ------------------------------------------------ */
.acc { border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; background: var(--surface); box-shadow: var(--sh-sm); }.acc__item + .acc__item { border-top: 1px solid var(--line-soft); }.acc__btn {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 20px 24px; text-align: left;
  font-family: var(--font-ui); font-weight: 700; font-size: 1rem; line-height: 1.4;
  transition: background .25s ease, color .25s ease;
}.acc__btn:hover { background: var(--sky-50); color: var(--sky-700); }.acc__ico {
  width: 30px; height: 30px; flex: none; border-radius: 50%; display: grid; place-items: center;
  background: var(--sky-100); color: var(--sky-700); transition: transform .4s var(--ease-out), background .3s;
}.acc__item.is-open .acc__ico { transform: rotate(45deg); background: var(--sky-600); color: #fff; }.acc__panel { max-height: 0; overflow: hidden; transition: max-height .5s var(--ease-out); }.acc__panel > div { padding: 0 24px 22px; color: var(--ink-soft); font-size: .95rem; }/* ---------- 20. Testimonials --------------------------------------------- */
.quote-card { display: flex; flex-direction: column; gap: 18px; height: 100%; }.stars { display: flex; gap: 3px; color: var(--sand-500); }.stars svg { width: 16px; height: 16px; }.quote-card blockquote { font-family: var(--font-display); font-style: italic; font-weight: 400; font-size: 1.16rem; line-height: 1.58; color: var(--ink-soft); position: relative; }.quote-card blockquote::before {
  content: "\201C"; font-family: Georgia, serif; font-size: 4.2rem; line-height: 1; color: var(--sky-200);
  position: absolute; top: -14px; left: -6px; z-index: 0;
}.quote-card blockquote span { position: relative; z-index: 1; }.q-author { display: flex; align-items: center; gap: 12px; margin-top: auto; padding-top: 16px; border-top: 1px solid var(--line-soft); }.q-avatar {
  width: 42px; height: 42px; border-radius: 50%; flex: none; display: grid; place-items: center;
  font-family: var(--font-ui); font-weight: 800; font-size: .88rem; color: #fff;
  background: linear-gradient(145deg, var(--sky-400), var(--sky-700));
}/* ---------- 21. Forms ---------------------------------------------------- */
.field { display: flex; flex-direction: column; gap: 7px; }.field label { font-size: .82rem; font-weight: 700; font-family: var(--font-display); color: var(--ink-soft); }.field label .req { color: var(--rose-600); }.input, .select, .textarea {
  width: 100%; padding: 13px 16px; border-radius: var(--r-sm);
  border: 1px solid var(--line); background: var(--surface-2); font-size: .94rem;
  transition: border-color .2s, box-shadow .2s, background .2s;
}.input:focus, .select:focus, .textarea:focus { outline: none; border-color: var(--sky-400); background: #fff; box-shadow: var(--ring); }.textarea { min-height: 120px; resize: vertical; }.select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%235b7288' stroke-width='2.5' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 15px center; padding-right: 42px; }.field .err { font-size: .76rem; color: var(--rose-600); font-weight: 600; display: none; }.field.is-err .input, .field.is-err .select, .field.is-err .textarea { border-color: var(--rose-600); background: var(--rose-100); }.field.is-err .err { display: block; }.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }@media (max-width: 620px) {.form-grid { grid-template-columns: 1fr; } }.form-note { font-size: .78rem; color: var(--ink-muted); display: flex; gap: 9px; align-items: flex-start; }.form-note svg { width: 15px; height: 15px; flex: none; margin-top: 2px; color: var(--sky-500); }.consent { display: flex; gap: 11px; align-items: flex-start; font-size: .82rem; color: var(--ink-muted); }.consent input { width: 18px; height: 18px; accent-color: var(--sky-600); margin-top: 2px; flex: none; }.toast {
  position: fixed; left: 50%; bottom: 32px; transform: translate(-50%, 130%);
  background: var(--ink); color: #fff; padding: 15px 24px; border-radius: var(--r-pill);
  box-shadow: var(--sh-xl); z-index: 1400; display: flex; align-items: center; gap: 11px;
  font-size: .9rem; font-weight: 600; max-width: 92vw;
  transition: transform .55s var(--ease-out);
}.toast.is-live { transform: translate(-50%, 0); }.toast svg { width: 18px; height: 18px; color: var(--mint-500); flex: none; }/* ---------- 22. Estimator ------------------------------------------------ */
.estimator { display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(24px, 3vw, 42px); align-items: stretch; }@media (max-width: 900px) {.estimator { grid-template-columns: 1fr; } }.est-out {
  background: linear-gradient(165deg, var(--sky-600), var(--sky-800));
  color: #eaf6ff; border-radius: var(--r-lg); padding: clamp(24px, 3vw, 36px);
  position: relative; overflow: hidden; box-shadow: var(--sh-lg);
  display: flex; flex-direction: column; gap: 18px;
}.est-out::before {
  content: ""; position: absolute; width: 260px; height: 260px; border-radius: 50%;
  background: rgba(255,255,255,.12); filter: blur(30px); top: -80px; right: -60px;
}.est-out h3 { color: #fff; }.est-big { font-family: var(--font-display); font-weight: 600; font-size: clamp(2rem, 4vw, 2.9rem); line-height: 1.05; color: #fff; letter-spacing: -.03em; }.est-line { display: flex; justify-content: space-between; align-items: baseline; gap: 14px; padding: 11px 0; border-bottom: 1px solid rgba(255,255,255,.16); font-size: .9rem; }.est-line b { font-family: var(--font-display); font-size: 1rem; color: #fff; }.est-note { font-size: .76rem; color: rgba(234,246,255,.8); line-height: 1.6; }.est-pill { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,.16); border-radius: var(--r-pill); padding: 7px 15px; font-size: .8rem; font-weight: 700; width: fit-content; }.range-wrap { display: flex; flex-direction: column; gap: 8px; }input[type=range] { -webkit-appearance: none; appearance: none; width: 100%; height: 6px; border-radius: 99px; background: var(--sky-200); outline: none; }input[type=range]::-webkit-slider-thumb { -webkit-appearance: none; width: 22px; height: 22px; border-radius: 50%; background: var(--sky-600); border: 3px solid #fff; box-shadow: var(--sh-md); cursor: pointer; }input[type=range]::-moz-range-thumb { width: 22px; height: 22px; border-radius: 50%; background: var(--sky-600); border: 3px solid #fff; box-shadow: var(--sh-md); cursor: pointer; }/* ---------- 23. Callouts ------------------------------------------------- */
.callout {
  border-radius: var(--r-md); padding: 20px 22px; border: 1px solid var(--sky-200);
  background: linear-gradient(160deg, var(--sky-50), #fff);
  display: flex; gap: 15px; align-items: flex-start;
}.callout__ico { width: 34px; height: 34px; border-radius: 11px; display: grid; place-items: center; flex: none; background: var(--sky-100); color: var(--sky-700); }.callout__ico svg { width: 18px; height: 18px; }.callout h4 { font-size: .96rem; margin-bottom: 5px; }.callout p { font-size: .89rem; color: var(--ink-soft); }.callout--warn { border-color: #f2e0bd; background: linear-gradient(160deg, var(--sand-100), #fff); }.callout--warn .callout__ico { background: #fbecd0; color: var(--sand-700); }.callout--mint { border-color: #bde9de; background: linear-gradient(160deg, #eefaf7, #fff); }.callout--mint .callout__ico { background: var(--mint-200); color: var(--mint-700); }.crumbs { display: flex; align-items: center; gap: 8px; font-size: .8rem; color: var(--ink-muted); margin-bottom: 18px; flex-wrap: wrap; }.crumbs a:hover { color: var(--sky-700); }.crumbs .sep { opacity: .5; }.crumbs [aria-current] { color: var(--ink); font-weight: 600; }/* ---------- 26. Footer --------------------------------------------------- */
.footer { background: linear-gradient(180deg, #fff, var(--sky-50)); border-top: 1px solid var(--line); padding-top: clamp(48px, 6vw, 72px); margin-top: auto; }.footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.3fr; gap: clamp(26px, 3vw, 46px); padding-bottom: 44px; }@media (max-width: 940px) {.footer__grid { grid-template-columns: 1fr 1fr; } }@media (max-width: 560px) {.footer__grid { grid-template-columns: 1fr; } }.footer h4 { font-size: .78rem; letter-spacing: .13em; text-transform: uppercase; color: var(--ink-muted); margin-bottom: 16px; }.footer ul li { padding: 5px 0; }.footer ul a { font-size: .9rem; color: var(--ink-soft); transition: color .2s, padding-left .25s; display: inline-block; }.footer ul a:hover { color: var(--sky-700); padding-left: 5px; }.footer__bar {
  border-top: 1px solid var(--line); padding-block: 22px;
  display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between; align-items: center;
  font-size: .82rem; color: var(--ink-muted);
}.office-block { font-size: .87rem; color: var(--ink-soft); line-height: 1.6; }.office-block .ttl { font-family: var(--font-ui); font-weight: 800; font-size: .84rem; color: var(--ink); display: flex; align-items: center; gap: 8px; margin-bottom: 7px; }.badge-row { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 18px; }.badge {
  display: inline-flex; align-items: center; gap: 7px; padding: 7px 13px; border-radius: 10px;
  background: var(--surface); border: 1px solid var(--line); font-size: .74rem; font-weight: 700;
  font-family: var(--font-display); color: var(--ink-soft); box-shadow: var(--sh-xs);
}.badge svg { width: 14px; height: 14px; color: var(--sky-600); }/* ---------- 27. Floating actions ----------------------------------------- */
.fab-stack { position: fixed; right: 20px; bottom: 20px; z-index: 900; display: flex; flex-direction: column; gap: 11px; align-items: flex-end; }.fab {
  display: inline-flex; align-items: center; gap: 10px; padding: 13px 20px; border-radius: var(--r-pill);
  background: var(--sky-600); color: #fff; font-family: var(--font-ui); font-weight: 700; font-size: .88rem;
  box-shadow: 0 16px 30px -14px rgba(23,84,127,.85); border: 2px solid #fff;
  transition: transform .3s var(--ease-out), box-shadow .3s;
}.fab:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 22px 40px -16px rgba(23,84,127,.95); }.fab--wa { background: #25a566; box-shadow: 0 16px 30px -14px rgba(20,120,70,.8); }.fab svg { width: 18px; height: 18px; }.to-top {
  width: 46px; height: 46px; padding: 0; justify-content: center;
  background: var(--surface); color: var(--sky-700); border: 1px solid var(--line);
  box-shadow: var(--sh-md); opacity: 0; pointer-events: none; transform: translateY(10px);
  transition: opacity .3s, transform .3s;
}.to-top.is-live { opacity: 1; pointer-events: auto; transform: none; }@media (max-width: 560px) {.fab span.fab-txt { display: none; }.fab { padding: 14px; } }/* ---------- 28. Misc ----------------------------------------------------- */
.divider { height: 1px; background: linear-gradient(90deg, transparent, var(--line), transparent); margin-block: clamp(30px, 4vw, 50px); }.kv-list li { display: flex; justify-content: space-between; gap: 16px; padding: 11px 0; font-size: .88rem; }.kv-list li + li { border-top: 1px solid var(--line-soft); }.kv-list .k { color: var(--ink-muted); font-weight: 600; }.kv-list .v { font-family: var(--font-ui); font-weight: 700; text-align: right; }.prose p + p { margin-top: 15px; }.prose h3 { margin-top: 26px; margin-bottom: 10px; font-size: 1.16rem; }.prose ul { margin-top: 12px; display: grid; gap: 9px; }.prose ul li { position: relative; padding-left: 24px; color: var(--ink-soft); font-size: .94rem; }.prose ul li::before { content: ""; position: absolute; left: 5px; top: .62em; width: 7px; height: 7px; border-radius: 50%; background: var(--sky-400); }.ext-link { color: var(--sky-700); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; text-decoration-color: var(--sky-300); }.ext-link:hover { text-decoration-color: var(--sky-600); }.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }.skip-link { position: absolute; top: -80px; left: 12px; z-index: 2000; background: var(--sky-700); color: #fff; padding: 12px 20px; border-radius: 0 0 12px 12px; font-weight: 700; transition: top .25s; }.skip-link:focus { top: 0; }.img-load { filter: blur(14px); transform: scale(1.03); transition: filter .8s var(--ease-out), transform .8s var(--ease-out); }.img-load.is-loaded { filter: none; transform: none; }.spot-glow {
  position: fixed; width: 460px; height: 460px; border-radius: 50%; pointer-events: none; z-index: 0;
  background: radial-gradient(circle, rgba(138,199,244,.18), transparent 62%);
  transform: translate(-50%, -50%); left: -999px; top: -999px;
  transition: opacity .5s ease; mix-blend-mode: multiply;
}@media (prefers-reduced-motion: reduce) {*, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }.reveal { opacity: 1 !important; transform: none !important; }
}@media print {.nav, .topbar, .fab-stack, .footer__bar, .mobile-panel, .scroll-progress { display: none !important; }body { background: #fff; }.card, .media-frame { box-shadow: none; border: 1px solid #ccc; }
}/* ---------- 29. Surface texture & editorial details ---------------------- */
.grain::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 1;
  opacity: .55; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='.05'/%3E%3C/svg%3E");
}/* Range (dumbbell) chart — encodes a low-high band honestly, unlike one bar */
.range-chart { display: flex; flex-direction: column; }.range-row { display: grid; grid-template-columns: 96px 1fr; gap: 14px; align-items: center; padding: 11px 0; }.range-row + .range-row { border-top: 1px dashed var(--line-soft); }.range-row__label { display: flex; align-items: center; gap: 8px; font-size: .84rem; font-weight: 600; color: var(--ink-soft); }.range-track { position: relative; height: 30px; }.range-track::before {
  content: ""; position: absolute; left: 0; right: 0; top: 50%; height: 1px;
  background: repeating-linear-gradient(90deg, var(--line) 0 5px, transparent 5px 10px);
}.range-bar {
  position: absolute; top: 50%; height: 9px; transform: translateY(-50%);
  border-radius: 99px; background: linear-gradient(90deg, var(--sky-300), var(--sky-500));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.45);
}.range-row--india .range-bar { background: linear-gradient(90deg, var(--mint-500), var(--sky-500)); height: 13px; box-shadow: 0 4px 12px -4px rgba(35,128,110,.55); }.range-cap { position: absolute; top: 50%; width: 3px; height: 16px; transform: translate(-50%, -50%); border-radius: 3px; background: var(--sky-600); }.range-row--india .range-cap { background: var(--mint-700); height: 20px; }.range-val { position: absolute; top: 50%; transform: translateY(-50%); font-size: .75rem; font-weight: 700; color: var(--ink-soft); white-space: nowrap; font-variant-numeric: tabular-nums; }.range-row--india .range-val { color: var(--mint-700); }.range-axis { display: flex; justify-content: space-between; margin-top: 10px; padding-left: 110px; font-size: .68rem; color: var(--ink-faint); font-variant-numeric: tabular-nums; }@media (max-width: 620px) {.range-row { grid-template-columns: 1fr; gap: 2px; }.range-axis { padding-left: 0; }
}/* ---------- 30. Pinned journey ------------------------------------------- */
.jsticky__grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: clamp(30px, 4.5vw, 72px); align-items: start; }.jsticky__media { position: sticky; top: calc(var(--nav-h) + 26px); }.jsticky__stack {
  position: relative; aspect-ratio: 4 / 4.5; border-radius: var(--r-xl);
  overflow: hidden; box-shadow: var(--sh-lg); border: 6px solid #fff; background: var(--sky-100);
}.jsticky__stack figure { position: absolute; inset: 0; margin: 0; opacity: 0; transition: opacity .8s var(--ease), transform 1.2s var(--ease); transform: scale(1.04); }.jsticky__stack figure.is-active { opacity: 1; transform: none; }.jsticky__stack img { width: 100%; height: 100%; object-fit: cover; }.jsticky__cap {
  position: absolute; left: 14px; right: 14px; bottom: 14px; z-index: 3;
  background: rgba(255,255,255,.92); backdrop-filter: blur(14px);
  border-radius: var(--r-md); padding: 13px 17px; box-shadow: var(--sh-md);
}.jsticky__cap b { display: block; font-family: var(--font-ui); font-size: .88rem; }.jsticky__cap span { font-size: .76rem; color: var(--ink-muted); }.jdots { display: flex; gap: 7px; margin-top: 18px; }.jdot { height: 3px; flex: 1; background: var(--line); border-radius: 99px; overflow: hidden; }.jdot span { display: block; height: 100%; width: 0; background: linear-gradient(90deg, var(--sky-500), var(--mint-500)); transition: width .6s var(--ease); }.jdot.is-done span { width: 100%; }.jstep { padding: clamp(26px, 4vw, 54px) 0; border-top: 1px solid var(--line-soft); transition: opacity .5s ease; }.jstep:first-child { border-top: 0; padding-top: 0; }.jstep__head { display: flex; align-items: baseline; gap: 16px; margin-bottom: 12px; }.jstep__n { font-family: var(--font-display); font-size: clamp(2.2rem, 3.4vw, 3rem); line-height: 1; color: var(--sky-200); transition: color .5s ease; }.jstep.is-active .jstep__n { color: var(--sky-500); }.jstep h3 { font-size: clamp(1.15rem, 1.9vw, 1.5rem); }.jstep p { color: var(--ink-soft); }@media (max-width: 900px) {.jsticky__grid { grid-template-columns: 1fr; }.jsticky__media { position: static; margin-bottom: 8px; }.jsticky__stack { aspect-ratio: 16 / 10; }
}/* ---------- 31. Side-by-side comparison ---------------------------------- */
.cmp-bar {
  display: grid; grid-template-columns: 1fr auto 1fr; gap: 14px; align-items: end;
  padding: 18px; border-radius: var(--r-lg); background: var(--surface);
  border: 1px solid var(--line); box-shadow: var(--sh-sm); margin-bottom: 26px;
}.cmp-swap {
  width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--line);
  background: var(--surface-2); display: grid; place-items: center; margin-bottom: 2px;
  transition: transform .45s var(--ease-out), background .2s;
}.cmp-swap:hover { background: var(--sky-50); transform: rotate(180deg); }.cmp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(16px, 2.4vw, 26px); align-items: start; }.cmp-col { display: flex; flex-direction: column; gap: 16px; }.cmp-head { display: flex; gap: 14px; align-items: center; }.cmp-figure {
  display: flex; align-items: baseline; gap: 10px;
  font-family: var(--font-display); font-weight: 600; font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  color: var(--sky-800); letter-spacing: -.02em;
}.cmp-figure small { font-family: var(--font-ui); font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-faint); }.cmp-metric { display: flex; justify-content: space-between; gap: 12px; padding: 10px 0; font-size: .87rem; border-bottom: 1px solid var(--line-soft); }.cmp-metric:last-child { border-bottom: 0; }.cmp-metric .k { color: var(--ink-muted); }.cmp-metric .v { font-weight: 700; text-align: right; }@media (max-width: 820px) {.cmp-bar { grid-template-columns: 1fr; }.cmp-swap { margin: 0 auto; }.cmp-grid { grid-template-columns: 1fr; }
}/* ==========================================================================
   V2 — EDITORIAL CLINICAL SYSTEM
   A rebuild of the page architecture: full-bleed bands instead of stacked
   cards, a 12-column grid with deliberate asymmetry, hairlines instead of
   shadows, and type as the primary structure.
   ========================================================================== */
:root {
  --wrap: 1360px;
  --edge: clamp(20px, 4.2vw, 72px);
  --nav-h: 88px;
  --hair: #d9e8f5;
}.wrap { max-width: var(--wrap); padding-inline: var(--edge); }/* ---------- Bands -------------------------------------------------------- */
.band { position: relative; padding-block: clamp(70px, 9vw, 148px); }.band--tight { padding-block: clamp(44px, 5vw, 80px); }.band--pale { background: linear-gradient(180deg, #f4faff, #e9f4ff); }.band--white { background: #fff; }.band--edge { padding-inline: 0; }/* ---------- 12-column grid ----------------------------------------------- */
.g12 { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: clamp(16px, 2vw, 30px); }.c1-5  { grid-column: 1 / 6; }.c1-6  { grid-column: 1 / 7; }.c1-7  { grid-column: 1 / 8; }.c1-8  { grid-column: 1 / 9; }.c6-13 { grid-column: 6 / 13; }.c7-13 { grid-column: 7 / 13; }.c8-13 { grid-column: 8 / 13; }@media (max-width: 940px) {.g12 > [class*="c"] { grid-column: 1 / -1 !important; }
}/* ---------- Section label in the margin ---------------------------------- */
.lab {
  display: flex; align-items: center; gap: 14px;
  font-family: var(--font-ui); font-size: .68rem; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase; color: var(--sky-700);
  margin-bottom: clamp(20px, 2.4vw, 34px);
}.lab::before {
  content: ""; width: 22px; height: 1px; background: var(--sky-400); flex: none;
}.lab::after { content: ""; flex: 1; height: 1px; background: var(--hair); }.lab--plain::after { display: none; }/* ---------- Display headline with per-word reveal ------------------------ */
.dh {
  font-family: var(--font-display); font-weight: 500;
  line-height: 1.06; letter-spacing: -.032em;
  font-size: clamp(2.3rem, 4.8vw, 4.6rem);
  color: var(--ink);
}.dh--sm { font-size: clamp(1.95rem, 3.6vw, 3.2rem); }.dh em { font-style: italic; color: var(--sky-600); }.w { display: inline-block; }.w > i {
  display: inline-block; font-style: inherit;
  opacity: 0; transform: translateY(.4em);
  transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
}.w.is-in > i { opacity: 1; transform: none; }/* If the script never runs there is no .w at all, so headlines stay visible. */

/* ---------- Full-bleed split hero ---------------------------------------- */
.hero2 {
  display: grid; grid-template-columns: 1.04fr .96fr;
  min-height: min(92vh, 900px); align-items: stretch;
  background: linear-gradient(155deg, #f7fcff 0%, #eaf5ff 55%, #e3f0fb 100%);
  position: relative; overflow: hidden;
}.hero2__text {
  display: flex; flex-direction: column; justify-content: center;
  padding: clamp(56px, 8vh, 104px) clamp(28px, 4vw, 72px) clamp(48px, 7vh, 92px) var(--edge);
}.hero2__inner { max-width: 620px; }.hero2__media { position: relative; overflow: hidden; }.hero2__media img { width: 100%; height: 100%; object-fit: cover; will-change: transform; }.hero2__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(233,244,255,.96) 0%, rgba(233,244,255,.3) 24%, transparent 54%);
}.hero2__badge {
  position: absolute; z-index: 3; left: clamp(18px, 3vw, 40px); bottom: clamp(18px, 3vw, 40px);
  background: rgba(255,255,255,.93); backdrop-filter: blur(16px);
  border-radius: var(--r-md); padding: 16px 20px; box-shadow: var(--sh-lg);
  display: flex; align-items: center; gap: 14px; max-width: 300px;
}@media (max-width: 1000px) {.hero2 { grid-template-columns: 1fr; min-height: 0; }.hero2__media { height: min(52vh, 420px); order: -1; }.hero2__media::after { background: linear-gradient(180deg, transparent 55%, rgba(234,245,255,.9)); }.hero2__text { padding-block: clamp(36px, 6vh, 60px); }
}/* ---------- Ticker ------------------------------------------------------- */
.ticker { border-block: 1px solid var(--hair); background: #fff; padding-block: 16px; overflow: hidden; }.ticker__row { display: flex; align-items: center; width: max-content; animation: slide 46s linear infinite; }.ticker:hover .ticker__row { animation-play-state: paused; }.ticker__i {
  display: flex; align-items: center; gap: 11px; padding-inline: clamp(20px, 3vw, 40px);
  font-family: var(--font-ui); font-size: .8rem; font-weight: 600; letter-spacing: .05em;
  color: var(--ink-muted); white-space: nowrap; border-right: 1px solid var(--hair);
}/* ---------- Editorial index ---------------------------------------------- */
.idx { border-top: 1px solid var(--hair); }.idx__row {
  display: grid; grid-template-columns: 60px 1fr minmax(0, 210px) 36px;
  gap: clamp(14px, 2vw, 28px); align-items: center;
  padding: clamp(18px, 2.2vw, 28px) 0; border-bottom: 1px solid var(--hair);
  position: relative; transition: padding-left .45s var(--ease-out), background .3s ease;
}.idx__row::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 2px;
  background: linear-gradient(180deg, var(--sky-400), var(--mint-500));
  transform: scaleY(0); transition: transform .45s var(--ease-out);
}.idx__row:hover { padding-left: 22px; background: linear-gradient(90deg, rgba(233,244,255,.8), transparent 72%); }.idx__row:hover::before { transform: scaleY(1); }.idx__n { font-family: var(--font-display); font-style: italic; font-size: 1.05rem; color: var(--sky-400); }.idx__t { font-family: var(--font-display); font-weight: 500; font-size: clamp(1.25rem, 2.1vw, 1.85rem); line-height: 1.14; letter-spacing: -.02em; transition: color .3s; }.idx__row:hover .idx__t { color: var(--sky-700); }.idx__m { font-size: .8rem; color: var(--ink-muted); }.idx__p { font-family: var(--font-ui); font-weight: 700; font-size: .86rem; color: var(--sky-700); white-space: nowrap; }.idx__go { width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--hair); display: grid; place-items: center; color: var(--sky-700); transition: all .35s var(--ease-out); }.idx__row:hover .idx__go { background: var(--sky-700); border-color: var(--sky-700); color: #fff; transform: translateX(4px); }@media (max-width: 800px) {.idx__row { grid-template-columns: 40px 1fr 34px; }.idx__m { display: none; }
}.idx-peek {
  position: fixed; z-index: 60; width: 250px; height: 172px; border-radius: 14px;
  overflow: hidden; pointer-events: none; opacity: 0; box-shadow: var(--sh-xl);
  transform: translate(-50%, -50%) scale(.92) rotate(-2deg);
  transition: opacity .3s ease, transform .45s var(--ease-out);
  border: 4px solid #fff; left: -999px; top: -999px;
}.idx-peek.is-live { opacity: 1; transform: translate(-50%, -50%) scale(1) rotate(-2deg); }.idx-peek img { width: 100%; height: 100%; object-fit: cover; }@media (max-width: 1000px) {.idx-peek { display: none; } }/* ---------- Pinned horizontal gallery ------------------------------------ */
/* Default (no JS, reduced motion, small screens): a plain swipeable rail.
   The pinned behaviour is layered on top only when the script opts in. */
.pin { position: relative; }.pin__stage { display: flex; flex-direction: column; justify-content: center; padding-block: clamp(60px, 8vw, 120px); }.pin--on .pin__stage { position: sticky; top: 0; height: 100vh; overflow: hidden; padding-block: 0; }.pin__head { padding-inline: var(--edge); margin-bottom: clamp(20px, 3vh, 40px); display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; flex-wrap: wrap; }.pin__track {
  display: flex; gap: clamp(16px, 1.6vw, 24px); padding-inline: var(--edge);
  overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; padding-bottom: 14px;
}.pin__track::-webkit-scrollbar { display: none; }.pin__track > * { scroll-snap-align: start; }.pin--on .pin__track { overflow: visible; padding-bottom: 0; will-change: transform; }.pin__rail { display: none; margin: clamp(20px, 3vh, 38px) var(--edge) 0; height: 2px; background: var(--hair); position: relative; }.pin--on .pin__rail { display: block; }.pin__rail span { position: absolute; inset: 0 auto 0 0; width: 8%; background: var(--sky-600); }.pcard {
  flex: 0 0 clamp(258px, 24vw, 330px);
  background: #fff; border: 1px solid var(--hair); border-radius: var(--r-lg);
  padding: clamp(20px, 2vw, 28px); display: flex; flex-direction: column; gap: 12px;
  min-height: clamp(300px, 44vh, 400px); transition: border-color .3s, transform .45s var(--ease-out);
}.pcard:hover { border-color: var(--sky-300); transform: translateY(-5px); }.pcard__n { font-family: var(--font-display); font-style: italic; color: var(--sky-300); font-size: 1.05rem; }.pcard__t { font-family: var(--font-display); font-weight: 500; font-size: 1.45rem; line-height: 1.1; letter-spacing: -.02em; }.pcard__foot { margin-top: auto; padding-top: 15px; border-top: 1px solid var(--hair); }@media (max-width: 900px) {.pin, .pin--on { height: auto !important; }.pin--on .pin__stage { position: static; height: auto; overflow: visible; padding-block: clamp(50px, 8vw, 90px); }.pin--on .pin__track { overflow-x: auto; transform: none !important; padding-bottom: 14px; }.pcard { min-height: 0; }.pin--on .pin__rail { display: none; }
}/* ---------- Big figures row ---------------------------------------------- */
.figs { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--hair); }.fig { padding: clamp(26px, 3.4vw, 52px) clamp(16px, 2vw, 30px); border-bottom: 1px solid var(--hair); border-right: 1px solid var(--hair); }.fig:last-child { border-right: 0; }.fig__n { font-family: var(--font-display); font-weight: 500; font-size: clamp(2.4rem, 4.6vw, 4.2rem); line-height: .95; letter-spacing: -.03em; color: var(--sky-800); }.fig__l { margin-top: 10px; font-size: .84rem; color: var(--ink-muted); max-width: 22ch; }@media (max-width: 820px) {.figs { grid-template-columns: repeat(2, 1fr); }.fig:nth-child(2n) { border-right: 0; }
}/* ---------- Feature quote ------------------------------------------------ */
.qf {
  font-family: var(--font-display); font-style: italic; font-weight: 400;
  font-size: clamp(1.5rem, 3.2vw, 2.6rem); line-height: 1.34; letter-spacing: -.02em;
  color: var(--ink);
}.qf b { font-style: normal; font-weight: 500; color: var(--sky-700); }/* ---------- Route divider ------------------------------------------------ */
.route { height: 1px; background: repeating-linear-gradient(90deg, var(--sky-300) 0 6px, transparent 6px 15px); position: relative; margin-block: clamp(34px, 4vw, 60px); }.route::after { content: ""; position: absolute; left: 0; top: -4px; width: 9px; height: 9px; border-radius: 50%; background: var(--sky-500); box-shadow: 0 0 0 4px rgba(82,163,224,.18); }/* ---------- Hairline panels ---------------------------------------------- */
.panel { background: #fff; border: 1px solid var(--hair); border-radius: var(--r-md); padding: clamp(20px, 2.2vw, 30px); }.panel--pale { background: linear-gradient(160deg, #f6fbff, #eaf5ff); }/* ---------- Shell restyle: quieter chrome, more page ---------------------- */
.topbar { background: #fff; color: var(--ink-muted); border-bottom: 1px solid var(--hair); font-size: .76rem; }.topbar a { color: var(--ink-soft); font-weight: 600; }.topbar a:hover { color: var(--sky-700); }.topbar svg { color: var(--sky-500); }.topbar__in { min-height: 38px; }.nav { background: rgba(255,255,255,.86); border-bottom: 1px solid transparent; }.nav.is-stuck { background: rgba(255,255,255,.94); border-bottom-color: var(--hair); box-shadow: none; }.nav__in { min-height: var(--nav-h); }.nav__links a.nav-item { border-radius: 0; padding: 8px 15px; font-size: .87rem; font-weight: 500; color: var(--ink-soft); position: relative; }.nav__links a.nav-item:hover { background: none; color: var(--ink); }.nav__links a.nav-item.is-active { background: none; color: var(--ink); }.nav__links a.nav-item::after {
  content: ""; position: absolute; left: 15px; right: 15px; bottom: 2px; height: 1px;
  background: var(--sky-600); transform: scaleX(0); transform-origin: left;
  transition: transform .4s var(--ease-out);
}.nav__links a.nav-item:hover::after, .nav__links a.nav-item.is-active::after { transform: scaleX(1); }.btn { border-radius: var(--r-pill); font-weight: 600; letter-spacing: -.005em; }.card { box-shadow: none; border-color: var(--hair); }.card--hover:hover { box-shadow: var(--sh-md); }.footer { background: #fff; border-top: 1px solid var(--hair); }.footer__wordmark {
  font-family: var(--font-display); font-weight: 500; letter-spacing: -.04em;
  font-size: clamp(3rem, 13vw, 11rem); line-height: .82; color: var(--sky-100);
  padding-block: clamp(20px, 3vw, 44px); text-align: center; user-select: none;
  border-top: 1px solid var(--hair);
}/* Magnetic CTA */
.mag { transition: transform .35s var(--ease-out); }/* Tag row under each journey step */
.j-tags { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 14px; }/* ==========================================================================
   V2.1 - CONTAINED SURFACES
   The page is a tinted field; content lives on sheets with a real edge.
   ========================================================================== */
body { background: var(--canvas); }/* Bands stop painting; their inner wrap becomes the surface. */
.band { padding-block: clamp(14px, 1.8vw, 26px); background: none; }.band--tight { padding-block: clamp(10px, 1.4vw, 18px); }.band > .wrap {
  background: var(--surface);
  border: 1px solid var(--hair);
  border-radius: var(--r-xl);
  box-shadow: var(--sh-sm);
  padding: clamp(30px, 4.2vw, 74px) clamp(22px, 3.4vw, 58px);
  max-width: var(--wrap);
}.band--pale > .wrap { background: linear-gradient(168deg, #f8fcff 0%, #eaf5ff 100%); }.band--white > .wrap { background: var(--surface); }/* Sheets sit shoulder to shoulder, so the gap between them is the rhythm. */
.band + .band { padding-top: 0; }/* The hero is a surface too, not a full-bleed slab. */
.hero2 {
  margin: clamp(10px, 1.4vw, 18px) auto clamp(6px, 1vw, 12px);
  max-width: var(--wrap);
  width: calc(100% - var(--edge) * 2);
  border: 1px solid var(--hair);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-md);
  min-height: min(84vh, 820px);
}.hero2__text { padding: clamp(44px, 6vh, 84px) clamp(26px, 3.4vw, 58px); }/* Ticker becomes a contained strip. */
.ticker {
  margin: clamp(10px, 1.4vw, 18px) auto;
  max-width: var(--wrap);
  width: calc(100% - var(--edge) * 2);
  border: 1px solid var(--hair);
  border-radius: var(--r-pill);
  box-shadow: var(--sh-xs);
}/* Pinned gallery keeps its full-bleed moment, but the stage is a surface. */
.pin--on .pin__stage { padding-block: clamp(18px, 2.4vw, 34px); }.pin__head, .pin__track, .pin__rail { max-width: var(--wrap); margin-inline: auto; width: 100%; }.pin__track { padding-inline: clamp(22px, 3.4vw, 58px); }.pin__head { padding-inline: clamp(22px, 3.4vw, 58px); }.pin__rail { margin-inline: auto; }.pin__stage.band--pale {
  background: linear-gradient(168deg, #f8fcff, #e9f4ff);
  border: 1px solid var(--hair); border-radius: var(--r-xl);
  max-width: var(--wrap); width: calc(100% - var(--edge) * 2);
  margin-inline: auto; box-shadow: var(--sh-sm);
}.pin--on .pin__stage { height: calc(100vh - 24px); margin-block: 12px; }/* Cards regain presence inside the sheets. */
.panel { border-radius: var(--r-lg); box-shadow: var(--sh-xs); }.panel--pale { box-shadow: none; }.pcard { border-radius: var(--r-lg); box-shadow: var(--sh-xs); }.pcard:hover { box-shadow: var(--sh-md); }.t-tile, .card { border-radius: var(--r-lg); box-shadow: var(--sh-xs); }.t-tile:hover { box-shadow: var(--sh-md); }/* Index rows read as a list inside its sheet. */
.idx { border-top: 0; }.idx__row:first-child { border-top: 1px solid var(--hair); }/* Footer closes the page rather than floating. */
.footer { background: var(--surface); border-top: 1px solid var(--hair); margin-top: clamp(14px, 2vw, 26px); }@media (max-width: 700px) {.band > .wrap { border-radius: var(--r-lg); padding: clamp(24px, 5vw, 34px) clamp(18px, 4.5vw, 26px); }.hero2, .ticker, .pin__stage.band--pale { border-radius: var(--r-lg); width: calc(100% - var(--edge)); }
}/* Section opener: a measure-limited block above the content it introduces. */
.head { max-width: 62ch; margin-bottom: clamp(26px, 3.2vw, 46px); }.head--center { margin-inline: auto; text-align: center; }.head--center .lab { justify-content: center; }.head--center .lab::after { display: none; }.head > * + * { margin-top: 14px; }


/* ---------- Pathway imagery ---------------------------------------------- */
.t-tile__ph, .pcard__ph {
  display: block; position: relative; overflow: hidden;
  border-radius: 14px; background: var(--sky-100);
  aspect-ratio: 16 / 9; margin-bottom: 4px;
}
.t-tile__ph img, .pcard__ph img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .7s var(--ease-out);
}
.t-tile:hover .t-tile__ph img, .pcard:hover .pcard__ph img { transform: scale(1.07); }
.t-tile__ph::after, .pcard__ph::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(190deg, rgba(255,255,255,.16), rgba(15,74,116,.14));
}
.t-tile__badge, .pcard__badge {
  position: absolute; left: 10px; top: 10px; z-index: 2;
  width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center;
  background: rgba(255,255,255,.92); backdrop-filter: blur(10px);
  font-size: 1.05rem; box-shadow: var(--sh-xs);
}
.pcard__ph { aspect-ratio: 4 / 3; }

/* Larger, softer cursor preview */
.idx-peek { width: 280px; height: 192px; }


/* ---------- Decorative field --------------------------------------------- */
.dots::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background-image: radial-gradient(var(--sky-300) 1px, transparent 1px);
  background-size: 22px 22px;
  opacity: .5;
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at 12% 88%, #000, transparent 72%);
  mask-image: radial-gradient(ellipse 70% 70% at 12% 88%, #000, transparent 72%);
}
.hero2__text { position: relative; z-index: 1; }
.hero2__inner { position: relative; z-index: 2; }

/* Tablet: two-up tiles and a calmer hero */
@media (min-width: 701px) and (max-width: 1000px) {
  .hero2__media { height: min(46vh, 380px); }
  .g4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .figs { grid-template-columns: repeat(2, 1fr); }
  .fig:nth-child(2n) { border-right: 0; }
}

/* Small phones: tighter type and full-width actions */
@media (max-width: 420px) {
  .dh { font-size: clamp(2rem, 9vw, 2.5rem); }
  .dh--sm { font-size: clamp(1.75rem, 7.6vw, 2.1rem); }
  .btn--lg { width: 100%; }
  .hero2__text { padding-inline: 20px; }
  .band > .wrap { padding-inline: 18px; }
}

/* Honeypot. Off-screen rather than display:none — a bot parsing the DOM must
   still see the field and fill it in, which is how it gives itself away. */
.hp{position:absolute!important;left:-9999px!important;top:auto;width:1px;height:1px;overflow:hidden}
