:root {
  color-scheme: dark;
  --bg: #05070a;
  --panel: #0f1117;
  --panel-2: #121826;
  --card: #ffffff;
  --ink: #0f172a;
  --text: #f8fafc;
  --muted: #94a3b8;
  --soft: #eaf6ef;
  --green: #22c55e;
  --green-2: #4ade80;
  --purple: #8b5cf6;
  --red: #e11d48;
  --yellow: #f59e0b;
  --line: rgba(148, 163, 184, 0.2);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #02070d;
  color: var(--text);
  min-height: 100vh;
}

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

.page {
  width: min(1560px, calc(100% - 128px));
  margin: 0 auto;
  padding: 30px 0 44px;
}

.hack-login {
  width: 100%;
}

.hack-hero-row {
  min-height: 190px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #1f2937;
  position: relative;
}

.identity-block {
  width: 380px;
  display: flex;
  align-items: center;
  gap: 22px;
}

.brand-logo-img {
  width: 92px;
  height: 92px;
  border-radius: 46px;
  object-fit: cover;
}

.brand-logo-img.small {
  width: 68px;
  height: 68px;
  border-radius: 34px;
}

.hack-brand-title {
  color: #f8fafc;
  font-size: 38px;
  font-weight: 900;
  letter-spacing: 1px;
}

.hack-brand-subtitle {
  color: #cbd5e1;
  font-size: 18px;
  line-height: 28px;
  margin-top: 10px;
}

.hero-divider {
  width: 1px;
  height: 140px;
  background: #273142;
  margin-right: 56px;
}

.welcome-block {
  flex: 1;
  z-index: 2;
}

.welcome-title {
  color: #ffffff;
  font-size: 42px;
  line-height: 52px;
  font-weight: 900;
}

.welcome-title span {
  color: #4ade80;
}

.welcome-body {
  color: #cbd5e1;
  font-size: 21px;
  line-height: 32px;
  margin-top: 22px;
}

.hero-art {
  width: 390px;
  height: 190px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
}

.hero-glow {
  position: absolute;
  bottom: 22px;
  width: 230px;
  height: 160px;
  border-radius: 130px;
  background: #12351f;
  opacity: .95;
}

.mother-figure {
  width: 118px;
  height: 178px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-direction: column;
  position: relative;
  z-index: 3;
}

.mother-hair {
  position: absolute;
  top: 7px;
  width: 78px;
  height: 86px;
  border-radius: 43px;
  background: #111827;
  transform: rotate(-8deg);
}

.mother-face {
  position: absolute;
  top: 36px;
  width: 48px;
  height: 54px;
  border-radius: 27px;
  background: #f2b98c;
  z-index: 2;
}

.mother-body {
  width: 70px;
  height: 104px;
  border-top-left-radius: 36px;
  border-top-right-radius: 36px;
  background: #59a765;
}

.mother-bump {
  position: absolute;
  bottom: 16px;
  width: 82px;
  height: 72px;
  border-radius: 45px;
  background: #68b875;
}

.leaf {
  position: absolute;
  width: 62px;
  height: 88px;
  border-radius: 62px 0 62px 0;
  background: #2e7d48;
  opacity: .85;
}

.leaf-left {
  left: 38px;
  bottom: 8px;
  transform: rotate(-22deg);
  background: #255f38;
}

.leaf-right {
  right: 18px;
  bottom: 6px;
  transform: rotate(22deg);
}

.star {
  position: absolute;
  border-radius: 999px;
  background: #fef08a;
}

.star-one { top: 18px; left: 86px; width: 4px; height: 4px; }
.star-two { top: 80px; right: 32px; width: 5px; height: 5px; }
.star-three { top: 40px; right: 118px; width: 3px; height: 3px; }

.section-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 18px;
  margin-bottom: 18px;
}

.header-icon {
  width: 38px;
  height: 38px;
  border-radius: 19px;
  display: grid;
  place-items: center;
  background: #0d2618;
}

.section-title {
  color: #4ade80;
  font-size: 21px;
  font-weight: 900;
  letter-spacing: 4px;
}

.header-line {
  flex: 1;
  height: 1px;
  background: #1f2937;
}

.hack-role-card {
  height: 126px;
  border: 1.5px solid;
  border-radius: 22px;
  margin-bottom: 12px;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 0 30px;
  position: relative;
}

.hack-role-card.patient {
  border-color: #4ade80;
  background: #082415;
}

.hack-role-card.doctor {
  border-color: #8b5cf6;
  background: #130b2b;
}

.hack-role-card.no-vitals-choice {
  border-color: #38bdf8;
  background: #071b2a;
}

.hack-role-card.signin-card {
  border-color: #64748b;
  background: #111827;
}

.role-icon {
  width: 80px;
  height: 80px;
  border-radius: 40px;
  display: grid;
  place-items: center;
  margin-right: 36px;
  font-size: 42px;
}

.patient .role-icon { background: rgba(74, 222, 128, .12); }
.doctor .role-icon { background: rgba(139, 92, 246, .12); }
.no-vitals-choice .role-icon { background: rgba(56, 189, 248, .13); }
.signin-card .role-icon { background: rgba(148, 163, 184, .13); }

.role-copy {
  width: 470px;
  z-index: 2;
}

.role-title {
  font-size: 27px;
  font-weight: 900;
  margin-bottom: 10px;
}

.patient .role-title { color: #4ade80; }
.doctor .role-title { color: #8b5cf6; }
.no-vitals-choice .role-title { color: #38bdf8; }
.signin-card .role-title { color: #cbd5e1; }

.role-body {
  color: #cbd5e1;
  font-size: 19px;
  line-height: 26px;
}

.role-art {
  position: absolute;
  right: 210px;
  width: 220px;
  height: 100%;
  display: grid;
  place-items: center;
  font-size: 82px;
  opacity: .56;
}

.role-arrow {
  margin-left: auto;
  width: 62px;
  height: 62px;
  border-radius: 31px;
  border: 1.5px solid;
  display: grid;
  place-items: center;
  background: rgba(2, 7, 13, .4);
  font-size: 58px;
  line-height: 1;
  padding-bottom: 8px;
}

.patient .role-arrow {
  color: #4ade80;
  border-color: rgba(74,222,128,.34);
}

.doctor .role-arrow {
  color: #8b5cf6;
  border-color: rgba(139,92,246,.34);
}

.no-vitals-choice .role-arrow {
  color: #38bdf8;
  border-color: rgba(56,189,248,.34);
}

.signin-card .role-arrow {
  color: #cbd5e1;
  border-color: rgba(148,163,184,.34);
}

.feature-strip {
  min-height: 104px;
  margin-top: 16px;
  border: 1px solid #1f2937;
  border-radius: 22px;
  background: #071019;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 0 28px;
  overflow: hidden;
  position: relative;
}

.feature-item {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 18px;
  z-index: 2;
}

.feature-icon {
  width: 54px;
  height: 54px;
  border-radius: 27px;
  display: grid;
  place-items: center;
  border: 1px solid #1e7a3a;
  background: #0b2718;
  font-size: 24px;
}

.feature-item strong {
  color: #f8fafc;
  font-size: 14px;
  font-weight: 900;
}

.feature-item p {
  color: #cbd5e1;
  font-size: 13px;
  line-height: 19px;
  max-width: 220px;
  margin-top: 6px;
}

.rural-line {
  position: absolute;
  right: 24px;
  bottom: 8px;
  color: #1f6b39;
  font-size: 46px;
  opacity: .55;
}

.hack-footer {
  color: #64748b;
  text-align: center;
  font-size: 14px;
  margin-top: 16px;
}

.auth-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
}

.auth-card {
  width: min(520px, 100%);
  border: 1px solid #1f2937;
  border-radius: 28px;
  background: #071019;
  padding: 34px;
  box-shadow: 0 30px 90px rgba(0,0,0,.35);
}

.auth-brand {
  margin-bottom: 28px;
}

.auth-title {
  color: #ffffff;
  font-size: 42px;
  line-height: 1;
  letter-spacing: -.04em;
  margin: 0 0 12px;
}

.auth-copy {
  color: #cbd5e1;
  font-size: 15px;
  line-height: 23px;
  margin-bottom: 24px;
}

.auth-form {
  display: grid;
  gap: 10px;
}

.auth-form label {
  color: #94a3b8;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.auth-form input {
  width: 100%;
  height: 52px;
  border: 1px solid #273142;
  border-radius: 14px;
  background: #02070d;
  color: #f8fafc;
  padding: 0 16px;
  font: inherit;
  margin-bottom: 8px;
}

.auth-form button {
  height: 52px;
  border: 0;
  border-radius: 999px;
  background: #22c55e;
  color: #ffffff;
  font-weight: 950;
  font-size: 16px;
  margin-top: 8px;
}

.auth-note {
  margin-top: 20px;
  border: 1px solid #1e7a3a;
  border-radius: 16px;
  background: #0b2718;
  padding: 16px;
  color: #cbd5e1;
}

.auth-note strong {
  display: block;
  color: #f8fafc;
  margin-bottom: 8px;
}

.auth-note a {
  color: #4ade80;
  font-weight: 900;
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 13px;
}

.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background:
    radial-gradient(circle at 50% 34%, #b7f7cb 0 9px, transparent 10px),
    radial-gradient(circle at 50% 68%, #89e6a5 0 16px, transparent 17px),
    linear-gradient(135deg, #22c55e, #14532d);
  box-shadow: 0 0 0 7px rgba(34, 197, 94, .1), 0 18px 44px rgba(34, 197, 94, .28);
}

.brand-name {
  font-size: 26px;
  font-weight: 950;
  letter-spacing: .14em;
}

.brand-sub {
  color: var(--muted);
  font-size: 12px;
  margin-top: 3px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.05);
  border-radius: 999px;
  padding: 9px 13px;
  color: #dbeafe;
  font-size: 13px;
  font-weight: 800;
}

.dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 18px var(--green);
}

.hero {
  display: grid;
  grid-template-columns: 1.03fr .97fr;
  gap: 24px;
  align-items: stretch;
}

.hero-card,
.dark-card {
  border: 1px solid var(--line);
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.035));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-copy {
  padding: clamp(28px, 5vw, 62px);
}

.eyebrow {
  color: var(--green-2);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: .2em;
}

h1 {
  margin: 18px 0 16px;
  font-size: clamp(42px, 7vw, 82px);
  line-height: .94;
  letter-spacing: -.07em;
}

h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: -.04em;
}

h3 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 18px;
}

p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
  font-size: 16px;
}

.lead {
  max-width: 690px;
  color: #cbd5e1;
  font-size: clamp(17px, 2vw, 21px);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 950;
  border: 1px solid var(--line);
}

