:root {
    --color-bg: #05040f;
    --color-surface: rgba(18, 16, 46, 0.75);
    --color-surface-strong: rgba(28, 23, 74, 0.95);
    --color-primary: #7c3aed;
    --color-secondary: #26e0ff;
    --color-tertiary: #ff4d9d;
    --color-text: #f5f7ff;
    --color-text-dim: rgba(214, 219, 255, 0.7);
    --color-border: rgba(124, 58, 237, 0.25);
    --shadow-neon: 0 0 30px rgba(124, 58, 237, 0.45);
    --shadow-soft: 0 10px 40px rgba(4, 0, 38, 0.5);
    --font-heading: 'Space Grotesk', system-ui, sans-serif;
    --font-body: 'Manrope', system-ui, sans-serif;
    --max-width: 1200px;
    --transition: 220ms ease;
}

* {
    box-sizing: border-box;
}

html {
    width: 100%;
    overflow-x: hidden;
}

body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--color-text);
    background: radial-gradient(circle at top left, rgba(124, 58, 237, 0.12), transparent 55%),
                radial-gradient(circle at top right, rgba(38, 224, 255, 0.12), transparent 45%),
                radial-gradient(circle at bottom, rgba(255, 77, 157, 0.08), transparent 60%),
                var(--color-bg);
    min-height: 100vh;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background: url('data:image/svg+xml,%3Csvg width="400" height="400" viewBox="0 0 400 400" xmlns="http://www.w3.org/2000/svg"%3E%3Cg fill="rgba(255,255,255,0.08)"%3E%3Ccircle cx="10" cy="10" r="1"/%3E%3Ccircle cx="130" cy="40" r="1"/%3E%3Ccircle cx="220" cy="190" r="1"/%3E%3Ccircle cx="360" cy="90" r="1"/%3E%3Ccircle cx="280" cy="280" r="1"/%3E%3Ccircle cx="70" cy="300" r="1"/%3E%3Ccircle cx="180" cy="110" r="1"/%3E%3Ccircle cx="320" cy="340" r="1"/%3E%3C/g%3E%3C/svg%3E') repeat;
    opacity: 0.25;
    z-index: -2;
}

main {
    position: relative;
    z-index: 0;
}

.wrapper {
    width: min(var(--max-width), calc(100% - 3.2rem));
    margin-inline: auto;
}

section {
    position: relative;
}

h1, h2, h3, h4, h5 {
    font-family: var(--font-heading);
    margin: 0 0 1rem 0;
}

p {
    margin: 0 0 1.25rem 0;
    color: var(--color-text-dim);
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition), opacity var(--transition);
}

a:not(.button):hover {
    opacity: 0.8;
}

.button {
    --button-bg: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    --button-bg-hover: linear-gradient(135deg, var(--color-secondary), var(--color-primary));
    --button-text: #0f0c29;
    --button-border: transparent;
    --button-border-hover: transparent;
    --button-shadow: var(--shadow-neon);
    --button-shadow-hover: 0 18px 40px rgba(38, 224, 255, 0.35);
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 1.8rem;
    border-radius: 999px;
    font-weight: 600;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    background: var(--button-bg);
    color: var(--button-text);
    border: 1px solid var(--button-border);
    box-shadow: var(--button-shadow);
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition), border-color var(--transition), color var(--transition);
    text-decoration: none;
    overflow: hidden;
    isolation: isolate;
    opacity: 1;
    z-index: 0;
}

.button::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    padding: 1px;
    background: conic-gradient(from 0deg, rgba(255, 255, 255, 0) 0deg, rgba(255, 255, 255, 0.82) 90deg, rgba(255, 255, 255, 0) 180deg, rgba(255, 255, 255, 0.68) 270deg, rgba(255, 255, 255, 0) 360deg);
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    opacity: 0;
    transition: opacity 0.35s ease;
    animation: button-border-sweep 2.4s linear infinite;
    pointer-events: none;
    mix-blend-mode: screen;
    z-index: 1;
}

