:root {
  color-scheme: light;
  --accent: #1268ff;
  --accent-strong: #0757ee;
  --accent-soft: #e8f1ff;
  --accent-glow: rgba(18, 104, 255, 0.26);
  --bg: #f7fbff;
  --bg-soft: #eef6ff;
  --bg-muted: #e7f0ff;
  --glass: rgba(255, 255, 255, 0.76);
  --glass-strong: rgba(255, 255, 255, 0.9);
  --text: #07111f;
  --text-soft: #52647d;
  --muted: #718198;
  --separator: rgba(38, 111, 255, 0.14);
  --green: #1fb25e;
  --yellow: #f0a51c;
  --red: #ff3b4f;
  --shadow: 0 28px 90px rgba(25, 96, 215, 0.16);
  --blue-shadow: 0 28px 80px rgba(18, 104, 255, 0.24);
  --radius-card: 28px;
  --radius-control: 18px;
  --container: 1180px;
  --header: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(1200px 680px at 50% -12%, rgba(18, 104, 255, 0.18), transparent 68%),
    linear-gradient(180deg, #f4f9ff 0%, #ffffff 42%, #f3f8ff 100%);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro", "Inter", "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

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

p,
h1,
h2,
h3 {
  margin: 0;
}

button {
  font: inherit;
}

code {
  border-radius: 6px;
  background: var(--bg-muted);
  padding: 2px 6px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.95em;
}

.container {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
}

.narrow {
  width: min(100% - 32px, 860px);
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-140%);
  border-radius: 8px;
  background: var(--text);
  color: var(--bg);
  padding: 10px 14px;
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, 0.66);
  background: rgba(247, 251, 255, 0.74);
  backdrop-filter: blur(24px) saturate(1.25);
  transition: box-shadow 220ms ease, border-color 220ms ease;
}

.is-scrolled .site-header {
  border-color: transparent;
  box-shadow: 0 18px 44px rgba(18, 104, 255, 0.1);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: var(--header);
  gap: 24px;
  transition: min-height 220ms ease;
}

.is-scrolled .header-inner {
  min-height: 60px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  color: #07111f;
  font-weight: 800;
}

.brand-mark {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 14px;
  box-shadow: 0 12px 28px rgba(18, 104, 255, 0.28);
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 6px;
}

.main-nav a,
.language-switch a,
.language-switch span {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  border-radius: 999px;
  padding: 0 12px;
  color: var(--text-soft);
  font-size: 15px;
  font-weight: 500;
}

.main-nav a:hover,
.main-nav a:focus-visible,
.language-switch a:hover,
.language-switch a:focus-visible {
  background: rgba(255, 255, 255, 0.8);
  box-shadow: inset 0 0 0 1px var(--separator);
  color: var(--text);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.language-switch {
  display: flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  padding: 2px;
  box-shadow: 0 10px 28px rgba(18, 104, 255, 0.08);
}

.language-switch span[aria-current="true"] {
  background: var(--accent);
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(18, 104, 255, 0.22);
}

.button,
.app-store-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: var(--radius-control);
  font-weight: 700;
  cursor: pointer;
}

.button {
  background: linear-gradient(135deg, var(--accent), #0a45df);
  color: #ffffff;
  padding: 0 18px;
  box-shadow: 0 18px 42px rgba(18, 104, 255, 0.24);
}

.button:hover,
.button:focus-visible {
  background: var(--accent-strong);
}

.button-small {
  min-height: 44px;
  padding: 0 16px;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.64);
  border-color: rgba(255, 255, 255, 0.92);
  color: var(--text);
  box-shadow: inset 0 0 0 1px var(--separator), 0 16px 38px rgba(18, 104, 255, 0.08);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: #ffffff;
  color: var(--text);
}

.app-store-badge {
  min-width: 178px;
  min-height: 56px;
  flex-direction: column;
  align-items: flex-start;
  background:
    linear-gradient(135deg, rgba(7, 17, 31, 0.96), rgba(8, 51, 153, 0.96)),
    #07111f;
  color: #ffffff;
  padding: 8px 18px 9px;
  box-shadow: 0 22px 52px rgba(18, 104, 255, 0.28);
}

.app-store-badge::before {
  content: "";
  width: 18px;
  height: 22px;
  margin: 0 10px 0 0;
  position: absolute;
}

.app-store-badge .badge-kicker {
  font-size: 11px;
  line-height: 1.2;
  opacity: 0.9;
}

.app-store-badge .badge-name {
  font-size: 22px;
  line-height: 1.15;
  font-weight: 700;
}

.app-store-badge.large {
  min-width: 210px;
  min-height: 64px;
  margin-top: 26px;
}

.section {
  scroll-margin-top: calc(var(--header) + 24px);
  padding: 84px 0;
}

.hero {
  position: relative;
  min-height: calc(100svh - var(--header));
  display: grid;
  align-items: center;
  padding: 54px 0 72px;
  overflow: hidden;
  background:
    linear-gradient(130deg, rgba(255, 255, 255, 0.94) 0%, rgba(238, 246, 255, 0.88) 47%, rgba(219, 234, 255, 0.94) 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(840px 420px at 75% 22%, rgba(18, 104, 255, 0.24), transparent 72%),
    linear-gradient(115deg, transparent 0 18%, rgba(255, 255, 255, 0.78) 39%, transparent 58%),
    linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.62));
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 120px;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, var(--bg));
}

