:root {
    --bg: #f5f5f7;
    --surface: #ffffff;
    --surface-soft: #fbfbfd;
    --ink: #1d1d1f;
    --muted: #6e6e73;
    --muted-2: #86868b;
    --line: rgba(29, 29, 31, 0.12);
    --blue: #0066cc;
    --blue-2: #0071e3;
    --green: #2e7d6f;
    --health: #28d17c;
    --health-soft: rgba(40, 209, 124, 0.16);
    --health-line: rgba(40, 209, 124, 0.78);
    --glass-edge: rgba(255, 255, 255, 0.42);
    --glass-fill: rgba(255, 255, 255, 0.74);
    --premium-ring: rgba(40, 209, 124, 0.22);
    --shadow: 0 28px 80px rgba(0, 0, 0, 0.10);
    --shadow-soft: 0 18px 48px rgba(0, 0, 0, 0.08);
    --shadow-deep: 0 48px 120px rgba(18, 24, 34, 0.18);
    --max: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 7rem;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--bg);
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Segoe UI", sans-serif;
    letter-spacing: 0;
    text-rendering: geometricPrecision;
}

body::before,
body::after {
    pointer-events: none;
}

body:not(.is-loaded)::before,
body.page-exiting::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 9998;
    background:
        radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.12), transparent 22rem),
        linear-gradient(90deg, transparent 0 34%, rgba(40, 209, 124, 0.75) 48%, rgba(255, 255, 255, 0.82) 50%, rgba(40, 209, 124, 0.75) 52%, transparent 66%) center calc(50% + 68px) / 180px 2px no-repeat,
        #050506;
    opacity: 1;
    transition: opacity 420ms ease, visibility 420ms ease;
}

body:not(.is-loaded)::after,
body.page-exiting::after {
    content: "";
    position: fixed;
    left: 50%;
    top: 50%;
    width: 78px;
    height: 78px;
    z-index: 9999;
    border-radius: 24px;
    background: url("assets/openforge-logo-reverse.svg?v=premium-wow-54") center / contain no-repeat;
    box-shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
    transform: translate(-50%, -50%);
    animation: loader-mark 1200ms ease-in-out infinite;
    transition: opacity 420ms ease, visibility 420ms ease;
}

body.is-loaded:not(.page-exiting)::before,
body.is-loaded:not(.page-exiting)::after {
    opacity: 0;
    visibility: hidden;
}

body.nav-open {
    overflow: hidden;
}

@keyframes loader-mark {
    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        filter: saturate(1);
    }

    50% {
        transform: translate(-50%, -50%) scale(1.045);
        filter: saturate(1.15);
    }
}

@media (max-width: 980px) {
    .web-hero .hero-split-grid {
        grid-template-columns: 1fr;
    }

    .web-hero-metrics {
        margin-left: auto;
        margin-right: auto;
    }

    .web-demo-stage {
        min-height: auto;
        width: min(100%, 760px);
        margin: 0 auto;
    }

    .web-browser {
        transform: none;
    }

    .featured-demo {
        grid-template-columns: 1fr;
    }

    .featured-demo .demo-media {
        min-height: auto;
        aspect-ratio: 16 / 10;
    }

    .web-proof-band {
        grid-template-columns: 1fr;
    }

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

    .web-checklist div {
        grid-template-columns: 3rem minmax(0, 0.8fr) minmax(0, 1fr);
    }

    .web-service-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .web-hero {
        background:
            radial-gradient(circle at 50% 16%, rgba(255, 255, 255, 0.12), transparent 34%),
            linear-gradient(145deg, #050506 0%, #111113 58%, #18181a 100%);
    }

    .web-hero-metrics,
    .demo-grid,
    .testimonial-grid,
    .web-service-strip {
        grid-template-columns: 1fr;
    }

    .testimonial-card {
        min-height: auto;
    }

    .web-hero-metrics span {
        min-height: auto;
    }

    .browser-chrome {
        grid-template-columns: auto minmax(0, 1fr);
    }

    .browser-status {
        display: none;
    }

    .web-demo-status {
        left: 0.7rem;
        right: 0.7rem;
        bottom: 0.7rem;
        width: auto;
        padding: 0.78rem;
    }

    .web-demo-status strong {
        font-size: 1.55rem;
    }

    .mini-health {
        height: 1.9rem;
    }

    .demo-card,
    .featured-demo {
        grid-column: auto;
    }

    .demo-meta {
        padding: 1rem;
    }

    .web-proof-band h2 {
        font-size: clamp(2.35rem, 12vw, 3.6rem);
    }

    .web-checklist div,
    .console-head,
    .launch-row {
        grid-template-columns: 1fr;
        gap: 0.58rem;
    }

    .console-head b,
    .launch-row b {
        justify-self: start;
    }

    .launch-console {
        margin-top: 0.4rem;
    }
}

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

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

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

a,
a:link,
a:visited {
    color: inherit;
    text-decoration: none;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    padding: 0.72rem 0 0.52rem;
    background:
        linear-gradient(180deg, rgba(5, 5, 6, 0.92), rgba(5, 5, 6, 0.5) 68%, transparent);
    border-bottom: 0;
    backdrop-filter: saturate(180%) blur(22px);
    transition: padding 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled {
    padding: 0.42rem 0;
    background: rgba(8, 8, 9, 0.68);
    box-shadow: 0 18px 54px rgba(0, 0, 0, 0.24);
}

.nav {
    width: min(1120px, calc(100% - 40px));
    min-height: 58px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.42rem 0.5rem 0.42rem 0.72rem;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 999px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.035)),
        rgba(20, 20, 22, 0.78);
    box-shadow:
        0 20px 56px rgba(0, 0, 0, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.13);
    backdrop-filter: saturate(180%) blur(26px);
    transition: min-height 220ms ease, background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled .nav {
    min-height: 54px;
    border-color: rgba(255, 255, 255, 0.16);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.045)),
        rgba(13, 13, 15, 0.86);
    box-shadow:
        0 16px 46px rgba(0, 0, 0, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.72rem;
    min-width: max-content;
    padding-right: 0.7rem;
    border-radius: 999px;
    transition: transform 180ms ease, opacity 180ms ease;
}

.brand:hover {
    transform: translateY(-1px);
}

.brand img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.28));
}

.brand-name {
    display: block;
    font-size: 0.86rem;
    font-weight: 700;
    line-height: 1;
    color: #f5f5f7;
}

.brand-line {
    display: none;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 0.18rem;
    margin: 0;
    padding: 0.24rem;
    list-style: none;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.045);
    color: rgba(245, 245, 247, 0.72);
    font-size: 0.78rem;
    font-weight: 600;
}

.nav-links a,
.nav-links a:link,
.nav-links a:visited {
    display: inline-flex;
    align-items: center;
    min-height: 2.1rem;
    padding: 0.55rem 0.72rem;
    border-radius: 999px;
    color: rgba(245, 245, 247, 0.72) !important;
    transition: color 180ms ease, background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.nav-links a:hover,
.nav-links a.is-active {
    color: #fff !important;
    background: rgba(255, 255, 255, 0.09);
}

.nav-links a:hover {
    transform: translateY(-1px);
}

.nav-links a.is-active {
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.11),
        0 8px 20px rgba(0, 0, 0, 0.18);
}

.nav-cta,
.nav-cta:link,
.nav-cta:visited {
    color: #fff !important;
    font-weight: 600;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.07)),
        rgba(255, 255, 255, 0.08);
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.13),
        0 10px 24px rgba(0, 0, 0, 0.2);
}

.nav-toggle {
    display: none;
    width: 38px;
    height: 38px;
    border: 0;
    background: transparent;
    color: #f5f5f7;
    padding: 0;
}

.nav-toggle span {
    display: block;
    width: 16px;
    height: 1.5px;
    margin: 5px auto;
    background: currentColor;
    transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle.is-active span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
}

.nav-toggle.is-active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.is-active span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
}

.premium-main {
    overflow: hidden;
}

.premium-hero {
    position: relative;
    min-height: calc(100svh - 48px);
    display: grid;
    align-items: center;
    overflow: hidden;
    padding: clamp(4.5rem, 8vw, 7.5rem) 0 clamp(3.5rem, 7vw, 6rem);
    background:
        radial-gradient(circle at 50% 10%, rgba(255, 255, 255, 0.92), rgba(245, 245, 247, 0.76) 42%, rgba(232, 235, 240, 0.78) 100%),
        linear-gradient(180deg, #ffffff 0%, #f5f5f7 100%);
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.hero-video-bg {
    z-index: 0;
    opacity: 0.42;
    mix-blend-mode: screen;
    filter: saturate(1.18) contrast(1.08);
}

.product-video {
    z-index: 0;
    opacity: 0.52;
    filter: saturate(1.08) contrast(1.08);
}

.showcase-hero {
    min-height: calc(100svh - 48px);
    padding: clamp(3.2rem, 5vw, 5.6rem) 0 clamp(2.5rem, 5vw, 4rem);
    color: #f5f5f7;
    background:
        linear-gradient(90deg, rgba(5, 5, 5, 0.88) 0%, rgba(5, 5, 5, 0.62) 42%, rgba(5, 5, 5, 0.52) 100%),
        radial-gradient(circle at 70% 36%, rgba(255, 255, 255, 0.16), transparent 34%),
        radial-gradient(circle at 50% 108%, rgba(255, 255, 255, 0.14), transparent 42%),
        linear-gradient(145deg, #050505 0%, #111113 52%, #242428 100%);
}

.showcase-hero::before {
    content: "";
    position: absolute;
    inset: 48px 0 auto 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.34), transparent);
}

.showcase-hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 46%;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.075) 1px, transparent 1px) 0 0 / 72px 72px,
        linear-gradient(180deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px) 0 0 / 72px 72px;
    mask-image: linear-gradient(180deg, transparent, #000 18%, #000 84%, transparent);
    pointer-events: none;
}

.hero-showcase-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 0.88fr) minmax(30rem, 1.12fr);
    gap: clamp(2rem, 5vw, 5rem);
    align-items: center;
}

.hero-copy {
    text-align: left;
}

.hero-copy .hero-title,
.hero-copy .lead {
    margin-left: 0;
    margin-right: 0;
}

.hero-copy .hero-title {
    max-width: 720px;
    font-size: clamp(3.6rem, 6.4vw, 6.9rem);
    line-height: 0.92;
}

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

.showcase-hero .eyebrow,
.showcase-hero .lead {
    color: rgba(245, 245, 247, 0.7);
}

.showcase-hero .button {
    background: #f5f5f7;
    color: #111113;
}

.showcase-hero .button.secondary {
    background: transparent;
    color: #f5f5f7;
}

.hero-copy .hero-actions,
.feature-copy .hero-actions {
    justify-content: flex-start;
}

.hero-proof {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
    max-width: 640px;
    margin-top: clamp(1.5rem, 3vw, 2.5rem);
}

.hero-proof div {
    min-height: 6.4rem;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 54px rgba(0, 0, 0, 0.24);
    backdrop-filter: blur(20px);
}

.hero-proof span,
.status-panel span,
.service-card span {
    display: block;
    color: var(--muted-2);
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
}

.showcase-hero .hero-proof span {
    color: rgba(245, 245, 247, 0.5);
}

.hero-proof strong {
    display: block;
    margin-top: 0.45rem;
    font-size: 1rem;
    line-height: 1.15;
}

.showcase-visual {
    position: relative;
    min-height: clamp(34rem, 50vw, 45rem);
    border-radius: 8px;
    overflow: visible;
    perspective: 1400px;
}

.showcase-visual .premium-scene {
    inset: -7% -8% 6% -8%;
}

.health-line {
    pointer-events: none;
}

.health-line svg {
    width: 100%;
    height: 100%;
    overflow: visible;
}

.health-line path {
    fill: none;
    stroke: var(--health);
    stroke-width: 4;
    stroke-linecap: round;
    stroke-linejoin: round;
    filter: drop-shadow(0 0 12px rgba(40, 209, 124, 0.34));
    stroke-dasharray: 420;
    animation: healthPulse 5.4s ease-in-out infinite;
}

.hero-health-line {
    position: absolute;
    z-index: 5;
    left: 7%;
    right: 9%;
    bottom: 5%;
    height: 4.6rem;
    opacity: 0.86;
}

.hero-health-line::before {
    content: "";
    position: absolute;
    inset: 45% 0 auto;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(40, 209, 124, 0.42), transparent);
}

@keyframes healthPulse {
    0%,
    18% {
        stroke-dashoffset: 420;
        opacity: 0.36;
    }

    42%,
    72% {
        stroke-dashoffset: 0;
        opacity: 1;
    }

    100% {
        stroke-dashoffset: -420;
        opacity: 0.44;
    }
}

.showcase-glass {
    position: absolute;
    inset: 12% 4% 9%;
    border: 1px solid rgba(255, 255, 255, 0.36);
    border-radius: 8px;
    background:
        linear-gradient(150deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.24)),
        linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0));
    box-shadow:
        0 56px 140px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(22px);
    transform: rotateY(-8deg) rotateX(4deg);
    transform-style: preserve-3d;
}

.showcase-glass::before {
    content: "";
    position: absolute;
    inset: 1.1rem;
    border: 1px solid rgba(29, 29, 31, 0.08);
    border-radius: 8px;
}

.showcase-glass .glass-device {
    right: 1.4rem;
    bottom: 1.4rem;
    width: min(25rem, 62%);
}

.status-panel {
    position: absolute;
    z-index: 4;
    border: 1px solid rgba(255, 255, 255, 0.86);
    border-radius: 8px;
    padding: 1rem;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.68)),
        rgba(255, 255, 255, 0.78);
    box-shadow:
        0 30px 86px rgba(0, 0, 0, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(26px);
}

