:root {
    --bg: #070a0f;
    --bg-2: #0b1220;
    --text: #eaf1ff;
    --muted: #a9b6cf;
    --border: rgba(255, 255, 255, .10);
    --primary: #184080;
    /* deep blue */
    --accent: #0898c8;
    /* cyan-blue */
    --accent-2: #50d8f8;
    /* light cyan */
    --light: #d0e0f0;
    --radius: 18px;
    --radius-sm: 14px;
    --shadow: 0 18px 60px rgba(0, 0, 0, .55);
}

* {
    box-sizing: border-box
}

html,
body {
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth
}

body {
    font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    color: var(--text);
    background: radial-gradient(1200px 700px at 10% -10%, rgba(24, 64, 128, .35), transparent 60%), radial-gradient(900px 600px at 90% 0%, rgba(8, 152, 200, .25), transparent 60%), radial-gradient(900px 700px at 70% 100%, rgba(80, 216, 248, .18), transparent 60%), var(--bg);
    line-height: 1.6;
}

img {
    max-width: 100%;
    height: auto
}

a {
    color: inherit
}

.container {
    width: min(1120px, 92%);
    margin: 0 auto
}

.skip-link {
    position: absolute;
    left: -9999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden
}

.skip-link:focus {
    left: 12px;
    top: 12px;
    width: auto;
    height: auto;
    padding: 10px 12px;
    border-radius: 12px;
    background: var(--bg-2);
    border: 1px solid var(--border);
    z-index: 1000;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(10px);
    background: rgba(7, 10, 15, .55);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.site-header.is-scrolled {
    background: rgba(7, 10, 15, .72);
    box-shadow: 0 18px 60px rgba(0, 0, 0, .45);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    gap: 12px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none
}

.brand-logo {
    width: 90px;
    height: auto;
    display: block;
    filter: drop-shadow(0 10px 25px rgba(0, 0, 0, .45));
}

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

.nav {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-link {
    text-decoration: none;
    padding: 10px 12px;
    border-radius: 12px;
    color: var(--muted);
    border: 1px solid transparent;
    position: relative;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 7px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, transparent, rgba(80, 216, 248, .55), transparent);
    opacity: 0;
    transform: translateY(6px);
    transition: opacity .2s ease, transform .2s ease;
    pointer-events: none;
}

.nav-link:hover {
    color: var(--text);
    border-color: rgba(255, 255, 255, .10);
    background: rgba(255, 255, 255, .04);
}

.nav-link:hover::after {
    opacity: 1;
    transform: translateY(0)
}

.nav-link.is-active {
    color: var(--text);
    background: rgba(24, 64, 128, .22);
    border-color: rgba(24, 64, 128, .45);
}

.nav-link.is-active::after {
    opacity: 1;
    transform: translateY(0)
}


/* Scroll progress bar */

.scroll-progress {
    height: 2px;
    background: rgba(255, 255, 255, .06);
    position: relative;
}

.scroll-progress-bar {
    display: block;
    height: 100%;
    width: 100%;
    transform-origin: left;
    transform: scaleX(var(--p, 0));
    background: linear-gradient(90deg, rgba(24, 64, 128, .25), rgba(80, 216, 248, .75), rgba(8, 152, 200, .45));
    box-shadow: 0 0 18px rgba(80, 216, 248, .22);
}


/* Sliding capability pills */

.top-ticker {
    border-top: 1px solid rgba(255, 255, 255, .06);
    background: rgba(11, 18, 32, .55);
    overflow: hidden;
}

.top-ticker-track {
    display: flex;
    gap: 10px;
    padding: 8px 0;
    width: max-content;
}

.top-ticker-pill {
    display: inline-flex;
    align-items: center;
    padding: 6px 10px;
    border-radius: 999px;
    border: 1px solid rgba(80, 216, 248, .22);
    background: linear-gradient(135deg, rgba(255, 255, 255, .06), rgba(8, 152, 200, .10), rgba(24, 64, 128, .12));
    background-size: 220% 220%;
    color: var(--light);
    font-size: .86rem;
    letter-spacing: .01em;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    transition: transform .18s ease, border-color .18s ease;
}

.top-ticker-pill::after {
    content: "";
    position: absolute;
    inset: -60% -70%;
    background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, .20) 45%, transparent 60%);
    transform: translateX(-120%) rotate(10deg);
    opacity: 0;
    pointer-events: none;
}

