/* ============================================================
   CYBERNOVA — Managed IT & Cybersecurity
   Design system: cool paper + deep navy + CyberNova blue (#0054ff)
   Type: Bricolage Grotesque (display) / Inter (text) / Plex Mono
   ============================================================ */

:root {
    /* Palette */
    --paper: #f4f7fc;
    --paper-2: #e4eefa;
    --white: #ffffff;
    --ink: #10182e;
    --ink-soft: #47536e;
    --ink-dim: #8590a8;

    --navy: #141d3b;
    --navy-2: #1a2547;
    --navy-border: rgba(255, 255, 255, 0.09);
    --navy-text: #e9edf8;
    --navy-muted: #9fabc9;

    --blue: #0054ff;
    --blue-deep: #2348c2;
    --sky: #8fb3ff;
    --sky-deep: #6d9bff;
    --amber: #f5b942;

    --border: rgba(20, 29, 59, 0.12);
    --border-soft: rgba(20, 29, 59, 0.07);

    /* Elevation */
    --shadow-sm: 0 1px 2px rgba(20, 29, 59, 0.05), 0 3px 10px rgba(20, 29, 59, 0.05);
    --shadow-md: 0 2px 6px rgba(20, 29, 59, 0.05), 0 16px 32px -12px rgba(20, 29, 59, 0.14);
    --shadow-lg: 0 4px 12px rgba(20, 29, 59, 0.06), 0 32px 64px -16px rgba(20, 29, 59, 0.22);

    /* Layout */
    --container: 1180px;
    --r-sm: 10px;
    --r-md: 16px;
    --r-lg: 24px;
    --r-xl: 32px;

    /* Type */
    --display: 'Bricolage Grotesque', 'Inter', sans-serif;
    --sans: 'Inter', -apple-system, 'Segoe UI', sans-serif;
    --mono: 'IBM Plex Mono', ui-monospace, Menlo, monospace;

    --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ==================== RESET ==================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
[id] { scroll-margin-top: 96px; }
body {
    font-family: var(--sans);
    background: var(--paper);
    color: var(--ink);
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
input, textarea, select { font: inherit; color: inherit; }

::selection { background: var(--sky); color: var(--ink); }

::-webkit-scrollbar { width: 12px; }
::-webkit-scrollbar-track { background: var(--paper); }
::-webkit-scrollbar-thumb { background: #c9c4b6; border-radius: 8px; border: 3px solid var(--paper); }
::-webkit-scrollbar-thumb:hover { background: #a8a292; }

:focus-visible { outline: 2.5px solid var(--blue); outline-offset: 3px; border-radius: 4px; }

.skip-link {
    position: fixed;
    top: -60px; left: 16px;
    z-index: 300;
    padding: 10px 18px;
    background: var(--ink);
    color: var(--paper);
    border-radius: 0 0 10px 10px;
    font-weight: 600;
    font-size: 14px;
    transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 0; }

.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 28px;
}

/* ==================== TYPE ==================== */
h1, h2, h3 { font-family: var(--display); }

h2 {
    font-size: clamp(34px, 4.6vw, 58px);
    font-weight: 700;
    line-height: 1.04;
    letter-spacing: -0.025em;
    text-wrap: balance;
}
h2 em {
    font-style: italic;
    font-weight: 600;
    color: var(--blue);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--mono);
    font-size: 12.5px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--blue-deep);
    margin-bottom: 20px;
}
.eyebrow i {
    width: 28px; height: 1.5px;
    background: var(--blue);
    flex-shrink: 0;
}
.eyebrow--dark { color: var(--sky); }
.eyebrow--dark i { background: var(--sky); }

.section {
    padding: 116px 0;
    position: relative;
}
.section--white { background: var(--white); border-block: 1px solid var(--border-soft); }

.section__head {
    max-width: 720px;
    margin-bottom: 64px;
}
.section__head p {
    margin-top: 20px;
    font-size: clamp(16px, 1.3vw, 18px);
    color: var(--ink-soft);
    max-width: 600px;
}

/* ==================== BUTTONS ==================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 14px 26px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: -0.01em;
    border: 1.5px solid transparent;
    transition: all 0.25s var(--ease);
    white-space: nowrap;
    position: relative;
}
.btn svg { width: 17px; height: 17px; transition: transform 0.25s var(--ease); }
.btn:hover svg { transform: translateX(3px); }

.btn--primary {
    background: var(--blue);
    color: #fff;
    box-shadow: 0 8px 20px -8px rgba(0, 84, 255, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.18);
}
.btn--primary:hover {
    background: var(--blue-deep);
    transform: translateY(-2px);
    box-shadow: 0 14px 28px -10px rgba(0, 84, 255, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.18);
}
.btn--primary:active { transform: translateY(0); }

.btn--ghost {
    border-color: var(--border);
    color: var(--ink);
    background: transparent;
}
.btn--ghost:hover {
    border-color: var(--ink);
    background: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.btn--sm { padding: 10px 20px; font-size: 14px; }
.btn--lg { padding: 16px 32px; font-size: 16px; }
.btn--block { width: 100%; }

@keyframes blink {
    0%, 100% { box-shadow: 0 0 0 0 rgba(143, 179, 255, 0.5); }
    50% { box-shadow: 0 0 0 5px rgba(143, 179, 255, 0); }
}

/* ==================== NAV ==================== */
.nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(247, 245, 240, 0.85);
    backdrop-filter: blur(14px) saturate(150%);
    -webkit-backdrop-filter: blur(14px) saturate(150%);
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.nav.scrolled {
    border-bottom-color: var(--border-soft);
    box-shadow: 0 6px 24px -12px rgba(16, 32, 26, 0.12);
}
.nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    height: 74px;
}