.split-hero {
    min-height: auto;
    padding: clamp(5.2rem, 8vw, 8rem) 0 clamp(4rem, 7vw, 6rem);
    background:
        radial-gradient(circle at 78% 20%, rgba(29, 29, 31, 0.08), transparent 34%),
        linear-gradient(180deg, #fff 0%, #f5f5f7 100%);
}

.split-hero.dark {
    color: #f5f5f7;
    background:
        radial-gradient(circle at 78% 28%, rgba(255, 255, 255, 0.15), transparent 34%),
        linear-gradient(145deg, #070708 0%, #151517 58%, #2a2a2d 100%);
}

.hero-split-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(24rem, 1.1fr);
    gap: clamp(2rem, 5vw, 5rem);
    align-items: center;
}

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

.hero-split-grid .hero-copy .page-title {
    max-width: 780px;
    margin-left: 0;
    margin-right: 0;
    font-size: clamp(3.1rem, 6.4vw, 6.6rem);
}

.hero-split-grid .hero-copy .lead {
    max-width: 610px;
    margin-left: 0;
    margin-right: 0;
}

.hero-visual {
    position: relative;
    min-height: clamp(29rem, 44vw, 43rem);
    perspective: 1500px;
}

.hero-product {
    position: absolute;
    inset: 3% 2% 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(241, 244, 249, 0.88)),
        #fff;
    box-shadow:
        0 46px 120px rgba(0, 0, 0, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.7);
    transform: rotateY(-10deg) rotateX(5deg);
    transform-style: preserve-3d;
}

.split-hero.dark .hero-product {
    border-color: rgba(255, 255, 255, 0.16);
    background:
        linear-gradient(150deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.045)),
        #101012;
    box-shadow: 0 54px 140px rgba(0, 0, 0, 0.48);
}

.hero-product::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(29, 29, 31, 0.055) 1px, transparent 1px) 0 0 / 42px 42px,
        linear-gradient(180deg, rgba(29, 29, 31, 0.04) 1px, transparent 1px) 0 0 / 42px 42px;
    mask-image: linear-gradient(180deg, #000, transparent 82%);
    pointer-events: none;
}

.split-hero.dark .hero-product::before {
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.075) 1px, transparent 1px) 0 0 / 42px 42px,
        linear-gradient(180deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px) 0 0 / 42px 42px;
}

.hero-card,
.hero-slab,
.hero-stat {
    position: absolute;
    z-index: 3;
    border: 1px solid var(--glass-edge);
    border-radius: 8px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.64)),
        var(--glass-fill);
    box-shadow:
        0 28px 84px rgba(0, 0, 0, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(24px);
    overflow: hidden;
}

.hero-card::after,
.hero-slab::after,
.glass-device::after {
    content: "";
    position: absolute;
    left: 1rem;
    right: 1rem;
    bottom: 0.72rem;
    height: 1.6rem;
    opacity: 0.62;
    background: var(--health-line);
    clip-path: polygon(0 55%, 18% 55%, 24% 28%, 32% 76%, 40% 44%, 49% 55%, 65% 55%, 71% 35%, 79% 68%, 87% 55%, 100% 55%, 100% 62%, 87% 62%, 79% 75%, 71% 42%, 65% 62%, 49% 62%, 40% 51%, 32% 83%, 24% 35%, 18% 62%, 0 62%);
    filter: drop-shadow(0 0 9px rgba(40, 209, 124, 0.18));
}

.glass-device {
    overflow: hidden;
}

.product-health-line {
    position: absolute;
    z-index: 2;
    left: 8%;
    right: 7%;
    top: 43%;
    height: 5rem;
    opacity: 0.62;
}

.product-health-line::before {
    content: "";
    position: absolute;
    inset: 47% 0 auto;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(40, 209, 124, 0.34), transparent);
}

.product-health-line path {
    stroke-width: 3.2;
}

.split-hero.dark .product-health-line {
    opacity: 0.76;
}

.split-hero.dark .hero-card,
.split-hero.dark .hero-slab,
.split-hero.dark .hero-stat {
    border-color: rgba(255, 255, 255, 0.2);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.06)),
        rgba(255, 255, 255, 0.09);
    box-shadow:
        0 34px 96px rgba(0, 0, 0, 0.42),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.hero-card {
    top: 12%;
    left: 8%;
    width: 43%;
    min-height: 13rem;
    padding: 1.15rem;
}

.hero-card strong,
.hero-slab strong,
.hero-stat strong {
    display: block;
    color: var(--ink);
    font-size: clamp(1.2rem, 2vw, 1.8rem);
    line-height: 1.08;
}

.split-hero.dark .hero-card strong,
.split-hero.dark .hero-slab strong,
.split-hero.dark .hero-stat strong {
    color: #f5f5f7;
}

.hero-card span,
.hero-slab span,
.hero-stat span {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--muted-2);
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
}

.split-hero.dark .hero-card span,
.split-hero.dark .hero-slab span,
.split-hero.dark .hero-stat span {
    color: rgba(245, 245, 247, 0.52);
}

.hero-card p,
.hero-slab p {
    margin: 0.75rem 0 0;
    color: var(--muted);
    line-height: 1.45;
}

.split-hero.dark .hero-card p,
.split-hero.dark .hero-slab p {
    color: rgba(245, 245, 247, 0.68);
}

.hero-slab {
    right: 8%;
    bottom: 7%;
    width: 52%;
    padding: 1rem;
}

.hero-stat {
    right: 6%;
    top: 14%;
    width: 10.8rem;
    padding: 0.9rem;
}

.hero-stat b {
    display: block;
    margin-top: 0.3rem;
    color: var(--blue);
    font-size: 0.9rem;
}

.split-hero.dark .hero-stat b {
    color: #fff;
}

.hero-visual .premium-scene {
    inset: -9% -16% -4% -16%;
    opacity: 0.9;
}

.ui-lines {
    display: grid;
    gap: 0.55rem;
    margin-top: 1.1rem;
}

.ui-lines i {
    display: block;
    height: 0.48rem;
    border-radius: 999px;
    background: rgba(29, 29, 31, 0.12);
}

.split-hero.dark .ui-lines i {
    background: rgba(255, 255, 255, 0.16);
}

.ui-lines i:nth-child(2) {
    width: 76%;
}

.ui-lines i:nth-child(3) {
    width: 54%;
}

.hero-mini-grid {
    position: absolute;
    left: 8%;
    bottom: 9%;
    z-index: 3;
    display: none;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.55rem;
    width: 52%;
}

.hero-mini-grid span {
    min-height: 4.8rem;
    border: 1px solid rgba(29, 29, 31, 0.09);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.74);
}

.split-hero.dark .hero-mini-grid span {
    border-color: rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.08);
}

.split-hero.dark .button {
    background: #f5f5f7;
    color: #101012;
}

.split-hero.dark .button.secondary {
    background: transparent;
    color: #f5f5f7;
}

.care-product .hero-card {
    width: 48%;
}

.care-product .hero-mini-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    width: 64%;
}

.care-product .hero-mini-grid span {
    min-height: 7rem;
}

.web-product {
    transform: rotateY(-7deg) rotateX(4deg) translateY(-0.4rem);
}

.web-product .hero-card {
    top: 9%;
    width: 50%;
}

.web-product .hero-slab {
    width: 54%;
}

.web-product::after,
.pos-product::after,
.proof-product::after,
.report-product::after,
.contact-product::after {
    content: "";
    position: absolute;
    z-index: 1;
    border-radius: 8px;
    pointer-events: none;
}

.web-product::after {
    right: 8%;
    top: 18%;
    width: 44%;
    height: 48%;
    border: 1px solid rgba(29, 29, 31, 0.1);
    background:
        linear-gradient(180deg, rgba(29, 29, 31, 0.12) 0 18%, transparent 18%),
        linear-gradient(90deg, rgba(0, 113, 227, 0.13), rgba(29, 29, 31, 0.05)),
        rgba(255, 255, 255, 0.74);
    box-shadow: 0 26px 72px rgba(0, 0, 0, 0.13);
}

.pos-product::after {
    left: 12%;
    top: 42%;
    width: 76%;
    height: 10rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.62) 0 18%, transparent 18% 25%, rgba(255, 255, 255, 0.28) 25% 48%, transparent 48% 55%, rgba(255, 255, 255, 0.18) 55%),
        rgba(255, 255, 255, 0.06);
}

.proof-product .hero-stat {
    right: 8%;
    top: 10%;
}

.proof-product::after {
    right: 10%;
    top: 34%;
    width: 34%;
    height: 34%;
    border: 1px solid rgba(29, 29, 31, 0.1);
    background:
        linear-gradient(180deg, rgba(29, 29, 31, 0.08), transparent 38%),
        repeating-linear-gradient(180deg, transparent 0 1.4rem, rgba(29, 29, 31, 0.08) 1.45rem 1.5rem),
        rgba(255, 255, 255, 0.74);
}

.report-product .hero-card {
    width: 48%;
}

.report-product::after {
    right: 10%;
    top: 18%;
    width: 38%;
    height: 56%;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.26)),
        repeating-linear-gradient(180deg, transparent 0 1.3rem, rgba(255, 255, 255, 0.13) 1.34rem 1.42rem);
    box-shadow: 0 28px 78px rgba(0, 0, 0, 0.26);
}

.contact-product .hero-card {
    width: 46%;
}

.contact-product::after {
    right: 10%;
    bottom: 28%;
    width: 44%;
    height: 22%;
    border: 1px solid rgba(29, 29, 31, 0.08);
    background:
        linear-gradient(90deg, rgba(0, 113, 227, 0.14), transparent 62%),
        rgba(255, 255, 255, 0.7);
}

.status-panel strong {
    display: block;
    margin-top: 0.35rem;
    color: var(--ink);
    font-size: clamp(1.05rem, 2vw, 1.5rem);
    line-height: 1.06;
}

.status-panel p {
    margin: 0.45rem 0 0;
    color: var(--muted);
    line-height: 1.45;
}

.status-panel b {
    display: inline-flex;
    margin-top: 0.7rem;
    border-radius: 999px;
    padding: 0.42rem 0.65rem;
    background: #fff1f0;
    color: #b3261e;
    font-size: 0.78rem;
}

.status-main {
    border-color: rgba(40, 209, 124, 0.3);
}

.status-main::after,
.status-risk::after {
    content: "";
    position: absolute;
    left: 1rem;
    right: 1rem;
    bottom: 0.74rem;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--health), rgba(40, 209, 124, 0.08));
}

.status-main {
    top: 2%;
    left: 4%;
    width: min(18rem, 38%);
}

.status-risk {
    top: 20%;
    right: -1%;
    width: min(15rem, 35%);
}

.status-risk b {
    background: rgba(40, 209, 124, 0.14);
    color: #17633d;
}

.status-route {
    left: 0;
    bottom: 16%;
    width: min(13.5rem, 31%);
}

.premium-hero.dark {
    color: #f5f5f7;
    background:
        radial-gradient(circle at 50% 8%, rgba(84, 111, 139, 0.28), transparent 42%),
        linear-gradient(180deg, #121214 0%, #1d1d1f 54%, #0b0b0c 100%);
}

.hero-center {
    text-align: center;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin-bottom: 0.9rem;
    color: var(--muted);
    font-size: 0.88rem;
    font-weight: 700;
}

.premium-hero.dark .eyebrow,
.premium-hero.dark .lead,
.premium-hero.dark .metric span {
    color: rgba(245, 245, 247, 0.72);
}

.hero-title,
.page-title {
    max-width: 980px;
    margin: 0 auto;
    color: inherit;
    font-size: clamp(3.3rem, 8vw, 7.4rem);
    font-weight: 800;
    line-height: 0.94;
}

.page-title {
    font-size: clamp(3rem, 7vw, 6.5rem);
}

.lead {
    max-width: 720px;
    margin: 1.25rem auto 0;
    color: var(--muted);
    font-size: clamp(1.18rem, 2vw, 1.58rem);
    line-height: 1.38;
}

.hero-actions,
.panel-actions,
.form-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 1.7rem;
}

.button,
.button:link,
.button:visited {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    border-radius: 999px;
    padding: 0.78rem 1.25rem;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.18), transparent),
        var(--blue-2);
    color: #fff;
    font-size: 0.98rem;
    font-weight: 600;
    line-height: 1;
    box-shadow:
        0 14px 34px rgba(0, 113, 227, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.28);
    transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.button:hover {
    background: var(--blue);
    transform: translateY(-1px);
    box-shadow:
        0 18px 42px rgba(0, 113, 227, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.32);
}

.button.secondary,
.button.secondary:link,
.button.secondary:visited {
    border-color: rgba(0, 113, 227, 0.18);
    background: rgba(255, 255, 255, 0.74);
    color: var(--blue);
    box-shadow:
        0 10px 28px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.premium-hero.dark .button.secondary {
    color: #8ec5ff;
}

.button.ghost {
    background: #fff;
    color: var(--ink);
    border-color: var(--line);
}

.product-stage {
    position: relative;
    width: min(1040px, 100%);
    min-height: clamp(24rem, 48vw, 42rem);
    margin: clamp(2.5rem, 6vw, 5rem) auto 0;
}

.elevated-grid {
    gap: clamp(1rem, 2vw, 1.4rem);
}

.report-showcase-panel {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(243, 247, 252, 0.94)),
        #fff;
}

.report-showcase-panel.panel.large {
    min-height: clamp(54rem, 66vw, 58rem);
}

.report-showcase-panel::before {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 58%;
    background:
        linear-gradient(90deg, rgba(0, 113, 227, 0.07) 1px, transparent 1px) 0 0 / 62px 62px,
        linear-gradient(180deg, rgba(0, 113, 227, 0.055) 1px, transparent 1px) 0 0 / 62px 62px;
    mask-image: linear-gradient(180deg, transparent, #000 22%, #000);
}

.service-panel::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 2rem;
    width: min(22rem, 74%);
    aspect-ratio: 1.6;
    border-radius: 8px;
    transform: translateX(-50%);
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.18) 1px, transparent 1px) 0 0 / 34px 34px,
        linear-gradient(180deg, rgba(255, 255, 255, 0.14) 1px, transparent 1px) 0 0 / 34px 34px,
        rgba(255, 255, 255, 0.06);
}

.service-panel {
    min-height: 34rem;
}