.hero > .container {
  position: relative;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.85fr);
  align-items: center;
  gap: 72px;
}

.eyebrow {
  color: var(--accent);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

h1 {
  max-width: 780px;
  font-size: 56px;
  line-height: 1.14;
  font-weight: 800;
  letter-spacing: 0;
}

h2 {
  max-width: 760px;
  font-size: 40px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: 0;
}

h3 {
  font-size: 20px;
  line-height: 1.3;
  font-weight: 700;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 650px;
  margin-top: 22px;
  color: var(--text-soft);
  font-size: 19px;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 34px;
}

.trust-line {
  margin-top: 18px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 600;
}

.hero-visual {
  display: grid;
  justify-items: center;
  min-height: 570px;
}

.hero-device-stage {
  position: relative;
  display: grid;
  place-items: center;
  width: min(100%, 500px);
  min-height: 610px;
}

.hero-aura {
  position: absolute;
  inset: 16px -2px 64px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 64px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.66), rgba(232, 241, 255, 0.26)),
    radial-gradient(circle at 50% 18%, rgba(18, 104, 255, 0.22), transparent 64%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.96),
    0 36px 90px rgba(18, 104, 255, 0.18);
  transform: rotate(-5deg);
  opacity: 0.92;
  animation: auraTrace 6200ms ease-in-out infinite;
}

.brand-heart-card {
  position: absolute;
  top: 24px;
  right: -28px;
  z-index: 1;
  width: min(44vw, 218px);
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.64);
  border-radius: 30px;
  box-shadow:
    0 24px 70px rgba(18, 104, 255, 0.28),
    0 0 44px rgba(64, 168, 255, 0.22);
  transform: rotate(6deg);
  animation: brandPulse 7200ms ease-in-out infinite;
}

.brand-heart-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.phone-mockup {
  z-index: 2;
  width: min(100%, 320px);
  aspect-ratio: 0.49;
  position: relative;
  display: block;
  overflow: hidden;
  border: 10px solid #050b18;
  border-radius: 46px;
  background: #050b18;
  box-shadow:
    0 34px 90px rgba(18, 104, 255, 0.24),
    0 14px 44px rgba(7, 17, 31, 0.2);
}

.phone-hero {
  transform: rotate(2deg);
  animation: heroFloat 6200ms ease-in-out infinite;
}

.screenshot-phone picture,
.screenshot-phone img,
.screen-device img,
.watch-device img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.screenshot-phone {
  aspect-ratio: 520 / 1131;
}

.screenshot-phone img {
  border-radius: 36px;
}

.floating-metric {
  position: absolute;
  z-index: 3;
  display: grid;
  gap: 2px;
  min-width: 128px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 22px 58px rgba(18, 104, 255, 0.18);
  backdrop-filter: blur(20px) saturate(1.2);
  padding: 12px 14px;
  font-variant-numeric: tabular-nums;
}

.floating-metric span {
  color: var(--accent);
  font-size: 20px;
  line-height: 1.15;
  font-weight: 800;
}

.floating-metric strong {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.2;
}

.floating-metric-top {
  top: 108px;
  right: 4px;
  animation: metricFloat 5200ms ease-in-out infinite;
}

.floating-metric-bottom {
  left: -6px;
  bottom: 86px;
  animation: metricFloat 5800ms ease-in-out 600ms infinite;
}

.phone-speaker {
  position: absolute;
  top: 13px;
  left: 50%;
  z-index: 2;
  width: 86px;
  height: 24px;
  transform: translateX(-50%);
  border-radius: 0 0 16px 16px;
  background: #050b18;
}

.phone-screen {
  height: 100%;
  overflow: hidden;
  border-radius: 36px;
  background: linear-gradient(180deg, #f7fbff, #ffffff);
  color: var(--text);
  padding: 48px 18px 18px;
}

.app-topbar,
.traffic-list div,
.med-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.app-topbar {
  font-size: 22px;
  font-weight: 800;
}

.small-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 28px;
  border-radius: 14px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 14px;
}

.greeting-card,
.med-card {
  margin-top: 18px;
  border: 1px solid var(--separator);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.82);
  padding: 16px;
  box-shadow: 0 12px 26px rgba(18, 104, 255, 0.08);
}

.greeting-card p,
.med-card p {
  color: #64748b;
  font-size: 13px;
}

.greeting-card strong {
  display: block;
  margin-top: 8px;
  font-size: 18px;
  line-height: 1.3;
}

.traffic-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.traffic-list div {
  min-height: 48px;
  border: 1px solid var(--separator);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.84);
  padding: 0 14px;
  font-variant-numeric: tabular-nums;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.green {
  background: var(--green);
}

.yellow {
  background: var(--yellow);
}

.red {
  background: var(--red);
}

.med-row {
  margin-top: 12px;
  color: var(--text);
  font-size: 14px;
}

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

.section-heading h2 + p {
  margin-top: 16px;
}

.card-grid {
  display: grid;
  gap: 18px;
}

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

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

