@font-face {
    font-family: "Cooper Hewitt";
    font-style: normal;
    font-display: swap;
    font-weight: 400;
    src:
        url(https://cdn.jsdelivr.net/fontsource/fonts/cooper-hewitt@latest/latin-400-normal.woff2)
            format("woff2"),
        url(https://cdn.jsdelivr.net/fontsource/fonts/cooper-hewitt@latest/latin-400-normal.woff)
            format("woff");
}

@font-face {
    font-family: "Cooper Hewitt";
    font-style: normal;
    font-display: swap;
    font-weight: 600;
    src:
        url(https://cdn.jsdelivr.net/fontsource/fonts/cooper-hewitt@latest/latin-600-normal.woff2)
            format("woff2"),
        url(https://cdn.jsdelivr.net/fontsource/fonts/cooper-hewitt@latest/latin-600-normal.woff)
            format("woff");
}

:root {
    --primary-dark: #020204;
    --primary-light: #f7f7f7;
    --highlight: #00d4ff;
    --mid: #0052d4;
    --deep: #001a33;
    --active: #00ff41;
    --purple: #7b2fbe;
    --coral: #ff6b35;
    --amber: #f59e0b;
    --green: #10b981;
    --sky: #0ea5e9;
    --mid-10: rgba(0, 82, 212, 0.1);
    --mid-18: rgba(0, 82, 212, 0.18);
    --mid-glow: rgba(0, 82, 212, 0.35);
    --hi-10: rgba(0, 212, 255, 0.1);
    --hi-glow: rgba(0, 212, 255, 0.3);
    --co-10: rgba(255, 107, 53, 0.1);
    --pu-10: rgba(123, 47, 190, 0.1);
    --bg: #ffffff;
    --bg-2: #f5f7ff;
    --bg-3: #eef2ff;
    --bg-4: #e8ecfa;
    --text: #060b1a;
    --text-muted: #374060;
    --text-faint: #7080a0;
    --font-main: "Cooper Hewitt", system-ui, sans-serif;
    --ease-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --ease-back: cubic-bezier(0.68, -0.4, 0.27, 1.4);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.section {
    position: relative;
    overflow: hidden;
}

.section-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 110px 40px;
}

.section-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--mid);
    margin-bottom: 14px;
    display: block;
    transition: letter-spacing 0.6s var(--ease-expo), opacity 0.6s var(--ease-expo);
}

h2 {
    font-size: clamp(32px, 4.2vw, 56px);
    font-weight: 600;
    line-height: 1.06;
    color: var(--deep);
    margin-bottom: 28px;
}

h2 em {
    font-style: normal;
    color: var(--mid);
}

h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--deep);
    margin-bottom: 12px;
}

p {
    font-size: 16px;
    line-height: 1.78;
    color: var(--text-muted);
    margin-bottom: 16px;
}

p:last-child {
    margin-bottom: 0;
}

strong {
    color: var(--deep);
    font-weight: 600;
}

.link {
    color: var(--mid);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1.5px solid var(--mid-18);
    transition:
        color 0.2s,
        border-color 0.2s;
}

.link:hover {
    color: var(--deep);
    border-color: var(--deep);
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 12px;
    font-size: 14px;
    font-weight: 600;
    color: var(--mid);
    text-decoration: none;
    transition:
        gap 0.3s var(--ease-expo),
        color 0.2s;
}

.text-link:hover {
    gap: 12px;
    color: var(--deep);
}

.btn-primary {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 10px;
    font-family: var(--font-main);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    background: var(--mid);
    color: #fff;
    box-shadow: 0 4px 28px var(--mid-glow);
    transition:
        transform 0.35s var(--ease-spring),
        box-shadow 0.35s;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 12px 40px var(--mid-glow);
}

.btn-ghost {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 10px;
    font-family: var(--font-main);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(8px);
    transition:
        background 0.25s,
        transform 0.35s var(--ease-spring),
        border-color 0.25s;
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.22);
    transform: translateY(-3px) scale(1.03);
}

