:root {
    --font-heading: 'Sora', sans-serif;
    --font-body: 'Public Sans', sans-serif;
    --font-tech: 'IBM Plex Mono', monospace;
    --grain-texture: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 180 180'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.1' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23g)' opacity='0.46'/%3E%3C/svg%3E");
    --color-bg: #030507;
    --color-bg-elevated: #070c12;
    --color-surface: #101821;
    --color-surface-strong: #17212c;
    --color-surface-soft: rgba(13, 19, 27, 0.82);
    --color-border: rgba(182, 197, 214, 0.14);
    --color-border-strong: rgba(214, 227, 243, 0.28);
    --color-text: #f4f6f8;
    --color-text-muted: #a9b6c5;
    --color-text-subtle: #7d8998;
    --color-accent: #d9e3f0;
    --color-accent-strong: #f9fbfd;
    --shadow-card: 0 24px 60px rgba(0, 0, 0, 0.32);
    --shadow-soft: 0 18px 48px rgba(2, 6, 12, 0.24);
    --radius-control: 0.78rem;
    --radius-pill: 0.62rem;
    --radius-card: 0.92rem;
    --radius-panel: 1.04rem;
    --radius-frame: 1.18rem;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 6.75rem;
    background: var(--color-bg);
}

body {
    position: relative;
    min-height: 100vh;
    margin: 0;
    overflow-x: hidden;
    background:
        radial-gradient(ellipse 56% 46% at 18% 42%, rgba(232, 236, 242, 0.24), rgba(173, 185, 201, 0.11) 24%, rgba(64, 78, 96, 0.08) 42%, transparent 68%),
        radial-gradient(ellipse 42% 28% at 56% 14%, rgba(36, 53, 74, 0.18), transparent 70%),
        radial-gradient(ellipse 28% 24% at 88% 22%, rgba(28, 41, 58, 0.12), transparent 78%),
        radial-gradient(ellipse 34% 26% at 76% 84%, rgba(18, 28, 39, 0.12), transparent 82%),
        linear-gradient(160deg, #05080c 0%, #020406 34%, #010203 68%, #070b10 100%);
    color: var(--color-text);
    font-family: var(--font-body);
    line-height: 1.6;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    color-scheme: dark;
}

body::before,
body::after {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
}

body::before {
    z-index: -2;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.018), transparent 16%),
        repeating-linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.014) 0,
            rgba(255, 255, 255, 0.014) 1px,
            transparent 1px,
            transparent 56px
        ),
        repeating-linear-gradient(
            0deg,
            rgba(255, 255, 255, 0.01) 0,
            rgba(255, 255, 255, 0.01) 1px,
            transparent 1px,
            transparent 56px
        );
    opacity: 0.12;
}

body::after {
    z-index: -1;
    background:
        var(--grain-texture),
        radial-gradient(ellipse 54% 42% at 22% 40%, rgba(246, 248, 250, 0.12), rgba(147, 161, 179, 0.04) 34%, transparent 62%),
        radial-gradient(circle at 48% 18%, rgba(74, 92, 114, 0.08), transparent 30%),
        radial-gradient(circle at center, transparent 0%, rgba(3, 5, 8, 0.34) 52%, rgba(1, 2, 4, 0.9) 100%);
    background-size: 180px 180px, auto, auto;
    opacity: 0.96;
}

body:not(.loaded) {
    cursor: progress;
}

body.loaded {
    cursor: default;
}

body.menu-open {
    overflow: hidden;
}

.rounded-md {
    border-radius: 0.36rem !important;
}

.rounded-lg {
    border-radius: calc(var(--radius-card) - 0.16rem) !important;
}

.rounded-xl {
    border-radius: var(--radius-card) !important;
}

.rounded-2xl {
    border-radius: var(--radius-panel) !important;
}

.rounded-full {
    border-radius: var(--radius-pill) !important;
}

::selection {
    background: rgba(217, 227, 240, 0.24);
    color: var(--color-text);
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #081019;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, rgba(169, 182, 197, 0.5), rgba(88, 101, 116, 0.72));
    border-radius: 999px;
    border: 2px solid #081019;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, rgba(217, 227, 240, 0.62), rgba(110, 124, 140, 0.84));
}

main {
    opacity: 0;
    transition: opacity 0.45s ease-in-out;
}

main.loaded {
    opacity: 1;
}

main section {
    position: relative;
}

main section[id] {
    scroll-margin-top: 6.75rem;
}

#three-canvas {
    position: fixed;
    inset: 0;
    z-index: -3;
    width: 100%;
    height: 100%;
    opacity: 0.58;
    transition: opacity 0.5s ease-in-out;
}

#loader {
    background:
        radial-gradient(circle at top, rgba(160, 181, 205, 0.12), transparent 32%),
        linear-gradient(180deg, rgba(9, 15, 22, 0.98), rgba(6, 9, 13, 0.99));
    transition: opacity 0.45s ease-in-out, visibility 0.45s ease-in-out;
}

#loader.hidden {
    opacity: 0;
    visibility: hidden;
}

#loader::after {
    content: '';
    position: absolute;
    inset: auto 50% 12%;
    width: min(52vw, 460px);
    height: 140px;
    transform: translateX(-50%);
    background: radial-gradient(circle, rgba(217, 227, 240, 0.12) 0%, rgba(217, 227, 240, 0) 72%);
    filter: blur(24px);
    pointer-events: none;
}

#loader-text-container {
    position: relative;
    z-index: 1;
    max-width: 32rem;
    padding-inline: 1.5rem;
}

#loader-greeting {
    transition: opacity 0.3s ease-in-out;
    letter-spacing: -0.08em;
}

.hole {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
}

.hole i {
    position: absolute;
    width: 80px;
    height: 80px;
    border: 1px solid rgba(217, 227, 240, 0.34);
    border-radius: 999px;
    opacity: 0;
    animation: loader-ring 2.8s linear infinite;
}

.hole i:nth-child(1) { animation-delay: 0.25s; }
.hole i:nth-child(2) { animation-delay: 0.5s; }
.hole i:nth-child(3) { animation-delay: 0.75s; }
.hole i:nth-child(4) { animation-delay: 1s; }
.hole i:nth-child(5) { animation-delay: 1.25s; }
.hole i:nth-child(6) { animation-delay: 1.5s; }
.hole i:nth-child(7) { animation-delay: 1.75s; }
.hole i:nth-child(8) { animation-delay: 2s; }
.hole i:nth-child(9) { animation-delay: 2.25s; }
.hole i:nth-child(10) { animation-delay: 2.5s; }

@keyframes loader-ring {
    0% {
        transform: scale(0.48);
        opacity: 0;
    }
    35% {
        opacity: 0.42;
    }
    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

#shortcut-hint {
    top: 5.75rem;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.65rem 1rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-pill);
    background: rgba(8, 12, 18, 0.72);
    color: var(--color-text-muted) !important;
    font-family: var(--font-tech);
    font-size: 0.68rem;
    letter-spacing: 0.08em;
    white-space: nowrap;
    max-width: calc(100vw - 3rem);
    backdrop-filter: blur(18px);
    box-shadow: var(--shadow-soft);
}

h1,
h2,
h3,
h4,
h5,
h6,
.font-heading {
    font-family: var(--font-heading) !important;
    letter-spacing: -0.05em;
    line-height: 1.02;
    text-wrap: balance;
}

.font-body {
    font-family: var(--font-body) !important;
}

a,
button,
input,
textarea,
select,
kbd,
.available-pill,
.section-kicker,
.nav-link {
    font-family: var(--font-body);
}

kbd {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 1.3rem;
    padding: 0.12rem 0.38rem;
    border: 1px solid rgba(217, 227, 240, 0.18);
    border-radius: 0.3rem;
    background: rgba(255, 255, 255, 0.04);
    color: var(--color-accent);
    font-family: var(--font-tech);
    font-size: 0.72rem;
}

.section-kicker {
    color: var(--color-text-subtle) !important;
    font-family: var(--font-tech);
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.cover-image-fade {
    -webkit-mask-image: linear-gradient(to bottom, black 88%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 88%, transparent 100%);
}

.animate-on-scroll {
    opacity: 0;
    will-change: transform, opacity;
    transition:
        opacity 0.8s cubic-bezier(0.165, 0.84, 0.44, 1),
        transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.animate-on-scroll.slide-in-bottom {
    transform: translateY(42px);
}

.animate-on-scroll.slide-in-left {
    transform: translateX(-42px);
}

.animate-on-scroll.slide-in-right {
    transform: translateX(42px);
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateX(0) translateY(0);
}

#main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid transparent;
    background: linear-gradient(180deg, rgba(6, 9, 13, 0.82), rgba(6, 9, 13, 0.38) 70%, transparent);
    transition:
        background-color 0.3s ease-in-out,
        border-color 0.3s ease-in-out,
        box-shadow 0.3s ease-in-out,
        backdrop-filter 0.3s ease-in-out;
}

#main-header.scrolled {
    border-bottom-color: var(--color-border);
    background: rgba(7, 11, 16, 0.72);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

#main-header .container,
main .container,
footer .container {
    max-width: 80rem !important;
}

#main-header .container {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 2rem;
    align-items: center;
}

.brand-link {
    display: inline-flex;
    align-items: center;
    min-width: 0;
    color: var(--color-text-subtle) !important;
    text-decoration: none;
    transition: color 0.25s ease;
}

.brand-link:hover {
    color: var(--color-text) !important;
}

.desktop-brand {
    white-space: nowrap;
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.35em;
    text-transform: uppercase;
}

.mobile-brand {
    display: none;
}

.mobile-brand-avatar-frame {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.35rem;
    height: 3.35rem;
    padding: 0.16rem;
    border: 1px solid rgba(214, 227, 243, 0.22);
    border-radius: 999px;
    background:
        radial-gradient(circle at top right, rgba(217, 227, 240, 0.18), rgba(217, 227, 240, 0) 62%),
        rgba(12, 18, 25, 0.86);
    box-shadow: 0 18px 28px rgba(0, 0, 0, 0.2);
}

.mobile-brand-avatar {
    width: 100%;
    height: 100%;
    border-radius: 999px;
    object-fit: cover;
    object-position: center top;
}

.mobile-brand-copy {
    display: flex;
    flex-direction: column;
    min-width: 0;
    gap: 0.2rem;
}

.mobile-brand-name {
    overflow: hidden;
    color: var(--color-text);
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.mobile-brand-role {
    overflow: hidden;
    color: var(--color-text-subtle);
    font-family: var(--font-tech);
    font-size: 0.62rem;
    letter-spacing: 0.22em;
    text-overflow: ellipsis;
    text-transform: uppercase;
    white-space: nowrap;
}

#main-header nav {
    justify-self: center;
}

#progress-bar {
    height: 2px;
    background: linear-gradient(90deg, rgba(217, 227, 240, 0.18), rgba(217, 227, 240, 0.85), rgba(217, 227, 240, 0.18));
    box-shadow: 0 0 18px rgba(217, 227, 240, 0.2);
}

.nav-link {
    position: relative;
    color: var(--color-text-subtle) !important;
    font-family: var(--font-tech);
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    transition: color 0.25s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -0.55rem;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(217, 227, 240, 0.9), transparent);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.25s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-text) !important;
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
}

#open-menu-btn,
#close-menu-btn {
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-control);
    background: rgba(8, 12, 18, 0.5);
    color: var(--color-text);
    backdrop-filter: blur(14px);
}

#close-menu-btn {
    display: inline-flex;
}

#open-menu-btn {
    display: none;
    justify-self: end;
}

#mobile-menu {
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
    background:
        radial-gradient(circle at top, rgba(160, 181, 205, 0.08), transparent 28%),
        rgba(6, 9, 13, 0.94);
    z-index: 2000;
}

#mobile-menu.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.mobile-menu-panel {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    width: min(100%, 27rem);
    padding: 1.2rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-panel);
    background:
        radial-gradient(circle at top right, rgba(217, 227, 240, 0.1), transparent 36%),
        linear-gradient(180deg, rgba(12, 18, 25, 0.96), rgba(7, 11, 16, 0.92));
    box-shadow: var(--shadow-card);
}

.mobile-menu-panel::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 18%),
        radial-gradient(circle at top center, rgba(217, 227, 240, 0.1), transparent 44%);
    opacity: 0.72;
    pointer-events: none;
    z-index: -1;
}

.mobile-menu-handle {
    width: 3.15rem;
    height: 0.26rem;
    margin: 0 auto 0.95rem;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.08), rgba(217, 227, 240, 0.58), rgba(255, 255, 255, 0.08));
    box-shadow: 0 0 14px rgba(217, 227, 240, 0.08);
}

.mobile-menu-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
}

.mobile-menu-profile {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    min-width: 0;
}

.mobile-menu-profile-avatar-frame {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    padding: 0.14rem;
    border: 1px solid rgba(214, 227, 243, 0.18);
    border-radius: 999px;
    background:
        radial-gradient(circle at top right, rgba(217, 227, 240, 0.16), rgba(217, 227, 240, 0) 62%),
        rgba(11, 17, 23, 0.86);
    box-shadow: 0 14px 24px rgba(0, 0, 0, 0.2);
}

.mobile-menu-profile-avatar {
    width: 100%;
    height: 100%;
    border-radius: 999px;
    object-fit: cover;
    object-position: center top;
}

.mobile-menu-profile-copy {
    display: flex;
    flex-direction: column;
    min-width: 0;
    gap: 0.18rem;
}

.mobile-menu-label {
    margin: 0;
    color: var(--color-text);
    font-family: var(--font-heading);
    font-size: 1.02rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    text-transform: none;
    white-space: nowrap;
}

.mobile-menu-subtitle {
    color: var(--color-text-subtle);
    font-family: var(--font-tech);
    font-size: 0.62rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    white-space: nowrap;
}

.mobile-menu-intro {
    margin: 1rem 0 0;
    max-width: none;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(182, 197, 214, 0.08);
    color: var(--color-text-muted);
    font-size: 0.96rem;
    line-height: 1.55;
}

.mobile-menu-group {
    display: grid;
    grid-template-rows: auto 1fr;
    min-height: 0;
    margin-top: 1rem;
}

.mobile-menu-group-label {
    margin: 0 0 0.7rem;
    color: var(--color-text-subtle);
    font-family: var(--font-tech);
    font-size: 0.64rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.mobile-menu-nav {
    margin-top: 0;
    gap: 0.7rem;
}

.mobile-menu-nav .nav-link,
#mobile-menu nav .nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.92rem 1rem;
    border: 1px solid var(--color-border);
    border-radius: calc(var(--radius-card) - 0.08rem);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.038), rgba(255, 255, 255, 0.018));
    color: var(--color-text) !important;
    font-family: var(--font-heading);
    font-size: clamp(1.02rem, 3.6vw, 1.22rem);
    font-weight: 600;
    letter-spacing: -0.03em;
    text-transform: none;
    transition: border-color 0.25s ease, background-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.mobile-menu-nav .nav-link::after,
#mobile-menu nav .nav-link::after {
    content: '↗';
    position: static;
    width: auto;
    height: auto;
    background: none;
    color: var(--color-text-subtle);
    font-family: var(--font-tech);
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    transform: none;
}

.mobile-menu-actions {
    display: grid;
    gap: 0.75rem;
    margin-top: 1rem;
    padding-top: 0.95rem;
    border-top: 1px solid rgba(182, 197, 214, 0.1);
}

.mobile-menu-actions .btn {
    width: 100%;
    min-height: 3.4rem;
}

.mobile-menu-nav .nav-link:hover,
.mobile-menu-nav .nav-link.active,
#mobile-menu nav .nav-link:hover,
#mobile-menu nav .nav-link.active {
    border-color: rgba(214, 227, 243, 0.2);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
    color: var(--color-text) !important;
    transform: translateY(-1px);
}

.mobile-menu-nav .nav-link:hover::after,
.mobile-menu-nav .nav-link.active::after,
#mobile-menu nav .nav-link:hover::after,
#mobile-menu nav .nav-link.active::after {
    color: var(--color-accent);
    transform: none;
}

