:root {
  --blue: #0052cc;
  --blue-deep: #041a3d;
  --blue-ink: #08265c;
  --orange: #ff7a00;
  --orange-dark: #d95f00;
  --silver: #c0c0c0;
  --silver-light: #eef2f6;
  --ink: #0f0f0f;
  --muted: #526071;
  --white: #ffffff;
  --crimson: #0b5cdb;
  --shadow: 0 22px 65px rgba(0, 27, 71, 0.16);
  --radius: 18px;
  --shell: min(1180px, calc(100% - 40px));
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Noto Sans", "Segoe UI", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.dialog-open { overflow: hidden; }

img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 100;
  transform: translateY(-140%);
  padding: 10px 16px;
  border-radius: 8px;
  color: white;
  background: var(--blue);
}

.skip-link:focus { transform: translateY(0); }
.shell { width: var(--shell); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(5, 31, 72, 0.09);
  backdrop-filter: blur(16px);
}

.header-inner {
  width: var(--shell);
  min-height: 78px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  order: 1;
}

.brand-mark {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  flex: none;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-copy { display: flex; flex-direction: column; line-height: 1.15; }
.brand-copy strong { color: var(--blue-ink); font-size: 1rem; font-weight: 850; letter-spacing: -0.02em; }
.brand-copy em { color: var(--crimson); font-style: normal; }
.brand-copy small { margin-top: 5px; color: #667085; font-size: 0.64rem; letter-spacing: 0.11em; text-transform: uppercase; }

.site-nav { display: flex; align-items: center; gap: 24px; margin-left: auto; order: 2; }
.site-nav > a:not(.button) { color: #243144; text-decoration: none; font-size: 0.88rem; font-weight: 700; }
.site-nav > a:not(.button):hover { color: var(--blue); }

.login-button {
  min-height: 40px;
  padding: 0 15px;
  color: #243144;
  background: transparent;
  border: 1px solid rgba(36, 49, 68, 0.35);
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 800;
  cursor: pointer;
}

.login-button:hover { color: var(--blue); border-color: currentColor; }
.header-login { order: 3; flex: none; white-space: nowrap; }

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 0;
  border-radius: 8px;
  color: #171717;
  background: var(--orange);
  box-shadow: 0 12px 28px rgba(255, 122, 0, 0.22);
  font-weight: 850;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.button:hover { transform: translateY(-2px); background: #ff8b24; box-shadow: 0 16px 34px rgba(255, 122, 0, 0.28); }
.button:focus-visible, a:focus-visible, button:focus-visible { outline: 3px solid #73a6ff; outline-offset: 3px; }
.button-small { min-height: 44px; padding: 0 18px; font-size: 0.86rem; }
.button-full { width: 100%; }
.button-outline { background: transparent; color: var(--white); border: 1px solid rgba(255, 255, 255, 0.45); box-shadow: none; }
.button-outline:hover { background: var(--white); color: var(--blue-deep); }

.menu-toggle { display: none; width: 44px; height: 44px; border: 0; background: none; padding: 10px; order: 4; }
.menu-toggle span:not(.sr-only) { display: block; width: 24px; height: 2px; margin: 5px auto; background: var(--blue-ink); transition: 180ms ease; }

.hero {
  min-height: 740px;
  position: relative;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--blue-deep);
  color: var(--white);
}

.hero-image, .hero-overlay { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-image { object-fit: cover; object-position: center; }
.hero-overlay {
  background:
    linear-gradient(90deg, rgba(2, 18, 43, 0.96) 0%, rgba(3, 24, 58, 0.91) 36%, rgba(3, 22, 53, 0.45) 66%, rgba(3, 20, 48, 0.16) 100%),
    linear-gradient(0deg, rgba(2, 16, 39, 0.56) 0%, transparent 45%);
}

.hero-content { position: relative; z-index: 2; padding: 104px 0 84px; }
.eyebrow { margin: 0 0 18px; color: #8db8ff; font-size: 0.76rem; font-weight: 850; letter-spacing: 0.18em; text-transform: uppercase; }
.eyebrow.dark { color: var(--blue); }

.hero h1, h2 {
  font-family: "Noto Sans Display", "Arial Narrow", "Segoe UI", sans-serif;
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 1.03;
}

.hero h1 { max-width: 810px; margin: 0; font-size: clamp(3rem, 6.1vw, 5.7rem); text-wrap: balance; }
.hero h1::after { content: ""; display: block; width: 84px; height: 7px; margin-top: 25px; background: var(--orange); }
.hero-lede { max-width: 690px; margin: 28px 0 0; color: #e3ebf7; font-size: clamp(1.08rem, 1.8vw, 1.28rem); line-height: 1.65; }
.hero-actions { display: flex; align-items: center; gap: 28px; margin-top: 34px; }
.text-link { color: var(--white); text-decoration: none; font-weight: 750; }
.text-link:hover { color: #a9c7ff; }
.hero-facts { display: flex; gap: 0; margin: 68px 0 0; padding: 0; list-style: none; }
.hero-facts li { min-width: 190px; padding: 0 28px; border-left: 1px solid rgba(255, 255, 255, 0.24); display: flex; flex-direction: column; }
.hero-facts li:first-child { padding-left: 0; border-left: 0; }
.hero-facts strong { font-size: 1.05rem; }
.hero-facts span { color: #b7c5d9; font-size: 0.84rem; }

.signal-strip { background: var(--blue); color: var(--white); }
.signal-grid { min-height: 82px; display: grid; grid-template-columns: repeat(4, 1fr); align-items: center; }
.signal-grid p { margin: 0; padding: 0 24px; border-left: 1px solid rgba(255, 255, 255, 0.26); font-size: 0.83rem; font-weight: 760; text-align: center; }
.signal-grid p:first-child { border-left: 0; }

.section { padding: 116px 0; }
.section-intro { margin-bottom: 58px; }
.section-intro.narrow { max-width: 840px; }
h2 { margin: 0; color: var(--blue-deep); font-size: clamp(2.4rem, 4.5vw, 4.5rem); text-wrap: balance; }
.section-intro > p:last-child, .solution-copy > p, .manager-copy > p, .split-intro > p { color: var(--muted); font-size: 1.08rem; }

.pain-section { background: #f6f8fb; }
.pain-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid #cdd6e1; border-bottom: 1px solid #cdd6e1; }
.pain-grid article { padding: 32px 26px 38px; border-left: 1px solid #cdd6e1; }
.pain-grid article:first-child { border-left: 0; padding-left: 0; }
.pain-number { color: var(--orange-dark); font-size: 0.78rem; font-weight: 900; letter-spacing: 0.12em; }
.pain-grid h3 { margin: 52px 0 12px; color: var(--blue-deep); font-size: 1.25rem; line-height: 1.25; }
.pain-grid p { margin: 0; color: #5b6674; font-size: 0.94rem; }
blockquote { margin: 64px 0 0; padding: 0 0 0 28px; border-left: 5px solid var(--orange); color: var(--blue-ink); font-size: clamp(1.35rem, 2.3vw, 2rem); font-weight: 760; line-height: 1.4; }

.solution-section { color: var(--white); background: var(--blue-deep); position: relative; overflow: hidden; }
.solution-section::before { content: ""; position: absolute; inset: auto -180px -240px auto; width: 620px; height: 620px; border: 120px solid rgba(255, 122, 0, 0.08); border-radius: 50%; }
.solution-layout { position: relative; display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 92px; align-items: start; }
.solution-copy { position: sticky; top: 118px; }
.solution-copy h2 { color: var(--white); }
.solution-copy > p { color: #c4d0e0; }
.solution-copy .button { margin-top: 20px; }
.pathway { margin: 0; padding: 0; list-style: none; counter-reset: pathway; }
.pathway li { display: grid; grid-template-columns: 72px 1fr; gap: 24px; padding: 34px 0; border-top: 1px solid rgba(255, 255, 255, 0.17); }
.pathway li:last-child { border-bottom: 1px solid rgba(255, 255, 255, 0.17); }
.pathway > li > span { color: var(--orange); font-weight: 900; letter-spacing: 0.13em; }
.pathway strong { font-size: 1.55rem; }
.pathway p { margin: 8px 0 0; color: #b9c5d5; }

.manager-section { background: var(--white); }
.manager-layout { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 78px; align-items: center; }
.check-list { margin: 30px 0 0; padding: 0; list-style: none; }
.check-list li { position: relative; padding: 13px 0 13px 34px; border-bottom: 1px solid #e1e6ec; color: #263548; }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--blue); font-weight: 900; }

.dashboard { padding: 28px; border: 1px solid #d9e0e9; border-radius: var(--radius); background: #f9fbfd; box-shadow: var(--shadow); }
.dashboard-top { display: flex; justify-content: space-between; align-items: start; padding-bottom: 24px; border-bottom: 1px solid #dbe3ec; }
.dashboard-top > div { display: flex; flex-direction: column; }
.dashboard small { color: #718096; font-size: 0.67rem; font-weight: 850; letter-spacing: 0.11em; text-transform: uppercase; }
.dashboard-top strong { margin-top: 5px; color: var(--blue-deep); font-size: 1.24rem; }
.dashboard-top > span { padding: 7px 11px; color: var(--blue); background: #e7f0ff; border-radius: 999px; font-size: 0.75rem; font-weight: 850; }
.dashboard-summary { display: grid; grid-template-columns: 122px 1fr; gap: 24px; align-items: center; padding: 30px 0; }
.ring { --progress: 68; width: 116px; height: 116px; display: grid; place-items: center; border-radius: 50%; background: conic-gradient(var(--blue) calc(var(--progress) * 1%), #dce4ee 0); position: relative; }
.ring::after { content: ""; position: absolute; inset: 12px; border-radius: 50%; background: #f9fbfd; }
.ring span { z-index: 1; color: var(--blue-deep); font-size: 1.65rem; font-weight: 900; }
.dashboard-summary strong { display: block; margin-top: 7px; color: #1b2a3d; font-size: 1rem; line-height: 1.4; }
.learner-list { background: var(--white); border: 1px solid #e0e6ed; border-radius: 12px; overflow: hidden; }
.learner-list > div { display: grid; grid-template-columns: 42px minmax(110px, 1fr) minmax(100px, 1.5fr) 42px; gap: 12px; align-items: center; padding: 15px; border-top: 1px solid #edf0f4; }
.learner-list > div:first-child { border-top: 0; }
.avatar { width: 36px; height: 36px; display: grid; place-items: center; color: white; background: var(--blue); border-radius: 10px; font-size: 0.73rem; font-weight: 850; }
.avatar.orange { background: var(--orange-dark); }
.avatar.silver { background: #6b7b90; }
.learner-list p { margin: 0; display: flex; flex-direction: column; }
.learner-list p strong { color: #263548; font-size: 0.82rem; }
.learner-list p small { color: #8793a3; font-size: 0.69rem; letter-spacing: 0; text-transform: none; }
.learner-list i { height: 7px; border-radius: 9px; background: linear-gradient(90deg, var(--blue) var(--width), #e6ebf1 var(--width)); }
.learner-list b { color: #4b5a6d; font-size: 0.74rem; text-align: right; }
.dashboard-foot { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding-top: 18px; }
.dashboard-foot span { padding: 13px; background: #eef3f8; border-radius: 10px; color: #687487; font-size: 0.72rem; }
.dashboard-foot strong { display: block; color: var(--blue-deep); font-size: 0.9rem; }

.included-section { background: #f5f7fa; }
.split-intro { display: grid; grid-template-columns: 1.3fr 0.7fr; gap: 72px; align-items: end; }
.included-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid #cbd5e1; border-left: 1px solid #cbd5e1; }
.included-grid article { min-height: 240px; padding: 30px; border-right: 1px solid #cbd5e1; border-bottom: 1px solid #cbd5e1; background: rgba(255,255,255,0.45); }
.included-grid span { color: var(--orange-dark); font-size: 0.75rem; font-weight: 900; letter-spacing: 0.12em; }
.included-grid h3 { margin: 44px 0 10px; color: var(--blue-deep); font-size: 1.2rem; }
.included-grid p { margin: 0; color: #637083; font-size: 0.93rem; }

.fit-section { background: var(--white); }
.fit-layout { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 88px; }
.fit-title { position: sticky; top: 118px; align-self: start; }
.fit-list article { display: grid; grid-template-columns: 62px 1fr; gap: 22px; padding: 30px 0; border-top: 1px solid #d8dee7; }
.fit-list article:last-child { border-bottom: 1px solid #d8dee7; }
.fit-icon { width: 54px; height: 54px; display: grid; place-items: center; color: white; background: var(--blue); border-radius: 50%; font-weight: 900; box-shadow: inset -9px -5px 0 rgba(255, 122, 0, 0.28); }
.fit-list h3 { margin: 0 0 8px; color: var(--blue-deep); font-size: 1.3rem; }
.fit-list p { margin: 0; color: #5d6979; }

.outcomes-section { color: var(--white); background: var(--blue); }
.outcomes-layout { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 86px; }
.outcomes-section h2 { color: var(--white); }
.outcomes-list p { display: grid; grid-template-columns: 50px 1fr; gap: 14px; margin: 0; padding: 21px 0; border-top: 1px solid rgba(255,255,255,0.25); font-size: 1.08rem; font-weight: 700; }
.outcomes-list p:last-child { border-bottom: 1px solid rgba(255,255,255,0.25); }
.outcomes-list span { color: #ffad61; font-size: 0.75rem; font-weight: 900; letter-spacing: 0.1em; }
.outcome-note { margin-top: 54px; color: #d5e1f2; font-size: 0.78rem; }

.demo-section { padding: 112px 0; color: white; background: #071326; position: relative; overflow: hidden; }
.demo-section::before { content: ""; position: absolute; inset: -280px -90px auto auto; width: 620px; height: 620px; border: 100px solid rgba(255, 122, 0, 0.15); border-radius: 50%; }
.demo-layout { position: relative; display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 90px; align-items: center; }
.demo-section h2 { color: white; }
.demo-section p:not(.eyebrow):not(.demo-label) { max-width: 650px; color: #bcc9db; font-size: 1.08rem; }
.demo-card { padding: 36px; border: 1px solid rgba(255,255,255,0.16); border-radius: var(--radius); background: rgba(255,255,255,0.08); backdrop-filter: blur(14px); }
.demo-label { color: #91b9f5; font-size: 0.72rem; font-weight: 850; letter-spacing: 0.14em; }
.demo-card ul { margin: 20px 0 30px; padding: 0; list-style: none; }
.demo-card li { position: relative; padding: 12px 0 12px 28px; border-top: 1px solid rgba(255,255,255,0.12); }
.demo-card li::before { content: "+"; position: absolute; left: 0; color: var(--orange); font-weight: 900; }
.demo-card small { display: block; margin-top: 14px; color: #96a6ba; text-align: center; }

footer { padding: 48px 0 24px; color: white; background: #030a15; }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr auto; gap: 30px; align-items: center; }
.footer-brand .brand-copy strong { color: white; }
.footer-grid p { color: #aab8ca; font-size: 0.86rem; text-align: center; }
.footer-grid > a { color: white; font-size: 0.82rem; font-weight: 800; text-decoration: none; }
.legal-line { display: flex; justify-content: space-between; gap: 30px; margin-top: 38px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,0.12); color: #6f8198; font-size: 0.72rem; }

.demo-dialog { width: min(560px, calc(100% - 32px)); padding: 40px; border: 0; border-radius: 18px; box-shadow: 0 30px 90px rgba(0,0,0,0.35); }
.demo-dialog::backdrop { background: rgba(2,12,29,0.76); backdrop-filter: blur(4px); }
.demo-dialog h2 { font-size: clamp(2rem, 5vw, 3.2rem); }
.demo-dialog > p:not(.eyebrow):not(.copy-status) { color: var(--muted); }
.dialog-close { position: absolute; top: 14px; right: 17px; border: 0; background: none; color: #526071; font-size: 2rem; cursor: pointer; }
.dialog-actions { display: flex; align-items: center; gap: 18px; margin-top: 28px; }
.text-button { border: 0; background: transparent; color: var(--blue); font-weight: 800; cursor: pointer; }
.copy-status { min-height: 24px; margin: 16px 0 0; color: var(--blue); font-weight: 750; font-size: 0.84rem; }

@media (max-width: 1180px) {
  .menu-toggle { display: block; cursor: pointer; }
  .site-nav { position: absolute; top: 78px; left: 0; right: 0; display: none; flex-direction: column; align-items: stretch; gap: 0; margin-left: 0; padding: 16px 20px 24px; background: white; border-bottom: 1px solid #dce2ea; box-shadow: 0 16px 30px rgba(6,25,56,0.1); }
  .site-nav.open { display: flex; }
  .site-nav > a:not(.button) { padding: 14px 0; border-bottom: 1px solid #edf0f4; }
  .site-nav .button { margin-top: 16px; }
  .signal-grid { grid-template-columns: 1fr 1fr; padding: 12px 0; }
  .signal-grid p { padding: 10px 16px; }
  .signal-grid p:nth-child(3) { border-left: 0; }
  .pain-grid { grid-template-columns: 1fr 1fr; }
  .pain-grid article:nth-child(3) { border-left: 0; }
  .pain-grid article { border-top: 1px solid #cdd6e1; }
  .solution-layout, .manager-layout, .fit-layout, .outcomes-layout, .demo-layout { grid-template-columns: 1fr; gap: 58px; }
  .solution-copy, .fit-title { position: static; }
  .manager-layout { grid-template-columns: 1fr; }
  .split-intro { grid-template-columns: 1fr; gap: 22px; }
  .included-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 680px) {
  :root { --shell: min(100% - 28px, 1180px); }
  .header-inner { min-height: 70px; }
  .brand-copy small { display: none; }
  .brand-copy strong { font-size: 0.88rem; }
  .brand-mark { width: 48px; height: 48px; }
  .site-nav { top: 70px; }
  .hero { min-height: 750px; align-items: end; }
  .hero-image { object-position: 63% center; }
  .hero-overlay { background: linear-gradient(0deg, rgba(2,16,39,0.98) 12%, rgba(2,18,43,0.88) 62%, rgba(2,18,43,0.36) 100%); }
  .hero-content { padding: 180px 0 54px; }
  .hero h1 { font-size: clamp(2.65rem, 13.5vw, 4rem); }
  .hero-lede { font-size: 1rem; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 16px; }
  .text-link { text-align: center; }
  .hero-facts { display: grid; grid-template-columns: 1fr; margin-top: 42px; }
  .hero-facts li, .hero-facts li:first-child { min-width: 0; padding: 10px 0; border-left: 0; border-top: 1px solid rgba(255,255,255,0.17); }
  .signal-grid { grid-template-columns: 1fr; }
  .signal-grid p { border-left: 0; border-top: 1px solid rgba(255,255,255,0.18); }
  .section { padding: 82px 0; }
  h2 { font-size: clamp(2.25rem, 11vw, 3.4rem); }
  .pain-grid, .included-grid { grid-template-columns: 1fr; }
  .pain-grid article, .pain-grid article:first-child { padding: 28px 0; border-left: 0; }
  .pain-grid h3 { margin-top: 28px; }
  blockquote { margin-top: 42px; font-size: 1.25rem; }
  .solution-layout { gap: 40px; }
  .pathway li { grid-template-columns: 46px 1fr; gap: 14px; }
  .dashboard { padding: 18px; }
  .dashboard-summary { grid-template-columns: 92px 1fr; gap: 16px; }
  .ring { width: 88px; height: 88px; }
  .ring span { font-size: 1.25rem; }
  .learner-list > div { grid-template-columns: 36px 1fr 38px; }
  .learner-list i { grid-column: 2 / 4; }
  .dashboard-foot { grid-template-columns: 1fr; }
  .included-grid article { min-height: 0; }
  .included-grid h3 { margin-top: 24px; }
  .footer-grid { grid-template-columns: 1fr; text-align: left; }
  .footer-grid p { text-align: left; }
  .legal-line { flex-direction: column; gap: 10px; }
  .demo-dialog { padding: 36px 24px 26px; }
  .dialog-actions { align-items: stretch; flex-direction: column; }
}

@media (max-width: 520px) {
  .header-inner { gap: 9px; }
  .brand-copy { display: none; }
  .brand { gap: 0; }
  .header-login { min-height: 36px; padding: 0 11px; font-size: 0.75rem; }
}

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

/* Electrophysiology art direction */
:root {
  --crimson: #1474ff;
  --crimson-deep: #063a86;
  --scan: rgba(164, 198, 255, 0.14);
}

body {
  background: #020711;
}

.site-header {
  color: white;
  background: rgba(2, 7, 17, 0.88);
  border-bottom-color: rgba(154, 188, 244, 0.16);
  box-shadow: 0 12px 38px rgba(0, 0, 0, 0.24);
}

.brand-copy strong { color: white; }
.brand-copy small { color: #8fa8cd; }
.brand-copy em { color: #ff5b73; }
.site-nav > a:not(.button) { color: #c5d2e7; }
.site-nav > a:not(.button):hover { color: white; }
.login-button { color: #d9e4f5; border-color: rgba(164, 194, 236, 0.42); }
.login-button:hover { color: white; border-color: #ff6a7f; background: rgba(20, 116, 255, 0.08); }

.button {
  position: relative;
  overflow: hidden;
  color: white;
  background: linear-gradient(110deg, #116cff, #ff7a00 72%);
  box-shadow: 0 14px 38px rgba(20, 116, 255, 0.28);
}

.button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 22%, rgba(255,255,255,0.36) 46%, transparent 68%);
  transform: translateX(-140%);
  transition: transform 500ms ease;
}

.button:hover { background: linear-gradient(110deg, #3b8cff, #ff8b24 72%); box-shadow: 0 18px 42px rgba(20, 116, 255, 0.34); }
.button:hover::after { transform: translateX(140%); }

.hero {
  min-height: 850px;
  background: #020711;
  isolation: isolate;
}

.hero-image {
  object-position: center center;
  transform: scale(1.01);
  transition: transform 600ms ease-out;
}

.hero:hover .hero-image { transform: scale(1.025); }

.hero-overlay {
  background:
    radial-gradient(circle at 72% 47%, transparent 0 24%, rgba(3, 10, 24, 0.16) 44%, rgba(2, 7, 17, 0.92) 77%),
    linear-gradient(90deg, #020711 0%, rgba(2, 7, 17, 0.98) 29%, rgba(2, 7, 17, 0.68) 52%, rgba(2, 7, 17, 0.08) 86%),
    linear-gradient(0deg, rgba(2, 7, 17, 0.86) 0%, transparent 38%);
}

.scan-grid {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.48;
  pointer-events: none;
  background:
    repeating-linear-gradient(0deg, transparent 0 71px, rgba(119, 159, 222, 0.08) 72px),
    repeating-linear-gradient(90deg, transparent 0 95px, rgba(119, 159, 222, 0.055) 96px);
  mask-image: linear-gradient(90deg, black, transparent 80%);
}

.scan-grid::after {
  content: "";
  position: absolute;
  left: 0;
  right: 42%;
  top: 26%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #2d83ff 18%, #ffb15e 50%, transparent 85%);
  box-shadow: 0 0 18px rgba(20, 116, 255, 0.75);
  animation: scan 5.8s ease-in-out infinite;
}

@keyframes scan {
  0%, 100% { transform: translateY(0); opacity: 0.34; }
  50% { transform: translateY(240px); opacity: 0.9; }
}

.hero-content { z-index: 2; padding-top: 96px; }
.hero-readout { display: flex; align-items: center; gap: 12px; width: min(560px, 100%); margin-bottom: 50px; color: #8096b8; font-size: 0.64rem; font-weight: 850; letter-spacing: 0.16em; }
.hero-readout i { flex: 1; height: 1px; position: relative; background: linear-gradient(90deg, #1e3d68, #1474ff 55%, #ff7a00); }
.hero-readout i::after { content: ""; position: absolute; top: -3px; left: 0; width: 7px; height: 7px; border-radius: 50%; background: white; box-shadow: 0 0 18px #4a9cff; animation: flow 3.8s linear infinite; }
@keyframes flow { to { left: calc(100% - 7px); } }

.hero .eyebrow { color: #7bb7ff; }
.hero h1 { max-width: 840px; font-size: clamp(3.25rem, 6.3vw, 6.3rem); text-shadow: 0 8px 32px rgba(0,0,0,0.38); }
.hero h1::after { width: 132px; height: 5px; background: linear-gradient(90deg, var(--crimson), var(--orange)); box-shadow: 0 0 22px rgba(20, 116, 255, 0.7); }
.hero-lede { color: #c7d4e8; }
.hero-facts { margin-top: 54px; }
.hero-facts li { position: relative; border-color: rgba(154, 188, 244, 0.22); }
.hero-facts li::after { content: ""; position: absolute; left: -1px; top: 0; width: 1px; height: 0; background: linear-gradient(var(--crimson), var(--orange)); transition: height 300ms ease; }
.hero-facts li:hover::after { height: 100%; }
.hero-facts small { margin-bottom: 7px; color: #78b7ff; font-size: 0.59rem; letter-spacing: 0.14em; }

.signal-strip {
  position: relative;
  background: #071326;
  border-top: 1px solid rgba(150, 184, 239, 0.16);
  border-bottom: 1px solid rgba(150, 184, 239, 0.12);
  overflow: hidden;
}

.signal-strip::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(20,116,255,0.10), transparent 28%, transparent 72%, rgba(0,82,204,0.12)); }
.signal-grid { position: relative; min-height: 94px; }
.signal-grid p { color: #c8d5e8; border-color: rgba(160, 192, 240, 0.15); text-align: left; }
.signal-grid p span { display: block; margin-bottom: 2px; color: #6eacff; font-size: 0.6rem; letter-spacing: 0.14em; }

.pain-section {
  color: white;
  background:
    radial-gradient(circle at 78% 18%, rgba(7, 74, 173, 0.22), transparent 30%),
    linear-gradient(135deg, #050b16, #09152a 58%, #050914);
}

.pain-section .section-intro > p:last-child { color: #acbad0; }
.pain-section h2 { color: white; }
.pain-section .eyebrow.dark { color: #79b4ff; }
.pain-grid { border-color: rgba(164, 195, 238, 0.18); }
.pain-grid article { position: relative; border-color: rgba(164, 195, 238, 0.18); overflow: hidden; }
.pain-grid article::before { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 3px; background: linear-gradient(90deg, var(--crimson), var(--orange)); transform: scaleX(0); transform-origin: left; transition: transform 260ms ease; }
.pain-grid article:hover::before { transform: scaleX(1); }
.pain-number { color: #70b1ff; }
.pain-grid h3 { color: white; }
.pain-grid p { color: #9cabc1; }
.pain-section blockquote { color: #e5edf8; border-image: linear-gradient(var(--crimson), var(--orange)) 1; }

.solution-section {
  background:
    radial-gradient(circle at 110% 30%, rgba(20,116,255,0.22), transparent 32%),
    linear-gradient(130deg, #00163a, #06132b 55%, #020711);
}
.solution-section::before { border-color: rgba(20, 116, 255, 0.10); }
.pathway { position: relative; }
.pathway::before { content: ""; position: absolute; left: 34px; top: 50px; bottom: 50px; width: 2px; background: linear-gradient(var(--crimson), #809cd0 54%, var(--orange)); opacity: 0.66; }
.pathway li { position: relative; border-color: rgba(171, 201, 244, 0.18); }
.pathway > li > span { z-index: 1; width: 44px; height: 44px; display: grid; place-items: center; margin-left: 12px; color: white; background: #07152b; border: 1px solid #3190ff; border-radius: 50%; box-shadow: 0 0 0 7px #06132b, 0 0 26px rgba(20,116,255,0.26); }

.manager-section { background: linear-gradient(180deg, #eef4fb, white 52%); }
.dashboard {
  color: white;
  background: linear-gradient(145deg, #07152b, #030914);
  border-color: rgba(101, 148, 220, 0.44);
  box-shadow: 0 28px 80px rgba(0, 35, 92, 0.25), inset 0 1px 0 rgba(255,255,255,0.06);
}
.dashboard-top { border-color: rgba(147, 180, 230, 0.18); }
.dashboard small { color: #86a3cf; }
.dashboard-top strong, .dashboard-summary strong { color: white; }
.dashboard-top > span { color: #c8e1ff; background: rgba(20,116,255,0.16); border: 1px solid rgba(20,116,255,0.25); }
.ring { background: conic-gradient(#1c7dff calc(var(--progress) * 1%), #152541 0); box-shadow: 0 0 34px rgba(20,116,255,0.25); }
.ring::after { background: #07152b; }
.ring span { color: white; }
.learner-list { background: #08182f; border-color: rgba(147, 180, 230, 0.16); }
.learner-list > div { border-color: rgba(147, 180, 230, 0.12); }
.learner-list p strong { color: white; }
.learner-list p small { color: #7f97bc; }
.learner-list i { background: linear-gradient(90deg, #1c7dff var(--width), #1a2a45 var(--width)); }
.learner-list b { color: #b6c5dc; }
.dashboard-foot span { color: #8fa5c6; background: #0d1e37; }
.dashboard-foot strong { color: white; }

.included-section {
  color: white;
  background:
    linear-gradient(rgba(76, 111, 164, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(76, 111, 164, 0.06) 1px, transparent 1px),
    #030914;
  background-size: 64px 64px;
}
.included-section h2 { color: white; }
.included-section .split-intro > p { color: #aebdd3; }
.included-grid { border-color: rgba(143, 176, 224, 0.17); }
.included-grid article { position: relative; background: rgba(7, 21, 43, 0.72); border-color: rgba(143, 176, 224, 0.17); }
.included-grid article:hover { background: rgba(12, 35, 70, 0.9); }
.included-grid article::after { content: ""; position: absolute; right: 0; top: 0; width: 36px; height: 36px; border-top: 1px solid rgba(68,148,255,0.62); border-right: 1px solid rgba(68,148,255,0.62); }
.included-grid span { color: #5aa6ff; }
.included-grid h3 { color: white; }
.included-grid p { color: #98a9c2; }

.fit-section { background: linear-gradient(120deg, white, #edf4fd); }
.fit-icon { background: linear-gradient(145deg, #0b5cdb, #032a68); box-shadow: inset -9px -5px 0 rgba(20,116,255,0.55), 0 10px 25px rgba(0,57,145,0.18); }

.outcomes-section {
  background:
    radial-gradient(circle at 20% 30%, rgba(20,116,255,0.36), transparent 29%),
    linear-gradient(110deg, #061b41, #071329 58%, #061f54);
}
.outcomes-list p { border-color: rgba(173,202,244,0.22); }
.outcomes-list span { color: #64acff; }

.demo-section {
  background:
    radial-gradient(circle at 78% 18%, rgba(20,116,255,0.22), transparent 24%),
    radial-gradient(circle at 12% 90%, rgba(0,82,204,0.22), transparent 28%),
    #020711;
}
.demo-section::before { border-color: rgba(20,116,255,0.12); }
.demo-card { border-color: rgba(83,163,255,0.28); background: linear-gradient(145deg, rgba(13,38,74,0.72), rgba(5,35,83,0.42)); box-shadow: 0 28px 70px rgba(0,0,0,0.3); }
.demo-label { color: #77b7ff; }

footer { background: #01040a; }

@media (max-width: 1180px) {
  .site-nav { background: rgba(3, 9, 20, 0.98); border-bottom-color: rgba(147,180,230,0.18); box-shadow: 0 18px 38px rgba(0,0,0,0.42); }
  .site-nav > a:not(.button) { border-color: rgba(147,180,230,0.14); }
  .menu-toggle span:not(.sr-only) { background: white; }
  .pathway::before { left: 34px; }
}

@media (max-width: 680px) {
  .hero { min-height: 850px; }
  .hero-image { object-position: 60% center; }
  .hero-overlay {
    background:
      radial-gradient(circle at 70% 34%, transparent 0 18%, rgba(2,7,17,0.22) 42%, rgba(2,7,17,0.88) 76%),
      linear-gradient(0deg, #020711 6%, rgba(2,7,17,0.86) 54%, rgba(2,7,17,0.30) 100%);
  }
  .scan-grid { opacity: 0.32; }
  .hero-content { padding-top: 98px; }
  .hero-readout { margin-bottom: 34px; }
  .hero h1 { font-size: clamp(2.7rem, 12vw, 3.45rem); line-height: 1.01; }
  .hero-lede { color: #d5dfec; }
  .hero-facts small { display: block; }
  .signal-grid p { text-align: left; }
  .pathway::before { left: 21px; }
  .pathway > li > span { width: 38px; height: 38px; margin-left: 2px; font-size: 0.7rem; }
}

/* Conversion audit refinements */
.objection {
  display: grid;
  grid-template-columns: minmax(220px, 0.7fr) 1.3fr;
  gap: 34px;
  margin-top: 54px;
  padding: 32px 34px;
  color: #e5edf8;
  background: rgba(6, 20, 43, 0.68);
  border: 1px solid rgba(164, 195, 238, 0.2);
  border-left: 4px solid var(--crimson);
}

.objection strong { color: white; font-size: 1.25rem; }
.objection p { margin: 0; color: #acbad0; }

.dashboard-signal {
  width: 104px;
  height: 104px;
  display: grid;
  place-items: center;
  position: relative;
  border: 1px solid rgba(55, 136, 255, 0.72);
  border-radius: 50%;
  box-shadow: inset 0 0 30px rgba(20,116,255,0.13), 0 0 34px rgba(20,116,255,0.2);
}

.dashboard-signal::before,
.dashboard-signal::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(125, 164, 222, 0.3);
  border-radius: 50%;
}

.dashboard-signal::before { inset: 14px; }
.dashboard-signal::after { inset: 30px; }
.dashboard-signal span { width: 9px; height: 9px; border-radius: 50%; background: #4a9dff; box-shadow: 0 0 18px #1c7dff; }
.learner-list > div { grid-template-columns: 42px minmax(110px, 1fr) auto; }
.learner-status { justify-self: end; padding: 5px 9px; border-radius: 999px; font-size: 0.67rem; font-weight: 850; white-space: nowrap; }
.learner-status.on-track { color: #bfe8d4; background: rgba(38, 145, 98, 0.18); }
.learner-status.review { color: #cde3ff; background: rgba(20, 116, 255, 0.18); }
.learner-status.active { color: #c9dcff; background: rgba(44, 100, 190, 0.2); }
.outcomes-cta { margin-top: 26px; }
.mobile-sticky-cta { display: none; }

@media (max-width: 1020px) {
  body { padding-bottom: 74px; }
  .mobile-sticky-cta {
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    z-index: 70;
    left: 14px;
    right: 14px;
    bottom: 12px;
    color: white;
    background: linear-gradient(110deg, #116cff, #ff7a00 72%);
    border: 1px solid rgba(255,255,255,0.22);
    border-radius: 9px;
    box-shadow: 0 14px 42px rgba(0,0,0,0.42), 0 0 28px rgba(20,116,255,0.26);
    font-size: 0.9rem;
    font-weight: 900;
    text-decoration: none;
    opacity: 0;
    pointer-events: none;
    transform: translateY(120%);
    transition: opacity 180ms ease, transform 220ms ease;
  }
  .mobile-sticky-cta.is-visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
}

@media (max-width: 680px) {
  .objection { grid-template-columns: 1fr; gap: 12px; padding: 26px 24px; }
  .dashboard-signal { width: 88px; height: 88px; }
  .learner-list > div { grid-template-columns: 36px 1fr auto; }
}

/* Traveler coverage vs. internal development */
.comparison-section {
  position: relative;
  overflow: hidden;
  color: var(--blue-deep);
  background:
    radial-gradient(circle at 84% 18%, rgba(20,116,255,0.12), transparent 24%),
    linear-gradient(135deg, #f7faff, #e9f0f9);
}

.comparison-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(35,75,134,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(35,75,134,0.045) 1px, transparent 1px);
  background-size: 68px 68px;
  mask-image: linear-gradient(to bottom, black, transparent 72%);
}

.comparison-section .shell { position: relative; }
.comparison-heading { max-width: 970px; margin-bottom: 54px; }
.comparison-heading h2 { font-size: clamp(2.65rem, 5vw, 5rem); }
.comparison-intro { max-width: 720px; margin: 22px 0 0; color: #52647b; font-size: 1rem; line-height: 1.6; }

.comparison-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 188px minmax(0, 1fr);
  grid-template-rows: auto 1fr;
  gap: 22px 28px;
  align-items: stretch;
}

.comparison-card {
  min-height: 600px;
  display: flex;
  flex-direction: column;
  padding: 36px;
  border-radius: 18px;
}

.traveler-card {
  grid-column: 1;
  grid-row: 1 / 3;
  background: rgba(255,255,255,0.86);
  border: 1px solid #c8d2df;
  box-shadow: 0 18px 50px rgba(8, 35, 75, 0.10);
}

.academy-card {
  grid-column: 3;
  grid-row: 1 / 3;
  color: white;
  background:
    radial-gradient(circle at 90% 10%, rgba(20,116,255,0.22), transparent 30%),
    linear-gradient(145deg, #07172f, #020711);
  border: 1px solid rgba(37,129,255,0.68);
  box-shadow: 0 28px 72px rgba(3,24,58,0.25), 0 0 38px rgba(20,116,255,0.14);
}

.comparison-card-top { display: flex; justify-content: space-between; gap: 18px; align-items: start; }
.comparison-label { margin: 0; font-size: 0.76rem; font-weight: 900; letter-spacing: 0.13em; }
.comparison-card-top > span { max-width: 130px; color: #68798e; font-size: 0.64rem; font-weight: 850; letter-spacing: 0.1em; text-align: right; }
.academy-card .comparison-card-top > span { color: #85bdff; }
.comparison-amount { display: block; margin-top: 40px; font-size: clamp(3.65rem, 6vw, 6.6rem); font-weight: 900; letter-spacing: -0.07em; line-height: 0.9; }
.traveler-card .comparison-amount { color: #243650; }
.academy-card .comparison-amount { color: white; text-shadow: 0 0 35px rgba(20,116,255,0.25); }
.comparison-description { max-width: 370px; margin: 24px 0 0; font-size: 1.08rem; font-weight: 800; line-height: 1.45; }
.comparison-calculation { margin: 8px 0 0; color: #66768a; font-size: 0.84rem; }
.academy-card .comparison-calculation { color: #91a8ca; }

.comparison-inputs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 24px 0 28px;
}

.comparison-field { display: grid; gap: 7px; }
.comparison-field > span:first-child { color: #52647b; font-size: 0.72rem; font-weight: 850; line-height: 1.3; }
.academy-card .comparison-field > span:first-child { color: #aebdd3; }
.comparison-input-wrap {
  min-height: 52px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 12px;
  background: rgba(233,239,247,0.9);
  border: 1px solid #c4cfdd;
  border-radius: 10px;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}
.academy-card .comparison-input-wrap { background: rgba(255,255,255,0.08); border-color: rgba(151,179,220,0.34); }
.comparison-input-wrap:focus-within { border-color: var(--crimson); box-shadow: 0 0 0 3px rgba(20,116,255,0.14); }
.comparison-input-wrap b { color: #52647b; font-size: 0.72rem; white-space: nowrap; }
.academy-card .comparison-input-wrap b { color: #b7c7df; }
.comparison-input-wrap input {
  width: 100%;
  min-width: 0;
  padding: 12px 0;
  color: var(--blue-deep);
  background: transparent;
  border: 0;
  outline: 0;
  font: inherit;
  font-size: 1rem;
  font-weight: 850;
}
.academy-card .comparison-input-wrap input { color: white; }

.term-cue {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding-top: 28px;
  border-top: 1px solid #d9e0e9;
}

.academy-card .term-cue { border-color: rgba(147,180,230,0.2); }
.term-cue strong { font-size: 1.8rem; line-height: 1; }
.term-cue span { max-width: 170px; color: #65758a; font-size: 0.79rem; font-weight: 800; line-height: 1.25; }
.academy-card .term-cue span { color: #9eb2d0; }

.comparison-vs {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  align-items: end;
  justify-content: center;
  min-height: 92px;
}

.comparison-vs span {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  color: white;
  background: linear-gradient(145deg, var(--crimson), var(--orange));
  border-radius: 50%;
  box-shadow: 0 12px 30px rgba(20,116,255,0.24);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.08em;
}

.comparison-result {
  grid-column: 2;
  grid-row: 2;
  align-self: center;
  text-align: center;
}

.comparison-result-label { display: block; margin-bottom: 10px; color: #68798e; font-size: 0.62rem; font-weight: 900; letter-spacing: 0.12em; }
.comparison-outcome { display: block; color: var(--crimson); font-size: clamp(2.35rem, 4vw, 3.8rem); font-weight: 900; letter-spacing: -0.06em; line-height: 0.95; }
.comparison-result p { margin: 14px 0 0; color: #4f6077; font-size: 0.78rem; font-weight: 750; line-height: 1.5; }
.comparison-result h3 { margin: 22px 0 0; color: var(--blue-deep); font-size: 1rem; line-height: 1.35; }
.comparison-action { display: flex; justify-content: center; margin-top: 38px; }
.comparison-action .button { min-width: 260px; }

.comparison-notes {
  max-width: 1030px;
  margin: 42px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(31,62,103,0.2);
  color: #5c6d82;
  font-size: 0.78rem;
  line-height: 1.55;
}

.comparison-notes p { margin: 5px 0; }
.comparison-notes a { color: var(--blue); font-weight: 800; }
.comparison-disclaimer { padding-top: 8px; color: #718096; }

@media (max-width: 900px) {
  .comparison-layout { grid-template-columns: 1fr; grid-template-rows: auto; gap: 20px; }
  .traveler-card,
  .academy-card,
  .comparison-vs,
  .comparison-result { grid-column: 1; grid-row: auto; }
  .traveler-card { order: 1; }
  .comparison-vs { order: 2; min-height: 66px; align-items: center; }
  .academy-card { order: 3; }
  .comparison-result { order: 4; max-width: 520px; margin: 20px auto 0; }
  .comparison-result p { font-size: 0.92rem; }
  .comparison-result h3 { font-size: 1.25rem; }
}

@media (max-width: 680px) {
  .comparison-heading { margin-bottom: 36px; }
  .comparison-heading h2 { font-size: clamp(2.45rem, 10.8vw, 3.35rem); }
  .comparison-card { min-height: 570px; padding: 28px 24px; }
  .comparison-card-top { flex-direction: column; gap: 8px; }
  .comparison-card-top > span { max-width: none; text-align: left; }
  .comparison-amount { margin-top: 42px; font-size: clamp(3.75rem, 17vw, 5rem); }
  .comparison-inputs { gap: 10px; }
  .comparison-input-wrap { min-height: 50px; padding: 0 9px; }
  .comparison-action .button { width: 100%; }
  .comparison-notes { font-size: 0.76rem; }
}

/* Traveler cost calculator */
.traveler-calculator {
  position: relative;
  scroll-margin-top: 84px;
  overflow: hidden;
  padding: 96px 0;
  background:
    radial-gradient(circle at 8% 8%, rgba(28,89,147,0.2), transparent 28%),
    radial-gradient(circle at 92% 90%, rgba(143,228,194,0.1), transparent 24%),
    #0d1b2a;
}

.legacy-anchor { position: absolute; top: -84px; }

.calculator-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 64px;
  align-items: end;
}

.calculator-copy { max-width: 490px; }
.calculator-eyebrow {
  margin: 0;
  color: #8fe4c2;
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.16em;
}
.calculator-copy h2 {
  margin: 14px 0 0;
  color: white;
  font-size: clamp(2.25rem, 4vw, 3.8rem);
  line-height: 1.05;
}
.calculator-copy > p:last-child {
  max-width: 520px;
  margin: 22px 0 0;
  color: rgba(255,255,255,0.68);
  font-size: 1.08rem;
  line-height: 1.7;
}

.calculator-panel {
  padding: 32px;
  color: var(--blue-deep);
  background: white;
  border-radius: 24px;
  box-shadow: 0 26px 76px rgba(0,0,0,0.3);
}

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

.calculator-field { display: grid; align-content: start; gap: 8px; }
.calculator-field > span:first-child {
  font-size: 0.87rem;
  font-weight: 900;
  line-height: 1.3;
}
.calculator-field small,
.calculator-result small {
  color: #667078;
  font-size: 0.72rem;
  line-height: 1.45;
}
.calculator-input {
  min-height: 54px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 13px;
  background: #f4f7fa;
  border: 1px solid #ccd5de;
  border-radius: 11px;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}
.calculator-input:focus-within {
  border-color: #1a9d72;
  box-shadow: 0 0 0 3px rgba(26,157,114,0.13);
}
.calculator-input b { color: #53616b; font-size: 0.76rem; white-space: nowrap; }
.calculator-input input {
  width: 100%;
  min-width: 0;
  padding: 13px 0;
  color: var(--blue-deep);
  background: transparent;
  border: 0;
  outline: 0;
  font: inherit;
  font-size: 1rem;
  font-weight: 850;
}

.calculator-results { margin-top: 28px; gap: 12px; }
.calculator-result {
  min-height: 146px;
  display: flex;
  flex-direction: column;
  padding: 20px;
  background: #f4f7fa;
  border: 1px solid #dbe2e8;
  border-radius: 15px;
}
.calculator-result > span {
  min-height: 36px;
  color: #53616b;
  font-size: 0.75rem;
  font-weight: 850;
  line-height: 1.35;
}
.calculator-result output {
  display: block;
  margin: 10px 0 8px;
  color: var(--blue-deep);
  font-size: clamp(1.5rem, 2.4vw, 2.15rem);
  font-weight: 950;
  letter-spacing: -0.045em;
  line-height: 1;
}
.calculator-result small { margin-top: auto; }
.calculator-result.is-highlighted {
  background: linear-gradient(145deg, #effcf7, #dcf6eb);
  border-color: #8fe4c2;
  box-shadow: 0 12px 28px rgba(13,120,82,0.12);
}
.calculator-result.is-highlighted output { color: #087a55; }

.calculator-disclaimer {
  margin: 20px 0 0;
  color: #667078;
  font-size: 0.76rem;
  line-height: 1.6;
}

@media (max-width: 1080px) {
  .calculator-layout { grid-template-columns: 1fr; gap: 38px; align-items: start; }
  .calculator-copy { max-width: 720px; }
}

@media (max-width: 760px) {
  .traveler-calculator { padding: 76px 0; }
  .calculator-panel { padding: 24px; border-radius: 20px; }
  .calculator-input-grid,
  .calculator-results { grid-template-columns: 1fr; }
  .calculator-field small { min-height: 0; }
  .calculator-result { min-height: 126px; }
  .calculator-result > span { min-height: 0; }
}