.btn-outline {
    display: inline-block;
    padding: 10px 22px;
    border-radius: 8px;
    border: 1.5px solid var(--mid-18);
    font-size: 13px;
    font-weight: 600;
    color: var(--mid);
    text-decoration: none;
    white-space: nowrap;
    align-self: center;
    transition:
        background 0.25s,
        color 0.25s,
        transform 0.3s var(--ease-spring),
        border-color 0.25s,
        box-shadow 0.25s;
}

.btn-outline:hover {
    background: var(--mid);
    color: #fff;
    transform: translateY(-2px);
    border-color: var(--mid);
    box-shadow: 0 6px 20px var(--mid-glow);
}

.hero {
    position: relative;
    height: 100vh;
    min-height: 640px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    will-change: transform;
    animation: heroZoom 14s cubic-bezier(0.4, 0, 0.2, 1) both;
}

@keyframes heroZoom {
    from {
        transform: scale(1.09);
    }
    to {
        transform: scale(1);
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 26, 51, 0.65);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 840px;
    padding: 0 24px;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 28px;
    padding: 7px 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(8px);
    animation: heroReveal 1s var(--ease-expo) 0.2s both;
}

.hero-eyebrow::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--active);
    box-shadow: 0 0 10px var(--active);
    animation: pulseDot 2s ease-in-out infinite;
}

@keyframes pulseDot {
    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(0.75);
    }
}

.hero-title {
    display: block;
    font-size: clamp(56px, 9vw, 108px);
    font-weight: 600;
    line-height: 0.94;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
}

.hero-word {
    display: block;
    color: #fff;
    animation: heroBlurIn 1.1s var(--ease-expo) 0.42s both;
}

.hero-word--accent {
    color: var(--highlight);
    text-shadow: 0 0 80px rgba(0, 212, 255, 0.5);
    animation: heroBlurIn 1.1s var(--ease-expo) 0.62s both;
}

@keyframes heroBlurIn {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.96);
        filter: blur(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

.hero-sub {
    font-size: clamp(16px, 2.2vw, 21px);
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 42px;
    line-height: 1.6;
    animation: heroBlurIn 1.1s var(--ease-expo) 0.82s both;
}

.hero-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    animation: heroBlurIn 1.1s var(--ease-expo) 1s both;
}

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

.hero-scroll-hint {
    display: none;
}

.scroll-line {
    display: none;
}

.exigency {
    background: var(--bg);
}

.exigency-inner {
    max-width: 960px;
    margin: 0 auto;
    padding: 120px 40px 140px;
}

.exigency-header {
    text-align: center;
    margin-bottom: 80px;
}

.exigency-header .section-label {
    opacity: 0;
    transform: translateY(18px);
    transition:
        opacity 0.6s var(--ease-expo),
        transform 0.6s var(--ease-expo);
}

.exigency-header .section-label.visible {
    opacity: 1;
    transform: translateY(0);
}

.exigency-headline {
    font-size: clamp(38px, 5.5vw, 66px);
    font-weight: 600;
    line-height: 1.06;
    color: var(--deep);
    margin-bottom: 28px;
}

.headline-line {
    display: block;
    overflow: hidden;
}

.headline-line-inner {
    display: block;
    transform: translateY(110%);
    transition: transform 0.9s var(--ease-expo);
}

.headline-line-inner.visible {
    transform: translateY(0);
}

.headline-line-inner em {
    font-style: normal;
    color: var(--mid);
    position: relative;
    display: inline-block;
}

.headline-line-inner em::after {
    content: "";
    position: absolute;
    bottom: 3px;
    left: 0;
    right: 0;
    height: 3px;
    border-radius: 2px;
    background: var(--mid);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.7s var(--ease-expo) 0.55s;
}

.headline-line-inner.visible em::after {
    transform: scaleX(1);
}

.exigency-intro {
    font-size: 17px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.72;
    opacity: 0;
    transform: translateY(20px);
    transition:
        opacity 0.8s var(--ease-expo) 0.3s,
        transform 0.8s var(--ease-expo) 0.3s;
}

.exigency-intro.visible {
    opacity: 1;
    transform: translateY(0);
}

.stat-bars {
    margin-bottom: 72px;
    display: flex;
    flex-direction: column;
}