#mobile-menu nav .nav-link {
    font-family: var(--font-heading);
    font-size: clamp(1.02rem, 3.6vw, 1.22rem);
    font-weight: 600;
    letter-spacing: -0.03em;
    text-transform: none;
}

#back-to-top {
    position: fixed;
    right: 2rem;
    bottom: 2rem;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.25rem;
    height: 3.25rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-control);
    background: rgba(10, 15, 22, 0.72);
    color: var(--color-accent);
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px);
    backdrop-filter: blur(16px);
    box-shadow: var(--shadow-card);
    transition:
        opacity 0.3s ease,
        visibility 0.3s ease,
        transform 0.3s ease,
        border-color 0.3s ease,
        background-color 0.3s ease;
}

#back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

#back-to-top:hover {
    transform: translateY(-2px);
    border-color: var(--color-border-strong);
    background: rgba(15, 22, 31, 0.9);
}

body.cookie-banner-visible #back-to-top {
    bottom: 12.75rem;
}

.cookie-banner {
    position: fixed;
    right: max(-1.1rem, calc(env(safe-area-inset-right) - 1.1rem));
    bottom: calc(env(safe-area-inset-bottom) + 1rem);
    z-index: 1305;
    width: min(31rem, calc(100vw - 1.25rem));
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate3d(1.35rem, 1rem, 0);
    transition:
        opacity 0.32s ease,
        visibility 0.32s ease,
        transform 0.32s ease;
}

.cookie-banner.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate3d(0, 0, 0);
}

.cookie-banner-panel {
    position: relative;
    overflow: hidden;
    padding: 1.2rem 1.55rem 1.2rem 1.18rem;
    border: 1px solid rgba(218, 228, 240, 0.16);
    clip-path: polygon(0 0, calc(100% - 1.65rem) 0, 100% 1.65rem, 100% 100%, 1.2rem 100%, 0 calc(100% - 1.2rem));
    background:
        linear-gradient(180deg, rgba(17, 25, 35, 0.76), rgba(7, 11, 17, 0.58)),
        radial-gradient(circle at top left, rgba(217, 227, 240, 0.12), transparent 40%);
    backdrop-filter: blur(32px) saturate(170%);
    -webkit-backdrop-filter: blur(32px) saturate(170%);
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.34),
        inset 0 1px 0 rgba(255, 255, 255, 0.09);
}

.cookie-banner-panel::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.08), transparent 20%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 38%);
    pointer-events: none;
}

.cookie-banner-panel::after {
    content: '';
    position: absolute;
    top: -1px;
    right: -1px;
    width: 4.2rem;
    height: 4.2rem;
    border-top: 1px solid rgba(224, 233, 243, 0.28);
    border-right: 1px solid rgba(224, 233, 243, 0.28);
    clip-path: polygon(100% 0, 0 100%, 100% 100%);
    opacity: 0.78;
    pointer-events: none;
}

.cookie-banner-kicker {
    position: relative;
    z-index: 1;
    margin: 0;
    color: var(--color-text-subtle);
    font-family: var(--font-tech);
    font-size: 0.7rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.cookie-banner h2 {
    position: relative;
    z-index: 1;
    max-width: 16ch;
    margin: 0.55rem 0 0;
    color: var(--color-text);
    font-family: var(--font-heading);
    font-size: clamp(1.28rem, 1.1rem + 0.7vw, 1.62rem);
    font-weight: 700;
    letter-spacing: -0.05em;
    line-height: 0.98;
}

.cookie-banner-copy {
    position: relative;
    z-index: 1;
    max-width: 34ch;
    margin: 0.72rem 0 0;
    color: var(--color-text-muted);
    font-size: 0.92rem;
    line-height: 1.55;
}

.cookie-banner-tags {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 0.42rem;
    margin-top: 0.92rem;
}

.cookie-banner-tags span {
    padding: 0.34rem 0.54rem;
    border: 1px solid rgba(192, 206, 221, 0.12);
    background: rgba(255, 255, 255, 0.03);
    color: var(--color-text-subtle);
    font-family: var(--font-tech);
    font-size: 0.58rem;
    letter-spacing: 0.14em;
    line-height: 1;
    text-transform: uppercase;
}

.cookie-banner-actions {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 0.68rem;
    margin-top: 1.05rem;
}

.cookie-btn {
    position: relative;
    min-height: 2.95rem;
    padding: 0.78rem 1rem 0.76rem;
    border: 1px solid rgba(204, 216, 229, 0.14);
    clip-path: polygon(0 0, calc(100% - 0.78rem) 0, 100% 0.78rem, 100% 100%, 0.78rem 100%, 0 calc(100% - 0.78rem));
    background: rgba(10, 15, 22, 0.42);
    color: var(--color-text);
    font-family: var(--font-heading);
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        background-color 0.25s ease,
        box-shadow 0.25s ease,
        color 0.25s ease;
}

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

.cookie-btn-secondary:hover {
    border-color: rgba(224, 233, 243, 0.22);
    background: rgba(15, 22, 31, 0.68);
}

.cookie-btn-primary {
    border-color: rgba(255, 255, 255, 0.38);
    background: linear-gradient(180deg, #ffffff, #eef4fa 58%, #e3ebf4);
    color: #091018;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.14) inset,
        0 18px 36px rgba(255, 255, 255, 0.1);
}

.cookie-btn-primary:hover {
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.18) inset,
        0 22px 42px rgba(255, 255, 255, 0.14);
}

body.menu-open .cookie-banner {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

body.cookie-banner-visible .mobile-action-dock {
    bottom: calc(env(safe-area-inset-bottom) + 7.2rem);
}

.mobile-action-dock {
    position: fixed;
    left: 50%;
    right: auto;
    bottom: calc(env(safe-area-inset-bottom) + 0.85rem);
    z-index: 1200;
    display: none;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.22rem;
    padding: 0.22rem;
    width: min(17.5rem, calc(100vw - 1.75rem));
    border: 1px solid rgba(214, 227, 243, 0.14);
    border-radius: var(--radius-panel);
    background:
        linear-gradient(180deg, rgba(20, 29, 40, 0.44), rgba(9, 13, 19, 0.3));
    backdrop-filter: blur(36px) saturate(185%);
    -webkit-backdrop-filter: blur(36px) saturate(185%);
    box-shadow:
        0 16px 34px rgba(0, 0, 0, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.12),
        inset 0 -1px 0 rgba(255, 255, 255, 0.02);
    transform: translateX(-50%);
}

.mobile-action-dock::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 38%),
        radial-gradient(circle at top center, rgba(217, 227, 240, 0.14), transparent 52%);
    pointer-events: none;
}

body.menu-open .mobile-action-dock {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

body.dock-muted .mobile-action-dock {
    opacity: 0.54;
    border-color: rgba(214, 227, 243, 0.1);
    background: linear-gradient(180deg, rgba(17, 24, 34, 0.32), rgba(8, 11, 16, 0.2));
    transform: translateX(-50%) translateY(0.18rem) scale(0.95);
    box-shadow:
        0 10px 22px rgba(0, 0, 0, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.07),
        inset 0 -1px 0 rgba(255, 255, 255, 0.01);
}

body.dock-muted .mobile-dock-link {
    color: rgba(197, 209, 223, 0.72) !important;
}

body.dock-muted .mobile-dock-icon-wrap,
body.dock-muted .mobile-dock-label {
    color: rgba(197, 209, 223, 0.62);
}

body.dock-muted .mobile-dock-link.active {
    border-color: rgba(214, 227, 243, 0.1);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.02));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.mobile-dock-link {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.16rem;
    min-height: 2.62rem;
    padding: 0.38rem 0.22rem 0.3rem;
    border: 1px solid transparent;
    border-radius: calc(var(--radius-control) - 0.04rem);
    background: transparent;
    color: var(--color-text-muted) !important;
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-align: center;
    text-transform: none;
    transition: border-color 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}

.mobile-dock-link::after {
    display: none;
}

.mobile-dock-icon-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.42rem;
    height: 1.42rem;
    border: 1px solid rgba(214, 227, 243, 0.08);
    border-radius: 0.48rem;
    background: rgba(255, 255, 255, 0.03);
    color: var(--color-text-subtle);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
    transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.mobile-dock-icon {
    width: 0.78rem;
    height: 0.78rem;
}

.mobile-dock-label {
    color: var(--color-text-subtle);
    font-family: var(--font-body);
    font-size: 0.44rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    line-height: 1;
    text-transform: uppercase;
    transition: color 0.25s ease;
}

.mobile-dock-link.active {
    border-color: rgba(214, 227, 243, 0.16);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.045));
    color: var(--color-text) !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.14),
        0 8px 18px rgba(6, 9, 13, 0.12);
}

.mobile-dock-link.active .mobile-dock-icon-wrap {
    border-color: rgba(214, 227, 243, 0.14);
    background: rgba(255, 255, 255, 0.08);
    color: var(--color-text);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14);
    transform: none;
}

.mobile-dock-link.active .mobile-dock-label {
    color: var(--color-text);
}

.mobile-dock-link:not(.active):hover {
    background: rgba(255, 255, 255, 0.03);
}

.btn {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-control);
    border: 1px solid transparent;
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(14px);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease,
        background-color 0.3s ease,
        color 0.3s ease;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 1px;
    border-radius: inherit;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), transparent 58%);
    opacity: 0.9;
    pointer-events: none;
}

.btn:hover {
    transform: translateY(-2px) scale(1.01) !important;
}

.btn-primary {
    border-color: rgba(255, 255, 255, 0.42) !important;
    background: linear-gradient(180deg, #ffffff, #eef4fa 56%, #e4edf6) !important;
    color: #091018 !important;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.16) inset,
        0 24px 52px rgba(255, 255, 255, 0.18),
        0 0 34px rgba(255, 255, 255, 0.16);
}

.btn-primary:hover {
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.22) inset,
        0 28px 60px rgba(255, 255, 255, 0.24),
        0 0 42px rgba(255, 255, 255, 0.22);
}

.btn-secondary {
    border-color: var(--color-border-strong) !important;
    background: rgba(10, 15, 22, 0.34) !important;
    color: var(--color-text) !important;
}

.btn-secondary:hover {
    border-color: rgba(217, 227, 240, 0.42) !important;
    background: rgba(15, 22, 31, 0.82) !important;
    color: var(--color-accent-strong) !important;
}

.resume-capture {
    position: relative;
    display: inline-flex;
    align-items: stretch;
    flex: 0 0 auto;
    width: 11.15rem;
    max-width: 100%;
    min-height: 3.75rem;
    overflow: hidden;
    isolation: isolate;
    transform-origin: left center;
    transition:
        width 0.46s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.38s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.32s ease;
}

.resume-capture-trigger,
.resume-capture-form {
    width: 100%;
    min-height: 100%;
}

.resume-capture-trigger {
    position: relative;
    z-index: 1;
    clip-path: inset(0 round calc(var(--radius-control) + 0.02rem));
    border-color: rgba(214, 227, 243, 0.2) !important;
    background:
        linear-gradient(180deg, rgba(18, 26, 36, 0.88), rgba(8, 12, 18, 0.74)) !important;
    color: var(--color-text) !important;
    box-shadow:
        0 18px 34px rgba(2, 8, 15, 0.24),
        inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;
    letter-spacing: -0.02em;
    transition:
        opacity 0.22s ease,
        visibility 0.22s ease,
        clip-path 0.4s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
        border-color 0.32s ease,
        background-color 0.32s ease,
        box-shadow 0.32s ease !important;
}

.resume-capture-trigger::before {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 52%),
        radial-gradient(circle at top left, rgba(217, 227, 240, 0.12), transparent 46%);
}

.resume-capture-trigger:hover {
    border-color: rgba(224, 233, 243, 0.28) !important;
    background:
        linear-gradient(180deg, rgba(22, 32, 44, 0.94), rgba(10, 15, 22, 0.8)) !important;
    color: var(--color-accent-strong) !important;
    box-shadow:
        0 22px 38px rgba(2, 8, 15, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
}

.resume-capture-form {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    align-items: center;
    gap: 0.36rem;
    padding: 0.24rem;
    border: 1px solid rgba(218, 228, 240, 0.14);
    border-radius: calc(var(--radius-control) + 0.12rem);
    background:
        linear-gradient(180deg, rgba(16, 24, 34, 0.88), rgba(7, 11, 17, 0.74)),
        radial-gradient(circle at top left, rgba(217, 227, 240, 0.12), transparent 44%);
    backdrop-filter: blur(30px) saturate(175%);
    -webkit-backdrop-filter: blur(30px) saturate(175%);
    box-shadow:
        0 24px 46px rgba(0, 0, 0, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    clip-path: inset(0 0 0 100% round calc(var(--radius-control) + 0.12rem));
    transform: translateX(0.42rem) scale(0.985);
    transition:
        opacity 0.32s ease,
        visibility 0.32s ease,
        clip-path 0.42s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.38s cubic-bezier(0.22, 1, 0.36, 1),
        border-color 0.32s ease,
        box-shadow 0.32s ease;
}

.resume-capture-form::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 38%),
        radial-gradient(circle at left center, rgba(130, 164, 198, 0.1), transparent 44%);
    pointer-events: none;
}

.resume-capture-input {
    flex: 1 1 auto;
    min-width: 0;
    height: 100%;
    position: relative;
    z-index: 1;
    padding: 0 1rem;
    border: 1px solid rgba(188, 203, 221, 0.1);
    border-radius: calc(var(--radius-control) + 0.02rem);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.02));
    color: var(--color-text);
    font-family: var(--font-body);
    font-size: 0.96rem;
    font-weight: 500;
    line-height: 1;
    outline: none;
    transition: border-color 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease, color 0.25s ease;
}

.resume-capture-input::placeholder {
    color: rgba(169, 182, 197, 0.58);
}

.resume-capture-input:focus {
    border-color: rgba(224, 233, 243, 0.18);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.028));
    box-shadow:
        0 0 0 3px rgba(217, 227, 240, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.resume-capture-submit,
.resume-capture-close {
    flex: 0 0 auto;
    min-height: 100%;
    position: relative;
    z-index: 1;
    border: 1px solid transparent;
    font-family: var(--font-heading);
    font-weight: 700;
    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        background-color 0.25s ease,
        color 0.25s ease,
        box-shadow 0.25s ease;
}

.resume-capture-submit {
    min-width: 4.8rem;
    padding: 0 1rem;
    border-color: rgba(255, 255, 255, 0.28);
    border-radius: calc(var(--radius-control) + 0.02rem);
    background: linear-gradient(180deg, #ffffff, #eef4fa 58%, #e3ebf4);
    color: #091018;
    font-size: 0.9rem;
    letter-spacing: -0.02em;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.12) inset,
        0 12px 24px rgba(255, 255, 255, 0.08);
}

.resume-capture-submit:hover,
.resume-capture-close:hover {
    transform: translateY(-1px);
}

.resume-capture-submit:disabled,
.resume-capture-close:disabled,
.resume-capture-input:disabled {
    cursor: default;
}

.resume-capture-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.6rem;
    padding: 0;
    border-color: rgba(188, 203, 221, 0.08);
    border-radius: calc(var(--radius-control) + 0.02rem);
    background: rgba(255, 255, 255, 0.024);
    color: rgba(169, 182, 197, 0.82);
    font-size: 1rem;
    line-height: 1;
}

.resume-capture-close:hover {
    border-color: rgba(224, 233, 243, 0.14);
    background: rgba(255, 255, 255, 0.04);
    color: var(--color-text);
}

.resume-capture-close span {
    transform: translateY(-0.04rem);
}

.resume-capture.is-open {
    width: min(23rem, 100%);
}

.resume-capture.is-open .resume-capture-trigger,
.resume-capture.is-success .resume-capture-trigger {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    clip-path: inset(0 100% 0 0 round calc(var(--radius-control) + 0.02rem));
    transform: translateX(-0.3rem) scale(0.985);
}

.resume-capture.is-open .resume-capture-form,
.resume-capture.is-success .resume-capture-form {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    clip-path: inset(0 round calc(var(--radius-control) + 0.12rem));
    transform: translateX(0) scale(1);
}

