/* =========================================================
   Victorious Leaders Corporate Website
   Enterprise navy / cyan visual system
   ========================================================= */

:root {
    --navy-950: #030b15;
    --navy-900: #071526;
    --navy-850: #0a1b30;
    --navy-800: #0d2440;
    --navy-700: #173657;
    --cyan-500: #00c7e8;
    --cyan-400: #30d9f3;
    --cyan-300: #7eeafb;
    --gold-500: #c7a354;
    --slate-700: #40536a;
    --slate-600: #5c6d80;
    --slate-500: #76869a;
    --slate-300: #cbd5df;
    --slate-200: #e4eaf0;
    --slate-100: #f2f5f8;
    --white: #ffffff;
    --success: #159a72;
    --danger: #c3414a;
    --shadow-sm: 0 10px 30px rgba(4, 17, 31, 0.08);
    --shadow-md: 0 20px 60px rgba(4, 17, 31, 0.13);
    --shadow-lg: 0 30px 90px rgba(0, 0, 0, 0.24);
    --radius-sm: 10px;
    --radius-md: 18px;
    --radius-lg: 28px;
    --container: 1180px;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 92px;
}

body {
    margin: 0;
    color: var(--navy-900);
    background: var(--white);
    font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.menu-open {
    overflow: hidden;
}

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

a {
    color: inherit;
    text-decoration: none;
}

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

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

::selection {
    color: var(--navy-950);
    background: var(--cyan-300);
}

.container {
    width: min(calc(100% - 40px), var(--container));
    margin-inline: auto;
}

.sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.skip-link {
    position: fixed;
    z-index: 9999;
    top: 10px;
    left: 10px;
    padding: 10px 16px;
    color: var(--white);
    background: var(--navy-950);
    border-radius: 8px;
    transform: translateY(-150%);
}

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

/* Header */
.site-header {
    position: fixed;
    z-index: 1000;
    inset: 0 0 auto;
    height: 82px;
    color: var(--white);
    background: rgba(3, 11, 21, 0.48);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(18px);
    transition: background 0.25s ease, box-shadow 0.25s ease, height 0.25s ease;
}

.site-header.scrolled {
    height: 72px;
    background: rgba(3, 11, 21, 0.94);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.brand img {
    width: 44px;
    height: 44px;
}

.brand-copy {
    display: grid;
    line-height: 1.1;
}

.brand-copy strong {
    color: var(--white);
    font-size: 17px;
    font-weight: 760;
    letter-spacing: -0.01em;
}

.brand-copy small {
    margin-top: 5px;
    color: rgba(255, 255, 255, 0.58);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.primary-navigation {
    display: flex;
    align-items: center;
    gap: 28px;
}

.primary-navigation a {
    position: relative;
    color: rgba(255, 255, 255, 0.78);
    font-size: 14px;
    font-weight: 650;
    transition: color 0.2s ease;
}

.primary-navigation a:not(.nav-cta)::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -8px;
    left: 0;
    height: 2px;
    background: var(--cyan-500);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.2s ease;
}

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

.primary-navigation a:hover::after,
.primary-navigation a:focus-visible::after {
    transform: scaleX(1);
}

.nav-cta {
    padding: 10px 17px;
    color: var(--navy-950) !important;
    background: var(--cyan-400);
    border-radius: 8px;
}

.nav-cta:hover {
    background: var(--cyan-300);
}

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

.menu-toggle span:not(.sr-only) {
    display: block;
    width: 23px;
    height: 2px;
    margin: 5px auto;
    background: var(--white);
    transition: transform 0.25s ease, opacity 0.25s ease;
}

/* Shared typography and controls */
.section {
    position: relative;
    padding: 110px 0;
}

.section-light {
    background: var(--white);
}

.section-dark {
    color: var(--white);
    background:
        radial-gradient(circle at 90% 10%, rgba(0, 199, 232, 0.11), transparent 32%),
        linear-gradient(140deg, var(--navy-950), var(--navy-850));
}

.section-heading {
    max-width: 560px;
}

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

.section-heading h2,
.contact-copy h2,
.cta-inner h2,
.cyarmour-copy h2 {
    margin: 12px 0 20px;
    color: var(--navy-950);
    font-size: clamp(34px, 4.2vw, 54px);
    font-weight: 780;
    line-height: 1.08;
    letter-spacing: -0.045em;
}

.section-heading p {
    margin: 0;
    color: var(--slate-600);
    font-size: 18px;
}

.section-heading.inverted h2 {
    color: var(--white);
}

.section-heading.inverted p {
    color: rgba(255, 255, 255, 0.64);
}

.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #157b91;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.section-kicker::before {
    content: "";
    width: 24px;
    height: 2px;
    background: currentColor;
}

.section-kicker.cyan,
.inverted .section-kicker {
    color: var(--cyan-400);
}

.lead-paragraph {
    color: var(--navy-800);
    font-size: 21px;
    font-weight: 520;
    line-height: 1.55;
}

.button {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 22px;
    border: 1px solid transparent;
    border-radius: 9px;
    font-size: 14px;
    font-weight: 760;
    line-height: 1;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

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

.button:focus-visible,
.primary-navigation a:focus-visible,
.text-link:focus-visible {
    outline: 3px solid rgba(48, 217, 243, 0.42);
    outline-offset: 3px;
}

.button svg,
.text-link svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.button-primary {
    color: var(--navy-950);
    background: var(--cyan-400);
    box-shadow: 0 12px 32px rgba(0, 199, 232, 0.2);
}

.button-primary:hover {
    background: var(--cyan-300);
    box-shadow: 0 16px 40px rgba(0, 199, 232, 0.28);
}

.button-secondary {
    color: var(--white);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.2);
}

.button-secondary:hover {
    background: rgba(255, 255, 255, 0.11);
    border-color: rgba(255, 255, 255, 0.36);
}

/* Hero */
.hero {
    position: relative;
    min-height: 820px;
    overflow: hidden;
    color: var(--white);
    background:
        linear-gradient(105deg, rgba(3, 11, 21, 0.97) 0%, rgba(7, 21, 38, 0.94) 48%, rgba(7, 25, 43, 0.89) 100%),
        var(--navy-950);
}

.hero-grid-overlay,
.cta-grid {
    position: absolute;
    inset: 0;
    opacity: 0.12;
    background-image:
        linear-gradient(rgba(126, 234, 251, 0.18) 1px, transparent 1px),
        linear-gradient(90deg, rgba(126, 234, 251, 0.18) 1px, transparent 1px);
    background-size: 58px 58px;
    mask-image: linear-gradient(to bottom, black, transparent 92%);
}

.hero-glow {
    position: absolute;
    width: 540px;
    height: 540px;
    border-radius: 50%;
    filter: blur(90px);
    pointer-events: none;
}

.hero-glow-one {
    top: -240px;
    right: -120px;
    background: rgba(0, 199, 232, 0.2);
}

.hero-glow-two {
    bottom: 40px;
    left: -380px;
    background: rgba(199, 163, 84, 0.12);
}

.hero-layout {
    position: relative;
    z-index: 2;
    display: grid;
    min-height: 760px;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 70px;
    padding-top: 120px;
    padding-bottom: 90px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 22px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    font-weight: 760;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.eyebrow-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--cyan-400);
    box-shadow: 0 0 0 6px rgba(48, 217, 243, 0.1);
}