.primary {
  color: white;
  background: linear-gradient(135deg, #16a34a, #22c55e);
  box-shadow: 0 18px 38px rgba(34, 197, 94, .22);
  border-color: transparent;
}

.secondary {
  background: rgba(255,255,255,.06);
  color: #e2e8f0;
}

.phone-wrap {
  min-height: 520px;
  display: grid;
  place-items: center;
  padding: 26px;
}

.phone {
  width: min(360px, 100%);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 38px;
  background: #080b10;
  padding: 16px;
  box-shadow: 0 30px 90px rgba(0,0,0,.45);
}

.phone-screen {
  border-radius: 28px;
  background: #f8fafc;
  color: var(--ink);
  overflow: hidden;
}

.phone-header {
  padding: 18px;
  background: linear-gradient(135deg, #082415, #0f172a);
  color: white;
}

.phone-title {
  font-size: 20px;
  font-weight: 950;
}

.phone-meta {
  color: #a7f3d0;
  font-size: 12px;
  margin-top: 4px;
}

.status {
  margin: 14px;
  padding: 16px;
  border: 1px solid #d8ebdd;
  border-left: 5px solid var(--green);
  border-radius: 18px;
  background: #f1f8f3;
}

.status-title {
  color: var(--ink);
  font-size: 19px;
  font-weight: 950;
  margin: 10px 0 6px;
}

.mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 0 14px 16px;
}

.mini-card {
  border: 1px solid #dde7e2;
  border-radius: 15px;
  padding: 13px;
  background: white;
}

.mini-label {
  color: #64748b;
  font-size: 11px;
  font-weight: 800;
}

.mini-value {
  display: block;
  color: #0f172a;
  font-size: 20px;
  font-weight: 950;
  margin-top: 6px;
}

.section {
  margin-top: 22px;
}

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

.choice-card {
  min-height: 260px;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 26px;
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.035));
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.choice-card::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  right: -60px;
  bottom: -70px;
  border-radius: 999px;
  background: rgba(34, 197, 94, .16);
}

.choice-card.doctor::after { background: rgba(139, 92, 246, .18); }

.choice-icon {
  width: 62px;
  height: 62px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  background: rgba(34, 197, 94, .12);
  color: var(--green-2);
  font-size: 30px;
  margin-bottom: 20px;
}

.doctor .choice-icon {
  background: rgba(139, 92, 246, .13);
  color: #c4b5fd;
}

.choice-title {
  font-size: 30px;
  font-weight: 950;
  letter-spacing: -.04em;
  margin-bottom: 10px;
}

.choice-body {
  color: #cbd5e1;
  max-width: 420px;
}

.demo-shell {
  display: grid;
  grid-template-columns: 278px 1fr;
  gap: 0;
  min-height: calc(100vh - 88px);
  border: 0;
  border-radius: 0;
  overflow: hidden;
  background: #f8fafc;
  color: var(--ink);
}

.sidebar {
  background: white;
  border-right: 1px solid #e5e7eb;
  padding: 32px 26px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.sidebar .brand-name {
  color: #214a32;
  font-size: 24px;
}

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

.nav span {
  border-radius: 12px;
  padding: 13px 14px;
  color: #475569;
  font-weight: 800;
}

.nav .active {
  color: #16a85f;
  background: #eaf6ef;
}

.help {
  margin-top: auto;
  border: 1px solid #d8ebdd;
  border-radius: 18px;
  padding: 17px;
  background: #f1f8f3;
}

.workspace {
  padding: 38px 70px 34px;
}

.workspace-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
}

.profile-pill {
  display: flex;
  align-items: center;
  gap: 11px;
  border: 1px solid #dde7e2;
  background: white;
  border-radius: 14px;
  padding: 10px 13px;
}

.avatar {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: linear-gradient(135deg, #f3b78c, #8fd3a4);
}

.dashboard-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 22px;
  align-items: start;
}

.card {
  border: 1px solid #dde7e2;
  border-radius: 12px;
  background: white;
  padding: 20px;
  box-shadow: 0 16px 48px rgba(15,23,42,.06);
}

.status-card {
  background: #f8fcf9;
  min-height: 248px;
  border-left: 1px solid #dde7e2;
}

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

.status-pill {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  border: 1px solid #bbf7d0;
  color: #15803d;
  background: #ecfdf5;
  border-radius: 999px;
  padding: 8px 12px;
  font-weight: 950;
  font-size: 13px;
}

.big-title {
  color: #0f172a;
  font-size: clamp(25px, 3.2vw, 36px);
  font-weight: 950;
  line-height: 1.15;
  letter-spacing: -.04em;
}

.ask-banner {
  margin-top: 16px;
  min-height: 78px;
  border-radius: 12px;
  background: #0fb85e;
  color: white;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.ask-icon {
  width: 46px;
  height: 46px;
  border-radius: 15px;
  background: rgba(255,255,255,.18);
  display: grid;
  place-items: center;
  font-size: 24px;
}

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

.tool {
  border: 1px solid #dde7e2;
  border-radius: 16px;
  background: white;
  padding: 18px;
}

.tool strong,
.card strong {
  display: block;
  color: #0f172a;
  font-size: 15px;
  margin-bottom: 7px;
}

.value {
  display: block;
  color: #0f172a;
  font-size: 30px;
  font-weight: 950;
  letter-spacing: -.04em;
}

.rail {
  display: grid;
  gap: 16px;
}

.progress-ring {
  width: 128px;
  height: 128px;
  border-radius: 999px;
  border: 9px solid #2fbe72;
  display: grid;
  place-items: center;
  margin: 10px auto;
  background: #f8fcf9;
}

.progress-ring span {
  color: #0f172a;
  font-size: 35px;
  font-weight: 950;
}

.list {
  margin: 10px 0 0;
  padding-left: 20px;
  color: #475569;
  line-height: 1.8;
}

.emergency {
  border-color: #f8b4b4;
  background: #fff3f3;
}

.emergency strong { color: var(--red); }

.doctor-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 16px;
}

.patient-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 15px;
  margin-top: 12px;
  background: #fff;
}

.priority {
  border-color: #fed7aa;
  background: #fff7ed;
}

.tag {
  border-radius: 999px;
  padding: 7px 10px;
  font-weight: 950;
  font-size: 12px;
}