.resume-capture.is-success .resume-capture-form {
    border-color: rgba(224, 233, 243, 0.2);
    box-shadow:
        0 26px 48px rgba(0, 0, 0, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 0 28px rgba(217, 227, 240, 0.08);
}

.resume-capture.is-success .resume-capture-submit {
    border-color: rgba(255, 255, 255, 0.42);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.18) inset,
        0 16px 30px rgba(255, 255, 255, 0.1);
}

.resume-capture.is-busy .resume-capture-form {
    border-color: rgba(224, 233, 243, 0.18);
    box-shadow:
        0 24px 46px rgba(0, 0, 0, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 0 24px rgba(217, 227, 240, 0.06);
}

.resume-capture.is-busy .resume-capture-input {
    opacity: 0.84;
}

.resume-capture.is-busy .resume-capture-submit {
    opacity: 0.96;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.12) inset,
        0 14px 26px rgba(255, 255, 255, 0.1);
}

.resume-capture.has-error .resume-capture-form {
    border-color: rgba(234, 141, 122, 0.26);
    box-shadow:
        0 24px 46px rgba(0, 0, 0, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 0 24px rgba(234, 141, 122, 0.12);
}

.resume-capture.has-error .resume-capture-input {
    border-color: rgba(234, 141, 122, 0.2);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.025));
}

@media (min-width: 640px) {
    #top .resume-capture {
        width: clamp(14.9rem, 18vw, 15.5rem);
        flex-basis: clamp(14.9rem, 18vw, 15.5rem);
    }

    #top .resume-capture.is-open {
        width: clamp(14.9rem, 18vw, 15.5rem);
        flex-basis: clamp(14.9rem, 18vw, 15.5rem);
    }

    #top .hero-actions {
        align-items: stretch;
    }

    #top .hero-actions > .btn,
    #top .hero-actions > .resume-capture {
        width: clamp(14.9rem, 18vw, 15.5rem);
        flex: 0 0 clamp(14.9rem, 18vw, 15.5rem);
    }

    #top .hero-actions > .btn {
        min-height: 3.75rem;
        padding-inline: 1.45rem !important;
        white-space: nowrap;
    }

    #top .resume-capture-trigger {
        display: inline-flex;
        width: 100%;
        min-height: 3.75rem;
        padding-inline: 1.45rem !important;
        white-space: nowrap;
    }

    #top .resume-capture-form {
        grid-template-columns: minmax(0, 1fr) 4.45rem 2.4rem;
        gap: 0.28rem;
        padding: 0.18rem;
        border-radius: calc(var(--radius-control) + 0.04rem);
    }

    #top .resume-capture-input {
        padding-inline: 0.82rem;
        font-size: 0.89rem;
    }

    #top .resume-capture-submit {
        min-width: 4.45rem;
        padding-inline: 0.8rem;
        font-size: 0.84rem;
    }

    #top .resume-capture-close {
        width: 2.4rem;
    }
}

.contact-actions .resume-capture {
    width: 100%;
    min-width: 0;
}

.contact-actions .resume-capture.is-open {
    width: 100%;
}

#top {
    min-height: 100svh;
    padding-top: clamp(7rem, 10vh, 9rem);
    padding-bottom: clamp(3rem, 5vh, 5rem);
}

#top .container {
    position: relative;
}

#top .container > .grid {
    grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
    grid-template-areas:
        "copy visual"
        "metrics metrics";
    gap: clamp(2.25rem, 4vw, 4.5rem);
    align-items: center;
}

#top .section-kicker {
    margin: 0;
}

#top h1 {
    max-width: 10.8ch;
    margin-top: clamp(1rem, 1.8vh, 1.5rem);
    font-size: clamp(3.8rem, 5.9vw, 6.8rem) !important;
    line-height: 0.92;
}

#top .text-lg,
#top .text-2xl,
#advisory .text-lg,
#services .text-lg,
#sectors .text-lg,
#proof .text-lg,
#insights .text-lg,
#contact .text-xl {
    color: var(--color-text-muted) !important;
}

#top .text-lg {
    max-width: 34rem;
    margin-top: clamp(1rem, 1.9vh, 1.6rem) !important;
    font-size: clamp(1rem, 1.45vw, 1.4rem) !important;
}

.hero-copy {
    grid-area: copy;
    max-width: 40rem;
}

.hero-title-line {
    display: inline;
}

.hero-actions {
    margin-top: clamp(1.25rem, 2.4vh, 2rem) !important;
}

.hero-trust-strip {
    display: none;
}

.hero-trust-chip {
    border-radius: var(--radius-card);
}

.hero-metrics {
    grid-area: metrics;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 0.5rem;
    gap: 1rem !important;
}

.hero-metric {
    background: linear-gradient(180deg, rgba(11, 17, 23, 0.9), rgba(10, 15, 21, 0.72)) !important;
    border: 1px solid var(--color-border) !important;
    border-radius: var(--radius-card) !important;
    padding: 1.25rem !important;
    box-shadow: var(--shadow-card);
}

.hero-metric p:last-child {
    max-width: 20ch;
    color: var(--color-text-muted) !important;
}

.hero-visual {
    grid-area: visual;
    width: min(100%, 40rem);
    justify-self: end;
}

.scroll-prompt-wrap {
    position: absolute;
    right: 1.5rem;
    bottom: clamp(5.6rem, 9vw, 8rem);
    z-index: 2;
    display: flex;
    justify-content: flex-end;
    pointer-events: none;
}

.hero-portrait {
    aspect-ratio: 4 / 5.55;
    width: 100%;
    max-height: min(74vh, 45rem);
    object-fit: cover;
    object-position: center 34%;
    border: 1px solid var(--color-border-strong);
    border-radius: var(--radius-frame) !important;
    box-shadow: 0 38px 84px rgba(0, 0, 0, 0.44);
}

.hero-aside {
    padding: clamp(1rem, 1.25vw, 1.5rem) !important;
    background: rgba(8, 12, 18, 0.76) !important;
    border: 1px solid var(--color-border) !important;
    border-radius: var(--radius-panel) !important;
    backdrop-filter: blur(22px);
    box-shadow: var(--shadow-card);
}

.hero-aside .grid {
    gap: 0.85rem !important;
}

.hero-aside .grid p {
    padding: 0.9rem !important;
    font-size: 0.84rem;
    line-height: 1.45;
    border-color: rgba(182, 197, 214, 0.14) !important;
    background: rgba(255, 255, 255, 0.025);
    color: var(--color-text-muted) !important;
}

#genai-capability,
#sectors,
#insights,
#contact {
    background:
        linear-gradient(180deg, rgba(12, 18, 25, 0.56), rgba(7, 11, 16, 0.18)) !important;
    border-top: 1px solid rgba(182, 197, 214, 0.08);
    border-bottom: 1px solid rgba(182, 197, 214, 0.08);
}

#genai-capability::before {
    content: '';
    position: absolute;
    inset: 12% auto auto 50%;
    width: min(60rem, 90vw);
    height: 14rem;
    transform: translateX(-50%);
    background: radial-gradient(circle, rgba(130, 164, 198, 0.08), rgba(130, 164, 198, 0) 68%);
    pointer-events: none;
}

.genai-capability-layout,
.genai-capability-grid {
    position: relative;
    z-index: 1;
}

.genai-intro {
    max-width: 34rem;
}

.genai-capability-brief {
    background:
        radial-gradient(circle at top right, rgba(217, 227, 240, 0.06), transparent 38%),
        linear-gradient(180deg, rgba(13, 19, 27, 0.92), rgba(10, 15, 22, 0.78)) !important;
}

.provider-board {
    background:
        radial-gradient(circle at top right, rgba(217, 227, 240, 0.05), transparent 34%),
        linear-gradient(180deg, rgba(14, 21, 29, 0.92), rgba(10, 15, 22, 0.8)) !important;
}

.provider-board-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(18rem, 29rem);
    gap: 1.5rem;
    align-items: end;
}

.provider-board-note {
    justify-self: end;
    max-width: 29rem;
    text-align: right;
}

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

.provider-tile {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    min-height: 4.35rem;
    padding: 0.82rem 0.88rem;
    border: 1px solid rgba(182, 197, 214, 0.12);
    border-radius: calc(var(--radius-card) - 0.02rem);
    background:
        linear-gradient(180deg, rgba(17, 24, 34, 0.72), rgba(9, 13, 19, 0.48));
    box-shadow:
        0 14px 24px rgba(0, 0, 0, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.provider-logo-frame {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.7rem;
    height: 2.35rem;
    border: 1px solid rgba(182, 197, 214, 0.12);
    border-radius: calc(var(--radius-control) + 0.04rem);
    background: rgba(255, 255, 255, 0.03);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
    flex: 0 0 auto;
}

.provider-logo-frame--wide {
    width: 4.45rem;
}

.provider-logo {
    max-width: 1.8rem;
    max-height: 1.4rem;
    width: auto;
    height: auto;
    opacity: 0.94;
    filter:
        brightness(0) saturate(100%) invert(93%) sepia(9%) saturate(232%) hue-rotate(180deg) brightness(103%) contrast(97%)
        drop-shadow(0 8px 16px rgba(0, 0, 0, 0.18));
}

.provider-logo--wide {
    max-width: 3.15rem;
    max-height: 1rem;
}

.provider-logo--gemini {
    max-width: 1.3rem;
    max-height: 1.3rem;
}

.provider-logo--xai {
    max-width: 1.35rem;
    max-height: 1.7rem;
}

.provider-tile-copy {
    min-width: 0;
}

.provider-tile-copy strong {
    display: block;
    color: var(--color-text);
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.04;
}

.provider-tile-copy span {
    display: block;
    margin-top: 0.24rem;
    color: var(--color-text-muted);
    font-family: var(--font-tech);
    font-size: 0.6rem;
    letter-spacing: 0.14em;
    line-height: 1.2;
    text-transform: uppercase;
}

.provider-grid-note {
    padding-top: 1rem;
    border-top: 1px solid rgba(182, 197, 214, 0.12);
}

.capability-list {
    padding-left: 1.1rem;
}

.capability-list li + li {
    margin-top: 0.4rem;
}

.capability-card:nth-child(1) {
    background:
        radial-gradient(circle at top right, rgba(217, 227, 240, 0.08), transparent 38%),
        linear-gradient(180deg, rgba(14, 21, 29, 0.94), rgba(10, 15, 22, 0.8)) !important;
}

.capability-card:nth-child(2) {
    background:
        radial-gradient(circle at bottom left, rgba(138, 159, 182, 0.1), transparent 42%),
        linear-gradient(180deg, rgba(13, 19, 27, 0.94), rgba(10, 15, 22, 0.8)) !important;
}

.capability-card:nth-child(3) {
    background:
        linear-gradient(180deg, rgba(12, 18, 25, 0.96), rgba(9, 13, 19, 0.82)) !important;
}

.section-proof::before {
    content: '';
    position: absolute;
    inset: 12% auto auto 50%;
    width: min(56rem, 88vw);
    height: 18rem;
    transform: translateX(-50%);
    background: radial-gradient(circle, rgba(217, 227, 240, 0.08), rgba(217, 227, 240, 0) 68%);
    pointer-events: none;
}

.project-card {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(13, 19, 27, 0.9), rgba(10, 15, 22, 0.76)) !important;
    border: 1px solid var(--color-border) !important;
    border-radius: var(--radius-card) !important;
    backdrop-filter: blur(18px);
    box-shadow: var(--shadow-card);
    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease,
        background-color 0.35s ease;
}

.project-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 1px solid transparent;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.12), transparent 32%, transparent 68%, rgba(255, 255, 255, 0.06))
        border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0.85;
    pointer-events: none;
}

.project-card::after {
    content: '';
    position: absolute;
    inset: auto 0 0;
    height: 40%;
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.025));
    pointer-events: none;
}

.project-card:hover {
    transform: translateY(-6px);
    border-color: var(--color-border-strong) !important;
    box-shadow: 0 32px 72px rgba(0, 0, 0, 0.38);
}