.brand {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}
.brand__logo {
    width: auto;
    height: 34px;
    transition: opacity 0.2s var(--ease);
}
.brand:hover .brand__logo { opacity: 0.82; }

.nav__links {
    display: flex;
    align-items: center;
    gap: 4px;
}
.nav__links a {
    padding: 9px 15px;
    font-size: 14.5px;
    font-weight: 500;
    color: var(--ink-soft);
    border-radius: 999px;
    transition: color 0.2s var(--ease), background 0.2s var(--ease);
}
.nav__links a:hover { color: var(--ink); background: rgba(16, 32, 26, 0.06); }
.nav__links a.is-active { color: var(--ink); background: rgba(0, 84, 255, 0.12); }

.nav__actions { display: flex; align-items: center; gap: 12px; }

.nav__toggle {
    display: none;
    width: 42px; height: 42px;
    border-radius: 12px;
    border: 1.5px solid var(--border);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: var(--white);
}
.nav__toggle span {
    width: 17px; height: 2px;
    border-radius: 2px;
    background: var(--ink);
    transition: transform 0.25s var(--ease);
}
.nav__toggle.active span:nth-child(1) { transform: translateY(4px) rotate(45deg); }
.nav__toggle.active span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }

/* ==================== HERO ==================== */
.hero {
    position: relative;
    padding: 88px 0 0;
    overflow: hidden;
    background: var(--navy);
}
.hero__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.hero__video--mobile { display: none; }
.hero__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(20, 29, 59, 0.55) 0%, rgba(20, 29, 59, 0.25) 55%, rgba(20, 29, 59, 0.05) 100%),
        linear-gradient(180deg, rgba(20, 29, 59, 0.42), rgba(20, 29, 59, 0.2) 55%, rgba(20, 29, 59, 0.68));
    pointer-events: none;
}
.hero__noise {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
    pointer-events: none;
}

.hero__inner {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    padding: 64px 0 96px;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    row-gap: 2px;
    max-width: 100%;
    gap: 11px;
    padding: 8px 18px 8px 14px;
    background: var(--white);
    border: 1px solid var(--border-soft);
    border-radius: 999px;
    box-shadow: var(--shadow-sm);
    font-size: 13.5px;
    font-weight: 500;
    color: var(--ink-soft);
    margin-bottom: 30px;
}
.stars {
    color: var(--amber);
    font-size: 13px;
    letter-spacing: 2px;
    line-height: 1;
}