.button:hover,
.button:focus-visible {
    transform: translateY(-2px);
    background: var(--button-bg-hover);
    box-shadow: var(--button-shadow-hover);
    border-color: var(--button-border-hover);
    color: var(--button-text);
}

.button:hover::before,
.button:focus-visible::before {
    opacity: 1;
}

.button:focus-visible {
    outline: none;
}

@keyframes button-border-sweep {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.button--ghost,
.button.button--ghost {
    --button-bg: rgba(17, 15, 42, 0.2);
    --button-bg-hover: rgba(31, 27, 68, 0.4);
    --button-text: var(--color-text);
    --button-border: rgba(255, 255, 255, 0.22);
    --button-border-hover: rgba(255, 255, 255, 0.4);
    --button-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.22);
    --button-shadow-hover: inset 0 0 0 1px rgba(255, 255, 255, 0.4), 0 12px 34px rgba(38, 224, 255, 0.18);
    backdrop-filter: blur(8px);
}

.button--outline,
.button.button--outline {
    --button-bg: rgba(255, 255, 255, 0.08);
    --button-bg-hover: rgba(255, 255, 255, 0.18);
    --button-text: var(--color-text);
    --button-border: rgba(255, 255, 255, 0.18);
    --button-border-hover: rgba(255, 255, 255, 0.35);
    --button-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
    --button-shadow-hover: inset 0 0 0 1px rgba(255, 255, 255, 0.35), 0 14px 32px rgba(124, 58, 237, 0.22);
    backdrop-filter: blur(8px);
}

body.has-custom-cursor {
    cursor: none;
}

.cursor-ring,
.cursor-core {
    position: fixed;
    top: 50%;
    left: 50%;
    pointer-events: none;
    transform: translate3d(-50%, -50%, 0);
    z-index: 10000;
    mix-blend-mode: screen;
    transition: opacity 0.3s ease;
    opacity: 0;
}

.cursor-ring {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(38, 224, 255, 0.22) 0%, rgba(124, 58, 237, 0.18) 55%, rgba(255, 77, 157, 0.05) 100%);
    box-shadow: 0 0 24px rgba(38, 224, 255, 0.28), 0 0 46px rgba(124, 58, 237, 0.35);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.28);
    transition: opacity 0.3s ease, transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.cursor-core {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.95) 0%, rgba(38, 224, 255, 0.75) 65%, rgba(124, 58, 237, 0.1) 100%);
    box-shadow: 0 0 14px rgba(38, 224, 255, 0.75);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.cursor-ring.is-visible,
.cursor-core.is-visible {
    opacity: 1;
}

.cursor-ring.is-active {
    transform: translate3d(-50%, -50%, 0) scale(0.82);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 28px rgba(255, 255, 255, 0.35), 0 0 56px rgba(38, 224, 255, 0.35);
}

.cursor-core.is-active {
    transform: translate3d(-50%, -50%, 0) scale(0.65);
    opacity: 0.85;
}

.cursor-ring.is-interactive {
    transform: translate3d(-50%, -50%, 0) scale(1.5);
    border-color: rgba(255, 255, 255, 0.65);
    box-shadow: 0 0 32px rgba(255, 255, 255, 0.5), 0 0 64px rgba(38, 224, 255, 0.45);
}

.cursor-core.is-interactive {
    transform: translate3d(-50%, -50%, 0) scale(1.2);
    opacity: 1;
}