.service-panel .panel-content {
    padding-bottom: 0;
}

.service-panel .panel-actions {
    margin-top: 1.25rem;
}

.service-panel .button.secondary {
    min-height: auto;
    border: 0;
    border-radius: 0;
    padding: 0;
    background: transparent;
    box-shadow: none;
    color: var(--blue-2);
}

.service-panel .button.secondary:hover {
    background: transparent;
    box-shadow: none;
    transform: none;
}

.panel.dark.service-panel .button.secondary {
    color: var(--health);
}

.care-panel::before {
    background:
        linear-gradient(90deg, rgba(0, 113, 227, 0.1) 1px, transparent 1px) 0 0 / 34px 34px,
        linear-gradient(180deg, rgba(0, 113, 227, 0.08) 1px, transparent 1px) 0 0 / 34px 34px,
        rgba(0, 113, 227, 0.045);
}

.panel-visual {
    position: absolute;
    left: 50%;
    bottom: 2.35rem;
    z-index: 2;
    width: min(24rem, calc(100% - 4rem));
    transform: translateX(-50%);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 8px;
    padding: 0.85rem;
    box-shadow:
        0 28px 80px rgba(0, 0, 0, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    overflow: hidden;
}

.panel-visual::after,
.service-visual::after {
    content: "";
    position: absolute;
    left: 0.85rem;
    right: 0.85rem;
    bottom: 0.55rem;
    height: 1.9rem;
    opacity: 0.75;
    background: var(--health-line);
    clip-path: polygon(0 55%, 16% 55%, 22% 26%, 30% 78%, 38% 44%, 48% 55%, 64% 55%, 70% 35%, 78% 68%, 86% 55%, 100% 55%, 100% 62%, 86% 62%, 78% 75%, 70% 42%, 64% 62%, 48% 62%, 38% 51%, 30% 85%, 22% 33%, 16% 62%, 0 62%);
    filter: drop-shadow(0 0 10px rgba(40, 209, 124, 0.24));
}

.security-visual {
    display: grid;
    gap: 0.5rem;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.09) 1px, transparent 1px) 0 0 / 34px 34px,
        linear-gradient(180deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px) 0 0 / 34px 34px,
        rgba(255, 255, 255, 0.07);
}

.visual-row {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    min-height: 2.55rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    padding: 0.6rem 0.7rem;
    background: rgba(255, 255, 255, 0.08);
}

.visual-row span,
.care-visual span {
    color: rgba(245, 245, 247, 0.64);
    font-size: 0.76rem;
    font-weight: 700;
    text-transform: uppercase;
}

.visual-row b {
    border-radius: 999px;
    padding: 0.28rem 0.5rem;
    background: rgba(40, 209, 124, 0.18);
    color: #d9ffe9;
    font-size: 0.74rem;
}

.visual-meter {
    display: grid;
    grid-template-columns: 1fr 0.74fr 0.5fr;
    gap: 0.45rem;
}

.visual-meter i {
    height: 0.42rem;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--health), rgba(40, 209, 124, 0.22));
}

.care-visual {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.55rem;
    border-color: rgba(40, 209, 124, 0.16);
    background:
        linear-gradient(90deg, rgba(40, 209, 124, 0.08) 1px, transparent 1px) 0 0 / 34px 34px,
        linear-gradient(180deg, rgba(40, 209, 124, 0.06) 1px, transparent 1px) 0 0 / 34px 34px,
        rgba(255, 255, 255, 0.9);
}

.care-visual div {
    min-height: 6.8rem;
    border: 1px solid rgba(40, 209, 124, 0.14);
    border-radius: 8px;
    padding: 0.7rem;
    background: rgba(255, 255, 255, 0.72);
}

.care-visual span {
    color: var(--muted-2);
}

.care-visual strong {
    display: block;
    margin-top: 0.55rem;
    font-size: 1.02rem;
    line-height: 1.15;
}

.hero-canvas,
.premium-scene {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.security-scene {
    width: 100%;
    height: 100%;
}

.glass-device {
    position: absolute;
    inset: auto 6% 4% auto;
    width: min(28rem, 42vw);
    min-height: 14rem;
    padding: 1.15rem;
    border: 1px solid rgba(255, 255, 255, 0.74);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.76);
    box-shadow: var(--shadow);
    backdrop-filter: blur(24px);
}

.glass-device h2 {
    margin: 0;
    color: var(--ink);
    font-size: clamp(1.35rem, 2.4vw, 2.15rem);
    line-height: 1.05;
}

.glass-device p {
    margin: 0.75rem 0 0;
    color: var(--muted);
    line-height: 1.5;
}

.device-tabs {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.5rem;
    margin-top: 1.25rem;
}

.device-tabs span {
    min-height: 56px;
    padding: 0.75rem;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(245, 245, 247, 0.88);
    color: var(--muted);
    font-size: 0.76rem;
    font-weight: 700;
}

.device-tabs strong {
    display: block;
    margin-top: 0.25rem;
    color: var(--ink);
    font-size: 0.95rem;
}

.section {
    padding: clamp(4rem, 8vw, 7.5rem) 0;
    background: var(--bg);
}

.section.white {
    background: #fff;
}

.section.dark {
    color: #f5f5f7;
    background: #101012;
}

.section-head {
    max-width: 820px;
    margin: 0 auto clamp(2rem, 4vw, 3.25rem);
    text-align: center;
}

.kicker {
    display: block;
    margin-bottom: 0.65rem;
    color: var(--muted);
    font-size: 0.92rem;
    font-weight: 700;
}

.section.dark .kicker,
.section.dark .section-copy,
.section.dark .tile p,
.section.dark .quiet {
    color: rgba(245, 245, 247, 0.68);
}

.section-title {
    margin: 0;
    color: inherit;
    font-size: clamp(2.25rem, 5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.02;
}

.section-copy {
    max-width: 660px;
    margin: 1rem auto 0;
    color: var(--muted);
    font-size: 1.15rem;
    line-height: 1.55;
}

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

.panel {
    position: relative;
    min-height: 31rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 8px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(247, 249, 252, 0.9)),
        var(--surface);
    box-shadow:
        0 22px 58px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

.panel.large {
    grid-column: 1 / -1;
    min-height: 40rem;
}

.panel.dark {
    color: #f5f5f7;
    border-color: rgba(255, 255, 255, 0.14);
    background:
        radial-gradient(circle at 50% 0%, rgba(40, 209, 124, 0.13), transparent 30%),
        linear-gradient(180deg, #1d1d1f, #111113);
    box-shadow:
        0 30px 74px rgba(0, 0, 0, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.panel.soft {
    background: linear-gradient(180deg, #fff, #f5f5f7);
}

.panel-content {
    position: relative;
    z-index: 2;
    width: min(640px, calc(100% - 3rem));
    margin: 0 auto;
    padding: clamp(2rem, 5vw, 4rem) 0;
    text-align: center;
}

.panel h2 {
    margin: 0;
    font-size: clamp(2.2rem, 4.5vw, 4.2rem);
    font-weight: 800;
    line-height: 1.02;
}

.panel h3 {
    margin: 0;
    font-size: clamp(1.75rem, 3vw, 2.7rem);
    line-height: 1.05;
}

.panel p {
    margin: 0.8rem auto 0;
    max-width: 560px;
    color: var(--muted);
    font-size: 1.08rem;
    line-height: 1.5;
}

.panel.dark p {
    color: rgba(245, 245, 247, 0.72);
}

.product-image,
.mockup-image {
    position: absolute;
    left: 50%;
    bottom: 0;
    width: min(84%, 760px);
    transform: translateX(-50%);
    border-radius: 8px 8px 0 0;
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.18);
}

.mockup-image {
    bottom: 2rem;
    border: 1px solid rgba(0, 0, 0, 0.10);
}

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

.service-gallery {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.service-card {
    min-height: 24rem;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(29, 29, 31, 0.08);
    border-radius: 8px;
    padding: 1.35rem 1.35rem 9.8rem;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(247, 249, 252, 0.9)),
        rgba(255, 255, 255, 0.86);
    box-shadow:
        0 20px 52px rgba(0, 0, 0, 0.07),
        inset 0 1px 0 rgba(255, 255, 255, 0.88);
}

.service-card::after {
    display: none;
}

.service-card.primary-service {
    grid-column: span 2;
    color: #fff;
    background:
        radial-gradient(circle at 84% 8%, rgba(255, 255, 255, 0.28), transparent 28%),
        linear-gradient(145deg, rgba(40, 209, 124, 0.24), transparent 44%),
        linear-gradient(145deg, rgba(0, 113, 227, 0.96), rgba(20, 28, 46, 0.96)),
        #0071e3;
    box-shadow:
        0 30px 76px rgba(0, 72, 160, 0.24),
        inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.service-card:nth-child(4) {
    grid-column: span 2;
}

.service-card.primary-service::after {
    display: none;
}

.service-card > span,
.service-card strong,
.service-card p,
.service-card a {
    position: relative;
    z-index: 2;
}

.service-card strong {
    display: block;
    max-width: 25rem;
    margin-top: 0.8rem;
    font-size: clamp(1.45rem, 2.6vw, 2.4rem);
    line-height: 1.04;
}

.service-card p {
    max-width: 28rem;
    margin: 0.8rem 0 0;
    color: var(--muted);
    line-height: 1.5;
}

.service-card.primary-service span,
.service-card.primary-service p {
    color: rgba(255, 255, 255, 0.72);
}

.service-card a {
    position: absolute;
    left: 1.35rem;
    bottom: 1.35rem;
    z-index: 2;
    color: var(--blue);
    font-weight: 700;
}

.service-card.primary-service a {
    color: #fff;
}

.service-visual {
    position: absolute;
    left: 1.1rem;
    right: 1.1rem;
    bottom: 4rem;
    z-index: 1;
    min-height: 4.7rem;
    border: 1px solid rgba(29, 29, 31, 0.08);
    border-radius: 8px;
    padding: 0.7rem;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(245, 245, 247, 0.78)),
        rgba(245, 245, 247, 0.86);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.74);
    overflow: hidden;
}

.primary-service .service-visual {
    border-color: rgba(40, 209, 124, 0.24);
    background: rgba(40, 209, 124, 0.1);
}

.risk-visual {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.45rem 0.7rem;
    align-items: center;
}

.risk-visual span {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
}

.risk-visual i {
    height: 0.48rem;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--health), rgba(255, 255, 255, 0.48));
}

.risk-visual i:nth-of-type(2) {
    width: 72%;
}

.risk-visual i:nth-of-type(3) {
    width: 46%;
}

.cadence-visual {
    display: grid;
    grid-template-columns: auto repeat(4, 1fr);
    gap: 0.5rem;
    align-items: center;
}

.cadence-visual b {
    display: grid;
    place-items: center;
    width: 3.4rem;
    height: 3.4rem;
    border-radius: 999px;
    background: #10261a;
    color: #fff;
    font-size: 0.92rem;
    box-shadow: inset 0 0 0 1px rgba(40, 209, 124, 0.36);
}

.cadence-visual i {
    height: 3.4rem;
    border: 1px solid rgba(40, 209, 124, 0.18);
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(40, 209, 124, 0.18), transparent),
        #fff;
}

.launch-visual {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.5rem;
    align-items: stretch;
}

.launch-visual span {
    display: grid;
    place-items: center;
    border-radius: 8px;
    background: #fff;
    border: 1px solid rgba(40, 209, 124, 0.16);
    color: var(--ink);
    font-size: 0.8rem;
    font-weight: 800;
}

.pos-visual {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0.2rem 0.8rem;
    align-items: center;
}

.pos-visual strong {
    grid-column: 1 / -1;
    font-size: 0.92rem;
}

.pos-visual span {
    color: var(--muted);
    font-size: 0.82rem;
    font-weight: 700;
}

.pos-visual b {
    display: grid;
    place-items: center;
    width: 2.8rem;
    height: 2.8rem;
    border-radius: 8px;
    background: #10261a;
    color: #fff;
    box-shadow: inset 0 0 0 1px rgba(40, 209, 124, 0.34);
}

.tile {
    min-height: 15rem;
    padding: 1.35rem;
    border: 1px solid rgba(29, 29, 31, 0.08);
    border-radius: 8px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 253, 0.9)),
        rgba(255, 255, 255, 0.82);
    box-shadow:
        0 16px 38px rgba(0, 0, 0, 0.055),
        inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

.section.dark .tile {
    border-color: rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.07);
}

.tile span,
.metric span,
.report-line span,
.price-row span {
    display: block;
    color: var(--muted-2);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
}

.tile strong {
    display: block;
    margin-top: 0.65rem;
    color: inherit;
    font-size: 1.35rem;
    line-height: 1.15;
}

.tile p {
    margin: 0.8rem 0 0;
    color: var(--muted);
    line-height: 1.5;
}

.metric-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    max-width: 900px;
    margin: clamp(2rem, 5vw, 4rem) auto 0;
}

.metric {
    padding: 1.2rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.72);
    text-align: center;
}

.premium-hero.dark .metric,
.section.dark .metric {
    background: rgba(255, 255, 255, 0.08);
}

.metric strong {
    display: block;
    margin-top: 0.45rem;
    font-size: clamp(1.45rem, 3vw, 2.2rem);
}

.feature-row {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: clamp(2rem, 6vw, 5rem);
    align-items: center;
}

.feature-row.reverse {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
}

.feature-copy h2 {
    margin: 0;
    font-size: clamp(2.4rem, 5vw, 5rem);
    line-height: 1;
}

.feature-copy p {
    color: var(--muted);
    font-size: 1.18rem;
    line-height: 1.55;
}

.product-card {
    position: relative;
    min-height: 32rem;
    overflow: hidden;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.76);
    background:
        radial-gradient(circle at 50% 0%, rgba(40, 209, 124, 0.1), transparent 32%),
        linear-gradient(180deg, #fff, #eef1f5);
    box-shadow:
        var(--shadow),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.screen-stack {
    position: absolute;
    inset: 2rem;
}

.screen {
    position: absolute;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.12);
}

