:root {
  --navy-950: #061426;
  --navy-900: #0a1e38;
  --navy-800: #12345a;
  --navy-700: #184b74;
  --teal-600: #08a897;
  --teal-500: #24c5b4;
  --teal-100: #dff8f4;
  --blue-100: #eaf4fb;
  --ink: #122238;
  --muted: #5e6e80;
  --line: #dce5ed;
  --surface: #f6f9fb;
  --white: #ffffff;
  --warning: #f2b749;
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 30px;
  --shadow-sm: 0 12px 32px rgba(6, 20, 38, 0.08);
  --shadow: 0 24px 70px rgba(6, 20, 38, 0.14);
  --content: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

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

.skip-link {
  position: fixed;
  left: 16px;
  top: -60px;
  z-index: 1000;
  padding: 10px 16px;
  color: var(--navy-950);
  background: var(--white);
  border-radius: 8px;
  transition: top .2s ease;
}
.skip-link:focus { top: 16px; }

.container { width: min(calc(100% - 40px), var(--content)); margin-inline: auto; }
.narrow { width: min(calc(100% - 40px), 820px); margin-inline: auto; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 18px;
  color: var(--teal-600);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .14em;
  line-height: 1.2;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 24px; height: 2px; background: currentColor; }
.eyebrow.light { color: #70e0d4; }

h1, h2, h3, h4 { margin: 0; color: var(--navy-950); font-weight: 750; letter-spacing: -.035em; line-height: 1.08; text-wrap: balance; }
h1 { font-size: clamp(2.75rem, 6.3vw, 5.45rem); }
h2 { font-size: clamp(2rem, 4vw, 3.35rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
p { margin: 0; }
.lead { max-width: 720px; color: var(--muted); font-size: clamp(1.05rem, 2vw, 1.25rem); line-height: 1.7; }
.section-heading { display: grid; gap: 18px; margin-bottom: 44px; }
.section-heading.center { justify-items: center; text-align: center; }
.section-heading.center .lead { margin-inline: auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(6, 20, 38, .97);
  border-bottom: 1px solid rgba(255,255,255,.1);
  backdrop-filter: blur(16px);
}
.header-inner { min-height: 86px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; flex: 0 0 auto; align-items: center; text-decoration: none; }
.brand img { width: 258px; height: auto; }
.site-nav { display: flex; align-items: center; gap: 28px; }
.site-nav > a:not(.button) {
  position: relative;
  padding-block: 31px;
  color: #d5e3ef;
  font-size: .92rem;
  font-weight: 700;
  text-decoration: none;
  transition: color .2s ease;
}
.site-nav > a:not(.button)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 19px;
  left: 0;
  height: 2px;
  background: var(--teal-500);
  transform: scaleX(0);
  transition: transform .2s ease;
}
.site-nav > a:hover, .site-nav > a[aria-current="page"] { color: var(--white); }
.site-nav > a:hover::after, .site-nav > a[aria-current="page"]::after { transform: scaleX(1); }
.login-link { color: #a9bfd1 !important; }

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: var(--white);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 12px;
  cursor: pointer;
}
.menu-toggle svg { width: 24px; height: 24px; }

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 22px;
  color: var(--navy-950);
  background: var(--teal-500);
  border: 1px solid var(--teal-500);
  border-radius: 999px;
  box-shadow: 0 10px 28px rgba(36, 197, 180, .2);
  font-size: .92rem;
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.button:hover { background: #51d3c6; border-color: #51d3c6; box-shadow: 0 14px 34px rgba(36,197,180,.3); transform: translateY(-2px); }
.button:focus-visible, a:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible, button:focus-visible { outline: 3px solid #70e0d4; outline-offset: 3px; }
.button.secondary { color: var(--white); background: transparent; border-color: rgba(255,255,255,.35); box-shadow: none; }
.button.secondary:hover { border-color: var(--white); background: rgba(255,255,255,.07); }
.button.dark { color: var(--white); background: var(--navy-950); border-color: var(--navy-950); box-shadow: none; }
.button.dark:hover { background: var(--navy-800); border-color: var(--navy-800); }
.button.ghost { color: var(--navy-800); background: var(--white); border-color: var(--line); box-shadow: none; }
.button.ghost:hover { border-color: var(--teal-600); color: var(--navy-950); }
.button.small { min-height: 44px; padding: 11px 18px; font-size: .84rem; }
.button svg { width: 18px; height: 18px; }

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(78px, 10vw, 130px) 0 78px;
  color: var(--white);
  background: radial-gradient(circle at 82% 18%, rgba(36,197,180,.24), transparent 31%), linear-gradient(135deg, var(--navy-950), #0b2849 68%, #0a3757);
}
.hero::after {
  content: "";
  position: absolute;
  right: -160px;
  bottom: -240px;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(255,255,255,.025), 0 0 0 140px rgba(255,255,255,.02);
  pointer-events: none;
}
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.03fr .97fr; align-items: center; gap: clamp(46px, 7vw, 90px); }
.hero h1, .hero h2, .hero h3 { color: var(--white); }
.hero-copy { display: grid; justify-items: start; gap: 24px; }
.hero-copy .lead { max-width: 660px; color: #c5d6e5; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 6px; }
.trust-row { display: flex; flex-wrap: wrap; gap: 12px 24px; padding-top: 10px; color: #d4e2ed; font-size: .84rem; font-weight: 700; }
.trust-row span { display: inline-flex; align-items: center; gap: 8px; }
.trust-row svg { width: 17px; height: 17px; color: var(--teal-500); }

.dashboard-card {
  position: relative;
  padding: 18px;
  background: rgba(255,255,255,.98);
  border: 1px solid rgba(255,255,255,.45);
  border-radius: var(--radius-lg);
  box-shadow: 0 38px 100px rgba(0,0,0,.28);
  transform: rotate(1deg);
}
.dashboard-card::before { content: ""; position: absolute; inset: -18px 24px 18px -18px; z-index: -1; border: 1px solid rgba(255,255,255,.14); border-radius: var(--radius-lg); }
.dash-top { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 9px 8px 18px; color: var(--navy-950); }
.dash-label { display: grid; gap: 3px; }
.dash-label strong { font-size: .96rem; }
.dash-label span { color: var(--muted); font-size: .72rem; }
.status { display: inline-flex; align-items: center; gap: 6px; padding: 7px 10px; color: #08766c; background: var(--teal-100); border-radius: 999px; font-size: .68rem; font-weight: 800; }
.status i { width: 7px; height: 7px; background: var(--teal-600); border-radius: 50%; }
.score-panel { display: grid; grid-template-columns: .82fr 1.18fr; gap: 12px; }
.score-box, .chart-box, .mini-metric { color: var(--navy-950); background: var(--surface); border: 1px solid #e5edf2; border-radius: 16px; }
.score-box { display: grid; place-items: center; gap: 2px; min-height: 170px; padding: 24px 14px; text-align: center; }
.score-box small { color: var(--muted); font-size: .72rem; font-weight: 700; }
.big-score { font-size: 3.1rem; font-weight: 800; letter-spacing: -.07em; line-height: 1; }
.stars { color: var(--warning); font-size: .82rem; letter-spacing: .08em; }
.trend { color: #08766c; font-size: .72rem; font-weight: 800; }
.chart-box { position: relative; min-height: 170px; padding: 17px; overflow: hidden; }
.chart-box span { color: var(--muted); font-size: .72rem; font-weight: 700; }
.chart { position: absolute; right: 15px; bottom: 18px; left: 15px; height: 105px; }
.chart-grid { position: absolute; inset: 0; background: repeating-linear-gradient(to bottom, transparent 0 25px, #dfe8ee 26px 27px); }
.chart-line { position: absolute; inset: 14px 0 10px; }
.chart-line svg { width: 100%; height: 100%; overflow: visible; }
.metric-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 12px; }
.mini-metric { padding: 13px; }
.mini-metric small { display: block; color: var(--muted); font-size: .62rem; font-weight: 700; line-height: 1.3; }
.mini-metric strong { display: block; margin-top: 4px; font-size: 1.03rem; }

.proof-strip { background: var(--navy-900); border-top: 1px solid rgba(255,255,255,.1); }
.proof-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.proof-item { display: flex; min-height: 126px; align-items: center; gap: 15px; padding: 24px 34px; color: var(--white); border-right: 1px solid rgba(255,255,255,.11); }
.proof-item:last-child { border-right: 0; }
.proof-icon { display: grid; flex: 0 0 auto; width: 42px; height: 42px; place-items: center; color: var(--teal-500); background: rgba(36,197,180,.11); border-radius: 12px; }
.proof-icon svg { width: 22px; height: 22px; }
.proof-item strong { display: block; font-size: .94rem; line-height: 1.3; }
.proof-item span { display: block; margin-top: 4px; color: #a9bfd1; font-size: .76rem; line-height: 1.4; }

.section { padding: clamp(78px, 10vw, 126px) 0; }
.section.soft { background: var(--surface); }
.section.navy { color: var(--white); background: var(--navy-950); }
.section.navy h2, .section.navy h3 { color: var(--white); }
.section.navy .lead { color: #bfd0de; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: clamp(48px, 8vw, 100px); }
.copy-stack { display: grid; justify-items: start; gap: 22px; }
.copy-stack ul { margin: 0; padding: 0; list-style: none; }
.check-list { display: grid; gap: 13px; }
.check-list li { display: flex; gap: 11px; align-items: flex-start; color: var(--muted); }
.check-list svg { flex: 0 0 auto; width: 20px; height: 20px; margin-top: 3px; color: var(--teal-600); }

.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feature-card {
  position: relative;
  min-height: 100%;
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.feature-card .number { display: block; margin-bottom: 42px; color: var(--teal-600); font-size: .78rem; font-weight: 800; letter-spacing: .12em; }
.feature-card h3 { margin-bottom: 13px; }
.feature-card p { color: var(--muted); font-size: .94rem; }
.icon-card .card-icon { display: grid; width: 52px; height: 52px; place-items: center; margin-bottom: 30px; color: var(--teal-600); background: var(--teal-100); border-radius: 15px; }
.icon-card .card-icon svg { width: 26px; height: 26px; }

.journey { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.journey::before { content: ""; position: absolute; top: 29px; right: 10%; left: 10%; height: 1px; background: #bfd5df; }
.journey-step { position: relative; z-index: 1; display: grid; justify-items: center; gap: 16px; text-align: center; }
.journey-number { display: grid; width: 58px; height: 58px; place-items: center; color: var(--white); background: var(--navy-950); border: 7px solid var(--surface); border-radius: 50%; font-size: .84rem; font-weight: 800; }
.journey-step p { color: var(--muted); font-size: .87rem; }

.quote-panel { position: relative; overflow: hidden; padding: clamp(38px, 6vw, 72px); color: var(--white); background: linear-gradient(135deg, #0d3457, var(--navy-950)); border-radius: var(--radius-lg); }
.quote-panel::after { content: "Q"; position: absolute; right: 40px; bottom: -80px; color: rgba(255,255,255,.045); font-family: Georgia, serif; font-size: 17rem; line-height: 1; }
.quote-panel h2, .quote-panel h3 { position: relative; z-index: 1; color: var(--white); }
.quote-panel p { position: relative; z-index: 1; max-width: 760px; margin-top: 18px; color: #c5d6e5; }
.quote-panel .hero-actions { position: relative; z-index: 1; margin-top: 30px; }

.page-hero { padding: clamp(74px, 9vw, 118px) 0 70px; color: var(--white); background: radial-gradient(circle at 84% 20%, rgba(36,197,180,.22), transparent 32%), var(--navy-950); }
.page-hero h1 { max-width: 890px; color: var(--white); font-size: clamp(2.7rem, 5.8vw, 5rem); }
.page-hero .lead { margin-top: 22px; color: #c5d6e5; }
.page-hero .hero-actions { margin-top: 31px; }
.breadcrumb { display: flex; gap: 9px; align-items: center; margin-bottom: 24px; color: #8fc7c1; font-size: .78rem; font-weight: 700; }
.breadcrumb a { color: #cbdce8; text-decoration: none; }

.info-panel { padding: 34px; background: var(--blue-100); border: 1px solid #cee2ef; border-radius: var(--radius); }
.info-panel h3 { margin-bottom: 12px; }
.info-panel p { color: var(--muted); }
.info-panel a { color: var(--navy-700); font-weight: 800; }

.measure-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.measure-card { padding: 28px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); }
.measure-card.wide { grid-column: 1 / -1; }
.measure-card .tag { display: inline-flex; margin-bottom: 15px; padding: 6px 10px; color: #08766c; background: var(--teal-100); border-radius: 999px; font-size: .7rem; font-weight: 800; text-transform: uppercase; }
.measure-card p { margin-top: 11px; color: var(--muted); font-size: .93rem; }

.question-nav { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 38px; }
.question-nav a { padding: 9px 14px; color: var(--navy-800); background: var(--surface); border: 1px solid var(--line); border-radius: 999px; font-size: .78rem; font-weight: 800; text-decoration: none; }
.question-nav a:hover { color: var(--navy-950); border-color: var(--teal-600); }
.question-set { padding: 34px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); scroll-margin-top: 120px; }
.question-set + .question-set { margin-top: 18px; }
.question-set h2 { font-size: clamp(1.5rem, 3vw, 2rem); }
.question-set ol { display: grid; gap: 12px; margin: 24px 0 0; padding-left: 24px; }
.question-set li { padding-left: 6px; color: var(--muted); }
.scale { display: grid; grid-template-columns: repeat(5, 1fr); gap: 9px; margin-top: 30px; }
.scale span { padding: 12px 8px; color: var(--navy-800); background: var(--surface); border-radius: 10px; font-size: .72rem; font-weight: 800; text-align: center; }

.comparison { width: 100%; border-collapse: collapse; overflow: hidden; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.comparison th, .comparison td { padding: 18px 22px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.comparison th { color: var(--navy-950); background: var(--surface); font-size: .84rem; }
.comparison td { color: var(--muted); font-size: .9rem; }
.comparison tr:last-child td { border-bottom: 0; }
.comparison .yes { color: #08766c; font-weight: 800; }

.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 23px 0; color: var(--navy-950); cursor: pointer; font-weight: 800; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; flex: 0 0 auto; color: var(--teal-600); font-size: 1.5rem; font-weight: 400; }
.faq details[open] summary::after { content: "−"; }
.faq details p { max-width: 850px; padding: 0 0 25px; color: var(--muted); }

.contact-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: 32px; }
.schedule-option { padding: 30px; margin-bottom: 26px; color: var(--white); background: #0b1f1c; border-radius: 18px; }
.schedule-option h2 { margin: 8px 0 10px; color: var(--white); font-size: clamp(1.75rem, 3vw, 2.45rem); }
.schedule-option p:not(.eyebrow) { max-width: 600px; margin-bottom: 22px; color: #c5d2cd; }
.form-divider { display: flex; align-items: center; gap: 14px; margin: 0 0 26px; color: #68746f; font-size: .75rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.form-divider::before, .form-divider::after { content: ""; flex: 1; height: 1px; background: #dbe2de; }
.contact-panel { padding: 34px; color: var(--white); background: var(--navy-950); border-radius: var(--radius-lg); }
.contact-panel h2, .contact-panel h3 { color: var(--white); }
.contact-panel > p { margin-top: 18px; color: #c3d4e1; }
.contact-points { display: grid; gap: 16px; margin: 32px 0 0; padding: 0; list-style: none; }
.contact-points li { display: flex; gap: 12px; align-items: flex-start; color: #dce8f0; font-size: .92rem; }
.contact-points svg { flex: 0 0 auto; width: 20px; height: 20px; margin-top: 3px; color: var(--teal-500); }
.form-card { padding: clamp(28px, 5vw, 48px); background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: grid; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { color: var(--navy-950); font-size: .78rem; font-weight: 800; }
.field input, .field select, .field textarea { width: 100%; padding: 13px 14px; color: var(--ink); background: var(--surface); border: 1px solid #cddae3; border-radius: 10px; }
.field textarea { min-height: 120px; resize: vertical; }
.form-foot { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; margin-top: 22px; }
.privacy-note { max-width: 460px; color: var(--muted); font-size: .72rem; }

.site-footer { color: var(--white); background: #04101f; }
.footer-main { display: grid; grid-template-columns: 1.25fr .75fr .75fr; gap: 60px; padding: 70px 0 52px; }
.footer-brand img { width: 292px; }
.footer-brand p { max-width: 480px; margin-top: 20px; color: #9eb3c5; font-size: .9rem; }
.footer-col h3 { color: var(--white); font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; }
.footer-links { display: grid; gap: 10px; margin: 18px 0 0; padding: 0; list-style: none; }
.footer-links a { color: #9eb3c5; font-size: .86rem; text-decoration: none; }
.footer-links a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; gap: 24px; padding: 22px 0; color: #7890a4; border-top: 1px solid rgba(255,255,255,.09); font-size: .73rem; }
.footer-bottom a { color: #9eb3c5; }

.floating-cta { display: none; }

/* Original, code-native recreations of the dashboard, survey and reporting
   graphics used across the former NursingHomeSurveys.com pages. */
.visual-shell {
  position: relative;
  overflow: hidden;
  padding: clamp(26px, 5vw, 46px);
  background: linear-gradient(145deg, #09213d, #0c3855);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.visual-shell::before { content: ""; position: absolute; inset: -40% auto auto 58%; width: 340px; height: 340px; background: rgba(36,197,180,.15); border-radius: 50%; filter: blur(8px); }
.survey-interface { position: relative; z-index: 1; max-width: 480px; margin-inline: auto; padding: 22px; color: var(--ink); background: var(--white); border: 1px solid rgba(255,255,255,.65); border-radius: 24px; box-shadow: 0 24px 60px rgba(0,0,0,.24); }
.survey-top { display: flex; justify-content: space-between; gap: 16px; align-items: center; padding-bottom: 16px; border-bottom: 1px solid var(--line); }
.survey-top strong { color: var(--navy-950); font-size: .9rem; }
.survey-top span { color: var(--teal-600); font-size: .7rem; font-weight: 800; }
.survey-progress { height: 7px; margin: 18px 0 22px; overflow: hidden; background: #e6eef3; border-radius: 999px; }
.survey-progress i { display: block; width: 72%; height: 100%; background: linear-gradient(90deg, var(--teal-600), var(--teal-500)); border-radius: inherit; }
.survey-question { display: grid; gap: 11px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.survey-question:last-child { border-bottom: 0; }
.survey-question small { color: var(--muted); font-weight: 700; line-height: 1.45; }
.survey-stars { display: flex; gap: 7px; color: #d8e0e6; font-size: 1.35rem; line-height: 1; }
.survey-stars .active { color: var(--warning); }
.survey-footer { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-top: 18px; color: var(--muted); font-size: .68rem; }
.survey-footer b { color: var(--teal-600); }

.analytics-board { position: relative; z-index: 1; display: grid; gap: 14px; padding: 18px; color: var(--ink); background: rgba(255,255,255,.97); border-radius: 24px; box-shadow: 0 24px 60px rgba(0,0,0,.24); }
.analytics-head { display: flex; justify-content: space-between; align-items: center; gap: 14px; }
.analytics-head strong { color: var(--navy-950); font-size: .94rem; }
.analytics-head span { color: var(--muted); font-size: .69rem; }
.analytics-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 12px; }
.analytics-panel { min-height: 180px; padding: 16px; background: var(--surface); border: 1px solid var(--line); border-radius: 15px; }
.analytics-panel small { color: var(--muted); font-weight: 700; }
.donut-wrap { display: grid; min-height: 135px; place-items: center; }
.donut { display: grid; width: 104px; height: 104px; place-items: center; background: conic-gradient(var(--teal-600) 0 78%, #dfe8ee 78% 100%); border-radius: 50%; }
.donut::after { content: "78%"; display: grid; width: 70px; height: 70px; place-items: center; color: var(--navy-950); background: var(--surface); border-radius: 50%; font-size: 1.12rem; font-weight: 850; }
.bar-chart { display: flex; height: 134px; align-items: end; gap: 10px; padding-top: 20px; border-bottom: 1px solid #ccd9e2; }
.bar-chart i { flex: 1; min-width: 12px; background: linear-gradient(180deg, var(--teal-500), var(--teal-600)); border-radius: 6px 6px 0 0; }
.bar-chart i:nth-child(1) { height: 48%; }.bar-chart i:nth-child(2) { height: 63%; }.bar-chart i:nth-child(3) { height: 57%; }.bar-chart i:nth-child(4) { height: 78%; }.bar-chart i:nth-child(5) { height: 91%; }
.analytics-foot { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.analytics-stat { padding: 11px; background: #edf6f8; border-radius: 11px; }
.analytics-stat small { display: block; color: var(--muted); font-size: .62rem; }
.analytics-stat strong { color: var(--navy-950); font-size: .96rem; }

.insight-graphic { display: grid; gap: 14px; padding: 24px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); }
.insight-header { display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.ai-badge { display: inline-flex; align-items: center; gap: 7px; padding: 7px 10px; color: #08766c; background: var(--teal-100); border-radius: 999px; font-size: .68rem; font-weight: 850; }
.insight-item { display: grid; grid-template-columns: auto 1fr auto; gap: 13px; align-items: center; padding: 14px; background: var(--surface); border: 1px solid var(--line); border-radius: 13px; }
.insight-rank { display: grid; width: 34px; height: 34px; place-items: center; color: var(--white); background: var(--navy-800); border-radius: 10px; font-size: .72rem; font-weight: 850; }
.insight-item strong { display: block; color: var(--navy-950); font-size: .86rem; }
.insight-item small { display: block; color: var(--muted); font-size: .68rem; }
.impact { color: var(--teal-600); font-size: .72rem; font-weight: 850; }

.metric-visual { display: grid; grid-template-columns: .8fr 1.2fr; gap: 16px; padding: 24px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); }
.metric-ring { display: grid; place-items: center; min-height: 240px; color: var(--white); background: var(--navy-950); border-radius: 20px; text-align: center; }
.metric-ring strong { display: block; font-size: 4.6rem; letter-spacing: -.08em; line-height: 1; }
.metric-ring span { display: block; color: #9ee6df; font-size: .72rem; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.metric-steps { display: grid; gap: 10px; }
.metric-step { display: grid; grid-template-columns: auto 1fr; gap: 12px; align-items: center; padding: 14px; background: var(--surface); border: 1px solid var(--line); border-radius: 13px; }
.metric-step b { display: grid; width: 36px; height: 36px; place-items: center; color: var(--navy-950); background: var(--teal-100); border-radius: 50%; font-size: .76rem; }
.metric-step strong { display: block; color: var(--navy-950); font-size: .83rem; }
.metric-step small { display: block; color: var(--muted); font-size: .67rem; line-height: 1.4; }

.channel-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.channel-card { padding: 23px 18px; text-align: center; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); }
.channel-card svg { width: 32px; height: 32px; margin: 0 auto 14px; color: var(--teal-600); }
.channel-card strong { display: block; color: var(--navy-950); }
.channel-card span { display: block; margin-top: 5px; color: var(--muted); font-size: .76rem; }

.partner-cloud { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.partner-chip { display: grid; min-height: 82px; place-items: center; padding: 14px; color: #42566a; background: var(--white); border: 1px solid var(--line); border-radius: 14px; font-size: .75rem; font-weight: 800; line-height: 1.3; text-align: center; }

.fact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.fact-card { padding: 26px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); }
.fact-card strong { display: block; margin-bottom: 7px; color: var(--navy-950); font-size: clamp(1.8rem, 3vw, 2.8rem); letter-spacing: -.05em; }
.fact-card span { color: var(--muted); font-size: .87rem; }

.legal-copy { width: min(calc(100% - 40px), 900px); margin-inline: auto; }
.legal-copy h2 { margin: 50px 0 14px; font-size: 1.55rem; }
.legal-copy h3 { margin: 34px 0 10px; font-size: 1.15rem; letter-spacing: -.015em; }
.legal-copy p, .legal-copy li { color: var(--muted); font-size: .94rem; }
.legal-copy p + p { margin-top: 14px; }
.legal-copy ul { display: grid; gap: 8px; padding-left: 22px; }

.article-meta { margin-top: 18px; color: #9eb3c5; font-size: .82rem; font-weight: 700; }
.article-body { width: min(calc(100% - 40px), 800px); margin-inline: auto; }
.article-body h2 { margin: 48px 0 14px; font-size: clamp(1.55rem, 3vw, 2.15rem); }
.article-body p, .article-body li { color: var(--muted); }
.article-body p + p { margin-top: 16px; }
.article-body ul, .article-body ol { display: grid; gap: 10px; }
.article-card { display: grid; gap: 14px; padding: 28px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.article-card time { color: var(--teal-600); font-size: .72rem; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.article-card p { color: var(--muted); font-size: .9rem; }
.article-card a { color: var(--navy-700); font-weight: 850; text-decoration: none; }

.source-note { margin-top: 24px; padding: 16px 18px; color: var(--muted); background: var(--surface); border-left: 4px solid var(--teal-500); border-radius: 0 10px 10px 0; font-size: .76rem; }

@media (max-width: 1040px) {
  .brand img { width: 225px; }
  .site-nav { gap: 18px; }
  .site-nav > a:not(.button) { font-size: .84rem; }
  .header-cta { display: none; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 820px; }
  .dashboard-card { width: min(100%, 720px); transform: none; }
  .proof-item { padding-inline: 20px; }
  .card-grid { grid-template-columns: 1fr 1fr; }
  .card-grid .feature-card:last-child:nth-child(odd) { grid-column: 1 / -1; }
  .contact-grid { grid-template-columns: 1fr; }
  .channel-grid, .partner-cloud { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 820px) {
  body { padding-bottom: 72px; }
  .header-inner { min-height: 74px; }
  .brand img { width: 205px; }
  .menu-toggle { display: inline-flex; }
  .site-nav {
    position: fixed;
    inset: 74px 0 auto;
    display: grid;
    max-height: calc(100vh - 74px);
    gap: 0;
    padding: 16px 20px 28px;
    overflow-y: auto;
    background: var(--navy-950);
    border-top: 1px solid rgba(255,255,255,.1);
    transform: translateY(-120%);
    visibility: hidden;
    transition: transform .26s ease, visibility .26s ease;
  }
  .site-nav.open { transform: translateY(0); visibility: visible; }
  .site-nav > a:not(.button) { padding: 15px 4px; border-bottom: 1px solid rgba(255,255,255,.08); }
  .site-nav > a:not(.button)::after { display: none; }
  .site-nav .button { margin-top: 18px; }
  .two-col { grid-template-columns: 1fr; }
  .proof-grid { grid-template-columns: 1fr; padding-block: 10px; }
  .proof-item { min-height: 94px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.1); }
  .proof-item:last-child { border-bottom: 0; }
  .journey { grid-template-columns: 1fr 1fr; row-gap: 34px; }
  .journey::before { display: none; }
  .measure-grid { grid-template-columns: 1fr; }
  .measure-card.wide { grid-column: auto; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .metric-visual { grid-template-columns: 1fr; }
  .fact-grid { grid-template-columns: 1fr; }
  .floating-cta { position: fixed; right: 0; bottom: 0; left: 0; z-index: 90; display: block; padding: 10px 16px; background: rgba(6,20,38,.96); border-top: 1px solid rgba(255,255,255,.13); backdrop-filter: blur(12px); }
  .floating-cta .button { width: 100%; }
}

@media (max-width: 600px) {
  .container, .narrow { width: min(calc(100% - 28px), var(--content)); }
  body { font-size: 16px; }
  h1 { font-size: clamp(2.55rem, 13vw, 4rem); }
  .hero { padding-top: 62px; }
  .hero-actions { width: 100%; }
  .hero-actions .button { width: 100%; }
  .trust-row { display: grid; gap: 10px; }
  .dashboard-card { padding: 11px; border-radius: 20px; }
  .score-panel { grid-template-columns: 1fr; }
  .score-box { min-height: 135px; }
  .chart-box { min-height: 150px; }
  .metric-row { grid-template-columns: 1fr 1fr; }
  .metric-row .mini-metric:last-child { grid-column: 1 / -1; }
  .card-grid { grid-template-columns: 1fr; }
  .card-grid .feature-card:last-child:nth-child(odd) { grid-column: auto; }
  .feature-card { padding: 26px; }
  .journey { grid-template-columns: 1fr; }
  .journey-step { justify-items: start; grid-template-columns: auto 1fr; text-align: left; }
  .journey-step p { grid-column: 2; }
  .scale { grid-template-columns: 1fr; }
  .scale span { text-align: left; }
  .comparison { display: block; overflow-x: auto; white-space: nowrap; }
  .analytics-grid { grid-template-columns: 1fr; }
  .analytics-foot { grid-template-columns: 1fr 1fr; }
  .analytics-foot .analytics-stat:last-child { grid-column: 1 / -1; }
  .channel-grid, .partner-cloud { grid-template-columns: 1fr; }
  .insight-item { grid-template-columns: auto 1fr; }
  .insight-item .impact { grid-column: 2; }
  .form-grid { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
  .form-foot .button { width: 100%; }
  .footer-main { grid-template-columns: 1fr; gap: 38px; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { display: grid; }
}

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

/* Vectura-inspired editorial redesign: quiet neutrals, cinematic media,
   large type, rounded product surfaces and high-contrast calls to action. */
:root {
  --navy-950: #071219;
  --navy-900: #0d1b22;
  --navy-800: #17313a;
  --navy-700: #24505b;
  --teal-600: #087f75;
  --teal-500: #30b7a5;
  --teal-100: #dff3ed;
  --blue-100: #e8f0ef;
  --ink: #101716;
  --muted: #5d6663;
  --line: #d4d9d4;
  --surface: #eef0eb;
  --white: #ffffff;
  --acid: #d7ff63;
  --warning: #e5b544;
  --radius-sm: 14px;
  --radius: 24px;
  --radius-lg: 38px;
  --shadow-sm: 0 18px 46px rgba(7, 18, 25, .08);
  --shadow: 0 36px 90px rgba(7, 18, 25, .18);
  --content: 1240px;
}

body { background: #f7f7f3; font-family: "Geist", "Aptos", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; }
h1, h2, h3, h4 { font-weight: 440; letter-spacing: -.045em; line-height: 1.02; }
h1 { font-size: clamp(3.25rem, 7.5vw, 6.8rem); }
h2 { font-size: clamp(2.45rem, 5.3vw, 4.9rem); }
h3 { font-size: clamp(1.35rem, 2.1vw, 1.85rem); }
.lead { color: #626c68; line-height: 1.58; }
.eyebrow { color: var(--teal-600); letter-spacing: .12em; }
.eyebrow::before { width: 34px; height: 1px; }

.site-header { background: rgba(7, 18, 25, .92); border-bottom-color: rgba(255,255,255,.12); }
.header-inner { min-height: 94px; }
.brand img { width: 276px; }
.site-nav > a:not(.button) { padding-block: 35px; font-weight: 600; }
.site-nav > a:not(.button)::after { bottom: 24px; background: var(--acid); }

.button { min-height: 54px; padding: 14px 25px; color: #101716; background: var(--acid); border-color: var(--acid); border-radius: 999px; box-shadow: none; font-size: .88rem; font-weight: 760; }
.button:hover { color: #101716; background: #e4ff8a; border-color: #e4ff8a; box-shadow: none; transform: translateY(-2px); }
.button.dark { color: #fff; background: var(--ink); border-color: var(--ink); }
.button.dark:hover { color: #fff; background: #24312f; border-color: #24312f; }
.button.secondary { color: #fff; background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.55); }
.button.secondary:hover { color: #101716; background: #fff; border-color: #fff; }
.button.ghost { color: var(--ink); background: transparent; border-color: #9aa39f; }
.button.ghost:hover { color: var(--ink); background: #fff; border-color: var(--ink); }

.section { padding: clamp(90px, 11vw, 150px) 0; }
.section.soft { background: var(--surface); }
.section.navy { background: var(--ink); }
.section-heading { gap: 22px; margin-bottom: 58px; }
.two-col { gap: clamp(52px, 8vw, 112px); }
.copy-stack { gap: 26px; }

.editorial-hero {
  position: relative;
  display: grid;
  min-height: min(920px, calc(100svh - 20px));
  align-items: end;
  overflow: hidden;
  padding: clamp(110px, 13vw, 170px) 0 76px;
  background: var(--ink);
}
.editorial-hero::after { display: none; }
.hero-media, .hero-shade { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: 56% center; }
.hero-shade { background: linear-gradient(90deg, rgba(6,14,19,.96) 0%, rgba(6,14,19,.84) 35%, rgba(6,14,19,.35) 69%, rgba(6,14,19,.16) 100%), linear-gradient(0deg, rgba(6,14,19,.72), transparent 52%); }
.editorial-hero .hero-layout { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, 1.12fr) minmax(360px, .88fr); align-items: end; gap: clamp(42px, 6vw, 86px); }
.editorial-hero .hero-copy { max-width: 780px; gap: 27px; }
.editorial-hero h1 { color: #fff; font-weight: 380; }
.editorial-hero .lead { max-width: 690px; color: rgba(255,255,255,.78); font-size: clamp(1.08rem, 1.8vw, 1.34rem); }
.hero-kicker { display: inline-flex; align-items: center; gap: 10px; color: #fff; font-size: .8rem; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; }
.hero-kicker i { width: 9px; height: 9px; background: var(--acid); border-radius: 50%; box-shadow: 0 0 0 7px rgba(215,255,99,.12); }
.editorial-hero .trust-row { color: rgba(255,255,255,.78); }
.editorial-hero .trust-row span::before { content: "✓"; display: grid; width: 19px; height: 19px; place-items: center; color: var(--ink); background: var(--acid); border-radius: 50%; font-size: .68rem; font-weight: 900; }

.hero-product { align-self: end; padding: 13px; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.28); border-radius: 29px; box-shadow: 0 34px 90px rgba(0,0,0,.35); backdrop-filter: blur(18px); transform: translateY(22px); }
.hero-product .analytics-board { padding: 17px; border-radius: 20px; box-shadow: none; }
.hero-product .analytics-panel { min-height: 155px; }
.hero-product .donut-wrap { min-height: 112px; }
.hero-product .donut { width: 88px; height: 88px; }
.hero-product .donut::after { width: 60px; height: 60px; }
.hero-product .bar-chart { height: 112px; }

.proof-strip { background: #fff; border: 0; }
.proof-grid { gap: 0; padding: 18px 0; }
.proof-item { min-height: 118px; color: var(--ink); border-right: 1px solid var(--line); }
.proof-item strong { font-size: 1.02rem; }
.proof-item span { color: var(--muted); }

.editorial-statement { background: #fff; }
.statement-grid { display: grid; grid-template-columns: .65fr 1.35fr; gap: clamp(48px, 8vw, 120px); align-items: start; }
.statement-label { display: flex; align-items: center; gap: 12px; color: var(--muted); font-size: .78rem; font-weight: 760; letter-spacing: .12em; text-transform: uppercase; }
.statement-label::before { content: ""; width: 42px; height: 1px; background: currentColor; }
.statement-copy { display: grid; gap: 34px; }
.statement-copy h2 { max-width: 880px; font-size: clamp(2.7rem, 5.2vw, 5rem); }
.statement-copy p { max-width: 690px; color: var(--muted); font-size: 1.06rem; }

.stat-band { padding: 34px 0 0; }
.stat-band-grid { display: grid; grid-template-columns: repeat(3, 1fr); overflow: hidden; background: var(--ink); border: 1px solid rgba(255,255,255,.08); border-radius: var(--radius-lg); box-shadow: 0 24px 70px rgba(7,24,21,.14); }
.stat-tile { display: flex; flex-direction: column; justify-content: space-between; gap: 34px; min-height: 260px; padding: clamp(34px, 3.2vw, 50px); color: #fff; border-right: 1px solid rgba(255,255,255,.16); }
.stat-tile:last-child { border-right: 0; }
.stat-tile strong { display: inline-flex; align-items: baseline; flex-wrap: nowrap; margin: 0; color: var(--acid); font-size: clamp(4.4rem, 7vw, 6.6rem); font-variant-numeric: tabular-nums; font-weight: 360; letter-spacing: -.07em; line-height: .88; white-space: nowrap; }
.stat-tile strong span { display: inline; max-width: none; color: inherit; font: inherit; letter-spacing: inherit; line-height: inherit; }
.stat-tile > span { display: block; max-width: 330px; color: rgba(255,255,255,.88); font-size: clamp(.96rem, 1.15vw, 1.08rem); line-height: 1.5; }

.partner-cloud { gap: 10px; }
.partner-chip { min-height: 90px; color: #39433f; background: rgba(255,255,255,.68); border-color: #cbd1cc; border-radius: 999px; font-weight: 650; }

.showcase { background: #fff; }
.showcase-stack { display: grid; gap: clamp(80px, 10vw, 140px); }
.showcase-row { display: grid; grid-template-columns: minmax(0, 1.12fr) minmax(320px, .88fr); align-items: center; gap: clamp(48px, 8vw, 108px); }
.showcase-row.reverse { grid-template-columns: minmax(320px, .88fr) minmax(0, 1.12fr); }
.showcase-row.reverse .showcase-copy { order: 1; }
.showcase-row.reverse .showcase-media { order: 2; }
.showcase-copy { display: grid; justify-items: start; gap: 24px; }
.showcase-copy .index { color: var(--teal-600); font-size: .78rem; font-weight: 800; letter-spacing: .12em; }
.showcase-copy p { color: var(--muted); }
.showcase-media { position: relative; min-width: 0; }
.media-card { overflow: hidden; background: var(--surface); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); }
.media-card > img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; object-position: center; }
.media-card.team > img { object-position: center 44%; }
.media-card.resident > img { aspect-ratio: 5 / 4; object-position: center; }
.media-dashboard { padding: clamp(24px, 4vw, 44px); background: linear-gradient(145deg, #e6ebe5, #f7f8f4); }
.media-dashboard .analytics-board { box-shadow: 0 24px 65px rgba(7,18,25,.14); }
.media-float { position: absolute; right: -24px; bottom: -34px; width: min(72%, 420px); }
.media-float .insight-graphic { padding: 18px; box-shadow: 0 28px 75px rgba(7,18,25,.24); }
.media-float .insight-item { padding: 11px; }

.feature-card, .measure-card, .article-card, .fact-card, .channel-card, .form-card { background: #fff; border-color: #d3d8d3; border-radius: var(--radius); box-shadow: none; }
.feature-card { min-height: 340px; padding: 34px; }
.feature-card:hover { border-color: #8c9993; box-shadow: none; transform: translateY(-4px); }
.feature-card .number { color: var(--teal-600); }
.feature-card h3 { font-size: 1.55rem; }

.human-story { background: var(--surface); }
.human-story-grid { display: grid; grid-template-columns: 1.05fr .95fr; align-items: stretch; gap: 20px; }
.human-story-copy { display: grid; align-content: space-between; gap: 54px; padding: clamp(38px, 6vw, 72px); color: #fff; background: var(--ink); border-radius: var(--radius-lg); }
.human-story-copy h2 { color: #fff; }
.human-story-copy p { max-width: 610px; color: rgba(255,255,255,.7); }
.story-tag { display: inline-flex; width: fit-content; padding: 8px 13px; color: var(--ink); background: var(--acid); border-radius: 999px; font-size: .72rem; font-weight: 800; }
.human-story .media-card { min-height: 570px; }
.human-story .media-card img { height: 100%; min-height: 570px; aspect-ratio: auto; }

.section.navy .channel-card { color: #fff; background: #182526; border-color: rgba(255,255,255,.14); }
.section.navy .channel-card strong { color: #fff; }
.section.navy .channel-card span { color: rgba(255,255,255,.62); }
.section.navy .channel-card::before { content: "↗"; display: grid; width: 34px; height: 34px; margin: 0 auto 16px; place-items: center; color: var(--ink); background: var(--acid); border-radius: 50%; font-weight: 900; }

.quote-panel { padding: clamp(48px, 8vw, 90px); background: var(--ink); border-radius: var(--radius-lg); }
.quote-panel::after { color: rgba(215,255,99,.06); }
.quote-panel h2 { max-width: 900px; font-size: clamp(2.7rem, 5.4vw, 5rem); font-weight: 400; }

.page-hero { position: relative; overflow: hidden; padding: clamp(96px, 12vw, 160px) 0 88px; background: radial-gradient(circle at 76% 28%, rgba(48,183,165,.24), transparent 28%), linear-gradient(145deg, #071219, #12262c); }
.page-hero::after { content: ""; position: absolute; right: -8vw; bottom: -22vw; width: 50vw; height: 50vw; border: 1px solid rgba(255,255,255,.09); border-radius: 50%; box-shadow: 0 0 0 7vw rgba(255,255,255,.018), 0 0 0 14vw rgba(255,255,255,.018); pointer-events: none; }
.page-hero > * { position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(3.1rem, 7vw, 6.5rem); font-weight: 390; }
.breadcrumb { color: rgba(255,255,255,.62); }

.contact-panel { background: var(--ink); }
.site-footer { background: #07100f; }
.footer-main { padding-top: 88px; }
.footer-brand img { width: min(100%, 330px); }
.faq details { background: #fff; border-color: var(--line); border-radius: 18px; }
.faq summary { font-size: 1.05rem; }

@media (max-width: 1040px) {
  .editorial-hero { min-height: auto; }
  .editorial-hero .hero-layout { grid-template-columns: 1fr; }
  .editorial-hero .hero-copy { max-width: 800px; }
  .hero-product { width: min(100%, 650px); transform: none; }
  .statement-grid { grid-template-columns: 1fr; gap: 30px; }
  .showcase-row, .showcase-row.reverse { grid-template-columns: 1fr; }
  .showcase-row.reverse .showcase-copy, .showcase-row.reverse .showcase-media { order: initial; }
  .showcase-copy { max-width: 760px; }
  .human-story-grid { grid-template-columns: 1fr; }
  .human-story .media-card, .human-story .media-card img { min-height: 470px; }
}

@media (max-width: 820px) {
  .header-inner { min-height: 78px; }
  .site-nav { inset: 78px 0 auto; background: rgba(7,18,25,.98); }
  .editorial-hero { padding: 92px 0 54px; }
  .hero-media img { object-position: 62% center; }
  .hero-shade { background: linear-gradient(90deg, rgba(6,14,19,.96), rgba(6,14,19,.68)), linear-gradient(0deg, rgba(6,14,19,.78), transparent 62%); }
  .stat-band-grid { grid-template-columns: 1fr; }
  .stat-tile { min-height: 210px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.16); }
  .stat-tile:last-child { border-bottom: 0; }
  .media-float { position: relative; right: auto; bottom: auto; width: calc(100% - 28px); margin: -62px auto 0; }
}

@media (max-width: 600px) {
  h1 { font-size: clamp(3rem, 14vw, 4.6rem); }
  h2 { font-size: clamp(2.35rem, 11vw, 3.55rem); }
  .editorial-hero .hero-layout { gap: 40px; }
  .hero-product { padding: 8px; border-radius: 24px; }
  .hero-product .analytics-grid { grid-template-columns: 1fr 1fr; }
  .hero-product .analytics-panel { min-height: 130px; padding: 12px; }
  .hero-product .donut-wrap { min-height: 92px; }
  .hero-product .donut { width: 74px; height: 74px; }
  .hero-product .donut::after { width: 51px; height: 51px; font-size: .92rem; }
  .hero-product .bar-chart { height: 92px; gap: 6px; }
  .hero-product .analytics-foot { grid-template-columns: repeat(3, 1fr); }
  .hero-product .analytics-foot .analytics-stat:last-child { grid-column: auto; }
  .hero-product .analytics-stat { padding: 8px; }
  .hero-product .analytics-stat strong { font-size: .78rem; }
  .statement-copy h2 { font-size: clamp(2.45rem, 12vw, 3.8rem); }
  .stat-tile { min-height: 184px; padding: 30px; }
  .stat-tile strong { font-size: clamp(4rem, 21vw, 5.5rem); }
  .stat-tile > span { max-width: 100%; }
  .partner-chip { min-height: 76px; border-radius: 20px; }
  .human-story-copy { gap: 40px; }
  .human-story .media-card, .human-story .media-card img { min-height: 390px; }
  .showcase-stack { gap: 88px; }
}

@media (prefers-reduced-motion: reduce) {
  .feature-card:hover, .button:hover { transform: none; }
}

/* Vectura-inspired conversion redesign */
:root {
  --paper: #f4f3ef;
  --lime: #d7ff63;
  --charcoal: #0b1110;
  --hairline: #d9ddd8;
}

body { background: #fff; }
html, body { max-width: 100%; overflow-x: clip; }
p, li, a, h1, h2, h3 { overflow-wrap: anywhere; }
.site-header { background: rgba(255,255,255,.95); border-bottom-color: rgba(11,17,16,.12); }
.header-inner { min-height: 86px; }
.brand img { width: 285px; filter: none; }
.footer-brand img { filter: none; }

/* Keep the supplied white brand mark crisp and visible in every dark footer. */
.site-footer .footer-brand img {
  width: min(100%, 330px);
  height: auto;
  object-fit: contain;
  object-position: left center;
  opacity: 1;
  filter: none !important;
  mix-blend-mode: normal;
}
.site-nav { gap: 23px; }
.site-nav > a:not(.button), .nav-trigger { color: #111817; font-size: .86rem; font-weight: 650; }
.site-nav > a:not(.button) { padding-block: 31px; }
.site-nav > a:not(.button)::after { bottom: 21px; background: #111817; }
.site-nav > a:hover, .site-nav > a[aria-current="page"], .login-link { color: #111817 !important; }
.menu-toggle { color: #111817; background: #f4f4f1; border-color: #d9ddd8; }
.button, .button:hover { color: #fff; background: #0b1110; border-color: #0b1110; }
.button:hover { color: #fff; background: #23302d; border-color: #23302d; }
.hero .button:not(.secondary), .workflow-section .button, .closing-panel .button:not(.secondary) { color: #0b1110; background: #fff; border-color: #fff; }
.hero .button:not(.secondary):hover, .workflow-section .button:hover, .closing-panel .button:not(.secondary):hover { color: #0b1110; background: var(--lime); border-color: var(--lime); }
.page-hero .button:not(.secondary), .quote-panel .button:not(.secondary) { color: #0b1110; background: var(--lime); border-color: var(--lime); }

.nav-cluster { position: relative; align-self: stretch; display: flex; align-items: center; }
.nav-trigger { display: inline-flex; align-items: center; gap: 7px; height: 100%; padding: 0; background: transparent; border: 0; cursor: pointer; }
.nav-trigger span { display: inline-block; font-size: .72rem; transition: transform .2s ease; }
.nav-trigger[aria-expanded="true"] span { transform: rotate(180deg); }
.mega-panel { position: fixed; top: 86px; left: 50%; z-index: 120; display: grid; width: min(1040px, calc(100vw - 40px)); grid-template-columns: .72fr 1.28fr; gap: 44px; padding: 34px; color: var(--charcoal); background: rgba(255,255,255,.99); border: 1px solid var(--hairline); border-radius: 0 0 24px 24px; box-shadow: 0 30px 75px rgba(7,18,15,.14); opacity: 0; pointer-events: none; transform: translate(-50%, -10px); transition: opacity .18s ease, transform .18s ease; }
.nav-cluster.is-open .mega-panel { opacity: 1; pointer-events: auto; transform: translate(-50%, 0); }
.mega-panel.compact { width: min(900px, calc(100vw - 40px)); }
.mega-intro { display: grid; align-content: start; gap: 14px; padding: 26px; background: var(--paper); border-radius: 17px; }
.mega-intro strong { max-width: 290px; font-size: 1.5rem; font-weight: 520; letter-spacing: -.035em; line-height: 1.08; }
.mega-intro p, .mega-links small { color: #6b7470; font-size: .78rem; line-height: 1.55; }
.mega-intro a { margin-top: 7px; font-size: .82rem; font-weight: 750; text-decoration: none; }
.mega-eyebrow, .mega-label { color: #65706c; font-size: .66rem; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.mega-links { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.mega-links > div { display: grid; align-content: start; gap: 7px; }
.mega-links a { display: grid; gap: 3px; padding: 16px; text-decoration: none; border-radius: 12px; transition: background .18s ease; }
.mega-links a:hover { background: #f4f5f2; }
.mega-links strong { font-size: .9rem; font-weight: 720; }

.editorial-hero { min-height: calc(100svh - 12px); padding: 150px 0 84px; }
.editorial-hero .hero-layout { align-items: center; }
.editorial-hero h1 { font-size: clamp(4rem, 7.7vw, 7.25rem); font-weight: 310; line-height: .91; letter-spacing: -.064em; }
.editorial-hero .hero-copy { align-self: end; padding-bottom: 6px; }
.hero-shade { background: linear-gradient(90deg, rgba(5,11,10,.96) 0%, rgba(5,11,10,.82) 35%, rgba(5,11,10,.32) 70%, rgba(5,11,10,.1) 100%), linear-gradient(0deg, rgba(5,11,10,.74), transparent 58%); }
.hero-kicker i { background: var(--lime); }
.editorial-hero .trust-row span::before { color: var(--charcoal); background: var(--lime); }
.hero-product { padding: 10px; border-radius: 25px; transform: translateY(20px); }
.scroll-cue { position: absolute; right: 34px; bottom: 28px; z-index: 3; display: flex; align-items: center; gap: 9px; color: rgba(255,255,255,.74); font-size: .7rem; font-weight: 700; letter-spacing: .11em; text-decoration: none; text-transform: uppercase; }
.scroll-cue i { display: grid; width: 35px; height: 35px; place-items: center; border: 1px solid rgba(255,255,255,.38); border-radius: 50%; font-style: normal; }
.proof-dot { width: 8px; height: 8px; flex: 0 0 auto; background: #20a18d; border-radius: 50%; }

.partner-section { padding: 70px 0 90px; background: var(--paper); border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline); }
.partner-heading { margin-bottom: 30px; color: #727a76; font-size: .74rem; font-weight: 750; letter-spacing: .1em; text-align: center; text-transform: uppercase; }
.partner-marquee { overflow: hidden; mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); }
.partner-track { display: flex; width: max-content; align-items: center; gap: 13px; animation: partnerDrift 38s linear infinite alternate; }
.partner-track span { display: grid; min-height: 72px; place-items: center; padding: 14px 28px; color: #3c4541; background: rgba(255,255,255,.65); border: 1px solid #cbd0cb; border-radius: 999px; font-size: .8rem; font-weight: 680; white-space: nowrap; }
@keyframes partnerDrift { to { transform: translateX(-16%); } }

.platform-suite { background: #fff; }
.platform-heading { display: grid; grid-template-columns: 1.35fr .65fr; gap: 72px; align-items: end; margin-bottom: 58px; }
.platform-heading h2 { max-width: 850px; }
.platform-heading > p { max-width: 470px; color: var(--muted); }
.product-tabs { overflow: hidden; border: 1px solid var(--hairline); border-radius: 30px; }
.tab-list { display: grid; grid-template-columns: repeat(3, 1fr); background: #f0f1ed; border-bottom: 1px solid var(--hairline); }
.tab-list button { display: flex; gap: 13px; align-items: center; justify-content: center; min-height: 82px; padding: 20px; color: #747c79; background: transparent; border: 0; border-right: 1px solid var(--hairline); cursor: pointer; font-size: .84rem; font-weight: 680; }
.tab-list button:last-child { border-right: 0; }
.tab-list button span { font-size: .66rem; font-weight: 800; }
.tab-list button[aria-selected="true"] { color: #fff; background: var(--charcoal); }
.tab-panel { display: grid; min-height: 620px; grid-template-columns: .78fr 1.22fr; gap: 58px; padding: 54px; background: #fff; }
.tab-panel[hidden] { display: none; }
.tab-copy { display: grid; align-content: center; justify-items: start; gap: 23px; }
.tab-copy .index { color: #167f70; font-size: .68rem; font-weight: 800; letter-spacing: .12em; }
.tab-copy h3 { font-size: clamp(2.4rem, 4.6vw, 4.45rem); font-weight: 410; }
.tab-copy p { color: var(--muted); }
.text-link { display: inline-flex; align-items: center; gap: 10px; color: var(--charcoal); font-size: .83rem; font-weight: 760; text-decoration: none; }
.text-link span { transition: transform .2s ease; }
.text-link:hover span { transform: translateX(4px); }
.tab-visual { position: relative; min-height: 510px; overflow: hidden; background: var(--paper); border-radius: 23px; }
.photo-frame img { width: 100%; height: 100%; min-height: 510px; object-fit: cover; }
.photo-overlay-card, .ai-float { position: absolute; right: 24px; bottom: 24px; display: grid; gap: 4px; width: min(340px, calc(100% - 48px)); padding: 20px; background: rgba(255,255,255,.94); border: 1px solid rgba(255,255,255,.72); border-radius: 17px; box-shadow: 0 22px 50px rgba(8,17,15,.2); backdrop-filter: blur(12px); }
.photo-overlay-card small, .photo-overlay-card span, .ai-float small { color: #69736f; font-size: .7rem; }
.photo-overlay-card strong { font-size: .91rem; }
.ai-float span { color: #167f70; font-size: .67rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.ai-float em { justify-self: start; padding: 5px 9px; color: #1b6b5d; background: #dff6ef; border-radius: 999px; font-size: .66rem; font-style: normal; font-weight: 800; }
.dashboard-stage { display: grid; place-items: center; padding: clamp(25px, 5vw, 62px); background: linear-gradient(135deg, #dae2dc, #f3f4ef); }
.dashboard-stage .analytics-board { width: 100%; }

.management-section { overflow: hidden; background: var(--paper); }
.slider-heading { display: flex; align-items: end; justify-content: space-between; gap: 28px; margin-bottom: 48px; }
.slider-heading h2 { max-width: 880px; }
.slider-controls { display: flex; gap: 9px; }
.slider-controls button, .perspective-controls > button { display: grid; width: 50px; height: 50px; place-items: center; color: #101716; background: #fff; border: 1px solid #bcc4bf; border-radius: 50%; cursor: pointer; }
.image-card-track { display: grid; grid-template-columns: repeat(3, minmax(330px, 1fr)); gap: 18px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; }
.image-card-track::-webkit-scrollbar { display: none; }
.image-feature-card { display: grid; min-height: 640px; grid-template-rows: 1fr auto; overflow: hidden; color: var(--charcoal); background: #fff; border: 1px solid var(--hairline); border-radius: 24px; scroll-snap-align: start; }
.image-feature-card > img { width: 100%; height: 100%; min-height: 310px; object-fit: cover; }
.image-feature-card > div:last-child { position: relative; display: grid; gap: 13px; padding: 30px; }
.image-feature-card > div > span { color: #737b77; font-size: .68rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.image-feature-card h3 { font-size: 2rem; font-weight: 480; }
.image-feature-card p { color: #67716d; font-size: .9rem; }
.image-feature-card > div:last-child > a { position: absolute; right: 26px; top: 27px; display: grid; width: 39px; height: 39px; place-items: center; color: #fff; background: var(--charcoal); border-radius: 50%; text-decoration: none; }
.image-feature-card.dark-card { grid-template-rows: 1fr auto; color: #fff; background: #101b19; border-color: #101b19; }
.dark-card h3 { color: #fff; }
.dark-card p, .dark-card > div > span { color: rgba(255,255,255,.64); }
.dark-card > div:last-child > a { color: var(--charcoal); background: var(--lime); }
.card-dashboard { align-self: center; display: grid; gap: 14px; margin: 38px; padding: 25px; color: var(--charcoal); background: #edf1ec; border-radius: 18px; box-shadow: 0 25px 55px rgba(0,0,0,.26); }
.card-dashboard small { color: #6c7571; font-weight: 750; }
.card-dashboard div { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 14px; background: #fff; border-radius: 10px; font-size: .78rem; }
.card-dashboard b { padding: 4px 8px; color: #286b60; background: #def4ed; border-radius: 999px; font-size: .63rem; }

.workflow-section { color: #fff; background: #07100f; }
.workflow-shell { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(60px, 10vw, 140px); align-items: center; }
.workflow-copy { display: grid; justify-items: start; gap: 25px; }
.workflow-copy h2 { color: #fff; }
.workflow-copy > p:not(.eyebrow) { color: rgba(255,255,255,.66); }
.workflow-list { display: grid; gap: 0; margin: 0; padding: 0; list-style: none; border-top: 1px solid rgba(255,255,255,.18); }
.workflow-list li { display: grid; grid-template-columns: 60px 1fr; gap: 24px; align-items: center; padding: 26px 0; border-bottom: 1px solid rgba(255,255,255,.18); }
.workflow-list > li > span { color: var(--lime); font-size: .7rem; font-weight: 800; }
.workflow-list div { display: flex; align-items: baseline; justify-content: space-between; gap: 20px; }
.workflow-list strong { color: #fff; font-size: 1.55rem; font-weight: 480; }
.workflow-list small { color: rgba(255,255,255,.57); text-align: right; }

.perspective-section { background: #fff; }
.perspective-slider { overflow: hidden; background: var(--paper); border-radius: 30px; }
.perspective-slide { min-height: 480px; display: grid; align-content: center; gap: 45px; padding: clamp(46px, 8vw, 95px); }
.perspective-slide[hidden] { display: none; }
.perspective-index { color: #167f70; font-size: .7rem; font-weight: 800; letter-spacing: .12em; }
.perspective-slide blockquote { max-width: 960px; margin: 0; color: var(--charcoal); font-size: clamp(2.1rem, 4.3vw, 4.4rem); font-weight: 390; letter-spacing: -.05em; line-height: 1.04; }
.perspective-slide > div { display: grid; gap: 4px; }
.perspective-slide > div strong { font-size: .86rem; }
.perspective-slide > div span { color: #737c78; font-size: .76rem; }
.perspective-controls { display: flex; align-items: center; justify-content: space-between; padding: 0 26px 26px; }
.slider-dots { display: flex; gap: 8px; }
.slider-dots button { width: 26px; height: 4px; padding: 0; background: #b8bfbb; border: 0; border-radius: 999px; cursor: pointer; }
.slider-dots button.is-active { background: var(--charcoal); }

.oregon-story { background: var(--paper); }
.oregon-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(48px, 8vw, 100px); align-items: center; }
.oregon-image { position: relative; min-height: 650px; overflow: hidden; border-radius: 28px; }
.oregon-image img { width: 100%; height: 100%; min-height: 650px; object-fit: cover; }
.oregon-image > span { position: absolute; left: 24px; bottom: 24px; padding: 9px 14px; color: #fff; background: rgba(8,17,15,.78); border: 1px solid rgba(255,255,255,.2); border-radius: 999px; font-size: .68rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; backdrop-filter: blur(10px); }
.oregon-copy { display: grid; justify-items: start; gap: 25px; }
.oregon-copy h2 { font-size: clamp(2.5rem, 4.8vw, 4.55rem); }
.oregon-copy > p:not(.eyebrow) { color: var(--muted); }

.insights-section { background: #fff; }
.insight-card-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.editorial-card { overflow: hidden; background: #f5f5f1; border: 1px solid var(--hairline); border-radius: 24px; }
.editorial-card-image { display: block; overflow: hidden; }
.editorial-card-image img { width: 100%; aspect-ratio: 16/9; object-fit: cover; transition: transform .45s ease; }
.editorial-card:hover .editorial-card-image img { transform: scale(1.025); }
.editorial-card > div { display: grid; justify-items: start; gap: 16px; padding: 30px; }
.editorial-card > div > span { color: #167f70; font-size: .68rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.editorial-card h3 { font-size: clamp(1.55rem, 2.6vw, 2.4rem); font-weight: 460; }
.editorial-card h3 a { text-decoration: none; }
.editorial-card p { color: var(--muted); font-size: .9rem; }

.faq-section { background: var(--paper); }
.faq details { border-radius: 0; border-width: 1px 0 0; background: transparent; }
.faq details:last-child { border-bottom: 1px solid var(--hairline); }
.faq summary { padding: 26px 4px; }
.faq details p { padding: 0 4px 26px; }
.closing-section { background: #fff; }
.closing-panel { display: grid; grid-template-columns: 1.2fr .8fr; gap: 70px; align-items: end; padding: clamp(50px, 8vw, 96px); color: #fff; background: var(--charcoal); border-radius: 30px; }
.closing-panel > div:first-child > span { display: block; margin-bottom: 26px; color: var(--lime); font-size: .72rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.closing-panel h2 { color: #fff; font-size: clamp(3rem, 6vw, 5.8rem); font-weight: 370; }
.closing-panel p { color: rgba(255,255,255,.67); }

@media (max-width: 1040px) {
  .brand img { width: 250px; }
  .site-nav { gap: 16px; }
  .platform-heading { grid-template-columns: 1fr; gap: 22px; }
  .tab-panel { grid-template-columns: 1fr; }
  .workflow-shell, .oregon-grid { grid-template-columns: 1fr; }
  .workflow-copy { max-width: 760px; }
  .oregon-image, .oregon-image img { min-height: 520px; }
  .closing-panel { grid-template-columns: 1fr; }
}

@media (max-width: 820px) {
  .header-inner { min-height: 74px; }
  .site-nav { inset: 74px 0 auto; gap: 0; background: rgba(255,255,255,.99); border-top-color: var(--hairline); }
  .site-nav > a:not(.button), .nav-trigger { color: #111817; }
  .site-nav > a:not(.button) { border-bottom-color: var(--hairline); }
  .site-nav .button { color: #fff; background: var(--charcoal); border-color: var(--charcoal); }
  .nav-cluster { display: grid; align-self: auto; border-bottom: 1px solid var(--hairline); }
  .nav-trigger { justify-content: space-between; min-height: 56px; width: 100%; }
  .mega-panel, .mega-panel.compact { position: static; display: none; width: 100%; grid-template-columns: 1fr; gap: 14px; padding: 0 0 20px; border: 0; border-radius: 0; box-shadow: none; opacity: 1; transform: none; }
  .nav-cluster.is-open .mega-panel { display: grid; transform: none; }
  .mega-intro { padding: 20px; }
  .mega-links { grid-template-columns: 1fr; gap: 3px; }
  .mega-links a { padding: 12px 6px; }
  .mega-label { padding: 10px 6px 2px; }
  .editorial-hero { min-height: auto; padding: 112px 0 58px; }
  .editorial-hero .hero-layout { align-items: end; }
  .editorial-hero h1 { font-size: clamp(3.7rem, 13vw, 6rem); }
  .hero-product { width: 100%; }
  .scroll-cue { display: none; }
  .tab-list { grid-template-columns: 1fr; }
  .tab-list button { justify-content: flex-start; min-height: 66px; border-right: 0; border-bottom: 1px solid var(--hairline); }
  .tab-list button:last-child { border-bottom: 0; }
  .tab-panel { min-height: 0; gap: 38px; padding: 30px; }
  .tab-visual, .photo-frame img { min-height: 420px; }
  .image-card-track { grid-template-columns: repeat(3, minmax(82vw, 1fr)); }
  .slider-heading { align-items: flex-start; }
  .insight-card-grid { grid-template-columns: 1fr; }
  .perspective-slide { min-height: 420px; }
  .oregon-image, .oregon-image img { min-height: 460px; }
}

@media (max-width: 600px) {
  .brand img { width: 215px; }
  .editorial-hero { padding-top: 90px; }
  .editorial-hero h1 { font-size: clamp(3.35rem, 15vw, 4.8rem); }
  .hero-product { display: none; }
  .proof-item { border-bottom-color: var(--hairline); }
  .partner-section { padding: 54px 0 65px; }
  .platform-suite .container { width: min(calc(100% - 20px), var(--content)); }
  .platform-heading { padding-inline: 4px; }
  .product-tabs { border-radius: 22px; }
  .tab-panel { padding: 24px; }
  .tab-copy h3 { font-size: 2.65rem; }
  .tab-visual, .photo-frame img { min-height: 350px; }
  .photo-overlay-card, .ai-float { right: 14px; bottom: 14px; width: calc(100% - 28px); }
  .image-card-track { grid-template-columns: repeat(3, minmax(88vw, 1fr)); }
  .image-feature-card { min-height: 590px; }
  .slider-controls { display: none; }
  .workflow-list div { display: grid; gap: 3px; }
  .workflow-list small { text-align: left; }
  .perspective-slide { min-height: 380px; padding: 34px 27px; }
  .perspective-slide blockquote { font-size: 2rem; }
  .oregon-image, .oregon-image img { min-height: 380px; }
  .closing-panel { padding: 42px 28px; border-radius: 24px; }
  .closing-panel h2 { font-size: 3.1rem; }
}

@media (prefers-reduced-motion: reduce) {
  .partner-track { animation: none; }
}

/* Inner-page system: shared across every GoDaddy route */
.reading-progress { position: fixed; top: 0; left: 0; z-index: 250; width: 0; height: 3px; background: var(--lime); pointer-events: none; }
.inner-page .page-hero { position: relative; display: flex; min-height: 670px; align-items: center; overflow: hidden; padding: 104px 0 92px; background: #07100f; }
.inner-page .page-hero::before { content: ""; position: absolute; inset: 0 0 0 48%; z-index: 0; background-position: center; background-size: cover; }
.inner-page .page-hero::after { content: ""; position: absolute; inset: 0; z-index: 0; width: auto; height: auto; background: linear-gradient(90deg, #07100f 0%, #07100f 43%, rgba(7,16,15,.88) 54%, rgba(7,16,15,.22) 100%); border: 0; border-radius: 0; box-shadow: none; }
.page-coreq-admin .page-hero::before { background-image: url("coreq-team-analytics.webp"); background-position: 66% center; }
.page-questions-guide .page-hero::before { background-image: url("coreq-mobile-survey.webp"); background-position: 60% center; }
.page-how-it-works .page-hero::before { background-image: url("coreq-leadership-walkthrough.webp"); background-position: 58% center; }
.page-oregon .page-hero::before { background-image: url("coreq-resident-connection.webp"); background-position: 62% center; }
.page-blog .page-hero::before { background-image: url("coreq-team-analytics.webp"); background-position: 58% center; }
.page-contact .page-hero::before { background-image: url("coreq-hero-care.webp"); background-position: 70% center; }
.page-article-program .page-hero::before { background-image: url("coreq-leadership-walkthrough.webp"); background-position: 58% center; }
.page-article-metric .page-hero::before { background-image: url("coreq-mobile-survey.webp"); background-position: 58% center; }
.inner-page .page-hero > .container, .inner-page .page-hero > .article-body { position: relative; z-index: 2; width: min(calc(100% - 40px), var(--content)); margin-inline: auto; }
.inner-page .page-hero .container > *, .inner-page .page-hero .article-body > * { max-width: 690px; }
.inner-page .page-hero h1 { max-width: 720px; color: #fff; font-size: clamp(3.45rem, 6.4vw, 6.15rem); font-weight: 340; letter-spacing: -.058em; line-height: .96; }
.inner-page .page-hero .lead { margin-top: 26px; color: rgba(255,255,255,.72); font-size: clamp(1rem, 1.6vw, 1.18rem); line-height: 1.62; }
.inner-page .page-hero .eyebrow { margin-top: 28px; color: var(--lime); }
.inner-page .page-hero .breadcrumb { color: rgba(255,255,255,.55); font-size: .73rem; }
.inner-page .page-hero .breadcrumb a { color: rgba(255,255,255,.82); }
.inner-page .page-hero .hero-actions { margin-top: 32px; }
.inner-page .page-hero .button:not(.secondary) { color: var(--charcoal); background: #fff; border-color: #fff; }
.inner-page .page-hero .button:not(.secondary):hover { color: var(--charcoal); background: var(--lime); border-color: var(--lime); }

.inner-page .section { position: relative; }
.inner-page .section.soft { background: var(--paper); }
.inner-page .section-heading > h2 { max-width: 950px; }
.inner-page .section-heading.center > h2 { margin-inline: auto; }
.inner-page .two-col { gap: clamp(52px, 8vw, 118px); }
.inner-page .copy-stack h2 { font-size: clamp(2.55rem, 4.8vw, 4.55rem); font-weight: 410; }
.inner-page .copy-stack > p:not(.eyebrow), .inner-page .section-heading .lead { color: #64706b; }
.inner-page .visual-shell, .inner-page .insight-graphic, .inner-page .metric-visual { border: 1px solid #d9ded9; border-radius: 28px; box-shadow: 0 26px 70px rgba(7,18,15,.1); }
.inner-page .visual-shell { padding: clamp(23px, 4vw, 42px); background: linear-gradient(145deg, #e1e7e1, #f6f7f3); }
.inner-page .feature-card { min-height: 300px; border-color: #d7dcd7; border-radius: 22px; }
.inner-page .feature-card .number { color: #187d6f; }
.inner-page .section.navy .feature-card { color: #fff; background: #14201e; border-color: rgba(255,255,255,.14); }
.inner-page .section.navy .feature-card h3 { color: #fff; }
.inner-page .section.navy .feature-card p { color: rgba(255,255,255,.64); }
.inner-page .section.navy .feature-card .number { color: var(--lime); }
.inner-page .fact-card { min-height: 270px; display: grid; align-content: space-between; padding: 34px; }
.inner-page .fact-card strong { color: #157d6f; font-size: clamp(3.2rem, 6vw, 5.5rem); font-weight: 360; letter-spacing: -.07em; }
.inner-page .fact-card span { max-width: 280px; color: #68716d; }
.inner-page .measure-card { padding: 31px; background: #fff; border: 1px solid #d8ddd8; border-radius: 21px; box-shadow: none; }
.inner-page .measure-card:hover { border-color: #8f9a94; transform: translateY(-3px); }
.inner-page .measure-card .tag { color: #186f64; background: #e4f2ed; }
.inner-page .source-note { color: #5e6964; background: #eef1ed; border-left-color: #238d7e; border-radius: 0 13px 13px 0; }
.inner-page .quote-panel { overflow: hidden; background: #0b1513; border-radius: 29px; }
.inner-page .quote-panel h2 { font-size: clamp(2.6rem, 5vw, 4.8rem); }

.question-nav { position: sticky; top: 98px; z-index: 20; display: flex; gap: 8px; margin-bottom: 30px; padding: 9px; overflow-x: auto; background: rgba(255,255,255,.93); border: 1px solid #d7dcd7; border-radius: 999px; box-shadow: 0 12px 35px rgba(7,18,15,.08); backdrop-filter: blur(14px); scrollbar-width: none; }
.question-nav::-webkit-scrollbar { display: none; }
.question-nav a { flex: 0 0 auto; padding: 10px 16px; color: #37413d; border-radius: 999px; font-size: .73rem; font-weight: 760; text-decoration: none; }
.question-nav a:hover { color: #fff; background: #0b1513; }
.question-set { scroll-margin-top: 125px; margin: 0 0 18px; padding: clamp(28px, 5vw, 48px); background: #fff; border: 1px solid #d8ddd8; border-radius: 23px; box-shadow: none; }
.question-set h2 { font-size: clamp(2.1rem, 4vw, 3.6rem); font-weight: 420; }
.question-set ol { counter-reset: question; display: grid; gap: 12px; margin-top: 24px; padding: 0; list-style: none; }
.question-set li { counter-increment: question; display: grid; grid-template-columns: 38px 1fr; gap: 14px; align-items: start; padding: 17px; background: #f3f4f0; border-radius: 13px; }
.question-set li::before { content: counter(question); display: grid; width: 30px; height: 30px; place-items: center; color: #fff; background: #0b1513; border-radius: 50%; font-size: .69rem; font-weight: 800; }
.scale { overflow: hidden; border-radius: 18px; }
.scale span { min-height: 84px; }

.journey { gap: 13px; }
.journey::before { display: none; }
.journey-step { min-height: 300px; align-content: start; padding: 29px; background: #14201e; border: 1px solid rgba(255,255,255,.13); border-radius: 20px; text-align: left; }
.journey-number { display: grid; width: 46px; height: 46px; place-items: center; color: #0b1513; background: var(--lime); border: 0; }
.journey-step h3 { color: #fff; }
.journey-step p { color: rgba(255,255,255,.62); }

.contact-grid { gap: 22px; }
.contact-panel, .form-card { min-height: 100%; border-radius: 27px; }
.contact-panel { padding: clamp(36px, 6vw, 64px); background: #0b1513; }
.contact-panel h2 { font-size: clamp(2.6rem, 4.6vw, 4.3rem); font-weight: 400; }
.form-card { padding: clamp(32px, 5vw, 56px); background: #fff; border: 1px solid #d8ddd8; box-shadow: none; }
.field input, .field select, .field textarea { min-height: 56px; background: #f5f6f2; border-color: #d1d7d2; border-radius: 12px; }
.field textarea { min-height: 150px; }

.page-blog .card-grid { gap: 22px; }
.page-blog .article-card { min-height: 360px; align-content: end; padding: 34px; overflow: hidden; background: #fff; border-radius: 23px; }
.page-blog .article-card h2 { font-size: clamp(1.8rem, 3vw, 2.7rem) !important; font-weight: 430; }
.page-blog .article-card a { color: #0b1513; }
.page-blog .editorial-card time { color: #737c78; font-size: .72rem; }
.page-blog .editorial-card h2 { font-size: clamp(1.7rem, 2.7vw, 2.45rem); font-weight: 450; }
.page-blog .editorial-card h2 a { text-decoration: none; }

.article-page .page-hero { min-height: 680px; }
.article-page .page-hero .article-body { width: min(calc(100% - 40px), var(--content)); }
.article-page .page-hero h1 { max-width: 780px; font-size: clamp(3.2rem, 6vw, 5.75rem); }
.article-page .article-meta { margin-top: 24px; color: rgba(255,255,255,.62); font-size: .76rem; }
.article-page main > article > .article-body { width: min(calc(100% - 40px), 900px); }
.article-page main > article > .article-body > p:first-child { color: #2f3a36; font-size: 1.2rem; line-height: 1.72; }
.article-body h2 { scroll-margin-top: 115px; margin-top: 58px; padding-top: 10px; font-size: clamp(2.15rem, 4.2vw, 3.45rem); font-weight: 430; }
.article-body h3 { margin-top: 36px; font-size: 1.5rem; font-weight: 540; }
.article-body p, .article-body li { color: #56615c; }
.article-body li + li { margin-top: 8px; }
.article-toc { margin: 0 0 48px; padding: 25px; background: #f1f3ef; border: 1px solid #d7dcd7; border-radius: 18px; }
.article-toc strong { display: block; margin-bottom: 13px; color: #0b1513; font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; }
.article-toc ol { display: grid; gap: 8px; margin: 0; padding-left: 20px; }
.article-toc a { color: #3f4a45; font-size: .82rem; font-weight: 680; text-decoration: none; }
.article-toc a:hover { color: #127466; }

.legal-page .page-hero { min-height: 390px; padding: 88px 0 72px; }
.legal-page .page-hero::before { display: none; }
.legal-page .page-hero::after { background: radial-gradient(circle at 84% 10%, rgba(215,255,99,.12), transparent 30%), #0b1513; }
.legal-page .page-hero h1 { font-size: clamp(3.2rem, 6vw, 5.5rem); }
.legal-copy { width: min(calc(100% - 40px), 940px); }
.legal-copy > p:first-child { color: #2f3b36; font-size: 1.15rem; }
.legal-copy h2 { scroll-margin-top: 115px; margin-top: 58px; padding-top: 26px; border-top: 1px solid #d9ded9; font-size: clamp(2rem, 3.4vw, 2.9rem); font-weight: 440; }
.legal-copy h3 { margin-top: 34px; }
.legal-copy p, .legal-copy li { color: #59645f; }

.back-to-top { position: fixed; right: 22px; bottom: 22px; z-index: 85; display: grid; width: 46px; height: 46px; place-items: center; color: #fff; background: #0b1513; border: 1px solid rgba(255,255,255,.18); border-radius: 50%; box-shadow: 0 10px 28px rgba(0,0,0,.22); opacity: 0; pointer-events: none; transform: translateY(10px); transition: opacity .2s ease, transform .2s ease; }
.back-to-top.is-visible { opacity: 1; pointer-events: auto; transform: none; }

.error-layout { position: relative; display: grid; min-height: calc(100svh - 86px); place-items: center; overflow: hidden; color: #fff; background: #07100f; }
.error-media, .error-shade { position: absolute; inset: 0; }
.error-media img { width: 100%; height: 100%; object-fit: cover; object-position: 68% center; }
.error-shade { background: linear-gradient(90deg, rgba(7,16,15,.97), rgba(7,16,15,.75) 48%, rgba(7,16,15,.18)); }
.error-copy { position: relative; z-index: 2; width: min(calc(100% - 40px), 800px); margin-left: max(20px, calc((100vw - min(1240px, calc(100vw - 40px))) / 2)); margin-right: auto; }
.error-copy h1 { color: #fff; font-size: clamp(4rem, 9vw, 8rem); font-weight: 330; }
.error-copy .lead { max-width: 620px; margin-top: 24px; color: rgba(255,255,255,.72); }
.error-copy .hero-actions { margin-top: 32px; }
.error-copy .button:not(.secondary) { color: #0b1513; background: #fff; border-color: #fff; }

@media (max-width: 1040px) {
  .inner-page .page-hero::before { left: 42%; }
  .inner-page .page-hero::after { background: linear-gradient(90deg, #07100f 0%, #07100f 38%, rgba(7,16,15,.9) 54%, rgba(7,16,15,.36) 100%); }
  .inner-page .page-hero .container > *, .inner-page .page-hero .article-body > * { max-width: 64%; }
}

@media (max-width: 820px) {
  .page-blog, .page-contact, .legal-page, .article-page { padding-bottom: 0; }
  .inner-page .page-hero { min-height: 630px; padding: 92px 0 72px; }
  .inner-page .page-hero::before { inset: 0; background-position: center; }
  .inner-page .page-hero::after { background: linear-gradient(90deg, rgba(7,16,15,.95), rgba(7,16,15,.74)), linear-gradient(0deg, rgba(7,16,15,.74), transparent 60%); }
  .inner-page .page-hero .container > *, .inner-page .page-hero .article-body > * { max-width: 100%; }
  .inner-page .page-hero h1 { max-width: 680px; font-size: clamp(3.2rem, 10.5vw, 5rem); }
  .question-nav { top: 84px; border-radius: 16px; }
  .article-page .page-hero { min-height: 640px; }
  .article-page .page-hero h1 { font-size: clamp(3rem, 9.5vw, 4.7rem); }
  .legal-page .page-hero { min-height: 350px; }
  .page-blog .card-grid { grid-template-columns: 1fr !important; }
}

@media (max-width: 600px) {
  .inner-page .page-hero { min-height: 590px; }
  .inner-page .page-hero h1 { font-size: clamp(2.85rem, 13vw, 4.15rem); }
  .inner-page .page-hero .lead { font-size: 1rem; }
  .inner-page .page-hero .hero-actions { width: 100%; }
  .inner-page .fact-card { min-height: 220px; }
  .question-nav { margin-inline: -3px; }
  .question-set { padding: 25px 20px; }
  .question-set li { grid-template-columns: 32px 1fr; padding: 14px; }
  .scale { grid-template-columns: 1fr; }
  .scale span { min-height: 60px; border-right: 0; border-bottom: 1px solid #dce5ed; }
  .journey-step { min-height: 230px; }
  .legal-copy, .article-page main > article > .article-body { width: min(calc(100% - 28px), 900px); }
  .back-to-top { right: 14px; bottom: 84px; }
  .page-blog, .page-contact, .legal-page, .article-page { padding-bottom: 0; }
}

@media (max-width: 380px) {
  .container, .narrow { width: min(calc(100% - 22px), var(--content)); }
  .brand img { width: 188px; }
  .menu-toggle { width: 43px; height: 43px; }
  .editorial-hero h1, .inner-page .page-hero h1 { font-size: 2.8rem; }
  .tab-panel { padding: 20px 17px; }
  .tab-copy h3 { font-size: 2.25rem; }
  .image-card-track { grid-template-columns: repeat(3, minmax(91vw, 1fr)); }
  .contact-panel, .form-card { padding: 28px 20px; }
}

@media (max-height: 560px) and (orientation: landscape) and (min-width: 600px) {
  .editorial-hero, .inner-page .page-hero { min-height: 620px; }
  .editorial-hero { padding-top: 112px; }
  .hero-product { display: none; }
}

@media (hover: none) {
  .button:hover, .feature-card:hover, .measure-card:hover { transform: none; }
}

@media print {
  .site-header, .site-footer, .floating-cta, .back-to-top, .reading-progress, .hero-actions, .question-nav { display: none !important; }
  body { padding: 0 !important; color: #000; background: #fff; font-size: 11pt; }
  .inner-page .page-hero { min-height: 0; padding: 24pt 0; color: #000; background: #fff; }
  .inner-page .page-hero::before, .inner-page .page-hero::after { display: none; }
  .inner-page .page-hero h1, .inner-page .page-hero .lead, .inner-page .page-hero .breadcrumb, .inner-page .page-hero .eyebrow { color: #000; }
  .section { padding: 24pt 0; }
  .question-set, .measure-card, .fact-card, .article-toc { break-inside: avoid; box-shadow: none; }
  a { color: #000; text-decoration: underline; }
}