.top-ticker-pill:hover {
    transform: translateY(-1px);
    border-color: rgba(80, 216, 248, .35);
}

@media (prefers-reduced-motion: no-preference) {
    .top-ticker-track {
        animation: marquee 26s linear infinite;
    }
    .top-ticker:hover .top-ticker-track {
        animation-play-state: paused;
    }
    .top-ticker-pill {
        animation: bgDrift 16s ease-in-out infinite;
    }
    .top-ticker-pill:hover::after {
        opacity: 1;
        animation: shine 1.05s ease;
    }
}

@keyframes marquee {
    from {
        transform: translateX(0)
    }
    to {
        transform: translateX(-50%)
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 14px;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(255, 255, 255, .04);
    color: var(--text);
    position: relative;
    overflow: hidden;
    --mag-x: 0px;
    --mag-y: 0px;
    --lift: 0px;
    transform: translate3d(var(--mag-x), var(--mag-y), 0) translateY(var(--lift));
    transition: transform .18s ease, background .18s ease, border-color .18s ease;
}

.btn:hover {
    --lift: -2px;
    background: rgba(255, 255, 255, .06)
}

.btn:active {
    --lift: 0px;
}

.btn-primary {
    border-color: rgba(8, 152, 200, .55);
    background: linear-gradient(180deg, rgba(8, 152, 200, .35), rgba(24, 64, 128, .25));
    box-shadow: 0 10px 30px rgba(8, 152, 200, .12);
}

.btn-primary:hover {
    background: linear-gradient(180deg, rgba(80, 216, 248, .30), rgba(24, 64, 128, .30));
}

.btn-primary::after {
    content: "";
    position: absolute;
    inset: -45% -65%;
    background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, .28) 45%, transparent 60%);
    transform: translateX(-120%) rotate(8deg);
    opacity: 0;
    pointer-events: none;
}

@media (prefers-reduced-motion: no-preference) {
    .btn-primary:hover::after {
        opacity: 1;
        animation: shine 1.1s ease;
    }
}

@keyframes shine {
    from {
        transform: translateX(-120%) rotate(8deg)
    }
    to {
        transform: translateX(120%) rotate(8deg)
    }
}

.nav-cta {
    margin-left: 6px
}

.nav-toggle {
    display: none;
    appearance: none;
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(255, 255, 255, .04);
    border-radius: 14px;
    padding: 10px 12px;
    cursor: pointer;
}

.nav-toggle-bars {
    display: block;
    width: 22px;
    height: 14px;
    position: relative;
}

.nav-toggle-bars::before,
.nav-toggle-bars::after,
.nav-toggle-bars {
    background: transparent;
}

.nav-toggle-bars::before,
.nav-toggle-bars::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    border-radius: 2px;
    background: var(--text);
}

.nav-toggle-bars::before {
    top: 0
}

.nav-toggle-bars::after {
    bottom: 0
}

.nav-toggle-bars {
    background: var(--text);
    height: 2px;
    border-radius: 2px;
    top: 6px;
}


/* HERO */

.hero {
    padding: 64px 0 26px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    inset: -150px -150px auto auto;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(80, 216, 248, .25), rgba(8, 152, 200, .12), transparent 60%);
    filter: blur(0px);
    pointer-events: none;
}

.hero::after {
    content: "";
    position: absolute;
    inset: auto auto -200px -200px;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(24, 64, 128, .28), rgba(8, 152, 200, .10), transparent 62%);
    pointer-events: none;
}

@media (prefers-reduced-motion: no-preference) {
    .hero::before {
        animation: driftA 12s ease-in-out infinite
    }
    .hero::after {
        animation: driftB 14s ease-in-out infinite
    }
}

@keyframes driftA {
    0%,
    100% {
        transform: translate3d(0, 0, 0) scale(1)
    }
    50% {
        transform: translate3d(-18px, 14px, 0) scale(1.06)
    }
}

