:root {
  --navy-950: #030817;
  --navy-900: #071022;
  --navy-850: #0b152b;
  --navy-800: #111d35;
  --line: #24324d;
  --text: #f4f7fb;
  --muted: #9ba9bf;
  --blue: #3675ff;
  --cyan: #57d9e8;
  --green: #35d39a;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 82% 8%, rgba(54, 117, 255, 0.15), transparent 27rem),
    radial-gradient(circle at 10% 45%, rgba(87, 217, 232, 0.06), transparent 24rem),
    var(--navy-950);
  color: var(--text);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

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

.site-header {
  width: min(1180px, calc(100% - 40px));
  height: 76px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(155, 169, 191, 0.18);
}

.brand { display: inline-flex; align-items: center; gap: 12px; font-weight: 720; letter-spacing: -0.02em; }
.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(87, 217, 232, 0.48);
  border-radius: 11px;
  color: var(--cyan);
  background: rgba(87, 217, 232, 0.08);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 13px;
}

.site-nav { display: flex; align-items: center; gap: 28px; color: var(--muted); font-size: 14px; }
.site-nav a, .site-footer a { transition: color 160ms ease; }
.site-nav a:hover, .site-nav a:focus-visible, .site-footer a:hover, .site-footer a:focus-visible { color: white; }

.hero {
  min-height: 620px;
  padding: 90px 0 70px;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(330px, 0.85fr);
  gap: 76px;
  align-items: center;
}