.screen.primary {
    inset: 0 6% 0 0;
}

.screen.secondary {
    right: 0;
    bottom: -1.2rem;
    width: 52%;
    height: 56%;
}

.screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.report-preview,
.care-preview,
.contact-preview {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.74);
    border-radius: 8px;
    background:
        linear-gradient(145deg, #fff, #f8fafc),
        #fff;
    box-shadow:
        var(--shadow),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.report-sheet {
    min-height: 34rem;
    padding: clamp(1.4rem, 4vw, 3rem);
}

.report-sheet h3 {
    margin: 0;
    font-size: clamp(2rem, 4vw, 3.6rem);
    line-height: 1.02;
}

.report-health-line {
    width: min(100%, 34rem);
    height: 3.35rem;
    margin-top: 1rem;
    border: 1px solid rgba(40, 209, 124, 0.18);
    border-radius: 8px;
    padding: 0.4rem 0.55rem;
    background:
        linear-gradient(90deg, rgba(40, 209, 124, 0.08) 1px, transparent 1px) 0 0 / 38px 100%,
        rgba(40, 209, 124, 0.045);
}

.report-health-line path {
    stroke-width: 3;
}

.report-lines {
    display: grid;
    gap: 0.85rem;
    margin-top: 2rem;
}

.report-line {
    display: grid;
    grid-template-columns: 6rem 1fr auto;
    gap: 1rem;
    align-items: center;
    min-height: 4.4rem;
    border-bottom: 1px solid var(--line);
}

.report-line strong {
    font-size: 1.08rem;
}

.badge {
    display: inline-flex;
    justify-content: center;
    min-width: 5rem;
    border-radius: 999px;
    padding: 0.45rem 0.7rem;
    background: #f5f5f7;
    color: var(--muted);
    font-size: 0.82rem;
    font-weight: 700;
}

.badge.high {
    background: #fff1f0;
    color: #b3261e;
}

.badge.medium {
    background: #fff7e6;
    color: #9a5b00;
}

.price-list {
    overflow: hidden;
    border: 1px solid rgba(29, 29, 31, 0.08);
    border-radius: 8px;
    background:
        linear-gradient(145deg, #fff, #f8fafc),
        #fff;
    box-shadow:
        0 18px 46px rgba(0, 0, 0, 0.055),
        inset 0 1px 0 rgba(255, 255, 255, 0.88);
}

.price-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 1.5rem;
    padding: 1.35rem;
    border-bottom: 1px solid var(--line);
    color: inherit;
}

.price-row:last-child {
    border-bottom: 0;
}

.price-row strong {
    display: block;
    margin-top: 0.3rem;
    font-size: 1.25rem;
}

.price-row p {
    margin: 0.45rem 0 0;
    color: var(--muted);
}

.price-row b {
    align-self: center;
    color: var(--ink);
    font-size: 1.25rem;
}

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

.review-card,
.report-document,
.review-process {
    border: 1px solid rgba(29, 29, 31, 0.08);
    border-radius: 8px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 253, 0.92)),
        #fff;
    box-shadow:
        0 22px 58px rgba(0, 0, 0, 0.075),
        inset 0 1px 0 rgba(255, 255, 255, 0.88);
}

.review-card {
    min-height: 24rem;
    display: grid;
    align-content: space-between;
    gap: 1.5rem;
    padding: clamp(1.3rem, 3vw, 2rem);
}

.review-card.featured-review {
    color: #f5f5f7;
    background:
        radial-gradient(circle at 82% 12%, rgba(40, 209, 124, 0.2), transparent 34%),
        linear-gradient(145deg, rgba(29, 29, 31, 0.98), rgba(12, 13, 15, 0.98)),
        #111113;
}

.review-card span,
.review-meta b,
.report-score span,
.report-meta-grid span,
.risk-row span,
.finding-head span,
.finding-detail-grid span,
.action-plan span,
.review-process span {
    color: var(--muted-2);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
}

.review-card.featured-review span,
.review-card.featured-review .review-meta b {
    color: rgba(245, 245, 247, 0.58);
}

.review-quote {
    margin: 0;
    color: inherit;
    font-size: clamp(1.45rem, 2.6vw, 2.25rem);
    font-weight: 800;
    line-height: 1.08;
}

.review-meta {
    display: grid;
    gap: 0.3rem;
}

.review-meta strong {
    font-size: 1.05rem;
}

.review-meta b {
    font-weight: 800;
}

.proof-strip,
.action-plan,
.scope-grid,
.report-meta-grid,
.finding-detail-grid {
    display: grid;
    gap: 1rem;
}

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

.proof-strip div,
.review-process div,
.scope-grid div,
.action-plan div,
.report-meta-grid div {
    border: 1px solid rgba(29, 29, 31, 0.08);
    border-radius: 8px;
    padding: 1.15rem;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 253, 0.9)),
        #fff;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

.proof-strip span {
    display: block;
    color: var(--muted-2);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
}

.proof-strip strong,
.scope-grid strong,
.action-plan strong,
.report-meta-grid strong,
.review-process strong {
    display: block;
    margin-top: 0.5rem;
    font-size: 1.25rem;
    line-height: 1.14;
}

.proof-strip p,
.scope-grid p,
.action-plan p,
.finding-card p,
.finding-detail-grid p {
    margin: 0.75rem 0 0;
    color: var(--muted);
    line-height: 1.55;
}

.review-process {
    display: grid;
    gap: 1rem;
    padding: 1rem;
    background:
        radial-gradient(circle at 92% 4%, rgba(40, 209, 124, 0.16), transparent 35%),
        rgba(255, 255, 255, 0.08);
}

.trusted-reviews-section {
    color: #f5f5f7;
    background:
        radial-gradient(circle at 50% 0%, rgba(40, 209, 124, 0.1), transparent 30%),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px) 0 0 / 72px 72px,
        linear-gradient(180deg, rgba(255, 255, 255, 0.026) 1px, transparent 1px) 0 0 / 72px 72px,
        #070708;
}

.trusted-reviews-section .section-head {
    max-width: 920px;
}

.trusted-reviews-section .kicker,
.trusted-reviews-section .section-copy {
    color: rgba(245, 245, 247, 0.66);
}

.trusted-reviews-section .section-title {
    color: #f5f5f7;
}

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

.testimonial-card {
    position: relative;
    min-height: 25rem;
    display: grid;
    grid-template-rows: auto 1fr auto;
    gap: 1.5rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 8px;
    padding: clamp(1.2rem, 2.4vw, 1.7rem);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.028)),
        rgba(255, 255, 255, 0.035);
    box-shadow:
        0 24px 68px rgba(0, 0, 0, 0.26),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.testimonial-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 2px;
    background: linear-gradient(90deg, var(--health), rgba(255, 255, 255, 0.18), transparent);
}

.testimonial-person {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 0.9rem;
    align-items: center;
}

.testimonial-person > span {
    display: grid;
    place-items: center;
    width: 3.1rem;
    height: 3.1rem;
    border: 1px solid rgba(40, 209, 124, 0.34);
    border-radius: 999px;
    background:
        radial-gradient(circle at 30% 24%, rgba(255, 255, 255, 0.24), transparent 34%),
        #10261a;
    color: #f5f5f7;
    font-size: 1.08rem;
    font-weight: 800;
    box-shadow: 0 16px 44px rgba(40, 209, 124, 0.16);
}

.testimonial-person strong {
    display: block;
    color: #f5f5f7;
    font-size: 1rem;
}

.testimonial-person p {
    margin: 0.3rem 0 0;
    color: rgba(245, 245, 247, 0.58);
    font-size: 0.88rem;
    line-height: 1.45;
}

.testimonial-card blockquote {
    position: relative;
    margin: 0;
    color: rgba(245, 245, 247, 0.78);
    font-size: 1.02rem;
    font-style: italic;
    line-height: 1.62;
}

.testimonial-card blockquote::before {
    content: "\"";
    position: absolute;
    left: -0.2rem;
    top: -1rem;
    color: rgba(40, 209, 124, 0.4);
    font-size: 3rem;
    font-style: normal;
    line-height: 1;
}

.project-summary-card {
    grid-template-rows: auto 1fr auto;
}

.project-summary-card .testimonial-person > span {
    width: 3.35rem;
    border-radius: 8px;
    font-size: 0.9rem;
}

.project-summary-card > p {
    margin: 0;
    color: rgba(245, 245, 247, 0.78);
    font-size: 1.02rem;
    line-height: 1.58;
}

.testimonial-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.testimonial-tags span {
    display: inline-flex;
    align-items: center;
    min-height: 2rem;
    border: 1px solid rgba(40, 209, 124, 0.2);
    border-radius: 999px;
    padding: 0.42rem 0.62rem;
    background: rgba(40, 209, 124, 0.08);
    color: rgba(245, 245, 247, 0.72);
    font-size: 0.72rem;
    font-weight: 800;
    line-height: 1.1;
    text-transform: uppercase;
}

.section.dark .review-process div {
    border-color: rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.07);
}

.section.dark .review-process strong {
    color: #f5f5f7;
}

.report-document {
    overflow: hidden;
    padding: clamp(1rem, 3vw, 1.5rem);
}

.report-cover {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(16rem, 0.36fr);
    gap: 1rem;
    align-items: stretch;
    border-radius: 8px;
    padding: clamp(1.4rem, 4vw, 3rem);
    color: #f5f5f7;
    background:
        radial-gradient(circle at 84% 0%, rgba(40, 209, 124, 0.24), transparent 34%),
        linear-gradient(145deg, rgba(29, 29, 31, 0.98), rgba(7, 8, 10, 0.98)),
        #111113;
}

.report-cover h2 {
    max-width: 740px;
    margin: 0;
    font-size: clamp(2.5rem, 6vw, 5.4rem);
    line-height: 0.98;
}

.report-cover p {
    color: rgba(245, 245, 247, 0.7);
    font-size: 1.05rem;
    line-height: 1.55;
}

.report-score {
    display: grid;
    align-content: end;
    gap: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    padding: 1.15rem;
    background: rgba(255, 255, 255, 0.08);
}

.report-score strong {
    font-size: clamp(1.8rem, 3vw, 2.7rem);
    line-height: 1;
}

.report-score b {
    color: var(--health);
}

.report-meta-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 1rem;
}

.report-section {
    padding: clamp(2rem, 5vw, 4rem) clamp(0.4rem, 2vw, 1.5rem);
    border-bottom: 1px solid rgba(29, 29, 31, 0.08);
}

.report-section:last-child {
    border-bottom: 0;
}

.report-section h3 {
    max-width: 820px;
    margin: 0;
    font-size: clamp(2rem, 4vw, 3.6rem);
    line-height: 1.02;
}

.report-section > p {
    max-width: 880px;
    color: var(--muted);
    font-size: 1.16rem;
    line-height: 1.65;
}

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

.risk-register,
.finding-stack {
    display: grid;
    gap: 0.8rem;
}

.risk-row {
    display: grid;
    grid-template-columns: 7rem minmax(0, 1fr) auto;
    gap: 1rem;
    align-items: center;
    min-height: 4.8rem;
    border: 1px solid rgba(29, 29, 31, 0.08);
    border-radius: 8px;
    padding: 1rem;
    background: #fff;
}

.risk-row strong {
    font-size: 1.08rem;
}

.risk-row b,
.finding-head b {
    border-radius: 999px;
    padding: 0.45rem 0.7rem;
    color: var(--muted);
    background: #f5f5f7;
    font-size: 0.82rem;
}

.risk-row.high b,
.finding-card.high .finding-head b {
    background: #fff1f0;
    color: #b3261e;
}

.risk-row.medium b,
.finding-card.medium .finding-head b {
    background: #fff7e6;
    color: #9a5b00;
}

.finding-card {
    border: 1px solid rgba(29, 29, 31, 0.08);
    border-radius: 8px;
    padding: clamp(1.15rem, 3vw, 1.6rem);
    background:
        linear-gradient(145deg, #fff, #f8fafc),
        #fff;
    box-shadow: 0 14px 38px rgba(0, 0, 0, 0.045);
}

.finding-card.high {
    border-color: rgba(179, 38, 30, 0.18);
}

.finding-card.medium {
    border-color: rgba(154, 91, 0, 0.16);
}

.finding-head {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 1rem;
    align-items: center;
}

.finding-head strong {
    font-size: clamp(1.3rem, 2.4vw, 2rem);
    line-height: 1.08;
}

.finding-detail-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 1.2rem;
}

.finding-detail-grid div {
    border-top: 1px solid rgba(29, 29, 31, 0.08);
    padding-top: 0.9rem;
}

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

.care-preview {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    background: var(--line);
}

.care-step {
    min-height: 13rem;
    padding: 1.25rem;
    background: #fff;
}

.care-step strong {
    display: block;
    margin-top: 0.5rem;
    font-size: 2rem;
}

.care-step span,
.care-step p {
    color: var(--muted);
}

.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
    gap: clamp(1.5rem, 4vw, 3rem);
    align-items: start;
}