.stat-bar {
    display: grid;
    grid-template-columns: 260px 1fr 64px;
    gap: 24px;
    align-items: center;
    padding: 22px 0;
    border-bottom: 1px solid var(--bg-3);
    opacity: 0;
    transform: translateX(-28px);
    transition:
        opacity 0.7s var(--ease-expo) var(--bar-delay, 0s),
        transform 0.7s var(--ease-expo) var(--bar-delay, 0s);
}

.stat-bar:first-child {
    border-top: 1px solid var(--bg-3);
}

.stat-bar.visible {
    opacity: 1;
    transform: translateX(0);
}

.stat-bar-label-left {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.4;
    text-align: right;
}

.stat-bar-track {
    height: 10px;
    background: var(--bg-3);
    border-radius: 10px;
    overflow: hidden;
}

.stat-bar-fill {
    height: 100%;
    border-radius: 10px;
    width: 0%;
    transition: width 1.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.stat-bar-fill--1 {
    background: var(--mid);
}

.stat-bar-fill--2 {
    background: var(--purple);
}

.stat-bar-fill--3 {
    background: var(--coral);
}

.stat-bar-fill--4 {
    background: var(--green);
}

.stat-bar-pct {
    font-size: 20px;
    font-weight: 600;
    color: var(--deep);
    text-align: right;
    white-space: nowrap;
}

.exigency-footer {
    border-top: 1.5px solid var(--bg-3);
    padding-top: 48px;
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
}

.about {
    background: var(--bg-2);
}

.about-band {
    position: absolute;
    top: 0;
    right: 0;
    width: 42%;
    height: 100%;
    background: var(--bg-3);
    clip-path: polygon(12% 0, 100% 0, 100% 100%, 0% 100%);
    z-index: 0;
}

.about .section-inner {
    position: relative;
    z-index: 1;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text {
    padding-right: 10px;
}

.about-bar {
    display: block;
    width: 52px;
    height: 4px;
    border-radius: 2px;
    margin-bottom: 20px;
    background: var(--mid);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-32px);
    transition:
        opacity 0.85s var(--ease-expo),
        transform 0.85s var(--ease-expo);
    transition-delay: var(--delay, 0s);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(32px);
    transition:
        opacity 0.85s var(--ease-expo),
        transform 0.85s var(--ease-expo);
    transition-delay: var(--delay, 0.1s);
}

.slide-in-left.is-visible,
.slide-in-right.is-visible {
    opacity: 1;
    transform: translateX(0);
}

.about-visual-card {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    border-radius: 24px;
    background: var(--bg);
    box-shadow:
        0 8px 40px rgba(0, 26, 51, 0.1),
        0 2px 8px rgba(0, 26, 51, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 82, 212, 0.08);
    overflow: visible;
}

.avc-pill {
    z-index: 1;
}

.avc-center {
    z-index: 1;
    position: relative;
}

.avc-center {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 8px;
}

.avc-img-wrap {
    position: absolute;
    inset: 0;
    border-radius: 24px;
    overflow: hidden;
    z-index: 0;
}

.avc-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 30% center;
}

.avc-logo-ring {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: var(--mid);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 32px var(--mid-glow);
}

.avc-logo-ring span {
    font-size: 28px;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.05em;
}

.asl-art-label {
    position: absolute;
    bottom: 16px;
    font-size: 11px;
    color: var(--text-faint);
    font-style: italic;
}

.avc-pill {
    position: absolute;
    font-size: 12px;
    font-weight: 600;
    padding: 7px 14px;
    border-radius: 100px;
    background: var(--bg);
    color: var(--deep);
    box-shadow: 0 4px 16px rgba(0, 26, 51, 0.12);
    white-space: nowrap;
    animation: pillFloat 3.6s ease-in-out infinite;
}

.avc-pill--1 {
    top: 10%;
    left: -5%;
    animation-delay: 0s;
    background: #e6f0ff;
    color: var(--mid);
}

.avc-pill--2 {
    top: 10%;
    right: -8%;
    animation-delay: 0.8s;
    background: #eee5fa;
    color: var(--purple);
}