.hero h1 {
    max-width: 720px;
    margin: 0;
    color: var(--white);
    font-size: clamp(46px, 5.6vw, 76px);
    font-weight: 790;
    line-height: 0.99;
    letter-spacing: -0.057em;
}

.hero h1 span {
    color: var(--cyan-400);
}

.hero-lead {
    max-width: 650px;
    margin: 28px 0 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: clamp(17px, 1.7vw, 20px);
    line-height: 1.65;
}

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

.hero-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    margin-top: 50px;
}

.hero-proof > div {
    min-width: 135px;
    padding-right: 28px;
}

.hero-proof > div + div {
    padding-left: 28px;
    border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-proof strong,
.hero-proof span {
    display: block;
}

.hero-proof strong {
    color: var(--white);
    font-size: 17px;
    font-weight: 760;
}

.hero-proof span {
    margin-top: 2px;
    color: rgba(255, 255, 255, 0.48);
    font-size: 12px;
}

.hero-visual {
    position: relative;
}

.visual-shell {
    position: relative;
    overflow: hidden;
    width: 100%;
    min-height: 490px;
    background:
        linear-gradient(145deg, rgba(21, 49, 78, 0.78), rgba(4, 16, 29, 0.9));
    border: 1px solid rgba(126, 234, 251, 0.2);
    border-radius: 22px;
    box-shadow: var(--shadow-lg), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    transform: perspective(1200px) rotateY(-4deg) rotateX(1deg);
}

.visual-shell::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.05), transparent 35%);
}