.info-card,
.feature-card,
.privacy-tile,
.faq-item {
  border: 1px solid var(--separator);
  border-radius: var(--radius-card);
  background: var(--glass);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.86),
    0 22px 60px rgba(18, 104, 255, 0.08);
  padding: 24px;
  backdrop-filter: blur(18px) saturate(1.12);
}

.info-card p,
.feature-card p,
.privacy-tile p,
.device-copy p,
.therapy-copy p,
.emergency-copy p,
.men-grid p,
.pdf-grid p,
.final-cta p,
.faq-panel p {
  margin-top: 12px;
  color: var(--text-soft);
  font-size: 17px;
  line-height: 1.65;
}

.icon-line,
.feature-icon,
.privacy-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border: 1px solid rgba(18, 104, 255, 0.2);
  border-radius: 16px;
  background: rgba(232, 241, 255, 0.82);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
  color: var(--accent);
  font-weight: 800;
}

.feature-icon {
  font-size: 13px;
  font-variant-numeric: tabular-nums;
}

.privacy-band {
  background:
    linear-gradient(145deg, rgba(226, 239, 255, 0.92), rgba(250, 253, 255, 0.96));
}

.profiles-section {
  background:
    linear-gradient(135deg, rgba(31, 178, 94, 0.08), transparent 52%),
    linear-gradient(180deg, #ffffff, var(--bg));
}

.profiles-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
  align-items: center;
  gap: 56px;
}

.profiles-copy p {
  max-width: 700px;
  margin-top: 16px;
  color: var(--text-soft);
  font-size: 18px;
  line-height: 1.65;
}

.profile-stack {
  position: relative;
  display: grid;
  gap: 14px;
  border: 1px solid var(--separator);
  border-radius: var(--radius-card);
  background: var(--glass);
  box-shadow: var(--shadow);
  padding: 18px;
  overflow: hidden;
}

.profile-stack::before {
  content: "";
  position: absolute;
  inset: -35% -28% auto auto;
  width: 220px;
  height: 220px;
  border-radius: 44px;
  background: linear-gradient(135deg, rgba(18, 104, 255, 0.24), rgba(255, 255, 255, 0));
  filter: blur(4px);
}

.profile-card {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 52px 1fr;
  align-items: center;
  gap: 14px;
  border: 1px solid var(--separator);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.82);
  padding: 14px;
  box-shadow: 0 14px 34px rgba(18, 104, 255, 0.1);
}

.profile-card-primary {
  border-color: color-mix(in srgb, var(--accent) 42%, var(--separator));
  transform: translateX(-12px);
}

.profile-card:nth-child(3) {
  transform: translateX(18px);
}

.profile-avatar {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f8fbff, var(--accent-soft));
  color: var(--accent);
  font-size: 20px;
  font-weight: 900;
}

.profile-card strong,
.profile-card small {
  display: block;
}

.profile-card strong {
  color: var(--text);
  font-size: 18px;
  line-height: 1.25;
}

.profile-card small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.therapy-section {
  background:
    linear-gradient(135deg, rgba(18, 104, 255, 0.08), transparent 56%),
    #ffffff;
}

.therapy-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1.08fr);
  align-items: center;
  gap: 56px;
}

.therapy-panel {
  position: relative;
  display: grid;
  gap: 14px;
  border: 1px solid var(--separator);
  border-radius: var(--radius-card);
  background:
    linear-gradient(180deg, rgba(18, 104, 255, 0.1), transparent 42%),
    var(--glass-strong);
  box-shadow: var(--blue-shadow);
  padding: 24px;
  backdrop-filter: blur(18px) saturate(1.1);
  overflow: hidden;
}

.therapy-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, color-mix(in srgb, var(--accent) 18%, transparent), transparent);
  opacity: 0.42;
  transform: translateX(-100%);
  animation: panelSweep 7200ms ease-in-out infinite;
}

.therapy-panel-header,
.therapy-row,
.medical-id-head,
.emergency-contact {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
}

.therapy-panel-header {
  gap: 14px;
  margin-bottom: 4px;
}

.therapy-icon {
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: linear-gradient(145deg, #2f80ff, #0757ee);
  color: #ffffff;
  font-weight: 900;
  box-shadow: 0 16px 32px rgba(18, 104, 255, 0.28);
}

.therapy-panel-header strong,
.therapy-panel-header small,
.therapy-row strong,
.therapy-row small,
.medical-id-head strong,
.medical-id-head small,
.medical-id-item span,
.medical-id-item strong {
  display: block;
}

.therapy-panel-header strong,
.therapy-row strong {
  color: var(--text);
  font-size: 18px;
  line-height: 1.25;
}

.therapy-panel-header small,
.therapy-row small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.4;
}

.therapy-row {
  gap: 14px;
  border: 1px solid var(--separator);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.8);
  padding: 16px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.therapy-row-warning {
  border-color: rgba(240, 165, 28, 0.32);
  background: linear-gradient(135deg, rgba(255, 246, 218, 0.92), rgba(255, 255, 255, 0.8));
}

.therapy-dot {
  flex: 0 0 auto;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 6px color-mix(in srgb, var(--accent) 14%, transparent);
}