.avc-pill--3 {
    bottom: 22%;
    left: -10%;
    animation-delay: 1.6s;
    background: #ffeee4;
    color: var(--coral);
}

.avc-pill--4 {
    bottom: 10%;
    right: -5%;
    animation-delay: 2.4s;
    background: #e4f8ee;
    color: var(--green);
}

@keyframes pillFloat {
    0%,
    100% {
        transform: translateY(0) scale(1);
    }
    45% {
        transform: translateY(-10px) scale(1.04);
    }
    55% {
        transform: translateY(-10px) scale(1.04);
    }
}

.mission {
    background: var(--bg);
}

.mv-row {
    display: grid;
    grid-template-columns: 80px 1fr auto;
    gap: 40px;
    align-items: start;
    padding: 50px 0;
}

.mv-row--flip {
    border-top: 1px solid var(--bg-3);
}

.mv-numeral {
    font-size: 80px;
    font-weight: 600;
    line-height: 1;
    color: var(--bg-3);
    letter-spacing: -0.04em;
    transition: color 0.4s;
}

.mv-row:hover .mv-numeral {
    color: var(--mid-10);
}

.mv-content h3 {
    font-size: 26px;
    color: var(--mid);
    margin-bottom: 14px;
}

.mv-content p {
    max-width: 440px;
}

.mv-image {
    width: 220px;
    height: 220px;
    flex-shrink: 0;
    border-radius: 16px;
    overflow: hidden;
    background: var(--bg-3);
    border: 1.5px solid var(--bg-3);
    position: relative;
    transition:
        box-shadow 0.35s,
        border-color 0.35s,
        transform 0.35s var(--ease-spring);
}

.mv-image:hover {
    box-shadow: 0 12px 40px rgba(0, 26, 51, 0.1);
    border-color: var(--mid-18);
    transform: translateY(-4px);
}

.mv-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.img-placeholder-label {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-faint);
    background: var(--bg-3);
    text-align: center;
    padding: 12px;
}

.mv-divider {
    height: 1px;
    background: var(--bg-3);
}

.products {
    background: var(--bg-2);
}

.products-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 44px;
    flex-wrap: wrap;
    gap: 16px;
}

.products-header h2 {
    margin-bottom: 0;
}

.bento-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    grid-template-rows: auto auto;
    gap: 20px;
}

.bento-card {
    border-radius: 18px;
    overflow: hidden;
    background: var(--bg);
    border: 1px solid rgba(0, 26, 51, 0.07);
    box-shadow: 0 2px 16px rgba(0, 26, 51, 0.06);
    display: flex;
    flex-direction: column;
    position: relative;
    transition:
        transform 0.55s var(--ease-expo),
        box-shadow 0.55s;
    will-change: transform;
}



.bento-card--featured {
    grid-row: span 2;
}

.bento-img {
    width: 100%;
    aspect-ratio: 16 / 9;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.bento-card--featured .bento-img {
    aspect-ratio: 4 / 3;
}

.bento-img--blue {
    background: #d5e2ff;
}

.bento-img--purple {
    background: #e2d4f5;
}

.bento-img--coral {
    background: #ffdac8;
}

.bento-img-label {
    font-size: 11px;
    color: var(--text-faint);
    font-style: italic;
    position: relative;
    z-index: 1;
}


.bento-body {
    padding: 26px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.bento-tag {
    display: inline-block;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 4px;
    margin-bottom: 12px;
}

.bento-tag--blue {
    color: var(--mid);
    background: var(--mid-10);
}

.bento-tag--purple {
    color: var(--purple);
    background: var(--pu-10);
}

.bento-tag--coral {
    color: var(--coral);
    background: var(--co-10);
}

.bento-body h3 {
    font-size: 20px;
    color: var(--deep);
    margin-bottom: 10px;
}

.bento-body p {
    font-size: 14px;
    color: var(--text-muted);
    flex: 1;
    margin-bottom: 16px;
}

.bento-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    font-weight: 600;
    color: var(--mid);
    text-decoration: none;
    transition:
        gap 0.25s var(--ease-expo),
        color 0.2s;
}

.bento-link:hover {
    gap: 10px;
    color: var(--deep);
}

.updates-section {
    background: var(--bg);
}

.updates-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 10px;
    flex-wrap: wrap;
    gap: 16px;
}