@keyframes driftB {
    0%,
    100% {
        transform: translate3d(0, 0, 0) scale(1)
    }
    50% {
        transform: translate3d(16px, -12px, 0) scale(1.07)
    }
}

.hero-inner {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 22px;
    align-items: center;
}

.kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--light);
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .10);
    background: rgba(255, 255, 255, .03);
    width: fit-content;
}

.kicker-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: var(--accent-2);
    box-shadow: 0 0 24px rgba(80, 216, 248, .25);
}

h1 {
    margin: 16px 0 10px;
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.05;
    letter-spacing: -0.02em;
}

.lead {
    margin: 0 0 18px;
    color: var(--muted);
    font-size: 1.05rem;
    max-width: 62ch;
}

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

.hero-card {
    border: 1px solid rgba(255, 255, 255, .10);
    background: linear-gradient(180deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, .03));
    border-radius: var(--radius);
    padding: 18px;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.hero-card-top {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-mark {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, .10);
    background: rgba(255, 255, 255, .02);
    padding: 8px;
}

.chip-row {
    margin-top: 14px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.chip {
    display: inline-flex;
    align-items: center;
    padding: 7px 10px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .12);
    background: linear-gradient(135deg, rgba(255, 255, 255, .06), rgba(8, 152, 200, .10), rgba(24, 64, 128, .12));
    background-size: 220% 220%;
    color: var(--light);
    font-size: .92rem;
    position: relative;
    overflow: hidden;
    transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.chip:hover {
    transform: translateY(-2px) scale(1.02);
    border-color: rgba(80, 216, 248, .35);
}

.chip::after {
    content: "";
    position: absolute;
    inset: -60% -70%;
    background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, .25) 45%, transparent 60%);
    transform: translateX(-120%) rotate(10deg);
    opacity: 0;
    pointer-events: none;
}


/* Chip entrance animation (triggers when the row comes into view) */

.chip-row.reveal .chip {
    opacity: 0;
    transform: translateY(12px) scale(.98);
}

@media (prefers-reduced-motion: no-preference) {
    .chip-row.reveal.is-inview .chip {
        animation: chipIn .7s cubic-bezier(.2, .85, .2, 1) both;
        animation-delay: var(--cd, 0ms);
    }
}

@keyframes chipIn {
    to {
        opacity: 1;
        transform: translateY(0) scale(1)
    }
}

@media (prefers-reduced-motion: no-preference) {
    .chip {
        animation: bgDrift 14s ease-in-out infinite;
    }
    .chip:hover::after {
        opacity: 1;
        animation: shine 1.05s ease;
    }
}

.hero-card h2 {
    margin: 0 0 8px;
    font-size: 1.1rem;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 14px;
}

.stat {
    border-radius: 14px;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, .10);
    background: rgba(255, 255, 255, .03);
    position: relative;
    overflow: hidden;
}

.stat strong {
    display: block;
    font-size: 1.05rem;
}

.stat span {
    color: var(--muted);
    font-size: .95rem;
}

.section {
    padding: 42px 0;
}

.section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 16px;
}

.section-title {
    margin: 0;
    font-size: 1.55rem;
    letter-spacing: -0.01em;
}

.section-subtitle {
    margin: 0;
    color: var(--muted);
    max-width: 70ch;
}

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

.card {
    border: 1px solid rgba(255, 255, 255, .10);
    background: rgba(255, 255, 255, .03);
    border-radius: var(--radius);
    padding: 16px;
    position: relative;
    overflow: hidden;
    transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}

.card h3 {
    margin: 0 0 8px
}

.card p {
    margin: 0;
    color: var(--muted);
    max-height: 0;
    opacity: 0;
    transform: translateY(6px);
    transition: max-height .35s ease, opacity .25s ease, transform .25s ease;
}

.card:hover {
    border-color: rgba(80, 216, 248, .28);
    background: rgba(255, 255, 255, .04);
    box-shadow: 0 18px 55px rgba(0, 0, 0, .35)
}

.card:hover p {
    max-height: 120px;
    opacity: 1;
    transform: translateY(0)
}