.tag.green { color: #15803d; background: #dcfce7; }
.tag.yellow { color: #b45309; background: #fef3c7; }
.tag.red { color: #be123c; background: #ffe4e6; }

.dashboard-dark .hack-hero-row {
  min-height: 206px;
}

.clean-dashboard-grid {
  display: grid;
  gap: 16px;
}

.dashboard-card {
  height: 148px;
}

.dashboard-card .role-title {
  font-size: 31px;
}

.dashboard-card .role-icon {
  font-size: 35px;
  font-weight: 950;
}

.dashboard-strip {
  margin-top: 20px;
}

.dashboard-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 20px;
}

.purple-glow {
  background: #20123a;
}

.doctor-figure {
  justify-content: center;
}

.doctor-screen {
  width: 128px;
  height: 78px;
  border-radius: 10px;
  border: 6px solid #25314f;
  background: linear-gradient(135deg, #2e7db2 0 55%, #4b82a8 56%);
  box-shadow: 0 18px 44px rgba(0,0,0,.28);
}

.doctor-base {
  width: 90px;
  height: 16px;
  border-radius: 6px;
  background: #6b7280;
  margin-top: 8px;
}

@media (max-width: 960px) {
  .hero,
  .dashboard-grid,
  .demo-shell {
    grid-template-columns: 1fr;
  }

  .sidebar {
    display: none;
  }

  .choice-grid,
  .doctor-stat-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1180px) {
  .page { width: min(100% - 36px, 1560px); }
  .hack-hero-row { align-items: flex-start; flex-direction: column; gap: 22px; padding-bottom: 24px; }
  .identity-block { width: auto; }
  .hero-divider, .hero-art { display: none; }
  .role-art { display: none; }
  .feature-strip { flex-direction: column; align-items: stretch; padding: 22px; }
}

@media (max-width: 620px) {
  .page { width: min(100% - 24px, 1240px); padding-top: 18px; }
  .topbar,
  .workspace-top {
    align-items: flex-start;
    flex-direction: column;
  }
  .metric-grid,
  .tool-grid,
  .mini-grid {
    grid-template-columns: 1fr;
  }
  .phone-wrap { min-height: auto; }
}

/* Exact static translation of the hackathon desktop patient dashboard */
.exact-body {
  background: #f8fafc;
  color: #0f172a;
}

.exact-shell {
  min-height: 100vh;
  display: flex;
  background: #f8fafc;
}

.exact-sidebar {
  width: 278px;
  background: #ffffff;
  border-right: 1px solid #e5e7eb;
  padding: 32px 26px;
  display: flex;
  flex-direction: column;
}

.exact-brand {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 36px;
}

.exact-brand img {
  width: 54px;
  height: 54px;
  border-radius: 27px;
}

.exact-brand strong {
  display: block;
  color: #214a32;
  font-size: 28px;
  font-weight: 900;
  letter-spacing: 1px;
}

.exact-brand small {
  display: block;
  color: #7a8796;
  font-size: 12px;
  margin-top: 5px;
}

.exact-nav {
  display: grid;
  gap: 8px;
  flex: 1;
}

.exact-nav a {
  min-height: 46px;
  border-radius: 10px;
  padding: 0 13px;
  display: flex;
  align-items: center;
  gap: 13px;
  color: #111827;
  font-size: 15px;
  font-weight: 600;
}

.exact-nav a.active {
  background: #eaf6ef;
  color: #16a85f;
  font-weight: 900;
}

.exact-nav em {
  margin-left: auto;
  background: #ddf6e8;
  color: #16a85f;
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 11px;
  font-style: normal;
  font-weight: 800;
}

.exact-help {
  border: 1px solid #d8ebdd;
  border-radius: 14px;
  padding: 20px;
  background: #f1f8f3;
  overflow: hidden;
}

.exact-help strong {
  color: #0f172a;
  font-size: 16px;
  font-weight: 900;
}

.exact-help p {
  color: #64748b;
  font-size: 13px;
  line-height: 19px;
  margin: 10px 0 18px;
}

.exact-help > a {
  height: 42px;
  border-radius: 21px;
  background: #16a85f;
  color: #ffffff;
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 900;
}

.help-art {
  height: 104px;
  display: flex;
  align-items: flex-end;
  justify-content: space-around;
  margin-top: 14px;
}

.help-art img {
  width: 82px;
  height: 82px;
  border-radius: 41px;
}

.help-art span,
.soft-leaf {
  width: 42px;
  height: 58px;
  border-radius: 42px 0 42px 0;
  background: #a7d9bc;
  display: block;
}

.exact-workspace {
  flex: 1;
  padding: 38px 70px 34px;
  overflow: auto;
}

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

.exact-topbar h1 {
  color: #0f172a;
  font-size: 19px;
  line-height: 1;
  font-weight: 900;
  margin: 0;
  letter-spacing: 0;
}

.exact-topbar p {
  color: #475569;
  font-size: 13px;
  margin-top: 10px;
}

.exact-top-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.exact-top-actions button,
.progress-row button {
  height: 42px;
  border: 1px solid #dde7e2;
  border-radius: 10px;
  background: #ffffff;
  color: #0f172a;
  padding: 0 16px;
  font-weight: 800;
}

.bell {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  position: relative;
  font-size: 22px;
}

.bell b {
  position: absolute;
  top: 4px;
  right: 5px;
  width: 18px;
  height: 18px;
  border-radius: 9px;
  background: #e11d48;
  color: #ffffff;
  display: grid;
  place-items: center;
  font-size: 10px;
}

.profile {
  height: 58px;
  border: 1px solid #dde7e2;
  border-radius: 12px;
  background: #ffffff;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 12px;
}

.profile img {
  width: 40px;
  height: 40px;
  border-radius: 20px;
}

.profile strong {
  display: block;
  color: #0f172a;
  font-size: 14px;
  font-weight: 900;
}

.profile small {
  display: block;
  color: #475569;
  font-size: 13px;
  margin-top: 3px;
}

.exact-grid {
  display: flex;
  gap: 38px;
  align-items: flex-start;
}

.exact-main {
  flex: 1;
  min-width: 0;
  max-width: 760px;
}

.exact-status-card {
  min-height: 248px;
  border: 1px solid rgba(22, 168, 95, .34);
  border-radius: 12px;
  background: #f8fcf9;
  padding: 20px;
  margin-bottom: 18px;
  overflow: hidden;
}

.exact-status-head,
.exact-status-body {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.exact-status-pill {
  min-height: 38px;
  border-radius: 12px;
  border: 1px solid rgba(22, 168, 95, .34);
  background: rgba(22, 168, 95, .08);
  color: #16a85f;
  padding: 0 13px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 900;
}

.exact-status-pill i {
  width: 12px;
  height: 12px;
  border-radius: 6px;
  background: #16a85f;
}

.priority-text {
  color: #475569;
  font-size: 12px;
}

.priority-text b { color: #16a85f; }

.exact-status-body {
  margin-top: 20px;
}

.exact-status-body h2 {
  color: #0f172a;
  font-size: 25px;
  line-height: 32px;
  font-weight: 900;
  margin: 0;
  letter-spacing: 0;
}

.exact-status-body p {
  color: #475569;
  font-size: 15px;
  line-height: 24px;
  margin-top: 10px;
}

.exact-status-body hr {
  height: 1px;
  border: 0;
  background: #dde7e2;
  margin: 18px 0 16px;
}

.exact-status-body small {
  display: block;
  color: #7a8796;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.exact-status-body strong {
  color: #0f172a;
  font-size: 14px;
}

.exact-check-art {
  width: 190px;
  height: 155px;
  display: grid;
  place-items: center;
  position: relative;
}

.exact-check-art b {
  width: 88px;
  height: 88px;
  border-radius: 44px;
  background: rgba(22, 168, 95, .1);
  color: #16a85f;
  display: grid;
  place-items: center;
  font-size: 54px;
}

.exact-check-art span {
  position: absolute;
  width: 54px;
  height: 70px;
  border-radius: 54px 0 54px 0;
  background: #a9ddbd;
}

.exact-check-art span:first-child { right: 18px; top: 0; }
.exact-check-art span:last-child { right: 2px; bottom: 18px; background: #8fcda9; }

.exact-ask {
  min-height: 72px;
  border-radius: 12px;
  background: #0fb85e;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 0 22px;
  margin-bottom: 18px;
  color: white;
}

.exact-ask > span { font-size: 28px; }
.exact-ask strong { color: white; font-size: 16px; font-weight: 900; }
.exact-ask p { color: #e7fff0; font-size: 13px; margin-top: 5px; }
.exact-ask b { margin-left: auto; font-size: 32px; }

.exact-plan {
  min-height: 202px;
  border: 1px solid #dde7e2;
  border-radius: 12px;
  background: #ffffff;
  display: flex;
  overflow: hidden;
  margin-bottom: 18px;
}

.plan-copy {
  flex: 1;
  padding: 20px;
}

.plan-copy h3 {
  color: #0f172a;
  font-size: 17px;
  font-weight: 900;
  margin: 0 0 12px;
}

.plan-copy p {
  color: #334155;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 0;
}

.plan-art {
  width: 240px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 8px;
  background: #f5fbf7;
}

.mini-mom {
  width: 80px;
  height: 140px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-direction: column;
  position: relative;
}

.mini-mom i {
  position: absolute;
  top: 10px;
  width: 62px;
  height: 64px;
  border-radius: 31px;
  background: #334155;
}

.mini-mom b {
  position: absolute;
  top: 28px;
  width: 38px;
  height: 44px;
  border-radius: 19px;
  background: #f3b78c;
  z-index: 2;
}

.mini-mom em {
  width: 54px;
  height: 90px;
  border-radius: 28px 28px 0 0;
  background: #8fd3a4;
}

.mini-mom strong {
  position: absolute;
  bottom: 10px;
  width: 66px;
  height: 58px;
  border-radius: 33px;
  background: #9adcb0;
}

.heart { color: #f8b4b4; font-size: 34px; margin-bottom: 30px; }
.soft-leaf { width: 82px; height: 92px; background: #d6efe0; margin-bottom: 20px; }
.soft-leaf.second { width: 76px; background: #bfe5cc; }

.exact-section-title {
  color: #0f172a;
  font-size: 17px;
  font-weight: 900;
  margin: 0 0 12px;
}

.exact-tools {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.exact-tools a {
  width: calc(50% - 9px);
  min-height: 108px;
  border: 1px solid #dde7e2;
  border-radius: 12px;
  background: #ffffff;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 18px;
}

.exact-tools i {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  border: 1px solid rgba(22,168,95,.26);
  display: grid;
  place-items: center;
  font-style: normal;
}

.exact-tools strong {
  color: #0f172a;
  font-size: 15px;
  font-weight: 900;
}

.exact-tools p {
  color: #475569;
  font-size: 13px;
  line-height: 19px;
  margin-top: 7px;
}

.exact-note {
  color: #64748b;
  font-size: 12px;
  line-height: 18px;
  text-align: center;
  border: 1px solid #dde7e2;
  border-radius: 10px;
  padding: 12px 28px;
  margin-top: 22px;
  background: #ffffff;
}

.exact-rail {
  width: 405px;
  display: grid;
  gap: 20px;
}

.exact-rail article {
  border: 1px solid #dde7e2;
  border-radius: 12px;
  background: #ffffff;
  padding: 20px;
}

.exact-rail h3 {
  color: #0f172a;
  font-size: 15px;
  font-weight: 900;
  margin: 0 0 14px;
}

.progress-row {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 22px;
}

.progress-circle {
  width: 126px;
  height: 126px;
  border-radius: 63px;
  border: 8px solid #2fbe72;
  display: grid;
  place-items: center;
  align-content: center;
  background: #f8fcf9;
}

.progress-circle strong {
  color: #0f172a;
  font-size: 34px;
  line-height: 1;
}

.progress-circle small {
  color: #0f172a;
  font-size: 13px;
  font-weight: 900;
}

.progress-row b { color: #0f172a; font-size: 14px; }
.progress-row p { color: #475569; font-size: 13px; margin: 12px 0 22px; }

.exact-rail article > a {
  min-height: 54px;
  border-bottom: 1px solid #e5e7eb;
  display: flex;
  align-items: center;
  color: #475569;
  font-size: 14px;
}

.tip-row {
  display: flex;
  align-items: center;
  gap: 18px;
}

.tip-row div {
  flex: 1;
  border-radius: 8px;
  background: #eaf4ed;
  padding: 18px;
  color: #0f172a;
  font-size: 15px;
  line-height: 22px;
  font-weight: 900;
}

.tip-row small {
  display: block;
  color: #475569;
  font-size: 13px;
  margin-top: 12px;
  font-weight: 400;
}

.plant {
  width: 54px;
  height: 72px;
  border-radius: 54px 0 54px 0;
  background: #79b98f;
}

.exact-emergency {
  border-color: #f8b4b4 !important;
  background: #fff3f3 !important;
}

.exact-emergency h3 { color: #e11d48; font-size: 17px; }
.exact-emergency p { color: #475569; font-size: 14px; line-height: 21px; margin-bottom: 18px; }
.exact-emergency button {
  width: 100%;
  min-height: 48px;
  border: 0;
  border-radius: 10px;
  background: #e11d48;
  color: white;
  font-weight: 900;
}

.chips {
  display: flex;
  gap: 8px;
}

.chips span {
  flex: 1;
  border: 1px solid #dde7e2;
  border-radius: 999px;
  padding: 8px 0;
  text-align: center;
  color: #64748b;
  font-size: 12px;
  font-weight: 900;
}

.chips span:first-child {
  border-color: #16a85f;
  background: rgba(22,168,95,.08);
  color: #16a85f;
}

.doctor-exact {
  border-color: rgba(139, 92, 246, .36);
}

.purple-pill {
  color: #8b5cf6;
  border-color: rgba(139, 92, 246, .35);
  background: rgba(139, 92, 246, .08);
}

.purple-pill i {
  background: #8b5cf6;
}

.doctor-exact .priority-text b {
  color: #8b5cf6;
}

.doctor-check b {
  color: #8b5cf6;
  background: rgba(139, 92, 246, .1);
}

.doctor-check span {
  background: #d8cdfa;
}

.purple-ask {
  background: #8b5cf6;
}

.purple-circle {
  border-color: #8b5cf6;
}

.doctor-plan-art {
  align-items: center;
}

.doctor-monitor {
  width: 150px;
  height: 104px;
  border-radius: 12px;
  border: 8px solid #334155;
  background: linear-gradient(135deg, #2f7dae 0 55%, #6aa0bd 56%);
  box-shadow: 0 18px 44px rgba(15,23,42,.18);
  position: relative;
}

.doctor-monitor::after {
  content: "";
  position: absolute;
  left: 36px;
  right: 36px;
  bottom: -24px;
  height: 18px;
  border-radius: 7px;
  background: #6b7280;
}

@media (max-width: 1100px) {
  .exact-sidebar { display: none; }
  .exact-workspace { padding: 24px; }
  .exact-grid { flex-direction: column; }
  .exact-main, .exact-rail { width: 100%; max-width: none; }
}

/* Hackathon-style dashboard details: vitals, ECG line, watch screening, emergency action */
.nav-ico {
  width: 22px;
  height: 22px;
  border-radius: 8px;
  display: inline-grid;
  place-items: center;
  margin-right: 10px;
  background: rgba(74, 222, 128, .14);
  color: #16a85f;
  font-size: 11px;
  font-weight: 1000;
}

.exact-nav a.active .nav-ico {
  background: rgba(255,255,255,.22);
  color: #fff;
}

.vitals-strip {
  margin-top: 20px;
  display: grid;
  grid-template-columns: 150px 1fr 170px;
  gap: 14px;
}

.vital-tile,
.ecg-card,
.sensor-grid article,
.watch-panel {
  border: 1px solid rgba(22, 168, 95, .16);
  background: linear-gradient(145deg, rgba(255,255,255,.96), rgba(236,253,245,.78));
  border-radius: 24px;
  box-shadow: 0 16px 36px rgba(15,23,42,.06);
}

.vital-tile {
  padding: 18px;
}

.vital-tile small,
.ecg-card small {
  display: block;
  color: #64748b;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.vital-tile strong {
  display: block;
  color: #03120a;
  font-size: 30px;
  line-height: 1.05;
  margin-top: 8px;
}

.vital-tile span {
  color: #16a85f;
  font-weight: 900;
  font-size: 13px;
}

.ecg-card {
  padding: 16px 18px 10px;
  overflow: hidden;
}

.ecg-card > div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  margin-bottom: 2px;
}

.ecg-card b {
  color: #16a85f;
  font-size: 13px;
}

.ecg-card svg {
  width: 100%;
  height: 82px;
  display: block;
}

.ecg-card polyline {
  fill: none;
  stroke: #16a85f;
  stroke-width: 6;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 8px rgba(74,222,128,.34));
}

.doctor-vitals .ecg-card polyline {
  stroke: #8b5cf6;
  filter: drop-shadow(0 0 8px rgba(139,92,246,.28));
}

.doctor-vitals .ecg-card b,
.doctor-vitals .vital-tile span {
  color: #8b5cf6;
}

.sensor-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 16px 0;
}

.sensor-grid article {
  padding: 18px;
  display: grid;
  grid-template-columns: 52px 1fr auto;
  gap: 14px;
  align-items: center;
}

.sensor-grid strong {
  display: block;
  color: #03120a;
  font-size: 16px;
}

.sensor-grid p {
  margin: 5px 0 0;
  color: #64748b;
  font-size: 13px;
}

.sensor-icon,
.watch-face {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  background: #062f19;
  position: relative;
  box-shadow: inset 0 0 0 1px rgba(74,222,128,.26);
}

.watch-icon::before,
.watch-icon::after,
.watch-face::before,
.watch-face::after {
  content: "";
  position: absolute;
  left: 17px;
  width: 18px;
  height: 7px;
  border-radius: 7px;
  background: #123b25;
}

.watch-icon::before,
.watch-face::before { top: -5px; }
.watch-icon::after,
.watch-face::after { bottom: -5px; }

.watch-icon {
  background: linear-gradient(180deg, #123b25, #07140d);
}

.watch-icon span,
.watch-face i {
  position: absolute;
  inset: 12px;
  border-radius: 12px;
  background: #4ade80;
}

.baby-icon::before {
  content: "";
  position: absolute;
  width: 21px;
  height: 21px;
  border-radius: 50%;
  background: #f7b87e;
  top: 9px;
  left: 16px;
}

.baby-icon::after {
  content: "";
  position: absolute;
  width: 30px;
  height: 21px;
  border-radius: 20px 20px 10px 10px;
  background: #67bb72;
  bottom: 8px;
  left: 11px;
}

.oxygen-icon::before {
  content: "98";
  position: absolute;
  inset: 10px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(74,222,128,.18);
  color: #4ade80;
  font-weight: 1000;
}

.sensor-ok {
  color: #16a85f;
  background: rgba(22,168,95,.1);
  border: 1px solid rgba(22,168,95,.22);
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 12px;
}

.watch-panel {
  margin: 16px 0 24px;
  padding: 22px;
}

.watch-panel-head {
  display: flex;
  gap: 16px;
  align-items: center;
}

.watch-panel h3 {
  margin: 0;
  color: #03120a;
  font-size: 22px;
}

.watch-panel p {
  margin: 5px 0 0;
  color: #64748b;
}

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

.watch-results span {
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255,255,255,.78);
  color: #0f172a;
  font-size: 14px;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 10px;
}

.watch-results b {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #16a85f;
  box-shadow: 0 0 0 5px rgba(22,168,95,.12);
}

.watch-caution b {
  background: #f59e0b;
  box-shadow: 0 0 0 5px rgba(245,158,11,.14);
}

.watch-alert b {
  background: #ef4444;
  box-shadow: 0 0 0 5px rgba(239,68,68,.14);
}

.purple-watch {
  background: linear-gradient(180deg, #2d195c, #160a33);
  box-shadow: inset 0 0 0 1px rgba(139,92,246,.36);
}

.purple-watch i {
  background: #8b5cf6;
}

.doctor-watch-panel {
  border-color: rgba(139,92,246,.18);
  background: linear-gradient(145deg, rgba(255,255,255,.96), rgba(245,243,255,.82));
}

.big-emergency-button {
  width: 100%;
  min-height: 62px;
  border-radius: 22px !important;
  background: linear-gradient(135deg, #ef4444, #b91c1c) !important;
  color: #fff !important;
  box-shadow: 0 18px 36px rgba(239,68,68,.28);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  letter-spacing: .01em;
}

.alert-mark {
  width: 31px;
  height: 31px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.36);
  font-weight: 1000;
}

@media (max-width: 760px) {
  .vitals-strip,
  .sensor-grid,
  .watch-results {
    grid-template-columns: 1fr;
  }

  .sensor-grid article {
    grid-template-columns: 48px 1fr;
  }

  .sensor-ok {
    grid-column: 2;
    width: max-content;
  }
}

.mobile-health-app {
  display: none;
}

@media (max-width: 720px) {
  .exact-body {
    background: #05070a;
  }

  .exact-shell {
    display: none;
  }

  .mobile-health-app {
    min-height: 100vh;
    display: block;
    background: #05070a;
    color: #f8fafc;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    padding-bottom: 86px;
  }

  .mobile-health-screen {
    width: min(326px, calc(100vw - 38px));
    margin: 0 auto;
    padding-top: 20px;
  }

  .mobile-health-top {
    padding-top: 2px;
  }

  .bracelet-row {
    color: #94a3b8;
    font-size: 10px;
    line-height: 18px;
    display: flex;
    align-items: center;
    gap: 7px;
  }

  .bracelet-row span,
  .brand-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #17d66f;
    box-shadow: 0 0 0 3px rgba(23,214,111,.08);
  }

  .mobile-brand-row {
    margin-top: 3px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .mobile-brand-row > div {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .mobile-brand-row strong {
    color: #fff;
    font-size: 13px;
    letter-spacing: .18em;
    font-weight: 1000;
  }

  .mobile-brand-row small {
    color: #94a3b8;
    font-size: 10px;
    font-weight: 800;
  }

  .mobile-brand-row button {
    height: 23px;
    padding: 0 12px;
    border-radius: 999px;
    border: 1px solid #334155;
    background: #111820;
    color: #fff;
    font-size: 10px;
    font-weight: 1000;
  }

  .mobile-risk-dots {
    margin-top: 8px;
    display: flex;
    align-items: center;
    gap: 7px;
  }

  .mobile-risk-dots b {
    width: 24px;
    height: 8px;
    border-radius: 999px;
    background: #17d66f;
  }

  .mobile-risk-dots i {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #7c2d12;
  }

  .mobile-health-status {
    margin-top: 10px;
    border: 1px solid #26323d;
    border-left: 3px solid #17d66f;
    border-radius: 13px;
    background: #12171c;
    padding: 15px 15px 13px;
    box-shadow: 0 18px 34px rgba(0,0,0,.22);
  }

  .status-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
  }

  .all-clear {
    border: 1px solid #17d66f;
    border-radius: 999px;
    padding: 7px 12px;
    color: #17d66f;
    font-size: 11px;
    font-weight: 1000;
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }

  .all-clear i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #17d66f;
  }

  .status-line small {
    color: #94a3b8;
    font-size: 8px;
  }

  .mobile-health-status h1 {
    margin: 14px 0 8px;
    color: #fff;
    font-size: 20px;
    line-height: 1.1;
    letter-spacing: -.04em;
    font-weight: 1000;
  }

  .mobile-health-status p {
    margin: 0;
    color: #cbd5e1;
    font-size: 11.5px;
    line-height: 19px;
    font-weight: 700;
  }

  .mobile-health-status hr {
    border: 0;
    border-top: 1px solid #2a3440;
    margin: 14px 0 10px;
  }

  .mobile-health-status > small {
    display: block;
    color: #64748b;
    letter-spacing: .24em;
    font-size: 8px;
    font-weight: 1000;
    margin-bottom: 5px;
  }

  .mobile-health-status > strong {
    color: #fff;
    font-size: 12px;
    font-weight: 1000;
  }

  .mobile-section-row {
    margin: 18px 0 13px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .mobile-section-row h2 {
    margin: 0;
    color: #fff;
    font-size: 12px;
    letter-spacing: -.02em;
    font-weight: 1000;
  }

  .mobile-section-row a {
    min-width: 95px;
    height: 30px;
    border-radius: 999px;
    border: 1px solid #17d66f;
    background: #0f2b1d;
    color: #fff;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-size: 10px;
    font-weight: 1000;
    box-shadow: 0 0 0 1px rgba(23,214,111,.08);
  }

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

  .mobile-vital-grid article {
    min-height: 97px;
    border-radius: 12px;
    border: 1px solid #26323d;
    background: #12171c;
    padding: 14px 13px;
    position: relative;
  }

  .mobile-vital-grid article > span {
    position: absolute;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #17d66f;
    right: 13px;
    top: 16px;
  }

  .mobile-vital-grid small {
    color: #94a3b8;
    font-size: 9.5px;
    font-weight: 900;
  }

  .mobile-vital-grid strong {
    margin-top: 8px;
    display: block;
    color: #fff;
    font-size: 24px;
    line-height: 1;
    font-weight: 1000;
    letter-spacing: -.04em;
  }

  .mobile-vital-grid em {
    color: #cbd5e1;
    font-size: 9px;
    font-style: normal;
    font-weight: 800;
    letter-spacing: 0;
  }

  .mini-bars {
    margin-top: 13px;
    display: flex;
    align-items: end;
    gap: 4px;
    height: 15px;
  }

  .mini-bars i {
    width: 3px;
    border-radius: 999px;
    background: #17d66f;
  }

  .mini-bars i:nth-child(1) { height: 12px; }
  .mini-bars i:nth-child(2) { height: 6px; }
  .mini-bars i:nth-child(3) { height: 10px; }
  .mini-bars i:nth-child(4) { height: 4px; }
  .mini-bars i:nth-child(5) { height: 13px; }
  .mini-bars i:nth-child(6) { height: 8px; }
  .mini-bars i:nth-child(7) { height: 5px; }

  .mobile-bottom-nav {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    height: 70px;
    border-top: 1px solid #26323d;
    background: #11131a;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    padding: 8px 12px 9px;
    z-index: 40;
  }

  .mobile-bottom-nav a {
    color: #64748b;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    font-size: 9px;
    font-weight: 900;
  }

  .mobile-bottom-nav a.active {
    color: #17d66f;
  }

  .mobile-bottom-nav span {
    width: 18px;
    height: 18px;
    border-radius: 6px;
    border: 1px solid currentColor;
    opacity: .95;
  }

  .mobile-bottom-nav a:nth-child(2) span {
    border-radius: 50%;
    background: currentColor;
    opacity: .5;
  }

  .mobile-bottom-nav .sos span {
    width: 26px;
    height: 26px;
    border-radius: 8px 8px 4px 4px;
    border: 0;
    background: linear-gradient(180deg, #ff4f8b 0 50%, #f8fafc 51%);
    box-shadow: 0 -3px 0 #facc15;
  }

  .mobile-bottom-nav a:nth-child(4) span {
    border-radius: 3px;
    box-shadow: inset 0 7px 0 currentColor;
  }

  .mobile-bottom-nav a:nth-child(5) span {
    border-radius: 50%;
  }
}

/* Materna desktop wellness dashboard */
.desktop-wellness-app {
  min-height: 100vh;
  display: flex;
  background:
    radial-gradient(circle at 72% 0%, rgba(35, 83, 70, .23), transparent 36%),
    radial-gradient(circle at 45% 85%, rgba(22, 163, 74, .08), transparent 30%),
    #050a0f;
  color: #f8fafc;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.wellness-body {
  background: #050a0f;
}

.wellness-sidebar {
  width: 268px;
  min-height: 100vh;
  border-right: 1px solid #25313d;
  padding: 38px 20px 28px;
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, rgba(13,20,28,.96), rgba(5,10,15,.98));
}

.wellness-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  text-decoration: none;
  font-size: 22px;
  font-weight: 1000;
  letter-spacing: -.04em;
  margin: 0 10px 36px;
}

.logo-heart {
  width: 32px;
  height: 30px;
  position: relative;
  transform: rotate(-45deg);
}

.logo-heart::before,
.logo-heart::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 28px;
  border: 3px solid #22c55e;
  border-radius: 20px 20px 0 0;
  border-bottom: 0;
}

.logo-heart::before { left: 5px; transform: rotate(90deg); }
.logo-heart::after { left: 0; }

.wellness-nav {
  display: grid;
  gap: 9px;
}

.wellness-nav a,
.wellness-settings {
  min-height: 51px;
  border-radius: 12px;
  color: #a9b4c2;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 14px;
  font-size: 16px;
  font-weight: 750;
  transition: background .18s ease, color .18s ease, transform .18s ease;
}

.wellness-nav a:hover,
.wellness-settings:hover {
  background: rgba(148,163,184,.08);
  color: #fff;
  transform: translateX(2px);
}

.wellness-nav a.active {
  background: linear-gradient(135deg, rgba(34,197,94,.16), rgba(148,163,184,.06));
  color: #22c55e;
  box-shadow: inset 0 0 0 1px rgba(34,197,94,.08);
}

.wellness-nav i,
.wellness-settings i {
  width: 22px;
  height: 22px;
  border: 2px solid currentColor;
  border-radius: 7px;
  opacity: .95;
}

.wellness-nav .ico-heart { border-radius: 50%; background: currentColor; opacity: .58; }
.wellness-nav .ico-spark { border-radius: 50%; border-style: dashed; }
.wellness-nav .ico-bag { border-radius: 4px; box-shadow: inset 0 8px 0 rgba(255,255,255,.15); }
.wellness-nav .ico-calendar { border-radius: 5px; }
.wellness-nav .ico-message { border-radius: 9px; }
.wellness-nav .ico-book { border-radius: 2px; }
.wellness-nav .ico-user { border-radius: 50%; }
.wellness-settings .ico-gear { border-radius: 50%; }

.wellness-sidebar-bottom {
  margin-top: auto;
  display: grid;
  gap: 26px;
}

.support-card,
.bracelet-card {
  border: 1px solid #25313d;
  background: #111821;
  border-radius: 13px;
}

.support-card {
  padding: 18px 16px;
  min-height: 126px;
  position: relative;
  overflow: hidden;
}

.support-card strong {
  display: block;
  color: #fff;
  font-size: 14px;
  max-width: 140px;
}

.support-card p {
  margin: 8px 0 0;
  color: #cbd5e1;
  font-size: 12px;
}

.support-heart {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: radial-gradient(circle, #22c55e 0 24%, rgba(34,197,94,.16) 25%);
}

.bracelet-card {
  padding: 20px 16px;
  display: flex;
  gap: 14px;
  align-items: center;
}

.bracelet-card > span {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(34,197,94,.12);
  border: 1px solid rgba(34,197,94,.25);
  position: relative;
}

.bracelet-card > span::after {
  content: "";
  position: absolute;
  inset: 10px 13px;
  border: 2px solid #22c55e;
  border-radius: 8px;
}

.bracelet-card strong {
  color: #fff;
  font-size: 14px;
}

.bracelet-card p {
  margin: 4px 0 0;
  color: #8d98a6;
  font-size: 12px;
}

.wellness-main {
  flex: 1;
  padding: 42px 46px 34px;
  max-width: 1500px;
  margin: 0 auto;
}

.wellness-header {
  display: flex;
  justify-content: space-between;
  gap: 26px;
  align-items: flex-start;
  margin-bottom: 26px;
}

.wellness-header h1 {
  color: #fff;
  margin: 0;
  font-size: 28px;
  line-height: 1.05;
  font-weight: 950;
  letter-spacing: -.04em;
}

.wellness-header h1 span {
  color: #facc15;
  font-size: 18px;
  vertical-align: middle;
}

.wellness-header p {
  color: #cbd5e1;
  font-size: 16px;
  margin: 12px 0 0;
}

.wellness-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.notify-btn,
.theme-pill,
.profile-pill {
  border: 1px solid #273647;
  background: rgba(15, 23, 32, .78);
  color: #fff;
  border-radius: 999px;
  min-height: 48px;
  padding: 0 18px;
  font-weight: 850;
}

.notify-btn {
  width: 48px;
  padding: 0;
}

.notify-btn span,
.theme-pill i {
  display: inline-block;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  border: 2px solid #facc15;
}

.theme-pill {
  display: inline-flex;
  gap: 11px;
  align-items: center;
}

.profile-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.profile-pill b {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #063f23;
  color: #22c55e;
  font-size: 18px;
}

.profile-pill strong,
.profile-pill small {
  display: block;
  text-align: left;
}

.profile-pill small {
  color: #94a3b8;
  font-size: 11px;
}

.profile-pill i {
  width: 8px;
  height: 8px;
  border-right: 1.5px solid #94a3b8;
  border-bottom: 1.5px solid #94a3b8;
  transform: rotate(45deg);
  margin-left: 4px;
}

.wellness-hero-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 270px;
  gap: 20px;
  margin-bottom: 28px;
}

.health-summary-card,
.pregnancy-card,
.wellness-vital-grid article,
.trends-card,
.tip-card,
.help-now-card,
.quick-check {
  border: 1px solid #273647;
  background: linear-gradient(145deg, rgba(17,24,33,.96), rgba(10,15,22,.98));
  box-shadow: 0 22px 50px rgba(0,0,0,.26);
}

.health-summary-card {
  min-height: 328px;
  border-radius: 15px;
  border-left: 3px solid #22c55e;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 290px;
  gap: 20px;
  padding: 28px 40px 26px 32px;
  overflow: hidden;
  position: relative;
}

.summary-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}

.clear-badge {
  height: 40px;
  padding: 0 17px;
  border: 1px solid rgba(34,197,94,.44);
  background: rgba(34,197,94,.14);
  color: #22c55e;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 950;
}

.clear-badge i,
.dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #22c55e;
}

.summary-meta small {
  color: #cbd5e1;
  font-size: 14px;
}

.health-summary-card h2 {
  color: #fff;
  font-size: clamp(38px, 4vw, 48px);
  line-height: 1;
  letter-spacing: -.055em;
  margin: 32px 0 18px;
  font-weight: 1000;
}

.health-summary-card p {
  color: #e2e8f0;
  font-size: 17px;
  line-height: 1.65;
  margin: 0;
}

.health-summary-card hr {
  border: 0;
  border-top: 1px solid #344150;
  margin: 26px 0 24px;
  max-width: 760px;
}

.health-summary-card .label {
  display: block;
  color: #9aa5b1;
  letter-spacing: .32em;
  font-size: 13px;
  margin-bottom: 12px;
}

.health-summary-card strong {
  color: #fff;
  font-size: 18px;
  font-weight: 950;
}

.shield-art {
  display: grid;
  place-items: center;
  position: relative;
}

.shield-art span {
  width: 118px;
  height: 132px;
  background: rgba(34,197,94,.18);
  border: 5px solid #22c55e;
  clip-path: polygon(50% 0, 90% 15%, 84% 62%, 50% 100%, 16% 62%, 10% 15%);
  filter: drop-shadow(0 0 26px rgba(34,197,94,.32));
}

.shield-art b {
  position: absolute;
  width: 58px;
  height: 30px;
  border-left: 8px solid #22c55e;
  border-bottom: 8px solid #22c55e;
  transform: rotate(-45deg);
  top: 132px;
}

.shield-art i,
.shield-art em {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  opacity: .85;
}

.shield-art i { top: 72px; right: 34px; }
.shield-art em { bottom: 72px; left: 22px; }

.pregnancy-card {
  border-radius: 18px;
  padding: 24px;
}

.pregnancy-top {
  display: flex;
  justify-content: space-between;
  color: #94a3b8;
  font-weight: 850;
}

.mini-mother {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 35%, #f7b87e 0 22%, transparent 23%), radial-gradient(circle at 50% 75%, #67bb72 0 36%, transparent 37%), #103c24;
}

.pregnancy-card h3 {
  margin: 28px 0 5px;
  color: #fff;
  font-size: 42px;
  letter-spacing: -.06em;
}

.pregnancy-card p {
  color: #cbd5e1;
  margin: 0 0 24px;
}

.pregnancy-progress {
  height: 10px;
  border-radius: 999px;
  background: #1e293b;
  overflow: hidden;
}

.pregnancy-progress span {
  display: block;
  width: 72%;
  height: 100%;
  background: linear-gradient(90deg, #22c55e, #86efac);
  border-radius: inherit;
}

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

.pregnancy-stats strong {
  color: #22c55e;
  font-size: 25px;
}

.pregnancy-stats small {
  color: #94a3b8;
  text-align: right;
}

.wellness-content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 22px;
  align-items: start;
}

.section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.section-heading h2,
.quick-check h2,
.trends-card h2,
.tip-card h2,
.help-now-card h2 {
  margin: 0;
  color: #fff;
  font-size: 22px;
  font-weight: 1000;
  letter-spacing: -.035em;
}

.section-heading a {
  height: 44px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid #22c55e;
  color: #fff;
  background: rgba(34,197,94,.07);
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  font-weight: 950;
  transition: transform .18s ease, background .18s ease;
}

.section-heading a:hover {
  transform: translateY(-2px);
  background: rgba(34,197,94,.15);
}

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

.wellness-vital-grid article {
  min-height: 168px;
  border-radius: 14px;
  padding: 23px 24px 20px;
  position: relative;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.wellness-vital-grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(34,197,94,.46);
  box-shadow: 0 26px 60px rgba(0,0,0,.32);
}

.wellness-vital-grid .dot {
  position: absolute;
  right: 28px;
  top: 28px;
}

.wellness-vital-grid small {
  color: #b8c1cd;
  font-size: 15px;
}

.wellness-vital-grid strong {
  display: block;
  margin-top: 12px;
  color: #fff;
  font-size: 40px;
  line-height: .95;
  letter-spacing: -.06em;
  font-weight: 1000;
}

.wellness-vital-grid em {
  color: #cbd5e1;
  font-size: 15px;
  font-style: normal;
  letter-spacing: 0;
  font-weight: 760;
}

.wellness-bars {
  height: 30px;
  margin-top: 20px;
  display: flex;
  align-items: end;
  gap: 7px;
}

.wellness-bars i {
  width: 5px;
  border-radius: 999px;
  background: #22c55e;
  opacity: .95;
}

.wellness-bars i:nth-child(1) { height: 24px; }
.wellness-bars i:nth-child(2) { height: 12px; }
.wellness-bars i:nth-child(3) { height: 27px; }
.wellness-bars i:nth-child(4) { height: 15px; opacity: .35; }
.wellness-bars i:nth-child(5) { height: 13px; opacity: .35; }
.wellness-bars i:nth-child(6) { height: 24px; }
.wellness-bars i:nth-child(7) { height: 16px; }
.wellness-bars i:nth-child(8) { height: 26px; }

.wellness-vital-grid p {
  display: flex;
  justify-content: space-between;
  margin: 14px 0 0;
  color: #22c55e;
  font-size: 13px;
  font-weight: 900;
}

.wellness-vital-grid p b {
  color: #cbd5e1;
  font-weight: 700;
}

.quick-check {
  border-radius: 16px;
  padding: 22px;
  margin-top: 22px;
}

.quick-check > div {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.quick-check a {
  border: 1px solid #273647;
  background: rgba(255,255,255,.025);
  border-radius: 13px;
  padding: 14px;
  color: #fff;
  text-decoration: none;
}

.quick-check a span {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #22c55e;
  display: block;
  margin-bottom: 12px;
}

.quick-check strong,
.quick-check small {
  display: block;
}

.quick-check small {
  color: #9aa5b1;
  margin-top: 4px;
}

.wellness-side-panel {
  display: grid;
  gap: 20px;
}

.trends-card,
.tip-card,
.help-now-card {
  border-radius: 16px;
  padding: 22px;
}

.side-card-head {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 14px;
}

.side-card-head p {
  color: #94a3b8;
  margin: 6px 0 0;
}

.side-card-head button {
  border: 1px solid #273647;
  background: #0f1720;
  color: #cbd5e1;
  border-radius: 999px;
  padding: 9px 13px;
}

.trends-card svg {
  width: 100%;
  height: auto;
  margin-top: 18px;
}

.grid-line {
  fill: none;
  stroke: #243142;
  stroke-width: 1;
}

.trend {
  fill: none;
  stroke-width: 4;
  stroke-linecap: round;
}

.trend-green { stroke: #22c55e; }
.trend-purple { stroke: #8b5cf6; }
.trend-blue { stroke: #38bdf8; }
.chart-dots circle { fill: #22c55e; }

.chart-labels {
  display: flex;
  justify-content: space-between;
  color: #94a3b8;
  font-size: 12px;
  margin-bottom: 16px;
}

.trends-card > a,
.tip-card a,
.help-now-card a,
.wellness-disclaimer a {
  color: #22c55e;
  text-decoration: none;
  font-weight: 850;
}

.tip-card {
  background: linear-gradient(145deg, rgba(19,31,24,.96), rgba(10,15,22,.98));
}

.tip-card p,
.help-now-card p {
  color: #d1d9e4;
  line-height: 1.55;
}

.help-now-card {
  border-color: rgba(244,63,94,.28);
  background: linear-gradient(145deg, rgba(38,17,25,.94), rgba(10,15,22,.98));
}

.help-now-card button {
  width: 100%;
  height: 46px;
  margin: 8px 0 13px;
  border: 0;
  border-radius: 999px;
  background: #f43f5e;
  color: #fff;
  font-weight: 1000;
}

.wellness-disclaimer {
  color: #8d98a6;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 34px;
}

.wellness-disclaimer span {
  width: 18px;
  height: 20px;
  border: 1px solid #64748b;
  clip-path: polygon(50% 0, 90% 18%, 82% 65%, 50% 100%, 18% 65%, 10% 18%);
}

@media (max-width: 1180px) {
  .wellness-sidebar { width: 232px; }
  .wellness-main { padding: 34px 26px; }
  .wellness-hero-row,
  .wellness-content-grid { grid-template-columns: 1fr; }
  .wellness-vital-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 720px) {
  .desktop-wellness-app {
    display: none;
  }
}

/* Screenshot-match refinements: tighter desktop scale + animated sensing lines */
@media (min-width: 721px) {
  .desktop-wellness-app {
    background:
      radial-gradient(circle at 78% 0%, rgba(35,83,70,.16), transparent 34%),
      radial-gradient(circle at 40% 74%, rgba(22,163,74,.055), transparent 30%),
      #050a0f;
    font-size: 14px;
  }

  .wellness-sidebar {
    width: 262px;
    padding: 42px 19px 28px;
  }

  .wellness-logo {
    font-size: 22px;
    margin-bottom: 38px;
  }

  .wellness-nav {
    gap: 8px;
  }

  .wellness-nav a,
  .wellness-settings {
    min-height: 51px;
    font-size: 15px;
    border-radius: 12px;
    padding: 0 15px;
  }

  .support-card {
    min-height: 180px;
    padding: 20px 16px 16px;
  }

  .support-card strong {
    font-size: 14px;
    line-height: 1.25;
    max-width: 150px;
  }

  .support-card p {
    max-width: 150px;
    font-size: 12px;
    line-height: 1.45;
  }

  .support-card a {
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 15px;
    height: 40px;
    border-radius: 8px;
    border: 1px solid #22c55e;
    color: #22c55e;
    background: rgba(34,197,94,.08);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 950;
  }

  .support-heart {
    width: 66px;
    height: 86px;
    right: 16px;
    bottom: 56px;
    border-radius: 22px;
    opacity: .95;
    background:
      radial-gradient(circle at 52% 18%, #f7b87e 0 13%, transparent 14%),
      radial-gradient(circle at 54% 59%, #22c55e 0 31%, transparent 32%),
      linear-gradient(140deg, transparent 0 46%, rgba(255,255,255,.08) 47%),
      #182130;
  }

  .bracelet-card {
    padding: 20px 16px;
  }

  .wellness-main {
    max-width: none;
    padding: 44px 46px 28px;
  }

  .wellness-header {
    margin-bottom: 24px;
  }

  .wellness-header h1 {
    font-size: 28px;
    letter-spacing: -.035em;
  }

  .wellness-header p {
    font-size: 16px;
    margin-top: 10px;
  }

  .notify-btn,
  .theme-pill,
  .profile-pill {
    min-height: 46px;
    font-size: 14px;
  }

  .wellness-hero-row {
    display: block;
    margin-bottom: 28px;
  }

  .pregnancy-card {
    display: none;
  }

  .health-summary-card {
    min-height: 326px;
    border-radius: 15px;
    border-color: #273647;
    border-left: 3px solid #22c55e;
    grid-template-columns: minmax(0, 1fr) 260px;
    padding: 19px 40px 24px 31px;
    background:
      radial-gradient(circle at 78% 44%, rgba(34,197,94,.1), transparent 24%),
      linear-gradient(145deg, rgba(17,24,33,.96), rgba(9,14,21,.98));
  }

  .clear-badge {
    height: 39px;
    padding: 0 17px;
    font-size: 14px;
  }

  .summary-meta small {
    font-size: 13px;
  }

  .health-summary-card h2 {
    font-size: 39px;
    line-height: 1.02;
    margin: 30px 0 18px;
  }

  .health-summary-card p {
    font-size: 16px;
    line-height: 1.65;
  }

  .health-summary-card hr {
    margin: 25px 0 22px;
  }

  .health-summary-card .label {
    font-size: 12px;
    letter-spacing: .36em;
  }

  .health-summary-card strong {
    font-size: 17px;
  }

  .shield-art span {
    width: 108px;
    height: 122px;
  }

  .shield-art b {
    width: 54px;
    height: 28px;
    top: 128px;
  }

  .wellness-content-grid {
    grid-template-columns: minmax(0, 1fr) 353px;
    gap: 28px;
  }

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

  .section-heading h2,
  .quick-check h2,
  .trends-card h2,
  .tip-card h2,
  .help-now-card h2 {
    font-size: 21px;
  }

  .section-heading a {
    height: 44px;
    padding: 0 21px;
    font-size: 14px;
  }

  .wellness-vital-grid {
    gap: 24px;
  }

  .wellness-vital-grid article {
    min-height: 166px;
    border-radius: 14px;
    padding: 20px 30px 20px;
    background:
      radial-gradient(circle at 86% 12%, rgba(34,197,94,.12), transparent 13%),
      linear-gradient(145deg, rgba(17,24,33,.97), rgba(10,15,22,.99));
  }

  .wellness-vital-grid article:first-child {
    border-color: rgba(34,197,94,.55);
    box-shadow: 0 0 0 1px rgba(34,197,94,.04), 0 22px 54px rgba(34,197,94,.08);
  }

  .wellness-vital-grid .dot {
    right: 35px;
    top: 27px;
    width: 11px;
    height: 11px;
    box-shadow: 0 0 22px rgba(34,197,94,.7);
  }

  .wellness-vital-grid small {
    font-size: 16px;
    color: #cbd5e1;
  }

  .wellness-vital-grid strong {
    margin-top: 18px;
    font-size: 46px;
  }

  .wellness-vital-grid em {
    font-size: 16px;
    color: #dbeafe;
  }

  .wellness-vital-grid p {
    margin-top: 17px;
    font-size: 16px;
    align-items: center;
  }

  .wellness-vital-grid p b {
    color: #dbeafe;
    font-size: 15px;
  }

  .wellness-bars {
    height: 31px;
    margin-top: 26px;
    gap: 9px;
  }

  .wellness-bars i,
  .mini-bars i {
    animation: maternaPulseBars 1.65s ease-in-out infinite;
    transform-origin: bottom;
  }

  .wellness-bars i:nth-child(1), .mini-bars i:nth-child(1) { animation-delay: 0s; }
  .wellness-bars i:nth-child(2), .mini-bars i:nth-child(2) { animation-delay: .12s; }
  .wellness-bars i:nth-child(3), .mini-bars i:nth-child(3) { animation-delay: .24s; }
  .wellness-bars i:nth-child(4), .mini-bars i:nth-child(4) { animation-delay: .36s; }
  .wellness-bars i:nth-child(5), .mini-bars i:nth-child(5) { animation-delay: .48s; }
  .wellness-bars i:nth-child(6), .mini-bars i:nth-child(6) { animation-delay: .6s; }
  .wellness-bars i:nth-child(7), .mini-bars i:nth-child(7) { animation-delay: .72s; }
  .wellness-bars i:nth-child(8) { animation-delay: .84s; }

  .trends-card {
    min-height: 326px;
    padding: 26px 27px;
    overflow: hidden;
  }

  .trends-card svg {
    width: 390px;
    max-width: none;
    margin: 20px 0 5px;
    transform: translateX(-3px);
  }

  .trend {
    stroke-dasharray: 560;
    stroke-dashoffset: 560;
    animation: drawMaternaTrend 2.8s ease-in-out infinite alternate;
  }

  .trend-purple { animation-delay: .16s; }
  .trend-blue { animation-delay: .32s; }

  .chart-dots circle {
    animation: maternaDotGlow 1.8s ease-in-out infinite;
  }

  .tip-card {
    min-height: 156px;
    padding: 29px 27px;
  }

  .tip-card p {
    font-size: 19px;
    line-height: 1.48;
    margin: 8px 0 5px;
  }

  .quick-check {
    margin-top: 28px;
  }

  .wellness-disclaimer {
    margin-top: 28px;
    font-size: 15px;
  }
}

@keyframes maternaPulseBars {
  0%, 100% { transform: scaleY(.58); opacity: .58; }
  45% { transform: scaleY(1.08); opacity: 1; }
  70% { transform: scaleY(.82); opacity: .82; }
}

@keyframes drawMaternaTrend {
  0% { stroke-dashoffset: 560; }
  68%, 100% { stroke-dashoffset: 0; }
}

@keyframes maternaDotGlow {
  0%, 100% { opacity: .55; transform: scale(.88); }
  50% { opacity: 1; transform: scale(1.18); }
}

@media (prefers-reduced-motion: reduce) {
  .wellness-bars i,
  .mini-bars i,
  .trend,
  .chart-dots circle {
    animation: none !important;
  }
}

/* Fit the uploaded desktop composition into one viewport */
@media (min-width: 1280px) {
  .wellness-sidebar {
    width: 190px;
    padding: 24px 13px 16px;
  }

  .wellness-logo {
    font-size: 18px;
    margin: 0 7px 20px;
  }

  .logo-heart {
    width: 28px;
    height: 26px;
  }

  .wellness-nav {
    gap: 5px;
  }

  .wellness-nav a,
  .wellness-settings {
    min-height: 37px;
    font-size: 12px;
    gap: 10px;
    border-radius: 10px;
  }

  .wellness-nav i,
  .wellness-settings i {
    width: 15px;
    height: 15px;
  }

  .wellness-sidebar-bottom {
    gap: 12px;
  }

  .support-card {
    min-height: 112px;
    padding: 12px 11px;
  }

  .support-card strong {
    font-size: 11px;
  }

  .support-card p {
    font-size: 9.5px;
    max-width: 112px;
  }

  .support-card a {
    height: 29px;
    font-size: 10.5px;
    left: 10px;
    right: 10px;
    bottom: 10px;
  }

  .support-heart {
    width: 42px;
    height: 52px;
    bottom: 40px;
    right: 8px;
  }

  .bracelet-card {
    padding: 10px;
  }

  .bracelet-card > span {
    width: 28px;
    height: 28px;
  }

  .bracelet-card strong {
    font-size: 11px;
  }

  .bracelet-card p {
    font-size: 9.5px;
  }

  .wellness-main {
    padding: 24px 30px 14px;
  }

  .wellness-header {
    margin-bottom: 14px;
  }

  .wellness-header h1 {
    font-size: 22px;
  }

  .wellness-header p {
    font-size: 12.5px;
    margin-top: 6px;
  }

  .notify-btn,
  .theme-pill,
  .profile-pill {
    min-height: 34px;
    font-size: 11px;
    padding: 0 13px;
  }

  .profile-pill b {
    width: 27px;
    height: 27px;
    font-size: 14px;
  }

  .wellness-hero-row {
    margin-bottom: 14px;
  }

  .health-summary-card {
    min-height: 190px;
    grid-template-columns: minmax(0, 1fr) 185px;
    padding: 14px 28px 16px 24px;
  }

  .clear-badge {
    height: 29px;
    font-size: 11px;
    padding: 0 12px;
  }

  .summary-meta small {
    font-size: 11px;
  }

  .health-summary-card h2 {
    font-size: 30px;
    margin: 22px 0 10px;
  }

  .health-summary-card p {
    font-size: 12.5px;
    line-height: 1.5;
  }

  .health-summary-card hr {
    margin: 13px 0 10px;
  }

  .health-summary-card .label {
    font-size: 8.5px;
    margin-bottom: 6px;
  }

  .health-summary-card strong {
    font-size: 12.5px;
  }

  .shield-art span {
    width: 70px;
    height: 80px;
  }

  .shield-art b {
    width: 34px;
    height: 18px;
    top: 82px;
    border-width: 6px;
  }

  .wellness-content-grid {
    grid-template-columns: minmax(0, 1fr) 285px;
    gap: 18px;
  }

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

  .section-heading h2,
  .quick-check h2,
  .trends-card h2,
  .tip-card h2,
  .help-now-card h2 {
    font-size: 16px;
  }

  .section-heading a {
    height: 32px;
    font-size: 11px;
    padding: 0 14px;
  }

  .wellness-vital-grid {
    gap: 10px 14px;
  }

  .wellness-vital-grid article {
    min-height: 104px;
    padding: 13px 19px 12px;
  }

  .wellness-vital-grid .dot {
    right: 20px;
    top: 17px;
    width: 8px;
    height: 8px;
  }

  .wellness-vital-grid small {
    font-size: 11.5px;
  }

  .wellness-vital-grid strong {
    font-size: 30px;
    margin-top: 8px;
  }

  .wellness-vital-grid em {
    font-size: 11px;
  }

  .wellness-bars {
    height: 18px;
    margin-top: 12px;
    gap: 6px;
  }

  .wellness-bars i {
    width: 3.5px;
  }

  .wellness-vital-grid p {
    margin-top: 8px;
    font-size: 11px;
  }

  .wellness-vital-grid p b {
    font-size: 10.5px;
  }

  .trends-card {
    min-height: 205px;
    padding: 16px 18px;
  }

  .side-card-head p {
    font-size: 12px;
    margin-top: 4px;
  }

  .side-card-head button {
    font-size: 10px;
    padding: 6px 9px;
  }

  .trends-card svg {
    width: 300px;
    margin: 4px 0 0;
  }

  .chart-labels {
    font-size: 9.5px;
    margin-bottom: 6px;
  }

  .trends-card > a {
    font-size: 12px;
  }

  .tip-card {
    min-height: 95px;
    padding: 14px 18px;
  }

  .tip-card p {
    font-size: 12.5px;
    line-height: 1.38;
    margin: 6px 0 4px;
  }

  .help-now-card {
    padding: 14px 18px;
  }

  .help-now-card p {
    font-size: 12px;
    margin: 6px 0;
  }

  .help-now-card button {
    height: 34px;
    font-size: 11px;
  }

  .quick-check {
    margin-top: 10px;
    padding: 14px;
  }

  .quick-check > div {
    margin-top: 9px;
    gap: 8px;
  }

  .quick-check a {
    padding: 9px;
  }

  .quick-check a span {
    width: 12px;
    height: 12px;
    margin-bottom: 7px;
  }

  .quick-check strong {
    font-size: 11px;
  }

  .quick-check small {
    font-size: 9.5px;
  }

.wellness-disclaimer {
  margin-top: 8px;
  font-size: 10.5px;
}
}

.no-vitals-mode .manual-row span,
.manual-bracelet-card > span {
  background: #38bdf8;
  box-shadow: 0 0 18px rgba(56,189,248,.55);
}

.no-vitals-mode .mobile-health-status,
.no-vitals-summary {
  border-left-color: #38bdf8;
}

.no-vitals-mode .clear-badge {
  border-color: rgba(56,189,248,.42);
  background: rgba(56,189,248,.12);
  color: #7dd3fc;
}

.no-vitals-mode .clear-badge i {
  background: #38bdf8;
}

.no-vitals-mobile-grid,
.no-vitals-tool-grid {
  display: grid;
  gap: 12px;
}

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

.no-vitals-mobile-grid a,
.no-vitals-tool-grid a {
  border: 1px solid #263647;
  background: linear-gradient(145deg, rgba(17,24,33,.96), rgba(10,15,22,.99));
  border-radius: 16px;
  color: #f8fafc;
  text-decoration: none;
}

.no-vitals-mobile-grid a {
  min-height: 94px;
  padding: 13px;
}

.no-vitals-mobile-grid span,
.no-vitals-tool-grid span {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 14px;
  background: rgba(56,189,248,.12);
  border: 1px solid rgba(56,189,248,.24);
  margin-bottom: 10px;
}

.no-vitals-mobile-grid strong,
.no-vitals-tool-grid strong {
  display: block;
  color: #fff;
  font-weight: 1000;
}

.no-vitals-mobile-grid strong {
  font-size: 12px;
}

.no-vitals-mobile-grid small {
  display: block;
  margin-top: 4px;
  color: #94a3b8;
  font-size: 9px;
  font-weight: 850;
}

.no-vitals-content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 22px;
  align-items: start;
}

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

.no-vitals-tool-grid a {
  min-height: 190px;
  padding: 22px;
}

.no-vitals-tool-grid small {
  color: #38bdf8;
  display: block;
  font-size: 11px;
  font-weight: 1000;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.no-vitals-tool-grid strong {
  margin: 8px 0;
  font-size: 24px;
  letter-spacing: -.04em;
}

.no-vitals-tool-grid p {
  color: #cbd5e1;
  font-size: 13px;
  line-height: 1.45;
}

.manual-art {
  display: grid;
  grid-template-columns: repeat(2, 78px);
  grid-template-rows: repeat(2, 78px);
  place-content: center;
  gap: 14px;
}

.manual-art span,
.manual-art b,
.manual-art i {
  display: grid;
  place-items: center;
  border-radius: 28px;
  background: rgba(56,189,248,.12);
  border: 1px solid rgba(56,189,248,.22);
  font-size: 34px;
  font-style: normal;
  box-shadow: 0 18px 48px rgba(56,189,248,.08);
}

.manual-art span {
  grid-column: span 2;
  width: 170px;
  justify-self: center;
}

.no-vitals-path-card {
  border-color: rgba(56,189,248,.28);
  background: linear-gradient(145deg, rgba(8,47,73,.62), rgba(10,15,22,.99));
}

@media (max-width: 1180px) {
  .no-vitals-content-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .no-vitals-mobile .mobile-health-status h1 {
    font-size: 19px;
  }

  .no-vitals-mobile-grid {
    gap: 9px;
  }
}

.chat-demo-body {
  min-height: 100vh;
  background: #050a0f;
  color: #f8fafc;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.chat-demo-shell {
  width: min(430px, calc(100vw - 28px));
  min-height: 100vh;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  padding: 18px 0;
}

.chat-demo-header {
  display: grid;
  grid-template-columns: 38px 1fr 38px;
  gap: 12px;
  align-items: center;
  padding: 12px 0 16px;
}

.chat-demo-header a,
.chat-demo-header span {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #111821;
  border: 1px solid #263647;
  color: #22c55e;
  text-decoration: none;
  font-weight: 950;
}

.chat-demo-header h1 {
  margin: 0;
  color: #22c55e;
  font-size: 22px;
}

.chat-demo-header p {
  margin: 4px 0 0;
  color: #94a3b8;
  font-size: 12px;
}

.chat-demo-card {
  flex: 1;
  border: 1px solid #263647;
  background: #0f151d;
  border-radius: 22px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.message {
  max-width: 84%;
  border-radius: 18px;
  padding: 12px 14px;
}

.message small {
  display: block;
  font-size: 10px;
  color: #94a3b8;
  font-weight: 900;
  margin-bottom: 5px;
}

.message p {
  margin: 0;
  font-size: 13px;
  line-height: 1.45;
}

.materna-message {
  background: #151d27;
  border: 1px solid #263647;
}

.user-message {
  align-self: flex-end;
  background: #0d3a22;
  border: 1px solid rgba(34,197,94,.38);
}

.alert-message {
  border-color: rgba(245,158,11,.35);
}

.chat-suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 14px 0;
}

.chat-suggestions a {
  border: 1px solid #263647;
  background: #111821;
  color: #cbd5e1;
  border-radius: 999px;
  padding: 8px 11px;
  font-size: 12px;
}

.chat-input-demo {
  display: grid;
  grid-template-columns: 1fr 72px;
  gap: 10px;
}

.chat-input-demo input {
  min-height: 46px;
  border-radius: 999px;
  border: 1px solid #263647;
  background: #111821;
  color: #fff;
  padding: 0 16px;
}

.chat-input-demo button {
  border: 0;
  border-radius: 999px;
  background: #22c55e;
  color: #04100a;
  font-weight: 1000;
}

.about-screen-card {
  margin-top: 12px;
  border: 1px solid #263647;
  background: rgba(17,24,33,.88);
  border-radius: 14px;
  padding: 14px 16px;
  color: #cbd5e1;
}

.about-screen-card h2 {
  margin: 0 0 6px;
  color: #22c55e;
  font-size: 14px;
}

.about-screen-card p {
  margin: 0;
  font-size: 12px;
  line-height: 1.45;
}

.feature-body {
  min-height: 100vh;
  background: #050a0f;
  color: #f8fafc;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.feature-shell {
  min-height: 100vh;
  display: flex;
}

.feature-nav {
  width: 210px;
  border-right: 1px solid #263647;
  padding: 26px 16px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  background: #080f16;
}

.feature-nav > a:not(.wellness-logo) {
  min-height: 38px;
  border-radius: 10px;
  color: #a9b4c2;
  display: flex;
  align-items: center;
  padding: 0 12px;
  text-decoration: none;
  font-weight: 850;
  font-size: 12px;
}

.feature-nav > a.active,
.feature-nav > a:hover {
  background: rgba(34,197,94,.13);
  color: #22c55e;
}

.feature-main {
  flex: 1;
  padding: 30px;
}

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

.feature-header h1 {
  margin: 0;
  font-size: 28px;
  letter-spacing: -.04em;
}

.screen-emoji,
.inline-emoji {
  display: inline-block;
  vertical-align: -0.08em;
  margin-right: 8px;
}

.feature-header p {
  margin: 7px 0 0;
  color: #b8c1cd;
  font-size: 14px;
}

.feature-header > a,
.feature-grid a,
.hospital-hero button,
.booking-slots button,
.emergency-panel a {
  border: 1px solid #22c55e;
  color: #22c55e;
  background: rgba(34,197,94,.08);
  border-radius: 999px;
  padding: 9px 14px;
  text-decoration: none;
  font-weight: 950;
}

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

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

.feature-grid article,
.hospital-hero,
.booking-panel,
.message-list article,
.emergency-panel {
  border: 1px solid #263647;
  background: linear-gradient(145deg, rgba(17,24,33,.96), rgba(10,15,22,.99));
  border-radius: 16px;
  padding: 18px;
}

.feature-grid small,
.hospital-hero small,
.message-list small {
  color: #94a3b8;
  font-size: 11px;
  font-weight: 900;
}

.feature-grid strong,
.hospital-hero h2,
.booking-panel h2,
.message-list strong,
.emergency-panel h2 {
  display: block;
  color: #fff;
  margin: 7px 0;
  font-size: 22px;
  letter-spacing: -.035em;
}

.feature-grid p,
.hospital-hero p,
.booking-panel p,
.message-list p,
.emergency-panel p {
  color: #cbd5e1;
  margin: 0 0 10px;
  line-height: 1.45;
  font-size: 13px;
}

.hospital-hero {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  margin-bottom: 14px;
  border-left: 3px solid #22c55e;
}

.hospital-hero button {
  min-width: 130px;
}

.location-permission-card {
  border: 1px solid #263647;
  border-left: 3px solid #22c55e;
  background: linear-gradient(145deg, rgba(17,24,33,.96), rgba(10,15,22,.99));
  border-radius: 16px;
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 14px;
}

.location-permission-card small,
.live-map-card small,
.nearby-hospital-list small {
  color: #22c55e;
  letter-spacing: .16em;
  font-size: 10px;
  font-weight: 1000;
}

.location-permission-card h2,
.live-map-card h2 {
  margin: 7px 0;
  color: #fff;
  font-size: 22px;
}

.location-permission-card p {
  color: #cbd5e1;
  margin: 0;
  max-width: 780px;
  line-height: 1.45;
  font-size: 13px;
}

.location-permission-card button {
  border: 0;
  border-radius: 999px;
  background: #22c55e;
  color: #04100a;
  font-weight: 1000;
  padding: 12px 18px;
  min-width: 136px;
}

.location-permission-card button:disabled {
  opacity: .75;
}

.hospital-map-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 14px;
  margin-bottom: 14px;
}

.live-map-card,
.nearby-hospital-list article {
  border: 1px solid #263647;
  background: linear-gradient(145deg, rgba(17,24,33,.96), rgba(10,15,22,.99));
  border-radius: 16px;
}

.live-map-card {
  padding: 14px;
  overflow: hidden;
}

.map-toolbar {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  margin-bottom: 12px;
}

.map-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.map-legend {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.map-legend span {
  display: inline-flex;
  align-items: center;
  min-height: 31px;
  border: 1px solid rgba(34,197,94,.24);
  border-radius: 999px;
  background: rgba(34,197,94,.08);
  color: #dbeafe;
  padding: 0 10px;
  font-size: 11px;
  font-weight: 950;
}

.map-toolbar a,
.nearby-hospital-list a {
  border: 1px solid #22c55e;
  color: #22c55e;
  background: rgba(34,197,94,.08);
  border-radius: 999px;
  padding: 8px 12px;
  text-decoration: none;
  font-weight: 950;
  font-size: 12px;
}

.live-map-card iframe {
  width: 100%;
  min-height: 430px;
  border: 0;
  border-radius: 14px;
  filter: saturate(.9) contrast(.95);
}

.nearby-hospital-list {
  display: grid;
  gap: 14px;
}

.nearby-hospital-list article {
  padding: 16px;
  position: relative;
}

.resource-emoji {
  width: 42px;
  height: 42px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  margin-bottom: 10px;
  font-size: 24px;
  background: rgba(34,197,94,.12);
  border: 1px solid rgba(34,197,94,.28);
  box-shadow: 0 14px 34px rgba(34,197,94,.08);
}

.ambulance-emoji {
  background: rgba(244,63,94,.12);
  border-color: rgba(244,63,94,.3);
  box-shadow: 0 14px 34px rgba(244,63,94,.08);
}

.nearby-hospital-list strong {
  display: block;
  color: #fff;
  margin: 8px 0;
  font-size: 18px;
}

.nearby-hospital-list p {
  color: #cbd5e1;
  font-size: 12px;
  line-height: 1.45;
}

.nearby-hospital-list div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

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

.hospital-capacity-grid article {
  position: relative;
}

.card-emoji {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 10px;
  font-size: 23px;
  background: rgba(34,197,94,.1);
  border: 1px solid rgba(34,197,94,.22);
}

.booking-panel {
  margin-bottom: 14px;
}

.booking-slots {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 12px 0;
}

.message-list {
  display: grid;
  gap: 14px;
}

.emergency-feature .feature-main {
  background: radial-gradient(circle at 68% 0%, rgba(244,63,94,.14), transparent 32%);
}

.emergency-panel {
  border-color: rgba(244,63,94,.34);
  margin-bottom: 14px;
}

.emergency-panel button {
  width: 100%;
  min-height: 52px;
  border: 0;
  border-radius: 999px;
  background: #f43f5e;
  color: #fff;
  font-weight: 1000;
  margin: 12px 0;
}

.emergency-panel div {
  display: flex;
  gap: 10px;
}

@media (max-width: 850px) {
  .feature-shell { display: block; }
  .feature-nav { width: auto; min-height: auto; flex-direction: row; overflow-x: auto; }
  .feature-main { padding: 20px; }
  .feature-grid,
  .feature-grid.three { grid-template-columns: 1fr; }
  .location-permission-card,
  .map-toolbar { display: block; }
  .map-actions { justify-content: flex-start; margin-top: 10px; }
  .location-permission-card button { margin-top: 14px; width: 100%; }
  .hospital-map-layout { grid-template-columns: 1fr; }
  .hospital-capacity-grid { grid-template-columns: 1fr; }
  .live-map-card iframe { min-height: 330px; }
}

.profile-report-hero,
.profile-sections article {
  border: 1px solid #263647;
  background: linear-gradient(145deg, rgba(17,24,33,.96), rgba(10,15,22,.99));
  border-radius: 16px;
}

.profile-report-hero {
  border-left: 3px solid #22c55e;
  padding: 22px;
  display: flex;
  justify-content: space-between;
  gap: 22px;
  align-items: center;
  margin-bottom: 14px;
}

.profile-report-hero small {
  color: #22c55e;
  letter-spacing: .18em;
  font-size: 10px;
  font-weight: 1000;
}

.profile-report-hero h2,
.profile-sections h2 {
  margin: 7px 0;
  color: #fff;
  font-size: 22px;
}

.profile-report-hero p {
  max-width: 720px;
  color: #cbd5e1;
  line-height: 1.5;
}

.report-status {
  display: inline-flex;
  color: #22c55e;
  font-weight: 900;
  font-size: 13px;
}

.profile-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 180px;
}

.profile-actions button {
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: #22c55e;
  color: #04100a;
  font-weight: 1000;
}

.profile-actions .outline {
  border: 1px solid #22c55e;
  color: #22c55e;
  background: rgba(34,197,94,.08);
}

.profile-sections {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 14px;
}

.profile-sections article {
  padding: 18px;
}

.profile-sections article:first-child {
  grid-row: span 2;
}

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

.profile-field-grid.two {
  grid-template-columns: 1fr;
}

.profile-field-grid div,
.med-card {
  border: 1px solid #263647;
  border-radius: 12px;
  background: rgba(255,255,255,.025);
  padding: 12px;
}

.profile-field-grid small,
.med-card small {
  display: block;
  color: #94a3b8;
  font-size: 10px;
  font-weight: 900;
  margin-bottom: 6px;
}

.profile-field-grid strong,
.med-card strong {
  color: #fff;
  font-size: 14px;
}

.history-list {
  display: grid;
  gap: 9px;
  margin-top: 12px;
}

.history-list span {
  min-height: 38px;
  border: 1px solid #263647;
  border-radius: 12px;
  padding: 0 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #cbd5e1;
  font-size: 13px;
}

.history-list b {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #22c55e;
}

.history-list strong {
  margin-left: auto;
  color: #22c55e;
}

.med-card {
  margin-top: 12px;
}

.med-card p {
  color: #94a3b8;
  font-size: 12px;
  margin: 7px 0 0;
}

@media (max-width: 900px) {
  .profile-report-hero,
  .profile-sections {
    display: block;
  }

  .profile-actions,
  .profile-sections article {
    margin-top: 12px;
  }
}