.visual-topbar,
.visual-footer {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    min-height: 48px;
    padding: 0 18px;
    background: rgba(0, 0, 0, 0.16);
}

.visual-topbar {
    gap: 7px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.visual-topbar > span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
}

.visual-topbar small {
    margin-left: auto;
    color: rgba(255, 255, 255, 0.44);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.visual-content {
    position: relative;
    min-height: 394px;
    overflow: hidden;
    background-image:
        linear-gradient(rgba(48, 217, 243, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(48, 217, 243, 0.045) 1px, transparent 1px);
    background-size: 28px 28px;
}

.security-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    border: 1px solid rgba(48, 217, 243, 0.17);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.ring-one { width: 128px; height: 128px; }
.ring-two { width: 228px; height: 228px; border-style: dashed; animation: rotate 24s linear infinite; }
.ring-three { width: 340px; height: 340px; opacity: 0.65; }

@keyframes rotate {
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.shield-core {
    position: absolute;
    z-index: 3;
    top: 50%;
    left: 50%;
    display: grid;
    width: 92px;
    height: 92px;
    place-items: center;
    border: 1px solid rgba(126, 234, 251, 0.26);
    border-radius: 28px;
    background: linear-gradient(145deg, rgba(48, 217, 243, 0.22), rgba(48, 217, 243, 0.06));
    box-shadow: 0 0 50px rgba(0, 199, 232, 0.25);
    transform: translate(-50%, -50%) rotate(45deg);
}

.shield-core svg {
    width: 46px;
    height: 52px;
    fill: rgba(48, 217, 243, 0.14);
    stroke: var(--cyan-300);
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    transform: rotate(-45deg);
}

.orbit-card {
    position: absolute;
    z-index: 4;
    min-width: 180px;
    padding: 13px 15px 13px 38px;
    background: rgba(5, 19, 34, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(12px);
}

.orbit-card .status-dot {
    position: absolute;
    top: 18px;
    left: 16px;
}

.orbit-card strong,
.orbit-card small {
    display: block;
}

.orbit-card strong {
    color: var(--white);
    font-size: 12px;
}

.orbit-card small {
    margin-top: 3px;
    color: rgba(255, 255, 255, 0.43);
    font-size: 9px;
}

.orbit-card-1 { top: 55px; right: 23px; }
.orbit-card-2 { right: 12px; bottom: 63px; }
.orbit-card-3 { bottom: 85px; left: 18px; }

.status-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #38d79f;
    box-shadow: 0 0 0 5px rgba(56, 215, 159, 0.08);
}

.data-line {
    position: absolute;
    z-index: 2;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(48, 217, 243, 0.55), transparent);
    transform-origin: left;
}

.data-line-1 { top: 135px; right: 160px; width: 130px; transform: rotate(-23deg); }
.data-line-2 { right: 130px; bottom: 140px; width: 135px; transform: rotate(23deg); }
.data-line-3 { bottom: 142px; left: 155px; width: 150px; transform: rotate(-15deg); }

.visual-footer {
    justify-content: space-between;
    color: rgba(255, 255, 255, 0.44);
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    font-size: 10px;
    font-weight: 650;
}

.visual-footer span {
    display: inline-flex;
    align-items: center;
    gap: 9px;
}

.trust-strip {
    position: relative;
    z-index: 4;
    min-height: 60px;
    background: rgba(0, 0, 0, 0.19);
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.trust-strip-inner {
    display: flex;
    min-height: 60px;
    align-items: center;
    justify-content: center;
    gap: 28px;
    color: rgba(255, 255, 255, 0.47);
    font-size: 11px;
    font-weight: 760;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.trust-strip-inner i {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--cyan-500);
}

/* About */
.split-layout {
    display: grid;
    grid-template-columns: 0.82fr 1.18fr;
    gap: 105px;
}

.section-copy > p {
    color: var(--slate-600);
}

.section-copy .lead-paragraph {
    margin-top: 0;
    color: var(--navy-800);
}

.principles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 45px;
}

.principles-grid article {
    padding: 25px 22px;
    background: var(--slate-100);
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-md);
}

.principles-grid article > span {
    color: #13869d;
    font-size: 11px;
    font-weight: 850;
    letter-spacing: 0.12em;
}

.principles-grid h3 {
    margin: 16px 0 8px;
    color: var(--navy-900);
    font-size: 17px;
}

.principles-grid p {
    margin: 0;
    color: var(--slate-600);
    font-size: 13px;
    line-height: 1.55;
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.service-card {
    position: relative;
    overflow: hidden;
    min-height: 420px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: var(--radius-md);
    transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 30px;
    width: 44px;
    height: 2px;
    background: var(--cyan-500);
}

.service-card:hover {
    background: rgba(255, 255, 255, 0.072);
    border-color: rgba(48, 217, 243, 0.28);
    transform: translateY(-5px);
}

.service-card.featured {
    background: linear-gradient(145deg, rgba(0, 199, 232, 0.13), rgba(255, 255, 255, 0.045));
    border-color: rgba(48, 217, 243, 0.22);
}

.service-icon {
    display: grid;
    width: 48px;
    height: 48px;
    margin-bottom: 42px;
    place-items: center;
    background: rgba(48, 217, 243, 0.1);
    border: 1px solid rgba(48, 217, 243, 0.22);
    border-radius: 12px;
}

.service-icon svg {
    width: 25px;
    height: 25px;
    fill: none;
    stroke: var(--cyan-300);
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.service-number {
    position: absolute;
    top: 33px;
    right: 30px;
    color: rgba(255, 255, 255, 0.22);
    font-size: 11px;
    font-weight: 850;
    letter-spacing: 0.12em;
}

.service-card h3 {
    margin: 0 0 14px;
    color: var(--white);
    font-size: 21px;
    line-height: 1.28;
}

.service-card > p {
    color: rgba(255, 255, 255, 0.55);
    font-size: 14px;
}

.service-card ul {
    display: grid;
    gap: 8px;
    margin: 24px 0 0;
    padding: 0;
    list-style: none;
}

.service-card li {
    position: relative;
    padding-left: 18px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 12.5px;
}

.service-card li::before {
    content: "";
    position: absolute;
    top: 0.65em;
    left: 0;
    width: 6px;
    height: 6px;
    border: 1px solid var(--cyan-400);
    border-radius: 50%;
}

/* CyArmour */
.cyarmour-section {
    overflow: hidden;
    color: var(--white);
    background:
        linear-gradient(110deg, rgba(3, 11, 21, 0.98), rgba(7, 28, 48, 0.94)),
        var(--navy-950);
}

.cyarmour-pattern {
    position: absolute;
    top: -180px;
    right: -160px;
    width: 650px;
    height: 650px;
    opacity: 0.36;
    border: 1px solid rgba(48, 217, 243, 0.14);
    border-radius: 50%;
    box-shadow:
        0 0 0 70px rgba(48, 217, 243, 0.025),
        0 0 0 140px rgba(48, 217, 243, 0.02),
        0 0 0 210px rgba(48, 217, 243, 0.015);
}

.cyarmour-layout {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 90px;
}

.cyarmour-logo-text {
    margin: 18px 0 22px;
    color: var(--white);
    font-size: 48px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.05em;
}

.cyarmour-logo-text span {
    color: var(--cyan-400);
}

.cyarmour-copy h2 {
    max-width: 650px;
    color: var(--white);
}

.cyarmour-copy p {
    color: rgba(255, 255, 255, 0.62);
}

.cyarmour-copy .lead-paragraph {
    color: rgba(255, 255, 255, 0.82);
}

.cyarmour-capabilities {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin: 35px 0;
}

.cyarmour-capabilities div {
    padding: 18px;
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 11px;
}

.cyarmour-capabilities strong,
.cyarmour-capabilities span {
    display: block;
}

.cyarmour-capabilities strong {
    color: var(--cyan-300);
    font-size: 14px;
}

.cyarmour-capabilities span {
    margin-top: 5px;
    color: rgba(255, 255, 255, 0.46);
    font-size: 11px;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--cyan-300);
    font-size: 14px;
    font-weight: 760;
}

.cyarmour-panel {
    position: relative;
    padding: 26px;
    background: linear-gradient(150deg, rgba(18, 54, 84, 0.9), rgba(4, 16, 29, 0.92));
    border: 1px solid rgba(126, 234, 251, 0.2);
    border-radius: 22px;
    box-shadow: var(--shadow-lg);
}

.panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.panel-header > span {
    color: var(--white);
    font-size: 13px;
    font-weight: 750;
}

.live-indicator {
    padding: 6px 10px;
    color: #6de4bb;
    background: rgba(56, 215, 159, 0.08);
    border: 1px solid rgba(56, 215, 159, 0.18);
    border-radius: 999px;
    font-size: 9px;
    font-style: normal;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.risk-summary {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: end;
    gap: 25px;
    padding: 30px 0;
}

.risk-summary small,
.risk-summary strong {
    display: block;
}

.risk-summary small {
    color: rgba(255, 255, 255, 0.42);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.09em;
}

.risk-summary strong {
    margin-top: 8px;
    color: var(--white);
    font-size: 29px;
}

.risk-summary svg {
    width: 100%;
    overflow: visible;
}

.chart-base,
.chart-line {
    fill: none;
    stroke-linecap: round;
}

.chart-base {
    stroke: rgba(255, 255, 255, 0.08);
    stroke-width: 8;
}

.chart-line {
    stroke: var(--cyan-400);
    stroke-width: 3;
    filter: drop-shadow(0 0 5px rgba(48, 217, 243, 0.4));
}

.signal-list {
    display: grid;
    gap: 9px;
}

.signal-list > div {
    display: grid;
    grid-template-columns: 18px 1fr auto;
    align-items: center;
    gap: 12px;
    padding: 14px;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.065);
    border-radius: 9px;
}

.signal-icon {
    width: 9px;
    height: 9px;
    border-radius: 50%;
}

.signal-icon.safe {
    background: #3cd7a1;
    box-shadow: 0 0 0 5px rgba(60, 215, 161, 0.08);
}

.signal-icon.warn {
    background: #e7bd67;
    box-shadow: 0 0 0 5px rgba(231, 189, 103, 0.08);
}

.signal-list p,
.signal-list strong,
.signal-list small {
    margin: 0;
}

.signal-list strong,
.signal-list small {
    display: block;
}

.signal-list strong {
    color: rgba(255, 255, 255, 0.82);
    font-size: 11px;
}

.signal-list small {
    margin-top: 2px;
    color: rgba(255, 255, 255, 0.38);
    font-size: 9px;
}

.signal-list b {
    color: rgba(255, 255, 255, 0.45);
    font-size: 9px;
    text-transform: uppercase;
}

/* Delivery */
.delivery-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
}

.delivery-line {
    position: relative;
    z-index: 0;
    top: 29px;
    width: calc(100% - 190px);
    height: 1px;
    margin: 0 auto;
    background: var(--slate-200);
}

.delivery-grid article {
    position: relative;
    z-index: 1;
    padding: 0 14px;
    text-align: center;
}

.delivery-grid article > span {
    display: grid;
    width: 58px;
    height: 58px;
    margin: 0 auto 23px;
    place-items: center;
    color: #087b91;
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: 50%;
    box-shadow: var(--shadow-sm);
    font-size: 11px;
    font-weight: 850;
}

.delivery-grid h3 {
    margin: 0 0 10px;
    color: var(--navy-900);
    font-size: 18px;
}

.delivery-grid p {
    margin: 0;
    color: var(--slate-600);
    font-size: 12.5px;
}

.assurance-banner {
    margin-top: 58px;
    padding: 26px 30px;
    background: var(--slate-100);
    border: 1px solid var(--slate-200);
    border-left: 4px solid var(--cyan-500);
    border-radius: var(--radius-sm);
}

.assurance-banner > div {
    display: flex;
    align-items: center;
    gap: 17px;
}

.assurance-icon {
    display: grid;
    width: 42px;
    height: 42px;
    flex: 0 0 auto;
    place-items: center;
    background: var(--white);
    border-radius: 10px;
}

.assurance-icon svg {
    width: 23px;
    height: 23px;
    fill: none;
    stroke: #107b91;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.assurance-banner p {
    margin: 0;
    color: var(--slate-700);
    font-size: 14px;
}

/* Clients */
.clients-section {
    background: var(--slate-100);
}

.client-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.client-tile {
    display: grid;
    min-height: 125px;
    place-items: center;
    padding: 25px;
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-md);
    box-shadow: 0 10px 25px rgba(5, 21, 38, 0.035);
}

