@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Sora:wght@600;700;800&display=swap');

:root {
    --ink: #111513;
    --graphite: #2b302c;
    --muted: #68716c;
    --canvas: #f6f4ec;
    --panel: #fffefa;
    --line: #ded9ca;
    --line-dark: rgba(255, 254, 250, .14);
    --emerald: #11885b;
    --emerald-bright: #55d88e;
    --amber: #c88419;
    --coral: #d95f45;
    --violet: #6654d9;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
    background: var(--canvas);
    color: var(--ink);
    font-family: Manrope, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

h1,
h2,
h3,
.display-font {
    font-family: Sora, Manrope, ui-sans-serif, system-ui, sans-serif;
    letter-spacing: 0;
}

a,
button,
summary,
input,
textarea {
    transition: background-color .2s ease, border-color .2s ease, box-shadow .2s ease, color .2s ease, opacity .2s ease, transform .2s ease;
}

button,
input,
textarea,
select {
    font: inherit;
}

input,
textarea {
    border-radius: .85rem;
}

input:focus,
textarea:focus {
    border-color: var(--emerald);
    box-shadow: 0 0 0 4px rgba(17, 136, 91, .14);
    outline: none;
}

::selection {
    background: rgba(85, 216, 142, .3);
}

.site-shell {
    min-height: 100vh;
    background:
        linear-gradient(90deg, rgba(17, 136, 91, .04) 1px, transparent 1px),
        linear-gradient(180deg, rgba(17, 136, 91, .04) 1px, transparent 1px),
        var(--canvas);
    background-size: 44px 44px;
}

.brand-mark {
    display: grid;
    height: 2.35rem;
    width: 2.35rem;
    place-items: center;
    border-radius: .8rem;
    color: #fffefa;
    background:
        linear-gradient(135deg, rgba(85, 216, 142, .28), transparent 42%),
        #111513;
    box-shadow: inset 0 0 0 1px rgba(255, 254, 250, .12), 0 14px 26px rgba(17, 21, 19, .16);
}

.nav-link {
    position: relative;
    color: #4c554f;
}

.nav-link:hover,
.nav-link.is-active {
    color: var(--ink);
}

.nav-link.is-active::after,
.nav-link:hover::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -.55rem;
    height: 2px;
    border-radius: 999px;
    background: var(--emerald);
}

.hamburger-btn {
    display: inline-flex;
    height: 2.6rem;
    width: 2.6rem;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    border: 1px solid var(--line);
    border-radius: .8rem;
    background: rgba(255, 254, 250, .82);
}

.hamburger-btn span {
    display: block;
    height: 2px;
    width: 1.15rem;
    border-radius: 999px;
    background: var(--ink);
    transform-origin: center;
}

.hamburger-btn[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.hamburger-btn[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.hamburger-btn[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.mobile-menu a {
    border-radius: .8rem;
    padding: .75rem .9rem;
}

.page-band {
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(17, 21, 19, .08);
    background:
        radial-gradient(circle at 78% 12%, rgba(85, 216, 142, .18), transparent 32%),
        radial-gradient(circle at 6% 20%, rgba(200, 132, 25, .16), transparent 28%),
        linear-gradient(135deg, #fffefa, #efeadc);
}

.hero-slider {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background:
        linear-gradient(125deg, rgba(17, 21, 19, .96), rgba(29, 35, 31, .94) 52%, rgba(61, 50, 26, .9)),
        url("images/security-suite.svg") right center / min(760px, 70vw) no-repeat;
}

.hero-slider::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(90deg, rgba(255, 254, 250, .06) 1px, transparent 1px),
        linear-gradient(180deg, rgba(255, 254, 250, .05) 1px, transparent 1px);
    background-size: 54px 54px;
    mask-image: linear-gradient(90deg, #000, transparent 78%);
}

.hero-slide {
    display: none;
    animation: fadeSlide .55s ease both;
}

.hero-slide.is-active {
    display: block;
}

.slider-dot {
    height: 10px;
    width: 10px;
    border-radius: 999px;
    background: rgba(255, 254, 250, .38);
}

.slider-dot.is-active {
    width: 36px;
    background: var(--emerald-bright);
}

.hero-visual {
    position: relative;
    min-height: 430px;
}

.scan-card {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--line-dark);
    border-radius: 1.4rem;
    background: linear-gradient(180deg, rgba(255, 254, 250, .12), rgba(255, 254, 250, .05));
    box-shadow: 0 30px 80px rgba(0, 0, 0, .34);
    backdrop-filter: blur(18px);
}

.scan-card::after {
    content: "";
    position: absolute;
    inset: -45% 0 auto;
    height: 65%;
    background: linear-gradient(180deg, transparent, rgba(85, 216, 142, .16), transparent);
    animation: scan 4.6s linear infinite;
}

.signal-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    border: 1px solid rgba(255, 254, 250, .1);
    border-radius: 1rem;
    background: rgba(255, 254, 250, .08);
    padding: .85rem;
}

.signal-bars span {
    display: block;
    height: .45rem;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--emerald-bright), var(--amber));
}