@media (hover:none) {
    .card p {
        max-height: 140px;
        opacity: 1;
        transform: none
    }
}

.card .pill {
    display: inline-flex;
    padding: 6px 10px;
    border-radius: 999px;
    border: 1px solid rgba(8, 152, 200, .35);
    background: linear-gradient(135deg, rgba(8, 152, 200, .16), rgba(24, 64, 128, .12), rgba(255, 255, 255, .05));
    background-size: 220% 220%;
    color: var(--light);
    font-size: .85rem;
    margin-bottom: 10px;
    position: relative;
    overflow: hidden;
}

@media (prefers-reduced-motion: no-preference) {
    .card .pill {
        animation: bgDrift 18s ease-in-out infinite;
    }
}

@keyframes bgDrift {
    0%,
    100% {
        background-position: 0% 50%
    }
    50% {
        background-position: 100% 50%
    }
}

.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    align-items: start;
}

.panel {
    border: 1px solid rgba(255, 255, 255, .10);
    background: rgba(11, 18, 32, .55);
    border-radius: var(--radius);
    padding: 18px;
    position: relative;
    overflow: hidden;
}

.panel h3 {
    margin: 0 0 8px
}

.panel p {
    margin: 0;
    color: var(--muted)
}

.list {
    margin: 12px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px;
}

.list li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.check {
    width: 18px;
    height: 18px;
    border-radius: 999px;
    background: rgba(80, 216, 248, .18);
    border: 1px solid rgba(80, 216, 248, .30);
    flex: 0 0 auto;
    margin-top: 2px;
    box-shadow: 0 0 24px rgba(80, 216, 248, .15);
}

.muted {
    color: var(--muted)
}

.hr {
    height: 1px;
    background: rgba(255, 255, 255, .10);
    border: 0;
    margin: 26px 0;
    position: relative;
    overflow: hidden;
}

.hr::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(80, 216, 248, .0), rgba(80, 216, 248, .55), rgba(80, 216, 248, .0));
    transform: scaleX(0);
    transform-origin: left;
    opacity: .9;
}

.hr.is-inview::before {
    transform: scaleX(1);
    transition: transform .9s ease;
}

.cta {
    border-radius: 24px;
    padding: 22px;
    border: 1px solid rgba(8, 152, 200, .30);
    background: radial-gradient(900px 300px at 20% 0%, rgba(80, 216, 248, .22), transparent 60%), linear-gradient(180deg, rgba(8, 152, 200, .18), rgba(24, 64, 128, .10));
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    position: relative;
    overflow: hidden;
}

.cta h3 {
    margin: 0 0 6px
}

.cta p {
    margin: 0;
    color: var(--muted);
    max-width: 70ch
}

.site-footer {
    margin-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, .08);
    background: rgba(7, 10, 15, .55);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 18px;
    padding: 28px 0;
}

.footer-logo {
    width: 160px
}

.footer-title {
    margin: 0 0 10px;
    font-size: 1rem
}

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 8px;
    color: var(--muted)
}

.footer-links a {
    text-decoration: none;
    color: var(--muted)
}

.footer-links a:hover {
    color: var(--text)
}

.footer-bottom {
    padding: 14px 0 24px
}

.form {
    display: grid;
    gap: 12px;
}

.field {
    display: grid;
    gap: 6px;
}

label {
    font-weight: 600;
    font-size: .95rem
}

input,
textarea {
    width: 100%;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(255, 255, 255, .03);
    color: var(--text);
    padding: 12px 12px;
    outline: none;
}

textarea {
    min-height: 120px;
    resize: vertical
}

input:focus,
textarea:focus {
    border-color: rgba(80, 216, 248, .45);
    box-shadow: 0 0 0 4px rgba(80, 216, 248, .12)
}

.notice {
    border-radius: 14px;
    padding: 12px 14px;
    border: 1px solid rgba(80, 216, 248, .30);
    background: rgba(80, 216, 248, .10);
}


/* Motion + interactive effects */

