:root {
    --navy-950: #091c30;
    --navy-900: #102843;
    --navy-800: #1a2d4e;
    --slate-600: #4f617e;
    --green-800: #1f692e;
    --green-700: #297532;
    --green-600: #3c8b38;
    --green-500: #72ab34;
    --lime-400: #a1c63c;
    --teal-500: #30a177;
    --cream-100: #f5f8f2;
    --cream-50: #fafbf8;
    --white: #ffffff;
    --text: #17283e;
    --muted: #617083;
    --border: rgba(26, 45, 78, 0.12);
    --shadow-sm: 0 14px 40px rgba(10, 31, 51, 0.1);
    --shadow-lg: 0 28px 80px rgba(4, 19, 34, 0.24);
    --radius-sm: 14px;
    --radius-md: 20px;
    --radius-lg: 30px;
    --font-sans: "Manrope", "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    min-width: 320px;
    margin: 0;
    color: var(--text);
    background: var(--cream-50);
    font-family: var(--font-sans);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.widget-open {
    overflow: hidden;
}

img,
svg {
    display: block;
}

img {
    max-width: 100%;
}

a {
    color: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

button {
    color: inherit;
    font: inherit;
}

.site-shell {
    width: min(calc(100% - 48px), 1200px);
    margin-inline: auto;
}

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 200;
    padding: 12px 18px;
    color: var(--white);
    background: var(--navy-950);
    border-radius: 10px;
    font-size: 0.875rem;
    font-weight: 700;
    text-decoration: none;
    transform: translateY(-150%);
    transition: transform 180ms ease;
}

.skip-link:focus {
    transform: translateY(0);
}

.icon-library {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
}

.topbar {
    position: absolute;
    inset: 0 0 auto;
    z-index: 20;
    padding-top: 22px;
}

.topbar__inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
}

.brand-card {
    display: grid;
    width: 204px;
    min-height: 102px;
    padding: 13px 20px 14px;
    place-items: center;
    background: rgba(255, 255, 255, 0.97);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 22px;
    box-shadow: 0 18px 46px rgba(4, 19, 34, 0.2);
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.brand-card:hover {
    box-shadow: 0 22px 55px rgba(4, 19, 34, 0.27);
    transform: translateY(-2px);
}

.brand-card:focus-visible,
.topbar-contact:focus-visible,
.contact-option:focus-visible,
.hero__footer a:focus-visible,
.closing-cta__button:focus-visible,
.site-footer a:focus-visible,
.contact-widget button:focus-visible,
.widget-action:focus-visible {
    outline: 3px solid var(--lime-400);
    outline-offset: 4px;
}

.brand-card img {
    width: 164px;
    height: auto;
}

.topbar-contact {
    display: flex;
    min-height: 64px;
    padding: 10px 13px 10px 15px;
    align-items: center;
    gap: 12px;
    color: var(--navy-900);
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.88);
    border-radius: 18px;
    box-shadow: 0 14px 38px rgba(4, 19, 34, 0.16);
    text-decoration: none;
    backdrop-filter: blur(12px);
    transition: transform 180ms ease, background-color 180ms ease;
}

.topbar-contact:hover {
    background: var(--white);
    transform: translateY(-2px);
}

.availability-dot {
    position: relative;
    width: 11px;
    height: 11px;
    flex: 0 0 auto;
    background: var(--green-500);
    border: 2px solid rgba(114, 171, 52, 0.22);
    border-radius: 999px;
    box-shadow: 0 0 0 5px rgba(114, 171, 52, 0.13);
}

.topbar-contact__copy {
    display: grid;
    gap: 2px;
}

.topbar-contact__copy small {
    color: var(--slate-600);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.01em;
}

.topbar-contact__copy strong {
    font-size: 0.88rem;
    line-height: 1.15;
}

.topbar-contact > svg {
    width: 19px;
    height: 19px;
    margin-left: 4px;
    color: var(--green-700);
}