@media (max-width: 880px) {
    body.has-custom-cursor {
        cursor: auto;
    }
    .cursor-ring,
    .cursor-core {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .button {
        transition: background var(--transition), border-color var(--transition), color var(--transition);
    }

    .button:hover,
    .button:focus-visible {
        transform: none;
    }

    .button::before {
        animation: none;
    }
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    padding: 1.2rem 0;
    backdrop-filter: blur(14px);
    background: linear-gradient(135deg, rgba(18, 16, 46, 0.75), rgba(7, 6, 21, 0.9));
    border-bottom: 1px solid rgba(124, 58, 237, 0.16);
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    width: min(var(--max-width), calc(100% - 3.2rem));
    margin-inline: auto;
}

.site-logo img {
    width: 138px;
    height: auto;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-list {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 1.8rem;
    margin: 0;
    padding: 0;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.75rem;
}

.nav-list a {
    position: relative;
    padding-bottom: 0.4rem;
}

.nav-list a::after {
    content: "";
    position: absolute;
    height: 2px;
    inset: auto 0 -0.2rem 0;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.8), rgba(38, 224, 255, 0.8));
    border-radius: 999px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 0.3rem;
    width: 2.8rem;
    height: 2.8rem;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.04);
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 1.2rem;
    height: 2px;
    margin-inline: auto;
    background: #fff;
    transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-5px) rotate(-45deg);
}

.header-spacer {
    height: 90px;
}

.hero {
    min-height: calc(100vh + 40px);
    display: flex;
    align-items: center;
    position: relative;
    padding: 6rem 0 7rem 0;
    overflow: hidden;
}

.hero__canvas {
    position: absolute;
    inset: 0;
    z-index: -1;
    transform-origin: center;
    will-change: transform, opacity;
}

.hero__canvas canvas {
    width: 100% !important;
    height: 100% !important;
    display: block;
}

.hero__aurora {
    position: absolute;
    filter: blur(120px);
    border-radius: 50%;
    opacity: 0.9;
    transform-origin: center;
    will-change: transform, opacity;
}

.hero__aurora--one {
    width: 45vw;
    height: 45vw;
    background: rgba(124, 58, 237, 0.45);
    top: 10%;
    left: -20%;
    animation: drift 28s ease-in-out infinite;
}

.hero__aurora--two {
    width: 35vw;
    height: 35vw;
    background: rgba(38, 224, 255, 0.35);
    bottom: -15%;
    right: -10%;
    animation: drift 36s ease-in-out infinite reverse;
}

.hero__content {
    position: relative;
    z-index: 2;
    text-align: left;
    max-width: 680px;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 0.95rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 0.75rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.hero__tagline {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-heading);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.35em;
    font-size: clamp(0.85rem, 2vw, 1.1rem);
    color: rgba(214, 219, 255, 0.85);
    margin: 0 0 1.6rem 0;
    justify-content: center;
    text-align: center;
}

.hero__tagline::before,
.hero__tagline::after {
    content: "";
    flex: 1 1 32px;
    height: 1px;
    min-width: 0;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.4), rgba(38, 224, 255, 0.8));
    box-shadow: 0 0 12px rgba(38, 224, 255, 0.35);
}

.hero h1 {
    font-size: clamp(2.6rem, 4vw, 4rem);
    line-height: 1.07;
    margin-bottom: 1.5rem;
}

.hero h1 .hero__accent {
    color: var(--color-tertiary);
    text-shadow: 0 0 32px rgba(255, 77, 157, 0.6);
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
}

.hero__actions--center {
    justify-content: center;
}

.hero__stats-label {
    font-size: 0.78rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(214, 219, 255, 0.6);
    margin: -0.35rem 0 1.35rem 0;
    position: relative;
    z-index: 2;
}

.hero__stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.2rem;
    padding: 1.4rem;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(18, 16, 46, 0.65), rgba(12, 11, 30, 0.8));
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow-soft);
}

.stat {
    font-size: 0.85rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--color-text-dim);
}

.stat span {
    display: block;
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--color-text);
    margin-bottom: 0.3rem;
}

.signal-strip {
    overflow: hidden;
    padding: 1.2rem 0;
    border-block: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(5, 4, 15, 0.85);
}

.signal-strip__inner {
    display: flex;
    gap: 3.5rem;
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.65);
    animation: ticker 28s linear infinite;
}

