:root {
    color-scheme: light;
    --paper: #f7f5f1;
    --bg: #f7f5f1;
    --surface: #ffffff;
    --ink: #0e1b2c;
    --muted: #5d6874;
    --line: rgba(14, 27, 44, 0.15);
    --green: #0b5d5a;
    --green-dark: #084846;
    --teal-soft: #e3efed;
    --coral: #e88b69;
    --coral-deep: #b9431f;
    --success: #178a50;
    --warning: #b97d10;
    --danger: #c93a3a;
    --red: #b9431f;
    --blue: #356b86;
    --amber: #b97d10;
    font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: var(--bg);
    color: var(--ink);
}

* {
    box-sizing: border-box;
}

html {
    min-width: 320px;
    background: var(--bg);
}

body {
    min-width: 320px;
    margin: 0;
    overflow-x: hidden;
    background: var(--bg);
}

a {
    color: inherit;
    -webkit-tap-highlight-color: transparent;
}

a:focus-visible {
    outline: 2px solid var(--green);
    outline-offset: 3px;
}

.hero {
    position: relative;
    display: grid;
    width: 100%;
    height: 82svh;
    min-height: 560px;
    max-height: 760px;
    grid-template-rows: 76px minmax(0, 1fr) auto;
    isolation: isolate;
    background-image: url("hero.webp");
    background-position: center;
    background-size: cover;
}

.hero::before {
    position: absolute;
    z-index: -1;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(247, 245, 241, 0.99) 0%, rgba(247, 245, 241, 0.92) 45%, rgba(247, 245, 241, 0.48) 76%, rgba(247, 245, 241, 0.18) 100%),
        linear-gradient(0deg, rgba(247, 245, 241, 0.97) 0%, transparent 46%);
    content: "";
}

.landing-header,
.hero-content,
.network-signals,
.network-band,
.journey-inner,
.emergency-inner,
.roles-inner,
.trust-inner,
.closing-inner,
footer {
    width: min(1440px, calc(100% - 48px));
    margin-inline: auto;
}

.landing-header {
    display: flex;
    min-width: 0;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    border-bottom: 1px solid var(--line);
}