.hero__title {
    font-size: clamp(44px, 6.4vw, 84px);
    font-weight: 800;
    line-height: 1.04;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
    max-width: 860px;
    text-wrap: balance;
    color: #fff;
    text-shadow: 0 2px 24px rgba(13, 20, 48, 0.45);
}
.underlined {
    position: relative;
    display: inline-block;
    color: var(--sky);
}
.underlined svg {
    position: absolute;
    left: 0; bottom: -0.12em;
    width: 100%; height: 0.22em;
    color: var(--blue);
    z-index: -1;
}
.underlined svg path {
    stroke-dasharray: 260;
    stroke-dashoffset: 260;
    animation: drawline 1s 0.7s var(--ease) forwards;
}
@keyframes drawline { to { stroke-dashoffset: 0; } }

.hero__sub {
    font-size: clamp(17px, 1.5vw, 21px);
    color: var(--navy-text);
    max-width: 560px;
    margin-bottom: 38px;
    text-shadow: 0 1px 12px rgba(13, 20, 48, 0.5);
}

.hero__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.hero .btn--ghost {
    border-color: rgba(255, 255, 255, 0.35);
    color: #fff;
}
.hero .btn--ghost:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: none;
}


/* --- Metrics --- */
.hero__metrics {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    position: relative;
}
.metric {
    padding: 34px 28px 42px;
    border-left: 1px solid rgba(255, 255, 255, 0.16);
}
.metric:first-child { border-left: none; padding-left: 0; }
.metric__num {
    display: block;
    font-family: var(--display);
    font-size: clamp(34px, 3.4vw, 48px);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.1;
    color: #fff;
}
.metric__label {
    display: block;
    margin-top: 6px;
    font-size: 14px;
    color: var(--navy-muted);
}

/* ==================== VENDORS ==================== */
.vendors {
    background: var(--white);
    border-block: 1px solid var(--border-soft);
    padding: 44px 0 48px;
}
.vendors__heading {
    text-align: center;
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ink-dim);
    margin-bottom: 30px;
}
.vendors__strip {
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, #000 14%, #000 86%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 14%, #000 86%, transparent);
}
.vendors__track {
    display: flex;
    gap: 72px;
    width: max-content;
    animation: marquee 38s linear infinite;
}
.vendors__strip:hover .vendors__track { animation-play-state: paused; }
.vendors__track span {
    font-family: var(--display);
    font-size: 21px;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: #b3ada0;
    white-space: nowrap;
    transition: color 0.25s var(--ease);
}
.vendors__track span:hover { color: var(--ink); }
@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* ==================== SERVICES / BENTO ==================== */
.bento {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-rows: auto;
    gap: 20px;
}

.bento__card {
    position: relative;
    background: var(--white);
    border: 1px solid var(--border-soft);
    border-radius: var(--r-lg);
    padding: 34px 30px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.bento__card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(0, 84, 255, 0.35);
}

.bento__card--feature {
    grid-row: span 2;
    background: linear-gradient(170deg, #fdfdfb, #f2f7ef);
    gap: 18px;
}

.bento__icon {
    width: 52px; height: 52px;
    border-radius: 14px;
    background: rgba(0, 84, 255, 0.1);
    border: 1px solid rgba(0, 84, 255, 0.2);
    color: var(--blue-deep);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.35s var(--ease), background 0.35s var(--ease);
}
.bento__icon svg { width: 26px; height: 26px; }
.bento__card:hover .bento__icon {
    transform: scale(1.06) rotate(-4deg);
    background: rgba(0, 84, 255, 0.16);
}

.bento__card h3 {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.02em;
}
.bento__card > p, .bento__head p {
    font-size: 14.5px;
    color: var(--ink-soft);
}
.bento__head { display: flex; flex-direction: column; gap: 14px; }

.bento__list { display: flex; flex-direction: column; }
.bento__list li {
    position: relative;
    padding: 9px 0 9px 26px;
    font-size: 14.5px;
    color: var(--ink-soft);
    border-bottom: 1px dashed var(--border-soft);
}
.bento__list li:last-child { border-bottom: none; }
.bento__list li::before {
    content: '';
    position: absolute;
    left: 2px; top: 16px;
    width: 12px; height: 7px;
    border-left: 2px solid var(--blue);
    border-bottom: 2px solid var(--blue);
    transform: rotate(-45deg);
}

.bento__link {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-weight: 600;
    font-size: 14.5px;
    color: var(--blue-deep);
    width: fit-content;
}
.bento__link span { transition: transform 0.25s var(--ease); }
.bento__link:hover span { transform: translateX(4px); }

/* Statusboard mock inside feature card */
.statusboard {
    background: var(--navy);
    border-radius: var(--r-md);
    padding: 16px 18px;
    display: flex;
    flex-direction: column;
    gap: 3px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}
.statusboard__row {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--mono);
    font-size: 12px;
    color: var(--navy-muted);
    padding: 6px 0;
}
.statusboard__row + .statusboard__row { border-top: 1px solid rgba(255, 255, 255, 0.05); }
.statusboard__dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: #4ade80;
    box-shadow: 0 0 8px rgba(74, 222, 128, 0.7);
    flex-shrink: 0;
}
.statusboard__dot--sync {
    background: var(--amber);
    box-shadow: 0 0 8px rgba(245, 185, 66, 0.7);
}
.statusboard__val {
    margin-left: auto;
    color: #4ade80;
    font-size: 11.5px;
}
.statusboard__row:last-child .statusboard__val { color: var(--amber); }