.project-card p.text-xs,
.project-card .text-xs {
    color: var(--color-text-subtle) !important;
    font-family: var(--font-tech);
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.project-card h3 {
    max-width: 18ch;
}

.project-card li,
.project-card p.text-gray-300,
.project-card p.text-gray-400 {
    color: var(--color-text-muted) !important;
}

.project-card a {
    color: var(--color-accent-strong) !important;
    font-family: var(--font-tech);
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.project-card a:hover {
    color: var(--color-accent) !important;
}

.project-card ul {
    padding-left: 1.1rem;
}

.project-card li + li {
    margin-top: 0.35rem;
}

.card-seal {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin-bottom: 1.15rem;
    padding: 0.35rem 0.7rem;
    border: 1px solid rgba(182, 197, 214, 0.16);
    border-radius: var(--radius-pill);
    background: rgba(255, 255, 255, 0.03);
    color: var(--color-accent);
    font-family: var(--font-tech);
    font-size: 0.68rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.proof-grid .proof-card:first-child {
    background:
        radial-gradient(circle at top right, rgba(217, 227, 240, 0.12), transparent 42%),
        linear-gradient(180deg, rgba(15, 22, 31, 0.96), rgba(10, 15, 22, 0.8)) !important;
}

.proof-grid .proof-card:first-child p:last-child {
    max-width: 28ch;
    font-size: 1.05rem;
}

.proof-grid .proof-card:nth-child(4) {
    background:
        radial-gradient(circle at bottom left, rgba(128, 149, 173, 0.12), transparent 42%),
        linear-gradient(180deg, rgba(13, 19, 27, 0.94), rgba(10, 15, 22, 0.82)) !important;
}

.proof-support-grid {
    align-items: stretch;
}

.proof-support-card--credentials {
    background:
        radial-gradient(circle at top right, rgba(217, 227, 240, 0.08), transparent 38%),
        linear-gradient(180deg, rgba(11, 17, 23, 0.92), rgba(9, 13, 19, 0.8)) !important;
}

.proof-support-card--leadership ul {
    list-style: none;
    padding-left: 0;
}

.proof-support-card--leadership li {
    position: relative;
    padding-top: 1rem;
    padding-left: 1.25rem;
    border-top: 1px solid rgba(182, 197, 214, 0.12);
}

.proof-support-card--leadership li::before {
    content: '';
    position: absolute;
    top: 1.4rem;
    left: 0;
    width: 0.45rem;
    height: 0.45rem;
    border-radius: 999px;
    background: rgba(217, 227, 240, 0.72);
    box-shadow: 0 0 14px rgba(217, 227, 240, 0.18);
}

.proof-support-card--leadership li:first-child {
    padding-top: 0;
    border-top: 0;
}

.proof-support-card--leadership li:first-child::before {
    top: 0.35rem;
}

.insight-grid {
    align-items: stretch;
}

.insight-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.insight-card--feature {
    position: relative;
}

.insight-card--feature h3 {
    max-width: 15ch;
}

.insight-card--feature ul {
    max-width: 46rem;
}

.insight-card:nth-child(1) {
    background:
        radial-gradient(circle at top right, rgba(217, 227, 240, 0.12), transparent 42%),
        linear-gradient(180deg, rgba(14, 21, 29, 0.96), rgba(10, 15, 22, 0.8)) !important;
}

.insight-card:nth-child(2) {
    background:
        linear-gradient(180deg, rgba(13, 19, 27, 0.94), rgba(10, 15, 22, 0.8)) !important;
}

.insight-card:nth-child(3) {
    background:
        radial-gradient(circle at bottom left, rgba(138, 159, 182, 0.10), transparent 44%),
        linear-gradient(180deg, rgba(13, 19, 27, 0.94), rgba(10, 15, 22, 0.8)) !important;
}

.insight-card a {
    margin-top: auto !important;
    padding-top: 2rem;
}

.value-pill {
    opacity: 0;
    transform: translateY(20px);
    border-color: rgba(182, 197, 214, 0.14) !important;
    background: rgba(11, 17, 23, 0.7) !important;
    border-radius: var(--radius-pill) !important;
    color: var(--color-accent) !important;
    font-family: var(--font-tech);
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.value-pill.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.provider-marquee-section {
    position: relative;
    overflow: hidden;
}

.provider-marquee-label {
    position: relative;
    z-index: 1;
}

.provider-marquee-shell {
    position: relative;
    overflow: hidden;
    padding-block: 0.8rem 2rem;
    -webkit-mask-image: linear-gradient(to right, transparent, black 7%, black 93%, transparent);
    mask-image: linear-gradient(to right, transparent, black 7%, black 93%, transparent);
}

.provider-marquee-shell::before {
    content: '';
    position: absolute;
    inset: 18% 12% auto;
    height: 50%;
    background:
        radial-gradient(circle at center, rgba(217, 227, 240, 0.08), transparent 58%),
        linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(214, 224, 236, 0.08), rgba(255, 255, 255, 0));
    pointer-events: none;
}

.provider-marquee-loop {
    display: flex;
    align-items: center;
    width: max-content;
    will-change: transform;
    animation: provider-marquee-loop 34s linear infinite;
}

.provider-marquee-group {
    display: flex;
    align-items: center;
    gap: clamp(1.85rem, 3vw, 3rem);
    flex: 0 0 auto;
    min-width: max-content;
    padding-inline: clamp(1.2rem, 2vw, 2.2rem);
}

.provider-badge {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: clamp(5.1rem, 6.5vw, 6.6rem);
    height: clamp(3.2rem, 4vw, 4.1rem);
    padding: 0.35rem 0.4rem;
    border: 0;
    background: transparent;
    box-shadow: none;
    outline: none;
    transition:
        transform 0.35s ease,
        opacity 0.35s ease;
}

.provider-badge:hover,
.provider-badge:focus-visible {
    transform: translateY(-0.3rem);
}

.provider-badge-name {
    position: absolute;
    z-index: 2;
    left: 50%;
    top: calc(100% + 0.55rem);
    transform: translate(-50%, -0.25rem);
    opacity: 0;
    padding: 0;
    border: 0;
    background: transparent;
    color: rgba(224, 232, 241, 0.92);
    font-family: var(--font-tech);
    font-size: 0.61rem;
    letter-spacing: 0.18em;
    line-height: 1;
    text-transform: uppercase;
    white-space: nowrap;
    pointer-events: none;
    transition:
        opacity 0.28s ease,
        transform 0.28s ease;
}

.provider-badge:hover .provider-badge-name,
.provider-badge:focus-visible .provider-badge-name {
    opacity: 1;
    transform: translate(-50%, 0);
}

.provider-marquee-logo {
    display: block;
    width: auto;
    height: 2.15rem;
    max-width: 3.2rem;
    max-height: 2.35rem;
    flex: 0 0 auto;
    opacity: 0.94;
    filter: drop-shadow(0 10px 22px rgba(3, 8, 14, 0.16));
    transition:
        transform 0.35s ease,
        opacity 0.35s ease,
        filter 0.35s ease;
}

.provider-badge:hover .provider-marquee-logo,
.provider-badge:focus-visible .provider-marquee-logo {
    transform: scale(1.08) translateY(-0.02rem);
    opacity: 1;
    filter: drop-shadow(0 16px 28px rgba(6, 12, 22, 0.22));
}

.provider-marquee-logo--openai {
    height: 2.32rem;
    max-width: 2.32rem;
    max-height: 2.32rem;
}

.provider-marquee-logo--gemini {
    height: 1.9rem;
    max-width: 1.9rem;
    max-height: 1.9rem;
}

.provider-marquee-logo--xai {
    height: 2.08rem;
    max-width: 2.08rem;
    max-height: 2.08rem;
}

.provider-marquee-shell:hover .provider-marquee-loop,
.provider-marquee-shell:focus-within .provider-marquee-loop {
    animation-play-state: paused;
}

@keyframes provider-marquee-loop {
    from {
        transform: translate3d(0, 0, 0);
    }
    to {
        transform: translate3d(-50%, 0, 0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .provider-marquee-shell {
        overflow-x: auto;
        -webkit-mask-image: none;
        mask-image: none;
    }

    .provider-marquee-loop {
        animation: none;
    }

    .provider-marquee-group:last-child {
        display: none;
    }
}

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

.animate-marquee,
.animate-marquee-fast {
    display: flex;
    will-change: transform;
}

.animate-marquee {
    animation: marquee 52s linear infinite;
}

.animate-marquee-fast {
    animation: marquee 44s linear infinite;
}

.marquee-fade {
    -webkit-mask-image: linear-gradient(to right, transparent, black 12%, black 88%, transparent);
    mask-image: linear-gradient(to right, transparent, black 12%, black 88%, transparent);
}

.marquee-fade .animate-marquee span {
    font-size: clamp(3.2rem, 7vw, 5.8rem) !important;
    letter-spacing: -0.08em;
    color: rgba(244, 246, 248, 0.9) !important;
}

.marquee-fade .animate-marquee span:nth-child(even) {
    color: rgba(169, 182, 197, 0.48) !important;
}

.approach-panel {
    background: linear-gradient(180deg, rgba(12, 18, 25, 0.84), rgba(9, 13, 19, 0.74)) !important;
    border: 1px solid var(--color-border) !important;
    border-radius: var(--radius-panel) !important;
    box-shadow: var(--shadow-card);
}

.approach-layout {
    align-items: center;
}

.approach-steps {
    position: relative;
    padding-left: 4rem;
}

.approach-steps::before {
    content: '';
    position: absolute;
    left: 0.75rem;
    top: 1rem;
    bottom: 1rem;
    width: 1px;
    background: linear-gradient(180deg, rgba(217, 227, 240, 0), rgba(217, 227, 240, 0.28), rgba(217, 227, 240, 0));
}

.philosophy-list {
    counter-reset: approach-step;
}

.philosophy-item {
    position: relative;
    color: rgba(244, 246, 248, 0.34);
    cursor: default;
    transition: opacity 0.3s ease, transform 0.3s ease, color 0.3s ease;
}

.philosophy-item::before {
    counter-increment: approach-step;
    content: "0" counter(approach-step);
    position: absolute;
    top: 50%;
    left: -4rem;
    transform: translateY(-50%);
    color: var(--color-text-subtle);
    font-family: var(--font-tech);
    font-size: 0.72rem;
    letter-spacing: 0.18em;
}

.philosophy-list:hover .philosophy-item {
    opacity: 0.48;
}

.philosophy-list .philosophy-item:hover {
    opacity: 1;
    color: var(--color-text);
    transform: translateX(-8px);
}

.available-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.8rem 1rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-pill);
    background: rgba(10, 15, 22, 0.72);
    color: var(--color-accent-strong);
    font-family: var(--font-tech);
    font-size: 0.76rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    box-shadow: var(--shadow-card);
    transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.available-pill:hover {
    background: rgba(15, 22, 31, 0.92);
    border-color: var(--color-border-strong);
    color: var(--color-text);
}

.available-pill .dot {
    width: 0.55rem;
    height: 0.55rem;
    border-radius: 999px;
    background: #72f2a6;
    box-shadow: 0 0 0 5px rgba(114, 242, 166, 0.12), 0 0 18px rgba(114, 242, 166, 0.38);
}

.contact-panel {
    position: relative;
    overflow: hidden;
    padding: clamp(2rem, 4vw, 3rem);
    border: 1px solid rgba(182, 197, 214, 0.12);
    border-radius: var(--radius-panel);
    background:
        radial-gradient(circle at top right, rgba(217, 227, 240, 0.12), transparent 34%),
        linear-gradient(180deg, rgba(13, 19, 27, 0.9), rgba(10, 15, 22, 0.76));
    box-shadow: var(--shadow-card);
}

.contact-panel > * {
    position: relative;
}

.contact-actions .resume-capture,
.contact-actions .btn {
    min-height: 4rem;
}

.site-footer {
    --footer-grid-color: rgba(179, 194, 211, 0.07);
    --footer-grid-strong: rgba(179, 194, 211, 0.12);
    --footer-accent: rgba(232, 223, 102, 0.92);
    --footer-accent-soft: rgba(232, 223, 102, 0.18);
    --footer-panel-bg: rgba(8, 12, 17, 0.82);
    --footer-panel-border: rgba(171, 186, 204, 0.16);
    position: relative;
    isolation: isolate;
    padding-top: 1.25rem;
    padding-bottom: 1rem;
}

.site-footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 64% 56% at 18% 16%, rgba(233, 237, 242, 0.08), transparent 58%),
        radial-gradient(ellipse 42% 34% at 84% 78%, rgba(40, 56, 75, 0.16), transparent 62%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.018), transparent 18%),
        repeating-linear-gradient(
            90deg,
            transparent 0,
            transparent 86px,
            rgba(179, 194, 211, 0.055) 86px,
            rgba(179, 194, 211, 0.055) 87px
        ),
        repeating-linear-gradient(
            0deg,
            transparent 0,
            transparent 86px,
            rgba(179, 194, 211, 0.042) 86px,
            rgba(179, 194, 211, 0.042) 87px
        );
    pointer-events: none;
}

.site-footer::after {
    content: '';
    position: absolute;
    z-index: 0;
    right: clamp(-12rem, -7vw, -3rem);
    bottom: clamp(1.6rem, 4vw, 3.2rem);
    width: min(62rem, 76vw);
    height: min(12rem, 15vw);
    background: url("assets/hamburg-skyline-real-outline.svg") right center / contain no-repeat;
    opacity: 0.08;
    mix-blend-mode: screen;
    filter: drop-shadow(0 22px 44px rgba(0, 0, 0, 0.28));
    pointer-events: none;
}

.footer-band {
    position: relative;
    overflow: hidden;
    padding-block: 0.95rem;
    border-top: 1px solid rgba(182, 197, 214, 0.08);
    border-bottom: 1px solid rgba(182, 197, 214, 0.08);
    background:
        linear-gradient(180deg, rgba(5, 9, 13, 0.9), rgba(4, 7, 11, 0.72)),
        repeating-linear-gradient(
            90deg,
            transparent 0,
            transparent 74px,
            rgba(179, 194, 211, 0.04) 74px,
            rgba(179, 194, 211, 0.04) 75px
        ),
        radial-gradient(circle at 18% 50%, rgba(232, 223, 102, 0.08), transparent 22%);
}

.footer-band::before {
    content: '';
    position: absolute;
    inset: 50% 1.5rem auto;
    height: 1px;
    transform: translateY(-50%);
    background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(232, 223, 102, 0.38), rgba(214, 224, 236, 0.14), rgba(255, 255, 255, 0));
    pointer-events: none;
}

.footer-band::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.02), transparent 18%, transparent 82%, rgba(255, 255, 255, 0.02)),
        linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 22%);
    pointer-events: none;
}

.footer-band-track {
    display: flex;
    align-items: center;
    width: max-content;
}

.footer-band .animate-marquee-fast span {
    margin-inline: 1.2rem;
    font-size: clamp(3.8rem, 10vw, 8.2rem) !important;
    letter-spacing: 0.08em;
    color: transparent !important;
    -webkit-text-stroke: 1px rgba(201, 213, 227, 0.18);
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.025);
    white-space: nowrap;
}

.footer-band .animate-marquee-fast span:nth-child(odd) {
    -webkit-text-stroke-color: rgba(232, 223, 102, 0.12);
}

.footer-shell {
    position: relative;
    overflow: hidden;
    padding: clamp(1.25rem, 2.4vw, 2rem);
    border: 1px solid rgba(182, 197, 214, 0.14);
    border-radius: 0.78rem;
    background:
        linear-gradient(180deg, rgba(6, 10, 14, 0.94), rgba(3, 6, 9, 0.9)),
        linear-gradient(140deg, rgba(255, 255, 255, 0.02), transparent 32%, rgba(255, 255, 255, 0.01) 76%, transparent);
    box-shadow:
        0 36px 90px rgba(0, 0, 0, 0.42),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.footer-shell::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(232, 223, 102, 0.2), rgba(232, 223, 102, 0)) top 1.1rem left 1.1rem / 5.2rem 1px no-repeat,
        url("assets/footer-tactical-grid.svg") center bottom / cover no-repeat,
        linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 18%);
    opacity: 0.54;
    mix-blend-mode: screen;
    pointer-events: none;
}

.footer-shell::after {
    content: '';
    position: absolute;
    inset: auto -14% -28% auto;
    width: 34rem;
    height: 26rem;
    background: radial-gradient(circle, rgba(217, 227, 240, 0.08), rgba(217, 227, 240, 0) 68%);
    opacity: 0.28;
    pointer-events: none;
}

.footer-shell-hud,
.footer-primary,
.footer-panels,
.footer-bottom {
    position: relative;
    z-index: 1;
}

.footer-shell-hud {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 0.95rem;
    border-bottom: 1px solid rgba(182, 197, 214, 0.09);
    color: var(--footer-accent);
    font-family: var(--font-tech);
    font-size: 0.62rem;
    letter-spacing: 0.22em;
    line-height: 1.4;
    text-transform: uppercase;
}

.footer-shell-hud::before {
    content: '';
    display: block;
    width: 2.9rem;
    height: 1px;
    background: linear-gradient(90deg, var(--footer-accent), rgba(232, 223, 102, 0));
}

.footer-shell-hud span:last-child {
    justify-self: end;
    color: rgba(182, 197, 214, 0.66);
}

.footer-primary {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(18rem, 0.88fr);
    gap: 1.05rem;
    align-items: stretch;
}

.footer-intro,
.footer-signal-card,
.footer-panel {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--footer-panel-border);
    border-radius: 0.52rem;
    background:
        linear-gradient(180deg, rgba(9, 14, 20, 0.78), rgba(5, 8, 12, 0.92)),
        linear-gradient(120deg, rgba(255, 255, 255, 0.02), transparent 28%);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.035),
        0 22px 44px rgba(0, 0, 0, 0.18);
}

.footer-intro::before,
.footer-signal-card::before,
.footer-panel::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(var(--footer-accent-soft), var(--footer-accent-soft)) left 0.95rem top 0.95rem / 1.45rem 1px no-repeat,
        linear-gradient(var(--footer-accent-soft), var(--footer-accent-soft)) left 0.95rem top 0.95rem / 1px 1.45rem no-repeat,
        linear-gradient(rgba(196, 208, 222, 0.12), rgba(196, 208, 222, 0.12)) right 0.95rem bottom 0.95rem / 1.45rem 1px no-repeat,
        linear-gradient(rgba(196, 208, 222, 0.12), rgba(196, 208, 222, 0.12)) right 0.95rem bottom 0.95rem / 1px 1.45rem no-repeat;
    opacity: 0.92;
    pointer-events: none;
}

.footer-intro {
    padding: clamp(1.2rem, 2vw, 1.9rem);
}

.footer-kicker {
    margin: 0;
    color: var(--footer-accent) !important;
    letter-spacing: 0.22em;
}

.footer-title {
    margin: 0.9rem 0 0;
    max-width: 13ch;
    color: var(--color-text);
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 4.6vw, 4.2rem);
    font-weight: 800;
    line-height: 0.96;
    letter-spacing: -0.07em;
    text-shadow: 0 0 18px rgba(255, 255, 255, 0.02);
}

.footer-copy {
    max-width: 40rem;
    margin: 1rem 0 0;
    color: rgba(174, 189, 205, 0.88);
    font-size: clamp(1rem, 1.25vw, 1.08rem);
    line-height: 1.74;
}

.footer-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1.5rem;
}

.footer-cta-row .btn {
    min-height: 3.7rem;
    padding-inline: 1.45rem !important;
    border-radius: 0.4rem;
}

.footer-cta-row .btn-primary {
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.05),
        0 0 24px rgba(255, 255, 255, 0.08);
}

.footer-cta-row .btn-secondary {
    border-color: rgba(179, 194, 211, 0.16) !important;
    background: linear-gradient(180deg, rgba(10, 15, 20, 0.72), rgba(5, 9, 13, 0.92)) !important;
    color: var(--color-text-muted) !important;
}

.footer-cta-row .btn-secondary:hover {
    border-color: rgba(232, 223, 102, 0.24) !important;
    color: var(--color-text) !important;
    box-shadow: inset 0 0 0 1px rgba(232, 223, 102, 0.08);
}

.footer-signal-stack {
    display: grid;
    gap: 0.8rem;
}

