:root {
    --navy-950: #041f2e;
    --navy-900: #062a3b;
    --navy-800: #0b3d5c;
    --navy-700: #155674;
    --teal-700: #007d82;
    --teal-600: #00979c;
    --teal-500: #00a8a8;
    --teal-100: #dff5f3;
    --teal-50: #effbfa;
    --ink: #18313f;
    --muted: #5e7380;
    --surface: #ffffff;
    --soft: #f4f7f9;
    --blue-soft: #edf5f8;
    --line: #d6e3e8;
    --white: #ffffff;
    --radius-sm: 12px;
    --radius: 22px;
    --radius-lg: 34px;
    --shadow-sm: 0 8px 24px rgba(6, 42, 59, 0.08);
    --shadow: 0 22px 60px rgba(6, 42, 59, 0.13);
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

body.nav-open {
    overflow: hidden;
}

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

a {
    color: inherit;
}

button,
input,
textarea {
    font: inherit;
}

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

h1,
h2,
h3 {
    color: var(--navy-900);
    font-weight: 750;
    letter-spacing: -0.035em;
    line-height: 1.1;
}

h1 {
    font-size: clamp(3.3rem, 6.5vw, 5.8rem);
    margin-bottom: 26px;
}

h2 {
    font-size: clamp(2.2rem, 4vw, 3.75rem);
    margin-bottom: 22px;
}

h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

p {
    margin-bottom: 18px;
}

.container {
    margin: 0 auto;
    max-width: var(--container);
    width: calc(100% - 48px);
}

.narrow {
    max-width: 900px;
}

.lead {
    color: var(--muted);
    font-size: clamp(1.15rem, 2vw, 1.35rem);
    line-height: 1.55;
}

.eyebrow {
    color: var(--teal-700);
    display: inline-block;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.eyebrow-light {
    color: #7ee0db;
}

.sr-only {
    clip: rect(0, 0, 0, 0);
    clip-path: inset(50%);
    height: 1px;
    overflow: hidden;
    position: absolute;
    white-space: nowrap;
    width: 1px;
}

.skip-link {
    background: var(--white);
    border-radius: 8px;
    color: var(--navy-900);
    left: 16px;
    padding: 10px 16px;
    position: fixed;
    top: -80px;
    z-index: 1000;
}

.skip-link:focus {
    top: 16px;
}

.button {
    align-items: center;
    background: var(--teal-600);
    border: 1px solid var(--teal-600);
    border-radius: 12px;
    color: var(--white);
    display: inline-flex;
    font-size: 0.91rem;
    font-weight: 750;
    justify-content: center;
    min-height: 50px;
    padding: 12px 21px;
    text-decoration: none;
    transition: background-color 160ms ease, border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.button:hover,
.button:focus-visible,
.button.active {
    background: var(--teal-700);
    border-color: var(--teal-700);
    box-shadow: var(--shadow-sm);
    transform: translateY(-2px);
}

.button-secondary {
    background: transparent;
    border-color: rgba(11, 61, 92, 0.35);
    color: var(--navy-800);
}

.button-secondary:hover,
.button-secondary:focus-visible {
    background: var(--navy-800);
    border-color: var(--navy-800);
    color: var(--white);
}

.button-light {
    background: var(--white);
    border-color: var(--white);
    color: var(--navy-900);
}

.button-light:hover,
.button-light:focus-visible {
    background: var(--teal-100);
    border-color: var(--teal-100);
}

.button-small {
    min-height: 44px;
    padding: 9px 17px;
}

.button-full {
    width: 100%;
}

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

.actions-center {
    justify-content: center;
}

.text-link {
    color: var(--teal-700);
    display: inline-flex;
    font-weight: 750;
    gap: 8px;
    text-decoration: none;
}

.text-link:hover,
.text-link:focus-visible {
    color: var(--navy-800);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
    outline: 3px solid rgba(0, 168, 168, 0.32);
    outline-offset: 3px;
}

.site-header {
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid rgba(214, 227, 232, 0.8);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(16px);
}

.header-inner {
    align-items: flex-end;
    display: flex;
    justify-content: space-between;
    min-height: 64px;
    padding: 12px 0 7px;
    gap: 24px;
}

.site-logo {
    display: block;
    flex: 0 0 auto;
    width: 236px;
}

.site-logo img {
    height: auto;
    object-fit: contain;
    object-position: left center;
    width: 100%;
}

.site-nav {
    align-items: center;
    display: flex;
    gap: 22px;
    margin-left: auto;
    justify-content: flex-end;
}

.site-nav > a:not(.button) {
    color: var(--navy-900);
    font-size: 0.86rem;
    font-weight: 700;
    padding: 10px 0;
    position: relative;
    text-decoration: none;
    text-transform: uppercase;
}

.site-nav > a:not(.button)::after {
    background: var(--teal-500);
    bottom: 5px;
    content: "";
    height: 2px;
    left: 0;
    position: absolute;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 160ms ease;
    width: 100%;
}

.site-nav > a:not(.button):hover::after,
.site-nav > a:not(.button):focus-visible::after,
.site-nav > a.active::after {
    transform: scaleX(1);
    transform-origin: left;
}

.menu-toggle {
    background: transparent;
    border: 0;
    cursor: pointer;
    display: none;
    height: 44px;
    padding: 10px;
    width: 44px;
}

.menu-toggle > span:not(.sr-only) {
    background: var(--navy-900);
    display: block;
    height: 2px;
    margin: 5px 0;
    transition: transform 160ms ease, opacity 160ms ease;
    width: 24px;
}

.hero {
    background:
        radial-gradient(circle at 83% 20%, rgba(0, 168, 168, 0.18), transparent 28%),
        linear-gradient(140deg, #ffffff 0%, #f2f9fa 64%, #e9f5f7 100%);
    overflow: hidden;
    padding: 48px 0 64px;
}

.page-home .header-inner,
.hero > .container {
    max-width: 1320px;
}

.hero-grid {
    align-items: start;
    display: grid;
    gap: 20px clamp(28px, 4vw, 56px);
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
    grid-template-areas: "intro photo" "detail photo";
    grid-template-rows: auto 1fr;
}

.hero-intro { grid-area: intro; }
.hero-detail { grid-area: detail; }

.hero-intro h1 {
    font-size: clamp(2.5rem, 4.7vw, 4.2rem);
    max-width: 600px;
    margin-bottom: 0;
}

.hero-intro .eyebrow {
    font-size: 0.76rem;
    letter-spacing: 0.11em;
}

.product-closeup {
    height: auto;
    margin: 0 auto;
    max-width: 620px;
    width: 100%;
}

.hero-detail .lead {
    max-width: 600px;
}

.hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 24px;
    list-style: none;
    margin: 30px 0 0;
    padding: 0;
}

.hero-points li {
    color: var(--navy-800);
    font-size: 0.98rem;
    font-weight: 700;
    padding-left: 19px;
    position: relative;
}

.hero-points li::before {
    background: var(--teal-500);
    border-radius: 50%;
    content: "";
    height: 8px;
    left: 0;
    position: absolute;
    top: 0.65em;
    width: 8px;
}

.hero-visual {
    grid-area: photo;
    position: relative;
    margin-top: 34px;
}

.hero-photo {
    aspect-ratio: 1.15;
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: 48% center;
    /* Preserve the rectangular photo; soften only the outer nine percent. */
    -webkit-mask-image:
        linear-gradient(to right, transparent, #000 9%, #000 91%, transparent),
        linear-gradient(to bottom, transparent, #000 9%, #000 91%, transparent);
    -webkit-mask-composite: source-in;
    mask-image:
        linear-gradient(to right, transparent, #000 9%, #000 91%, transparent),
        linear-gradient(to bottom, transparent, #000 9%, #000 91%, transparent);
    mask-composite: intersect;
}

.image-frame {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    overflow: hidden;
    padding: 14px;
}

.image-frame img {
    border-radius: calc(var(--radius-lg) - 10px);
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.image-frame-hero {
    aspect-ratio: 2.25 / 1;
}

.image-frame-hero img,
.product-image img {
    background: #3c8fbc;
    object-fit: contain;
    object-position: center;
}

.hero-badge {
    align-items: flex-start;
    background: var(--navy-900);
    border: 5px solid rgba(255, 255, 255, 0.9);
    border-radius: 18px;
    bottom: -24px;
    box-shadow: var(--shadow-sm);
    color: var(--white);
    display: flex;
    flex-direction: column;
    padding: 17px 22px;
    position: absolute;
    right: -20px;
}

.hero-badge strong {
    font-size: 1.05rem;
}

.hero-badge span {
    color: #c8dbe4;
    font-size: 0.72rem;
}

.trust-strip {
    background: var(--white);
    color: var(--navy-900);
    padding: 30px 0;
    text-align: center;
}

.trust-strip p {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.partner-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: center;
    gap: 40px;
    list-style: none;
    margin: 28px 0 12px;
    padding: 0;
}

.partner-logo {
    align-items: center;
    display: flex;
    justify-content: center;
    margin: auto;
    min-height: 92px;
    width: 100%;
}

.partner-logo img {
    height: auto;
    max-height: 84px;
    max-width: 240px;
    object-fit: contain;
    width: 100%;
}

.section {
    padding: 56px 0;
}

.section-soft {
    background: var(--soft);
}

.section-dark {
    background:
        radial-gradient(circle at 85% 30%, rgba(0, 168, 168, 0.15), transparent 30%),
        var(--navy-950);
    color: #d7e5ea;
}

.section-dark h2,
.section-dark h3 {
    color: var(--white);
}

.section-heading {
    margin-bottom: 28px;
    max-width: 800px;
}

.section-heading-wide {
    max-width: none;
}

.gap-label {
    font-size: 1rem;
    letter-spacing: 0.1em;
    margin-bottom: 24px;
    text-transform: uppercase;
}

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

.gap-grid article {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 28px 22px;
}

.gap-grid svg {
    color: var(--navy-700);
    fill: none;
    height: 48px;
    margin-bottom: 24px;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
    width: 48px;
}

.gap-grid h3 {
    color: var(--navy-700);
    font-size: 1.2rem;
    line-height: 1.4;
    margin: 0;
}

.gap-source {
    color: #bed0d8;
    display: inline-block;
    font-size: 0.85rem;
    margin-top: 26px;
}

.solution-summary {
    align-items: center;
    display: grid;
    gap: 64px;
    grid-template-columns: 1fr 1fr;
}

.solution-benefits {
    background: var(--teal-50);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    list-style: none;
    margin: 0;
    padding: 16px 32px;
}

.solution-benefits li {
    display: flex;
    gap: 16px;
    font-size: 1.1rem;
    font-weight: 650;
    padding: 20px 0;
}

.solution-benefits li + li {
    border-top: 1px solid var(--line);
}

.solution-benefits li::before {
    color: var(--teal-700);
    content: '✓';
}

.section-heading-wide p {
    color: #bed0d8;
    font-size: 1.14rem;
    max-width: 750px;
}

.section-heading-row {
    align-items: end;
    display: flex;
    justify-content: space-between;
    max-width: none;
}

.section-heading-row > p {
    color: var(--muted);
    max-width: 420px;
}

.metric-grid,
.feature-grid,
.evidence-grid,
.download-grid,
.value-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.metric-grid article {
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius);
    padding: 28px;
}

.metric-grid article > span {
    color: #6cd8d3;
    display: block;
    font-size: 0.73rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    margin-bottom: 26px;
}

.metric-grid p {
    color: #b9ccd4;
    margin-bottom: 0;
}

.split-grid,
.clinical-grid,
.video-grid,
.product-grid,
.advocacy-grid,
.story-grid,
.contact-grid {
    align-items: center;
    display: grid;
    gap: 40px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.steps {
    display: grid;
    gap: 14px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.steps li,
.contact-points article {
    align-items: center;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 18px;
    display: grid;
    gap: 18px;
    grid-template-columns: 52px 1fr;
    padding: 20px;
}

.steps li > span,
.contact-points article > span {
    align-items: center;
    background: var(--teal-100);
    border-radius: 50%;
    color: var(--teal-700);
    display: flex;
    font-size: 0.86rem;
    font-weight: 800;
    height: 46px;
    justify-content: center;
    width: 46px;
}

.steps h3,
.steps p,
.contact-points h3,
.contact-points p {
    margin-bottom: 2px;
}

.steps p,
.contact-points p {
    color: var(--muted);
    font-size: 0.91rem;
}

.steps-vertical {
    margin-top: 28px;
}

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

.feature-card,
.evidence-card,
.download-grid article,
.value-grid article {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 28px;
    transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.feature-card:hover,
.evidence-card:hover,
.download-grid article:hover {
    border-color: rgba(0, 151, 156, 0.5);
    box-shadow: var(--shadow-sm);
    transform: translateY(-4px);
}

.feature-number,
.value-grid article > span {
    align-items: center;
    background: var(--teal-50);
    border-radius: 12px;
    color: var(--teal-700);
    display: flex;
    font-size: 0.78rem;
    font-weight: 800;
    height: 44px;
    justify-content: center;
    margin-bottom: 26px;
    width: 44px;
}

.feature-card p,
.value-grid p {
    color: var(--muted);
    margin-bottom: 0;
}

.clinical-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
}

.clinical-grid .image-frame {
    aspect-ratio: 1.35 / 1;
}

.check-list {
    display: grid;
    gap: 13px;
    list-style: none;
    margin: 28px 0 0;
    padding: 0;
}

.check-list li {
    padding-left: 28px;
    position: relative;
}

.check-list li::before {
    background: var(--teal-500);
    border: 4px solid var(--teal-100);
    border-radius: 50%;
    content: "";
    height: 14px;
    left: 0;
    position: absolute;
    top: 0.5em;
    width: 14px;
}

.video-grid {
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
}

.video-frame {
    aspect-ratio: 16 / 9;
    background: var(--navy-950);
    border: 8px solid var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.video-frame iframe {
    border: 0;
    height: 100%;
    width: 100%;
}

.page-hero {
    background:
        radial-gradient(circle at 82% 18%, rgba(0, 168, 168, 0.15), transparent 28%),
        linear-gradient(135deg, #ffffff, var(--blue-soft));
    padding: 40px 0;
    text-align: center;
}

.page-hero h1 {
    font-size: clamp(3rem, 5.5vw, 5rem);
}

.page-hero .lead {
    margin-left: auto;
    margin-right: auto;
    max-width: 760px;
}

.page-hero-dark {
    background:
        radial-gradient(circle at 78% 26%, rgba(0, 168, 168, 0.2), transparent 32%),
        var(--navy-950);
}

.page-hero-dark h1 {
    color: var(--white);
}

.page-hero-dark .lead {
    color: #bfd1d9;
}

.product-grid {
    align-items: center;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
}

.page-solution .steps h3 {
    font-size: 1.55rem;
    text-transform: uppercase;
}

.page-solution .steps p {
    font-size: 1.1rem;
    line-height: 1.5;
}

.purpose-image img {
    height: auto;
}

.download-grid-pair {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.evidence-stats {
    margin: 0 0 24px;
}

.evidence-stats > div {
    align-items: center;
    display: grid;
    gap: 24px;
    grid-template-columns: auto 1fr;
    padding: 20px 0;
}

.evidence-stats > div + div {
    border-top: 1px solid var(--line);
}

.evidence-stats > div:first-child { padding-top: 0; }

.evidence-stats dt {
    font-size: 1.1rem;
    font-weight: 650;
    grid-column: 2;
    grid-row: 1;
}

.evidence-stats dd {
    color: var(--teal-700);
    font-size: clamp(3.5rem, 6vw, 4.8rem);
    font-weight: 800;
    grid-column: 1;
    grid-row: 1;
    letter-spacing: -0.05em;
    line-height: 1;
    margin: 0;
}

.product-image {
    aspect-ratio: 1.8 / 1;
}

.spec-grid {
    display: grid;
    gap: 1px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--line);
}

.spec-grid article {
    background: var(--white);
    min-height: 170px;
    padding: 30px;
}

.spec-grid strong {
    color: var(--teal-700);
    display: block;
    font-size: 1.7rem;
    letter-spacing: -0.04em;
    margin-bottom: 8px;
}

.spec-grid span {
    color: var(--muted);
}

.evidence-intro {
    align-items: start;
}

.evidence-card > span,
.file-type,
.panel-label,
.article-meta,
.form-kicker {
    color: var(--teal-700);
    display: block;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.evidence-card p,
.download-grid p {
    color: var(--muted);
}

.evidence-card a,
.download-grid a {
    color: var(--teal-700);
    font-weight: 750;
    text-decoration: none;
}

.advocacy-grid {
    align-items: stretch;
}

.advocacy-panel {
    background: var(--navy-900);
    border-radius: var(--radius-lg);
    color: #d5e3e8;
    padding: 42px;
}

.advocacy-panel h3 {
    color: var(--white);
    font-size: 2rem;
}

.advocacy-panel .check-list li::before {
    border-color: rgba(0, 168, 168, 0.2);
}

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

.article-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.article-image {
    aspect-ratio: 1.7 / 1;
    background: var(--blue-soft);
    display: block;
    overflow: hidden;
}

.article-image img {
    height: 100%;
    object-fit: cover;
    transition: transform 240ms ease;
    width: 100%;
}

.article-card:hover .article-image img {
    transform: scale(1.025);
}

.article-content {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 25px;
}

.article-meta {
    margin-bottom: 12px;
}

.article-card h3 a {
    text-decoration: none;
}

.article-card p {
    color: var(--muted);
    font-size: 0.94rem;
}

.article-card .text-link {
    margin-top: auto;
}

.article-placeholder {
    min-height: 330px;
}

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

.advisor-card {
    align-items: center;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    display: grid;
    gap: 26px;
    grid-template-columns: 160px 1fr;
    padding: 24px;
}

.advisor-card img {
    border-radius: 18px;
    height: 190px;
    object-fit: cover;
    width: 160px;
}

.advisor-card p {
    color: var(--muted);
    font-size: 0.94rem;
}

.advisor-card .advisor-title {
    color: var(--teal-700);
    font-size: 0.82rem;
    font-weight: 750;
}

.contact-grid {
    align-items: start;
    grid-template-columns: minmax(0, 0.9fr) minmax(480px, 1.1fr);
}

.contact-points {
    display: grid;
    gap: 12px;
    margin-top: 30px;
}

.contact-points article {
    border: 0;
    padding: 14px 0;
}

.direct-email {
    border-top: 1px solid var(--line);
    margin-top: 28px;
    padding-top: 24px;
}

.direct-email a {
    color: var(--teal-700);
    font-weight: 750;
}

.form-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    padding: 38px;
}

.form-card h2 {
    font-size: 2rem;
}

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

.form-field {
    margin-bottom: 18px;
}

.form-field label {
    color: var(--navy-900);
    display: block;
    font-size: 0.82rem;
    font-weight: 750;
    margin-bottom: 7px;
}

.form-field label span {
    color: var(--muted);
    font-weight: 500;
}

.form-field input,
.form-field textarea {
    background: var(--white);
    border: 1px solid #b9cbd3;
    border-radius: 10px;
    color: var(--ink);
    padding: 12px 14px;
    width: 100%;
}

.form-field input:focus,
.form-field textarea:focus {
    border-color: var(--teal-500);
    box-shadow: 0 0 0 4px rgba(0, 168, 168, 0.12);
    outline: 0;
}

.captcha-wrap {
    margin: 4px 0 20px;
    max-width: 100%;
    overflow: hidden;
}

.form-note {
    color: var(--muted);
    font-size: 0.75rem;
    margin: 13px 0 0;
    text-align: center;
}

.form-alert {
    background: #fff1f1;
    border: 1px solid #e6bcbc;
    border-radius: 10px;
    color: #913838;
    font-size: 0.88rem;
    margin-bottom: 20px;
    padding: 12px 14px;
}

.confirmation-section {
    background: linear-gradient(135deg, var(--blue-soft), var(--teal-50));
    min-height: 70vh;
    padding: 110px 0;
}

.confirmation-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    margin: 0 auto;
    max-width: 760px;
    padding: 58px;
    text-align: center;
}

.confirmation-card h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

.confirmation-mark {
    align-items: center;
    background: var(--teal-100);
    border-radius: 50%;
    color: var(--teal-700);
    display: flex;
    font-size: 2rem;
    height: 70px;
    justify-content: center;
    margin: 0 auto 28px;
    width: 70px;
}

.reference {
    color: var(--muted);
    font-size: 0.78rem;
}

.cta-band {
    background:
        radial-gradient(circle at 75% 0%, rgba(0, 168, 168, 0.27), transparent 31%),
        var(--navy-900);
    color: #d2e1e7;
    padding: 72px 0;
}

.cta-inner {
    align-items: center;
    display: flex;
    gap: 50px;
    justify-content: space-between;
}

.cta-inner > div {
    max-width: 780px;
}

.cta-inner h2 {
    color: var(--white);
    font-size: clamp(2rem, 4vw, 3.25rem);
}

.cta-inner p {
    margin-bottom: 0;
}

.cta-inner .button {
    flex: 0 0 auto;
}

.site-footer {
    background: #041f2e;
    color: #b9ccd4;
    padding: 64px 0 26px;
}

.footer-grid {
    display: grid;
    gap: 70px;
    grid-template-columns: 1.6fr 0.7fr 0.9fr;
}

.footer-brand img {
    background-color: #041f2e;
    height: auto;
    margin-bottom: 0;
    object-fit: contain;
    object-position: left center;
    width: min(100%, 330px);
}

.footer-brand p {
    max-width: 430px;
}

.site-footer h2 {
    color: var(--white);
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    margin-bottom: 18px;
    text-transform: uppercase;
}

.site-footer a {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 9px;
    text-decoration: none;
}

.site-footer a:hover,
.site-footer a:focus-visible {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    font-size: 0.73rem;
    justify-content: space-between;
    margin-top: 50px;
    padding-top: 24px;
}

@media (max-width: 1050px) {
    .site-nav {
        gap: 19px;
    }

    .advisor-card {
        grid-template-columns: 120px 1fr;
    }

    .advisor-card img {
        height: 150px;
        width: 120px;
    }
}

.original-workflow {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 42px;
    list-style: none;
    padding: 0;
}
.workflow-section { padding-top: 28px; }
.page-solution .page-hero { background: var(--white); padding-bottom: 10px; }
.page-solution .page-hero h1 { margin-bottom: 0; }
.workflow-photo { position: relative; max-width: 300px; margin: 0 auto 20px; }
.workflow-photo svg { display: block; width: 100%; height: auto; }
.original-workflow h2 { font-size: 1.8rem; text-transform: uppercase; margin-bottom: 8px; color: var(--navy-700); }
.original-workflow p { color: var(--navy-700); margin: 0; line-height: 1.5; }
.spec-heading { font-size: clamp(2rem, 3.7vw, 3.3rem); }
.page-about .page-hero h1 { font-size: clamp(2rem, 3.9vw, 3.3rem); }
.page-about .value-grid { max-width: 1050px; gap: 20px; }
.value-grid article { padding: 22px; }
.value-grid article > span { margin-bottom: 16px; }
.value-grid svg { width: 28px; height: 28px; }
.challenge-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 32px; text-align: center; }
.challenge-grid article { position: relative; }
.challenge-grid h3 { font-size: 1.15rem; line-height: 1.3; }
.challenge-grid p { color: var(--muted); font-size: 1rem; }
.challenge-symbol { display: grid; place-items: center; width: 82px; height: 82px; margin: 0 auto 22px; border: 2px solid var(--teal-600); border-radius: 50%; color: var(--teal-700); }
.challenge-symbol svg { width: 42px; height: 42px; }
.challenge-opportunity { background: var(--blue-soft); border-left: 4px solid var(--teal-600); padding: 24px 28px; margin-top: 20px; }
.challenge-opportunity h3 { color: var(--teal-700); font-size: 1rem; text-transform: uppercase; letter-spacing: .08em; }
.challenge-opportunity p { margin: 0; }

@media (max-width: 1000px) {
    .header-inner { gap: 18px; }
    .site-nav { gap: 14px; }
    .site-nav > a:not(.button) { font-size: 0.78rem; }
    .site-nav .button { font-size: 0.78rem; padding: 9px 12px; }
}

@media (max-width: 720px) {
    .header-inner { flex-wrap: wrap; gap: 0; }
    .site-nav { flex: 0 0 100%; justify-content: space-between; }
}

@media (max-width: 860px) {
    .container {
        width: calc(100% - 36px);
    }

    .site-logo {
        width: 210px;
    }

    .hero {
        padding: 44px 0 60px;
    }

    .solution-summary,
    .split-grid,
    .clinical-grid,
    .video-grid,
    .product-grid,
    .advocacy-grid,
    .story-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .hero-badge {
        bottom: -20px;
        right: 12px;
    }

    .challenge-grid,
    .metric-grid,
    .gap-grid,
    .partner-grid,
    .feature-grid,
    .evidence-grid,
    .download-grid,
    .value-grid,
    .article-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .section-heading-row,
    .cta-inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .contact-grid {
        gap: 50px;
    }

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

@media (max-width: 620px) {
    body {
        font-size: 16px;
    }

    .container {
        width: calc(100% - 30px);
    }

    .header-inner {
        min-height: 0;
    }

    .site-logo {
        width: 184px;
    }

    .site-logo img {
        height: auto;
    }

    .hero,
    .page-hero {
        padding: 32px 0;
    }

    .hero {
        padding: 32px 0 40px;
    }

    .header-inner { padding-top: 12px; }
    .site-nav { display: grid; grid-template-columns: repeat(4, auto); gap: 0 16px; }
    .site-nav > a:not(.button) { font-size: 0.75rem; min-height: 44px; }
    .site-nav .button { grid-column: 1 / -1; justify-self: center; min-height: 36px; padding: 6px 14px; margin-bottom: 6px; font-size: 0.8rem; }
    .hero-grid { grid-template-columns: 1fr; grid-template-areas: "intro" "photo" "detail"; gap: 24px; }
    .hero-photo { aspect-ratio: 1.3; }
    .original-workflow { grid-template-columns: 1fr; gap: 32px; }
    .original-workflow li { max-width: 360px; margin: 0 auto; width: 100%; }
    .workflow-photo { max-width: 260px; }
    .challenge-grid { grid-template-columns: 1fr 1fr; gap: 24px 18px; }
    .challenge-grid h3 { font-size: 1rem; }
    .challenge-grid p { font-size: .9rem; }
    .challenge-opportunity { padding: 20px; }

    h1 {
        font-size: clamp(2.75rem, 14vw, 4.2rem);
    }

    .hero-intro h1 {
        font-size: clamp(2.3rem, 10vw, 3.5rem);
        max-width: 16ch;
    }

    .hero-detail .lead {
        font-size: 1.05rem;
    }

    .page-hero h1 {
        font-size: clamp(2.55rem, 13vw, 3.7rem);
    }

    h2 {
        font-size: clamp(2rem, 10vw, 3rem);
    }

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

    .actions .button {
        width: 100%;
    }

    .hero-points {
        align-items: flex-start;
        flex-direction: column;
    }

    .hero-badge {
        border-width: 3px;
        bottom: auto;
        left: auto;
        margin: -8px 10px 0;
        position: relative;
        right: auto;
    }

    .hero-visual {
        margin: 0;
        max-width: 480px;
        width: 100%;
    }

    .image-frame-hero {
        border-radius: 22px;
        padding: 8px;
    }

    .image-frame-hero img {
        border-radius: 16px;
    }

    .trust-strip {
        overflow: hidden;
        padding: 24px 0;
    }

    .partner-grid {
        gap: 20px 24px;
    }

    .partner-logo {
        min-height: 72px;
    }

    .solution-summary {
        gap: 32px;
    }

    .solution-benefits {
        padding: 8px 22px;
    }

    .section {
        padding: 40px 0;
    }

    .metric-grid,
    .gap-grid,
    .feature-grid,
    .evidence-grid,
    .download-grid,
    .value-grid,
    .article-grid,
    .spec-grid {
        grid-template-columns: 1fr;
    }

    .spec-grid article {
        min-height: auto;
    }

    .form-card,
    .confirmation-card,
    .advocacy-panel {
        border-radius: var(--radius);
        padding: 26px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .advisor-card {
        align-items: start;
        grid-template-columns: 90px 1fr;
        padding: 18px;
    }

    .advisor-card img {
        height: 110px;
        width: 90px;
    }

    .cta-band {
        padding: 62px 0;
    }

    .cta-inner .button {
        width: 100%;
    }

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

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
    }
}

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

@media print {
    .site-header,
    .site-footer,
    .cta-band,
    .button,
    .video-frame {
        display: none !important;
    }
}