.updates-header h2 {
    margin-bottom: 0;
}

.updates-light {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    padding: 10px 0 60px;
    box-sizing: border-box;
    background: var(--bg);
}

.updates-viewport {
    width: 100%;
    overflow: hidden;
    padding: 0 32px;
    position: relative;
    display: flex;
    align-items: center;
    box-sizing: border-box;
}

.nav-btn {
    width: 44px;
    height: 44px;
    background: var(--bg);
    border: 1.5px solid var(--mid-18);
    color: var(--mid);
    font-weight: 700;
    border-radius: 10px;
    cursor: pointer;
    z-index: 80;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    box-sizing: border-box;
    pointer-events: auto;
    transition:
        background 0.25s,
        box-shadow 0.25s,
        transform 0.25s;
    box-shadow: 0 2px 8px rgba(0, 26, 51, 0.08);
}

.nav-btn:hover {
    background: var(--mid);
    color: #fff;
    box-shadow: 0 4px 16px var(--mid-glow);
    transform: translateY(-52%);
}

.nav-btn.left {
    left: 16px;
}

.nav-btn.right {
    right: 16px;
}

.updates-mask {
    overflow: hidden;
    flex: 1;
    position: relative;
    box-sizing: border-box;
}

.updates-track {
    display: flex;
    gap: 20px;
    align-items: center;
    transition: transform 600ms cubic-bezier(0.22, 0.9, 0.23, 1);
    will-change: transform;
    padding: 12px 0 50px;
    box-sizing: border-box;
}

.update-card {
    flex: 0 0 360px;
    height: 440px;
    background: var(--bg);
    border-radius: 18px;
    border: 1px solid rgba(0, 26, 51, 0.08);
    box-shadow: 0 2px 16px rgba(0, 26, 51, 0.07);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
    box-sizing: border-box;
    transition:
        transform 350ms var(--ease-expo),
        box-shadow 350ms;
}

.update-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0, 26, 51, 0.12);
}

.update-card .thumb {
    height: 50%;
    display: block;
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid rgba(0, 26, 51, 0.06);
    background: var(--bg-2);
    border-radius: 18px 18px 0 0;
}

.update-card .thumb img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.update-card .meta {
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.update-card h3 {
    margin: 0;
    font-size: 17px;
    color: var(--deep);
}

.update-card p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-muted);
    flex: 1;
}

.update-card time {
    font-size: 12px;
    color: var(--text-faint);
}

.importance-1 {
    border-left: 4px solid var(--sky);
}

.importance-2 {
    border-left: 4px solid var(--mid);
}

.importance-3 {
    border-left: 4px solid var(--purple);
}

.update-card.center {
    transform: scale(1.025) translateY(-12px);
    z-index: 60;
    box-shadow: 0 28px 64px rgba(0, 26, 51, 0.18);
    animation: centerPulse 3s ease-in-out infinite;
}

@keyframes centerPulse {
    0%,
    100% {
        box-shadow: 0 28px 64px rgba(0, 26, 51, 0.18);
    }
    50% {
        box-shadow: 0 32px 72px rgba(0, 82, 212, 0.22);
    }
}

.side-shadow,
.left-shadow,
.right-shadow {
    display: none !important;
}

@media (max-width: 1200px) {
    .update-card {
        flex: 0 0 calc((100vw - 3 * 20px - 64px) / 3);
        height: 420px;
    }
}

@media (max-width: 900px) {
    .update-card {
        flex: 0 0 300px;
        height: 400px;
    }
}

@media (max-width: 700px) {
    .update-card {
        flex: 0 0 90vw;
        height: 400px;
    }
    .updates-viewport {
        padding: 0 12px;
    }
    .nav-btn {
        display: none;
    }
}

.team {
    position: relative;
    background: #050d1a;
    overflow: hidden;
}

.team-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(90px);
    opacity: 0.6;
}

.team-orb--1 {
    width: 700px;
    height: 700px;
    background: rgba(0, 82, 212, 0.35);
    top: -220px;
    left: -160px;
}