.therapy-row-warning .therapy-dot {
  background: var(--yellow);
  box-shadow: 0 0 0 6px color-mix(in srgb, var(--yellow) 18%, transparent);
  animation: pulseDot 2200ms ease-in-out infinite;
}

.therapy-list,
.emergency-list {
  margin-top: 24px;
}

.small-note {
  max-width: 680px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.connected-devices {
  background:
    linear-gradient(135deg, rgba(18, 104, 255, 0.12), transparent 52%),
    linear-gradient(180deg, var(--bg-soft), #ffffff);
}

.connected-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  align-items: center;
  gap: 54px;
}

.connected-copy p {
  max-width: 680px;
  margin-top: 18px;
  color: var(--text-soft);
  font-size: 18px;
  line-height: 1.65;
}

.integration-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.integration-list span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  border: 1px solid color-mix(in srgb, var(--accent) 24%, var(--separator));
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  color: var(--text-soft);
  padding: 0 12px;
  font-size: 14px;
  font-weight: 700;
}

.device-flow {
  position: relative;
  display: grid;
  grid-template-columns: minmax(112px, 1fr) 42px minmax(132px, 1.15fr) 42px minmax(112px, 1fr);
  align-items: center;
  min-height: 250px;
  border: 1px solid var(--separator);
  border-radius: var(--radius-card);
  background: var(--glass);
  box-shadow: var(--blue-shadow);
  padding: 26px;
  overflow: hidden;
  backdrop-filter: blur(20px) saturate(1.12);
}

.device-flow::before {
  content: "";
  position: absolute;
  inset: auto -10% -42% -10%;
  height: 74%;
  background: linear-gradient(90deg, transparent, rgba(18, 104, 255, 0.24), transparent);
  opacity: 0.72;
}

.device-node {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 6px;
  border: 1px solid var(--separator);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.84);
  padding: 18px 14px;
  text-align: center;
  box-shadow: 0 18px 42px rgba(18, 104, 255, 0.12);
}

.device-node-phone {
  min-height: 174px;
  border-color: color-mix(in srgb, var(--accent) 42%, var(--separator));
}

.device-node-scale,
.device-node-bp {
  min-height: 142px;
}

.device-node-icon {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: linear-gradient(145deg, #f9fcff, var(--accent-soft));
  color: var(--accent);
  font-size: 15px;
  font-weight: 900;
  font-variant-numeric: tabular-nums;
}

.device-node strong {
  color: var(--text);
  font-size: 18px;
  line-height: 1.25;
}

.device-node small {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.flow-line {
  position: relative;
  z-index: 1;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.flow-line::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 6px;
  width: 9px;
  height: 9px;
  border-top: 2px solid var(--accent);
  border-right: 2px solid var(--accent);
  transform: translateY(-50%) rotate(45deg);
}

.emergency-section {
  background:
    linear-gradient(135deg, rgba(255, 59, 79, 0.07), transparent 54%),
    linear-gradient(180deg, #ffffff, var(--bg));
}

.emergency-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(310px, 0.78fr);
  align-items: center;
  gap: 56px;
}

.lock-screen-mockup {
  position: relative;
  width: min(100%, 360px);
  margin: 0 auto;
  border: 10px solid #050b18;
  border-radius: 48px;
  background:
    radial-gradient(280px 240px at 50% 32%, rgba(73, 169, 255, 0.54), transparent 68%),
    linear-gradient(160deg, #021250 0%, #0757ee 48%, #020617 100%);
  color: #ffffff;
  box-shadow:
    0 34px 90px rgba(18, 104, 255, 0.26),
    0 12px 40px rgba(7, 17, 31, 0.18);
  padding: 34px 22px 24px;
  overflow: hidden;
}

.lock-screen-mockup::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 50%;
  width: 94px;
  height: 26px;
  transform: translateX(-50%);
  border-radius: 0 0 17px 17px;
  background: #020617;
}

.lock-time {
  position: relative;
  z-index: 1;
  margin-top: 22px;
  text-align: center;
  font-size: 48px;
  line-height: 1;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}

.lock-subtitle {
  position: relative;
  z-index: 1;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.72);
  text-align: center;
  font-size: 14px;
  font-weight: 700;
}

.medical-id-card {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
  margin-top: 82px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(22px) saturate(1.18);
  padding: 16px;
}

.medical-id-head {
  gap: 12px;
}

.medical-cross {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 16px;
  background: linear-gradient(145deg, #ff5363, #dc2626);
  color: #ffffff;
  font-size: 28px;
  line-height: 1;
  font-weight: 800;
}

.medical-id-head strong {
  font-size: 20px;
  line-height: 1.2;
}

.medical-id-head small {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.medical-id-list {
  display: grid;
  gap: 8px;
}

.medical-id-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding-top: 8px;
}

.medical-id-item span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
}

.medical-id-item strong {
  color: #ffffff;
  font-size: 14px;
  text-align: right;
}

.emergency-contact {
  justify-content: space-between;
  gap: 12px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  color: #0b0f14;
  padding: 12px 14px;
  font-weight: 800;
}

.emergency-contact span,
.emergency-contact em {
  display: block;
}

.emergency-contact em {
  color: #dc2626;
  font-size: 13px;
  font-style: normal;
}

.emergency-privacy-badge {
  position: relative;
  z-index: 1;
  width: fit-content;
  margin: 18px auto 0;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(2, 6, 23, 0.38);
  padding: 8px 12px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 800;
}

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

.privacy-quote {
  margin: 26px 0 0;
  border-left: 4px solid var(--accent);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--text);
  padding: 22px 24px;
  font-size: 20px;
  line-height: 1.55;
  font-weight: 600;
}