.footer-signal-card {
    padding: 1rem 1.05rem 1.05rem;
}

.footer-signal-label,
.footer-panel-label,
.footer-bottom-note {
    display: block;
    color: var(--footer-accent);
    font-family: var(--font-tech);
    font-size: 0.68rem;
    letter-spacing: 0.22em;
    line-height: 1.2;
    text-transform: uppercase;
}

.footer-signal-card strong {
    display: block;
    margin-top: 0.54rem;
    color: var(--color-text);
    font-family: var(--font-heading);
    font-size: 1.08rem;
    font-weight: 700;
    line-height: 1.02;
    letter-spacing: -0.04em;
}

.footer-signal-card p {
    margin: 0.58rem 0 0;
    color: rgba(170, 184, 199, 0.84);
    font-size: 0.92rem;
    line-height: 1.58;
}

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

.footer-panel {
    padding: 1.05rem 1.1rem 1.15rem;
}

.footer-link-list {
    display: grid;
    gap: 0.08rem;
    margin-top: 0.95rem;
}

.footer-link-list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.76rem 0;
    border-bottom: 1px solid rgba(182, 197, 214, 0.09);
    color: var(--color-text-muted) !important;
    transition: color 0.25s ease, transform 0.25s ease;
}

.footer-link-list a:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.resume-twin-main {
    position: relative;
}

body.resume-gate-active {
    overflow: hidden;
}

body.resume-gate-active #main-header,
body.resume-gate-active .resume-twin-main,
body.resume-gate-active .site-footer,
body.resume-gate-active #back-to-top,
body.resume-gate-active #shortcut-hint {
    filter: blur(18px) saturate(0.84);
    opacity: 0.24;
    pointer-events: none;
    user-select: none;
    transition: filter 0.65s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.5s ease;
}

.resume-greeting-banner {
    position: relative;
    z-index: 2;
    width: min(100%, 38rem);
    margin: 0 0 1rem;
    transform: translateY(-0.8rem);
    opacity: 0;
    transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.38s ease;
}

.resume-greeting-banner.is-visible {
    transform: translateY(0);
    opacity: 1;
}

.resume-greeting-banner-inner {
    display: grid;
    gap: 0.42rem;
    padding: 0.9rem 1.05rem;
    border: 1px solid rgba(182, 197, 214, 0.14);
    border-radius: 0.9rem;
    background:
        linear-gradient(180deg, rgba(7, 11, 16, 0.88), rgba(4, 7, 11, 0.96)),
        linear-gradient(140deg, rgba(255, 255, 255, 0.03), transparent 32%, rgba(255, 255, 255, 0.01) 76%, transparent);
    box-shadow:
        0 18px 48px rgba(0, 0, 0, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.resume-greeting-label {
    color: rgba(189, 202, 217, 0.68);
    font-family: var(--font-tech);
    font-size: 0.62rem;
    letter-spacing: 0.22em;
    line-height: 1.2;
    text-transform: uppercase;
}

.resume-greeting-banner p {
    margin: 0;
    color: var(--color-text);
    font-family: var(--font-heading);
    font-size: clamp(1rem, 2vw, 1.2rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.04em;
}

.scroll-prompt {
    display: inline-flex;
    align-items: center;
    gap: 0.68rem;
    max-width: 17.5rem;
    padding: 0.62rem 0.78rem;
    border: 1px solid rgba(182, 197, 214, 0.09);
    border-radius: 0.95rem;
    background:
        linear-gradient(180deg, rgba(7, 11, 16, 0.5), rgba(4, 7, 11, 0.78)),
        linear-gradient(120deg, rgba(255, 255, 255, 0.018), transparent 28%);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.024),
        0 14px 32px rgba(0, 0, 0, 0.14);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.scroll-prompt.is-hidden {
    opacity: 0;
    transform: translateY(0.3rem);
    pointer-events: none;
}

.scroll-prompt p {
    margin: 0;
    color: rgba(214, 225, 238, 0.82);
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 600;
    line-height: 1.3;
}

.scroll-icon {
    position: relative;
    display: inline-flex;
    align-items: flex-start;
    justify-content: center;
    width: 1.2rem;
    height: 1.82rem;
    padding-top: 0.24rem;
    border: 1px solid rgba(210, 221, 234, 0.24);
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.scroll-wheel {
    width: 0.16rem;
    height: 0.36rem;
    border-radius: 999px;
    background: rgba(241, 246, 252, 0.78);
    animation: scroll-wheel 1.45s ease-in-out infinite;
}

@keyframes scroll-wheel {
    0% {
        transform: translateY(0);
        opacity: 1;
    }

    70% {
        transform: translateY(0.72rem);
        opacity: 0.28;
    }

    100% {
        transform: translateY(0);
        opacity: 0;
    }
}

.resume-access-gate {
    position: fixed;
    inset: 0;
    z-index: 10010;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    background:
        radial-gradient(circle at 18% 22%, rgba(218, 228, 239, 0.16), transparent 30%),
        radial-gradient(circle at 82% 16%, rgba(77, 96, 120, 0.18), transparent 28%),
        rgba(2, 4, 7, 0.42);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    transition: opacity 0.42s ease, visibility 0.42s ease;
}

.resume-access-gate.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.resume-access-gate-panel {
    width: min(100%, 31rem);
    display: grid;
    gap: 1rem;
    padding: clamp(1.4rem, 3vw, 2rem);
    border: 1px solid rgba(182, 197, 214, 0.14);
    border-radius: 1rem;
    background:
        linear-gradient(180deg, rgba(7, 11, 16, 0.92), rgba(4, 7, 11, 0.98)),
        linear-gradient(145deg, rgba(255, 255, 255, 0.03), transparent 35%, rgba(255, 255, 255, 0.01) 78%, transparent);
    box-shadow:
        0 32px 90px rgba(0, 0, 0, 0.42),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.resume-access-kicker {
    margin: 0;
    color: rgba(192, 205, 220, 0.72);
    font-family: var(--font-tech);
    font-size: 0.68rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.resume-access-title {
    margin: 0;
    max-width: 12ch;
    color: var(--color-text);
    font-family: var(--font-heading);
    font-size: clamp(2rem, 6vw, 3rem);
    font-weight: 800;
    line-height: 0.95;
    letter-spacing: -0.06em;
}

.resume-access-copy {
    margin: 0;
    color: rgba(183, 197, 212, 0.88);
    font-size: 1rem;
    line-height: 1.68;
}

.resume-access-form {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 0.8rem;
}

.resume-access-input,
.resume-access-submit {
    min-height: 3.8rem;
    border-radius: 0.68rem;
}

.resume-access-input {
    width: 100%;
    padding: 0 1rem;
    border: 1px solid rgba(182, 197, 214, 0.14);
    background:
        linear-gradient(180deg, rgba(10, 15, 21, 0.82), rgba(5, 9, 13, 0.94)),
        linear-gradient(120deg, rgba(255, 255, 255, 0.02), transparent 28%);
    color: rgba(236, 243, 250, 0.96);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color 0.24s ease, box-shadow 0.24s ease;
}

.resume-access-input::placeholder {
    color: rgba(162, 177, 194, 0.6);
}

.resume-access-input:focus {
    outline: none;
    border-color: rgba(226, 236, 246, 0.24);
    box-shadow: 0 0 0 4px rgba(226, 236, 246, 0.06);
}

.resume-access-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 1.1rem;
    border: 0;
    background: linear-gradient(180deg, rgba(247, 249, 252, 0.98), rgba(228, 236, 246, 0.94));
    color: #071019;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    box-shadow: 0 0 24px rgba(241, 246, 251, 0.18);
    transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
}

.resume-access-submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 0 28px rgba(241, 246, 251, 0.22);
}

.resume-access-submit:disabled,
.resume-access-input:disabled {
    opacity: 0.72;
    cursor: wait;
}

.resume-access-status {
    min-height: 1.25rem;
    margin: 0;
    color: rgba(183, 197, 212, 0.8);
    font-size: 0.92rem;
    line-height: 1.5;
}

.resume-access-gate.has-error .resume-access-status {
    color: rgba(255, 184, 184, 0.92);
}

.resume-top-grid,
.resume-timeline,
.resume-credentials-grid,
.resume-section-stack {
    display: grid;
    gap: 1rem;
}

.resume-shell,
.resume-identity-card,
.resume-meta-card,
.resume-entry-shell {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(182, 197, 214, 0.14);
    border-radius: 0.8rem;
    background:
        linear-gradient(180deg, rgba(7, 11, 16, 0.88), rgba(4, 7, 11, 0.96)),
        linear-gradient(140deg, rgba(255, 255, 255, 0.025), transparent 28%, rgba(255, 255, 255, 0.012) 74%, transparent);
    box-shadow:
        0 30px 70px rgba(0, 0, 0, 0.26),
        inset 0 1px 0 rgba(255, 255, 255, 0.035);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.resume-shell::before,
.resume-identity-card::before,
.resume-meta-card::before,
.resume-entry-shell::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(214, 224, 236, 0.12), rgba(214, 224, 236, 0.12)) left 1rem top 1rem / 1.5rem 1px no-repeat,
        linear-gradient(rgba(214, 224, 236, 0.12), rgba(214, 224, 236, 0.12)) left 1rem top 1rem / 1px 1.5rem no-repeat,
        linear-gradient(rgba(214, 224, 236, 0.1), rgba(214, 224, 236, 0.1)) right 1rem bottom 1rem / 1.5rem 1px no-repeat,
        linear-gradient(rgba(214, 224, 236, 0.1), rgba(214, 224, 236, 0.1)) right 1rem bottom 1rem / 1px 1.5rem no-repeat;
    pointer-events: none;
}

.resume-identity-card,
.resume-meta-card,
.resume-shell {
    padding: clamp(1.15rem, 2vw, 1.8rem);
}

.resume-page-label {
    margin: 0;
    color: rgba(185, 197, 212, 0.72);
    font-family: var(--font-tech);
    font-size: 0.72rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.resume-label-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
}

.resume-availability-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    min-height: 2rem;
    padding: 0.38rem 0.72rem;
    border: 1px solid rgba(182, 197, 214, 0.12);
    border-radius: 999px;
    background:
        linear-gradient(180deg, rgba(10, 15, 21, 0.74), rgba(5, 9, 13, 0.94)),
        linear-gradient(120deg, rgba(255, 255, 255, 0.02), transparent 28%);
    color: rgba(226, 236, 246, 0.94);
    font-family: var(--font-tech);
    font-size: 0.66rem;
    letter-spacing: 0.2em;
    line-height: 1;
    text-transform: uppercase;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.resume-availability-dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 999px;
    background: #72f2a6;
    box-shadow:
        0 0 0 0 rgba(114, 242, 166, 0.38),
        0 0 14px rgba(114, 242, 166, 0.44);
    animation: resume-availability-pulse 1.8s ease-in-out infinite;
}

@keyframes resume-availability-pulse {
    0%,
    100% {
        opacity: 1;
        transform: scale(1);
        box-shadow:
            0 0 0 0 rgba(114, 242, 166, 0.32),
            0 0 14px rgba(114, 242, 166, 0.42);
    }

    50% {
        opacity: 0.78;
        transform: scale(0.88);
        box-shadow:
            0 0 0 7px rgba(114, 242, 166, 0),
            0 0 18px rgba(114, 242, 166, 0.28);
    }
}

.resume-page-title {
    margin: 1rem 0 0;
    max-width: 11ch;
    color: var(--color-text);
    font-family: var(--font-heading);
    font-size: clamp(3rem, 8vw, 5.6rem);
    font-weight: 800;
    line-height: 0.93;
    letter-spacing: -0.08em;
}

.resume-contact-lines {
    display: grid;
    gap: 0.45rem;
    margin-top: 1.15rem;
}

.resume-contact-lines p {
    margin: 0;
    color: rgba(187, 201, 216, 0.88);
    font-size: clamp(0.98rem, 1.35vw, 1.06rem);
    line-height: 1.6;
}

.resume-contact-lines a {
    color: rgba(222, 234, 248, 0.96);
    text-decoration: none;
    border-bottom: 1px solid rgba(222, 234, 248, 0.18);
    overflow-wrap: anywhere;
}

.resume-contact-lines span {
    display: inline-block;
    margin-inline: 0.42rem;
    color: rgba(156, 171, 188, 0.5);
}

.resume-flag {
    display: inline-flex;
    align-items: center;
    margin-left: 0.38rem;
    font-size: 0.96em;
    line-height: 1;
    transform: translateY(0.02em);
}

.resume-meta-card {
    display: grid;
    gap: 1rem;
}

.resume-meta-top {
    display: grid;
    gap: 1rem;
    align-items: center;
}

.resume-portrait-frame {
    position: relative;
    width: min(100%, 10.2rem);
    aspect-ratio: 1;
    overflow: hidden;
    border: 1px solid rgba(182, 197, 214, 0.14);
    border-radius: 1.2rem;
    background:
        radial-gradient(circle at top, rgba(222, 232, 243, 0.12), transparent 58%),
        linear-gradient(180deg, rgba(10, 15, 21, 0.96), rgba(5, 8, 12, 0.96));
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22);
}

.resume-portrait {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 22%;
}

.resume-meta-stack {
    display: grid;
    gap: 0.72rem;
}

.resume-meta-item {
    display: grid;
    gap: 0.16rem;
}

.resume-meta-item span {
    color: rgba(175, 189, 205, 0.66);
    font-family: var(--font-tech);
    font-size: 0.68rem;
    letter-spacing: 0.2em;
    line-height: 1.4;
    text-transform: uppercase;
}

.resume-meta-item strong {
    color: var(--color-text);
    font-family: var(--font-heading);
    font-size: 0.98rem;
    font-weight: 700;
    letter-spacing: -0.03em;
}

.resume-meta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.resume-meta-actions .btn {
    min-height: 3.4rem;
    border-radius: 0.5rem;
}

.resume-section-stack {
    margin-top: 1rem;
}

.resume-section-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
}

.resume-profile-copy {
    display: grid;
    gap: 1rem;
    margin-top: 0.95rem;
}

.resume-profile-copy p,
.resume-entry-summary {
    margin: 0;
    color: rgba(184, 198, 213, 0.9);
    font-size: 1rem;
    line-height: 1.72;
}

.resume-skill-cloud,
.resume-inline-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.68rem;
    margin-top: 0.9rem;
}

.resume-skill-pill,
.resume-inline-pill {
    display: inline-flex;
    align-items: center;
    min-height: 2.45rem;
    padding: 0.52rem 0.86rem;
    border: 1px solid rgba(182, 197, 214, 0.14);
    border-radius: 999px;
    background:
        linear-gradient(180deg, rgba(10, 15, 21, 0.78), rgba(5, 9, 13, 0.92)),
        linear-gradient(120deg, rgba(255, 255, 255, 0.02), transparent 28%);
    color: rgba(223, 233, 245, 0.92);
    font-family: var(--font-body);
    font-size: 0.96rem;
    line-height: 1.25;
}

.resume-section-heading {
    display: grid;
    gap: 0.8rem;
    margin-bottom: 1.1rem;
}

.resume-section-title {
    margin: 0;
    max-width: 18ch;
    color: var(--color-text);
    font-family: var(--font-heading);
    font-size: clamp(2.05rem, 5vw, 3.75rem);
    font-weight: 800;
    line-height: 0.98;
    letter-spacing: -0.06em;
}

.resume-timeline {
    position: relative;
}

.resume-entry {
    display: grid;
    gap: 0.8rem;
}

.resume-timeline--experience {
    gap: 1.25rem;
}

.resume-timeline--education {
    gap: 1rem;
}

.resume-entry--experience {
    position: relative;
    grid-template-columns: minmax(0, 1fr);
    gap: 0.65rem;
    padding-left: 2.7rem;
}

.resume-date-block {
    display: flex;
    align-items: flex-start;
}

.resume-date-block--timeline {
    padding-top: 0.2rem;
}

.resume-entry-marker {
    position: absolute;
    top: 0;
    left: 0.7rem;
    width: 1.2rem;
    height: 100%;
    pointer-events: none;
}