.hero {
    position: relative;
    display: flex;
    min-height: max(820px, 100svh);
    isolation: isolate;
    overflow: hidden;
    color: var(--white);
    background: var(--navy-950);
}

.hero__media,
.hero__veil,
.hero__glow {
    position: absolute;
    inset: 0;
}

.hero__media {
    z-index: -4;
}

.hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 52% center;
}

.hero__veil {
    z-index: -3;
    background:
        linear-gradient(
            90deg,
            rgba(8, 25, 42, 0.98) 0%,
            rgba(12, 34, 56, 0.96) 28%,
            rgba(14, 39, 62, 0.86) 46%,
            rgba(13, 35, 55, 0.35) 70%,
            rgba(8, 24, 39, 0.13) 100%
        ),
        linear-gradient(
            0deg,
            rgba(7, 22, 38, 0.9) 0%,
            rgba(7, 22, 38, 0.05) 34%,
            rgba(7, 22, 38, 0.18) 100%
        );
}

.hero__glow {
    z-index: -2;
    background:
        radial-gradient(circle at 8% 72%, rgba(71, 145, 66, 0.24), transparent 27%),
        radial-gradient(circle at 73% 12%, rgba(161, 198, 60, 0.09), transparent 23%);
    pointer-events: none;
}

.hero__layout {
    display: flex;
    min-height: 100%;
    padding-top: 148px;
    padding-bottom: 112px;
    align-items: center;
}

.hero__content {
    width: min(100%, 690px);
    padding-block: 32px;
}

.eyebrow {
    display: inline-flex;
    margin: 0 0 22px;
    padding: 9px 14px 9px 11px;
    align-items: center;
    gap: 10px;
    color: #dfead4;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 999px;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.075em;
    line-height: 1.2;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
}

.eyebrow span {
    width: 9px;
    height: 9px;
    flex: 0 0 auto;
    background: var(--lime-400);
    border-radius: 999px;
    box-shadow: 0 0 0 5px rgba(161, 198, 60, 0.12);
}

.hero h1 {
    max-width: 680px;
    margin: 0;
    color: var(--white);
    font-size: clamp(3.4rem, 5.2vw, 5.15rem);
    font-weight: 800;
    letter-spacing: -0.065em;
    line-height: 0.98;
    text-wrap: balance;
}

.hero h1 span {
    display: block;
    margin-top: 0.08em;
    color: #b8db68;
    letter-spacing: -0.055em;
}

.hero__lead {
    max-width: 620px;
    margin: 25px 0 0;
    color: rgba(255, 255, 255, 0.79);
    font-size: clamp(1.02rem, 1.45vw, 1.18rem);
    font-weight: 500;
    line-height: 1.65;
}

.assurance-list {
    display: flex;
    margin: 22px 0 0;
    padding: 0;
    flex-wrap: wrap;
    gap: 11px 18px;
    list-style: none;
}

.assurance-list li {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.79rem;
    font-weight: 600;
}

.assurance-list svg {
    width: 17px;
    height: 17px;
    color: #a9ce55;
}

.contact-block {
    width: min(100%, 620px);
    margin-top: 29px;
}

.contact-block__heading {
    display: flex;
    margin-bottom: 12px;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
}

.contact-block__heading p,
.contact-block__heading span {
    margin: 0;
}

.contact-block__heading p {
    color: var(--white);
    font-size: 0.94rem;
    font-weight: 800;
}

.contact-block__heading span {
    color: rgba(255, 255, 255, 0.57);
    font-size: 0.72rem;
}

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

.contact-option {
    position: relative;
    display: flex;
    min-width: 0;
    min-height: 70px;
    padding: 11px 14px;
    align-items: center;
    gap: 11px;
    overflow: hidden;
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition:
        transform 180ms ease,
        box-shadow 180ms ease,
        border-color 180ms ease,
        background-color 180ms ease;
}

.contact-option:first-child {
    grid-column: 1 / -1;
}