.eyebrow,
.page-kicker {
    color: var(--emerald);
    font-size: .76rem;
    font-weight: 800;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.page-title {
    color: var(--ink);
    font-size: clamp(2.45rem, 5vw, 4.6rem);
    font-weight: 800;
    line-height: 1.02;
}

.accent {
    color: var(--emerald);
}

.section-heading {
    margin-inline: auto;
    max-width: 760px;
    text-align: center;
}

.section-heading h2 {
    margin-top: .8rem;
    color: var(--ink);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.08;
}

.section-heading span {
    display: block;
    margin-top: 1rem;
    color: var(--muted);
    line-height: 1.75;
}

.section-heading-dark .eyebrow,
.section-heading-dark p {
    color: var(--emerald-bright);
}

.section-heading-dark h2 {
    color: #fffefa;
}

.section-heading-dark span {
    color: rgba(255, 254, 250, .72);
}

.soft-section {
    background: linear-gradient(180deg, rgba(255, 254, 250, .74), rgba(239, 234, 220, .78));
}

.dark-section {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(255, 254, 250, .05) 1px, transparent 1px),
        linear-gradient(180deg, rgba(255, 254, 250, .04) 1px, transparent 1px),
        #111513;
    background-size: 48px 48px;
    color: #fffefa;
}

.glass-card,
.product-card,
.feature-card,
.step-card,
.testimonial-card,
.review-panel,
.review-list-card,
.faq-item,
.policy-card {
    border: 1px solid rgba(17, 21, 19, .1);
    border-radius: 1.15rem;
    background: rgba(255, 254, 250, .9);
    box-shadow: 0 18px 45px rgba(44, 38, 23, .08);
}

.product-card,
.feature-card,
.step-card,
.testimonial-card,
.policy-card {
    padding: 1.35rem;
}

.product-card {
    position: relative;
    display: flex;
    min-height: 100%;
    flex-direction: column;
}

.product-card:hover,
.feature-card:hover,
.step-card:hover,
.testimonial-card:hover,
.review-list-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 55px rgba(44, 38, 23, .12);
}

.product-card.is-featured {
    border-color: rgba(17, 136, 91, .36);
    box-shadow: 0 24px 60px rgba(17, 136, 91, .16);
}

.badge-pill,
.ribbon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(17, 136, 91, .22);
    border-radius: 999px;
    background: rgba(85, 216, 142, .14);
    color: #0b6845;
    padding: .38rem .72rem;
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.ribbon {
    position: absolute;
    right: 1.1rem;
    top: 1rem;
}

.icon-tile,
.review-list-card strong,
.feature-card span,
.support-row span {
    display: grid;
    height: 2.55rem;
    width: 2.55rem;
    flex: 0 0 2.55rem;
    place-items: center;
    border-radius: .9rem;
    background: #111513;
    color: var(--emerald-bright);
    font-weight: 800;
}

.feature-card h2,
.feature-card h3,
.step-card h3,
.testimonial-card figcaption {
    margin-top: 1rem;
    color: var(--ink);
    font-size: 1.04rem;
    font-weight: 800;
}

.feature-card p,
.step-card p,
.testimonial-card blockquote,
.review-list-card p,
.policy-card p {
    margin-top: .55rem;
    color: var(--muted);
    font-size: .92rem;
    line-height: 1.68;
}