.contact-card,
.premium-form {
    border: 1px solid rgba(29, 29, 31, 0.08);
    border-radius: 8px;
    background:
        linear-gradient(145deg, #fff, #f8fafc),
        #fff;
    box-shadow:
        0 20px 52px rgba(0, 0, 0, 0.07),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.contact-card {
    padding: clamp(1.5rem, 4vw, 2.4rem);
}

.contact-card h2 {
    margin: 0;
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1.04;
}

.contact-card p,
.form-note {
    color: var(--muted);
    line-height: 1.55;
}

.contact-list {
    display: grid;
    gap: 0.8rem;
    margin-top: 1.5rem;
}

.contact-list a,
.contact-list div {
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface-soft);
    overflow-wrap: anywhere;
}

.contact-list span {
    display: block;
    color: var(--muted);
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
}

.contact-list strong {
    display: block;
    margin-top: 0.25rem;
}

.premium-form {
    padding: clamp(1rem, 3vw, 1.5rem);
}

.form-honey {
    position: absolute;
    left: -10000px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

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

.field {
    display: grid;
    gap: 0.45rem;
}

.field.full {
    grid-column: 1 / -1;
}

.field span {
    color: var(--muted);
    font-size: 0.86rem;
    font-weight: 700;
}

.field input,
.field select,
.field textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fbfbfd;
    color: var(--ink);
    font: inherit;
    padding: 0.92rem 1rem;
    outline: 0;
}

.field textarea {
    min-height: 9rem;
    resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    border-color: rgba(0, 113, 227, 0.55);
    box-shadow: 0 0 0 4px rgba(0, 113, 227, 0.12);
}

[data-reveal] {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 520ms ease, transform 520ms ease;
}

[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

.flagship-hero {
    min-height: min(100svh, 64rem);
    padding: 1.5rem 0 2rem;
    color: #f5f5f7;
    background:
        radial-gradient(circle at 73% 34%, rgba(255, 48, 43, 0.22), transparent 31rem),
        radial-gradient(circle at 33% 82%, rgba(255, 255, 255, 0.08), transparent 25rem),
        linear-gradient(90deg, rgba(255, 255, 255, 0.032) 1px, transparent 1px) 0 0 / 86px 86px,
        linear-gradient(180deg, rgba(255, 255, 255, 0.027) 1px, transparent 1px) 0 0 / 86px 86px,
        linear-gradient(135deg, #050506 0%, #09090a 52%, #150807 100%);
}

.flagship-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(5, 5, 6, 0.94) 0%, rgba(5, 5, 6, 0.5) 48%, rgba(5, 5, 6, 0.72) 100%),
        linear-gradient(180deg, rgba(5, 5, 6, 0.08), #050506 100%);
}

.flagship-hero .hero-video-bg {
    z-index: 0;
    opacity: 0.2;
    mix-blend-mode: screen;
}

.flagship-hero .container {
    width: min(100% - 6rem, 1760px);
    max-width: none;
}

.flagship-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(39rem, 0.95fr) minmax(39rem, 1.05fr);
    gap: clamp(2rem, 3.6vw, 4rem);
    align-items: start;
    min-height: min(38rem, calc(100svh - 9rem));
    min-width: 0;
}

.flagship-copy {
    min-width: 0;
    padding-top: clamp(2.1rem, 4.8vh, 4.2rem);
}

.flagship-copy .hero-title {
    max-width: 820px;
    margin: 0;
    font-size: clamp(3.1rem, 4.1vw, 5rem);
    line-height: 0.96;
    text-wrap: balance;
}

.flagship-copy .hero-title span {
    display: block;
}

.flagship-copy .hero-title span + span::before {
    content: none;
}

.flagship-copy .lead {
    max-width: 650px;
    margin-left: 0;
    color: rgba(245, 245, 247, 0.72);
    font-size: 1.32rem;
    line-height: 1.36;
}

.flagship-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.7rem;
    max-width: 650px;
    margin-top: 1.45rem;
}

.flagship-stats span {
    min-height: 5rem;
    padding: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(255, 48, 43, 0.08), transparent 54%),
        rgba(255, 255, 255, 0.055);
    color: rgba(245, 245, 247, 0.62);
    line-height: 1.35;
}

.flagship-stats strong {
    display: block;
    margin-bottom: 0.28rem;
    color: #f5f5f7;
    font-size: 1.35rem;
}

.flagship-stage {
    position: relative;
    min-height: 36rem;
    display: grid;
    align-items: center;
    perspective: 1500px;
}

.flagship-stage::before {
    content: "";
    position: absolute;
    inset: 9% -3% 5% 9%;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 34px;
    background:
        linear-gradient(120deg, rgba(255, 255, 255, 0.06), transparent 48%),
        rgba(255, 255, 255, 0.018);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.stage-browser {
    position: relative;
    overflow: hidden;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    aspect-ratio: 16 / 10;
    background: #08090a;
    box-shadow:
        0 56px 140px rgba(0, 0, 0, 0.48),
        inset 0 1px 0 rgba(255, 255, 255, 0.16);
    transform: rotateY(-5deg) rotateX(3deg);
}

.stage-video {
    width: 100%;
    height: calc(100% - 3rem);
    object-fit: cover;
    background: #050506;
}

.siem-browser {
    background:
        radial-gradient(circle at 72% 22%, rgba(255, 48, 43, 0.2), transparent 30%),
        radial-gradient(circle at 18% 84%, rgba(255, 255, 255, 0.08), transparent 28%),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px) 0 3rem / 54px 54px,
        linear-gradient(180deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px) 0 3rem / 54px 54px,
        #08090a;
}

.siem-console {
    height: calc(100% - 3rem);
    padding: clamp(1rem, 2.2vw, 1.6rem);
    display: grid;
    grid-template-columns: minmax(10rem, 0.78fr) minmax(18rem, 1.22fr);
    grid-template-rows: minmax(10.2rem, 0.9fr) minmax(13.5rem, 1.1fr);
    gap: clamp(0.8rem, 1.4vw, 1rem);
}

.siem-panel {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 8px;
    padding: clamp(0.85rem, 1.3vw, 1.05rem);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035)),
        rgba(10, 12, 14, 0.78);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.12),
        0 24px 70px rgba(0, 0, 0, 0.24);
}

.siem-panel::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 48, 43, 0.72), transparent);
}

.siem-panel > span {
    display: block;
    color: rgba(245, 245, 247, 0.58);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.siem-score {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background:
        radial-gradient(circle at 72% 28%, rgba(255, 48, 43, 0.26), transparent 42%),
        rgba(10, 12, 14, 0.82);
}

.siem-score strong {
    color: #f5f5f7;
    font-size: clamp(4.8rem, 7vw, 7.4rem);
    line-height: 0.82;
}

.siem-score b {
    width: max-content;
    border: 1px solid rgba(255, 48, 43, 0.34);
    border-radius: 999px;
    padding: 0.46rem 0.68rem;
    background: rgba(255, 48, 43, 0.14);
    color: rgba(245, 245, 247, 0.86);
    font-size: 0.78rem;
}

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

.siem-feed > span {
    grid-column: 1 / -1;
}

.siem-feed div {
    display: grid;
    grid-template-columns: 0.55rem minmax(0, 1fr) auto;
    gap: 0.7rem;
    align-items: center;
    min-height: 2.28rem;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 8px;
    padding: 0.62rem 0.72rem;
    background: rgba(255, 255, 255, 0.045);
}

.siem-feed i {
    display: block;
    width: 0.54rem;
    height: 0.54rem;
    border-radius: 999px;
    background: #ff302b;
    box-shadow: 0 0 18px rgba(255, 48, 43, 0.65);
}

.siem-feed i.level-high {
    background: #ff302b;
    box-shadow: 0 0 22px rgba(255, 48, 43, 0.78);
}

.siem-feed i.level-low {
    opacity: 0.55;
}

.siem-feed strong {
    color: rgba(245, 245, 247, 0.86);
    font-size: clamp(0.76rem, 0.9vw, 0.9rem);
}

.siem-feed b {
    color: rgba(245, 245, 247, 0.56);
    font-size: 0.72rem;
    text-transform: uppercase;
}

.siem-path {
    grid-column: span 2;
    min-height: 14.4rem;
}

.siem-path::before {
    content: "";
    position: absolute;
    inset: 3rem 0.9rem 3.25rem;
    border: 1px solid rgba(255, 255, 255, 0.075);
    border-radius: 8px;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px) 0 0 / 52px 52px,
        linear-gradient(180deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px) 0 0 / 52px 52px,
        radial-gradient(circle at 22% 62%, rgba(255, 48, 43, 0.16), transparent 8rem),
        radial-gradient(circle at 82% 24%, rgba(255, 48, 43, 0.12), transparent 7rem),
        rgba(255, 255, 255, 0.025);
}

.siem-path > span {
    position: relative;
    z-index: 3;
}

.path-map {
    position: absolute;
    inset: 3.35rem clamp(14rem, 34%, 19rem) 3.9rem 1.1rem;
    z-index: 2;
}

.path-map svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.path-map path {
    fill: none;
    stroke: rgba(255, 48, 43, 0.3);
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.path-map path.trail {
    stroke: rgba(255, 255, 255, 0.16);
    stroke-width: 1.5;
    stroke-dasharray: 7 14;
}

.path-map path.pulse {
    stroke: rgba(255, 48, 43, 0.92);
    stroke-dasharray: 78 230;
    animation: healthPulse 2600ms ease-in-out infinite;
}

.path-map i {
    position: absolute;
    width: 1.05rem;
    height: 1.05rem;
    border-radius: 999px;
    background: #101412;
    border: 2px solid rgba(255, 48, 43, 0.78);
    box-shadow: 0 0 28px rgba(255, 48, 43, 0.4);
    z-index: 2;
}

.path-map i::after {
    content: attr(data-label);
    position: absolute;
    top: 1.25rem;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(245, 245, 247, 0.52);
    font-size: 0.58rem;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.path-map i:nth-child(1) {
    left: 8%;
    top: 61%;
}

.path-map i:nth-child(2) {
    left: 40%;
    top: 48%;
}

.path-map i:nth-child(3) {
    left: 68%;
    top: 70%;
}

.path-map i:nth-child(4) {
    left: 84%;
    top: 24%;
}

.siem-health {
    display: none;
}

.stage-report {
    position: absolute;
    top: 3.35rem;
    right: 1rem;
    bottom: auto;
    z-index: 4;
    width: clamp(13.5rem, 31%, 17.5rem);
    min-height: 7.25rem;
    padding: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.07)),
        rgba(7, 8, 10, 0.84);
    box-shadow:
        0 24px 70px rgba(0, 0, 0, 0.42),
        inset 0 1px 0 rgba(255, 255, 255, 0.11);
    backdrop-filter: blur(18px);
}

.stage-report span,
.stage-stack span,
.case-study-card > span,
.package-card span,
.risk-dial span,
.surface-map > span,
.owner-queue > span {
    display: block;
    color: rgba(245, 245, 247, 0.56);
    font-size: 0.76rem;
    font-weight: 800;
    text-transform: uppercase;
}

.stage-report strong {
    display: block;
    margin-top: 0.35rem;
    color: #f5f5f7;
    font-size: clamp(1.18rem, 1.65vw, 1.45rem);
    line-height: 1.05;
}

.stage-stack {
    position: absolute;
    left: 1.05rem;
    bottom: 0.95rem;
    z-index: 3;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    width: calc(100% - 2.1rem);
    padding-right: clamp(14rem, 34%, 19rem);
}

.stage-stack span {
    border: 1px solid rgba(255, 48, 43, 0.3);
    border-radius: 999px;
    padding: 0.48rem 0.66rem;
    background: rgba(255, 48, 43, 0.12);
    color: rgba(245, 245, 247, 0.76);
}

.inline-link {
    color: var(--blue);
    font-weight: 800;
}

.strike-platform-section {
    padding: clamp(4rem, 7vw, 6.5rem) 0;
    color: #f5f5f7;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px) 0 0 / 80px 80px,
        linear-gradient(180deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px) 0 0 / 80px 80px,
        radial-gradient(circle at 80% 20%, rgba(255, 48, 43, 0.14), transparent 28rem),
        #050506;
}

.strike-platform-section .container {
    width: min(100% - 44px, 1320px);
}

.strike-platform-head {
    display: grid;
    grid-template-columns: minmax(0, 0.6fr) minmax(0, 1.4fr);
    gap: clamp(1.4rem, 4vw, 4rem);
    align-items: end;
    margin-bottom: clamp(1.6rem, 4vw, 3rem);
}

.strike-platform-head span,
.strike-module-grid span {
    color: rgba(245, 245, 247, 0.48);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.strike-platform-head h2 {
    margin: 0;
    max-width: 920px;
    font-size: clamp(2.6rem, 5.2vw, 5.2rem);
    line-height: 0.94;
    letter-spacing: 0;
}

.strike-module-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.035);
    box-shadow: 0 42px 120px rgba(0, 0, 0, 0.34);
}

.strike-module-grid article {
    min-height: 22rem;
    display: grid;
    align-content: start;
    gap: 1rem;
    padding: clamp(1.1rem, 2vw, 1.45rem);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.065), transparent),
        rgba(255, 255, 255, 0.025);
}

.strike-module-grid article:last-child {
    border-right: 0;
}

.strike-module-grid strong {
    max-width: 13rem;
    color: #f5f5f7;
    font-size: clamp(1.35rem, 2vw, 1.9rem);
    line-height: 1;
}

.strike-module-grid p {
    margin: 0;
    color: rgba(245, 245, 247, 0.62);
    line-height: 1.5;
}

.strike-module-grid article:hover {
    background:
        linear-gradient(180deg, rgba(255, 48, 43, 0.13), transparent),
        rgba(255, 255, 255, 0.04);
}

.case-study-section {
    background:
        linear-gradient(180deg, #f5f5f7, #eceff3);
}

.case-study-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 1rem;
}

.case-study-card {
    grid-column: span 2;
    min-height: 28rem;
    display: grid;
    align-content: start;
    gap: 1rem;
    border: 1px solid rgba(29, 29, 31, 0.08);
    border-radius: 8px;
    padding: clamp(1.2rem, 2.6vw, 1.8rem);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 253, 0.92)),
        #fff;
    box-shadow:
        0 22px 58px rgba(0, 0, 0, 0.07),
        inset 0 1px 0 rgba(255, 255, 255, 0.88);
}

.case-study-card:nth-child(4),
.case-study-card:nth-child(5) {
    grid-column: span 3;
}

.case-study-card > span,
.package-card span {
    color: var(--muted-2);
}

.case-study-card h3 {
    margin: 0;
    color: var(--ink);
    font-size: clamp(1.55rem, 2.6vw, 2.35rem);
    line-height: 1.04;
}

.case-study-card p,
.case-study-card dd,
.package-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.55;
}

.case-study-card dl {
    display: grid;
    gap: 0.75rem;
    margin: 0;
}

.case-study-card dl div {
    border-top: 1px solid rgba(29, 29, 31, 0.08);
    padding-top: 0.75rem;
}