[data-tilt] {
    --rx: 0deg;
    --ry: 0deg;
    --ty: 0px;
    transform: perspective(1100px) rotateX(var(--rx)) rotateY(var(--ry)) translateY(var(--ty));
    transform-style: preserve-3d;
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

[data-tilt]:hover {
    --ty: -6px;
}

[data-glow]::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    background: radial-gradient(600px circle at var(--mx, 50%) var(--my, 50%), rgba(80, 216, 248, .22), transparent 40%), radial-gradient(900px circle at 10% 10%, rgba(24, 64, 128, .18), transparent 55%);
    opacity: 0;
    transition: opacity .2s ease;
    pointer-events: none;
}

[data-glow]:hover::before {
    opacity: 1;
}

[data-glow]>* {
    position: relative;
    z-index: 1
}


/* Scroll reveals (multiple variants) */

.reveal {
    --reveal-x: 0px;
    --reveal-y: 18px;
    --reveal-s: .985;
    --reveal-rx: 0deg;
    --reveal-ry: 0deg;
    opacity: 0;
    transform: translate3d(var(--reveal-x), var(--reveal-y), 0) scale(var(--reveal-s)) rotateX(var(--reveal-rx)) rotateY(var(--reveal-ry));
    transform-origin: center;
    filter: blur(6px);
    transition: opacity .75s ease, transform .75s ease, filter .75s ease;
    transition-delay: var(--d, 0ms);
}

.reveal.is-inview {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1) rotateX(0deg) rotateY(0deg);
    filter: blur(0);
}

.reveal--left {
    --reveal-x: -22px;
    --reveal-y: 12px;
}

.reveal--right {
    --reveal-x: 22px;
    --reveal-y: 12px;
}

.reveal--zoom {
    --reveal-y: 26px;
    --reveal-s: .94;
}

.reveal--flip {
    --reveal-y: 26px;
    --reveal-s: .97;
    --reveal-rx: 10deg;
    transform-origin: top center;
}


/* Merge reveal + tilt transforms (so cards can reveal, then tilt on hover) */

.reveal[data-tilt] {
    transform: perspective(1100px) translate3d(var(--reveal-x), var(--reveal-y), 0) scale(var(--reveal-s)) rotateX(calc(var(--reveal-rx) + var(--rx))) rotateY(calc(var(--reveal-ry) + var(--ry))) translateY(var(--ty));
    transform-style: preserve-3d;
}

.reveal.is-inview[data-tilt] {
    transform: perspective(1100px) translate3d(0, 0, 0) scale(1) rotateX(var(--rx)) rotateY(var(--ry)) translateY(var(--ty));
}


/* Sliding text (words) */

.reveal-text {
    opacity: 1;
    transform: none;
    filter: none;
}

.reveal-text .word {
    display: inline-block;
    transform: translateY(115%);
    opacity: 0;
    transition: transform .65s cubic-bezier(.2, .75, .2, 1), opacity .65s ease;
    transition-delay: var(--wd, 0ms);
    will-change: transform;
}

.reveal-text.is-inview .word {
    transform: translateY(0);
    opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
    [data-tilt] {
        transition: none;
        transform: none
    }
    .reveal {
        opacity: 1;
        transform: none;
        filter: none;
        transition: none
    }
    .reveal-text .word {
        transform: none;
        opacity: 1;
        transition: none
    }
    .top-ticker-track {
        animation: none !important
    }
    .top-ticker-pill {
        animation: none !important
    }
    .chip-row.reveal .chip {
        opacity: 1;
        transform: none
    }
}


/* Responsive */

@media (max-width: 920px) {
    .hero-inner {
        grid-template-columns: 1fr
    }
    .grid {
        grid-template-columns: 1fr
    }
    .split {
        grid-template-columns: 1fr
    }
    .footer-grid {
        grid-template-columns: 1fr
    }
}

@media (max-width: 820px) {
    .nav-toggle {
        display: inline-flex
    }
    .nav {
        position: absolute;
        top: 100%;
        right: 4%;
        left: 4%;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
        padding: 12px;
        border-radius: 16px;
        border: 1px solid rgba(255, 255, 255, .10);
        background: rgba(11, 18, 32, .92);
        box-shadow: var(--shadow);
    }
    .nav.is-open {
        display: flex
    }
    .nav-cta {
        margin-left: 0
    }
}