.resume-entry-marker-dot {
    position: absolute;
    top: 0.72rem;
    left: 50%;
    width: 0.9rem;
    height: 0.9rem;
    border: 1px solid rgba(221, 232, 244, 0.3);
    border-radius: 999px;
    background:
        radial-gradient(circle, rgba(236, 243, 250, 0.92), rgba(236, 243, 250, 0.52) 44%, rgba(236, 243, 250, 0.14) 72%, rgba(236, 243, 250, 0) 100%);
    box-shadow:
        0 0 0 0 rgba(226, 236, 246, 0.24),
        0 0 18px rgba(217, 229, 241, 0.12);
    transform: translateX(-50%) scale(0.35);
    opacity: 0;
    transition: transform 0.72s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.42s ease, box-shadow 0.72s ease;
}

.resume-entry-marker-line {
    position: absolute;
    top: 1.95rem;
    bottom: -1.35rem;
    left: 50%;
    width: 1px;
    background: linear-gradient(180deg, rgba(227, 236, 245, 0.46), rgba(162, 177, 194, 0.3) 40%, rgba(102, 117, 136, 0.1) 100%);
    transform: translateX(-50%) scaleY(0);
    transform-origin: top;
    opacity: 0;
    transition: transform 1s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.48s ease;
}

.resume-entry--experience:last-child .resume-entry-marker-line {
    bottom: 2rem;
}

.resume-timeline--education .resume-entry--experience:last-child .resume-entry-marker-line {
    bottom: 1.9rem;
}

.resume-date-block span {
    display: inline-flex;
    align-items: center;
    padding: 0.55rem 0.78rem;
    border: 1px solid rgba(182, 197, 214, 0.14);
    border-radius: 999px;
    background: rgba(7, 11, 16, 0.64);
    color: rgba(214, 225, 238, 0.9);
    font-family: var(--font-tech);
    font-size: 0.72rem;
    letter-spacing: 0.17em;
    line-height: 1.4;
    text-transform: uppercase;
}

.resume-date-block--timeline span {
    padding: 0;
    border: 0;
    border-radius: 0;
    background: none;
    color: rgba(222, 232, 244, 0.78);
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    box-shadow: none;
}

.resume-entry--experience.is-visible .resume-entry-marker-dot {
    opacity: 1;
    transform: translateX(-50%) scale(1);
    box-shadow:
        0 0 0 8px rgba(225, 236, 246, 0.08),
        0 0 20px rgba(217, 229, 241, 0.14);
}

.resume-entry--experience.is-visible .resume-entry-marker-line {
    opacity: 1;
    transform: translateX(-50%) scaleY(1);
}

.resume-entry-role,
.resume-entry-company {
    margin: 0;
}

.resume-entry-header {
    display: grid;
    gap: 0.8rem;
}

.resume-entry-role {
    color: var(--color-text);
    font-family: var(--font-heading);
    font-size: clamp(1.32rem, 2.4vw, 1.72rem);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.045em;
}

.resume-entry-company {
    margin-top: 0.52rem;
    color: rgba(179, 193, 209, 0.72);
    font-family: var(--font-tech);
    font-size: 0.76rem;
    letter-spacing: 0.18em;
    line-height: 1.6;
    text-transform: uppercase;
}

.resume-entry-context {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.resume-entry-context-pill {
    display: inline-flex;
    align-items: center;
    min-height: 2rem;
    padding: 0.34rem 0.68rem;
    border: 1px solid rgba(182, 197, 214, 0.12);
    border-radius: 999px;
    background:
        linear-gradient(180deg, rgba(10, 15, 21, 0.68), rgba(6, 10, 14, 0.9)),
        linear-gradient(120deg, rgba(255, 255, 255, 0.02), transparent 28%);
    color: rgba(214, 225, 238, 0.88);
    font-family: var(--font-tech);
    font-size: 0.66rem;
    letter-spacing: 0.16em;
    line-height: 1.2;
    text-transform: uppercase;
}

.resume-entry-divider {
    width: 100%;
    height: 1px;
    margin-top: 0.95rem;
    background: linear-gradient(90deg, rgba(226, 236, 246, 0.24), rgba(140, 154, 171, 0.08) 52%, rgba(255, 255, 255, 0));
}

.resume-bullet-list {
    display: grid;
    gap: 0.7rem;
    margin: 1rem 0 0;
    padding-left: 1.1rem;
    color: rgba(184, 198, 213, 0.9);
}

.resume-bullet-list li {
    font-size: 0.98rem;
    line-height: 1.68;
}

.resume-bullet-list--compact {
    gap: 0.9rem;
}

.resume-bullet-list--compact li {
    line-height: 1.72;
}

.resume-inline-link {
    display: inline-block;
    margin-top: 0.22rem;
    color: rgba(228, 237, 247, 0.94);
    text-decoration: none;
    border-bottom: 1px solid rgba(228, 237, 247, 0.18);
    overflow-wrap: anywhere;
}

.resume-inline-link:hover {
    color: rgba(247, 250, 252, 0.98);
    border-bottom-color: rgba(247, 250, 252, 0.34);
}

.resume-phone-badge {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    gap: 0.7rem;
    margin-top: 1.2rem;
    padding: 0.72rem;
    border: 1px solid rgba(182, 197, 214, 0.14);
    border-radius: 0.82rem;
    background:
        linear-gradient(180deg, rgba(8, 13, 18, 0.84), rgba(5, 8, 12, 0.96)),
        linear-gradient(120deg, rgba(255, 255, 255, 0.025), transparent 30%);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.03),
        0 20px 40px rgba(0, 0, 0, 0.16);
}

.resume-phone-call {
    flex: 1 1 15rem;
    display: grid;
    gap: 0.22rem;
    min-height: 3.4rem;
    align-content: center;
    padding: 0.15rem 0.18rem;
    color: inherit;
    text-decoration: none;
}

.resume-phone-label {
    color: rgba(186, 199, 214, 0.66);
    font-family: var(--font-tech);
    font-size: 0.62rem;
    letter-spacing: 0.2em;
    line-height: 1.2;
    text-transform: uppercase;
}

.resume-phone-call strong {
    color: rgba(244, 248, 252, 0.98);
    font-family: var(--font-heading);
    font-size: 1.12rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.06;
}

.resume-phone-copy {
    flex: 0 0 auto;
    min-width: 8.8rem;
    min-height: 3.4rem;
    padding: 0 1rem;
    border: 1px solid rgba(182, 197, 214, 0.14);
    border-radius: 0.66rem;
    background:
        linear-gradient(180deg, rgba(13, 19, 27, 0.86), rgba(8, 12, 17, 0.98)),
        linear-gradient(120deg, rgba(255, 255, 255, 0.02), transparent 28%);
    color: rgba(228, 237, 247, 0.94);
    font-family: var(--font-tech);
    font-size: 0.68rem;
    letter-spacing: 0.16em;
    line-height: 1;
    text-transform: uppercase;
    transition: transform 0.25s ease, border-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.resume-phone-copy:hover {
    transform: translateY(-1px);
    border-color: rgba(228, 237, 247, 0.22);
    color: rgba(247, 250, 252, 0.98);
    box-shadow: 0 0 0 1px rgba(228, 237, 247, 0.04);
}

.resume-phone-copy.is-copied {
    border-color: rgba(114, 242, 166, 0.22);
    color: rgba(114, 242, 166, 0.96);
}

.resume-entry-shell--experience {
    padding: clamp(1.2rem, 2vw, 1.9rem);
}

.resume-timeline--experience .resume-entry-shell--experience {
    border-color: rgba(189, 204, 220, 0.16);
    background:
        radial-gradient(circle at top right, rgba(220, 230, 240, 0.08), transparent 34%),
        linear-gradient(180deg, rgba(8, 12, 17, 0.9), rgba(4, 7, 11, 0.96)),
        linear-gradient(140deg, rgba(255, 255, 255, 0.02), transparent 28%, rgba(255, 255, 255, 0.01) 74%, transparent);
}

.resume-timeline--experience .resume-bullet-list {
    gap: 0.9rem;
    margin-top: 1.05rem;
    padding-left: 0;
    max-width: 65ch;
    list-style: none;
}

.resume-timeline--experience .resume-bullet-list li {
    position: relative;
    padding-left: 1.2rem;
    color: rgba(190, 203, 217, 0.92);
    line-height: 1.72;
}

.resume-timeline--experience .resume-bullet-list li::before {
    content: '';
    position: absolute;
    top: 0.72rem;
    left: 0;
    width: 0.42rem;
    height: 0.42rem;
    border-radius: 999px;
    background: rgba(225, 235, 245, 0.9);
    box-shadow: 0 0 0 5px rgba(225, 235, 245, 0.08);
}

.resume-timeline--experience .resume-bullet-list strong {
    color: rgba(246, 249, 252, 0.98);
    font-weight: 600;
}

.resume-entry--experience.is-current .resume-entry-shell--experience {
    border-color: rgba(220, 232, 244, 0.24);
    box-shadow:
        0 34px 84px rgba(0, 0, 0, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.05),
        0 0 0 1px rgba(220, 232, 244, 0.04);
}

.resume-entry--experience.is-current .resume-entry-context-pill {
    border-color: rgba(220, 232, 244, 0.16);
    color: rgba(234, 241, 248, 0.94);
}

.resume-entry--experience.is-current .resume-date-block--timeline span {
    color: rgba(240, 246, 252, 0.9);
}

.resume-entry--experience.is-current .resume-entry-marker-dot {
    border-color: rgba(233, 241, 248, 0.48);
    background:
        radial-gradient(circle, rgba(247, 250, 252, 0.98), rgba(247, 250, 252, 0.64) 40%, rgba(247, 250, 252, 0.2) 72%, rgba(247, 250, 252, 0) 100%);
}

.resume-entry--experience.is-current .resume-entry-divider {
    background: linear-gradient(90deg, rgba(239, 246, 252, 0.32), rgba(163, 177, 194, 0.12) 56%, rgba(255, 255, 255, 0));
}

.resume-entry-summary {
    margin-top: 0.95rem;
}

.resume-credentials-grid {
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
    gap: 1rem;
}

.resume-list-shell {
    min-height: 100%;
    display: grid;
    align-content: start;
}

.resume-strengths-shell {
    margin-top: 1rem;
}

.resume-list-shell .resume-section-header {
    margin-bottom: 0.9rem;
}

.resume-list-shell .resume-inline-list {
    margin-top: 0.15rem;
}

.resume-bullet-list--stacked {
    counter-reset: resume-stacked-item;
    gap: 0.78rem;
    margin-top: 0.15rem;
    padding-left: 0;
    list-style: none;
}

.resume-bullet-list--stacked li {
    counter-increment: resume-stacked-item;
    position: relative;
    padding: 0.92rem 1rem 0.98rem 3rem;
    border: 1px solid rgba(182, 197, 214, 0.12);
    border-radius: 0.72rem;
    background:
        linear-gradient(180deg, rgba(10, 15, 21, 0.72), rgba(5, 9, 13, 0.94)),
        linear-gradient(120deg, rgba(255, 255, 255, 0.018), transparent 30%);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.025),
        0 14px 30px rgba(0, 0, 0, 0.12);
    color: rgba(190, 203, 217, 0.94);
    line-height: 1.72;
}

.resume-bullet-list--stacked li::before {
    content: counter(resume-stacked-item, decimal-leading-zero);
    position: absolute;
    top: 1rem;
    left: 1rem;
    color: rgba(204, 216, 230, 0.58);
    font-family: var(--font-tech);
    font-size: 0.62rem;
    letter-spacing: 0.18em;
    line-height: 1;
}

.resume-bullet-list--stacked li::after {
    content: '';
    position: absolute;
    top: 1rem;
    left: 2.1rem;
    width: 0.42rem;
    height: 1px;
    background: rgba(204, 216, 230, 0.3);
}

.resume-bullet-list--dense li {
    font-size: 0.94rem;
}

.resume-list-shell--certifications .resume-bullet-list--stacked li {
    line-height: 1.66;
}

.resume-list-shell--references .resume-bullet-list--stacked li {
    padding-bottom: 1.04rem;
}

@media (min-width: 640px) {
    .resume-access-form {
        grid-template-columns: minmax(0, 1fr) auto;
    }

    .resume-access-submit {
        min-width: 10.25rem;
    }

    .resume-top-grid {
        grid-template-columns: minmax(0, 1.04fr) minmax(18rem, 0.96fr);
        align-items: stretch;
    }

    .resume-meta-top {
        grid-template-columns: auto minmax(0, 1fr);
    }

    .resume-portrait-frame {
        width: 9rem;
    }

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

@media (min-width: 1024px) {
    .resume-top-grid {
        grid-template-columns: minmax(0, 1.16fr) minmax(20rem, 0.84fr);
        gap: 1.25rem;
    }

    .resume-section-stack {
        grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
    }

    .resume-timeline {
        gap: 1rem;
    }

    .resume-entry {
        grid-template-columns: minmax(13.5rem, 0.28fr) minmax(0, 1fr);
        align-items: start;
    }

    .resume-entry--experience {
        grid-template-columns: minmax(13rem, 0.28fr) 2rem minmax(0, 1fr);
        gap: 1.1rem;
        padding-left: 0;
    }

    .resume-entry--experience .resume-date-block {
        justify-content: flex-end;
        padding-top: 0.58rem;
        text-align: right;
    }

    .resume-entry--experience .resume-entry-marker {
        position: relative;
        top: auto;
        left: auto;
        width: auto;
        height: 100%;
    }

    .resume-entry--experience .resume-entry-shell {
        min-height: 100%;
    }

    .resume-entry--experience .resume-entry-marker-dot {
        top: 0.82rem;
    }

    .resume-entry--experience .resume-entry-marker-line {
        top: 2.05rem;
        bottom: -1.4rem;
    }

    .resume-entry--experience:last-child .resume-entry-marker-line {
        bottom: 2.1rem;
    }

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

@media (max-width: 767px) {
    .resume-greeting-banner {
        width: 100%;
        margin-bottom: 0.85rem;
    }

    .scroll-prompt {
        max-width: 15.5rem;
        padding: 0.58rem 0.72rem;
    }

    .scroll-prompt p {
        font-size: 0.78rem;
    }

    .resume-greeting-banner-inner {
        padding: 0.78rem 0.88rem;
    }

    .resume-access-gate {
        align-items: flex-end;
        padding: 1rem;
    }

    .resume-access-gate-panel {
        width: 100%;
        border-radius: 1rem;
    }

    .resume-phone-copy {
        width: 100%;
    }
}

.footer-link-list a:hover {
    color: var(--color-text) !important;
    transform: translateX(0.22rem);
}

.footer-link-list a span:first-child {
    color: inherit;
    font-family: var(--font-heading);
    font-size: 0.96rem;
    font-weight: 600;
    letter-spacing: -0.03em;
}

.footer-link-arrow {
    color: rgba(232, 223, 102, 0.86);
    font-family: var(--font-tech);
    font-size: 0.62rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    white-space: nowrap;
}

.footer-tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.58rem;
    margin: 0.95rem 0 0;
    padding: 0;
    list-style: none;
}

.footer-tag-list li {
    padding: 0.5rem 0.72rem;
    border: 1px solid rgba(182, 197, 214, 0.12);
    border-radius: 0.36rem;
    background: linear-gradient(180deg, rgba(10, 14, 19, 0.74), rgba(6, 10, 14, 0.92));
    color: var(--color-text-muted);
    font-family: var(--font-tech);
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    line-height: 1.35;
    text-transform: uppercase;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 1.1rem;
    padding-top: 1.05rem;
    border-top: 1px solid rgba(182, 197, 214, 0.1);
}

.footer-copyright {
    margin: 0;
    color: rgba(160, 174, 190, 0.78);
    font-size: 0.84rem;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.85rem;
    flex-wrap: wrap;
}

.footer-action-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.5rem;
    padding: 0 0.9rem;
    border: 1px solid rgba(182, 197, 214, 0.14);
    border-radius: 0.38rem;
    background: linear-gradient(180deg, rgba(10, 14, 19, 0.76), rgba(5, 9, 13, 0.94));
    color: var(--color-text-muted);
    font-family: var(--font-tech);
    font-size: 0.68rem;
    letter-spacing: 0.16em;
    line-height: 1;
    text-transform: uppercase;
    transition:
        color 0.25s ease,
        border-color 0.25s ease,
        background-color 0.25s ease,
        transform 0.25s ease;
}

