@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Outfit:wght@500;600;700;800&display=swap");

:root {
  --navy-950: #061a2e;
  --navy-900: #082943;
  --navy-800: #0b4f82;
  --blue-600: #168fd8;
  --blue-500: #2b9de8;
  --blue-100: #dff2ff;
  --blue-50: #eff8fe;
  --pink-600: #a84d8c;
  --pink-400: #d48abb;
  --pink-100: #f7e2f0;
  --teal-600: #0b8e82;
  --teal-100: #dff5f1;
  --amber-600: #d47409;
  --amber-100: #fff0d7;
  --violet-600: #6d43d8;
  --violet-100: #eee8ff;
  --ink: #0a1c31;
  --text: #334a60;
  --muted: #667c8f;
  --line: #d9e6ef;
  --surface: #ffffff;
  --page: #f5f8fb;
  --shadow-sm: 0 12px 35px rgba(7, 42, 71, .08);
  --shadow-lg: 0 32px 80px rgba(6, 26, 46, .18);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 34px;
  --content: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; }
body {
  margin: 0;
  color: var(--text);
  background: var(--page);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.nav-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, summary { font: inherit; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3, .brand-copy strong {
  color: var(--ink);
  font-family: "Outfit", "Inter", sans-serif;
  letter-spacing: -.035em;
}
h2 { margin-bottom: 18px; font-size: clamp(38px, 5vw, 68px); line-height: 1.06; }
h3 { margin-bottom: 10px; font-size: 22px; line-height: 1.2; }
p { margin-bottom: 18px; }
:focus-visible { outline: 3px solid var(--blue-500); outline-offset: 4px; }
.skip-link {
  position: fixed;
  z-index: 200;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: #fff;
  background: var(--navy-950);
  border-radius: 8px;
  transform: translateY(-150%);
}
.skip-link:focus { transform: none; }

/* Header */
.site-header {
  position: sticky;
  z-index: 80;
  top: 0;
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px max(24px, calc((100vw - var(--content)) / 2));
  background: rgba(255, 255, 255, .93);
  border-bottom: 1px solid rgba(217, 230, 239, .78);
  backdrop-filter: blur(18px);
  transition: box-shadow .25s ease, min-height .25s ease;
}
.site-header.is-elevated { box-shadow: 0 14px 34px rgba(7, 42, 71, .08); }
.brand { display: inline-flex; align-items: center; gap: 12px; flex: 0 0 auto; }
.brand-icon, .brand-mark {
  width: 48px;
  height: 48px;
  display: grid;
  overflow: hidden;
  place-items: center;
  background: #fff;
  border: 1px solid #cfe1ed;
  border-radius: 15px;
  box-shadow: 0 8px 24px rgba(11, 79, 130, .13);
}
.brand-icon img, .brand-mark img { width: 100%; height: 100%; object-fit: cover; }
.brand > span:last-child:not(.brand-copy) { color: var(--navy-900); font-family: "Outfit"; font-size: 20px; font-weight: 800; }
.brand-copy { display: grid; line-height: 1.1; }
.brand-wordmark { width: 132px; height: auto; display: block; }
.brand-copy small { margin-top: 4px; color: var(--muted); font-size: 10px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.site-nav { display: flex; align-items: center; gap: 2px; color: #425b70; font-size: 13px; font-weight: 700; }
.site-nav > a, .nav-more > summary { padding: 9px 10px; border-radius: 9px; white-space: nowrap; }
.site-nav > a:hover, .nav-more > summary:hover { color: var(--navy-800); background: var(--blue-50); }
.nav-cta { margin-left: 6px; padding-inline: 16px !important; color: #fff !important; background: var(--navy-800) !important; box-shadow: 0 10px 26px rgba(11, 79, 130, .2); }
.nav-more { position: relative; }
.nav-more summary { cursor: pointer; list-style: none; }
.nav-more summary::-webkit-details-marker { display: none; }
.nav-more summary::after { content: "⌄"; margin-left: 5px; }
.nav-more[open] summary { color: var(--navy-800); background: var(--blue-50); }
.nav-more > div {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 210px;
  display: grid;
  gap: 2px;
  padding: 10px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 15px;
  box-shadow: var(--shadow-lg);
}
.nav-more > div a { padding: 10px 12px; border-radius: 9px; }
.nav-more > div a:hover { color: var(--navy-800); background: var(--blue-50); }
.menu-button {
  width: 46px;
  height: 46px;
  display: none;
  padding: 0 11px;
  border: 0;
  border-radius: 13px;
  background: var(--blue-50);
}
.menu-button span { display: block; height: 2px; margin: 6px 0; background: var(--navy-800); border-radius: 99px; transition: transform .2s ease; }
body.nav-open .menu-button span:first-child { transform: translateY(4px) rotate(45deg); }
body.nav-open .menu-button span:last-child { transform: translateY(-4px) rotate(-45deg); }

/* Shared components */
.section { padding: clamp(78px, 9vw, 128px) max(24px, calc((100vw - var(--content)) / 2)); }
.anchor-target { position: absolute; width: 1px; height: 1px; overflow: hidden; }
.section-heading { max-width: 1040px; display: grid; grid-template-columns: 1.1fr .75fr; gap: 0 8vw; align-items: end; margin-bottom: 48px; }
.section-heading .eyebrow { grid-column: 1 / -1; }
.section-heading > p:last-child { margin-bottom: 8px; color: var(--muted); font-size: 17px; }
.section-heading.compact { display: block; max-width: 860px; }
.eyebrow { margin-bottom: 14px; color: var(--navy-800); font-size: 11px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow.light { color: #bee7ff; }
.button, .primary-button, .secondary-button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-weight: 800;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.button:hover, .primary-button:hover, .secondary-button:hover { transform: translateY(-2px); }
.button-primary, .primary-button { color: var(--navy-950); background: #fff; box-shadow: 0 16px 38px rgba(4, 24, 42, .2); }
.button-ghost { color: #fff; border-color: rgba(255, 255, 255, .35); background: rgba(255, 255, 255, .08); }
.button-dark { color: #fff; background: var(--navy-900); }
.secondary-button { color: var(--navy-800); background: var(--blue-50); border-color: #cae3f3; }
.text-link { color: var(--navy-800); font-size: 14px; font-weight: 800; }
.text-link span { display: inline-block; margin-left: 5px; transition: transform .2s ease; }
.text-link:hover span { transform: translateX(4px); }
/* Reveal states live in the motion section at the end of this file, behind a
   `.js` guard so that content stays visible when scripting is unavailable. */

/* Main hero */
.hero {
  position: relative;
  min-height: 850px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(390px, .72fr);
  gap: clamp(44px, 7vw, 100px);
  align-items: center;
  overflow: hidden;
  padding: 82px max(24px, calc((100vw - var(--content)) / 2)) 88px;
  color: var(--text);
  background:
    linear-gradient(rgba(11,79,130,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11,79,130,.045) 1px, transparent 1px),
    radial-gradient(circle at 82% 22%, rgba(43,157,232,.25), transparent 34%),
    radial-gradient(circle at 12% 82%, rgba(212,138,187,.22), transparent 30%),
    linear-gradient(145deg, #fbfdff 0%, #eaf5fd 58%, #f8eaf3 100%);
  background-size: 50px 50px, 50px 50px, auto, auto, auto;
}
.hero::after {
  content: "";
  position: absolute;
  width: 760px;
  height: 260px;
  right: -130px;
  bottom: -165px;
  border: 1px solid rgba(11,79,130,.14);
  border-radius: 50%;
  box-shadow: 0 -44px 0 rgba(43,157,232,.045), 0 -88px 0 rgba(212,138,187,.04);
  transform: rotate(-8deg);
}
.hero-ambient { position: absolute; border-radius: 50%; filter: blur(1px); pointer-events: none; }
.ambient-one { width: 260px; height: 260px; left: -140px; top: 40%; background: rgba(212,138,187,.2); }
.ambient-two { width: 170px; height: 170px; left: 45%; bottom: -70px; background: rgba(43,157,232,.16); }
.hero-copy { position: relative; z-index: 3; max-width: 720px; }
.hero-brand { display: inline-flex; align-items: center; gap: 14px; margin-bottom: 38px; }
.hero-brand > img { width: 76px; height: 76px; border: 4px solid rgba(255,255,255,.95); border-radius: 23px; box-shadow: 0 18px 42px rgba(11,79,130,.2); }
.hero-brand-copy { display: grid; justify-items: start; line-height: 1.1; }
.hero-wordmark { width: 190px; height: auto; display: block; filter: drop-shadow(0 8px 18px rgba(11,79,130,.12)); }
.hero-brand small { margin-top: 7px; color: var(--navy-800); font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.hero .eyebrow.light { color: var(--pink-600); }
.hero h1 { margin-bottom: 24px; color: var(--navy-950); font-size: clamp(58px, 7.2vw, 98px); line-height: .98; letter-spacing: -.06em; }
.hero h1 em { color: var(--pink-600); font-style: normal; }
.hero-lead { max-width: 680px; color: #466276; font-size: clamp(18px, 1.65vw, 23px); line-height: 1.55; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.hero .button-primary { color: #fff; background: var(--navy-800); box-shadow: 0 16px 38px rgba(11,79,130,.22); }
.hero .button-ghost { color: var(--navy-900); border-color: rgba(11,79,130,.25); background: rgba(255,255,255,.5); }
.hero-trust { display: flex; flex-wrap: wrap; gap: 10px 20px; margin-top: 32px; color: #527086; font-size: 12px; font-weight: 700; }
.hero-trust b { margin-right: 5px; color: var(--teal-600); }
.hero-product { position: relative; z-index: 4; min-height: 720px; display: grid; place-items: center; }
.device {
  position: relative;
  width: 348px;
  height: 728px;
  padding: 11px;
  background: #101a24;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 52px;
  box-shadow: 0 45px 95px rgba(0, 0, 0, .38), inset 0 0 0 2px #263541;
  transform: rotate(2.5deg);
}
.device::before, .device::after { content: ""; position: absolute; width: 3px; background: #33434f; border-radius: 3px; }
.device::before { height: 92px; left: -4px; top: 130px; }
.device::after { height: 76px; right: -4px; top: 160px; }
.device-screen { width: 100%; height: 100%; overflow: hidden; background: #eaf3fa; border-radius: 42px; }
.device-screen img { width: 100%; height: 100%; max-width: none; object-fit: cover; object-position: center top; transform: none; }
.hero-product .device-screen { position: relative; }
.hero-app-date-overlay {
  position: absolute;
  z-index: 2;
  top: 20.6%;
  left: 4%;
  width: 92%;
  height: 6.8%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 0 13px;
  color: #fff;
  background: linear-gradient(105deg, #28a7e9, #178cd5);
  border-radius: 13px;
  box-shadow: 0 7px 16px rgba(14,115,177,.18);
}
.hero-app-date-overlay > div { min-width: 0; display: grid; line-height: 1.18; }
.hero-app-date-overlay strong { overflow: hidden; color: #fff; font-family: "Inter", sans-serif; font-size: 10.5px; font-weight: 700; letter-spacing: 0; text-overflow: ellipsis; white-space: nowrap; }
.hero-app-date-overlay small { margin-top: 2px; color: rgba(255,255,255,.75); font-size: 8px; letter-spacing: 0; }
.hero-app-date-overlay > b { padding: 4px 8px; color: #fff; background: rgba(255,255,255,.15); border-radius: 99px; font-size: 8px; }
.hero-date-calendar {
  width: 13px;
  height: 12px;
  display: block;
  border: 1.5px solid rgba(255,255,255,.8);
  border-radius: 2px;
  box-shadow: inset 0 3px 0 rgba(255,255,255,.12);
}
.hero-date-calendar::before { content: ""; width: 7px; height: 1.5px; display: block; margin: -2px auto 0; background: rgba(255,255,255,.85); border-radius: 99px; }
.screen-note {
  position: absolute;
  z-index: 5;
  display: grid;
  min-width: 172px;
  padding: 13px 16px;
  color: var(--ink);
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(255,255,255,.6);
  border-radius: 13px;
  box-shadow: 0 18px 46px rgba(2,18,31,.25);
  backdrop-filter: blur(10px);
}
.screen-note small { color: var(--navy-800); font-size: 9px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.screen-note strong { margin-top: 4px; font-size: 13px; }
.screen-note > span { margin-top: 2px; color: var(--muted); font-size: 10px; }
.screen-note-top { min-width: 205px; }
.screen-note-top { top: 135px; right: -46px; }
.screen-note-bottom { bottom: 130px; left: -58px; }
.capture-label { position: absolute; bottom: -2px; left: 50%; margin: 0; color: #547086; font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; transform: translateX(-50%); white-space: nowrap; }
.capture-label span { width: 7px; height: 7px; display: inline-block; margin-right: 6px; background: #58d6c2; border-radius: 50%; box-shadow: 0 0 0 5px rgba(88,214,194,.12); }

.proof-bar {
  position: relative;
  z-index: 10;
  max-width: var(--content);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: -35px auto 0;
  overflow: hidden;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 19px;
  box-shadow: var(--shadow-lg);
}
.proof-bar div { min-height: 108px; padding: 24px; background: #fff; }
.proof-bar strong { display: block; color: var(--navy-800); font-family: "Outfit"; font-size: 30px; line-height: 1; }
.proof-bar span { display: block; margin-top: 9px; color: var(--muted); font-size: 12px; font-weight: 700; }

/* Scroll-led product motion */
.feature-motion {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 10%, rgba(212,138,187,.13), transparent 25%),
    radial-gradient(circle at 90% 85%, rgba(43,157,232,.14), transparent 28%),
    #fff;
}
.motion-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .62fr);
  gap: 7vw;
  align-items: end;
  margin-bottom: 48px;
}
.motion-heading h2 { max-width: 820px; margin-bottom: 0; }
.motion-heading > p { margin-bottom: 7px; color: var(--muted); font-size: 17px; }
.motion-note { margin: 18px 0 0; color: var(--muted); font-size: 10px; text-align: center; }


/* App-faithful live pregnancy timeline */
.app-demo-shell {
  --app-blue: #2cadd8;
  --app-blue-deep: #1679a8;
  --app-bg: #f0f6fc;
  --app-violet: #7c3aed;
  --app-amber: #f59e0b;
  --app-teal: #0d9488;
  --planner-progress: 62.925%;
  --planner-thumb: #2cadd8;
  --planner-glow: rgba(44, 173, 216, .16);
  max-width: 860px;
  margin: 0 auto;
  overflow: hidden;
  color: #1a2940;
  background: var(--app-bg);
  border: 1px solid #c5ddf0;
  border-radius: 28px;
  box-shadow: 0 32px 90px rgba(7, 42, 71, .16);
}
.app-date-strip {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 9px 17px;
  color: #267fa9;
  background: rgba(255,255,255,.68);
  border-bottom: 1px solid #d6e7f2;
}
.app-date-today { min-width: 0; display: flex; align-items: center; gap: 8px; font-size: 12px; }
.app-date-today strong { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.app-date-today i { width: 1px; height: 16px; background: #c8dce9; }
.app-calendar-symbol {
  width: 16px;
  height: 15px;
  display: inline-block;
  flex: 0 0 auto;
  border: 2px solid var(--app-blue);
  border-radius: 3px;
  box-shadow: inset 0 3px 0 rgba(44,173,216,.18);
}
.app-calendar-symbol::before {
  content: "";
  width: 8px;
  height: 2px;
  display: block;
  margin: -3px auto 0;
  background: var(--app-blue);
  border-radius: 99px;
}
.app-calendar-mode {
  flex: 0 0 auto;
  display: flex;
  overflow: hidden;
  padding: 3px;
  background: #fff;
  border: 1px solid #c9dfea;
  border-radius: 9px;
  box-shadow: 0 3px 10px rgba(20,98,140,.08);
}
.app-calendar-mode span { min-width: 74px; padding: 5px 12px; color: #5f8196; border-radius: 6px; font-size: 11px; font-weight: 700; text-align: center; }
.app-calendar-mode span:first-child { color: #fff; background: var(--app-blue); }
.app-lmp-selector {
  width: calc(100% - 32px);
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  margin: 15px 16px 8px;
  color: var(--app-blue-deep);
  background: #e3f2fd;
  border: 2px solid var(--app-blue);
  border-radius: 15px;
}
.app-lmp-selector strong { color: inherit; font-family: "Inter", sans-serif; font-size: clamp(17px, 2.3vw, 23px); letter-spacing: .08em; }
.app-chevron { margin-left: 3px; color: var(--app-blue); font-size: 22px; line-height: 1; transform: translateY(-2px); }

.app-ga-panel { padding-top: 3px; background: var(--app-bg); }
.app-ga-wheel { position: relative; width: 100%; max-width: 730px; aspect-ratio: 2.05 / 1; margin: 0 auto; }
.app-ga-wheel canvas { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }
.app-ga-value {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 8%;
  width: 82%;
  display: grid;
  justify-items: center;
  transform: translateX(-50%);
  pointer-events: none;
}
.app-ga-value small { color: #6b7f99; font-size: clamp(9px, 1.2vw, 12px); font-weight: 600; letter-spacing: .055em; }
.app-ga-value strong {
  margin-top: 6px;
  color: #1a2940;
  font-family: "Inter", sans-serif;
  font-size: clamp(30px, 5.2vw, 48px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.045em;
  white-space: nowrap;
}
.app-ga-value em { color: #4a6080; font-size: .32em; font-style: normal; font-weight: 500; letter-spacing: 0; }
.app-ga-badges { display: flex; justify-content: center; flex-wrap: wrap; gap: 10px; padding: 7px 16px 14px; }
.app-ga-badges > span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 34px;
  padding: 7px 14px;
  border-radius: 99px;
  font-size: 11px;
  font-weight: 700;
}
.app-ga-badges b { font-weight: 700; }
.app-term-badge { color: #d28a11; background: rgba(245,158,11,.1); border: 1px solid rgba(245,158,11,.52); }
.app-term-badge i { width: 7px; height: 7px; background: currentColor; border-radius: 50%; }
.app-trimester-badge { color: var(--app-amber); background: rgba(245,158,11,.09); border: 1px solid rgba(245,158,11,.52); }
.app-trimester-badge i { font-style: normal; }

.app-date-summary {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 16px;
  margin: 0 16px 14px;
  padding: 17px 20px;
  background: #fff;
  border: 1px solid #dceaf5;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(7,42,71,.08);
}
.app-date-summary > div { min-width: 0; display: grid; justify-items: start; }
.app-date-summary > i { width: 1px; min-height: 72px; background: #dceaf5; }
.app-date-summary small { color: #697987; font-size: 10px; }
.app-date-summary span { margin-top: 7px; padding: 2px 7px; color: #2cadd8; background: rgba(44,173,216,.12); border-radius: 5px; font-size: 9px; font-weight: 700; }
.app-date-summary span.edd-day { color: #1d9e75; background: rgba(29,158,117,.11); }
.app-date-summary strong { margin-top: 5px; color: #1a2940; font-family: "Inter", sans-serif; font-size: clamp(17px, 2.2vw, 22px); letter-spacing: -.02em; }
.app-date-summary em { margin-top: 1px; color: #9aa6af; font-size: 11px; font-style: normal; }

.app-booking-planner {
  padding: 12px 16px 9px;
  background: #e8f3fc;
  border-top: 1px solid #c5ddf0;
  border-bottom: 1px solid #c5ddf0;
}
.app-planner-head { min-height: 25px; display: flex; align-items: center; gap: 10px; }
.app-planner-head strong { display: inline-flex; align-items: center; gap: 5px; color: var(--app-blue); font-size: 12px; }
.app-planner-head > span { margin-left: auto; color: #98a8b3; font-size: 10px; }
.app-planner-head button {
  margin-left: auto;
  padding: 4px 9px;
  color: #fff;
  background: var(--app-blue);
  border: 0;
  border-radius: 6px;
  font-size: 10px;
  font-weight: 700;
  cursor: pointer;
}
.app-planner-head button:hover { background: var(--app-blue-deep); }
.app-planner-ruler { position: relative; height: 63px; margin-top: 3px; }
.app-planner-week-labels { position: absolute; inset: 0; pointer-events: none; }
.app-planner-week-labels span { position: absolute; top: 3px; color: var(--app-teal); font-size: 8px; font-weight: 800; transform: translateX(-50%); }
.app-planner-week-labels span:nth-child(-n+2) { color: var(--app-violet); }
.app-planner-week-labels span:nth-child(n+3):nth-child(-n+5) { color: var(--app-amber); }
.app-planner-track { position: absolute; left: 0; right: 0; top: 36px; height: 7px; border-radius: 99px; }
.app-track-segments,
.app-track-fill,
.app-track-ticks { position: absolute; inset: 0; border-radius: inherit; }
.app-track-segments {
  background: linear-gradient(90deg,
    rgba(124,58,237,.18) 0 30.95%,
    rgba(245,158,11,.18) 30.95% 64.29%,
    rgba(13,148,136,.18) 64.29% 100%);
}
.app-track-fill {
  background: linear-gradient(90deg,
    var(--app-violet) 0 30.95%,
    var(--app-amber) 30.95% 64.29%,
    var(--app-teal) 64.29% 100%);
  clip-path: inset(0 calc(100% - var(--planner-progress)) 0 0);
  transition: clip-path .08s linear;
}
.app-track-ticks {
  top: -15px;
  height: 15px;
  background: repeating-linear-gradient(90deg, rgba(46,96,125,.25) 0 1px, transparent 1px calc(100% / 42));
  border-radius: 0;
}
.app-planner-ruler input {
  position: absolute;
  z-index: 5;
  top: 24px;
  left: 0;
  width: 100%;
  height: 31px;
  margin: 0;
  padding: 0;
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  cursor: ew-resize;
  touch-action: pan-y;
}
.app-planner-ruler input::-webkit-slider-runnable-track { height: 0; background: transparent; border: 0; }
.app-planner-ruler input::-webkit-slider-thumb {
  width: 22px;
  height: 22px;
  margin-top: -11px;
  appearance: none;
  -webkit-appearance: none;
  background: var(--planner-thumb);
  border: 3px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 10px var(--planner-glow), 0 5px 14px rgba(7,42,71,.18);
  transition: background .15s ease, box-shadow .15s ease;
}
.app-planner-ruler input::-moz-range-track { height: 0; background: transparent; border: 0; }
.app-planner-ruler input::-moz-range-thumb {
  width: 17px;
  height: 17px;
  background: var(--planner-thumb);
  border: 3px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 10px var(--planner-glow), 0 5px 14px rgba(7,42,71,.18);
}
.app-booking-planner.is-active {
  --planner-thumb: #ef9f27;
  --planner-glow: rgba(239,159,39,.18);
}
.app-booking-planner.is-dragging {
  --planner-glow: rgba(239,159,39,.25);
}
.app-planner-live {
  max-width: 580px;
  display: grid;
  grid-template-columns: auto auto 1fr;
  gap: 16px;
  align-items: center;
  margin: 3px auto 5px;
  padding: 12px 20px;
  background: #fff;
  border: 2px solid rgba(239,159,39,.58);
  border-radius: 15px;
  box-shadow: 0 7px 18px rgba(239,159,39,.12);
}
.app-planner-live > strong { color: #1a2940; font-family: "Inter", sans-serif; font-size: clamp(28px, 4vw, 39px); line-height: 1; letter-spacing: -.05em; white-space: nowrap; }
.app-planner-live > strong em { color: #4a6080; font-size: .35em; font-style: normal; font-weight: 500; letter-spacing: 0; }
.app-planner-live > i { width: 1px; height: 39px; background: rgba(239,159,39,.42); }
.app-planner-live > div { min-width: 0; display: grid; }
.app-planner-live b { overflow: hidden; color: #ef9f27; font-size: 14px; text-overflow: ellipsis; white-space: nowrap; }
.app-planner-live small { margin-top: 3px; color: #b45309; font-size: 10px; }
.app-planner-result { display: flex; justify-content: center; align-items: center; flex-wrap: wrap; gap: 8px; padding: 5px 0 1px; color: #1a3a5c; font-size: 12px; }
.app-planner-result strong { color: #1a3a5c; }
.app-planner-result > span { color: #a8b3bb; font-size: 15px; }
.app-planner-result b { color: #ef9f27; }
.app-planner-result small { color: #b45309; }

.app-demo-foot { display: flex; align-items: center; justify-content: center; gap: 16px; padding: 14px 18px 16px; color: #6d8190; background: rgba(255,255,255,.56); font-size: 10px; }
.app-demo-foot > span { flex: 0 0 auto; display: inline-flex; align-items: center; gap: 7px; color: var(--app-blue-deep); font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.app-demo-foot > span i { width: 7px; height: 7px; background: #28b39d; border-radius: 50%; box-shadow: 0 0 0 5px rgba(40,179,157,.12); }
.app-demo-foot p { margin: 0; }
.app-demo-foot b { color: #466276; }

/* Product sections */
.intro-section { background: var(--page); }
.capability-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.capability-card {
  position: relative;
  min-height: 330px;
  padding: clamp(28px, 4vw, 45px);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}
.capability-card::after { content: ""; position: absolute; width: 170px; height: 170px; right: -90px; bottom: -90px; background: var(--blue-50); border-radius: 50%; }
.capability-primary { color: rgba(255,255,255,.74); background: var(--navy-900); border-color: var(--navy-900); }
.capability-primary h3 { color: #fff; }
.capability-primary::after { background: rgba(43,157,232,.18); box-shadow: 0 0 0 30px rgba(43,157,232,.07); }
.card-index { position: absolute; top: 27px; right: 30px; color: #9bb0c0; font-size: 11px; font-weight: 800; letter-spacing: .1em; }
.capability-primary .card-index { color: rgba(255,255,255,.38); }
.capability-symbol { width: 66px; height: 66px; display: grid; place-items: center; margin-bottom: 42px; color: var(--navy-800); background: var(--blue-100); border-radius: 18px; font-family: "Outfit"; font-size: 22px; font-weight: 800; }
.capability-primary .capability-symbol { color: #fff; background: rgba(43,157,232,.24); border: 1px solid rgba(255,255,255,.12); }
.pulse-symbol { color: var(--teal-600); background: var(--teal-100); font-size: 38px; }
.patient-symbol { color: var(--pink-600); background: var(--pink-100); font-size: 30px; }
.report-symbol { color: var(--violet-600); background: var(--violet-100); font-size: 13px; letter-spacing: .04em; }
.capability-card p { max-width: 590px; color: var(--muted); }
.capability-primary p { color: rgba(255,255,255,.7); }
.micro-list { display: flex; flex-wrap: wrap; gap: 7px; margin: 22px 0 0; padding: 0; list-style: none; }
.micro-list li { padding: 5px 10px; color: #d3eeff; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.13); border-radius: 99px; font-size: 10px; font-weight: 800; }

.toolkit-section { position: relative; color: rgba(255,255,255,.7); background: var(--navy-950); }
.toolkit-heading { display: grid; grid-template-columns: 1.05fr .7fr; gap: 8vw; align-items: end; margin-bottom: 50px; }
.toolkit-heading h2 { color: #fff; }
.toolkit-heading > p { margin-bottom: 8px; }
.tool-directory { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.tool-group { padding: 26px; background: rgba(255,255,255,.055); border: 1px solid rgba(255,255,255,.1); border-radius: 18px; }
.tool-group-head { display: grid; grid-template-columns: auto 1fr auto; gap: 13px; align-items: center; padding-bottom: 18px; border-bottom: 1px solid rgba(255,255,255,.09); }
.group-dot { width: 12px; height: 12px; display: block; border-radius: 50%; box-shadow: 0 0 0 6px rgba(255,255,255,.04); }
.group-dot.amber { background: #f7ac42; }.group-dot.violet { background: #a98cff; }.group-dot.blue { background: #5cc1ff; }.group-dot.teal { background: #54d5c4; }.group-dot.pink { background: #e78bc6; }.group-dot.slate { background: #a8bdcc; }
.tool-group-head div { display: grid; }
.tool-group-head small { color: #7fa3bd; font-size: 9px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.tool-group-head h3 { margin: 2px 0 0; color: #fff; font-size: 18px; }
.tool-group-head b { color: #7fa3bd; font-size: 11px; }
.tool-group ul { display: flex; flex-wrap: wrap; gap: 7px; margin: 18px 0 0; padding: 0; list-style: none; }
.tool-group li { padding: 6px 10px; color: #cfdeea; background: rgba(255,255,255,.05); border-radius: 7px; font-size: 11px; }
.directory-note { max-width: 980px; margin: 34px auto 0; padding: 17px 22px; color: #a9c1d2; background: rgba(43,157,232,.08); border: 1px solid rgba(43,157,232,.18); border-radius: 13px; font-size: 12px; text-align: center; }

.workflow-section { background: #fff; }
.workflow-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.workflow-card { min-height: 455px; display: flex; flex-direction: column; padding: 30px; background: var(--page); border: 1px solid var(--line); border-radius: var(--radius-md); }
.workflow-card > span { color: var(--navy-800); font-size: 10px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.workflow-card h3 { margin-top: 32px; font-size: 27px; }
.workflow-card > p { color: var(--muted); }
.mini-patient, .evidence-list { display: grid; grid-template-columns: auto 1fr auto; gap: 11px; align-items: center; margin-top: auto; padding: 15px; background: #fff; border: 1px solid var(--line); border-radius: 13px; box-shadow: var(--shadow-sm); }
.mini-patient .avatar { width: 42px; height: 42px; display: grid; place-items: center; color: #fff; background: var(--pink-600); border-radius: 50%; font-size: 12px; font-weight: 800; }
.mini-patient div:nth-child(2), .evidence-list div { display: grid; }
.mini-patient small, .evidence-list small { color: var(--muted); font-size: 10px; }
.mini-patient > span { color: var(--navy-800); font-size: 10px; font-weight: 800; }
.mini-report { margin-top: auto; overflow: hidden; background: #fff; border: 1px solid var(--line); border-radius: 13px; box-shadow: var(--shadow-sm); }
.report-bar { display: flex; align-items: center; justify-content: space-between; padding: 12px 14px; color: #fff; background: var(--navy-800); }
.report-bar b { font-size: 12px; }.report-bar small { font-size: 8px; opacity: .72; }
.mini-report > div:last-child { display: grid; grid-template-columns: 1fr 1fr; }
.mini-report > div:last-child span { display: grid; padding: 14px; }
.mini-report > div:last-child span + span { border-left: 1px solid var(--line); }
.mini-report small { color: var(--muted); font-size: 8px; }
.mini-report strong { color: var(--ink); font-size: 13px; }
.evidence-list i { width: 36px; height: 42px; display: block; background: var(--teal-100); border: 1px solid #b9e6df; border-radius: 5px; box-shadow: inset 0 7px 0 var(--teal-600); }
.evidence-list b { width: 25px; height: 25px; display: grid; place-items: center; color: #fff; background: var(--teal-600); border-radius: 50%; font-size: 11px; }

.availability-section {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr .6fr;
  gap: 8vw;
  align-items: center;
  color: var(--text);
  background:
    radial-gradient(circle at 83% 18%, rgba(212,138,187,.27), transparent 31%),
    radial-gradient(circle at 8% 90%, rgba(43,157,232,.2), transparent 30%),
    linear-gradient(135deg, #edf7fd 0%, #f7fbfe 48%, #f9eaf4 100%);
}
.availability-copy { max-width: 750px; }
.availability-section .eyebrow.light { color: var(--pink-600); }
.availability-copy h2 { color: var(--navy-950); }
.availability-copy > p:not(.eyebrow):not(.store-fineprint) { color: #466276; font-size: 18px; }
.store-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.store-button { position: relative; min-width: 190px; min-height: 63px; display: flex; align-items: center; gap: 12px; padding: 10px 15px; color: var(--navy-950); background: #fff; border: 1px solid rgba(255,255,255,.45); border-radius: 13px; box-shadow: 0 18px 40px rgba(0,0,0,.2); }
.store-button > span:nth-child(2) { display: grid; line-height: 1.05; }
.store-button small { font-size: 8px; font-weight: 800; letter-spacing: .08em; }
.store-button strong { margin-top: 4px; font-size: 16px; }
.store-mark { width: 31px; height: 31px; display: grid; place-items: center; color: #fff; background: var(--navy-950); border-radius: 8px; font-size: 14px; font-weight: 800; }
.play-mark { color: #48c7a5; }
.apple-mark { font-family: "Outfit"; }
.store-pending { color: var(--text); background: rgba(255,255,255,.58); border-color: #c7dce8; box-shadow: 0 16px 35px rgba(7,42,71,.08); }
.store-pending .store-mark { background: var(--navy-800); }
.store-pending em { position: absolute; top: -8px; right: -5px; padding: 4px 7px; color: var(--navy-900); background: #bfe8ff; border-radius: 6px; font-size: 8px; font-style: normal; font-weight: 800; text-transform: uppercase; }
.official-store-actions { align-items: center; gap: 14px; }
.official-store-badge {
  position: relative;
  min-height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform .28s ease, filter .28s ease;
}
.official-store-badge img { width: auto; max-width: none; height: 56px; object-fit: contain; }
.official-store-badge.google-play-badge img { height: 68px; }
a.official-store-badge:hover { filter: drop-shadow(0 13px 20px rgba(5,28,46,.2)); transform: translateY(-3px); }
.pending-store-badge { cursor: default; }
.pending-store-badge img { opacity: .9; }
.pending-store-badge em {
  position: absolute;
  top: -8px;
  right: -9px;
  padding: 6px 9px;
  color: #083a5d;
  background: #bfe8ff;
  border: 2px solid #fff;
  border-radius: 8px;
  box-shadow: 0 8px 18px rgba(7,42,71,.15);
  font-size: 9px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.store-fineprint { max-width: 650px; margin-top: 17px; color: var(--muted); font-size: 10px; }
.availability-mark { display: grid; justify-items: center; }
.availability-mark img { width: min(310px, 65vw); border: 7px solid rgba(255,255,255,.8); border-radius: 27%; box-shadow: 0 35px 75px rgba(7,42,71,.22); transform: rotate(3deg); }
.availability-mark div { display: grid; justify-items: center; margin-top: 22px; line-height: 1.1; }
.availability-mark .availability-wordmark { width: 178px; height: auto; padding: 0; background: transparent; border: 0; border-radius: 0; box-shadow: none; transform: none; }
.availability-mark small { margin-top: 7px; color: var(--navy-800); font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }

/* Distinct Hijri portal */
.hijri-portal {
  position: relative;
  min-height: 880px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(370px, .72fr);
  gap: clamp(50px, 9vw, 120px);
  align-items: center;
  overflow: hidden;
  padding: clamp(82px, 9vw, 130px) max(24px, calc((100vw - var(--content)) / 2));
  color: rgba(255,255,255,.78);
  background: linear-gradient(145deg, #00669b 0%, #0b95c9 58%, #38b9dc 100%);
}
.hijri-portal::after { content: ""; position: absolute; width: 550px; height: 280px; left: -160px; bottom: -190px; background: rgba(255,255,255,.1); border-radius: 50%; box-shadow: 0 -38px 0 rgba(255,255,255,.06); transform: rotate(8deg); }
.hijri-orbit { position: absolute; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; }
.orbit-one { width: 510px; height: 510px; top: -320px; right: -180px; }
.orbit-two { width: 390px; height: 390px; top: -250px; right: -120px; }
.hijri-copy { position: relative; z-index: 2; max-width: 720px; }
.hijri-brand-lockup { display: flex; align-items: center; gap: 15px; margin-bottom: 45px; }
.hijri-brand-lockup img { width: 82px; height: 82px; border: 4px solid rgba(255,255,255,.55); border-radius: 22px; box-shadow: 0 18px 45px rgba(0,54,89,.28); }
.hijri-brand-lockup div { display: grid; }
.hijri-brand-lockup small { color: #c8effd; font-size: 9px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.hijri-brand-lockup strong { margin-top: 2px; color: #fff; font-family: "Outfit"; font-size: 31px; }
.hijri-copy h2 { color: #fff; }
.hijri-copy h2 em { color: #ffd1b8; font-style: normal; }
.hijri-copy > p:not(.eyebrow) { font-size: 18px; }
.hijri-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; margin-top: 30px; }
.hijri-button { color: #066a9d; background: #fff; box-shadow: 0 16px 35px rgba(0,72,108,.25); }
.hijri-text-link { color: #e3f7ff; font-size: 13px; font-weight: 800; }
.hijri-device-wrap { position: relative; z-index: 2; min-height: 735px; display: grid; place-items: center; }
.device-hijri { transform: rotate(-2.2deg); }
.device-hijri .device-screen img { height: 100%; transform: none; }
.light-label { bottom: -4px; color: rgba(255,255,255,.65); }

.about-teaser { display: grid; grid-template-columns: 1fr .75fr; gap: 8vw; align-items: center; background: #fff; }
.about-copy { max-width: 720px; }
.about-copy > p:not(.eyebrow) { color: var(--muted); font-size: 18px; }
.team-monogram { position: relative; min-height: 390px; }
.monogram { position: absolute; display: grid; place-items: center; color: #fff; border: 8px solid #fff; border-radius: 50%; box-shadow: var(--shadow-lg); font-family: "Outfit"; font-weight: 800; }
.monogram-one { width: 205px; height: 205px; top: 0; left: 12%; background: var(--navy-800); }
.monogram-two { width: 170px; height: 170px; top: 115px; right: 7%; background: var(--pink-600); }
.monogram-three { width: 128px; height: 128px; top: 225px; left: 9%; background: var(--teal-600); }
.monogram-one { overflow: hidden; }
.monogram-one img { width: 100%; height: 100%; object-fit: cover; }
.team-monogram > span { position: absolute; right: 0; bottom: 2px; max-width: 245px; display: grid; padding: 16px; background: var(--page); border: 1px solid var(--line); border-radius: 13px; box-shadow: var(--shadow-sm); }
.team-monogram small { margin-top: 4px; color: var(--muted); font-size: 10px; }

.clinical-note {
  display: grid;
  grid-template-columns: auto .8fr 1fr;
  gap: 25px 45px;
  align-items: center;
  padding: 50px max(24px, calc((100vw - var(--content)) / 2));
  color: #5a443d;
  background: #fff3ec;
  border-top: 1px solid #f3d8c9;
  border-bottom: 1px solid #f3d8c9;
}
.clinical-note-mark { width: 58px; height: 58px; display: grid; place-items: center; color: #fff; background: #c95c2f; border-radius: 17px; font-size: 30px; font-weight: 700; }
.clinical-note .eyebrow { margin: 0 0 8px; color: #a43d20; }
.clinical-note h2 { margin: 0; font-size: clamp(25px, 3vw, 37px); }
.clinical-note > p { margin: 0; font-size: 13px; }

/* Footer */
.site-footer {
  padding: 65px max(24px, calc((100vw - var(--content)) / 2)) 28px;
  color: #5b7184;
  background: linear-gradient(180deg, #eef7fc 0%, #f8edf5 100%);
  border-top: 1px solid #d4e3ed;
}
.footer-top { display: grid; grid-template-columns: 1.4fr repeat(3, .7fr); gap: 50px; padding-bottom: 45px; border-bottom: 1px solid rgba(11,79,130,.14); }
.footer-logo .brand-icon { width: 54px; height: 54px; border-color: #c5dae7; }
.footer-logo .brand-wordmark { padding: 0; background: transparent; border-radius: 0; }
.footer-logo .brand-copy small { color: var(--muted); }
.footer-top > div:first-child > p { max-width: 290px; margin: 20px 0 0; font-size: 13px; }
.footer-column { display: grid; align-content: start; gap: 9px; font-size: 12px; }
.footer-column strong { margin-bottom: 8px; color: var(--navy-950); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; }
.footer-column a:hover { color: var(--pink-600); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 24px; font-size: 10px; }
.mobile-download { display: none; }

/* About page */
.subpage-hero {
  min-height: 620px;
  display: grid;
  align-content: center;
  padding: 90px max(24px, calc((100vw - var(--content)) / 2));
  color: #466276;
  background:
    radial-gradient(circle at 82% 30%, rgba(212,138,187,.27), transparent 29%),
    radial-gradient(circle at 12% 90%, rgba(43,157,232,.2), transparent 31%),
    linear-gradient(145deg, #fbfdff, #eaf5fd 58%, #f8eaf3);
}
.subpage-hero-inner { max-width: 900px; }
.subpage-hero .hero-brand { margin-bottom: 30px; }
.subpage-hero .eyebrow.light { color: var(--pink-600); }
.subpage-hero h1 { margin-bottom: 24px; color: var(--navy-950); font-size: clamp(60px, 8vw, 108px); line-height: .98; }
.subpage-hero h1 em { color: var(--pink-600); font-style: normal; }
.subpage-hero .lead { max-width: 780px; font-size: 21px; }
.story-grid { display: grid; grid-template-columns: .8fr 1.1fr; gap: 8vw; align-items: start; }
.story-aside { position: sticky; top: 110px; }
.story-aside .eyebrow { margin-bottom: 18px; }
.story-aside blockquote { margin: 0; color: var(--ink); font-family: "Outfit"; font-size: clamp(29px, 3vw, 44px); font-weight: 700; line-height: 1.2; letter-spacing: -.04em; }
.story-copy p { color: var(--muted); font-size: 18px; }
.team-section { background: #fff; }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; }
.person-card { overflow: hidden; background: var(--page); border: 1px solid var(--line); border-radius: var(--radius-md); }
.person-visual { height: 330px; display: grid; place-items: center; overflow: hidden; background: var(--blue-100); }
.person-visual img { width: 100%; height: 100%; object-fit: cover; }
.person-visual.initials { color: #fff; background: linear-gradient(145deg, var(--pink-600), var(--pink-400)); font-family: "Outfit"; font-size: 72px; font-weight: 800; }
.person-visual.ayman { background: #dceef7; }
.person-card-content { padding: 25px; }
.role-label { display: inline-block; margin-bottom: 15px; padding: 5px 8px; color: var(--navy-800); background: var(--blue-100); border-radius: 6px; font-size: 9px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.person-card h3 { margin-bottom: 5px; font-size: 23px; }
.person-card p { color: var(--muted); font-size: 13px; }
.person-links { display: flex; gap: 12px; margin-top: 18px; color: var(--navy-800); font-size: 12px; font-weight: 800; }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.value-card { padding: 25px; background: #fff; border: 1px solid var(--line); border-radius: 17px; }
.value-card span { color: var(--blue-500); font-family: "Outfit"; font-size: 28px; font-weight: 800; }
.value-card h3 { margin-top: 28px; font-size: 18px; }
.value-card p { margin: 0; color: var(--muted); font-size: 12px; }
.contact-band { display: grid; grid-template-columns: 1fr auto; gap: 30px; align-items: center; padding: 55px max(24px, calc((100vw - var(--content)) / 2)); color: rgba(255,255,255,.7); background: var(--navy-800); }
.contact-band h2 { margin: 0 0 7px; color: #fff; font-size: clamp(30px, 4vw, 52px); }
.contact-band p { margin: 0; }

/* Legal and account pages */
.legal-hero {
  position: relative;
  overflow: hidden;
  padding: 100px max(24px, calc((100vw - 1060px) / 2)) 80px;
  color: rgba(255,255,255,.78);
  background:
    radial-gradient(circle at 85% 15%, rgba(212,138,187,.22), transparent 26%),
    linear-gradient(145deg, var(--navy-950), var(--navy-800));
}
.legal-hero .eyebrow { color: #a7dcff; }
.legal-hero h1 { margin-bottom: 22px; color: #fff; font-size: clamp(54px, 7vw, 86px); line-height: 1; }
.policy-lead { max-width: 820px; font-size: 18px; }
.policy-meta { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 24px; }
.policy-meta span { padding: 6px 10px; color: #d6ebf8; border: 1px solid rgba(255,255,255,.22); border-radius: 99px; font-size: 9px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.legal-wrap { max-width: 1060px; margin: 0 auto; padding: 55px 24px 100px; }
.policy-card { scroll-margin-top: 100px; margin-bottom: 12px; padding: clamp(25px, 4vw, 42px); background: #fff; border: 1px solid var(--line); border-radius: 18px; box-shadow: 0 8px 24px rgba(7,42,71,.04); }
.policy-card h2 { margin-bottom: 16px; font-size: clamp(24px, 3vw, 34px); }
.policy-card p, .policy-card li { color: #536a7c; font-size: 14px; }
.policy-card ul { display: grid; gap: 8px; padding-left: 20px; }
.policy-card a { color: var(--navy-800); font-weight: 800; }
.policy-card code { padding: .15em .38em; color: var(--ink); background: var(--blue-50); border-radius: 5px; overflow-wrap: anywhere; }
.policy-contact { color: rgba(255,255,255,.7); background: var(--navy-900); border-color: var(--navy-900); }
.policy-contact h2, .policy-contact p, .policy-contact a { color: #fff; }
.privacy-overview, .policy-summary {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 35px;
  margin-bottom: 18px;
  padding: clamp(28px,5vw,50px);
  background: var(--blue-50);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}
.privacy-overview h2, .policy-summary h2 { margin: 0; font-size: clamp(32px, 4vw, 48px); }
.privacy-facts, .policy-facts { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; margin: 0; padding: 0; list-style: none; }
.privacy-facts li, .policy-facts li { display: grid; padding: 13px; background: #fff; border: 1px solid var(--line); border-radius: 10px; }
.privacy-facts strong, .policy-facts strong { color: var(--navy-800); font-size: 12px; }
.privacy-facts span, .policy-facts span { color: var(--muted); font-size: 10px; }
.policy-contents, .policy-toc { margin-bottom: 18px; padding: 22px; background: #fff; border: 1px solid var(--line); border-radius: 14px; }
.policy-contents ol, .policy-toc ol { columns: 2; gap: 30px; margin-bottom: 0; }
.policy-contents a, .policy-toc a { color: var(--navy-800); font-size: 12px; }
.policy-kicker { color: var(--navy-800); font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.account-delete-section, .account-delete-panel { max-width: 1060px; margin: 0 auto; }
.account-delete-panel { padding: 45px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-md); }
.legal-actions, .connect-actions, .person-links { display: flex; flex-wrap: wrap; gap: 10px; }
.site-footer > .footer-brand { display: flex; align-items: center; gap: 10px; color: var(--navy-950); font-family: "Outfit"; font-weight: 800; }
.site-footer > .footer-brand img { width: 45px; height: 45px; background: #fff; border: 1px solid #c5dae7; border-radius: 12px; }
.site-footer > p { max-width: 650px; margin: 20px 0; font-size: 13px; }
.site-footer > .footer-links { display: flex; flex-wrap: wrap; gap: 10px 18px; font-size: 12px; font-weight: 700; }
.site-footer > .footer-links a:hover { color: var(--pink-600); }

@media (max-width: 1120px) {
  .site-nav { gap: 0; }
  .site-nav > a, .nav-more > summary { padding-inline: 7px; }
  .hero { grid-template-columns: 1fr 370px; gap: 35px; }
  .screen-note-top { right: -10px; }
  .screen-note-bottom { left: -20px; }
  .proof-bar { margin-inline: 24px; }
  .footer-top { grid-template-columns: 1.2fr repeat(3, .8fr); gap: 30px; }
}

@media (max-width: 900px) {
  html { scroll-padding-top: 72px; }
  .site-header { min-height: 72px; padding-inline: 18px; }
  .brand-icon { width: 44px; height: 44px; border-radius: 13px; }
  .brand-copy small { display: none; }
  .menu-button { display: block; }
  .site-nav {
    position: fixed;
    inset: 72px 12px auto;
    max-height: calc(100svh - 84px);
    display: none;
    overflow: auto;
    align-items: stretch;
    flex-direction: column;
    padding: 12px;
    color: var(--text);
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 17px;
    box-shadow: var(--shadow-lg);
  }
  body.nav-open .site-nav { display: flex; }
  .site-nav > a, .nav-more > summary { width: 100%; padding: 12px; text-align: left; }
  .nav-cta { margin: 5px 0 0; text-align: center !important; }
  .nav-more > div { position: static; width: auto; margin: 4px 0 8px 12px; padding: 4px; border: 0; border-left: 2px solid var(--blue-100); border-radius: 0; box-shadow: none; }
  .hero, .hijri-portal { grid-template-columns: 1fr; }
  .hero { padding-top: 70px; }
  .hero-copy { max-width: 760px; }
  .hero-product { min-height: 760px; }
  .proof-bar { grid-template-columns: repeat(2, 1fr); }
  .section-heading, .toolkit-heading, .availability-section, .about-teaser, .story-grid, .motion-heading { grid-template-columns: 1fr; }
  .motion-heading { gap: 8px; }
  .section-heading .eyebrow { grid-column: auto; }
  .section-heading { gap: 8px; }
  .capability-grid, .tool-directory { grid-template-columns: 1fr; }
  .workflow-grid { grid-template-columns: 1fr; }
  .workflow-card { min-height: 360px; }
  .availability-mark { order: -1; }
  .availability-mark img { width: 230px; }
  .hijri-copy { max-width: 760px; }
  .hijri-device-wrap { min-height: 760px; }
  .team-monogram { width: min(560px, 100%); }
  .clinical-note { grid-template-columns: auto 1fr; }
  .clinical-note > p { grid-column: 2; }
  .footer-top { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-column:last-child { grid-column: 2 / -1; }
  .story-aside { position: static; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 620px) {
  body { padding-bottom: 76px; }
  .section { padding-inline: 18px; }
  h2 { font-size: clamp(36px, 12vw, 52px); }
  .hero { min-height: auto; padding: 52px 18px 74px; }
  .hero-brand { margin-bottom: 28px; }
  .hero-brand > img { width: 64px; height: 64px; border-radius: 19px; }
  .hero-wordmark { width: 145px; }
  .hero h1 { font-size: clamp(53px, 16vw, 74px); }
  .hero-lead { font-size: 17px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .button { width: 100%; }
  .hero-trust { display: grid; }
  .hero-product { min-height: 660px; }
  .device { width: 305px; height: 635px; border-radius: 46px; }
  .device-screen { border-radius: 36px; }
  .screen-note { display: none; }
  .capture-label { bottom: -10px; font-size: 8px; }
  .proof-bar { margin: -28px 14px 0; border-radius: 16px; }
  .proof-bar div { min-height: 96px; padding: 18px; }
  .proof-bar strong { font-size: 25px; }
  .proof-bar span { font-size: 10px; }
  .motion-heading > p { font-size: 15px; }
  .app-demo-shell { border-radius: 20px; }
  .app-date-strip { align-items: stretch; flex-direction: column; gap: 9px; }
  .app-calendar-mode { align-self: stretch; }
  .app-calendar-mode span { min-width: 0; flex: 1; }
  .app-lmp-selector { min-height: 60px; margin-top: 10px; }
  .app-ga-wheel { aspect-ratio: 1.95 / 1; }
  .app-ga-value { bottom: 7%; }
  .app-ga-value strong { font-size: clamp(28px, 9.5vw, 38px); }
  .app-date-summary { gap: 10px; margin-inline: 10px; padding: 14px 12px; }
  .app-date-summary > i { min-height: 65px; }
  .app-date-summary strong { font-size: 16px; }
  .app-booking-planner { padding-inline: 11px; }
  .app-planner-head > span { max-width: 180px; text-align: right; }
  .app-planner-live { grid-template-columns: auto auto minmax(0, 1fr); gap: 9px; padding: 12px; }
  .app-planner-live > strong { font-size: 27px; }
  .app-planner-live b { font-size: 11px; }
  .app-demo-foot { align-items: flex-start; flex-direction: column; gap: 7px; }
  .capability-card { min-height: auto; padding: 25px; }
  .capability-symbol { margin-bottom: 34px; }
  .toolkit-section { padding-inline: 18px; }
  .tool-group { padding: 21px; }
  .workflow-card { min-height: 390px; padding: 24px; }
  .availability-section { padding-inline: 18px; text-align: center; }
  .availability-copy { display: grid; justify-items: center; }
  .store-actions { width: 100%; flex-direction: column; }
  .store-button { width: 100%; text-align: left; }
  .hijri-portal { min-height: auto; padding: 78px 18px; }
  .hijri-brand-lockup { align-items: flex-start; }
  .hijri-brand-lockup img { width: 72px; height: 72px; }
  .hijri-copy > p:not(.eyebrow) { font-size: 16px; }
  .hijri-actions { align-items: stretch; flex-direction: column; }
  .hijri-device-wrap { min-height: 650px; }
  .about-teaser { padding-inline: 18px; }
  .team-monogram { min-height: 350px; }
  .monogram-one { width: 175px; height: 175px; left: 0; }
  .monogram-two { width: 145px; height: 145px; right: 0; }
  .monogram-three { width: 105px; height: 105px; left: 1%; top: 210px; }
  .team-monogram > span { max-width: 205px; }
  .clinical-note { grid-template-columns: 1fr; padding-inline: 18px; }
  .clinical-note > p { grid-column: auto; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-top > div:first-child { grid-column: 1 / -1; }
  .footer-column:last-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
  .mobile-download {
    position: fixed;
    z-index: 75;
    inset: auto 0 0;
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 10px 14px;
    background: rgba(255,255,255,.96);
    border-top: 1px solid var(--line);
    box-shadow: 0 -10px 28px rgba(6,26,46,.11);
    backdrop-filter: blur(16px);
  }
  .mobile-download > div { min-width: 0; display: flex; align-items: center; gap: 9px; }
  .mobile-download > div > img { width: 45px; height: 45px; border-radius: 12px; }
  .mobile-download span { min-width: 0; display: grid; line-height: 1.05; }
  .mobile-download .mobile-wordmark { width: 86px; height: auto; border-radius: 0; }
  .mobile-download strong { color: var(--ink); font-size: 13px; }
  .mobile-download small { margin-top: 4px; overflow: hidden; color: var(--muted); font-size: 9px; white-space: nowrap; text-overflow: ellipsis; }
  .mobile-download > a { flex: 0 0 auto; padding: 10px 13px; color: #fff; background: var(--navy-800); border-radius: 9px; font-size: 11px; font-weight: 800; }
  .subpage-hero { min-height: 540px; padding-inline: 18px; }
  .subpage-hero h1 { font-size: clamp(54px, 15vw, 76px); }
  .team-grid, .values-grid { grid-template-columns: 1fr; }
  .person-visual { height: 380px; }
  .contact-band { grid-template-columns: 1fr; padding-inline: 18px; }
  .legal-hero { padding: 70px 18px 55px; }
  .legal-wrap { padding-inline: 14px; }
  .privacy-overview, .policy-summary, .privacy-facts, .policy-facts { grid-template-columns: 1fr; }
  .policy-contents ol, .policy-toc ol { columns: 1; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .button, .primary-button, .secondary-button { transition: none; }
}

/* ============================================================================
   Brand system + motion
   Vector logo lockups, scroll choreography, and interaction polish.
   Every effect below degrades to a static layout under
   `prefers-reduced-motion: reduce` (see the block at the end of this file).
   ========================================================================== */

:root {
  --ease-out: cubic-bezier(.22, .68, 0, 1);
  --ease-spring: cubic-bezier(.34, 1.32, .46, 1);
  --brand-navy: #0f4c81;
  --brand-mauve: #b05d95;
  --brand-blue: #4a90e2;
}

/* ---------- Logo lockups ---------- */
.brand-icon, .brand-mark {
  position: relative;
  overflow: visible;
  background: linear-gradient(150deg, #fff, #f2f8fd);
  transition: transform .5s var(--ease-spring), box-shadow .5s var(--ease-out);
}
.brand-icon > img, .brand-icon > svg, .brand-mark > img, .brand-mark > svg {
  width: 78%;
  height: 78%;
  object-fit: contain;
}
.brand:hover .brand-icon, .brand:hover .brand-mark {
  transform: translateY(-2px) rotate(-4deg);
  box-shadow: 0 14px 30px rgba(11, 79, 130, .22);
}
.brand-wordmark, .hero-wordmark, .availability-wordmark, .mobile-wordmark {
  height: auto;
  display: block;
}
.brand-wordmark { width: 128px; }
.brand:hover .brand-wordmark { --wm-text: #9c4b81; }
.brand-copy small { transition: color .3s var(--ease-out); }

/* Hero signature lockup */
.hero-brand {
  position: relative;
  gap: 18px;
  padding: 10px 20px 10px 10px;
  background: linear-gradient(115deg, rgba(255, 255, 255, .82), rgba(255, 255, 255, .38));
  border: 1px solid rgba(255, 255, 255, .75);
  border-radius: 26px;
  box-shadow: 0 18px 45px rgba(11, 79, 130, .1);
  backdrop-filter: blur(10px);
}
.hero-brand > img, .hero-brand > .hero-mark {
  width: 76px;
  height: 76px;
  flex: 0 0 auto;
  padding: 7px;
  background: #fff;
  border: 1px solid rgba(11, 79, 130, .1);
  border-radius: 23px;
  box-shadow: 0 14px 34px rgba(11, 79, 130, .18);
}
.hero-brand-copy { gap: 3px; }
.hero-wordmark { width: 190px; filter: drop-shadow(0 6px 14px rgba(11, 79, 130, .14)); }
.hero-brand small { display: flex; align-items: center; gap: 7px; margin-top: 6px; }
.hero-brand small::before {
  content: "";
  width: 18px;
  height: 2px;
  background: linear-gradient(90deg, var(--brand-navy), var(--brand-mauve));
  border-radius: 99px;
}
.availability-mark .mark-vector {
  width: min(310px, 65vw);
  /* the width/height attributes are a presentational hint; without this the
     square mark inherits the 128px attribute height and flattens */
  height: auto;
  aspect-ratio: 1;
  padding: 26px;
  background: linear-gradient(150deg, #fff, #eef6fd);
  border: 7px solid rgba(255, 255, 255, .8);
  border-radius: 27%;
  box-shadow: 0 35px 75px rgba(7, 42, 71, .22);
  transform: rotate(3deg);
  transition: transform .7s var(--ease-spring);
}
.availability-mark:hover .mark-vector { transform: rotate(-2deg) scale(1.03); }

/* Logo build-in: the dial sweeps in, then the glyphs rise in reading order */
.js .hero-brand .hero-mark { opacity: 0; transform: scale(.72) rotate(-32deg); }
.js .hero-brand .wm-glyph { opacity: 0; transform: translateY(16px); }
.hero-brand.is-lit .hero-mark {
  opacity: 1;
  transform: none;
  transition: opacity .7s var(--ease-out), transform .9s var(--ease-spring);
}
.hero-brand.is-lit .wm-glyph {
  opacity: 1;
  transform: none;
  transition: opacity .55s var(--ease-out), transform .7s var(--ease-spring);
  transition-delay: calc(.22s + var(--glyph-index, 0) * .062s);
}
.hero-wordmark .wm-glyph { transform-box: fill-box; transform-origin: 50% 100%; }

/* The dial keeps a slow live rotation, like a gauge settling */
.hero-mark .mk-notches { transform-origin: 64px 64px; }
.hero-brand.is-lit .hero-mark .mk-notches { animation: dial-settle 1.4s .5s var(--ease-spring) both; }
@keyframes dial-settle {
  from { transform: rotate(-26deg); opacity: 0; }
  to { transform: none; opacity: 1; }
}

/* ---------- Scroll reveal ---------- */
.js .reveal {
  opacity: 0;
  transform: translate3d(0, 28px, 0);
  transition:
    opacity .85s var(--ease-out) var(--reveal-delay, 0s),
    transform .95s var(--ease-out) var(--reveal-delay, 0s),
    filter .85s var(--ease-out) var(--reveal-delay, 0s);
  filter: blur(6px);
}
.js .reveal[data-reveal="left"] { transform: translate3d(-34px, 0, 0); }
.js .reveal[data-reveal="right"] { transform: translate3d(34px, 0, 0); }
.js .reveal[data-reveal="scale"] { transform: scale(.94); filter: blur(8px); }
/* Must out-rank the variant selectors above, hence the `.js` prefix. */
.js .reveal.is-visible, .reveal.is-visible {
  opacity: 1;
  transform: none;
  filter: none;
}
/* Children of a staggered container arrive in sequence */
.js [data-stagger] > * {
  opacity: 0;
  transform: translate3d(0, 22px, 0);
  transition:
    opacity .7s var(--ease-out) calc(var(--child-index, 0) * .075s),
    transform .8s var(--ease-out) calc(var(--child-index, 0) * .075s);
}
[data-stagger].is-visible > * { opacity: 1; transform: none; }

/* Word-level reveal for display headings */
.split-word { display: inline-block; }
.js [data-split] .split-word {
  opacity: 0;
  transform: translateY(.42em) rotate(1.5deg);
  transition:
    opacity .6s var(--ease-out) calc(var(--word-index, 0) * .035s),
    transform .75s var(--ease-spring) calc(var(--word-index, 0) * .035s);
}
[data-split].is-visible .split-word { opacity: 1; transform: none; }

/* ---------- Header ---------- */
.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 2px;
  background: linear-gradient(90deg, var(--brand-navy), var(--blue-500) 45%, var(--pink-600));
  transform: scaleX(var(--scroll-progress, 0));
  transform-origin: 0 50%;
  transition: opacity .3s var(--ease-out);
  opacity: 0;
}
.site-header.is-elevated::after { opacity: 1; }
.site-nav > a { position: relative; transition: color .25s var(--ease-out); }
.site-nav > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 3px;
  height: 2px;
  background: var(--blue-500);
  border-radius: 99px;
  transform: scaleX(0);
  transform-origin: 50% 50%;
  transition: transform .35s var(--ease-spring);
}
.site-nav > a.is-current::after { transform: scaleX(1); }
.site-nav > a.is-current { color: var(--navy-800); }
.nav-cta {
  position: relative;
  overflow: hidden;
  transition: transform .3s var(--ease-spring), box-shadow .3s var(--ease-out);
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(11, 79, 130, .3); }

/* ---------- Buttons: light sweeps across on hover ---------- */
.button, .primary-button, .secondary-button, .store-button, .hijri-button {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.button::after, .primary-button::after, .store-button::after, .hijri-button::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(105deg, transparent 35%, rgba(255, 255, 255, .55) 50%, transparent 65%);
  transform: translateX(-120%);
  transition: transform .75s var(--ease-out);
}
.button:hover::after, .primary-button:hover::after,
.store-button:hover::after, .hijri-button:hover::after { transform: translateX(120%); }
.button-dark:hover, .hero .button-primary:hover { box-shadow: 0 20px 44px rgba(11, 79, 130, .3); }
.store-button {
  transition: transform .35s var(--ease-spring), box-shadow .35s var(--ease-out);
}
/* The pending badge sits outside the button box, so this one must not clip. */
.store-pending { overflow: visible; }
.store-pending::after { display: none; }
.store-button:not(.store-pending):hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, .24);
}

/* ---------- Hero atmosphere ---------- */
.hero-ambient { animation: drift 17s ease-in-out infinite alternate; }
.ambient-two { animation-duration: 23s; animation-delay: -6s; }
@keyframes drift {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(26px, -32px, 0) scale(1.12); }
}
.hero-product { perspective: 1400px; }
.device {
  transition: transform .9s var(--ease-out);
  transform:
    rotate(2.5deg)
    translateY(var(--device-shift, 0px))
    rotateX(var(--device-rx, 0deg))
    rotateY(var(--device-ry, 0deg));
}
.hero-product:hover .device { transition: transform .35s var(--ease-out); }
.screen-note {
  animation: note-float 6.5s ease-in-out infinite;
  transition: transform .5s var(--ease-spring), box-shadow .5s var(--ease-out);
}
.screen-note-bottom { animation-delay: -3.2s; }
@keyframes note-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}
.hero-product:hover .screen-note { box-shadow: 0 24px 54px rgba(2, 18, 31, .3); }
.capture-label span { animation: pulse-dot 2.4s ease-in-out infinite; }
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 4px rgba(88, 214, 194, .16); }
  50% { box-shadow: 0 0 0 9px rgba(88, 214, 194, .04); }
}
.hero-trust span {
  transition: transform .35s var(--ease-spring), color .3s var(--ease-out);
}
.hero-trust span:hover { transform: translateY(-2px); color: var(--navy-800); }

/* ---------- Proof bar ---------- */
.proof-bar div {
  position: relative;
  transition: background .4s var(--ease-out);
}
.proof-bar div::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--blue-500), var(--pink-400));
  transform: scaleY(0);
  transform-origin: 50% 0;
  transition: transform .5s var(--ease-out);
}
.proof-bar div:hover { background: #fbfdff; }
.proof-bar div:hover::before { transform: scaleY(1); }
.proof-bar strong { font-variant-numeric: tabular-nums; }

/* ---------- Cards: cursor-tracked spotlight + lift ---------- */
.capability-card, .workflow-card, .tool-group, .value-card, .person-card {
  position: relative;
  transition:
    transform .5s var(--ease-out),
    box-shadow .5s var(--ease-out),
    border-color .5s var(--ease-out);
}
.capability-card::before, .workflow-card::before, .tool-group::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    340px circle at var(--pointer-x, 50%) var(--pointer-y, 0%),
    rgba(43, 157, 232, .13), transparent 68%);
  opacity: 0;
  transition: opacity .45s var(--ease-out);
  pointer-events: none;
}
.tool-group::before {
  background: radial-gradient(
    320px circle at var(--pointer-x, 50%) var(--pointer-y, 0%),
    rgba(124, 193, 255, .16), transparent 66%);
}
.capability-card:hover::before,
.workflow-card:hover::before,
.tool-group:hover::before { opacity: 1; }
.capability-card > *, .workflow-card > *, .tool-group > * { position: relative; z-index: 1; }
.capability-card:hover, .workflow-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 26px 60px rgba(7, 42, 71, .14);
  border-color: #bcd8e9;
}
.capability-primary:hover { border-color: rgba(255, 255, 255, .2); }
.capability-symbol { transition: transform .5s var(--ease-spring); }
.capability-card:hover .capability-symbol { transform: translateY(-3px) scale(1.06) rotate(-5deg); }
.tool-group:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, .22);
  box-shadow: 0 22px 48px rgba(0, 0, 0, .26);
}
.tool-group li { transition: background .3s var(--ease-out), transform .3s var(--ease-out); }
.tool-group li:hover { background: rgba(255, 255, 255, .13); transform: translateY(-1px); }
.group-dot { transition: box-shadow .45s var(--ease-out); }
.tool-group:hover .group-dot { box-shadow: 0 0 0 9px rgba(255, 255, 255, .07); }

/* ---------- Hijri portal ---------- */
.hijri-orbit { animation: orbit-spin 46s linear infinite; }
.orbit-two { animation-duration: 34s; animation-direction: reverse; }
@keyframes orbit-spin { to { transform: rotate(360deg); } }
.hijri-brand-lockup img { transition: transform .6s var(--ease-spring); }
.hijri-brand-lockup:hover img { transform: rotate(-6deg) scale(1.05); }

/* ---------- About monograms ---------- */
.monogram {
  animation: monogram-float 8s ease-in-out infinite;
  transition: transform .5s var(--ease-spring);
}
.monogram-two { animation-delay: -2.6s; }
.monogram-three { animation-delay: -5.1s; }
@keyframes monogram-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-13px); }
}
.team-monogram:hover .monogram { animation-play-state: paused; }

/* ---------- Misc polish ---------- */
.text-link span { transition: transform .35s var(--ease-spring); }
.micro-list li { transition: background .3s var(--ease-out), transform .3s var(--ease-out); }
.micro-list li:hover { background: rgba(255, 255, 255, .18); transform: translateY(-2px); }
.footer-column a, .hijri-text-link, .person-links a {
  transition: color .25s var(--ease-out), transform .25s var(--ease-out);
}
.footer-column a:hover { transform: translateX(3px); }
.clinical-note-mark { transition: transform .6s var(--ease-spring); }
.clinical-note:hover .clinical-note-mark { transform: rotate(90deg); }
.mini-patient, .mini-report, .evidence-list {
  transition: transform .45s var(--ease-out), box-shadow .45s var(--ease-out);
}
.workflow-card:hover .mini-patient,
.workflow-card:hover .mini-report,
.workflow-card:hover .evidence-list {
  transform: translateY(-3px);
  box-shadow: 0 18px 38px rgba(7, 42, 71, .13);
}

@media (max-width: 900px) {
  .hero-brand { gap: 14px; padding: 8px 16px 8px 8px; border-radius: 22px; }
}
@media (max-width: 620px) {
  .hero-brand > img, .hero-brand > .hero-mark { width: 64px; height: 64px; border-radius: 19px; }
  .hero-wordmark { width: 145px; }
  .brand-wordmark { width: 112px; }
}

/* ---------- Reduced motion: keep the layout, drop the movement ---------- */
@media (prefers-reduced-motion: reduce) {
  .js .reveal,
  .js [data-stagger] > *,
  .js [data-split] .split-word,
  .js .hero-brand .hero-mark,
  .js .hero-brand .wm-glyph {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
  }
  .hero-ambient, .screen-note, .capture-label span, .hijri-orbit, .monogram,
  .hero-brand.is-lit .hero-mark .mk-notches {
    animation: none !important;
  }
  .device { transform: rotate(2.5deg); }
  .button::after, .primary-button::after,
  .store-button::after, .hijri-button::after { display: none; }
  .brand:hover .brand-icon, .brand:hover .brand-mark,
  .capability-card:hover, .workflow-card:hover, .tool-group:hover,
  .store-button:not(.store-pending):hover, .nav-cta:hover {
    transform: none;
  }
}

/* ==========================================================================
   2026 premium product presentation
   ========================================================================== */

body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

h1, h2, h3, .brand-copy strong,
.proof-bar strong, .capability-symbol, .story-phone-wrap > p,
.app-pregnancy-stats strong, .app-milestone strong, .app-anc-cta strong {
  font-family: "Outfit", "Inter", sans-serif;
}

.hero {
  min-height: 890px;
  background:
    radial-gradient(circle at 78% 18%, rgba(74, 144, 226, .26), transparent 32%),
    radial-gradient(circle at 18% 82%, rgba(176, 93, 149, .19), transparent 31%),
    linear-gradient(132deg, #ffffff 0%, #eef6fc 53%, #f9edf5 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(110deg, rgba(255,255,255,.7), transparent 42%);
}

.hero-brand {
  gap: clamp(18px, 2.2vw, 28px);
  margin-bottom: 8px;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
}

.hero-brand > img,
.hero-brand > .hero-mark {
  width: clamp(88px, 8vw, 112px);
  height: clamp(88px, 8vw, 112px);
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.hero-wordmark {
  width: clamp(235px, 24vw, 318px);
  filter: drop-shadow(0 10px 22px rgba(11,79,130,.1));
}

.hero-brand-copy > small { display: none; }

.hero-clinician-line {
  width: max-content;
  margin: 0 0 40px;
  padding-left: clamp(106px, 10.2vw, 140px);
  color: #45677f;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.hero-clinician-line::before {
  content: "";
  width: 31px;
  height: 2px;
  display: inline-block;
  margin: 0 10px 3px 0;
  background: linear-gradient(90deg, var(--brand-navy), var(--brand-mauve));
  border-radius: 99px;
}

.hero h1 {
  max-width: 820px;
  font-size: clamp(60px, 7.4vw, 102px);
  letter-spacing: -.055em;
}

.hero-lead { max-width: 710px; }

.proof-bar {
  border-color: rgba(13, 64, 102, .12);
  background: rgba(13,64,102,.12);
  box-shadow: 0 28px 75px rgba(6, 36, 61, .15);
}

.proof-bar div {
  min-height: 128px;
  padding: 30px;
}

.proof-bar strong {
  font-size: 34px;
  font-weight: 700;
}

.proof-bar span {
  max-width: 190px;
  font-size: 12px;
  line-height: 1.45;
}

/* Giant half-iPhone live presentation */
.feature-motion {
  padding-bottom: 0;
  background:
    radial-gradient(circle at 12% 11%, rgba(176,93,149,.12), transparent 25%),
    radial-gradient(circle at 88% 74%, rgba(74,144,226,.18), transparent 30%),
    linear-gradient(180deg, #fff 0%, #f3f8fc 100%);
}

.motion-heading { margin-bottom: 62px; }

.phone-demo-layout {
  width: min(1320px, 100%);
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(340px, .7fr);
  gap: clamp(28px, 4vw, 62px);
  align-items: start;
  margin: 0 auto;
}

.giant-phone-stage {
  width: 100%;
  height: 1125px;
  margin: 0 auto;
  overflow: hidden;
  perspective: 1600px;
}

.giant-phone {
  width: min(820px, calc(100% - 18px));
  min-height: 1240px;
  margin: 0 auto;
  overflow: hidden;
  background: #0a121b;
  border: 12px solid #172838;
  border-bottom: 0;
  border-radius: 88px 88px 0 0;
  box-shadow:
    0 55px 120px rgba(5, 29, 49, .28),
    inset 0 0 0 3px rgba(255,255,255,.2),
    0 0 0 1px rgba(7,35,56,.2);
  transform-origin: 50% 100%;
}

.js .giant-phone-stage .giant-phone {
  opacity: .25;
  clip-path: inset(10% 17% 0 17% round 88px 88px 0 0);
  transform: translateY(90px) rotateX(7deg) scale(.9);
  transition:
    clip-path 1.15s var(--ease-out),
    transform 1.25s var(--ease-spring),
    opacity .85s var(--ease-out);
}

.js .giant-phone-stage.is-phone-open .giant-phone {
  opacity: 1;
  clip-path: inset(0 0 0 0 round 88px 88px 0 0);
  transform: none;
}

.giant-phone-status {
  position: relative;
  height: 52px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 42px;
  color: #fff;
  background: #2cadd8;
  font-size: 13px;
  font-weight: 700;
}

.giant-phone-status > i {
  position: absolute;
  left: 50%;
  top: 9px;
  width: 126px;
  height: 34px;
  background: #05090d;
  border-radius: 99px;
  transform: translateX(-50%);
}

.giant-phone-status .phone-signal { margin-left: auto; letter-spacing: -2px; }
.giant-phone-status .phone-wifi { font-size: 21px; transform: rotate(-15deg); }
.giant-phone-status > b { padding: 2px 7px; color: #1b364b; background: rgba(255,255,255,.8); border-radius: 8px; }

.giant-phone-bar {
  height: 72px;
  display: grid;
  grid-template-columns: 100px 1fr 100px;
  align-items: center;
  padding: 0 25px;
  color: #fff;
  background: #2cadd8;
}

.giant-phone-bar > span { font-size: 52px; font-weight: 300; line-height: 1; }
.giant-phone-bar > strong { font-family: "Inter", sans-serif; font-size: 24px; font-weight: 500; text-align: center; }
.giant-phone-bar > div { display: flex; justify-content: flex-end; gap: 13px; align-items: center; }
.giant-phone-bar > div i { font-size: 25px; font-style: normal; }
.giant-phone-bar > div b { padding: 3px; border: 2px solid #fff; border-radius: 3px; font-size: 9px; }

.giant-phone .app-demo-shell {
  max-width: none;
  margin: 0;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.app-pregnancy-stats {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  margin: 24px 20px 18px;
  padding: 24px 18px;
  background: #fff;
  border: 1px solid #dceaf5;
  border-radius: 18px;
  box-shadow: 0 8px 23px rgba(7,42,71,.08);
}

.app-pregnancy-stats > div { display: grid; justify-items: center; }
.app-pregnancy-stats > i { width: 1px; height: 58px; background: #dceaf5; }
.app-pregnancy-stats strong { color: var(--app-blue); font-size: 35px; line-height: 1; }
.app-pregnancy-stats > div:nth-of-type(2) strong { color: #16a074; }
.app-pregnancy-stats > div:nth-of-type(3) strong { color: #ec9d1e; }
.app-pregnancy-stats span { margin-top: 9px; color: #8897a3; font-size: 12px; text-align: center; }

.app-milestones {
  display: grid;
  gap: 12px;
  padding: 0 20px 22px;
}

.app-milestone {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 17px;
  align-items: center;
  padding: 19px;
  background: #fff;
  border: 2px solid #f0bd62;
  border-radius: 18px;
}

.app-milestone.is-upcoming { border-color: #f2bab9; }
.milestone-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  color: #e6a323;
  background: #fff6e7;
  border-radius: 13px;
  font-size: 25px;
}

.is-upcoming .milestone-icon { color: #df4f51; background: #fff0f0; }
.app-milestone > div { display: grid; }
.app-milestone small { color: #8f9aa4; font-size: 11px; }
.app-milestone small b { margin-left: 7px; padding: 3px 6px; color: #df9b1a; background: #fff4dc; border-radius: 5px; font-size: 9px; }
.app-milestone.is-upcoming small b { color: #d83f45; background: #fde5e6; }
.app-milestone strong { margin-top: 3px; color: #1a2940; font-size: 19px; letter-spacing: -.02em; }
.app-milestone em { color: #9aa4ad; font-size: 11px; font-style: normal; }
.app-milestone time { color: #e09a1b; font-size: 13px; font-weight: 700; }
.app-milestone.is-upcoming time { color: #d94147; }

.app-anc-cta {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px 25px;
  color: #fff;
  background: linear-gradient(115deg, #1564bf, #218fdf);
  border-radius: 18px;
  box-shadow: 0 14px 30px rgba(21,100,191,.22);
}

.app-anc-cta > span { font-size: 28px; }
.app-anc-cta > div { display: grid; }
.app-anc-cta strong { color: #fff; font-size: 18px; letter-spacing: -.01em; }
.app-anc-cta small { margin-top: 2px; color: rgba(255,255,255,.72); font-size: 11px; }

.milestone-sidecar {
  position: sticky;
  top: 110px;
  margin-top: 52px;
  padding: clamp(28px, 3.2vw, 42px);
  background: rgba(255,255,255,.9);
  border: 1px solid rgba(194,216,231,.9);
  border-radius: 30px;
  box-shadow: 0 32px 80px rgba(7,42,71,.13);
  backdrop-filter: blur(18px);
}

.milestone-sidecar h3 {
  margin-bottom: 18px;
  font-size: clamp(35px, 3.4vw, 50px);
  line-height: 1.03;
}

.milestone-sidecar-lead { color: var(--muted); font-size: 15px; }
.milestone-sidecar .app-milestones { gap: 11px; padding: 12px 0 0; }
.milestone-sidecar .app-milestone {
  grid-template-columns: auto 1fr;
  gap: 13px;
  padding: 15px;
  border-width: 1.5px;
}
.milestone-sidecar .app-milestone time { grid-column: 2; }
.milestone-sidecar .milestone-icon { width: 43px; height: 43px; font-size: 20px; }
.milestone-sidecar .app-milestone strong { font-size: 15px; }
.milestone-sidecar .app-milestone em { font-size: 10px; }
.milestone-sidecar .app-anc-cta { padding: 17px; border-radius: 15px; }
.milestone-sidecar .app-anc-cta strong { font-size: 15px; }

.milestone-sidecar-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 18px;
  overflow: hidden;
  background: #dbe8f1;
  border: 1px solid #dbe8f1;
  border-radius: 14px;
}
.milestone-sidecar-proof span { display: grid; padding: 12px 10px; background: #f7fbfe; }
.milestone-sidecar-proof strong { color: var(--navy-800); font-family: "Outfit"; font-size: 13px; }
.milestone-sidecar-proof small { margin-top: 3px; color: var(--muted); font-size: 8px; line-height: 1.35; }

.motion-note { margin: 18px 0 42px; }

/* Remove the unexplained number and use a recognisable calendar glyph. */
.calendar-symbol {
  position: relative;
  background: rgba(74,144,226,.22);
}

.calendar-symbol::before {
  content: "";
  width: 30px;
  height: 27px;
  border: 3px solid currentColor;
  border-radius: 5px;
  box-shadow: inset 0 7px 0 rgba(255,255,255,.12);
}

.calendar-symbol::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 2px;
  background: currentColor;
  box-shadow: 0 7px 0 currentColor, 0 14px 0 currentColor;
  opacity: .78;
}

/* Larger directory follows the category names used inside the app. */
.toolkit-section {
  background:
    radial-gradient(circle at 90% 10%, rgba(74,144,226,.14), transparent 25%),
    radial-gradient(circle at 8% 92%, rgba(176,93,149,.12), transparent 24%),
    #061a2e;
}

.tool-directory { gap: 18px; }

.tool-group {
  min-height: 285px;
  padding: 34px;
  border-radius: 24px;
}

.tool-group-head {
  grid-template-columns: auto 1fr;
  gap: 17px;
  padding-bottom: 23px;
}

.group-dot { width: 15px; height: 15px; }
.tool-group-head small { font-size: 10px; }
.tool-group-head h3 { margin-top: 5px; font-size: clamp(23px, 2.6vw, 30px); }
.tool-group ul { gap: 9px; margin-top: 23px; }
.tool-group li { padding: 9px 12px; font-size: 12px; }

/* Scroll-led product theatre, inspired by premium electronics pages. */
.product-story {
  --story-accent: #2b9de8;
  position: relative;
  color: rgba(255,255,255,.72);
  background:
    radial-gradient(circle at 82% 15%, color-mix(in srgb, var(--story-accent) 29%, transparent), transparent 30%),
    linear-gradient(145deg, #030d17 0%, #061a2e 62%, #0a2940 100%);
  transition: background 1s ease;
}

.product-story-heading {
  max-width: 960px;
  margin-bottom: 80px;
}

.product-story-heading h2 { color: #fff; }
.product-story-heading > p:last-child { max-width: 700px; font-size: 18px; }

.product-story-layout {
  display: grid;
  grid-template-columns: minmax(330px, .78fr) minmax(0, 1fr);
  gap: clamp(60px, 9vw, 130px);
  align-items: start;
}

.story-phone-wrap {
  position: sticky;
  top: 112px;
  display: grid;
  justify-items: center;
}

.story-phone {
  position: relative;
  width: min(390px, 100%);
  aspect-ratio: 1080 / 2316;
  padding: 9px;
  overflow: hidden;
  background: #0a1118;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 56px;
  box-shadow: 0 48px 110px rgba(0,0,0,.58), inset 0 0 0 2px #293a47;
}

.story-phone-status {
  position: absolute;
  z-index: 8;
  top: 9px;
  left: 9px;
  right: 9px;
  height: 43px;
  display: flex;
  align-items: center;
  padding: 0 23px;
  color: transparent;
  pointer-events: none;
}

.story-phone-status i {
  position: absolute;
  left: 50%;
  top: 6px;
  width: 115px;
  height: 30px;
  background: #05080b;
  border-radius: 99px;
  transform: translateX(-50%);
}

.story-screens {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #eef4fb;
  border-radius: 47px;
}

.story-screens img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: top;
  opacity: 0;
  transform: scale(1.04) translateY(10px);
  transition: opacity .7s var(--ease-out), transform 1s var(--ease-out);
}

.story-screens img.is-active { opacity: 1; transform: none; }

.story-phone-wrap > p {
  margin: 22px 0 0;
  color: #95b0c4;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.story-phone-wrap > p span { color: #fff; font-size: 17px; }

.product-story-steps { display: grid; }

.product-story-step {
  min-height: 78vh;
  display: grid;
  align-content: center;
  padding: 10vh 0;
  opacity: .34;
  transform: translateY(22px);
  transition: opacity .6s ease, transform .75s var(--ease-out);
}

.product-story-step.is-active { opacity: 1; transform: none; }
.product-story-step > span { color: var(--story-accent); font-size: 11px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.product-story-step h3 { max-width: 680px; margin: 24px 0 18px; color: #fff; font-size: clamp(37px, 4.5vw, 61px); line-height: 1.04; }
.product-story-step p { max-width: 650px; color: #9fb3c2; font-size: 18px; }

/* A darker, more deliberate final frame. */
.site-footer {
  padding-top: 0;
  color: #9fb4c3;
  background:
    radial-gradient(circle at 75% 0%, rgba(176,93,149,.15), transparent 30%),
    #051522;
  border-top: 0;
}

.footer-cta {
  max-width: var(--content);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  margin: 0 auto 68px;
  padding: 48px clamp(28px, 5vw, 60px);
  color: #bdd0dd;
  background:
    radial-gradient(circle at 90% 20%, rgba(212,138,187,.28), transparent 30%),
    linear-gradient(125deg, #0b4f82, #123e61);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 0 0 34px 34px;
  box-shadow: 0 28px 75px rgba(0,0,0,.24);
}

.footer-cta h2 { margin: 0 0 8px; color: #fff; font-size: clamp(34px, 4.5vw, 58px); }
.footer-cta p { margin-bottom: 10px; }
.footer-cta span { font-size: 14px; }
.footer-cta .button { min-width: 150px; }

.footer-top { border-color: rgba(255,255,255,.1); }
.footer-logo .brand-icon {
  background: transparent;
  border-color: transparent;
  box-shadow: none;
}
.footer-logo .brand-wordmark { filter: drop-shadow(0 6px 16px rgba(255,255,255,.08)); }
.footer-logo .brand-copy small { color: #87a1b3; }
.footer-column strong { color: #fff; }
.footer-column a:hover { color: #f0a7d2; }
.footer-bottom { color: #7690a2; }

.about-teaser .team-monogram .monogram-two { right: 20%; }
.team-grid { grid-template-columns: repeat(2, minmax(0, 430px)); }

@media (max-width: 1120px) {
  .phone-demo-layout { grid-template-columns: 1fr; }
  .giant-phone-stage { width: min(900px, 100%); }
  .milestone-sidecar {
    position: static;
    width: min(820px, 100%);
    margin: 24px auto 0;
  }
}

@media (max-width: 900px) {
  .hero-clinician-line { padding-left: 0; }
  .giant-phone-stage { height: 1180px; }
  .giant-phone { min-height: 1370px; border-width: 9px; border-radius: 64px 64px 0 0; }
  .product-story-layout { grid-template-columns: 1fr; }
  .story-phone-wrap {
    z-index: 3;
    top: 86px;
    width: 250px;
    margin: 0 auto;
    pointer-events: none;
  }
  .story-phone { border-radius: 39px; }
  .story-screens { border-radius: 32px; }
  .product-story-steps { margin-top: -180px; }
  .product-story-step { min-height: 86vh; padding-top: 45vh; }
  .footer-cta { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 620px) {
  .hero-brand {
    width: 100%;
    gap: 12px;
  }
  .hero-brand > img,
  .hero-brand > .hero-mark { width: 76px; height: 76px; }
  .hero-wordmark { width: min(225px, calc(100vw - 132px)); }
  .hero-clinician-line { margin-bottom: 32px; font-size: 10px; }
  .proof-bar div { min-height: 112px; padding: 21px; }
  .proof-bar span { font-size: 10px; }
  .giant-phone-stage {
    width: calc(100% + 18px);
    height: 1070px;
    margin-left: -9px;
  }
  .giant-phone {
    width: 100%;
    min-height: 1250px;
    border-width: 7px;
    border-radius: 48px 48px 0 0;
  }
  .giant-phone-status { height: 44px; padding-inline: 23px; font-size: 10px; }
  .giant-phone-status > i { width: 98px; height: 27px; }
  .giant-phone-bar { height: 61px; grid-template-columns: 54px 1fr 54px; padding-inline: 13px; }
  .giant-phone-bar > strong { font-size: 17px; }
  .giant-phone-bar > span { font-size: 42px; }
  .app-pregnancy-stats { margin-inline: 10px; padding-inline: 8px; }
  .app-pregnancy-stats strong { font-size: 27px; }
  .app-pregnancy-stats span { font-size: 9px; }
  .app-milestones { padding-inline: 10px; }
  .app-milestone { grid-template-columns: auto 1fr; padding: 14px; }
  .app-milestone time { grid-column: 2; }
  .milestone-icon { width: 43px; height: 43px; }
  .app-milestone strong { font-size: 15px; }
  .app-anc-cta { padding: 17px; }
  .app-anc-cta strong { font-size: 15px; }
  .milestone-sidecar { padding: 27px 20px; border-radius: 23px; }
  .milestone-sidecar-proof { grid-template-columns: 1fr; }
  .official-store-actions { align-items: flex-start; }
  .tool-group { min-height: 0; padding: 26px; }
  .tool-group-head h3 { font-size: 24px; }
  .product-story { padding-inline: 18px; }
  .product-story-heading { margin-bottom: 50px; }
  .story-phone-wrap { width: 205px; }
  .product-story-steps { margin-top: -140px; }
  .product-story-step h3 { font-size: 38px; }
  .product-story-step p { font-size: 16px; }
  .footer-cta {
    margin-bottom: 52px;
    padding: 38px 26px;
    border-radius: 0 0 25px 25px;
  }
  .footer-cta .button { width: 100%; }
  .team-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .js .giant-phone-stage .giant-phone,
  .js .giant-phone-stage.is-phone-open .giant-phone,
  .story-screens img,
  .product-story-step {
    opacity: 1;
    clip-path: none;
    transform: none;
    transition: none;
  }
  .story-screens img:not(.is-active) { opacity: 0; }
}