.contact-option::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, transparent 25%, rgba(255, 255, 255, 0.13) 48%, transparent 72%);
    content: "";
    pointer-events: none;
    transform: translateX(-110%);
    transition: transform 520ms ease;
}

.contact-option:hover {
    transform: translateY(-2px);
}

.contact-option:hover::after {
    transform: translateX(110%);
}

.contact-option--primary {
    color: var(--white);
    background: linear-gradient(135deg, var(--green-700), #3f923d);
    border: 1px solid rgba(171, 219, 96, 0.24);
    box-shadow: 0 14px 32px rgba(14, 78, 37, 0.29);
}

.contact-option--primary:hover {
    box-shadow: 0 18px 38px rgba(14, 78, 37, 0.38);
}

.contact-option--outline {
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(12px);
}

.contact-option--outline:hover {
    background: rgba(255, 255, 255, 0.13);
    border-color: rgba(255, 255, 255, 0.34);
}

.contact-option--light {
    color: var(--navy-900);
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.92);
    box-shadow: 0 12px 30px rgba(4, 19, 34, 0.16);
}

.contact-option--light:hover {
    background: var(--white);
}

.contact-option__icon {
    display: grid;
    width: 42px;
    height: 42px;
    flex: 0 0 auto;
    color: var(--white);
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    place-items: center;
}

.contact-option--light .contact-option__icon {
    color: var(--green-700);
    background: rgba(41, 117, 50, 0.1);
    border-color: rgba(41, 117, 50, 0.08);
}

.contact-option__icon svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.contact-option__copy {
    display: grid;
    min-width: 0;
    gap: 3px;
}