.text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  margin-top: 18px;
  color: var(--accent);
  font-weight: 700;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--accent-strong);
  text-decoration: underline;
}

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

.screenshot-grid.real-screens {
  align-items: start;
}

.screen-shot {
  margin: 0;
}

.screen-shot figcaption {
  margin-top: 12px;
  color: var(--text-soft);
  font-size: 15px;
  text-align: center;
}

.screen-device {
  position: relative;
  display: block;
  width: min(100%, 252px);
  aspect-ratio: 520 / 1131;
  margin: 0 auto;
  overflow: hidden;
  border: 8px solid #050b18;
  border-radius: 38px;
  background: #050b18;
  box-shadow:
    0 28px 70px rgba(18, 104, 255, 0.18),
    0 10px 34px rgba(7, 17, 31, 0.16);
  transform: translateY(0);
  transition: transform 240ms ease, box-shadow 240ms ease;
}

.screen-device::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(115deg, rgba(255, 255, 255, 0.22), transparent 24%, transparent 78%, rgba(255, 255, 255, 0.12));
  opacity: 0.32;
}

.screen-device img {
  border-radius: 29px;
}

.screen-shot:hover .screen-device,
.screen-shot:focus-within .screen-device {
  box-shadow:
    0 34px 90px rgba(18, 104, 255, 0.28),
    0 12px 34px rgba(7, 17, 31, 0.18);
  transform: translateY(-8px) rotate(-1deg);
}

.screen-shot:nth-child(even):hover .screen-device,
.screen-shot:nth-child(even):focus-within .screen-device {
  transform: translateY(-8px) rotate(1deg);
}

.dark-screen {
  box-shadow: 0 28px 74px rgba(18, 104, 255, 0.24);
}

.mini-screen {
  position: relative;
  width: min(100%, 248px);
  aspect-ratio: 0.49;
  margin: 0 auto;
  overflow: hidden;
  border: 8px solid #050b18;
  border-radius: 38px;
  background: #f7fbff;
  box-shadow: 0 24px 60px rgba(18, 104, 255, 0.16);
}

.mini-screen::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 50%;
  width: 64px;
  height: 18px;
  transform: translateX(-50%);
  border-radius: 0 0 12px 12px;
  background: #050b18;
}

.mini-screen::after {
  content: "";
  position: absolute;
  inset: 46px 18px 18px;
  border-radius: 18px;
  background:
    linear-gradient(var(--accent) 0 0) 0 0 / 64% 16px no-repeat,
    linear-gradient(var(--bg-muted) 0 0) 0 34px / 100% 54px no-repeat,
    linear-gradient(var(--accent-soft) 0 0) 0 104px / 86% 90px no-repeat,
    linear-gradient(var(--bg-muted) 0 0) 0 214px / 100% 54px no-repeat;
}

.journal-screen::after {
  background:
    repeating-linear-gradient(90deg, var(--accent-soft) 0 20px, transparent 20px 28px) 0 26px / 100% 128px no-repeat,
    linear-gradient(var(--accent) 0 0) 0 0 / 48% 16px no-repeat,
    linear-gradient(var(--bg-muted) 0 0) 0 180px / 100% 72px no-repeat;
}