.team-orb--2 {
    width: 600px;
    height: 600px;
    background: rgba(123, 47, 190, 0.32);
    top: 35%;
    right: -140px;
}

.team-orb--3 {
    width: 500px;
    height: 500px;
    background: rgba(255, 107, 53, 0.25);
    bottom: -120px;
    left: 32%;
}

.team-bg-noise {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-size: 200px 200px;
}

.team .section-inner {
    position: relative;
    z-index: 1;
    max-width: 1380px;
    padding-bottom: 140px;
}

.team-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 64px;
    flex-wrap: wrap;
    gap: 16px;
}

.team-header h2 {
    margin-bottom: 0;
    color: #fff;
}

.team-header h2 em {
    color: var(--highlight);
}

.team-header .section-label {
    color: rgba(0, 212, 255, 0.7);
}

.btn-outline-light {
    display: inline-block;
    padding: 10px 22px;
    border-radius: 8px;
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    white-space: nowrap;
    align-self: center;
    transition:
        background 0.25s,
        color 0.25s,
        transform 0.3s var(--ease-spring),
        border-color 0.25s;
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

.founders-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    align-items: start;
}

.founder-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    background: #0c1628;
    border: 1px solid rgba(255, 255, 255, 0.07);
    box-shadow:
        0 8px 40px rgba(0, 0, 0, 0.55),
        0 1px 0 rgba(255, 255, 255, 0.06) inset;
}

.founder-card--blue {
    opacity: 0;
    transform: translateX(-90px);
    transition: opacity 0.5s var(--ease-expo), transform 0.5s var(--ease-expo);
}

.founder-card--purple {
    opacity: 0;
    transform: translateY(90px);
    transition: opacity 0.5s var(--ease-expo) 0.08s, transform 0.5s var(--ease-expo) 0.08s;
}

.founder-card--coral {
    opacity: 0;
    transform: translateX(90px);
    transition: opacity 0.5s var(--ease-expo) 0.05s, transform 0.5s var(--ease-expo) 0.05s;
}

.founder-card--blue.is-visible {
    opacity: 1;
    transform: translateX(0);
}

.founder-card--purple.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.founder-card--coral.is-visible {
    opacity: 1;
    transform: translateX(0);
}


.founder-card--purple .founder-photo img {
    object-position: 70% center;
}


.founder-photo {
    position: relative;
    width: 100%;
    height: 420px;
    overflow: hidden;
    flex-shrink: 0;
}

.founder-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.founder-photo-overlay {
    display: none;
}

.founder-photo-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0f1c33;
    z-index: -1;
}

.founder-photo img[src=""],
.founder-photo img:not([src]) {
    display: none;
}

.founder-photo img[src=""] ~ .founder-photo-placeholder,
.founder-photo img:not([src]) ~ .founder-photo-placeholder {
    z-index: 1;
}

.founder-photo-placeholder span {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.15);
}

.founder-accent-line {
    height: 4px;
    width: 100%;
    flex-shrink: 0;
}

.founder-card--blue .founder-accent-line {
    background: var(--mid);
}

.founder-card--purple .founder-accent-line {
    background: var(--purple);
}

.founder-card--coral .founder-accent-line {
    background: var(--coral);
}

.founder-body {
    display: flex;
    flex-direction: column;
    padding: 34px 38px 40px;
    flex: 1;
}

.founder-meta-row {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}

.founder-index-num {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.18em;
    color: rgba(255, 255, 255, 0.2);
}

.founder-role-badge {
    display: inline-flex;
    align-items: center;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 100px;
    width: fit-content;
}

.founder-role-badge--blue {
    color: #7eb8ff;
    background: rgba(0, 82, 212, 0.2);
    border: 1px solid rgba(0, 82, 212, 0.4);
}

.founder-role-badge--purple {
    color: #c4a0ff;
    background: rgba(123, 47, 190, 0.2);
    border: 1px solid rgba(123, 47, 190, 0.4);
}

.founder-role-badge--coral {
    color: #ffb396;
    background: rgba(255, 107, 53, 0.18);
    border: 1px solid rgba(255, 107, 53, 0.38);
}