.contact-option__copy strong {
    overflow: hidden;
    font-size: 0.86rem;
    font-weight: 800;
    line-height: 1.2;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.contact-option__copy small {
    overflow: hidden;
    color: currentColor;
    font-size: 0.68rem;
    font-weight: 500;
    line-height: 1.25;
    opacity: 0.67;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.contact-option__arrow {
    width: 18px;
    height: 18px;
    margin-left: auto;
    flex: 0 0 auto;
    color: currentColor;
    opacity: 0.72;
    transition: transform 180ms ease;
}

.contact-option:hover .contact-option__arrow {
    transform: translateX(3px);
}

.contact-block__note {
    margin: 10px 0 0;
    color: rgba(255, 255, 255, 0.48);
    font-size: 0.65rem;
    line-height: 1.5;
}

.hero__footer {
    position: absolute;
    inset: auto 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(7, 22, 38, 0.31);
    backdrop-filter: blur(10px);
}

.hero__footer-inner {
    display: flex;
    min-height: 72px;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.hero__footer p {
    display: flex;
    margin: 0;
    align-items: center;
    gap: 11px;
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.72rem;
    font-weight: 600;
}

.hero__footer p span {
    width: 28px;
    height: 1px;
    background: var(--green-500);
}

.hero__footer a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.72rem;
    font-weight: 700;
    text-decoration: none;
}

.hero__footer a svg {
    width: 17px;
    height: 17px;
    animation: float-down 1.7s ease-in-out infinite;
}

@keyframes float-down {
    0%,
    100% {
        transform: translateY(-2px);
    }

    50% {
        transform: translateY(3px);
    }
}

.guidance {
    position: relative;
    padding: 112px 0 104px;
    overflow: hidden;
    background:
        radial-gradient(circle at 8% 12%, rgba(114, 171, 52, 0.1), transparent 23%),
        var(--cream-50);
}

.guidance::after {
    position: absolute;
    top: -130px;
    right: -95px;
    width: 330px;
    height: 330px;
    border: 1px solid rgba(41, 117, 50, 0.09);
    border-radius: 48% 52% 64% 36%;
    content: "";
    transform: rotate(18deg);
}

.guidance__intro {
    position: relative;
    z-index: 1;
    display: grid;
    margin-bottom: 54px;
    grid-template-columns: 1.1fr 0.78fr;
    align-items: end;
    gap: clamp(40px, 8vw, 110px);
}

.section-kicker {
    margin: 0 0 14px;
    color: var(--green-700);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.guidance h2,
.closing-cta h2 {
    margin: 0;
    font-size: clamp(2.2rem, 3.8vw, 3.7rem);
    font-weight: 800;
    letter-spacing: -0.055em;
    line-height: 1.08;
    text-wrap: balance;
}

.guidance__intro > p {
    margin: 0 0 5px;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.75;
}

.guidance-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.guidance-card {
    position: relative;
    min-height: 285px;
    padding: 30px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: 0 16px 46px rgba(13, 43, 67, 0.055);
    transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.guidance-card:hover {
    border-color: rgba(41, 117, 50, 0.22);
    box-shadow: var(--shadow-sm);
    transform: translateY(-5px);
}

.guidance-card__number {
    position: absolute;
    top: 23px;
    right: 24px;
    color: rgba(26, 45, 78, 0.18);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.guidance-card > svg {
    width: 48px;
    height: 48px;
    padding: 11px;
    color: var(--green-700);
    background: rgba(114, 171, 52, 0.11);
    border: 1px solid rgba(41, 117, 50, 0.09);
    border-radius: 15px;
}

.guidance-card h3 {
    max-width: 270px;
    margin: 34px 0 12px;
    color: var(--navy-900);
    font-size: 1.18rem;
    font-weight: 800;
    letter-spacing: -0.025em;
    line-height: 1.3;
}

.guidance-card p {
    margin: 0;
    color: var(--muted);
    font-size: 0.88rem;
    line-height: 1.72;
}

.closing-cta {
    padding: 0 0 96px;
    background: var(--cream-50);
}

.closing-cta__card {
    position: relative;
    display: grid;
    min-height: 290px;
    padding: clamp(42px, 6vw, 72px);
    overflow: hidden;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: clamp(38px, 7vw, 90px);
    color: var(--white);
    background:
        radial-gradient(circle at 85% 20%, rgba(161, 198, 60, 0.2), transparent 25%),
        linear-gradient(125deg, var(--navy-900), #153b4c 70%, #1f6046);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.closing-cta__card::after {
    position: absolute;
    right: -50px;
    bottom: -145px;
    width: 360px;
    height: 280px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    content: "";
    transform: rotate(-14deg);
}

.section-kicker--light {
    color: #c4df7f;
}

.closing-cta h2 {
    position: relative;
    z-index: 1;
    max-width: 690px;
    font-size: clamp(2rem, 3.5vw, 3.35rem);
}

.closing-cta__button {
    position: relative;
    z-index: 2;
    display: flex;
    min-width: 310px;
    min-height: 82px;
    padding: 13px 16px;
    align-items: center;
    gap: 13px;
    color: var(--navy-900);
    background: var(--white);
    border-radius: 18px;
    box-shadow: 0 16px 40px rgba(2, 17, 29, 0.23);
    text-decoration: none;
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.closing-cta__button:hover {
    box-shadow: 0 20px 48px rgba(2, 17, 29, 0.31);
    transform: translateY(-3px);
}

.closing-cta__button > svg:first-child {
    width: 46px;
    height: 46px;
    padding: 11px;
    color: var(--white);
    fill: currentColor;
    background: var(--green-700);
    border-radius: 13px;
}

.closing-cta__button span {
    display: grid;
    gap: 3px;
}

.closing-cta__button small {
    color: var(--muted);
    font-size: 0.65rem;
    font-weight: 600;
}

.closing-cta__button strong {
    font-size: 0.88rem;
    font-weight: 800;
}

.closing-cta__arrow {
    width: 19px;
    height: 19px;
    margin-left: auto;
    color: var(--green-700);
    transition: transform 180ms ease;
}

.closing-cta__button:hover .closing-cta__arrow {
    transform: translateX(3px);
}

.site-footer {
    padding: 32px 0;
    background: var(--white);
    border-top: 1px solid var(--border);
}

.site-footer__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.site-footer img {
    width: 132px;
    height: auto;
}

.site-footer__copy {
    display: grid;
    justify-items: end;
    gap: 5px;
}

.site-footer__copy p {
    margin: 0;
    color: var(--muted);
    font-size: 0.72rem;
}

.site-footer__copy a {
    color: var(--green-700);
    font-size: 0.75rem;
    font-weight: 800;
    text-decoration: none;
}

.site-footer__copy a:hover {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.contact-widget__backdrop {
    position: fixed;
    inset: 0;
    z-index: 70;
    opacity: 0;
    background: rgba(5, 19, 32, 0.52);
    backdrop-filter: blur(3px);
    transition: opacity 180ms ease;
}

.contact-widget__backdrop.is-visible {
    opacity: 1;
}

[hidden] {
    display: none !important;
}

.contact-widget__panel {
    position: fixed;
    right: 26px;
    bottom: 98px;
    z-index: 72;
    width: min(380px, calc(100vw - 32px));
    overflow: hidden;
    opacity: 0;
    background: var(--white);
    border: 1px solid rgba(26, 45, 78, 0.1);
    border-radius: 24px;
    box-shadow: 0 28px 80px rgba(4, 19, 34, 0.32);
    transform: translateY(16px) scale(0.98);
    transform-origin: right bottom;
    transition: opacity 180ms ease, transform 180ms ease;
}

.contact-widget__panel.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.contact-widget__head {
    display: flex;
    min-height: 88px;
    padding: 17px 18px;
    align-items: center;
    gap: 12px;
    color: var(--white);
    background:
        radial-gradient(circle at 95% 0%, rgba(161, 198, 60, 0.26), transparent 35%),
        linear-gradient(125deg, var(--navy-900), #17613e);
}

.contact-widget__avatar {
    display: grid;
    width: 46px;
    height: 46px;
    flex: 0 0 auto;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 14px;
    place-items: center;
}

.contact-widget__avatar svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
}

.contact-widget__head div {
    display: grid;
    gap: 3px;
}

.contact-widget__head p {
    margin: 0;
    font-size: 0.9rem;
    font-weight: 800;
}

.contact-widget__head div span {
    color: rgba(255, 255, 255, 0.69);
    font-size: 0.66rem;
    font-weight: 600;
}

.contact-widget__head button {
    display: grid;
    width: 42px;
    height: 42px;
    margin-left: auto;
    padding: 0;
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    cursor: pointer;
    font-size: 1.4rem;
    line-height: 1;
    place-items: center;
}

.contact-widget__body {
    padding: 20px;
}

.contact-widget__body > p {
    position: relative;
    margin: 0 0 17px;
    padding: 14px 15px;
    color: #48596c;
    background: #f0f4ed;
    border-radius: 5px 15px 15px;
    font-size: 0.78rem;
    line-height: 1.65;
}

.widget-action {
    display: flex;
    min-height: 52px;
    padding: 11px 14px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border-radius: 13px;
    font-size: 0.78rem;
    font-weight: 800;
    text-align: center;
    text-decoration: none;
    transition: transform 180ms ease, background-color 180ms ease;
}

.widget-action:hover {
    transform: translateY(-2px);
}

.widget-action svg {
    width: 18px;
    height: 18px;
}

.widget-action--primary {
    color: var(--white);
    background: var(--green-700);
    box-shadow: 0 12px 28px rgba(31, 105, 46, 0.19);
}

.widget-action--primary svg {
    fill: currentColor;
}

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

.widget-action--secondary {
    margin-top: 8px;
    color: var(--navy-800);
    background: transparent;
    border: 1px solid var(--border);
}

.widget-action--secondary svg {
    margin-left: auto;
}

.widget-action--secondary:hover {
    background: var(--cream-100);
}

.contact-widget__toggle {
    position: fixed;
    right: 26px;
    bottom: 26px;
    z-index: 73;
    display: flex;
    min-width: 210px;
    min-height: 60px;
    padding: 10px 17px 10px 14px;
    align-items: center;
    gap: 10px;
    color: var(--white);
    background: linear-gradient(135deg, var(--green-700), #3e923b);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 18px;
    box-shadow: 0 18px 48px rgba(10, 61, 28, 0.34);
    cursor: pointer;
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.contact-widget__toggle:hover {
    box-shadow: 0 22px 56px rgba(10, 61, 28, 0.42);
    transform: translateY(-3px);
}

.contact-widget__toggle > svg {
    width: 25px;
    height: 25px;
    flex: 0 0 auto;
    fill: currentColor;
}

.contact-widget__toggle > span:last-child {
    display: grid;
    gap: 1px;
    text-align: left;
}

.contact-widget__toggle small {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.67rem;
    font-weight: 600;
}

.contact-widget__toggle strong {
    font-size: 0.78rem;
    font-weight: 800;
}

.contact-widget__pulse {
    position: absolute;
    top: -3px;
    right: -3px;
    width: 13px;
    height: 13px;
    background: #c1e46a;
    border: 3px solid var(--green-700);
    border-radius: 999px;
}

.contact-widget__pulse::after {
    position: absolute;
    inset: -6px;
    border: 1px solid rgba(193, 228, 106, 0.7);
    border-radius: inherit;
    content: "";
    animation: pulse-ring 1.8s ease-out infinite;
}

@keyframes pulse-ring {
    0% {
        opacity: 0.8;
        transform: scale(0.55);
    }

    75%,
    100% {
        opacity: 0;
        transform: scale(1.35);
    }
}

@media (max-width: 980px) {
    .hero__veil {
        background:
            linear-gradient(
                90deg,
                rgba(8, 25, 42, 0.98) 0%,
                rgba(12, 34, 56, 0.94) 45%,
                rgba(13, 35, 55, 0.52) 78%,
                rgba(8, 24, 39, 0.26) 100%
            ),
            linear-gradient(0deg, rgba(7, 22, 38, 0.94), transparent 55%);
    }

    .hero__content {
        width: min(100%, 630px);
    }

    .hero h1 {
        font-size: clamp(3.2rem, 7vw, 4.6rem);
    }

    .guidance__intro {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .guidance__intro > p {
        max-width: 700px;
    }

    .closing-cta__card {
        grid-template-columns: 1fr;
    }

    .closing-cta__button {
        width: min(100%, 380px);
    }
}

@media (max-width: 720px) {
    .site-shell {
        width: min(calc(100% - 32px), 1200px);
    }

    .topbar {
        padding-top: 15px;
    }

    .brand-card {
        width: 154px;
        min-height: 78px;
        padding: 10px 15px;
        border-radius: 17px;
    }

    .brand-card img {
        width: 126px;
    }

    .topbar-contact {
        min-height: 54px;
        padding: 10px 12px;
        border-radius: 16px;
    }

    .topbar-contact__copy small,
    .topbar-contact > svg {
        display: none;
    }

    .topbar-contact__copy strong {
        max-width: 82px;
        font-size: 0.73rem;
    }

    .availability-dot {
        width: 9px;
        height: 9px;
    }

    .hero {
        min-height: 910px;
    }

    .hero__media img {
        object-position: 69% center;
    }

    .hero__veil {
        background:
            linear-gradient(
                180deg,
                rgba(8, 25, 42, 0.76) 0%,
                rgba(9, 28, 47, 0.78) 20%,
                rgba(10, 30, 50, 0.93) 48%,
                rgba(8, 25, 42, 0.99) 82%,
                rgba(8, 25, 42, 1) 100%
            ),
            linear-gradient(90deg, rgba(8, 25, 42, 0.72), rgba(8, 25, 42, 0.2));
    }

    .hero__layout {
        padding-top: 119px;
        padding-bottom: 96px;
        align-items: flex-start;
    }

    .hero__content {
        padding-top: 28px;
    }

    .eyebrow {
        max-width: 100%;
        margin-bottom: 17px;
        padding: 8px 12px 8px 10px;
        font-size: 0.65rem;
        line-height: 1.35;
    }

    .hero h1 {
        max-width: 560px;
        font-size: clamp(2.55rem, 11.2vw, 3.75rem);
        line-height: 1.01;
    }

    .hero__lead {
        margin-top: 18px;
        font-size: 0.98rem;
        line-height: 1.55;
    }

    .assurance-list {
        margin-top: 17px;
        gap: 9px 14px;
    }

    .assurance-list li {
        font-size: 0.7rem;
    }

    .contact-block {
        margin-top: 22px;
    }

    .contact-block__heading {
        display: block;
    }

    .contact-block__heading p {
        font-size: 0.86rem;
    }

    .contact-block__heading span {
        display: block;
        margin-top: 3px;
    }

    .contact-options {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .contact-option,
    .contact-option:first-child {
        min-height: 62px;
        grid-column: auto;
    }

    .contact-option__icon {
        width: 38px;
        height: 38px;
    }

    .contact-option__copy strong {
        font-size: 0.8rem;
    }

    .contact-block__note {
        display: none;
    }

    .hero__footer-inner {
        min-height: 58px;
    }

    .hero__footer a {
        display: none;
    }

    .hero__footer p {
        font-size: 0.65rem;
    }

    .guidance {
        padding: 76px 0 70px;
    }

    .guidance__intro {
        margin-bottom: 34px;
    }

    .guidance h2,
    .closing-cta h2 {
        font-size: clamp(2rem, 9vw, 2.75rem);
    }

    .guidance__intro > p {
        font-size: 0.93rem;
        line-height: 1.7;
    }

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

    .guidance-card {
        min-height: auto;
        padding: 25px;
    }

    .guidance-card h3 {
        margin-top: 25px;
    }

    .closing-cta {
        padding-bottom: 70px;
    }

    .closing-cta__card {
        min-height: 0;
        padding: 38px 25px;
        gap: 30px;
        border-radius: 24px;
    }

    .closing-cta__button {
        min-width: 0;
        min-height: 74px;
    }

    .site-footer {
        padding: 27px 0 104px;
    }

    .site-footer__inner {
        align-items: flex-start;
    }

    .site-footer img {
        width: 104px;
    }

    .site-footer__copy {
        max-width: 210px;
        justify-items: end;
        text-align: right;
    }

    .contact-widget__panel {
        right: 14px;
        bottom: calc(84px + env(safe-area-inset-bottom, 0px));
        left: 14px;
        width: auto;
        transform-origin: center bottom;
    }

    .contact-widget__toggle {
        right: 14px;
        bottom: calc(12px + env(safe-area-inset-bottom, 0px));
        left: 14px;
        min-width: 0;
        min-height: 60px;
        justify-content: center;
        border-radius: 17px;
    }
}

@media (max-width: 420px) {
    .topbar-contact {
        padding-inline: 10px;
    }

    .topbar-contact__copy strong {
        max-width: 68px;
        font-size: 0.66rem;
    }

    .hero {
        min-height: 930px;
    }

    .hero h1 {
        font-size: clamp(2.35rem, 11.4vw, 3rem);
    }

    .hero__lead {
        font-size: 0.91rem;
    }

    .assurance-list li {
        font-size: 0.66rem;
    }

    .contact-option__copy small {
        font-size: 0.61rem;
    }

    .contact-widget__body {
        padding: 17px;
    }
}

@media (min-width: 721px) and (max-height: 850px) {
    .hero {
        min-height: 800px;
    }

    .hero__layout {
        padding-top: 130px;
        padding-bottom: 96px;
    }

    .hero__content {
        padding-block: 21px;
    }

    .hero h1 {
        font-size: clamp(3.25rem, 4.8vw, 4.55rem);
    }

    .hero__lead {
        margin-top: 19px;
    }

    .assurance-list {
        margin-top: 17px;
    }

    .contact-block {
        margin-top: 22px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}