/* ==================== APPROACH / STEPS ==================== */
.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    counter-reset: step;
}
.step {
    position: relative;
    padding: 36px 30px;
    background: var(--paper);
    border: 1px solid var(--border-soft);
    border-radius: var(--r-lg);
    transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.step:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }

.step__num {
    font-family: var(--display);
    font-size: 64px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.04em;
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(0, 84, 255, 0.5);
    display: block;
    margin-bottom: 20px;
}
.step:hover .step__num {
    color: var(--blue);
    -webkit-text-stroke-color: transparent;
    transition: color 0.35s var(--ease);
}
.step h3 {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 4px;
}
.step__tag {
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: 0.03em;
    color: var(--blue-deep);
    margin-bottom: 14px;
}
.step > p:not(.step__tag) {
    font-size: 14.5px;
    color: var(--ink-soft);
    margin-bottom: 18px;
}
.step ul { display: flex; flex-direction: column; gap: 8px; }
.step ul li {
    position: relative;
    padding-left: 22px;
    font-size: 14px;
    color: var(--ink-soft);
}
.step ul li::before {
    content: '';
    position: absolute;
    left: 0; top: 8px;
    width: 10px; height: 6px;
    border-left: 2px solid var(--blue);
    border-bottom: 2px solid var(--blue);
    transform: rotate(-45deg);
}

/* ==================== VALUE BAND (DARK) ==================== */
.band {
    position: relative;
    background: var(--navy);
    color: var(--navy-text);
    padding: 116px 0;
    overflow: hidden;
}
.band::before {
    content: '';
    position: absolute;
    top: -240px; left: -140px;
    width: 640px; height: 640px;
    background: radial-gradient(circle, rgba(143, 179, 255, 0.09), transparent 65%);
    border-radius: 50%;
    filter: blur(40px);
    pointer-events: none;
}
.band__inner {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 72px;
    align-items: center;
}
.band__copy h2 { color: #fff; margin-bottom: 22px; }
.band__copy h2 em { color: var(--sky); }
.band__copy > p {
    color: var(--navy-muted);
    font-size: 16.5px;
    margin-bottom: 34px;
    max-width: 480px;
}

.band__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}
.band__card {
    padding: 28px 26px;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid var(--navy-border);
    border-radius: var(--r-md);
    backdrop-filter: blur(6px);
    transition: background 0.3s var(--ease), border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.band__card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(143, 179, 255, 0.35);
    transform: translateY(-4px);
}
.band__stat {
    display: block;
    font-family: var(--display);
    font-size: 38px;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--sky);
    line-height: 1.1;
    margin-bottom: 10px;
}
.band__card h3 {
    font-size: 17px;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: #fff;
    margin-bottom: 8px;
}
.band__card p {
    font-size: 13.5px;
    line-height: 1.6;
    color: var(--navy-muted);
}