/* ------------------------------
   Image-driven sections (life)
-------------------------------- */

.img-duotone {
    filter: grayscale(.25) contrast(1.08) saturate(1.15);
    mix-blend-mode: normal;
}

.card-media {
    margin-top: 12px;
    height: 160px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .10);
    position: relative;
    background: rgba(255, 255, 255, .04);
}

.card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.03);
    transition: transform .75s ease, filter .75s ease;
}

.card:hover .card-media img {
    transform: scale(1.09);
    filter: saturate(1.2) contrast(1.05);
}


/* Hero media */

.hero-media {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(11, 18, 32, .60);
    box-shadow: var(--shadow);
}

.hero-media-img {
    position: relative;
    height: 360px;
}

.hero-media-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
}

.hero-media-sheen {
    position: absolute;
    inset: -20%;
    background: radial-gradient(550px 260px at var(--mx, 20%) var(--my, 10%), rgba(80, 216, 248, .25), transparent 55%);
    opacity: .9;
    pointer-events: none;
    mix-blend-mode: screen;
    animation: sheenFloat 10s ease-in-out infinite;
}

@keyframes sheenFloat {
    0%,
    100% {
        transform: translate3d(-2%, -2%, 0);
    }
    50% {
        transform: translate3d(3%, 2%, 0);
    }
}

.hero-media-overlay {
    padding: 18px 18px 16px;
}

.hero-media-top {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.hero-media-top h2 {
    margin: 0;
    font-size: 18px;
    letter-spacing: -0.01em;
}

.hero-media .chip-row {
    margin-top: 12px
}


/* Logo band */

.logo-band {
    padding: 0 0 20px;
}

.band {
    border: 1px solid rgba(255, 255, 255, .10);
    border-radius: 22px;
    background: rgba(11, 18, 32, .55);
    box-shadow: 0 20px 70px rgba(0, 0, 0, .45);
    padding: 18px;
    overflow: hidden;
    position: relative;
}

.band::after {
    content: "";
    position: absolute;
    inset: -40%;
    background: radial-gradient(600px circle at 20% 20%, rgba(24, 64, 128, .25), transparent 55%), radial-gradient(560px circle at 80% 60%, rgba(8, 152, 200, .18), transparent 55%);
    opacity: .8;
    pointer-events: none;
}

.band>* {
    position: relative;
    z-index: 1
}

.band-title {
    font-weight: 700;
    letter-spacing: -0.01em;
    margin-bottom: 10px;
}

.band-subtitle {
    margin: 10px 0 0
}

.logo-marquee {
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}

.logo-track {
    display: flex;
    gap: 10px;
    align-items: center;
    width: max-content;
    animation: logoMarquee 22s linear infinite;
    padding: 8px 0;
}

.logo-marquee:hover .logo-track {
    animation-play-state: paused
}

@keyframes logoMarquee {
    from {
        transform: translateX(0)
    }
    to {
        transform: translateX(-50%)
    }
}

.logo-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .10);
    background: rgba(255, 255, 255, .04);
    font-size: 13px;
    color: var(--text);
    white-space: nowrap;
    transition: transform .25s ease, background .25s ease, border-color .25s ease;
}

.logo-pill img {
    width: 18px;
    height: 18px;
    object-fit: contain;
    filter: drop-shadow(0 8px 18px rgba(0, 0, 0, .25));
}

.logo-pill:hover {
    transform: translateY(-2px);
    border-color: rgba(80, 216, 248, .35);
    background: rgba(8, 152, 200, .08);
}


/* Image strip */

.image-strip {
    padding: 10px 0 70px
}

.strip-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 14px;
}

.strip-card {
    grid-column: span 4;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .10);
    background: rgba(255, 255, 255, .03);
    position: relative;
    min-height: 190px;
}

.strip-img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transform: scale(1.03);
    transition: transform .9s ease;
}

.strip-card:hover .strip-img {
    transform: scale(1.10)
}