.founder-name {
    font-size: 34px;
    font-weight: 600;
    color: #fff;
    margin: 0 0 18px;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.founder-desc {
    font-size: 15px;
    line-height: 1.84;
    color: rgba(255, 255, 255, 0.52);
    margin: 0 0 28px;
    flex: 1;
}

.founder-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.founder-tag {
    font-size: 12px;
    font-weight: 600;
    padding: 6px 15px;
    border-radius: 100px;
    letter-spacing: 0.04em;
    transition:
        transform 0.2s var(--ease-spring),
        opacity 0.2s;
}

.founder-tag:hover {
    transform: scale(1.06);
    opacity: 1 !important;
}

.founder-tag--blue {
    color: #7eb8ff;
    background: rgba(0, 82, 212, 0.18);
    border: 1px solid rgba(0, 82, 212, 0.32);
    opacity: 0.85;
}

.founder-tag--purple {
    color: #c4a0ff;
    background: rgba(123, 47, 190, 0.18);
    border: 1px solid rgba(123, 47, 190, 0.32);
    opacity: 0.85;
}

.founder-tag--coral {
    color: #ffb396;
    background: rgba(255, 107, 53, 0.15);
    border: 1px solid rgba(255, 107, 53, 0.3);
    opacity: 0.85;
}

.pop-in {
    opacity: 0;
    transform: scale(0.88) translateY(24px);
    transition:
        opacity 0.7s var(--ease-expo),
        transform 0.7s var(--ease-expo);
    transition-delay: 0s;
}

.pop-in.is-visible {
    opacity: 1;
    transform: scale(1) translateY(0);
    transition-delay: var(--delay, 0s);
}

.reveal-item {
    opacity: 0;
    transform: translateY(44px) scale(0.98);
    transition:
        opacity 0.9s var(--ease-expo),
        transform 0.9s var(--ease-spring);
    transition-delay: 0s;
}

.reveal-item.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition-delay: var(--delay, 0s);
}

.team .reveal-item,
.team .reveal-item.is-visible,
.cta-banner .reveal-item,
.cta-banner .reveal-item.is-visible {
    opacity: 1;
    transform: none;
    transition: none;
}

.founder-card--blue .founder-photo img {
    object-position: 55% 80%;
    transform: scale(1.6);
    transform-origin: 95% 90%;
}

.cta-banner {
    background: var(--bg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-banner::before,
.cta-banner::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(70px);
    opacity: 0;
    transition: opacity 1.2s var(--ease-expo);
}

.cta-banner::before {
    width: 480px;
    height: 480px;
    background: rgba(0, 82, 212, 0.12);
    top: -120px;
    left: -80px;
    animation: orbDriftL 12s ease-in-out infinite;
}

.cta-banner::after {
    width: 400px;
    height: 400px;
    background: rgba(0, 212, 255, 0.1);
    bottom: -100px;
    right: -60px;
    animation: orbDriftR 14s ease-in-out infinite 2s;
}

.cta-banner.orbs-active::before,
.cta-banner.orbs-active::after {
    opacity: 1;
}

@keyframes orbDriftL {
    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(40px, -30px) scale(1.08);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.95);
    }
}

@keyframes orbDriftR {
    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }
    40% {
        transform: translate(-30px, 20px) scale(1.06);
    }
    70% {
        transform: translate(20px, -10px) scale(0.96);
    }
}

.cta-inner {
    max-width: 720px;
    margin: 0 auto;
    padding: 120px 40px;
    position: relative;
    z-index: 1;
}

.cta-inner.animate-in .cta-headline {
    animation: ctaHeadIn 1s var(--ease-expo) 0.05s both;
}

.cta-inner.animate-in p {
    animation: ctaHeadIn 1s var(--ease-expo) 0.2s both;
}

.cta-inner.animate-in .cta-actions {
    animation: ctaHeadIn 1s var(--ease-spring) 0.35s both;
}

.cta-inner.animate-in .section-label {
    animation: ctaLabelIn 0.8s var(--ease-expo) 0s both;
}