/* ==================== INDUSTRIES ==================== */
.industries {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.industry {
    position: relative;
    padding: 32px 28px;
    background: var(--white);
    border: 1px solid var(--border-soft);
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.industry::after {
    content: '';
    position: absolute;
    inset: auto 0 0 0;
    height: 3px;
    background: linear-gradient(90deg, var(--blue), var(--sky));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--ease);
}
.industry:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.industry:hover::after { transform: scaleX(1); }
.industry svg {
    width: 34px; height: 34px;
    color: var(--blue-deep);
    margin-bottom: 18px;
    transition: transform 0.3s var(--ease);
}
.industry:hover svg { transform: translateY(-3px) scale(1.07); }
.industry h3 {
    font-size: 19px;
    font-weight: 700;
    letter-spacing: -0.015em;
    margin-bottom: 6px;
}
.industry p { font-size: 14px; color: var(--ink-soft); }

/* ==================== TESTIMONIALS ==================== */
.quotes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: start;
}
.quote {
    padding: 34px 30px;
    background: var(--paper);
    border: 1px solid var(--border-soft);
    border-radius: var(--r-lg);
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.quote:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.quote--lead {
    background: var(--navy);
    border-color: transparent;
    color: var(--navy-text);
}
.quote__stars {
    color: var(--amber);
    letter-spacing: 3px;
    font-size: 14px;
    margin-bottom: 18px;
}
.quote--lead .quote__stars { color: var(--sky); }
.quote blockquote {
    font-family: var(--display);
    font-size: 17.5px;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: -0.01em;
    margin-bottom: 26px;
}
.quote--lead blockquote { color: #fff; }
.quote figcaption {
    display: flex;
    align-items: center;
    gap: 13px;
    padding-top: 20px;
    border-top: 1px solid var(--border-soft);
}
.quote--lead figcaption { border-top-color: var(--navy-border); }
.quote__avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: rgba(0, 84, 255, 0.12);
    border: 1.5px solid rgba(0, 84, 255, 0.3);
    color: var(--blue-deep);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--display);
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
}
.quote--lead .quote__avatar {
    background: rgba(143, 179, 255, 0.14);
    border-color: rgba(143, 179, 255, 0.4);
    color: var(--sky);
}
.quote figcaption strong {
    display: block;
    font-size: 14.5px;
    font-weight: 600;
}
.quote figcaption span:not(.quote__avatar) {
    font-size: 13px;
    color: var(--ink-dim);
}
.quote--lead figcaption span:not(.quote__avatar) { color: var(--navy-muted); }

/* ==================== FAQ ==================== */
.faq__layout {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: 72px;
    align-items: start;
}
.faq__intro { position: sticky; top: 130px; }
.faq__intro p {
    margin-top: 20px;
    color: var(--ink-soft);
    font-size: 16.5px;
    max-width: 380px;
}
.faq__intro p a {
    color: var(--blue-deep);
    font-weight: 600;
    text-decoration: underline;
    text-decoration-thickness: 1.5px;
    text-underline-offset: 3px;
}