.signal-strip__inner span {
    white-space: nowrap;
}

.section {
    padding: 6rem 0;
}

.section--contrast {
    background: linear-gradient(160deg, rgba(12, 11, 32, 0.85) 0%, rgba(7, 6, 25, 0.9) 50%, rgba(4, 3, 18, 0.95) 100%);
}

.section--cta {
    position: relative;
    z-index: 1;
    text-align: center;
    background: radial-gradient(circle at 10% 20%, rgba(124, 58, 237, 0.35), transparent 55%),
                radial-gradient(circle at 80% 10%, rgba(38, 224, 255, 0.35), transparent 45%),
                rgba(5, 4, 15, 0.95);
    padding-block: 5.5rem;
    border-block: 1px solid rgba(255, 255, 255, 0.08);
}

.section__heading {
    max-width: 640px;
    margin-bottom: 3rem;
}

.eyebrow {
    display: inline-flex;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1.5rem;
}

.card-grid {
    display: grid;
    gap: 1.8rem;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.card {
    position: relative;
    padding: 2.2rem;
    border-radius: 28px;
    background: linear-gradient(160deg, rgba(18, 16, 46, 0.85), rgba(12, 11, 30, 0.75));
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: inset 0 0 0 1px rgba(124, 58, 237, 0.08), var(--shadow-soft);
    overflow: hidden;
}

.card__glow {
    position: absolute;
    inset: -40% -20% auto auto;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.35), transparent 60%);
    filter: blur(50px);
    opacity: 0;
    transition: opacity var(--transition), transform var(--transition);
}

.card:hover .card__glow {
    opacity: 0.9;
    transform: scale(1.05);
}

.card h3 {
    margin-bottom: 1rem;
}

.card ul {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0 0;
    display: grid;
    gap: 0.8rem;
}

.card ul li {
    position: relative;
    padding-left: 1.2rem;
    color: var(--color-text-dim);
    font-size: 0.95rem;
}

.card ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55rem;
    width: 0.4rem;
    height: 0.4rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-secondary), var(--color-tertiary));
    box-shadow: 0 0 10px rgba(255, 77, 157, 0.6);
}

.experiences {
    display: grid;
    gap: 3rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
}

.experiences__list {
    display: grid;
    gap: 1.8rem;
    margin-top: 2.2rem;
}

.list-item {
    padding-left: 1.6rem;
    border-left: 2px solid rgba(255, 255, 255, 0.1);
}

.list-item.quote {
    font-style: italic;
    border-left-color: rgba(38, 224, 255, 0.4);
}

.list-item.quote p {
    margin: 0;
    color: rgba(214, 219, 255, 0.85);
}

.orbital {
    position: relative;
    width: clamp(240px, 35vw, 360px);
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    background: linear-gradient(160deg, rgba(124, 58, 237, 0.15), rgba(38, 224, 255, 0.08));
    backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    display: grid;
    place-items: center;
    overflow: hidden;
    box-shadow: var(--shadow-neon);
}

.orbital__core {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(38, 224, 255, 0.45), transparent 60%);
    filter: blur(30px);
    animation: pulse 5s ease-in-out infinite;
}

.orbital__ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    mix-blend-mode: screen;
}

.orbital__ring--one {
    width: 85%;
    height: 65%;
    transform: rotateX(65deg);
    animation: orbit 12s linear infinite;
}

.orbital__ring--two {
    width: 70%;
    height: 90%;
    transform: rotateY(70deg);
    animation: orbit 16s linear infinite reverse;
}

.orbital__ring--three {
    width: 95%;
    height: 95%;
    border-color: rgba(124, 58, 237, 0.35);
    animation: orbit 20s linear infinite;
}

.orbital__spark {
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.9), rgba(124, 58, 237, 0.6));
    animation: spark 14s linear infinite;
    box-shadow: 0 0 25px rgba(124, 58, 237, 0.95);
}