.kicker { margin: 0 0 20px; color: var(--cyan); font-size: 12px; font-weight: 760; letter-spacing: 0.15em; }
.status-dot { display: inline-block; width: 7px; height: 7px; margin-right: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 15px rgba(53, 211, 154, 0.7); }
.hero h1 { max-width: 720px; margin: 0; font-size: clamp(46px, 6vw, 78px); line-height: 0.98; letter-spacing: -0.057em; }
.hero-lead { max-width: 650px; margin: 28px 0 0; color: #b9c4d4; font-size: clamp(17px, 2vw, 20px); line-height: 1.7; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.button { min-height: 48px; padding: 0 21px; display: inline-flex; align-items: center; justify-content: center; border-radius: 12px; font-size: 14px; font-weight: 700; transition: transform 160ms ease, background 160ms ease, border-color 160ms ease; }
.button:hover { transform: translateY(-1px); }
.button-primary { background: var(--blue); color: white; box-shadow: 0 12px 30px rgba(54, 117, 255, 0.22); }
.button-primary:hover { background: #4b83ff; }
.button-secondary { border: 1px solid var(--line); background: rgba(17, 29, 53, 0.66); color: #dfe6f1; }
.button-secondary:hover { border-color: #415270; background: var(--navy-800); }
.clinical-note { max-width: 630px; margin: 28px 0 0; padding-left: 14px; border-left: 2px solid #33445f; color: #77869d; font-size: 13px; line-height: 1.6; }

.dashboard-card {
  position: relative;
  padding: 27px;
  border: 1px solid #2c3c5c;
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(17, 29, 53, 0.96), rgba(7, 16, 34, 0.96));
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34), inset 0 1px rgba(255, 255, 255, 0.04);
  overflow: hidden;
}
.dashboard-card::after { content: ""; position: absolute; width: 190px; height: 190px; right: -70px; bottom: -95px; border-radius: 50%; background: rgba(54, 117, 255, 0.13); filter: blur(1px); }
.dashboard-topline { display: flex; align-items: center; justify-content: space-between; color: #76859d; font-size: 11px; font-weight: 760; letter-spacing: 0.14em; }
.live-pill { padding: 5px 9px; border-radius: 999px; color: var(--green); background: rgba(53, 211, 154, 0.1); letter-spacing: 0.09em; }
.timer { margin-top: 42px; font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace; font-size: clamp(64px, 8vw, 92px); font-weight: 700; line-height: 1; letter-spacing: -0.08em; }
.timer-label { margin-top: 9px; color: #8190a7; font-size: 14px; }
.dashboard-rule { height: 1px; margin: 31px 0 24px; background: var(--line); }
.metric-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
.metric-grid div { min-height: 77px; padding: 15px; border-radius: 13px; background: rgba(3, 8, 23, 0.56); border: 1px solid rgba(44, 60, 92, 0.72); }
.metric-grid span { display: block; color: #75839a; font-size: 11px; }
.metric-grid strong { display: block; margin-top: 7px; font-size: 14px; }

.highlights { padding: 30px 0 100px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.highlight-card { padding: 28px; border-top: 1px solid #35445f; background: linear-gradient(180deg, rgba(17, 29, 53, 0.48), transparent); }
.highlight-card p { margin: 0 0 35px; color: var(--cyan); font-size: 10px; font-weight: 800; letter-spacing: 0.14em; }
.highlight-card h2 { margin: 0 0 13px; font-size: 20px; letter-spacing: -0.025em; }
.highlight-card span { color: var(--muted); font-size: 14px; line-height: 1.65; }

.contact-band { margin-bottom: 86px; padding: 38px 40px; display: flex; align-items: center; justify-content: space-between; gap: 38px; border: 1px solid #293a58; border-radius: 22px; background: rgba(11, 21, 43, 0.8); }
.contact-band h2 { margin: 0; font-size: 29px; letter-spacing: -0.035em; }
.contact-band p:not(.kicker) { max-width: 620px; margin: 11px 0 0; color: var(--muted); line-height: 1.6; }
.contact-actions { display: flex; flex-direction: column; align-items: flex-end; gap: 15px; flex-shrink: 0; }
.email-link { color: var(--cyan); font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace; font-size: 12px; }

.site-footer { min-height: 90px; display: flex; justify-content: space-between; align-items: center; gap: 20px; border-top: 1px solid rgba(155, 169, 191, 0.18); color: #6f7d92; font-size: 13px; }
.site-footer div { display: flex; gap: 25px; }

.document-shell { width: min(920px, calc(100% - 40px)); margin: 64px auto 100px; }
.document-header { padding: 46px 50px; border: 1px solid #293a58; border-radius: 22px 22px 0 0; background: linear-gradient(145deg, rgba(17, 29, 53, 0.96), rgba(7, 16, 34, 0.96)); }
.document-header .kicker { margin-bottom: 16px; }
.document-header h1 { margin: 0; font-size: clamp(36px, 5vw, 57px); letter-spacing: -0.05em; }
.document-header p:last-child { max-width: 680px; margin: 15px 0 0; color: var(--muted); line-height: 1.65; }
.document-body { padding: 30px 50px 50px; border: 1px solid #24324d; border-top: 0; border-radius: 0 0 22px 22px; background: rgba(7, 16, 34, 0.8); }
.document-body section { padding: 25px 0; border-bottom: 1px solid rgba(36, 50, 77, 0.78); }
.document-body section:last-child { border-bottom: 0; }
.document-body h2 { margin: 0 0 12px; font-size: 20px; letter-spacing: -0.025em; }
.document-body p, .document-body li { color: #aeb9ca; font-size: 15px; line-height: 1.75; }
.document-body p { margin: 8px 0; }
.document-body ul { margin: 10px 0 0; padding-left: 22px; }
.document-body a { color: var(--cyan); text-decoration: underline; text-underline-offset: 4px; }
.callout { padding: 18px 20px; border: 1px solid rgba(87, 217, 232, 0.25); border-radius: 13px; background: rgba(87, 217, 232, 0.06); }
.updated { color: #75839a !important; font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace; font-size: 12px !important; }

@media (max-width: 820px) {
  .hero { grid-template-columns: 1fr; gap: 54px; padding-top: 65px; }
  .dashboard-card { max-width: 540px; }
  .highlights { grid-template-columns: 1fr; }
  .highlight-card p { margin-bottom: 20px; }
  .contact-band { align-items: flex-start; flex-direction: column; }
  .contact-actions { align-items: flex-start; }
}

@media (max-width: 560px) {
  .shell, .site-header, .document-shell { width: min(100% - 28px, 1120px); }
  .site-header { height: 68px; }
  .brand { font-size: 14px; }
  .brand-mark { width: 34px; height: 34px; }
  .site-nav { gap: 16px; font-size: 13px; }
  .hero { min-height: 0; padding: 54px 0 65px; }
  .hero h1 { font-size: 45px; }
  .hero-lead { font-size: 17px; }
  .hero-actions .button { width: 100%; }
  .dashboard-card { padding: 22px; border-radius: 18px; }
  .metric-grid { grid-template-columns: 1fr; }
  .contact-band { margin-bottom: 55px; padding: 27px 23px; }
  .contact-actions, .contact-actions .button { width: 100%; }
  .email-link { font-size: 11px; overflow-wrap: anywhere; }
  .site-footer { padding: 25px 0; align-items: flex-start; flex-direction: column; }
  .document-shell { margin-top: 35px; }
  .document-header, .document-body { padding: 30px 24px; }
}

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