.client-tile span {
    color: var(--navy-800);
    font-size: 20px;
    font-weight: 780;
    letter-spacing: -0.025em;
    text-align: center;
}

.client-note {
    max-width: 780px;
    margin: 24px auto 0;
    color: var(--slate-500);
    font-size: 11px;
    text-align: center;
}

/* CTA */
.cta-section {
    position: relative;
    overflow: hidden;
    padding: 70px 0;
    color: var(--white);
    background:
        radial-gradient(circle at 85% 20%, rgba(0, 199, 232, 0.2), transparent 30%),
        var(--navy-950);
}

.cta-grid {
    opacity: 0.08;
    mask-image: none;
}

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

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

.cta-inner h2 {
    margin-bottom: 0;
    color: var(--white);
    font-size: clamp(31px, 3.6vw, 48px);
}

/* Contact */
.contact-section {
    background: var(--white);
}

.contact-layout {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    align-items: start;
    gap: 85px;
}

.contact-copy {
    position: sticky;
    top: 115px;
}

.contact-copy h2 {
    font-size: clamp(34px, 4vw, 50px);
}

.contact-copy > p {
    color: var(--slate-600);
    font-size: 17px;
}

.contact-details {
    display: grid;
    gap: 12px;
    margin-top: 38px;
}

.contact-details > a,
.contact-detail-static {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 15px 0;
    border-bottom: 1px solid var(--slate-200);
}