.case-study-card dt {
    color: var(--ink);
    font-weight: 800;
}

.packages-section {
    background: #fff;
}

.home-services-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 18% 0%, rgba(255, 48, 43, 0.08), transparent 26rem),
        linear-gradient(180deg, #fff, #f2f3f6);
}

.home-services-section::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(29, 29, 31, 0.035) 1px, transparent 1px) 0 0 / 84px 84px,
        linear-gradient(180deg, rgba(29, 29, 31, 0.03) 1px, transparent 1px) 0 0 / 84px 84px;
}

.home-services-section .container {
    position: relative;
    z-index: 1;
}

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

.package-card {
    min-height: 20rem;
    display: grid;
    align-content: start;
    gap: 0.85rem;
    border: 1px solid rgba(29, 29, 31, 0.08);
    border-radius: 8px;
    padding: clamp(1.2rem, 2.4vw, 1.6rem);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 253, 0.9)),
        #fff;
    box-shadow:
        0 18px 46px rgba(0, 0, 0, 0.055),
        inset 0 1px 0 rgba(255, 255, 255, 0.88);
    transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.package-card:hover {
    transform: translateY(-3px);
    border-color: rgba(40, 209, 124, 0.24);
    box-shadow: 0 24px 62px rgba(0, 0, 0, 0.08);
}

.package-card strong {
    color: var(--ink);
    font-size: clamp(1.35rem, 2vw, 1.85rem);
    line-height: 1.08;
}

.package-card b {
    margin-top: auto;
    color: var(--green);
}

.service-priority-grid {
    align-items: stretch;
}

.service-priority-grid .package-card {
    align-content: stretch;
    grid-template-rows: auto auto 1fr auto;
}

.package-card.primary-offer {
    min-height: 25rem;
    border-color: rgba(255, 48, 43, 0.24);
    background:
        radial-gradient(circle at 76% 8%, rgba(255, 48, 43, 0.18), transparent 34%),
        linear-gradient(145deg, #121214, #070708);
    color: rgba(245, 245, 247, 0.76);
    box-shadow:
        0 34px 92px rgba(0, 0, 0, 0.24),
        inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.package-card.primary-offer strong {
    color: #f5f5f7;
}

.package-card.primary-offer p {
    color: rgba(245, 245, 247, 0.72);
}

.package-card.primary-offer span {
    color: rgba(255, 185, 181, 0.82);
}

.package-card.primary-offer b {
    width: max-content;
    max-width: 100%;
    border: 1px solid rgba(255, 48, 43, 0.3);
    border-radius: 999px;
    padding: 0.5rem 0.7rem;
    background: rgba(255, 48, 43, 0.12);
    color: #ffb9b5;
}

.package-card.care-offer {
    background:
        radial-gradient(circle at 76% 8%, rgba(255, 255, 255, 0.12), transparent 32%),
        linear-gradient(145deg, #191a1d, #09090a);
}

.report-console,
.launch-console {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px) 0 0 / 52px 52px,
        linear-gradient(180deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px) 0 0 / 52px 52px,
        #08090a;
    box-shadow:
        0 42px 110px rgba(0, 0, 0, 0.34),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.report-dashboard {
    display: grid;
    grid-template-columns: 0.7fr 1fr 1fr;
    gap: 1rem;
}

.risk-dial,
.surface-map,
.owner-queue {
    border: 1px solid rgba(29, 29, 31, 0.08);
    border-radius: 8px;
    padding: 1.15rem;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 253, 0.92)),
        #fff;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

.risk-dial {
    display: grid;
    align-content: center;
    justify-items: center;
    text-align: center;
}

.risk-dial span,
.surface-map > span,
.owner-queue > span {
    color: var(--muted-2);
}

.risk-dial strong {
    display: grid;
    place-items: center;
    width: 8rem;
    height: 8rem;
    margin: 1rem 0 0.6rem;
    border: 8px solid rgba(40, 209, 124, 0.18);
    border-top-color: var(--health);
    border-radius: 999px;
    color: var(--ink);
    font-size: 3rem;
    line-height: 1;
}

.risk-dial b {
    color: var(--green);
}

.surface-map,
.owner-queue {
    display: grid;
    gap: 0.85rem;
}

.surface-map div {
    display: grid;
    grid-template-columns: 6rem minmax(0, 1fr) auto;
    gap: 0.8rem;
    align-items: center;
}

.surface-map i {
    height: 0.52rem;
    border-radius: 999px;
    background:
        linear-gradient(90deg, var(--health) var(--level), rgba(29, 29, 31, 0.08) var(--level));
}

.surface-map b {
    color: var(--muted);
    font-size: 0.8rem;
}

.owner-queue div {
    border-top: 1px solid rgba(29, 29, 31, 0.08);
    padding-top: 0.75rem;
}

.owner-queue strong {
    color: var(--ink);
}

.owner-queue p {
    margin: 0.3rem 0 0;
    color: var(--muted);
}

.web-hero {
    color: #f5f5f7;
    background:
        radial-gradient(circle at 72% 16%, rgba(255, 255, 255, 0.14), transparent 32%),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px) 0 0 / 74px 74px,
        linear-gradient(180deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px) 0 0 / 74px 74px,
        linear-gradient(145deg, #050506 0%, #111113 54%, #1d1d1f 100%);
}

.web-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(180deg, rgba(5, 5, 6, 0.42), transparent 34%, rgba(5, 5, 6, 0.26)),
        radial-gradient(circle at 30% 80%, rgba(40, 209, 124, 0.12), transparent 30%);
}

.web-hero .hero-split-grid {
    position: relative;
    z-index: 2;
    grid-template-columns: minmax(0, 0.82fr) minmax(30rem, 1.18fr);
}

.web-hero .eyebrow,
.web-hero .lead {
    color: rgba(245, 245, 247, 0.72);
}

.web-hero .button {
    border-color: rgba(255, 255, 255, 0.94);
    background: #f5f5f7;
    color: #050506;
    box-shadow:
        0 18px 48px rgba(0, 0, 0, 0.24),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.web-hero .button:hover {
    background: #ffffff;
    color: #050506;
}

.web-hero .button.secondary {
    border-color: rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.06);
    color: #f5f5f7;
}

.web-hero .button.secondary:hover {
    border-color: rgba(255, 255, 255, 0.42);
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
}

.web-hero-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.6rem;
    max-width: 610px;
    margin-top: clamp(1.35rem, 3vw, 2.2rem);
}

.web-hero-metrics span {
    min-height: 5rem;
    padding: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.065);
    color: rgba(245, 245, 247, 0.62);
    font-size: 0.82rem;
    line-height: 1.35;
}

.web-hero-metrics strong {
    display: block;
    margin-bottom: 0.32rem;
    color: #f5f5f7;
    font-size: 1rem;
}

.web-demo-stage {
    position: relative;
    min-height: clamp(30rem, 45vw, 42rem);
    display: grid;
    align-items: center;
    perspective: 1500px;
}

.web-demo-stage::before {
    content: "";
    position: absolute;
    inset: 8% -8% -10% 12%;
    border-radius: 8px;
    background:
        linear-gradient(90deg, rgba(40, 209, 124, 0.18), transparent 42%),
        rgba(255, 255, 255, 0.08);
    filter: blur(34px);
    opacity: 0.72;
    transform: rotate(-4deg);
}

.web-browser {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    aspect-ratio: 16 / 11;
    background: #08090a;
    box-shadow:
        0 56px 140px rgba(0, 0, 0, 0.46),
        inset 0 1px 0 rgba(255, 255, 255, 0.16);
    transform: rotateY(-8deg) rotateX(4deg);
    transform-style: preserve-3d;
}

.browser-chrome {
    min-height: 3rem;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 0.8rem;
    align-items: center;
    padding: 0.72rem 0.9rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.045)),
        rgba(12, 12, 14, 0.96);
}

.browser-dots {
    display: inline-flex;
    gap: 0.38rem;
}

.browser-dots i {
    width: 0.58rem;
    height: 0.58rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.34);
}

.browser-dots i:nth-child(2) {
    background: rgba(245, 245, 247, 0.5);
}

.browser-dots i:nth-child(3) {
    background: var(--health);
}

.browser-url,
.browser-status {
    min-width: 0;
    color: rgba(245, 245, 247, 0.62);
    font-size: 0.78rem;
    font-weight: 700;
}

.browser-url {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.browser-status {
    justify-self: end;
    color: var(--health);
}

.web-demo-video {
    width: 100%;
    height: calc(100% - 3rem);
    object-fit: cover;
    background: #050506;
}

.web-demo-status {
    position: absolute;
    right: 1rem;
    bottom: 1rem;
    width: min(15.5rem, calc(100% - 2rem));
    padding: 0.95rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.06)),
        rgba(7, 8, 10, 0.66);
    box-shadow: 0 20px 58px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(20px);
}

.web-demo-status span {
    display: block;
    color: rgba(245, 245, 247, 0.58);
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
}

.web-demo-status strong {
    display: block;
    margin-top: 0.25rem;
    color: #f5f5f7;
    font-size: 2rem;
    line-height: 1;
}

.mini-health {
    height: 2.4rem;
    margin-top: 0.25rem;
}

.mini-health path {
    stroke-width: 3;
}

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

.demo-card {
    grid-column: span 3;
    overflow: hidden;
    border: 1px solid rgba(29, 29, 31, 0.08);
    border-radius: 8px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.99), rgba(248, 250, 253, 0.94)),
        #fff;
    box-shadow:
        0 22px 58px rgba(0, 0, 0, 0.075),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.featured-demo {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(20rem, 0.75fr);
    align-items: stretch;
}

.demo-media {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #070708;
}

.featured-demo .demo-media {
    min-height: clamp(25rem, 43vw, 37rem);
    aspect-ratio: auto;
}

.demo-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #070708;
}

.demo-meta {
    display: grid;
    align-content: start;
    gap: 0.65rem;
    padding: clamp(1.15rem, 3vw, 1.7rem);
}

.featured-demo .demo-meta {
    align-content: center;
}

.demo-meta span,
.web-checklist span,
.web-service-strip span,
.launch-row span {
    display: block;
    color: var(--muted-2);
    font-size: 0.76rem;
    font-weight: 800;
    text-transform: uppercase;
}

.demo-meta h3 {
    margin: 0;
    color: var(--ink);
    font-size: clamp(1.55rem, 3vw, 2.75rem);
    line-height: 1.04;
}

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

.web-proof-section {
    background:
        linear-gradient(180deg, #f5f5f7, #eceff3);
}

.web-proof-band {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
    gap: clamp(2rem, 6vw, 5rem);
    align-items: start;
}

.web-proof-band h2 {
    max-width: 720px;
    margin: 0;
    font-size: clamp(2.6rem, 5.4vw, 5.2rem);
    line-height: 0.98;
}

.web-proof-band p {
    max-width: 620px;
    color: var(--muted);
    font-size: 1.12rem;
    line-height: 1.6;
}

.web-checklist {
    display: grid;
    gap: 0;
    border-top: 1px solid rgba(29, 29, 31, 0.12);
}

.web-checklist div {
    display: grid;
    grid-template-columns: 3rem minmax(0, 0.72fr) minmax(0, 1fr);
    gap: 1rem;
    padding: 1.25rem 0;
    border-bottom: 1px solid rgba(29, 29, 31, 0.12);
}

.web-checklist strong {
    color: var(--ink);
    font-size: clamp(1.15rem, 2vw, 1.55rem);
    line-height: 1.12;
}

.web-checklist p {
    margin: 0;
    font-size: 0.98rem;
}

.launch-console {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px) 0 0 / 52px 52px,
        linear-gradient(180deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px) 0 0 / 52px 52px,
        #08090a;
    box-shadow:
        0 42px 110px rgba(0, 0, 0, 0.34),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.console-head,
.launch-row {
    display: grid;
    grid-template-columns: 7rem minmax(0, 1fr) auto;
    gap: 1rem;
    align-items: center;
    min-height: 5.2rem;
    padding: 1rem 1.15rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.console-head {
    min-height: 4.2rem;
    background: rgba(255, 255, 255, 0.055);
}

.console-head span {
    width: 0.68rem;
    height: 0.68rem;
    border-radius: 999px;
    background: var(--health);
    box-shadow: 0 0 22px rgba(40, 209, 124, 0.58);
}

.console-head strong {
    color: #f5f5f7;
}

.console-head b,
.launch-row b {
    justify-self: end;
    border-radius: 999px;
    padding: 0.42rem 0.68rem;
    background: rgba(40, 209, 124, 0.14);
    color: var(--health);
    font-size: 0.78rem;
}

.launch-row:last-child {
    border-bottom: 0;
}

.launch-row strong {
    color: rgba(245, 245, 247, 0.9);
    font-size: 1.05rem;
    line-height: 1.35;
}

.web-service-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.web-service-strip article {
    min-height: 14rem;
    padding: 1.2rem;
    border: 1px solid rgba(29, 29, 31, 0.08);
    border-radius: 8px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 253, 0.92)),
        #fff;
    box-shadow:
        0 18px 46px rgba(0, 0, 0, 0.055),
        inset 0 1px 0 rgba(255, 255, 255, 0.88);
}

.web-service-strip strong {
    display: block;
    margin-top: 0.55rem;
    color: var(--ink);
    font-size: 1.35rem;
    line-height: 1.12;
}

.web-service-strip p {
    margin: 0.75rem 0 0;
    color: var(--muted);
    line-height: 1.5;
}

.site-footer {
    background: #f5f5f7;
    border-top: 1px solid var(--line);
    color: var(--muted);
    font-size: 0.86rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: 1.5rem;
    padding: 2.2rem 0;
}

.footer-brand img {
    width: 58px;
    height: 58px;
    margin-bottom: 0.4rem;
    filter: drop-shadow(0 14px 28px rgba(0, 0, 0, 0.10));
}

.footer-brand strong,
.footer-col strong {
    display: block;
    margin: 0.55rem 0;
    color: var(--ink);
}

.footer-brand p,
.safety-note {
    max-width: 24rem;
    margin: 0.45rem 0;
    line-height: 1.5;
}