@keyframes ctaHeadIn {
    from {
        opacity: 0;
        transform: translateY(36px) scale(0.97);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes ctaLabelIn {
    from {
        opacity: 0;
        transform: translateY(16px);
        letter-spacing: 0.4em;
    }
    to {
        opacity: 1;
        transform: translateY(0);
        letter-spacing: 0.22em;
    }
}

.cta-actions .btn-primary,
.cta-actions .btn-outline {
    position: relative;
    overflow: hidden;
}

.cta-btn-ripple {
    position: absolute;
    border-radius: 50%;
    transform: scale(0);
    background: rgba(255, 255, 255, 0.3);
    animation: ripple 0.55s ease-out forwards;
    pointer-events: none;
}

@keyframes ripple {
    to {
        transform: scale(3.5);
        opacity: 0;
    }
}

.cta-headline {
    font-size: clamp(34px, 5vw, 58px);
    font-weight: 600;
    line-height: 1.08;
    color: var(--deep);
    margin-bottom: 16px;
}

.cta-gradient-text {
    color: var(--mid);
}

.cta-banner p {
    font-size: 17px;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.cta-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-banner .btn-outline {
    color: var(--mid);
    border-color: var(--mid-18);
}

.site-footer {
    background: var(--deep);
    padding: 32px 40px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.site-footer p {
    color: rgba(255, 255, 255, 0.35);
    font-size: 13px;
    margin: 0;
}

@media (max-width: 1200px) {
    .founder-name {
        font-size: 28px;
    }
    .founder-photo {
        height: 360px;
    }
    .founder-body {
        padding: 28px 30px 34px;
    }
}

@media (max-width: 960px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .about-band {
        display: none;
    }
    .mv-row {
        grid-template-columns: 60px 1fr;
    }
    .mv-callout {
        display: none;
    }
    .bento-grid {
        grid-template-columns: 1fr;
    }
    .bento-card--featured {
        grid-row: auto;
    }
    .founders-grid {
        grid-template-columns: 1fr;
        max-width: 540px;
        margin: 0 auto;
    }
    .founder-photo {
        height: 400px;
    }
    .founder-name {
        font-size: 32px;
    }
    .founder-card--blue,
    .founder-card--coral {
        transform: translateY(70px);
    }
    .founder-card--blue.is-visible,
    .founder-card--coral.is-visible {
        transform: translateY(0);
    }
}

@media (max-width: 680px) {
    .section-inner {
        padding: 72px 24px;
    }
    .exigency-inner {
        padding: 72px 24px 96px;
    }
    .stat-bar {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 20px 0;
    }
    .stat-bar-num {
        font-size: 34px;
    }
    .mv-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .mv-numeral {
        font-size: 48px;
    }
    .founders-grid {
        max-width: 100%;
    }
    .founder-photo {
        height: 300px;
    }
    .founder-name {
        font-size: 26px;
    }
    .founder-body {
        padding: 24px 24px 30px;
    }
}

#hs-loader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: #050d1a;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
    transition: opacity 0.55s ease, visibility 0.55s ease;
}

#hs-loader.hs-loader--done {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.hs-loader-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(70px);
}

.hs-loader-orb--1 {
    width: 500px;
    height: 500px;
    background: rgba(0, 82, 212, 0.35);
    top: -160px;
    left: -100px;
}

.hs-loader-orb--2 {
    width: 400px;
    height: 400px;
    background: rgba(0, 212, 255, 0.25);
    bottom: -120px;
    right: -80px;
}

.hs-loader-logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--mid);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-main);
    font-size: 26px;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.05em;
    position: relative;
    z-index: 1;
    animation: loaderLogoPulse 2s ease-in-out infinite;
}

@keyframes loaderLogoPulse {
    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(0, 82, 212, 0.5);
    }
    50% {
        box-shadow: 0 0 0 18px rgba(0, 82, 212, 0);
    }
}

.hs-loader-bar-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    position: relative;
    z-index: 1;
}

.hs-loader-track {
    width: 180px;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.hs-loader-fill {
    height: 100%;
    border-radius: 10px;
    background: var(--mid);
    width: 0%;
    transition: width 0.3s ease;
}

.hs-loader-label {
    font-family: var(--font-main);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
}