.review-list-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.05rem;
}

.review-list-card > div {
    min-width: 0;
}

.review-list-card a,
.review-list-card div {
    overflow-wrap: anywhere;
}

.metric-tile {
    border: 1px solid rgba(255, 254, 250, .14);
    border-radius: 1rem;
    background: rgba(255, 254, 250, .08);
    padding: 1rem;
    backdrop-filter: blur(12px);
}

.metric-tile strong {
    display: block;
    color: #fffefa;
    font-size: 1.55rem;
    font-weight: 800;
}

.metric-tile span {
    display: block;
    margin-top: .25rem;
    color: rgba(255, 254, 250, .68);
    font-size: .76rem;
    font-weight: 700;
}

.btn-primary,
.btn-secondary,
.outline-blue-btn,
.visit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.85rem;
    border-radius: .9rem;
    padding: .82rem 1.15rem;
    font-size: .86rem;
    font-weight: 800;
    line-height: 1.2;
}

.btn-primary,
.visit-btn-red {
    border: 1px solid #111513;
    background: #111513;
    color: #fffefa;
    box-shadow: 0 16px 34px rgba(17, 21, 19, .18);
}

.btn-primary:hover,
.visit-btn-red:hover {
    background: #1e251f;
    transform: translateY(-2px);
}

.btn-secondary,
.outline-blue-btn,
.visit-btn {
    border: 1px solid var(--line);
    background: rgba(255, 254, 250, .86);
    color: var(--ink);
}

.btn-secondary:hover,
.outline-blue-btn:hover,
.visit-btn:hover {
    border-color: rgba(17, 136, 91, .4);
    background: rgba(85, 216, 142, .14);
    transform: translateY(-2px);
}

.product-image-panel {
    display: grid;
    place-items: center;
    overflow: hidden;
    border: 1px solid rgba(17, 21, 19, .08);
    border-radius: 1rem;
    background:
        radial-gradient(circle at 28% 18%, rgba(85, 216, 142, .18), transparent 34%),
        radial-gradient(circle at 82% 70%, rgba(200, 132, 25, .13), transparent 32%),
        #f8f5e9;
}

.product-image {
    width: auto;
    max-width: 90%;
    height: auto;
    max-height: 96%;
    object-fit: contain;
    filter: drop-shadow(0 18px 22px rgba(17, 21, 19, .18));
}

.product-image-card {
    height: 210px;
    max-width: 96%;
}

.product-image-detail {
    width: 100%;
    height: 320px;
    max-width: 100%;
}

.product-image-cart {
    height: 76px;
    max-width: 96%;
}

.form-shell input,
.form-shell textarea {
    border: 1px solid var(--line);
    background: #fffefa;
}

.form-shell label {
    color: var(--graphite);
}

.faq-item {
    padding: 1.25rem;
}

.faq-item summary {
    cursor: pointer;
    color: var(--ink);
    font-weight: 800;
}

.faq-item p {
    margin-top: .75rem;
    color: var(--muted);
    line-height: 1.7;
}

.policy-card.prose h2,
.review-panel.prose h2 {
    margin-top: 1.75rem;
    color: var(--ink);
    font-family: Sora, Manrope, sans-serif;
    font-size: 1.18rem;
    font-weight: 800;
}

.policy-card.prose p,
.review-panel.prose p {
    margin-top: .85rem;
    line-height: 1.78;
}

.service-visual {
    min-height: 360px;
    background:
        linear-gradient(120deg, rgba(17, 21, 19, .94), rgba(17, 21, 19, .78)),
        url("images/antivirus-services.png") center / cover no-repeat;
}

.service-visual-mobile {
    min-height: 300px;
    background:
        linear-gradient(120deg, rgba(17, 21, 19, .9), rgba(17, 21, 19, .66)),
        url("images/mobile-antivirus.png") center / cover no-repeat;
}

.fade-up {
    animation: fadeUp .7s ease both;
}