.strip-cap {
    position: absolute;
    left: 14px;
    bottom: 14px;
    padding: 9px 12px;
    border-radius: 999px;
    background: rgba(7, 10, 15, .70);
    border: 1px solid rgba(255, 255, 255, .12);
    backdrop-filter: blur(10px);
    font-weight: 600;
    letter-spacing: -0.01em;
}

@media (max-width: 920px) {
    .strip-card {
        grid-column: span 12
    }
    .hero-media-img {
        height: 280px
    }
}


/* Page hero */

.page-hero {
    padding: 34px 0 10px;
}

.page-hero-inner {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 18px;
    align-items: center;
}

.page-hero-media {
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .10);
    background: rgba(255, 255, 255, .03);
}

.page-hero-img img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}

@media (max-width: 920px) {
    .page-hero-inner {
        grid-template-columns: 1fr
    }
    .page-hero-img img {
        height: 220px
    }
}


/* Contact photo */

.contact-photo {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .10);
    background: rgba(255, 255, 255, .03);
}

.contact-photo img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.contact-photo-cap {
    position: absolute;
    left: 12px;
    bottom: 12px;
    padding: 9px 12px;
    border-radius: 999px;
    background: rgba(7, 10, 15, .72);
    border: 1px solid rgba(255, 255, 255, .12);
    backdrop-filter: blur(10px);
    font-weight: 600;
}


/* Make headings consistent (no forced lowercase) */

h1,
h2,
h3,
.section-title,
.band-title {
    text-transform: none;
}

[data-parallax] {
    will-change: transform;
    transform: translate3d(0, var(--py, 0px), 0);
}


/* =========================
   Page Loader (NFMi)
   - Shows briefly on first load
   - Shows on internal page changes
   ========================= */

.loader {
    position: fixed;
    inset: 0;
    display: grid;
    place-items: center;
    background: rgba(6, 10, 18, 0.92);
    backdrop-filter: blur(12px);
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: opacity .28s ease;
}

.loader.is-active {
    opacity: 1;
    pointer-events: auto;
}

.loader__inner {
    display: grid;
    gap: 14px;
    place-items: center;
    transform: translateY(10px) scale(.98);
    opacity: .98;
    transition: transform .28s ease, opacity .28s ease;
}

.loader.is-active .loader__inner {
    transform: translateY(0) scale(1);
}

.loader__mark {
    position: relative;
    display: grid;
    place-items: center;
}

.loader__ring {
    position: absolute;
    width: 128px;
    height: 128px;
    border-radius: 999px;
    border: 3px solid rgba(120, 220, 255, .14);
    border-top-color: rgba(120, 220, 255, .95);
    border-right-color: rgba(0, 180, 255, .55);
    filter: drop-shadow(0 14px 40px rgba(0, 180, 255, .18));
    animation: loaderSpin .9s linear infinite;
}

@keyframes loaderSpin {
    to {
        transform: rotate(360deg);
    }
}

.loader__logo {
    width: min(100px, 10vw);
    height: auto;
    filter: drop-shadow(0 18px 40px rgba(0, 180, 255, .20));
    animation: loaderFloat 1.3s ease-in-out infinite;
}

@keyframes loaderFloat {
    0%,
    100% {
        transform: translateY(0);
        opacity: .92;
    }
    50% {
        transform: translateY(-3px);
        opacity: 1;
    }
}

.loader__dots {
    display: inline-flex;
    gap: 8px;
}

.loader__dots span {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: rgba(120, 220, 255, .9);
    animation: dotBounce 0.9s ease-in-out infinite;
}

.loader__dots span:nth-child(2) {
    animation-delay: .12s;
}

.loader__dots span:nth-child(3) {
    animation-delay: .24s;
}

@keyframes dotBounce {
    0%,
    100% {
        transform: translateY(0);
        opacity: .55;
    }
    50% {
        transform: translateY(-7px);
        opacity: 1;
    }
}

@media (prefers-reduced-motion: reduce) {
    .loader,
    .loader__inner {
        transition: none;
    }
    .loader__ring,
    .loader__logo,
    .loader__dots span {
        animation: none;
    }
}

.loader__logo,
.loader__dots span {
    animation: none;
}