.footer-col {
    display: grid;
    align-content: start;
    gap: 0.45rem;
}

.footer-col a {
    overflow-wrap: anywhere;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 0 1.4rem;
    border-top: 1px solid var(--line);
}

@media (max-width: 980px) {
    .nav {
        gap: 0.55rem;
        padding-left: 0.58rem;
    }

    .brand-name {
        display: none;
    }

    .nav-links {
        font-size: 0.72rem;
    }

    .nav-links a {
        padding: 0.48rem 0.54rem;
    }

    .hero-showcase-grid,
    .hero-split-grid {
        grid-template-columns: 1fr;
    }

    .hero-copy,
    .hero-split-grid .hero-copy {
        text-align: center;
    }

    .hero-copy .hero-title,
    .hero-copy .lead,
    .hero-split-grid .hero-copy .page-title,
    .hero-split-grid .hero-copy .lead {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-copy .hero-actions,
    .feature-copy .hero-actions {
        justify-content: center;
    }

    .showcase-visual {
        min-height: 38rem;
    }

    .hero-visual {
        min-height: 38rem;
    }

    .hero-product {
        transform: rotateY(-5deg) rotateX(3deg);
    }

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

    .panel-grid,
    .feature-row,
    .feature-row.reverse,
    .contact-layout {
        grid-template-columns: 1fr;
    }

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

    .review-grid,
    .proof-strip,
    .scope-grid,
    .report-meta-grid,
    .finding-detail-grid,
    .action-plan {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .report-cover {
        grid-template-columns: 1fr;
    }

    .product-card {
        min-height: 28rem;
    }

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

@media (max-width: 760px) {
    html,
    body {
        max-width: 100%;
        overflow-x: clip;
    }

    .container {
        width: min(100% - 28px, var(--max));
    }

    .nav {
        width: min(100% - 28px, var(--max));
        min-height: 58px;
        padding: 0.42rem 0.52rem 0.42rem 0.62rem;
    }

    .nav-toggle {
        display: block;
    }

    .nav-links {
        position: fixed;
        inset: 76px 14px auto 14px;
        display: grid;
        gap: 0;
        padding: 0.64rem;
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: 22px;
        background:
            linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04)),
            rgba(8, 8, 9, 0.96);
        box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
        backdrop-filter: saturate(180%) blur(24px);
        transform: translateY(-110%);
        opacity: 0;
        pointer-events: none;
        transition: transform 220ms ease, opacity 220ms ease;
        font-size: 1.15rem;
    }

    .nav-links.is-open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .nav-links a {
        display: block;
        min-height: auto;
        padding: 0.9rem 1rem;
        border-radius: 14px;
        border-bottom: 0;
    }

    .premium-hero {
        min-height: auto;
        padding: 4rem 0 3rem;
    }

    .split-hero {
        padding: 4rem 0 3.2rem;
    }

    .showcase-hero {
        padding: 3.2rem 0 2rem;
    }

    .hero-title,
    .page-title {
        font-size: 3.35rem;
        line-height: 1;
    }

    .hero-copy .hero-title {
        font-size: 3.1rem;
        line-height: 0.98;
    }

    .hero-split-grid .hero-copy .page-title {
        font-size: 3.05rem;
        line-height: 0.98;
    }

    .lead {
        font-size: 1.14rem;
    }

    .hero-proof,
    .service-gallery {
        grid-template-columns: 1fr;
    }

    .hero-proof {
        max-width: 100%;
    }

    .hero-proof div {
        min-height: auto;
        padding: 0.9rem;
    }

    .showcase-visual {
        min-height: 29rem;
        margin-top: 0.5rem;
    }

    .hero-visual {
        min-height: 34rem;
        margin-top: 0.5rem;
    }

    .hero-product,
    .web-product {
        inset: 0;
        transform: none;
    }

    .hero-card {
        top: 1rem;
        left: 1rem;
        right: 1rem;
        width: auto;
        min-height: auto;
    }

    .care-product .hero-card,
    .web-product .hero-card,
    .report-product .hero-card,
    .contact-product .hero-card {
        width: auto;
    }

    .hero-stat {
        display: none;
    }

    .hero-slab {
        left: 1rem;
        right: 1rem;
        bottom: 1rem;
        width: auto;
    }

    .product-health-line {
        left: 1rem;
        right: 1rem;
        top: auto;
        bottom: 35%;
        height: 3.6rem;
        opacity: 0.52;
    }

    .hero-mini-grid,
    .care-product .hero-mini-grid {
        left: 5%;
        bottom: 34%;
        width: 66%;
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .hero-mini-grid span,
    .care-product .hero-mini-grid span {
        min-height: 3.9rem;
    }

    .hero-proof {
        display: none;
    }

    .showcase-visual .premium-scene {
        inset: -6% 0 18%;
    }

    .hero-visual .premium-scene {
        inset: -6% 0 4%;
    }

    .showcase-glass {
        inset: 16% 0 8%;
        transform: none;
    }

    .showcase-glass .glass-device {
        right: 0.85rem;
        bottom: 0.85rem;
        width: calc(100% - 1.7rem);
    }

    .status-panel {
        display: none;
    }

    .product-stage {
        min-height: 31rem;
        margin-top: 2.2rem;
    }

    .glass-device {
        inset: auto 0 0 0;
        width: 100%;
    }

    .device-tabs,
    .metric-strip,
    .tile-grid,
    .review-grid,
    .proof-strip,
    .scope-grid,
    .report-meta-grid,
    .finding-detail-grid,
    .action-plan,
    .care-preview,
    .form-grid {
        grid-template-columns: 1fr;
    }

    .review-card {
        min-height: auto;
    }

    .risk-row,
    .finding-head {
        grid-template-columns: 1fr;
        gap: 0.65rem;
    }

    .risk-row b,
    .finding-head b {
        justify-self: start;
    }

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

    .care-visual div {
        min-height: 5.4rem;
    }

    .service-card.primary-service {
        grid-column: auto;
    }

    .service-card:nth-child(4) {
        grid-column: auto;
    }

    .service-card {
        min-height: 23rem;
    }

    .service-panel {
        min-height: 35rem;
    }

    .panel {
        min-height: 29rem;
    }

    .panel.large {
        min-height: 34rem;
    }

    .report-showcase-panel.panel.large {
        min-height: 62rem;
    }

    .report-showcase-panel .report-preview {
        bottom: 0;
    }

    .panel-content {
        width: min(100% - 2rem, 640px);
    }

    .product-image,
    .mockup-image {
        width: 94%;
    }

    .screen-stack {
        inset: 1rem;
    }

    .screen.primary {
        inset: 0 0 18% 0;
    }

    .screen.secondary {
        width: 68%;
        height: 42%;
        bottom: 0;
    }

    .report-line,
    .price-row {
        grid-template-columns: 1fr;
        gap: 0.55rem;
    }

    .footer-grid,
    .footer-bottom {
        grid-template-columns: 1fr;
        display: grid;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-video {
        display: none;
    }

    .health-line path {
        animation: none;
        stroke-dashoffset: 0;
    }
}

.web-hero .hero-actions .web-primary-action,
.web-hero .hero-actions .web-primary-action:link,
.web-hero .hero-actions .web-primary-action:visited {
    border-color: #f5f5f7 !important;
    background: #f5f5f7 !important;
    color: #050506 !important;
}

.web-hero .hero-actions .web-primary-action:hover {
    background: #ffffff !important;
    color: #050506 !important;
}

.web-hero .hero-actions .button.secondary,
.web-hero .hero-actions .button.secondary:link,
.web-hero .hero-actions .button.secondary:visited {
    color: #f5f5f7 !important;
}

@media (max-width: 980px) {
    .flagship-hero .container {
        width: min(100% - 44px, var(--max));
    }

    .flagship-grid {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .flagship-copy,
    .flagship-copy .lead {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .flagship-copy {
        padding-top: 0;
    }

    .flagship-copy .hero-actions {
        justify-content: center;
    }

    .flagship-stats {
        margin-left: auto;
        margin-right: auto;
    }

    .stage-browser {
        transform: none;
    }

    .case-study-card,
    .case-study-card:nth-child(4),
    .case-study-card:nth-child(5) {
        grid-column: span 3;
    }

    .package-grid,
    .report-dashboard {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .risk-dial {
        grid-column: 1 / -1;
    }

    .strike-platform-head,
    .strike-module-grid {
        grid-template-columns: 1fr 1fr;
    }

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

    .strike-module-grid article:nth-child(2n) {
        border-right: 0;
    }
}

@media (max-width: 760px) {
    .flagship-hero .container {
        width: calc(100% - 28px) !important;
        max-width: calc(100% - 28px) !important;
        margin-left: auto;
        margin-right: auto;
    }

    .flagship-grid {
        display: flex;
        width: 100%;
        min-width: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 2rem;
        overflow: hidden;
    }

    .flagship-copy,
    .flagship-copy .lead {
        max-width: 100%;
        text-align: left;
        margin-left: 0;
        margin-right: 0;
        overflow-wrap: break-word;
    }

    .flagship-copy {
        width: min(100%, 21rem);
    }

    .flagship-copy .lead {
        width: 100%;
    }

    .flagship-copy .hero-title {
        width: 100%;
        max-width: 100%;
        font-size: 2.22rem;
        line-height: 0.99;
        overflow-wrap: anywhere;
        word-break: normal;
    }

    .flagship-copy .hero-title span {
        display: block;
    }

    .flagship-copy .hero-title span + span::before {
        content: none;
    }

    .flagship-copy .lead {
        max-width: 100%;
        font-size: 1.02rem;
    }

    .flagship-copy .hero-actions {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.65rem;
    }

    .flagship-copy .hero-actions .button {
        flex: 0 1 auto;
        width: min(100%, 16rem);
        min-width: 0;
        padding-left: 0.9rem;
        padding-right: 0.9rem;
    }

    .case-study-grid,
    .package-grid,
    .report-dashboard {
        grid-template-columns: 1fr;
    }

    .flagship-stats {
        display: none;
    }

    .flagship-stage {
        width: 100%;
        max-width: 100%;
        min-height: auto;
        gap: 0.75rem;
        overflow: hidden;
    }

    .siem-browser {
        aspect-ratio: auto;
    }

    .siem-console {
        height: auto;
        grid-template-columns: 1fr;
        grid-template-rows: none;
        padding: 0.75rem;
    }

    .siem-score strong {
        margin: 1rem 0;
        font-size: 4.4rem;
    }

    .siem-feed div {
        grid-template-columns: 0.55rem minmax(0, 1fr);
    }

    .siem-feed {
        grid-template-columns: 1fr;
    }

    .siem-feed b {
        grid-column: 2;
    }

    .siem-path {
        grid-column: auto;
        min-height: auto;
    }

    .siem-path::before {
        inset: 3rem 0.75rem 0.75rem;
    }

    .path-map {
        position: relative;
        inset: auto;
        min-height: 9.75rem;
        margin-top: 0.8rem;
    }

    .stage-report,
    .stage-stack {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
        width: 100%;
        padding-right: 0;
    }

    .stage-stack {
        margin-top: 0.65rem;
        justify-content: flex-start;
    }

    .case-study-card,
    .case-study-card:nth-child(4),
    .case-study-card:nth-child(5) {
        grid-column: auto;
        min-height: auto;
    }

    .surface-map div {
        grid-template-columns: 1fr;
        gap: 0.45rem;
    }

    .strike-platform-head,
    .strike-module-grid {
        grid-template-columns: 1fr;
    }

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

    .testimonial-person,
    .testimonial-person div,
    .testimonial-card blockquote,
    .testimonial-tags {
        min-width: 0;
    }

    .testimonial-tags span {
        max-width: 100%;
        overflow-wrap: anywhere;
    }

    .strike-module-grid article {
        min-height: auto;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .strike-module-grid article:last-child {
        border-bottom: 0;
    }
}

/* Site-wide threat platform theme */
:root {
    --threat: #ff302b;
    --threat-2: #ff5a52;
    --threat-soft: rgba(255, 48, 43, 0.14);
    --threat-line: rgba(255, 48, 43, 0.26);
    --void: #050506;
    --void-2: #09090a;
    --void-3: #111113;
    --ink-dark: #f5f5f7;
    --muted-dark: rgba(245, 245, 247, 0.66);
    --muted-dark-2: rgba(245, 245, 247, 0.48);
}

body,
.premium-main {
    background: var(--void);
}

.premium-hero:not(.flagship-hero),
.showcase-hero,
.split-hero,
.split-hero.dark,
.premium-hero.dark,
.web-hero {
    color: var(--ink-dark);
    background:
        radial-gradient(circle at 76% 18%, rgba(255, 48, 43, 0.18), transparent 30rem),
        radial-gradient(circle at 18% 82%, rgba(255, 255, 255, 0.06), transparent 26rem),
        linear-gradient(90deg, rgba(255, 255, 255, 0.034) 1px, transparent 1px) 0 0 / 78px 78px,
        linear-gradient(180deg, rgba(255, 255, 255, 0.026) 1px, transparent 1px) 0 0 / 78px 78px,
        linear-gradient(135deg, var(--void) 0%, var(--void-2) 50%, #160807 100%);
}

.premium-hero:not(.flagship-hero)::before,
.showcase-hero::before,
.split-hero::before,
.web-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(5, 5, 6, 0.92), rgba(5, 5, 6, 0.38) 54%, rgba(5, 5, 6, 0.72)),
        linear-gradient(180deg, rgba(5, 5, 6, 0.12), rgba(5, 5, 6, 0.9));
}

.showcase-hero::after {
    background:
        linear-gradient(90deg, rgba(255, 48, 43, 0.11) 1px, transparent 1px) 0 0 / 72px 72px,
        linear-gradient(180deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px) 0 0 / 72px 72px;
}

.hero-split-grid,
.hero-showcase-grid,
.premium-hero .container {
    position: relative;
    z-index: 2;
}

.premium-hero .eyebrow,
.showcase-hero .eyebrow,
.web-hero .eyebrow,
.premium-hero .lead,
.showcase-hero .lead,
.web-hero .lead {
    color: var(--muted-dark);
}

.hero-split-grid .hero-copy .page-title,
.hero-copy .hero-title {
    max-width: 700px;
    font-size: clamp(3.15rem, 4.35vw, 5rem);
    line-height: 0.95;
}

.eyebrow,
.kicker,
.demo-meta span,
.web-checklist span,
.web-service-strip span,
.launch-row span,
.tile span,
.metric span,
.report-line span,
.price-row span,
.review-card span,
.review-meta b,
.report-score span,
.report-meta-grid span,
.risk-row span,
.finding-head span,
.finding-detail-grid span,
.action-plan span,
.review-process span,
.hero-card span,
.hero-slab span,
.hero-stat span,
.stage-report span,
.stage-stack span,
.case-study-card > span,
.package-card span,
.risk-dial span,
.surface-map > span,
.owner-queue > span,
.service-card span {
    color: var(--muted-dark-2);
    letter-spacing: 0.045em;
}

.button,
.button:link,
.button:visited,
.web-hero .hero-actions .web-primary-action,
.web-hero .hero-actions .web-primary-action:link,
.web-hero .hero-actions .web-primary-action:visited {
    border-color: rgba(255, 48, 43, 0.62) !important;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.18), transparent),
        var(--threat) !important;
    color: #fff !important;
    box-shadow:
        0 18px 48px rgba(255, 48, 43, 0.24),
        inset 0 1px 0 rgba(255, 255, 255, 0.24) !important;
}

.button:hover,
.web-hero .hero-actions .web-primary-action:hover {
    border-color: rgba(255, 90, 82, 0.72) !important;
    background: var(--threat-2) !important;
    color: #fff !important;
}

.button.secondary,
.button.secondary:link,
.button.secondary:visited,
.web-hero .hero-actions .button.secondary,
.web-hero .hero-actions .button.secondary:link,
.web-hero .hero-actions .button.secondary:visited,
.split-hero.dark .button.secondary {
    border-color: rgba(255, 255, 255, 0.22) !important;
    background: rgba(255, 255, 255, 0.075) !important;
    color: var(--ink-dark) !important;
    box-shadow:
        0 14px 34px rgba(0, 0, 0, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.12) !important;
}

.button.secondary:hover,
.web-hero .hero-actions .button.secondary:hover {
    border-color: rgba(255, 255, 255, 0.34) !important;
    background: rgba(255, 255, 255, 0.13) !important;
}

.section,
.section.white,
.section.dark,
.case-study-section,
.packages-section,
.web-proof-section,
.trusted-reviews-section,
.strike-platform-section {
    color: var(--ink-dark);
    background:
        radial-gradient(circle at 82% 4%, rgba(255, 48, 43, 0.12), transparent 28rem),
        linear-gradient(90deg, rgba(255, 255, 255, 0.032) 1px, transparent 1px) 0 0 / 78px 78px,
        linear-gradient(180deg, rgba(255, 255, 255, 0.026) 1px, transparent 1px) 0 0 / 78px 78px,
        var(--void);
}

.section.white,
.packages-section,
.web-proof-section,
.case-study-section {
    background:
        radial-gradient(circle at 12% 0%, rgba(255, 255, 255, 0.055), transparent 26rem),
        radial-gradient(circle at 86% 22%, rgba(255, 48, 43, 0.105), transparent 30rem),
        linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px) 0 0 / 80px 80px,
        linear-gradient(180deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px) 0 0 / 80px 80px,
        #070708;
}

.section-title,
.feature-copy h2,
.web-proof-band h2,
.panel h2,
.panel h3,
.contact-card h2,
.report-section h3,
.report-sheet h3,
.report-cover h2,
.tile strong,
.case-study-card h3,
.package-card strong,
.demo-meta h3,
.web-checklist strong,
.web-service-strip strong,
.review-quote,
.review-meta strong,
.proof-strip strong,
.scope-grid strong,
.action-plan strong,
.report-meta-grid strong,
.review-process strong,
.risk-row strong,
.finding-head strong,
.care-step strong,
.price-row strong,
.price-row b,
.surface-map strong,
.owner-queue strong,
.hero-card strong,
.hero-slab strong,
.hero-stat strong,
.status-panel strong,
.glass-device h2 {
    color: var(--ink-dark);
}

.section-copy,
.feature-copy p,
.quiet,
.panel p,
.tile p,
.case-study-card p,
.case-study-card dd,
.package-card p,
.demo-meta p,
.web-proof-band p,
.web-checklist p,
.web-service-strip p,
.review-card p,
.proof-strip p,
.scope-grid p,
.action-plan p,
.finding-card p,
.finding-detail-grid p,
.care-step p,
.price-row p,
.contact-card p,
.form-note,
.owner-queue p,
.glass-device p,
.hero-card p,
.hero-slab p,
.status-panel p,
.lead {
    color: var(--muted-dark);
}

.service-card,
.tile,
.panel,
.panel.soft,
.product-card,
.report-preview,
.care-preview,
.contact-preview,
.price-list,
.review-card,
.report-document,
.review-process,
.proof-strip div,
.scope-grid div,
.action-plan div,
.report-meta-grid div,
.finding-card,
.care-step,
.contact-card,
.premium-form,
.demo-card,
.web-service-strip article,
.case-study-card,
.package-card,
.risk-dial,
.surface-map,
.owner-queue,
.risk-row,
.report-showcase-panel,
.report-sheet,
.launch-console,
.report-console,
.glass-device,
.status-panel {
    color: var(--ink-dark);
    border-color: rgba(255, 255, 255, 0.13);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.035)),
        rgba(255, 255, 255, 0.035);
    box-shadow:
        0 28px 86px rgba(0, 0, 0, 0.32),
        inset 0 1px 0 rgba(255, 255, 255, 0.11);
}

.panel.dark,
.review-card.featured-review,
.service-card.primary-service {
    color: var(--ink-dark);
    border-color: rgba(255, 48, 43, 0.22);
    background:
        radial-gradient(circle at 82% 12%, rgba(255, 48, 43, 0.24), transparent 32%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.025)),
        #08090a;
}