.footer-action-link:hover {
    color: var(--color-text);
    border-color: rgba(232, 223, 102, 0.24);
    background: linear-gradient(180deg, rgba(12, 18, 24, 0.84), rgba(6, 10, 14, 0.98));
    transform: translateY(-1px);
}

:focus-visible {
    outline: 2px solid rgba(217, 227, 240, 0.68);
    outline-offset: 4px;
    border-radius: var(--radius-control);
}

#back-to-top:focus-visible {
    outline-offset: 3px;
}

@media (max-width: 1024px) {
    #shortcut-hint {
        display: none;
    }

    #main-header {
        border-bottom-color: rgba(182, 197, 214, 0.08);
        background: rgba(7, 11, 16, 0.84);
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
        box-shadow: 0 14px 32px rgba(0, 0, 0, 0.16);
    }

    #main-header .container,
    main .container,
    footer .container {
        max-width: 42rem !important;
    }

    #main-header .container {
        grid-template-columns: 1fr auto;
        gap: 1rem;
        min-height: 4.5rem;
        padding-inline: 1rem !important;
    }

    #main-header nav {
        display: none !important;
    }

    #open-menu-btn {
        display: inline-flex;
    }

    #mobile-menu {
        align-items: stretch;
        justify-content: flex-start;
        padding: max(1rem, env(safe-area-inset-top)) 1rem 1rem;
    }

    .mobile-menu-panel {
        display: grid;
        grid-template-rows: auto auto 1fr auto;
        margin-top: auto;
        margin-bottom: auto;
    }

    #top {
        min-height: auto;
        padding-top: 7.25rem;
        padding-bottom: 3.75rem;
    }

    #top .container > .grid {
        grid-template-columns: 1fr;
        grid-template-areas:
            "copy"
            "visual"
            "metrics";
        gap: 2rem;
    }

    .scroll-prompt-wrap {
        position: static;
        margin-top: 0.4rem;
        justify-content: flex-start;
    }

    #top .section-kicker {
        display: inline-flex;
        align-items: center;
        padding: 0.45rem 0.75rem;
        border: 1px solid rgba(182, 197, 214, 0.12);
        border-radius: var(--radius-pill);
        background: rgba(10, 15, 22, 0.56);
    }

    #top h1 {
        max-width: 10ch;
        font-size: clamp(3.4rem, 9.2vw, 5.5rem) !important;
    }

    #top .text-lg {
        max-width: 34rem;
        font-size: 1.02rem !important;
        line-height: 1.55;
    }

    .hero-copy,
    .hero-visual,
    .hero-portrait,
    .hero-aside {
        max-width: 100%;
        margin-inline: auto;
    }

    .hero-visual {
        width: 100%;
        justify-self: stretch;
        max-width: 31rem;
        padding: 0.75rem;
        border: 1px solid rgba(182, 197, 214, 0.12);
        border-radius: var(--radius-frame);
        background:
            radial-gradient(circle at top right, rgba(217, 227, 240, 0.08), transparent 36%),
            linear-gradient(180deg, rgba(12, 18, 25, 0.9), rgba(8, 12, 18, 0.84));
        box-shadow: var(--shadow-card);
    }

    .hero-portrait {
        aspect-ratio: 4 / 5.1;
        max-height: none;
        object-position: center 30%;
        box-shadow: none;
    }

    .hero-aside {
        position: relative !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        width: calc(100% - 0.85rem);
        margin-top: -1.35rem !important;
        margin-right: 0 !important;
        margin-left: auto !important;
    }

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

    .hero-actions {
        gap: 0.85rem !important;
    }

    .hero-actions .resume-capture,
    .hero-actions .btn {
        min-height: 3.5rem;
        font-size: 1rem !important;
    }

    .hero-metrics {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.85rem !important;
        margin-top: 0.25rem;
    }

    .hero-metric {
        min-height: 0;
        padding: 1rem !important;
    }

    .hero-metric p:first-child {
        font-size: 1.85rem !important;
    }

    .hero-metric p:last-child {
        max-width: none;
        font-size: 0.78rem !important;
        line-height: 1.45;
    }

    #advisory,
    #genai-capability,
    #services,
    #sectors,
    #proof,
    #insights,
    #approach,
    #contact {
        padding-top: 5.25rem !important;
        padding-bottom: 5.25rem !important;
    }

    #services .container > .text-center,
    #sectors .container > .text-center,
    #proof .container > .text-center,
    #insights .container > .text-center {
        text-align: left !important;
        margin-bottom: 1.75rem !important;
        padding-left: 1rem;
        border-left: 1px solid rgba(182, 197, 214, 0.16);
    }

    #services .container > .text-center p,
    #sectors .container > .text-center p,
    #proof .container > .text-center p,
    #insights .container > .text-center p {
        max-width: 34rem;
    }

    .genai-capability-layout,
    .genai-capability-grid,
    #services .grid,
    #sectors .grid,
    .proof-grid,
    .proof-support-grid,
    .insight-grid,
    .approach-layout {
        gap: 1rem !important;
    }

    .project-card,
    .approach-panel,
    .contact-panel {
        padding: 1.4rem !important;
    }

    .project-card h3 {
        max-width: none;
        font-size: clamp(1.35rem, 4.6vw, 1.8rem);
    }

    .project-card a {
        font-size: 0.72rem;
    }

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

    .provider-tile {
        min-height: 4.7rem;
        padding: 0.82rem 0.86rem;
    }

    .provider-board-head {
        grid-template-columns: 1fr;
        gap: 0.9rem;
    }

    .provider-board-note {
        justify-self: start;
        max-width: none;
        text-align: left;
    }

    .provider-logo-frame {
        width: 3.85rem;
        height: 2.42rem;
    }

    .provider-logo-frame--wide {
        width: 4.45rem;
    }

    .provider-tile-copy span {
        font-size: 0.62rem;
    }

    .provider-badge {
        font-size: 0.88rem;
    }

    .proof-support-card--leadership li {
        padding-left: 1rem;
    }

    .approach-steps {
        padding-left: 0;
    }

    .philosophy-list {
        text-align: left !important;
    }

    .philosophy-item {
        font-size: clamp(2.15rem, 8vw, 4.25rem) !important;
    }

    #contact {
        text-align: left !important;
    }

    .contact-panel {
        margin-inline: 0 !important;
    }

    .contact-actions {
        gap: 0.75rem !important;
    }

    .contact-actions .resume-capture,
    .contact-actions .btn {
        min-height: 3.65rem;
    }

    .footer-primary,
    .footer-panels,
    .footer-bottom {
        text-align: left !important;
    }

    .footer-shell-hud {
        grid-template-columns: auto 1fr;
        row-gap: 0.5rem;
    }

    .footer-shell-hud span:last-child {
        grid-column: 1 / -1;
        justify-self: start;
    }

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

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

    .footer-bottom {
        align-items: flex-start !important;
        flex-direction: column;
    }

    .footer-bottom-links {
        justify-content: flex-start;
    }

    .approach-steps {
        padding-left: 0;
    }

    .approach-steps::before,
    .philosophy-item::before {
        display: none;
    }

}

@media (max-width: 1400px) {
    #shortcut-hint {
        display: none;
    }

    #main-header .container {
        gap: 1.5rem;
    }

    #main-header nav {
        justify-self: end;
    }

    .nav-link {
        font-size: 0.72rem;
        letter-spacing: 0.14em;
    }
}

@media (max-height: 920px) and (min-width: 1025px) {
    #shortcut-hint {
        display: none;
    }

    #top {
        min-height: calc(100svh - 0.5rem);
        padding-top: 6.1rem;
        padding-bottom: 2rem;
    }

    #top .container > .grid {
        grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
        gap: clamp(1.5rem, 2.5vw, 2.4rem);
    }

    #top h1 {
        max-width: 11ch;
        font-size: clamp(3.2rem, 4.95vw, 5.35rem) !important;
    }

    #top .text-lg {
        max-width: 31rem;
        font-size: clamp(0.96rem, 1.05vw, 1.12rem) !important;
    }

    .hero-actions,
    .hero-metrics {
        margin-top: 1rem;
    }

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

    .hero-metrics {
        gap: 0.75rem !important;
    }

    .hero-metric {
        padding: 0.85rem !important;
    }

    .hero-metric p:first-child {
        font-size: 1.6rem !important;
    }

    .hero-metric p:last-child {
        font-size: 0.74rem !important;
        line-height: 1.35;
    }

    .hero-visual {
        width: min(100%, 35rem);
    }

    .hero-portrait {
        max-height: min(67vh, 38rem);
        object-position: center 30%;
    }

    .hero-aside {
        padding: 0.85rem !important;
    }

    .hero-aside .grid {
        gap: 0.65rem !important;
    }

    .hero-aside .grid p {
        padding: 0.75rem !important;
        font-size: 0.76rem;
    }
}

@media (max-height: 820px) and (min-width: 1025px) {
    #top {
        padding-top: 5.7rem;
        padding-bottom: 1.75rem;
    }

    #top h1 {
        max-width: 11.2ch;
        font-size: clamp(2.9rem, 4.4vw, 4.7rem) !important;
    }

    #top .text-lg {
        max-width: 30rem;
        font-size: clamp(0.94rem, 0.98vw, 1.04rem) !important;
    }

    .hero-actions {
        margin-top: 0.85rem !important;
    }

    .hero-actions .btn {
        padding: 0.82rem 1.4rem !important;
        font-size: 0.98rem !important;
    }

    .hero-metrics {
        gap: 0.65rem !important;
    }

    .hero-metric {
        padding: 0.8rem !important;
    }

    .hero-metric p:first-child {
        font-size: 1.45rem !important;
    }

    .hero-metric p:last-child {
        font-size: 0.7rem !important;
    }

    .hero-visual {
        width: min(100%, 34rem);
    }

    .hero-portrait {
        max-height: min(62vh, 35rem);
        object-position: center 28%;
    }

    .hero-aside .grid p {
        font-size: 0.72rem;
    }
}