.process-grid {
    display: grid;
    gap: 1.8rem;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.process-step {
    position: relative;
    padding: 2rem;
    border-radius: 24px;
    background: rgba(18, 16, 46, 0.8);
    border: 1px solid rgba(124, 58, 237, 0.16);
    box-shadow: inset 0 0 0 1px rgba(38, 224, 255, 0.08), var(--shadow-soft);
    min-height: 250px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.step-index {
    font-size: 0.9rem;
    letter-spacing: 0.25em;
    color: rgba(255, 255, 255, 0.45);
}

.step-meta {
    font-size: 0.8rem;
    color: rgba(214, 219, 255, 0.6);
    letter-spacing: 0.02em;
    margin-top: auto;
}

.site-footer {
    position: relative;
    padding: 6rem 0 3rem 0;
    background: linear-gradient(180deg, rgba(5, 4, 16, 0.95), rgba(0, 0, 0, 0.9));
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer__glow {
    position: absolute;
    inset: -30% 0 auto 0;
    height: 60%;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.45), transparent 70%);
    filter: blur(120px);
    opacity: 0.7;
    pointer-events: none;
    z-index: 0;
}

.site-footer__content {
    position: relative;
    display: grid;
    gap: 3rem;
}

.footer-intro {
    max-width: 640px;
}

.footer-grid {
    display: grid;
    gap: 2.5rem;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}

.footer-column h5 {
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1rem;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.7rem;
}

.footer-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 1.8rem;
    color: rgba(214, 219, 255, 0.6);
    font-size: 0.85rem;
}

[data-animate] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 420ms ease, transform 420ms ease;
}

[data-animate].is-visible {
    opacity: 1;
    transform: translateY(0);
}

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

@keyframes ticker {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(0.95);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.1);
        opacity: 1;
    }
}

@keyframes orbit {
    to {
        transform: rotate(360deg) translateZ(0);
    }
}

@keyframes spark {
    0% {
        transform: rotate(0deg) translateX(120px);
    }
    50% {
        transform: rotate(180deg) translateX(120px) scale(1.1);
    }
    100% {
        transform: rotate(360deg) translateX(120px);
    }
}

@keyframes drift {
    0%, 100% {
        transform: translate3d(0, 0, 0) scale(1);
    }
    50% {
        transform: translate3d(40px, -30px, 0) scale(1.05);
    }
}

@media (max-width: 1024px) {
    .nav-list {
        gap: 1.2rem;
    }

    .hero {
        padding-top: 5rem;
    }
}

@media (max-width: 920px) {
    .site-nav {
        gap: 1.2rem;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-list {
        position: absolute;
        inset: calc(100% + 0.5rem) 1.2rem auto 1.2rem;
        flex-direction: column;
        background: rgba(12, 11, 30, 0.95);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 18px;
        padding: 1.5rem;
        box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-10px);
        transition: opacity var(--transition), transform var(--transition);
    }

    .site-nav.open .nav-list {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .nav-list a {
        display: block;
        padding: 0.6rem 0;
        font-size: 0.85rem;
        letter-spacing: 0.18em;
    }

    .button.button--outline {
        display: none;
    }

    .hero__content {
        text-align: center;
        margin-inline: auto;
    }

    .hero__actions {
        justify-content: center;
    }

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

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

@media (max-width: 720px) {
    .hero {
        padding-block: 4rem 5rem;
    }

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

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

    .footer-meta {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 540px) {
    .site-logo img {
        width: 120px;
    }

    .header-spacer {
        height: 80px;
    }

    .hero h1 {
        font-size: clamp(2.2rem, 8vw, 2.8rem);
    }

    .card {
        padding: 1.8rem;
    }

    .section {
        padding: 4.5rem 0;
    }

    .section--cta {
        padding-block: 4rem;
    }

    .footer-intro h2 {
        font-size: 2rem;
    }
}