.faq__list { display: flex; flex-direction: column; gap: 12px; }
.faq__item {
    background: var(--white);
    border: 1px solid var(--border-soft);
    border-radius: var(--r-md);
    box-shadow: var(--shadow-sm);
    transition: border-color 0.25s var(--ease);
    overflow: hidden;
}
.faq__item[open] { border-color: rgba(0, 84, 255, 0.4); }
.faq__item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 20px 24px;
    font-family: var(--display);
    font-size: 17px;
    font-weight: 600;
    letter-spacing: -0.01em;
    cursor: pointer;
    list-style: none;
    user-select: none;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__chevron {
    width: 30px; height: 30px;
    border-radius: 50%;
    border: 1.5px solid var(--border);
    position: relative;
    flex-shrink: 0;
    transition: transform 0.3s var(--ease), background 0.3s var(--ease), border-color 0.3s var(--ease);
}
.faq__chevron::before,
.faq__chevron::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    background: var(--ink);
    transition: background 0.3s var(--ease);
}
.faq__chevron::before { width: 11px; height: 1.8px; transform: translate(-50%, -50%); }
.faq__chevron::after { width: 1.8px; height: 11px; transform: translate(-50%, -50%); }
.faq__item[open] .faq__chevron {
    transform: rotate(135deg);
    background: var(--blue);
    border-color: var(--blue);
}
.faq__item[open] .faq__chevron::before,
.faq__item[open] .faq__chevron::after { background: #fff; }
.faq__answer { padding: 0 24px 22px; }
.faq__answer p {
    font-size: 14.5px;
    color: var(--ink-soft);
    max-width: 560px;
}

/* ==================== CONTACT ==================== */
.section--contact { padding-bottom: 130px; }

.contact {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 64px;
    padding: 64px;
    background: var(--navy);
    color: var(--navy-text);
    border-radius: var(--r-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.contact::before {
    content: '';
    position: absolute;
    bottom: -220px; left: -120px;
    width: 560px; height: 560px;
    background: radial-gradient(circle, rgba(0, 84, 255, 0.22), transparent 65%);
    border-radius: 50%;
    filter: blur(48px);
    pointer-events: none;
}

.contact__copy { position: relative; }
.contact__copy h2 { color: #fff; margin-bottom: 20px; }
.contact__copy h2 em { color: var(--sky); }
.contact__copy > p {
    color: var(--navy-muted);
    font-size: 16px;
    max-width: 420px;
    margin-bottom: 30px;
}

.contact__points {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 38px;
}
.contact__points li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--navy-text);
}
.contact__points svg {
    width: 22px; height: 22px;
    padding: 4px;
    box-sizing: content-box;
    background: rgba(143, 179, 255, 0.14);
    border-radius: 50%;
    color: var(--sky);
    flex-shrink: 0;
}

.contact__direct {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-top: 26px;
    border-top: 1px solid var(--navy-border);
}
.contact__direct a, .contact__direct span {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    font-size: 14.5px;
    color: var(--navy-muted);
}
.contact__direct a { color: var(--sky); font-weight: 500; transition: opacity 0.2s; }
.contact__direct a:hover { opacity: 0.8; }
.contact__direct svg { width: 18px; height: 18px; flex-shrink: 0; }

/* --- Form --- */
.form {
    position: relative;
    background: var(--white);
    color: var(--ink);
    border-radius: var(--r-lg);
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    box-shadow: 0 24px 48px -20px rgba(0, 0, 0, 0.45);
}
.form__row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 16px;
}
.form__field { display: flex; flex-direction: column; gap: 7px; }
.form__field label {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.01em;
    color: var(--ink-soft);
}
.form__field label i { color: var(--blue-deep); font-style: normal; }
.form__field input,
.form__field select,
.form__field textarea {
    width: 100%;
    min-width: 0;
    padding: 13px 15px;
    border: 1.5px solid var(--border);
    border-radius: var(--r-sm);
    background: var(--paper);
    font-size: 14.5px;
    transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s var(--ease);
}
.form__field input::placeholder,
.form__field textarea::placeholder { color: #a9a493; }
.form__field input:focus,
.form__field select:focus,
.form__field textarea:focus {
    outline: none;
    border-color: var(--blue);
    background: var(--white);
    box-shadow: 0 0 0 3.5px rgba(0, 84, 255, 0.14);
}
.form__field textarea { resize: vertical; min-height: 96px; }
.form__field select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='none' stroke='%232348c2' stroke-width='2' stroke-linecap='round' d='M1 1.5L6 6.5l5-5'/></svg>");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
    cursor: pointer;
}
.form__field select:invalid { color: #a9a493; }

.form__success {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 13px 16px;
    background: rgba(0, 84, 255, 0.1);
    border: 1px solid rgba(0, 84, 255, 0.35);
    border-radius: var(--r-sm);
    color: var(--blue-deep);
    font-size: 14px;
    font-weight: 500;
}
.form__success svg { width: 20px; height: 20px; flex-shrink: 0; }
.form__success[hidden] { display: none; }

/* ==================== FOOTER ==================== */
.footer {
    background: var(--white);
    border-top: 1px solid var(--border-soft);
}
.footer__inner {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
    gap: 48px;
    padding: 72px 28px 56px;
}
.brand--footer .brand__logo { height: 38px; }
.footer__brand p {
    margin: 16px 0 22px;
    font-size: 14.5px;
    color: var(--ink-soft);
    max-width: 300px;
}
.footer__col { display: flex; flex-direction: column; gap: 11px; }
.footer__col h4 {
    font-family: var(--mono);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ink-dim);
    margin-bottom: 6px;
}
.footer__col a, .footer__col span {
    font-size: 14.5px;
    color: var(--ink-soft);
    width: fit-content;
}
.footer__col a {
    transition: color 0.2s var(--ease);
    position: relative;
}
.footer__col a::after {
    content: '';
    position: absolute;
    left: 0; bottom: -2px;
    width: 100%; height: 1.5px;
    background: var(--blue);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s var(--ease);
}
.footer__col a:hover { color: var(--ink); }
.footer__col a:hover::after { transform: scaleX(1); }

.footer__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 6px;
    padding: 7px 14px;
    background: rgba(0, 84, 255, 0.08);
    border: 1px solid rgba(0, 84, 255, 0.25);
    border-radius: 999px;
    font-family: var(--mono);
    font-size: 12px;
    color: var(--blue-deep);
}
.footer__badge i {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--blue);
    animation: blink 2.4s ease-in-out infinite;
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding-top: 24px;
    padding-bottom: 28px;
    border-top: 1px solid var(--border-soft);
    font-size: 13px;
    color: var(--ink-dim);
}