.trends-screen::after {
  background:
    linear-gradient(var(--accent) 0 0) 0 0 / 50% 16px no-repeat,
    linear-gradient(135deg, transparent 46%, var(--accent) 48% 52%, transparent 54%) 0 48px / 100% 116px no-repeat,
    linear-gradient(var(--accent-soft) 0 0) 0 190px / 46% 74px no-repeat,
    linear-gradient(#dff0ff 0 0) 54% 190px / 46% 74px no-repeat;
}

.meds-screen::after {
  background:
    linear-gradient(var(--accent) 0 0) 0 0 / 52% 16px no-repeat,
    repeating-linear-gradient(#ffffff 0 42px, var(--bg-muted) 42px 44px) 0 44px / 100% 180px no-repeat,
    radial-gradient(circle at 85% 30%, #16a34a 0 26px, transparent 27px);
}

.scan-screen::after {
  background:
    linear-gradient(var(--accent) 0 0) 0 0 / 40% 16px no-repeat,
    linear-gradient(var(--bg-muted) 0 0) 16px 52px / 78% 118px no-repeat,
    repeating-linear-gradient(#cbd5e1 0 6px, transparent 6px 18px) 36px 76px / 58% 70px no-repeat,
    linear-gradient(var(--accent-soft) 0 0) 0 202px / 100% 64px no-repeat;
}

.checkin-screen::after {
  background:
    linear-gradient(var(--accent) 0 0) 0 0 / 45% 16px no-repeat,
    radial-gradient(circle at 50% 38%, #bfdbfe 0 48px, transparent 49px),
    linear-gradient(var(--bg-muted) 0 0) 0 178px / 100% 18px no-repeat,
    linear-gradient(var(--accent-soft) 0 0) 0 218px / 100% 54px no-repeat;
}

.two-column,
.men-grid,
.pdf-grid,
.final-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: 48px;
}

.devices {
  background:
    linear-gradient(135deg, rgba(18, 104, 255, 0.1), transparent 56%),
    var(--bg-soft);
}

.watch-mockup {
  width: 188px;
  height: 224px;
  margin-top: 26px;
  border: 14px solid #050b18;
  border-radius: 44px;
  background: #050b18;
  box-shadow: var(--blue-shadow);
}

.watch-stack {
  position: relative;
  min-height: 276px;
  margin-top: 28px;
}

.watch-device {
  position: absolute;
  display: block;
  width: 188px;
  aspect-ratio: 320 / 382;
  overflow: hidden;
  border: 10px solid #050b18;
  border-radius: 42px;
  background: #050b18;
  box-shadow: var(--blue-shadow);
}

.watch-device img {
  border-radius: 30px;
}

.watch-front {
  z-index: 2;
  left: 112px;
  top: 24px;
  animation: watchBob 5400ms ease-in-out infinite;
}

.watch-back {
  left: 0;
  top: 0;
  opacity: 0.74;
  transform: rotate(-8deg) scale(0.92);
  animation: watchBob 6200ms ease-in-out 400ms infinite;
}

.watch-screen {
  height: 100%;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  border-radius: 30px;
  background: radial-gradient(circle at top, #2d85ff, #07111f 72%);
  color: #ffffff;
  font-variant-numeric: tabular-nums;
}

.watch-screen span {
  font-size: 28px;
  font-weight: 800;
}

.watch-screen strong {
  font-size: 15px;
}

.widget-phone {
  width: min(100%, 300px);
  aspect-ratio: 0.62;
  margin-top: 26px;
  border: 10px solid #050b18;
  border-radius: 36px;
  background:
    linear-gradient(var(--accent-soft) 0 0) 22px 54px / 116px 116px no-repeat,
    linear-gradient(#e0f2fe 0 0) 154px 54px / 116px 116px no-repeat,
    linear-gradient(#fef3c7 0 0) 22px 190px / 248px 86px no-repeat,
    linear-gradient(#ffffff 0 0) 0 0 / 100% 100% no-repeat;
  box-shadow: var(--shadow);
}

.widget-showcase {
  width: min(100%, 260px);
  margin-top: 28px;
  transform: rotate(-2deg);
}

.men-module {
  background:
    linear-gradient(135deg, rgba(18, 104, 255, 0.12), transparent 56%),
    #ffffff;
}

.men-grid {
  align-items: start;
}

.men-visual {
  display: grid;
  grid-template-columns: minmax(150px, 0.58fr) minmax(0, 1fr);
  align-items: start;
  gap: 18px;
}

.men-screen {
  width: min(100%, 210px);
  margin: 0;
}

.men-visual .check-list {
  grid-template-columns: 1fr;
}

.check-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  min-height: 58px;
  border: 1px solid var(--separator);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.78);
  padding: 16px 16px 16px 42px;
  color: var(--text-soft);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 21px;
  left: 16px;
  width: 14px;
  height: 8px;
  border-left: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(-45deg);
}

.disclaimer-line {
  font-weight: 700;
}

.pdf-section {
  background:
    linear-gradient(135deg, rgba(18, 104, 255, 0.08), transparent 54%),
    var(--bg-soft);
}

.pdf-preview {
  display: grid;
  justify-items: center;
}

.report-screen {
  width: min(100%, 310px);
  transform: rotate(-1deg);
}

.pdf-page {
  width: min(100%, 360px);
  aspect-ratio: 0.72;
  display: grid;
  align-content: start;
  gap: 16px;
  border: 1px solid var(--separator);
  border-radius: var(--radius-card);
  background: var(--glass-strong);
  padding: 34px;
  box-shadow: var(--blue-shadow);
}

.pdf-heading {
  font-size: 24px;
  font-weight: 800;
}

.pdf-line,
.pdf-chart {
  display: block;
  height: 14px;
  border-radius: 999px;
  background: var(--separator);
}

.pdf-line.wide {
  width: 100%;
}

.pdf-line {
  width: 72%;
}

.pdf-line.short {
  width: 52%;
}

.pdf-chart {
  width: 100%;
  height: 150px;
  background:
    linear-gradient(135deg, transparent 46%, var(--accent) 48% 52%, transparent 54%),
    var(--accent-soft);
}

.accordion {
  display: grid;
  gap: 12px;
}

.faq-item {
  padding: 0;
  overflow: hidden;
}

.faq-item h3 {
  font-size: 18px;
}

.faq-item button {
  width: 100%;
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 0;
  background: transparent;
  color: var(--text);
  padding: 18px 22px;
  text-align: left;
  cursor: pointer;
}

.faq-item button::after {
  content: "+";
  flex: 0 0 auto;
  margin-left: 16px;
  color: var(--accent);
  font-size: 26px;
  line-height: 1;
}

.faq-item button[aria-expanded="true"]::after {
  content: "−";
}

.faq-panel {
  border-top: 1px solid var(--separator);
  padding: 0 22px 22px;
}

.final-cta {
  background:
    linear-gradient(135deg, rgba(18, 104, 255, 0.14), transparent 56%),
    linear-gradient(180deg, #ffffff, var(--bg));
}

.qr-wrap {
  justify-self: end;
  display: grid;
  justify-items: center;
  gap: 14px;
  border: 1px solid var(--separator);
  border-radius: var(--radius-card);
  background: var(--glass-strong);
  padding: 22px;
  color: var(--text-soft);
  font-weight: 700;
}

.qr-code {
  width: 168px;
  aspect-ratio: 1;
  border: 10px solid var(--bg);
  background:
    linear-gradient(var(--text) 0 0) 0 0 / 44px 44px no-repeat,
    linear-gradient(var(--text) 0 0) 100% 0 / 44px 44px no-repeat,
    linear-gradient(var(--text) 0 0) 0 100% / 44px 44px no-repeat,
    repeating-linear-gradient(90deg, var(--text) 0 8px, transparent 8px 16px),
    repeating-linear-gradient(0deg, transparent 0 8px, color-mix(in srgb, var(--text) 70%, transparent) 8px 16px);
}

.site-footer {
  border-top: 1px solid var(--separator);
  background: rgba(238, 246, 255, 0.78);
  padding: 34px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 22px 40px;
}

.footer-brand .brand-mark {
  width: 36px;
  height: 36px;
}

.footer-note,
.medical-note {
  margin-top: 14px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.medical-note {
  grid-column: 1 / -1;
  max-width: 820px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 18px;
}

.footer-links a {
  min-height: 36px;
  color: var(--text-soft);
  font-size: 14px;
  font-weight: 600;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--accent);
  text-decoration: underline;
}

.legal-page {
  padding: 54px 0 88px;
}

.legal-content {
  max-width: 840px;
}

.legal-content h1 {
  font-size: 44px;
  line-height: 1.2;
}

.legal-content h2 {
  margin-top: 34px;
  font-size: 26px;
}

.legal-content p,
.legal-content li {
  color: var(--text-soft);
  font-size: 17px;
  line-height: 1.75;
}

.legal-content p {
  margin-top: 16px;
}

.legal-content ul {
  margin: 14px 0 0;
  padding-left: 22px;
}

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

.can-reveal .reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 260ms ease, transform 260ms ease;
}

.can-reveal .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.can-reveal .screen-shot.is-visible .screen-device {
  animation: screenRise 520ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

@keyframes heroFloat {
  0%,
  100% {
    transform: translateY(0) rotate(2deg);
  }

  50% {
    transform: translateY(-14px) rotate(1deg);
  }
}

@keyframes auraTrace {
  0%,
  100% {
    transform: rotate(-5deg) scale(1);
    opacity: 0.82;
  }

  50% {
    transform: rotate(-3deg) scale(1.02);
    opacity: 1;
  }
}

@keyframes brandPulse {
  0%,
  100% {
    transform: translateY(0) rotate(6deg);
  }

  50% {
    transform: translateY(-10px) rotate(4deg);
  }
}

@keyframes metricFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes watchBob {
  0%,
  100% {
    translate: 0 0;
  }

  50% {
    translate: 0 -8px;
  }
}

@keyframes screenRise {
  from {
    opacity: 0.92;
    transform: translateY(12px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes pulseDot {
  0%,
  100% {
    box-shadow: 0 0 0 6px color-mix(in srgb, var(--yellow) 18%, transparent);
  }

  50% {
    box-shadow: 0 0 0 10px color-mix(in srgb, var(--yellow) 7%, transparent);
  }
}

@keyframes panelSweep {
  0%,
  42%,
  100% {
    transform: translateX(-100%);
  }

  58% {
    transform: translateX(100%);
  }
}

:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--accent) 45%, transparent);
  outline-offset: 3px;
}

@media (max-width: 1024px) {
  .header-inner {
    grid-template-columns: auto auto;
  }

  .main-nav {
    display: none;
  }

  .header-actions {
    justify-content: end;
  }

  .hero-grid,
  .two-column,
  .men-grid,
  .pdf-grid,
  .final-grid,
  .profiles-grid,
  .therapy-grid,
  .connected-grid,
  .emergency-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 42px;
  }

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

  .hero-device-stage {
    min-height: 560px;
  }

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

  .qr-wrap {
    justify-self: start;
  }

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

  .men-screen {
    justify-self: center;
  }

  .profile-stack {
    max-width: 520px;
  }

  .therapy-panel,
  .lock-screen-mockup {
    max-width: 520px;
  }
}

@media (max-width: 768px) {
  :root {
    --header: 66px;
  }

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

  .site-header {
    position: sticky;
  }

  .header-inner {
    min-height: var(--header);
    gap: 12px;
  }

  .brand span {
    max-width: 92px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .header-actions {
    gap: 6px;
  }

  .language-switch a,
  .language-switch span {
    padding: 0 9px;
  }

  .button-small {
    padding: 0 12px;
  }

  .section {
    padding: 62px 0;
  }

  .hero {
    min-height: auto;
    padding: 42px 0 58px;
  }

  h1 {
    font-size: 36px;
    line-height: 1.22;
  }

  h2 {
    font-size: 28px;
    line-height: 1.29;
  }

  h3 {
    font-size: 19px;
  }

  .hero-lead {
    font-size: 16px;
    line-height: 1.62;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .app-store-badge,
  .button-secondary {
    width: 100%;
  }

  .app-store-badge {
    align-items: center;
  }

  .phone-mockup {
    width: min(100%, 282px);
  }

  .phone-hero {
    transform: none;
  }

  .hero-device-stage {
    min-height: 520px;
  }

  .brand-heart-card {
    top: 18px;
    right: 10px;
    width: 150px;
    border-radius: 24px;
  }

  .floating-metric {
    min-width: 112px;
    padding: 10px 12px;
  }

  .floating-metric-top {
    top: 62px;
    right: 10px;
  }

  .floating-metric-bottom {
    left: 10px;
    bottom: 72px;
  }

  .device-flow {
    grid-template-columns: 1fr;
    gap: 14px;
    min-height: 0;
  }

  .flow-line {
    width: 2px;
    height: 34px;
    justify-self: center;
    background: linear-gradient(180deg, transparent, var(--accent), transparent);
  }

  .flow-line::after {
    top: auto;
    right: 50%;
    bottom: 4px;
    transform: translateX(50%) rotate(135deg);
  }

  .profile-card-primary,
  .profile-card:nth-child(3) {
    transform: none;
  }

  .card-grid.three,
  .card-grid.six,
  .privacy-grid,
  .check-list {
    grid-template-columns: 1fr;
  }

  .screenshot-grid.real-screens {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    padding: 4px 14px 18px;
    margin: 0 -14px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .screenshot-grid.real-screens .screen-shot {
    flex: 0 0 min(72vw, 280px);
    scroll-snap-align: center;
  }

  .screen-device {
    width: min(100%, 250px);
  }

  .info-card,
  .feature-card,
  .privacy-tile {
    padding: 20px;
  }

  .privacy-quote {
    font-size: 18px;
  }

  .two-column,
  .men-grid,
  .pdf-grid,
  .final-grid,
  .therapy-grid,
  .emergency-grid {
    gap: 32px;
  }

  .widget-phone,
  .watch-mockup {
    max-width: 100%;
  }

  .watch-stack {
    min-height: 250px;
  }

  .watch-front {
    left: 94px;
  }

  .watch-device {
    width: 170px;
  }

  .medical-id-card {
    margin-top: 58px;
  }

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

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

@media (max-width: 420px) {
  .brand-mark {
    width: 36px;
    height: 36px;
  }

  .brand span {
    display: none;
  }

  .language-switch {
    display: none;
  }

  .button-small {
    min-width: 96px;
  }

  .phone-screen {
    padding-left: 14px;
    padding-right: 14px;
  }

  .mini-screen {
    width: min(100%, 220px);
  }

  .hero-device-stage {
    min-height: 500px;
  }

  .brand-heart-card {
    width: 126px;
    right: 0;
  }

  .floating-metric {
    display: none;
  }

  .watch-stack {
    min-height: 220px;
  }

  .watch-front {
    left: 74px;
  }

  .watch-device {
    width: 150px;
    border-width: 8px;
    border-radius: 36px;
  }

  .lock-screen-mockup {
    border-width: 8px;
    border-radius: 38px;
    padding: 30px 16px 20px;
  }

  .lock-time {
    font-size: 40px;
  }

  .medical-id-card {
    border-radius: 14px;
    padding: 14px;
  }

  .medical-id-item,
  .emergency-contact {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .medical-id-item strong {
    text-align: left;
  }

  .qr-code {
    width: 144px;
  }
}

@media (prefers-color-scheme: dark) {
  :root {
    --accent: #1268ff;
    --accent-strong: #0757ee;
    --accent-soft: #e8f1ff;
    --bg: #f7fbff;
    --bg-soft: #eef6ff;
    --bg-muted: #e7f0ff;
    --text: #07111f;
    --text-soft: #52647d;
    --muted: #718198;
    --separator: rgba(38, 111, 255, 0.14);
    --shadow: 0 28px 90px rgba(25, 96, 215, 0.16);
  }

  .site-header {
    border-color: rgba(255, 255, 255, 0.66);
  }

  .language-switch span[aria-current="true"] {
    background: var(--accent);
    color: #ffffff;
  }

  .button {
    color: #ffffff;
  }

  .button-secondary {
    color: var(--text);
  }

  .phone-mockup,
  .mini-screen,
  .watch-mockup,
  .widget-phone,
  .screen-device,
  .watch-device {
    border-color: #020617;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .can-reveal .reveal,
  .reveal {
    opacity: 1;
    transform: none;
    animation: none !important;
  }

  .phone-hero,
  .hero-aura,
  .brand-heart-card,
  .floating-metric,
  .watch-device,
  .therapy-panel::before,
  .therapy-row-warning .therapy-dot,
  .can-reveal .screen-shot.is-visible .screen-device {
    animation: none !important;
  }
}