.brand {
    display: inline-flex;
    min-width: 0;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.brand-mark {
    display: grid;
    width: 36px;
    height: 36px;
    flex: 0 0 auto;
    border-radius: 8px;
    background: var(--green);
    color: var(--paper);
    place-items: center;
}

.brand-mark img {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: inherit;
}

.brand > span:last-child {
    display: grid;
    gap: 1px;
}

.brand strong {
    font-size: 0.98rem;
}

.brand small {
    color: var(--muted);
    font-size: 0.65rem;
}

nav {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 5px;
}

.nav-link,
.call-link {
    display: inline-flex;
    min-height: 38px;
    align-items: center;
    justify-content: center;
    border-radius: 7px;
    padding: 7px 11px;
    font-size: 0.72rem;
    font-weight: 720;
    text-decoration: none;
}

.nav-link:hover {
    background: var(--teal-soft);
}

.facility-link {
    border: 1px solid var(--line);
}

.call-link {
    gap: 7px;
    border: 1px solid rgba(185, 67, 31, 0.32);
    margin-left: 5px;
    background: rgba(232, 139, 105, 0.2);
    color: var(--coral-deep);
}

.call-link svg {
    width: 15px;
    height: 15px;
    color: var(--red);
}

.hero-content {
    display: grid;
    min-width: 0;
    max-width: none;
    align-content: center;
    justify-items: start;
    padding-block: 24px;
}

.eyebrow {
    margin: 0 0 10px;
    color: var(--green);
    font-size: 0.68rem;
    font-weight: 820;
    text-transform: uppercase;
}

h1 {
    width: min(100%, 820px);
    max-width: 820px;
    margin: 0;
    font-size: 4.9rem;
    font-weight: 620;
    line-height: 0.96;
    letter-spacing: 0;
}

.hero-copy {
    width: min(100%, 650px);
    max-width: 650px;
    margin: 22px 0 0;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 27px;
}

.primary-action,
.secondary-action {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border-radius: 7px;
    padding: 11px 16px;
    font-size: 0.78rem;
    font-weight: 780;
    text-decoration: none;
}

.primary-action {
    background: var(--green);
    color: #ffffff;
}

.primary-action:hover {
    background: var(--green-dark);
}

.secondary-action {
    border: 1px solid rgba(185, 67, 31, 0.24);
    background: var(--coral);
    color: var(--ink);
}

.primary-action svg,
.secondary-action svg {
    width: 17px;
    height: 17px;
}

.secondary-action svg {
    color: var(--red);
}

.network-signals {
    display: grid;
    min-width: 0;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid var(--line);
    overflow: hidden;
}

.network-signals > div {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 11px;
    padding: 18px 22px;
}

.network-signals > div + div {
    border-left: 1px solid var(--line);
}

.network-signals svg {
    width: 20px;
    height: 20px;
    flex: 0 0 auto;
    color: var(--green);
}

.network-signals span {
    display: grid;
    min-width: 0;
    gap: 3px;
}

.network-signals strong {
    font-size: 0.74rem;
    overflow-wrap: anywhere;
}

.network-signals small {
    overflow: hidden;
    color: var(--muted);
    font-size: 0.62rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

main {
    background: var(--surface);
}

.network-band {
    display: grid;
    grid-template-columns: minmax(270px, 0.7fr) minmax(0, 1.3fr);
    gap: 64px;
    padding-block: 72px 82px;
}

.section-intro h2 {
    width: min(100%, 460px);
    max-width: 460px;
    margin: 0;
    font-size: 2.25rem;
    font-weight: 600;
    line-height: 1.08;
    letter-spacing: 0;
}

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

.capabilities article {
    min-width: 0;
    border-left: 1px solid var(--line);
    padding: 4px 22px 2px;
}

.capabilities article > span {
    color: var(--green);
    font-size: 0.62rem;
    font-weight: 800;
}

.capabilities h3 {
    margin: 19px 0 9px;
    font-size: 0.9rem;
}

.capabilities p {
    margin: 0;
    color: var(--muted);
    font-size: 0.72rem;
    line-height: 1.55;
}

.journey-band,
.emergency-band,
.roles-band,
.trust-band,
.closing-band {
    border-top: 1px solid var(--line);
}

.journey-band {
    background: var(--paper);
}

.journey-inner {
    padding-block: 84px 92px;
}

.section-heading {
    display: grid;
    max-width: 680px;
    grid-template-columns: minmax(0, 1fr);
}

.section-heading h2,
.emergency-intro h2,
.roles-heading h2,
.trust-copy h2,
.closing-inner h2 {
    width: 100%;
    margin: 0;
    font-size: 2.25rem;
    font-weight: 600;
    line-height: 1.08;
    letter-spacing: 0;
    overflow-wrap: anywhere;
}

.section-heading > p:last-child,
.emergency-intro > p,
.trust-copy > p:last-child {
    margin: 17px 0 0;
    color: var(--muted);
    font-size: 0.82rem;
    line-height: 1.65;
}

.journey-steps {
    display: grid;
    margin: 54px 0 0;
    padding: 0;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    list-style: none;
}

.journey-steps li {
    position: relative;
    display: grid;
    min-width: 0;
    align-content: start;
    border-top: 1px solid var(--line);
    padding: 27px 24px 4px;
}

.journey-steps li + li {
    border-left: 1px solid var(--line);
}

.journey-steps li::before {
    position: absolute;
    top: -3px;
    left: 24px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green);
    content: "";
}

.journey-steps .step-number {
    color: #687480;
    font-size: 0.62rem;
    font-weight: 800;
}

.journey-steps svg {
    width: 24px;
    height: 24px;
    margin-top: 30px;
    color: var(--green);
}

.journey-steps h3 {
    margin: 17px 0 9px;
    font-size: 0.92rem;
}

.journey-steps p {
    margin: 0;
    color: var(--muted);
    font-size: 0.72rem;
    line-height: 1.62;
}

.emergency-band {
    background: var(--surface);
}

.emergency-inner {
    display: grid;
    grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
    gap: 80px;
    padding-block: 88px;
}

.emergency-intro h2 {
    max-width: 520px;
}

.text-action {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 24px;
    color: var(--green);
    font-size: 0.72rem;
    font-weight: 780;
    text-decoration: none;
}

.text-action:hover {
    color: var(--green-dark);
}

.text-action svg {
    width: 15px;
    height: 15px;
}

.emergency-types {
    display: grid;
    align-self: center;
    margin: 0;
    padding: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-top: 1px solid var(--line);
    list-style: none;
}

.emergency-types li {
    display: flex;
    min-width: 0;
    min-height: 68px;
    align-items: center;
    gap: 13px;
    border-bottom: 1px solid var(--line);
    padding: 15px 18px;
    color: var(--ink);
    font-size: 0.74rem;
    font-weight: 680;
}

.emergency-types li:nth-child(odd) {
    border-right: 1px solid var(--line);
}

.emergency-types svg {
    width: 20px;
    height: 20px;
    flex: 0 0 auto;
    color: var(--red);
}

.emergency-types li:nth-child(3n + 2) svg {
    color: var(--amber);
}

.emergency-types li:nth-child(3n) svg {
    color: var(--blue);
}

.roles-band {
    background: var(--surface);
}

.roles-inner {
    padding-block: 86px 94px;
}

.roles-heading {
    display: grid;
    max-width: 760px;
}

.roles-grid {
    display: grid;
    margin-top: 51px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.roles-grid article {
    min-width: 0;
    border-top: 1px solid var(--line);
    padding: 31px 42px 5px 0;
}

.roles-grid article + article {
    border-left: 1px solid var(--line);
    padding-right: 0;
    padding-left: 42px;
}

.role-icon {
    display: grid;
    width: 38px;
    height: 38px;
    border-radius: 7px;
    background: var(--teal-soft);
    color: var(--green);
    place-items: center;
}

.role-icon.hospital {
    background: var(--teal-soft);
    color: var(--green);
}

.role-icon svg {
    width: 19px;
    height: 19px;
}

.role-label {
    margin: 25px 0 8px;
    color: var(--green);
    font-size: 0.64rem;
    font-weight: 820;
    text-transform: uppercase;
}

.roles-grid article + article .role-label {
    color: var(--green);
}

.roles-grid h3 {
    max-width: 520px;
    margin: 0;
    font-size: 1.35rem;
    font-weight: 600;
    line-height: 1.25;
}

.roles-grid ul {
    display: grid;
    gap: 11px;
    margin: 25px 0 0;
    padding: 0;
    color: var(--muted);
    font-size: 0.73rem;
    line-height: 1.5;
    list-style: none;
}

.roles-grid li {
    display: grid;
    grid-template-columns: 17px minmax(0, 1fr);
    gap: 8px;
}

.roles-grid li svg {
    width: 15px;
    height: 15px;
    margin-top: 2px;
    color: var(--green);
}

.roles-grid article + article li svg {
    color: var(--green);
}

.trust-band {
    background: var(--teal-soft);
}

.trust-inner {
    display: grid;
    grid-template-columns: minmax(280px, 0.76fr) minmax(0, 1.24fr);
    gap: 76px;
    padding-block: 88px;
}

.trust-copy h2 {
    max-width: 520px;
}

.trust-facts {
    display: grid;
    align-self: end;
    margin: 0;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.trust-facts div {
    min-width: 0;
    border-left: 1px solid var(--line);
    padding: 5px 22px 3px;
}

.trust-facts dt {
    color: var(--ink);
    font-size: 1.35rem;
    font-weight: 650;
}

.trust-facts dd {
    margin: 11px 0 0;
    color: var(--muted);
    font-size: 0.68rem;
    line-height: 1.5;
}

.safety-note {
    display: grid;
    grid-column: 1 / -1;
    grid-template-columns: 30px minmax(0, 1fr) auto;
    align-items: center;
    gap: 15px;
    border-top: 1px solid rgba(185, 67, 31, 0.28);
    border-bottom: 1px solid rgba(185, 67, 31, 0.28);
    margin-top: 7px;
    padding: 20px 0;
}

.safety-note > svg {
    width: 23px;
    height: 23px;
    color: var(--red);
}

.safety-note div {
    display: grid;
    gap: 4px;
}

.safety-note strong {
    font-size: 0.78rem;
}

.safety-note span {
    color: var(--muted);
    font-size: 0.68rem;
    line-height: 1.45;
}

.safety-note a {
    display: inline-flex;
    min-height: 38px;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(185, 67, 31, 0.3);
    border-radius: 7px;
    padding: 8px 12px;
    background: var(--coral);
    color: var(--ink);
    font-size: 0.7rem;
    font-weight: 780;
    text-decoration: none;
}

.safety-note a svg {
    width: 15px;
    height: 15px;
    color: var(--red);
}

.closing-band {
    background: var(--ink);
    color: var(--paper);
}

.closing-band .eyebrow {
    color: var(--coral);
}

.closing-band .secondary-action {
    border-color: rgba(232, 139, 105, 0.45);
}

.closing-inner {
    display: flex;
    min-height: 240px;
    align-items: center;
    justify-content: space-between;
    gap: 54px;
    padding-block: 52px;
}

.closing-inner h2 {
    max-width: 680px;
}

.closing-actions {
    display: flex;
    flex: 0 0 auto;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 9px;
}

footer {
    display: grid;
    min-height: 74px;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 28px;
    color: var(--muted);
    font-size: 0.62rem;
}

footer p {
    margin: 0;
}

footer a {
    color: var(--ink);
    text-decoration: none;
}

.footer-links {
    display: flex;
    gap: 16px;
}

.footer-links a:hover {
    color: var(--ink);
}

.footer-brand {
    color: var(--ink);
    font-size: 0.78rem;
    font-weight: 800;
}

@media (max-width: 900px) {
    .hero {
        background-position: 58% center;
    }

    h1 {
        max-width: 660px;
        font-size: 3.8rem;
    }

    .network-band {
        grid-template-columns: 1fr;
        gap: 38px;
    }

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

    .journey-steps li:nth-child(3) {
        border-left: 0;
    }

    .emergency-inner,
    .trust-inner {
        grid-template-columns: 1fr;
        gap: 44px;
    }

    .closing-inner {
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
        gap: 30px;
    }

    .closing-actions {
        justify-content: flex-start;
    }
}

@media (max-width: 680px) {
    .landing-header,
    .hero-content,
    .network-signals,
    .network-band,
    .journey-inner,
    .emergency-inner,
    .roles-inner,
    .trust-inner,
    .closing-inner,
    footer {
        width: min(calc(100% - 24px), 1440px);
    }

    .hero {
        height: 86svh;
        min-height: 610px;
        max-height: 730px;
        grid-template-rows: 66px minmax(0, 1fr) auto;
        background-position: 67% center;
    }

    .hero::before {
        background:
            linear-gradient(90deg, rgba(247, 245, 241, 0.98) 0%, rgba(247, 245, 241, 0.88) 68%, rgba(247, 245, 241, 0.48) 100%),
            linear-gradient(0deg, rgba(247, 245, 241, 0.98) 0%, rgba(247, 245, 241, 0.2) 65%);
    }

    .brand small,
    .nav-link.facility-link {
        display: none;
    }

    .nav-link {
        padding-inline: 7px;
        font-size: 0.67rem;
    }

    .call-link {
        width: 38px;
        padding: 0;
    }

    .call-link span {
        display: none;
    }

    h1 {
        max-width: 520px;
        font-size: 2.75rem;
        line-height: 1;
    }

    .hero-copy {
        max-width: 500px;
        margin-top: 17px;
        font-size: 0.84rem;
        line-height: 1.5;
    }

    .hero-actions {
        margin-top: 21px;
    }

    .primary-action,
    .secondary-action {
        min-height: 44px;
        padding: 9px 12px;
        font-size: 0.7rem;
    }

    .network-signals > div {
        padding: 14px 9px;
    }

    .network-signals svg {
        display: none;
    }

    .network-signals small {
        display: none;
    }

    .network-signals strong {
        font-size: 0.62rem;
        line-height: 1.3;
    }

    .network-band {
        gap: 30px;
        padding-block: 52px 58px;
    }

    .section-intro h2 {
        font-size: 1.75rem;
    }

    .section-heading h2,
    .emergency-intro h2,
    .roles-heading h2,
    .trust-copy h2,
    .closing-inner h2 {
        font-size: 1.75rem;
    }

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

    .capabilities article {
        display: grid;
        grid-template-columns: 30px minmax(0, 1fr);
        border-top: 1px solid var(--line);
        border-left: 0;
        padding: 17px 0;
    }

    .capabilities h3 {
        margin: 0 0 5px;
    }

    .capabilities p {
        grid-column: 2;
    }

    .journey-inner,
    .emergency-inner,
    .roles-inner,
    .trust-inner {
        padding-block: 58px 64px;
    }

    .journey-steps {
        margin-top: 38px;
        grid-template-columns: 1fr;
    }

    .journey-steps li,
    .journey-steps li + li,
    .journey-steps li:nth-child(3) {
        display: grid;
        grid-template-columns: 34px 32px minmax(0, 1fr);
        border-left: 0;
        padding: 19px 0;
    }

    .journey-steps li::before {
        left: 0;
    }

    .journey-steps svg {
        margin: 0;
    }

    .journey-steps h3 {
        margin: 3px 0 7px;
    }

    .journey-steps p {
        grid-column: 3;
    }

    .emergency-inner {
        gap: 38px;
    }

    .emergency-types {
        grid-template-columns: 1fr;
    }

    .emergency-types li,
    .emergency-types li:nth-child(odd) {
        min-height: 58px;
        border-right: 0;
        padding-inline: 8px;
    }

    .roles-grid {
        margin-top: 38px;
        grid-template-columns: 1fr;
    }

    .roles-grid article,
    .roles-grid article + article {
        border-left: 0;
        padding: 27px 0 33px;
    }

    .roles-grid article + article {
        border-top: 1px solid var(--line);
    }

    .trust-facts {
        grid-template-columns: 1fr;
    }

    .trust-facts div {
        display: grid;
        grid-template-columns: 90px minmax(0, 1fr);
        align-items: baseline;
        border-top: 1px solid var(--line);
        border-left: 0;
        padding: 16px 0;
    }

    .trust-facts dd {
        margin: 0;
    }

    .safety-note {
        grid-template-columns: 26px minmax(0, 1fr);
    }

    .safety-note a {
        grid-column: 2;
        justify-self: start;
    }

    .closing-inner {
        min-height: 280px;
        padding-block: 48px;
    }

    .closing-actions {
        width: 100%;
    }

    footer {
        min-height: 118px;
        grid-template-columns: 1fr;
        gap: 7px 16px;
        padding-block: 15px;
    }

    footer p {
        grid-row: auto;
    }

    .footer-links {
        flex-wrap: wrap;
        gap: 8px 15px;
    }
}

@media (max-width: 430px) {
    .nav-link:first-child,
    .secondary-action {
        display: none;
    }

    h1 {
        font-size: 2.4rem;
    }

    .hero-content {
        padding-block: 17px;
    }

    .primary-action {
        width: 100%;
    }

    .closing-actions .secondary-action {
        display: inline-flex;
        width: 100%;
    }
}

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