/* ==================== REVEAL ==================== */
.reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
    transition-delay: var(--d, 0s);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

.bento > :nth-child(2), .steps > :nth-child(2), .industries > :nth-child(2),
.quotes > :nth-child(2), .band__grid > :nth-child(2), .faq__list > :nth-child(2) { --d: 0.08s; }
.bento > :nth-child(3), .steps > :nth-child(3), .industries > :nth-child(3),
.quotes > :nth-child(3), .band__grid > :nth-child(3), .faq__list > :nth-child(3) { --d: 0.16s; }
.bento > :nth-child(4), .industries > :nth-child(4),
.band__grid > :nth-child(4), .faq__list > :nth-child(4) { --d: 0.24s; }
.bento > :nth-child(5), .industries > :nth-child(5), .faq__list > :nth-child(5) { --d: 0.32s; }
.industries > :nth-child(6) { --d: 0.4s; }

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1080px) {
    .band__inner { grid-template-columns: minmax(0, 1fr); gap: 52px; }
    .faq__layout { grid-template-columns: minmax(0, 1fr); gap: 48px; }
    .faq__intro { position: static; }
    .contact { grid-template-columns: minmax(0, 1fr); gap: 48px; padding: 48px 40px; }
    .bento { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .bento__card--feature { grid-column: span 2; grid-row: auto; }
    .footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 820px) {
    .section { padding: 84px 0; }
    .band { padding: 84px 0; }

    .nav__links {
        position: fixed;
        top: 86px; left: 16px; right: 16px;
        z-index: 99;
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
        padding: 16px;
        background: var(--white);
        border: 1px solid var(--border-soft);
        border-radius: var(--r-md);
        box-shadow: var(--shadow-lg);
        opacity: 0;
        transform: translateY(-10px);
        pointer-events: none;
        transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
    }
    .nav__links.open { opacity: 1; transform: translateY(0); pointer-events: auto; }
    .nav__links a { padding: 13px 16px; font-size: 15px; border-radius: 10px; }
    .nav__toggle { display: flex; }
    .nav__actions .btn { display: none; }

    .hero { padding-top: 56px; }
    .hero__video { display: none; }
    .hero__video--mobile { display: block; }
    .hero__metrics { grid-template-columns: repeat(2, 1fr); border-top: none; }
    .metric { border-top: 1px solid rgba(255, 255, 255, 0.16); padding: 24px 20px 28px; }
    .metric:first-child { padding-left: 20px; }
    .metric:nth-child(odd) { border-left: none; padding-left: 0; }

    .steps { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
    .industries { grid-template-columns: 1fr 1fr; }
    .quotes { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
    .band__grid { grid-template-columns: 1fr 1fr; }
    .form__row { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
    .container { padding: 0 20px; }
    .bento { grid-template-columns: minmax(0, 1fr); }
    .bento__card--feature { grid-column: auto; }
    .industries { grid-template-columns: 1fr; }
    .band__grid { grid-template-columns: 1fr; }
    .hero__cta { flex-direction: column; align-items: stretch; width: 100%; max-width: 340px; }
    .contact { padding: 40px 24px; border-radius: var(--r-lg); }
    .form { padding: 28px 22px; }
    .footer__inner { grid-template-columns: 1fr; gap: 36px; padding-top: 56px; }
    .footer__bottom { flex-direction: column; text-align: center; }
}

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