@media (max-width: 1180px) and (min-width: 1025px) {
    .hero-metrics {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .proof-grid .proof-card:first-child {
        grid-column: span 2;
        grid-row: span 2;
        min-height: 26rem;
    }

    .proof-grid .proof-card:nth-child(2),
    .proof-grid .proof-card:nth-child(3) {
        min-height: 12.25rem;
    }

    .proof-grid .proof-card:nth-child(4) {
        grid-column: span 2;
        min-height: 12.25rem;
    }

    .insight-grid .insight-card--feature {
        grid-column: span 2;
        min-height: 24rem;
    }
}

@media (max-width: 767px) {
    :root {
        --radius-control: 0.68rem;
        --radius-pill: 0.54rem;
        --radius-card: 0.82rem;
        --radius-panel: 0.94rem;
        --radius-frame: 1.04rem;
    }

    html {
        scroll-padding-top: 5.25rem;
    }

    body {
        padding-bottom: calc(env(safe-area-inset-bottom) + 4.8rem);
    }

    body::before {
        opacity: 0.11;
        background-size: 40px 40px;
    }

    #main-header {
        background: linear-gradient(180deg, rgba(7, 11, 16, 0.92), rgba(7, 11, 16, 0.58) 72%, transparent);
        box-shadow: 0 16px 34px rgba(0, 0, 0, 0.18);
        padding-top: 0.48rem !important;
        padding-bottom: 0.48rem !important;
    }

    #main-header .container {
        grid-template-columns: 1fr auto;
        gap: 0.85rem;
        min-height: auto;
        padding-inline: 0.75rem !important;
    }

    .desktop-brand {
        display: none;
    }

    .brand-link {
        max-width: calc(100% - 3.25rem);
        padding: 0.08rem 0.28rem 0.08rem 0.05rem;
        border: 1px solid rgba(214, 227, 243, 0.1);
        border-radius: 999px;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.018));
        box-shadow:
            0 10px 24px rgba(0, 0, 0, 0.14),
            inset 0 1px 0 rgba(255, 255, 255, 0.06);
        white-space: normal;
    }

    .mobile-brand {
        display: inline-flex;
        align-items: center;
        gap: 0.54rem;
        max-width: min(100%, 15rem);
    }

    .mobile-brand-avatar-frame {
        width: 2.46rem;
        height: 2.46rem;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
    }

    .mobile-brand-name {
        font-size: 0.88rem;
    }

    .mobile-brand-role {
        font-size: 0.5rem;
        letter-spacing: 0.14em;
    }

    #open-menu-btn {
        display: inline-flex;
        width: 2.44rem;
        height: 2.44rem;
        border-color: rgba(214, 227, 243, 0.12);
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015));
        box-shadow:
            0 10px 22px rgba(0, 0, 0, 0.14),
            inset 0 1px 0 rgba(255, 255, 255, 0.08);
    }

    #open-menu-btn svg {
        width: 0.98rem;
        height: 0.98rem;
    }

    #mobile-menu {
        align-items: stretch;
        justify-content: stretch;
        padding-inline: 0.7rem;
        padding-bottom: calc(env(safe-area-inset-bottom) + 0.7rem);
    }

    .mobile-menu-panel {
        width: 100%;
        max-width: none;
        height: calc(100svh - env(safe-area-inset-top) - env(safe-area-inset-bottom) - 1rem);
        min-height: 0;
        padding: 0.95rem;
        overflow: hidden;
        grid-template-rows: auto auto auto 1fr auto;
    }

    .mobile-menu-handle {
        margin-bottom: 0.8rem;
    }

    .mobile-menu-profile-avatar-frame {
        width: 2.8rem;
        height: 2.8rem;
    }

    .mobile-menu-label {
        font-size: 0.96rem;
    }

    .mobile-menu-subtitle {
        font-size: 0.56rem;
        letter-spacing: 0.2em;
    }

    .mobile-menu-intro {
        margin-top: 0.85rem;
        padding-bottom: 0.85rem;
        font-size: 0.84rem;
        line-height: 1.5;
    }

    .mobile-menu-group {
        margin-top: 0.85rem;
    }

    .mobile-menu-group-label {
        margin-bottom: 0.55rem;
    }

    .mobile-menu-nav .nav-link,
    #mobile-menu nav .nav-link {
        padding: 0.82rem 0.88rem;
        font-size: 1rem;
    }

    .mobile-menu-nav {
        min-height: 0;
        gap: 0.5rem;
        padding-right: 0.1rem;
        overflow-y: auto;
        scrollbar-width: none;
    }

    .mobile-menu-nav::-webkit-scrollbar {
        display: none;
    }

    .mobile-menu-actions {
        gap: 0.55rem;
        margin-top: 0.7rem;
        padding-top: 0.7rem;
    }

    .mobile-menu-actions .btn {
        min-height: 3.05rem;
        font-size: 0.92rem !important;
    }

    #back-to-top {
        right: 0.8rem;
        bottom: calc(env(safe-area-inset-bottom) + 5.9rem);
        width: 2.9rem;
        height: 2.9rem;
    }

    #top {
        min-height: auto;
        padding-top: 4.55rem;
        padding-bottom: 2.2rem;
    }

    #top .container {
        padding-inline: 0.78rem !important;
    }

    #top .container > .grid {
        grid-template-areas: "copy";
        gap: 1.1rem;
    }

    .hero-copy {
        display: flex;
        flex-direction: column;
        width: 100%;
        min-width: 0;
        max-width: none;
    }

    #top .section-kicker {
        width: fit-content;
        padding: 0.34rem 0.56rem;
        border: 1px solid rgba(182, 197, 214, 0.12);
        background: rgba(10, 15, 22, 0.58);
        font-size: 0.54rem !important;
        letter-spacing: 0.16em;
    }

    #top h1 {
        max-width: 7.45ch;
        margin-top: 0.56rem;
        font-size: clamp(2.06rem, 8.95vw, 3.12rem) !important;
        line-height: 0.91;
    }

    .hero-title-line {
        display: block;
    }

    #top .text-lg {
        margin-top: 0.82rem !important;
        max-width: 31ch;
        width: 100%;
        min-width: 0;
        font-size: 0.95rem !important;
        line-height: 1.6;
    }

    .hero-visual {
        display: none;
    }

    .hero-aside {
        display: none;
    }

    .hero-aside .grid p {
        padding: 0.85rem !important;
        font-size: 0.8rem;
    }

    .hero-actions {
        margin-top: 0.98rem !important;
        gap: 0.54rem !important;
    }

    .hero-actions .btn {
        min-height: 3rem;
        font-size: 0.88rem !important;
        border-radius: calc(var(--radius-control) + 0.02rem);
    }

    .hero-trust-strip {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.54rem;
        margin-top: 0.82rem;
        width: 100%;
        max-width: 100%;
        min-width: 0;
        padding-bottom: 0.25rem;
        overflow: visible;
    }

    .hero-trust-chip {
        display: block;
        min-height: 3.7rem;
        min-width: 0;
        padding: 0.72rem 0.74rem;
        border: 1px solid rgba(214, 227, 243, 0.12);
        border-radius: calc(var(--radius-card) + 0.04rem);
        background: linear-gradient(180deg, rgba(20, 29, 40, 0.42), rgba(9, 13, 19, 0.28));
        box-shadow:
            0 10px 18px rgba(0, 0, 0, 0.12),
            inset 0 1px 0 rgba(255, 255, 255, 0.06);
    }

    .hero-trust-chip--featured {
        grid-column: 1 / -1;
        min-height: 4.85rem;
    }

    .hero-trust-chip--compact {
        min-height: 3.5rem;
    }

    .hero-trust-chip strong {
        display: block;
        color: var(--color-text);
        font-family: var(--font-heading);
        font-size: 0.9rem;
        font-weight: 700;
        letter-spacing: -0.03em;
        line-height: 1.05;
        text-transform: none;
    }

    .hero-trust-chip--featured strong {
        font-size: 0.96rem;
    }

    .hero-trust-chip--compact strong {
        font-size: 0.84rem;
    }

    .hero-trust-chip span {
        display: block;
        margin-top: 0.22rem;
        color: var(--color-text-muted);
        font-size: 0.69rem;
        line-height: 1.4;
        display: -webkit-box;
        overflow: hidden;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
    }

    .hero-metrics {
        display: none;
    }

    .marquee-section {
        display: none;
    }

    #genai-capability {
        padding-top: 4.9rem !important;
        padding-bottom: 4.9rem !important;
    }

    #genai-capability h2 {
        max-width: 11ch;
        font-size: clamp(2rem, 8.8vw, 2.9rem) !important;
        line-height: 0.97;
    }

    .genai-intro {
        max-width: 31ch;
        font-size: 0.94rem !important;
        line-height: 1.58;
    }

    .genai-capability-layout,
    .genai-capability-grid {
        gap: 0.9rem !important;
    }

    .genai-capability-brief,
    .capability-card {
        padding: 1.15rem !important;
    }

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

    .provider-board {
        padding: 1.15rem !important;
    }

    .provider-tile {
        min-height: 0;
        align-items: center;
        gap: 0.6rem;
        padding: 0.82rem 0.78rem;
    }

    .provider-logo-frame {
        width: 3.3rem;
        height: 2.2rem;
    }

    .provider-logo-frame--wide {
        width: 3.9rem;
    }

    .provider-logo {
        max-width: 1.55rem;
        max-height: 1.18rem;
    }

    .provider-logo--wide {
        max-width: 2.75rem;
        max-height: 0.86rem;
    }

    .provider-logo--gemini {
        max-width: 1.15rem;
        max-height: 1.15rem;
    }

    .provider-logo--xai {
        max-width: 1.02rem;
        max-height: 1.3rem;
    }

    .provider-tile-copy strong {
        font-size: 0.84rem;
    }

    .provider-tile-copy span {
        margin-top: 0.22rem;
        font-size: 0.58rem;
        line-height: 1.18;
    }

    .genai-capability-brief .card-seal {
        margin-bottom: 0.9rem;
    }

    #genai-capability .value-pill {
        font-size: 0.64rem;
        letter-spacing: 0.12em;
    }

    .provider-marquee-section {
        padding-top: 2.9rem !important;
        padding-bottom: 2.9rem !important;
    }

    .provider-marquee-shell {
        margin-top: 1rem !important;
        padding-block: 0.4rem 1.35rem;
        -webkit-mask-image: linear-gradient(to right, transparent, black 4%, black 96%, transparent);
        mask-image: linear-gradient(to right, transparent, black 4%, black 96%, transparent);
    }

    .provider-marquee-loop {
        animation-duration: 26s;
    }

    .provider-marquee-group {
        gap: 1.25rem;
        padding-inline: 0.9rem;
    }

    .provider-badge {
        width: 4rem;
        height: 2.8rem;
        padding: 0.25rem;
    }

    .provider-badge-name {
        display: none;
    }

    .provider-marquee-logo {
        height: 1.45rem;
        max-width: 2.1rem;
        max-height: 1.58rem;
    }

    .provider-marquee-logo--openai {
        height: 1.62rem;
        max-width: 1.62rem;
        max-height: 1.62rem;
    }

    .provider-marquee-logo--gemini {
        height: 1.34rem;
        max-width: 1.34rem;
        max-height: 1.34rem;
    }

    .provider-marquee-logo--xai {
        height: 1.52rem;
        max-width: 1.52rem;
        max-height: 1.52rem;
    }

    .marquee-fade .animate-marquee span,
    .footer-band .animate-marquee-fast span {
        margin-inline: 1rem !important;
    }

    .marquee-fade .animate-marquee span {
        font-size: clamp(2.1rem, 12vw, 3.3rem) !important;
    }

    .footer-band .animate-marquee-fast span {
        font-size: clamp(2.8rem, 18vw, 4.8rem) !important;
    }

    .site-footer {
        padding-top: 0.8rem;
    }

    .site-footer::after {
        right: -8rem;
        bottom: 3.2rem;
        width: min(25rem, 72vw);
        height: min(5.8rem, 18vw);
        opacity: 0.08;
    }

    .footer-shell {
        padding: 1rem;
    }

    .footer-shell-hud {
        grid-template-columns: auto 1fr;
        align-items: start;
        gap: 0.45rem 0.7rem;
        margin-bottom: 0.85rem;
        padding-bottom: 0.8rem;
        font-size: 0.56rem;
        letter-spacing: 0.18em;
    }

    .footer-shell-hud::before {
        width: 2rem;
    }

    .footer-shell-hud span:last-child {
        grid-column: 1 / -1;
        justify-self: start;
        color: rgba(182, 197, 214, 0.56);
    }

    .footer-title {
        max-width: 14ch;
        font-size: clamp(1.9rem, 9vw, 2.7rem);
    }

    .footer-copy {
        font-size: 0.94rem;
        line-height: 1.65;
    }

    .footer-cta-row {
        display: grid;
        grid-template-columns: 1fr;
    }

    .footer-cta-row .btn {
        width: 100%;
        min-height: 3.3rem;
    }

    .footer-signal-stack,
    .footer-panels {
        grid-template-columns: 1fr;
    }

    .footer-panel,
    .footer-signal-card {
        padding-inline: 0.92rem;
    }

    .footer-intro,
    .footer-signal-card,
    .footer-panel,
    .footer-action-link,
    .footer-cta-row .btn {
        border-radius: 0.44rem;
    }

    .footer-link-list a {
        padding-block: 0.62rem;
    }

    .footer-tag-list {
        gap: 0.46rem;
    }

    .footer-tag-list li {
        font-size: 0.62rem;
    }

    .footer-bottom {
        gap: 0.75rem;
    }

    .footer-bottom-links {
        justify-content: flex-start;
        gap: 0.65rem;
    }

    .project-card,
    .hero-visual,
    .hero-aside,
    .approach-panel,
    .contact-panel {
        border-radius: var(--radius-panel) !important;
    }

    .project-card,
    .hero-metric,
    .hero-aside,
    .contact-panel {
        box-shadow: 0 16px 38px rgba(0, 0, 0, 0.24);
    }

    .contact-actions .btn,
    .btn {
        width: 100%;
    }

    #services .container > .text-center,
    #sectors .container > .text-center,
    #proof .container > .text-center,
    #insights .container > .text-center {
        margin-bottom: 1.35rem !important;
        padding-left: 0;
        border-left: 0;
    }

    #services .container > .text-center::after,
    #sectors .container > .text-center::after,
    #proof .container > .text-center::after,
    #insights .container > .text-center::after {
        content: '';
        display: block;
        width: 2.75rem;
        height: 1px;
        margin-top: 0.85rem;
        background: linear-gradient(90deg, rgba(217, 227, 240, 0.72), transparent);
    }

    #services .container > .text-center p,
    #sectors .container > .text-center p,
    #proof .container > .text-center p,
    #insights .container > .text-center p {
        max-width: none;
    }

    #services .grid,
    #sectors .grid,
    .proof-grid,
    .proof-support-grid,
    .insight-grid,
    .approach-layout {
        gap: 0.82rem !important;
    }

    #advisory {
        padding-top: 5.6rem !important;
    }

    #advisory::before {
        content: '';
        position: absolute;
        top: 1.9rem;
        left: 0.78rem;
        right: 0.78rem;
        height: 1px;
        background: linear-gradient(90deg, rgba(217, 227, 240, 0.58), transparent);
        opacity: 0.72;
    }

    #advisory .grid {
        gap: 1.25rem !important;
    }

    #advisory h2,
    #genai-capability h2,
    #services .container > .text-center h2,
    #sectors .container > .text-center h2,
    #proof .container > .text-center h2,
    #insights .container > .text-center h2 {
        max-width: 10ch;
        font-size: clamp(2rem, 8.8vw, 2.9rem) !important;
        line-height: 0.96;
    }

    #advisory .space-y-6,
    .genai-intro,
    #services .container > .text-center p,
    #sectors .container > .text-center p,
    #proof .container > .text-center p,
    #insights .container > .text-center p {
        font-size: 0.92rem !important;
        line-height: 1.58;
    }

    .project-card,
    .approach-panel,
    .contact-panel {
        padding: 1.15rem !important;
    }

    .project-card {
        background: linear-gradient(180deg, rgba(14, 20, 28, 0.94), rgba(9, 13, 19, 0.84)) !important;
    }

    #services .project-card p.text-xs,
    #services .project-card .text-xs {
        color: var(--color-accent) !important;
    }

    #services .project-card ul {
        margin-top: 0.85rem !important;
    }

    #services .project-card a {
        margin-top: 1rem !important;
    }

    #sectors .project-card {
        background:
            radial-gradient(circle at left top, rgba(217, 227, 240, 0.08), transparent 42%),
            linear-gradient(180deg, rgba(14, 20, 28, 0.94), rgba(9, 13, 19, 0.84)) !important;
    }

    #proof .proof-card:first-child {
        padding: 1.35rem !important;
        box-shadow: 0 22px 46px rgba(0, 0, 0, 0.34);
    }

    #proof .proof-card:first-child .card-seal {
        border-color: transparent;
        background: linear-gradient(180deg, rgba(249, 251, 253, 0.98), rgba(226, 234, 242, 0.92));
        color: #091018;
        box-shadow: 0 10px 24px rgba(217, 227, 240, 0.18);
    }

    #proof .proof-card:first-child p.text-gray-300 {
        color: var(--color-text) !important;
        font-size: 0.98rem !important;
    }

    #proof .proof-card:not(:first-child),
    .proof-support-card,
    #insights .insight-card {
        padding: 1.08rem !important;
    }

    #proof .proof-card:not(:first-child) p.text-gray-300,
    #insights .insight-card p.text-gray-400 {
        font-size: 0.9rem !important;
    }

    .proof-support-grid {
        margin-top: 0.82rem !important;
    }

    .proof-support-card--credentials .value-pill {
        padding: 0.5rem 0.68rem !important;
        font-size: 0.64rem;
        letter-spacing: 0.1em;
    }

    #insights .insight-card h3 {
        font-size: 1.14rem;
    }

    #insights .insight-card a {
        padding-top: 1rem;
    }

    [data-resume-cta],
    [data-resume-capture] {
        display: none !important;
    }

    .mobile-action-dock {
        display: grid;
        bottom: calc(env(safe-area-inset-bottom) + 0.48rem);
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 0.14rem;
        padding: 0.18rem;
        width: min(13.9rem, calc(100vw - 1.45rem));
    }

    .mobile-dock-link {
        min-height: 2.48rem;
        padding-inline: 0.14rem;
    }

    .mobile-dock-icon-wrap {
        width: 1.32rem;
        height: 1.32rem;
        border-radius: 0.34rem;
    }

    .mobile-dock-label {
        font-size: 0.4rem;
        letter-spacing: 0.11em;
    }

    body.cookie-banner-visible #back-to-top {
        bottom: calc(env(safe-area-inset-bottom) + 9.5rem);
    }

    body.cookie-banner-visible .mobile-action-dock {
        bottom: calc(env(safe-area-inset-bottom) + 7rem);
    }

    .cookie-banner {
        left: max(0.8rem, env(safe-area-inset-left));
        right: -0.72rem;
        width: auto;
        bottom: calc(env(safe-area-inset-bottom) + 0.88rem);
    }

    .cookie-banner-panel {
        padding: 1rem 1.15rem 1rem 0.96rem;
    }

    .cookie-banner h2 {
        max-width: 15ch;
        font-size: 1.22rem;
    }

    .cookie-banner-copy {
        max-width: 30ch;
        font-size: 0.84rem;
    }

    .cookie-banner-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .cookie-btn {
        width: 100%;
        min-height: 2.8rem;
        padding-inline: 0.9rem;
        font-size: 0.88rem;
    }
}

@media (max-width: 460px) and (min-height: 880px) {
    #main-header .container {
        min-height: auto;
    }

    #mobile-menu {
        padding-top: max(1rem, env(safe-area-inset-top));
    }

    .mobile-menu-panel {
        width: 100%;
        height: calc(100svh - env(safe-area-inset-top) - env(safe-area-inset-bottom) - 1.35rem);
        min-height: 0;
        padding: 1.05rem;
    }

    #top {
        min-height: auto;
        padding-top: 4.72rem;
        padding-bottom: 1.95rem;
    }

    #top h1 {
        max-width: 8.25ch;
        font-size: clamp(2.14rem, 8.95vw, 3.3rem) !important;
    }

    #top .text-lg {
        max-width: 31.5ch;
        width: 100%;
        font-size: 0.96rem !important;
    }

    .hero-actions {
        display: flex !important;
        gap: 0.56rem !important;
    }

    .hero-actions .btn {
        width: 100%;
        min-height: 3.05rem;
        padding-inline: 1rem !important;
        font-size: 0.88rem !important;
    }

    .hero-trust-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.62rem;
    }

    .hero-trust-chip--featured {
        min-height: 5rem;
    }

    .hero-trust-chip--compact {
        min-height: 3.7rem;
    }

    .mobile-action-dock {
        width: min(13.8rem, calc(100vw - 1.65rem));
        bottom: calc(env(safe-area-inset-bottom) + 0.58rem);
    }

    .project-card,
    .hero-metric,
    .contact-panel {
        box-shadow: 0 18px 44px rgba(0, 0, 0, 0.26);
    }

    .mobile-brand {
        max-width: min(100%, 17.25rem);
    }
}

@media (max-width: 420px) {
    .hero-trust-strip {
        grid-template-columns: 1fr;
    }

    .hero-trust-chip--featured {
        grid-column: auto;
    }

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

    .provider-tile {
        min-height: 0;
    }

    .mobile-menu-panel {
        padding: 0.9rem;
    }
}

@media (hover: none) {
    .btn:hover,
    .mobile-dock-link:hover,
    .project-card:hover,
    #back-to-top:hover {
        transform: none !important;
    }
}

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

    *,
    *::before,
    *::after {
        animation: none !important;
        transition-duration: 0.01ms !important;
        transition-delay: 0ms !important;
        scroll-behavior: auto !important;
    }

    .animate-on-scroll {
        opacity: 1 !important;
        transform: none !important;
    }
}