@keyframes fadeSlide {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(14px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scan {
    from {
        transform: translateY(-20%);
    }
    to {
        transform: translateY(190%);
    }
}

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

@media (max-width: 767px) {
    .hero-slider {
        background:
            linear-gradient(125deg, rgba(17, 21, 19, .97), rgba(29, 35, 31, .94)),
            url("images/security-suite.svg") right bottom / 560px no-repeat;
    }

    .hero-visual {
        min-height: 320px;
    }

    .page-title {
        font-size: clamp(2.2rem, 12vw, 3.25rem);
    }

    .product-image-card {
        height: 185px;
    }

    .product-image-detail {
        height: 260px;
    }
}

/* 2026 cybersecurity redesign layer */
:root {
    --ink: #07111f;
    --graphite: #152235;
    --muted: #607089;
    --canvas: #eef7ff;
    --panel: #ffffff;
    --line: rgba(7, 17, 31, .1);
    --line-dark: rgba(103, 232, 249, .16);
    --emerald: #0077ff;
    --emerald-bright: #37f4ff;
    --amber: #7dd3fc;
    --coral: #ff5c7a;
    --violet: #7c3aed;
}

body {
    background: #eef7ff;
    color: var(--ink);
}

.site-shell {
    background:
        radial-gradient(circle at 15% -8%, rgba(55, 244, 255, .22), transparent 32rem),
        radial-gradient(circle at 94% 12%, rgba(0, 119, 255, .18), transparent 30rem),
        linear-gradient(90deg, rgba(0, 119, 255, .045) 1px, transparent 1px),
        linear-gradient(180deg, rgba(0, 119, 255, .045) 1px, transparent 1px),
        #eef7ff;
    background-size: auto, auto, 42px 42px, 42px 42px, auto;
}

.brand-mark {
    color: #07111f;
    background:
        radial-gradient(circle at 30% 20%, rgba(255, 255, 255, .95), transparent 28%),
        linear-gradient(135deg, #37f4ff, #0077ff 68%, #7c3aed);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.38), 0 18px 36px rgba(0, 119, 255, .28);
}

.nav-link {
    color: rgba(255, 255, 255, .72);
}

.nav-link:hover,
.nav-link.is-active {
    color: #67e8f9;
}

.nav-link.is-active::after,
.nav-link:hover::after {
    background: linear-gradient(90deg, #37f4ff, #0077ff);
    box-shadow: 0 0 18px rgba(55, 244, 255, .55);
}

.hamburger-btn {
    border-color: rgba(103, 232, 249, .22);
    background: rgba(255, 255, 255, .08);
}

.hamburger-btn span {
    background: #e6fbff;
}

.page-band {
    background:
        radial-gradient(circle at 82% 8%, rgba(55, 244, 255, .26), transparent 26rem),
        radial-gradient(circle at 8% 26%, rgba(0, 119, 255, .18), transparent 24rem),
        linear-gradient(135deg, #f8fcff 0%, #e8f5ff 54%, #eef7ff 100%);
    border-bottom-color: rgba(0, 119, 255, .1);
}

.page-band::before,
.soft-section::before,
.dark-section::before {
    content: "";
    position: absolute;
    pointer-events: none;
}

.page-band::before {
    inset: 0;
    background:
        linear-gradient(90deg, rgba(0, 119, 255, .06) 1px, transparent 1px),
        linear-gradient(180deg, rgba(0, 119, 255, .05) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: linear-gradient(180deg, #000, transparent 82%);
}

.page-band > * {
    position: relative;
}

.hero-slider {
    background:
        radial-gradient(circle at 72% 20%, rgba(55, 244, 255, .2), transparent 28rem),
        radial-gradient(circle at 85% 78%, rgba(124, 58, 237, .16), transparent 28rem),
        linear-gradient(125deg, rgba(7, 17, 31, .98), rgba(9, 32, 64, .96) 52%, rgba(4, 10, 24, .98)),
        url("images/security-suite.svg") right center / min(760px, 70vw) no-repeat;
}

.hero-slider::before,
.dark-section {
    background-size: 48px 48px;
}

.hero-slider::before {
    background:
        linear-gradient(90deg, rgba(103, 232, 249, .08) 1px, transparent 1px),
        linear-gradient(180deg, rgba(103, 232, 249, .06) 1px, transparent 1px);
}

.scan-card {
    border-color: rgba(103, 232, 249, .22);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .14), rgba(255, 255, 255, .055)),
        rgba(7, 17, 31, .5);
    box-shadow: 0 34px 90px rgba(0, 0, 0, .42), 0 0 70px rgba(0, 119, 255, .16);
}

.scan-card::after {
    background: linear-gradient(180deg, transparent, rgba(55, 244, 255, .18), transparent);
}

.signal-row {
    border-color: rgba(103, 232, 249, .16);
    background: rgba(255, 255, 255, .075);
}

.signal-bars span {
    background: linear-gradient(90deg, #37f4ff, #0077ff);
    box-shadow: 0 0 18px rgba(55, 244, 255, .35);
}

.eyebrow,
.page-kicker,
.accent {
    color: #0077ff;
}

.section-heading-dark .eyebrow,
.section-heading-dark p,
.section-heading-dark span {
    color: rgba(178, 245, 255, .76);
}

.soft-section {
    position: relative;
    background:
        radial-gradient(circle at 8% 0%, rgba(55, 244, 255, .13), transparent 25rem),
        linear-gradient(180deg, rgba(255, 255, 255, .84), rgba(232, 245, 255, .9));
}

.dark-section {
    background:
        radial-gradient(circle at 20% 0%, rgba(55, 244, 255, .16), transparent 28rem),
        radial-gradient(circle at 90% 90%, rgba(0, 119, 255, .16), transparent 30rem),
        linear-gradient(90deg, rgba(103, 232, 249, .06) 1px, transparent 1px),
        linear-gradient(180deg, rgba(103, 232, 249, .045) 1px, transparent 1px),
        #07111f;
}

.glass-card,
.product-card,
.feature-card,
.step-card,
.testimonial-card,
.review-panel,
.review-list-card,
.faq-item,
.policy-card {
    border-color: rgba(0, 119, 255, .11);
    background: rgba(255, 255, 255, .88);
    box-shadow: 0 24px 70px rgba(7, 17, 31, .1);
    backdrop-filter: blur(16px);
}

.product-card {
    overflow: hidden;
}

.product-card::before,
.feature-card::before,
.step-card::before,
.testimonial-card::before,
.policy-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 3px;
    background: linear-gradient(90deg, #37f4ff, #0077ff, #7c3aed);
    opacity: .72;
}

.feature-card,
.step-card,
.testimonial-card,
.policy-card {
    position: relative;
    overflow: hidden;
}

.product-card:hover,
.feature-card:hover,
.step-card:hover,
.testimonial-card:hover,
.review-list-card:hover {
    box-shadow: 0 28px 80px rgba(0, 119, 255, .16);
}

.product-card.is-featured {
    border-color: rgba(0, 119, 255, .34);
    box-shadow: 0 28px 80px rgba(0, 119, 255, .2);
}

.badge-pill,
.ribbon {
    border-color: rgba(0, 119, 255, .2);
    background: linear-gradient(135deg, rgba(55, 244, 255, .18), rgba(0, 119, 255, .1));
    color: #0755c7;
}

.icon-tile,
.review-list-card strong,
.feature-card span,
.support-row span {
    background: linear-gradient(135deg, #07111f, #0a2b55);
    color: #37f4ff;
    box-shadow: inset 0 0 0 1px rgba(103, 232, 249, .16), 0 14px 28px rgba(7, 17, 31, .18);
}

.btn-primary,
.visit-btn-red {
    border-color: #0077ff;
    background: linear-gradient(135deg, #37f4ff, #0077ff);
    color: #07111f;
    box-shadow: 0 18px 38px rgba(0, 119, 255, .24);
}

.btn-primary:hover,
.visit-btn-red:hover {
    background: linear-gradient(135deg, #ffffff, #37f4ff);
    transform: translateY(-2px);
}

.btn-secondary,
.outline-blue-btn,
.visit-btn {
    border-color: rgba(0, 119, 255, .15);
    background: rgba(255, 255, 255, .82);
    color: #07111f;
}

.btn-secondary:hover,
.outline-blue-btn:hover,
.visit-btn:hover {
    border-color: rgba(0, 119, 255, .38);
    background: rgba(55, 244, 255, .13);
}

.product-image-panel {
    background:
        radial-gradient(circle at 30% 18%, rgba(55, 244, 255, .22), transparent 34%),
        radial-gradient(circle at 82% 75%, rgba(0, 119, 255, .16), transparent 33%),
        linear-gradient(145deg, #ffffff, #e9f7ff);
    border-color: rgba(0, 119, 255, .1);
}

input:focus,
textarea:focus {
    border-color: #0077ff;
    box-shadow: 0 0 0 4px rgba(0, 119, 255, .14);
}

::selection {
    background: rgba(55, 244, 255, .35);
}

.metric-tile {
    border-color: rgba(103, 232, 249, .16);
    background: rgba(255, 255, 255, .08);
}

.slider-dot.is-active {
    background: #37f4ff;
}

.service-bar {
    background: linear-gradient(135deg, #37f4ff, #0077ff) !important;
    border-color: rgba(7, 17, 31, .9) !important;
}

.bar-icon,
.call-cta i {
    background: #07111f !important;
    color: #37f4ff !important;
}

@media (max-width: 767px) {
    .hero-slider {
        background:
            radial-gradient(circle at 70% 18%, rgba(55, 244, 255, .17), transparent 20rem),
            linear-gradient(125deg, rgba(7, 17, 31, .98), rgba(9, 32, 64, .96)),
            url("images/security-suite.svg") right bottom / 560px no-repeat;
    }
}

/* Requested layout refresh: stronger header, new home hero, modern inner pages */
.site-header {
    background:
        linear-gradient(90deg, rgba(55, 244, 255, .07) 1px, transparent 1px),
        linear-gradient(180deg, rgba(55, 244, 255, .05) 1px, transparent 1px),
        linear-gradient(135deg, rgba(7, 17, 31, .98), rgba(4, 12, 28, .98)) !important;
    background-size: 34px 34px, 34px 34px, auto !important;
    border-bottom: 1px solid rgba(103, 232, 249, .24) !important;
    box-shadow: 0 16px 40px rgba(3, 10, 24, .36);
}

.site-header::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(circle at 18% 0%, rgba(55, 244, 255, .18), transparent 28rem);
}

.site-header > * {
    position: relative;
}

.site-header .nav-link,
.site-header a {
    text-shadow: none;
}

.hero-redesign {
    min-height: auto;
    padding-block: 0;
}

.hero-grid {
    display: grid;
    min-height: 700px;
    align-items: center;
    gap: clamp(2rem, 5vw, 5rem);
}

@media (min-width: 1024px) {
    .hero-grid {
        grid-template-columns: minmax(0, 1.02fr) minmax(420px, .78fr);
    }
}

.hero-copy {
    position: relative;
    z-index: 2;
}

.hero-command {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(103, 232, 249, .22);
    border-radius: 2rem;
    padding: clamp(1.25rem, 3vw, 2rem);
    background:
        radial-gradient(circle at 50% 20%, rgba(55, 244, 255, .16), transparent 18rem),
        linear-gradient(180deg, rgba(255, 255, 255, .13), rgba(255, 255, 255, .055));
    box-shadow: 0 32px 90px rgba(0, 0, 0, .42), 0 0 80px rgba(0, 119, 255, .18);
    backdrop-filter: blur(18px);
}

.hero-command::before {
    content: "";
    position: absolute;
    inset: 1rem;
    border: 1px solid rgba(103, 232, 249, .1);
    border-radius: 1.45rem;
    pointer-events: none;
}

.command-topline {
    display: flex;
    align-items: center;
    gap: .55rem;
    color: rgba(255, 255, 255, .66);
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.command-topline span {
    width: .6rem;
    height: .6rem;
    border-radius: 999px;
    background: #37f4ff;
    box-shadow: 0 0 18px rgba(55, 244, 255, .8);
}

.command-topline span:nth-child(2) {
    background: #3b82f6;
}

.command-topline span:nth-child(3) {
    background: #7c3aed;
}

.command-topline strong {
    margin-left: auto;
}

.shield-orb {
    display: grid;
    width: min(260px, 70vw);
    aspect-ratio: 1;
    place-items: center;
    margin: 2rem auto;
    border-radius: 999px;
    color: #37f4ff;
    background:
        radial-gradient(circle, rgba(55, 244, 255, .22), transparent 62%),
        conic-gradient(from 180deg, rgba(55, 244, 255, .05), rgba(0, 119, 255, .35), rgba(124, 58, 237, .22), rgba(55, 244, 255, .05));
    box-shadow: inset 0 0 0 1px rgba(103, 232, 249, .16), 0 0 70px rgba(55, 244, 255, .18);
}

.shield-orb svg {
    width: 46%;
    filter: drop-shadow(0 0 22px rgba(55, 244, 255, .5));
}

.command-grid {
    display: grid;
    gap: .8rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.command-grid div,
.hero-trust-strip div,
.contact-channel-panel > * {
    border: 1px solid rgba(103, 232, 249, .16);
    border-radius: 1.1rem;
    background: rgba(255, 255, 255, .08);
}

.command-grid div {
    padding: 1rem;
}

.command-grid span,
.hero-trust-strip span,
.contact-channel-panel span {
    display: block;
    color: rgba(255, 255, 255, .58);
    font-size: .74rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.command-grid strong,
.hero-trust-strip strong,
.contact-channel-panel strong {
    display: block;
    margin-top: .35rem;
    color: #fff;
    font-family: Sora, Manrope, sans-serif;
    font-size: 1.18rem;
    font-weight: 800;
}

.hero-trust-strip {
    display: grid;
    gap: 1rem;
    margin-top: -1rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hero-trust-strip div {
    padding: 1.05rem 1.15rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, .1), rgba(255, 255, 255, .055));
    backdrop-filter: blur(14px);
}

@media (min-width: 768px) {
    .hero-trust-strip {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

.page-band {
    color: #fff;
    background:
        radial-gradient(circle at 82% 14%, rgba(55, 244, 255, .2), transparent 25rem),
        radial-gradient(circle at 12% 10%, rgba(0, 119, 255, .18), transparent 24rem),
        linear-gradient(90deg, rgba(103, 232, 249, .055) 1px, transparent 1px),
        linear-gradient(180deg, rgba(103, 232, 249, .045) 1px, transparent 1px),
        linear-gradient(135deg, #07111f 0%, #0a1d3a 55%, #050b18 100%);
    background-size: auto, auto, 48px 48px, 48px 48px, auto;
}

.page-band::after {
    content: "";
    position: absolute;
    right: -8rem;
    bottom: -12rem;
    width: 34rem;
    height: 34rem;
    border-radius: 999px;
    border: 1px solid rgba(103, 232, 249, .14);
    box-shadow: inset 0 0 80px rgba(55, 244, 255, .08);
}

.page-band .page-title {
    color: #fff;
}

.page-band .page-kicker,
.page-band .eyebrow {
    color: #67e8f9;
}

.page-band p:not(.policy-card p):not(.review-panel p):not(.review-list-card p) {
    color: rgba(231, 248, 255, .76) !important;
}

.page-band .review-panel,
.page-band .policy-card,
.page-band .review-list-card,
.page-band .glass-card {
    color: var(--ink);
}

.page-band .review-panel p,
.page-band .policy-card p,
.page-band .review-list-card p {
    color: var(--muted);
}

.inner-hero-copy {
    position: relative;
    padding: clamp(1rem, 3vw, 2rem);
    border-left: 3px solid #37f4ff;
}

.contact-channel-panel {
    display: grid;
    gap: .9rem;
}

.contact-channel-panel > * {
    display: block;
    padding: 1rem;
    text-decoration: none;
    background: rgba(255, 255, 255, .09);
    backdrop-filter: blur(12px);
}

.contact-channel-panel a:hover {
    transform: translateY(-2px);
    background: rgba(55, 244, 255, .13);
}

.contact-form-card {
    position: relative;
    overflow: hidden;
    border-radius: 1.6rem;
}

.contact-form-card::after {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 4px;
    background: linear-gradient(90deg, #37f4ff, #0077ff, #7c3aed);
}

@media (max-width: 767px) {
    .hero-grid {
        min-height: auto;
    }

    .hero-command {
        margin-top: 1rem;
    }

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

    .hero-trust-strip {
        margin-top: 2rem;
        grid-template-columns: 1fr;
    }

    .command-topline strong {
        display: none;
    }

    .inner-hero-copy {
        padding: 0 0 0 1rem;
    }
}