.hero-product,
.split-hero.dark .hero-product,
.hero-card,
.hero-slab,
.hero-stat,
.split-hero.dark .hero-card,
.split-hero.dark .hero-slab,
.split-hero.dark .hero-stat {
    color: var(--ink-dark);
    border-color: rgba(255, 255, 255, 0.16);
    background:
        radial-gradient(circle at 80% 18%, rgba(255, 48, 43, 0.14), transparent 30%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04)),
        rgba(7, 8, 10, 0.78);
    box-shadow:
        0 38px 104px rgba(0, 0, 0, 0.42),
        inset 0 1px 0 rgba(255, 255, 255, 0.13);
}

.hero-product::before,
.split-hero.dark .hero-product::before {
    background:
        linear-gradient(90deg, rgba(255, 48, 43, 0.12) 1px, transparent 1px) 0 0 / 42px 42px,
        linear-gradient(180deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px) 0 0 / 42px 42px;
}

.web-product::after,
.pos-product::after,
.proof-product::after,
.report-product::after,
.contact-product::after {
    border-color: rgba(255, 48, 43, 0.18);
    background:
        linear-gradient(90deg, rgba(255, 48, 43, 0.12), rgba(255, 255, 255, 0.035)),
        rgba(255, 255, 255, 0.055);
}

.ui-lines i,
.split-hero.dark .ui-lines i {
    background: rgba(255, 48, 43, 0.24);
}

.service-card::before,
.case-study-card::before,
.package-card::before,
.demo-card::before,
.tile::before,
.review-card::before,
.contact-card::before,
.premium-form::before,
.report-document::before,
.finding-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 2px;
    background: linear-gradient(90deg, var(--threat), rgba(255, 255, 255, 0.14), transparent);
    pointer-events: none;
}

.service-card,
.case-study-card,
.package-card,
.demo-card,
.tile,
.review-card,
.contact-card,
.premium-form,
.report-document,
.finding-card {
    position: relative;
}

.service-visual,
.panel-visual,
.report-health-line,
.care-visual,
.care-visual div,
.visual-row,
.service-card .service-visual,
.primary-service .service-visual,
.cadence-visual i,
.launch-visual span,
.contact-list a,
.contact-list div,
.field input,
.field select,
.field textarea {
    border-color: rgba(255, 255, 255, 0.12);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
        rgba(255, 255, 255, 0.04);
    color: var(--ink-dark);
}

.field span,
.contact-list span,
.care-step span,
.care-visual span,
.visual-row span,
.pos-visual span,
.report-line span,
.proof-strip span {
    color: var(--muted-dark-2);
}

.field input::placeholder,
.field textarea::placeholder {
    color: rgba(245, 245, 247, 0.42);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    border-color: rgba(255, 48, 43, 0.58);
    box-shadow: 0 0 0 4px rgba(255, 48, 43, 0.12);
}

.report-cover {
    border: 1px solid rgba(255, 48, 43, 0.2);
    background:
        radial-gradient(circle at 84% 0%, rgba(255, 48, 43, 0.22), transparent 34%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.025)),
        #08090a;
}

.report-section,
.report-line,
.finding-detail-grid div,
.owner-queue div,
.case-study-card dl div,
.price-row {
    border-color: rgba(255, 255, 255, 0.12);
}

.badge,
.risk-row b,
.finding-head b {
    background: rgba(255, 255, 255, 0.08);
    color: var(--muted-dark);
}

.badge.high,
.risk-row.high b,
.finding-card.high .finding-head b {
    background: rgba(255, 48, 43, 0.14);
    color: #ffb9b5;
}

.badge.medium,
.risk-row.medium b,
.finding-card.medium .finding-head b {
    background: rgba(255, 184, 77, 0.13);
    color: #ffd49c;
}

.package-card:hover,
.service-card:hover,
.demo-card:hover,
.case-study-card:hover {
    border-color: rgba(255, 48, 43, 0.28);
    box-shadow: 0 32px 92px rgba(0, 0, 0, 0.38);
}

.package-card b,
.risk-dial b,
.inline-link,
.service-card a,
.service-panel .button.secondary {
    color: var(--threat-2);
}

.risk-dial strong {
    border-color: rgba(255, 48, 43, 0.18);
    border-top-color: var(--threat);
    color: var(--ink-dark);
}

.surface-map i {
    background:
        linear-gradient(90deg, var(--threat) var(--level), rgba(255, 255, 255, 0.1) var(--level));
}

.web-demo-stage::before {
    background:
        linear-gradient(90deg, rgba(255, 48, 43, 0.18), transparent 42%),
        rgba(255, 255, 255, 0.06);
}

.web-browser,
.stage-browser,
.report-console,
.launch-console {
    border-color: rgba(255, 255, 255, 0.16);
    background:
        radial-gradient(circle at 78% 18%, rgba(255, 48, 43, 0.16), transparent 30%),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px) 0 3rem / 54px 54px,
        linear-gradient(180deg, rgba(255, 255, 255, 0.033) 1px, transparent 1px) 0 3rem / 54px 54px,
        #08090a;
}

.browser-status,
.console-head b,
.launch-row b {
    color: #ffb9b5;
}

.console-head b,
.launch-row b {
    background: rgba(255, 48, 43, 0.14);
}

.console-head span {
    background: var(--threat);
    box-shadow: 0 0 22px rgba(255, 48, 43, 0.6);
}

.testimonial-card::before {
    background: linear-gradient(90deg, var(--threat), rgba(255, 255, 255, 0.18), transparent);
}

.testimonial-person > span {
    border-color: rgba(255, 48, 43, 0.34);
    background:
        radial-gradient(circle at 30% 24%, rgba(255, 255, 255, 0.24), transparent 34%),
        #35100f;
    box-shadow: 0 16px 44px rgba(255, 48, 43, 0.16);
}

.testimonial-card blockquote::before {
    color: rgba(255, 48, 43, 0.45);
}

.testimonial-tags span {
    border-color: rgba(255, 48, 43, 0.22);
    background: rgba(255, 48, 43, 0.09);
    color: rgba(245, 245, 247, 0.74);
}

.site-footer {
    color: var(--muted-dark);
    border-top-color: rgba(255, 255, 255, 0.1);
    background:
        radial-gradient(circle at 12% 0%, rgba(255, 255, 255, 0.05), transparent 24rem),
        radial-gradient(circle at 88% 20%, rgba(255, 48, 43, 0.10), transparent 28rem),
        var(--void);
}

.footer-brand strong,
.footer-col strong {
    color: var(--ink-dark);
}

.footer-bottom {
    border-top-color: rgba(255, 255, 255, 0.1);
}

@media (max-width: 980px) {
    .premium-hero:not(.flagship-hero),
    .split-hero,
    .showcase-hero,
    .web-hero {
        padding-top: 4.6rem;
    }

    .web-hero .hero-split-grid {
        grid-template-columns: 1fr;
    }

    .web-demo-stage {
        width: min(100%, 760px);
        max-width: 100%;
        margin: 0 auto;
    }

    .web-browser {
        transform: none;
    }
}

@media (max-width: 760px) {
    .premium-hero:not(.flagship-hero),
    .split-hero,
    .showcase-hero,
    .web-hero {
        padding-top: 3.7rem;
    }

    .hero-split-grid,
    .web-hero .hero-split-grid {
        width: 100%;
        min-width: 0;
    }

    .hero-split-grid .hero-copy .page-title,
    .hero-copy .hero-title {
        font-size: clamp(2.55rem, 11vw, 2.95rem);
        line-height: 0.98;
    }

    .web-demo-stage,
    .web-browser {
        width: 100%;
        min-width: 0;
        max-width: 100%;
    }

    .web-hero-metrics {
        grid-template-columns: 1fr;
    }

    .hero-product,
    .split-hero.dark .hero-product {
        background:
            radial-gradient(circle at 80% 18%, rgba(255, 48, 43, 0.12), transparent 30%),
            linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.035)),
            rgba(7, 8, 10, 0.82);
    }
}