.contact-details > a > span,
.contact-detail-static > span {
    display: grid;
    width: 42px;
    height: 42px;
    flex: 0 0 auto;
    place-items: center;
    color: #087b91;
    background: var(--slate-100);
    border-radius: 10px;
}

.contact-details svg {
    width: 21px;
    height: 21px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.contact-details small,
.contact-details strong {
    display: block;
}

.contact-details small {
    color: var(--slate-500);
    font-size: 10px;
    font-weight: 750;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.contact-details strong {
    margin-top: 3px;
    color: var(--navy-800);
    font-size: 14px;
}

.contact-assurance {
    margin-top: 35px;
    padding: 20px;
    color: var(--white);
    background: var(--navy-900);
    border-radius: 12px;
}

.contact-assurance strong,
.contact-assurance span {
    display: block;
}

.contact-assurance strong {
    color: var(--cyan-300);
    font-size: 15px;
}

.contact-assurance span {
    margin-top: 5px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 10px;
}

.contact-card {
    padding: 38px;
    background: var(--slate-100);
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.contact-card-header {
    margin-bottom: 25px;
}

.contact-card-header h3 {
    margin: 0;
    color: var(--navy-900);
    font-size: 25px;
}

.contact-card-header p {
    margin: 4px 0 0;
    color: var(--slate-500);
    font-size: 12px;
}

.form-alert {
    margin-bottom: 20px;
    padding: 13px 15px;
    border-radius: 8px;
    font-size: 13px;
}

.form-alert.success {
    color: #0f6d51;
    background: #e8f7f1;
    border: 1px solid #bde7d7;
}

.form-alert.error {
    color: #9a3138;
    background: #fcecef;
    border: 1px solid #f2c4c8;
}

.form-row {
    display: grid;
    gap: 17px;
    margin-bottom: 17px;
}

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

.field {
    margin-bottom: 17px;
}

.field label {
    display: block;
    margin-bottom: 7px;
    color: var(--navy-800);
    font-size: 12px;
    font-weight: 730;
}

.field input,
.field select,
.field textarea {
    width: 100%;
    color: var(--navy-900);
    background: var(--white);
    border: 1px solid #ccd6df;
    border-radius: 8px;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field input,
.field select {
    height: 48px;
    padding: 0 13px;
}

.field textarea {
    min-height: 150px;
    padding: 12px 13px;
    resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    border-color: var(--cyan-500);
    box-shadow: 0 0 0 4px rgba(0, 199, 232, 0.09);
}

.field.invalid input,
.field.invalid select,
.field.invalid textarea {
    border-color: var(--danger);
}

.field-error {
    display: none;
    margin-top: 5px;
    color: var(--danger);
    font-size: 10px;
}

.field.invalid .field-error {
    display: block;
}

.honeypot {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

.consent {
    display: grid;
    grid-template-columns: 18px 1fr;
    gap: 10px;
    align-items: start;
    margin: 5px 0 22px;
    color: var(--slate-600);
    font-size: 11px;
    cursor: pointer;
}

.consent input {
    width: 16px;
    height: 16px;
    margin: 2px 0 0;
    accent-color: var(--cyan-500);
}

.consent a {
    color: #087b91;
    font-weight: 700;
    text-decoration: underline;
}

.form-submit {
    width: 100%;
    border: 0;
}

.form-submit[disabled] {
    cursor: wait;
    opacity: 0.72;
    transform: none;
}

.form-footnote {
    margin: 14px 0 0;
    color: var(--slate-500);
    font-size: 10px;
    text-align: center;
}

/* Footer */
.site-footer {
    color: rgba(255, 255, 255, 0.62);
    background: var(--navy-950);
}

.footer-top {
    display: grid;
    grid-template-columns: 1.1fr 1.4fr;
    gap: 90px;
    padding-top: 65px;
    padding-bottom: 55px;
}

.footer-brand > p {
    max-width: 430px;
    margin-top: 22px;
    color: rgba(255, 255, 255, 0.42);
    font-size: 13px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.footer-links h3 {
    margin: 0 0 15px;
    color: var(--white);
    font-size: 12px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.footer-links a {
    display: block;
    width: fit-content;
    margin: 9px 0;
    color: rgba(255, 255, 255, 0.48);
    font-size: 12px;
}

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

.footer-bottom {
    display: flex;
    min-height: 65px;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.34);
    font-size: 10px;
}

/* Privacy page */
.legal-page {
    min-height: 100vh;
    padding: 140px 0 90px;
    background: var(--slate-100);
}

.legal-card {
    max-width: 900px;
    margin: 0 auto;
    padding: 50px;
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.legal-card h1 {
    margin: 0 0 8px;
    color: var(--navy-950);
    font-size: clamp(36px, 5vw, 58px);
    letter-spacing: -0.04em;
}

.legal-card h2 {
    margin-top: 35px;
    color: var(--navy-900);
    font-size: 22px;
}

.legal-card p,
.legal-card li {
    color: var(--slate-600);
}

.legal-back {
    display: inline-flex;
    margin-bottom: 22px;
    color: #087b91;
    font-size: 13px;
    font-weight: 750;
}

/* Reveal enhancement */
.reveal-ready .section-heading,
.reveal-ready .service-card,
.reveal-ready .principles-grid article,
.reveal-ready .delivery-grid article,
.reveal-ready .client-tile,
.reveal-ready .contact-card,
.reveal-ready .cyarmour-panel {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* Responsive */
@media (max-width: 1100px) {
    .primary-navigation {
        gap: 18px;
    }

    .primary-navigation a {
        font-size: 13px;
    }

    .hero-layout {
        gap: 45px;
    }

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

    .split-layout {
        gap: 55px;
    }

    .cyarmour-layout {
        gap: 50px;
    }

    .contact-layout {
        gap: 50px;
    }
}

@media (max-width: 900px) {
    .site-header {
        height: 72px;
    }

    .menu-toggle {
        display: block;
    }

    .menu-toggle[aria-expanded="true"] span:nth-of-type(2) {
        transform: translateY(7px) rotate(45deg);
    }

    .menu-toggle[aria-expanded="true"] span:nth-of-type(3) {
        opacity: 0;
    }

    .menu-toggle[aria-expanded="true"] span:nth-of-type(4) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .primary-navigation {
        position: fixed;
        top: 72px;
        right: 0;
        bottom: 0;
        left: 0;
        display: grid;
        align-content: start;
        gap: 0;
        padding: 30px 22px;
        background: rgba(3, 11, 21, 0.985);
        transform: translateX(100%);
        transition: transform 0.25s ease;
    }

    .primary-navigation.open {
        transform: translateX(0);
    }

    .primary-navigation a {
        padding: 16px 4px;
        color: rgba(255, 255, 255, 0.82);
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        font-size: 17px;
    }

    .primary-navigation a::after {
        display: none;
    }

    .nav-cta {
        margin-top: 20px;
        padding: 16px !important;
        border: 0 !important;
        text-align: center;
    }

    .hero {
        min-height: auto;
    }

    .hero-layout {
        min-height: auto;
        grid-template-columns: 1fr;
        padding-top: 145px;
        padding-bottom: 80px;
    }

    .hero-copy {
        max-width: 750px;
    }

    .hero-visual {
        max-width: 660px;
        margin: 0 auto;
    }

    .visual-shell {
        transform: none;
    }

    .split-layout,
    .cyarmour-layout,
    .contact-layout {
        grid-template-columns: 1fr;
    }

    .split-layout,
    .contact-layout {
        gap: 45px;
    }

    .section-heading {
        max-width: 760px;
    }

    .cyarmour-copy {
        max-width: 760px;
    }

    .delivery-line {
        display: none;
    }

    .delivery-grid {
        grid-template-columns: repeat(3, 1fr);
        row-gap: 35px;
    }

    .contact-copy {
        position: static;
    }

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

    .cta-inner {
        align-items: flex-start;
        flex-direction: column;
    }

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

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

    .section {
        padding: 80px 0;
    }

    .brand-copy small {
        display: none;
    }

    .hero-layout {
        padding-top: 125px;
        padding-bottom: 65px;
    }

    .hero h1 {
        font-size: clamp(43px, 13vw, 62px);
    }

    .hero-proof {
        display: grid;
        grid-template-columns: 1fr 1fr;
        row-gap: 20px;
    }

    .hero-proof > div {
        min-width: 0;
        padding: 0 16px 0 0;
    }

    .hero-proof > div + div {
        padding-left: 16px;
    }

    .hero-proof > div:nth-child(3) {
        padding-left: 0;
        border-left: 0;
    }

    .visual-shell {
        min-height: 420px;
    }

    .visual-content {
        min-height: 324px;
    }

    .ring-three {
        width: 290px;
        height: 290px;
    }

    .orbit-card {
        min-width: 150px;
        padding-right: 10px;
    }

    .orbit-card-1 {
        top: 32px;
        right: 10px;
    }

    .orbit-card-2 {
        right: 10px;
        bottom: 35px;
    }

    .orbit-card-3 {
        bottom: 54px;
        left: 8px;
    }

    .trust-strip-inner {
        flex-wrap: wrap;
        gap: 10px 15px;
        padding: 18px 0;
        text-align: center;
    }

    .services-grid,
    .principles-grid,
    .cyarmour-capabilities,
    .delivery-grid,
    .client-grid {
        grid-template-columns: 1fr;
    }

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

    .delivery-grid article {
        display: grid;
        grid-template-columns: 58px 1fr;
        column-gap: 17px;
        padding: 0;
        text-align: left;
    }

    .delivery-grid article > span {
        grid-row: span 2;
        margin: 0;
    }

    .delivery-grid h3 {
        align-self: end;
    }

    .assurance-banner {
        padding: 22px;
    }

    .assurance-banner > div {
        align-items: flex-start;
    }

    .cta-section {
        padding: 60px 0;
    }

    .contact-card {
        padding: 25px 18px;
        border-radius: 18px;
    }

    .form-row.two-column {
        grid-template-columns: 1fr;
        gap: 0;
        margin: 0;
    }

    .footer-links {
        grid-template-columns: 1fr 1fr;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
        padding: 20px 0;
    }

    .legal-card {
        padding: 30px 20px;
    }
}

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