/* Local fonts */
@font-face {
    font-family: 'Nasalization';
    src: url('../fonts/nasalization.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* Theme tokens */
:root {
    --bg-0: #070b16;
    --bg-1: #0a0f1f;
    --bg-2: #0e1630;
    --text-0: #e7ecf8;
    --text-1: #a9b4cf;
    --brand-0: #6ee7ff;
    --brand-1: #8b5cf6;
    --brand-2: #22d3ee;
    /* Explicit palette for animated gradients */
    --brand-purple: #8b5cf6;
    --brand-blue: #3b82f6;
    --brand-green: #22c55e;
    --accent: #f59e0b;
    --surface: rgba(255, 255, 255, 0.06);
    --surface-strong: rgba(255, 255, 255, 0.12);
    --border: rgba(255, 255, 255, 0.14);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
    /* Interactive glow sensitivity */
    --glow-sens: 30;
}

/* Resets */
* {
    box-sizing: border-box;
}

html,
body {
    height: 100%;
}

body {
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
    color: var(--text-0);
    background: radial-gradient(1200px 800px at 10% -10%, #1f2946 0%, transparent 60%),
        radial-gradient(1200px 800px at 90% 10%, #1a1f35 0%, transparent 60%),
        linear-gradient(180deg, var(--bg-1), var(--bg-0));
    line-height: 1.6;
}


.container {
    width: min(1160px, 92%);
    margin: 0 auto;
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: linear-gradient(180deg, rgba(7, 11, 22, 0.85), rgba(7, 11, 22, 0.35) 60%, transparent);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--text-0);
    text-decoration: none;
}

.brand__logo {
    width: 36px;
    height: 36px;
}

.brand__name {
    font-weight: 500;
    letter-spacing: 0.3px;
}

.nav__links {
    display: flex;
    align-items: center;
    gap: 18px;
    font-weight: 400;
    letter-spacing: 0.3px;
}

.nav__links a {
    color: var(--text-0);
    text-decoration: none;
    opacity: 1;
}

.nav__links a:hover {
    opacity: 1;
}

/* Display font for titles, nav, and buttons */
.hero__title,
.section__title,
.brand__name,
.nav__links a,
.btn {
    font-family: 'Nasalization', Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
}

/* Ensure crisp menu and button text (no glow/fade) */
.brand__name,
.nav__links a,
.btn {
    text-shadow: none;
    -webkit-font-smoothing: auto;
    -moz-osx-font-smoothing: auto;
}

/* Hero */
.hero {
    position: relative;
    min-height: calc(100vh - 64px);
    display: grid;
    place-items: center;
    overflow: clip;
    /* Preserve original background look for hero only */
    background: radial-gradient(1200px 800px at 10% -10%, #1f2946 0%, transparent 60%),
        radial-gradient(1200px 800px at 90% 10%, #1a1f35 0%, transparent 60%),
        linear-gradient(180deg, var(--bg-1), var(--bg-0));
}

/* Darker slate-purple background for all content after hero */
main {
    background: linear-gradient(180deg, #0a0714 0%, #0b0e18 40%, #121629 100%);
}

#particles-js {
    position: absolute;
    inset: -2%;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero__glow {
    position: absolute;
    inset: -5%;
    background:
        radial-gradient(700px 400px at 60% 30%, rgba(59, 130, 246, 0.12), transparent 60%),
        radial-gradient(700px 400px at 40% 60%, rgba(139, 92, 246, 0.12), transparent 60%),
        radial-gradient(800px 500px at 80% 80%, rgba(34, 197, 94, 0.10), transparent 70%);
    filter: blur(30px);
    z-index: 0;
}

.hero__content {
    position: relative;
    z-index: 1;
    padding: 80px 0;
    text-align: center;
}

.eyebrow {
    color: var(--brand-2);
    text-transform: uppercase;
    letter-spacing: 1.6px;
    font-size: 12px;
    font-weight: 600;
    margin: 14px 14px 14px;
}

.hero__title {
    font-size: clamp(36px, 6vw, 72px);
    line-height: 1.05;
    margin: 0 0 12px;
}

.hero__subtitle {
    max-width: 820px;
    margin: 0 auto 24px;
    color: var(--text-1);
}

.hero__cta {
    display: flex;
    gap: 14px;
    justify-content: center;
}

.hero__ticker {
    margin-top: 24px;
    color: var(--text-1);
    font-weight: 600;
    letter-spacing: 0.2px;
}

/* Quick glow/pop on cycle change */
.hero__ticker .cycle {
    display: inline-block;
    transform-origin: center;
    will-change: transform, text-shadow;
}

@keyframes popGlow {
    0% {
        transform: scale(1);
        text-shadow: none;
    }

    40% {
        transform: scale(1.12);
        text-shadow:
            0 0 10px rgba(110, 231, 255, 0.8),
            0 0 18px rgba(139, 92, 246, 0.6),
            0 0 26px rgba(34, 197, 94, 0.4);
    }

    100% {
        transform: scale(1);
        text-shadow: none;
    }
}

.hero__ticker .cycle.pop {
    animation: popGlow 500ms cubic-bezier(0.22, 1, 0.36, 1);
}

.text-gradient {
    background: linear-gradient(90deg, var(--brand-purple), var(--brand-blue), var(--brand-green));
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: gradientShift 10s ease-in-out infinite;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Sections */
.section {
    padding: 100px 0 0 0;
    position: relative;
}

/* Section wrappers allow per-section backgrounds */
.section-wrap {
    position: relative;
    width: 100%;
    isolation: isolate;
}

.section-wrap--about {
    background: url('../images/cityscape_room_bg.webp') center/cover no-repeat;
}

.section-wrap .section {
    background: transparent;
    position: relative;
    z-index: 1;
}

/* Dark blur + top fade into image under About band */
.section-wrap--about::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -80px;
    height: calc(100% + 80px);
    z-index: 0;
    pointer-events: none;
    background:
        linear-gradient(180deg, rgba(10, 15, 31, 0.00) 0%, rgba(10, 15, 31, 0.72) 14%, rgba(10, 15, 31, 0.00) 34%),
        rgba(0, 0, 0, 0.36);
    -webkit-backdrop-filter: blur(10px) saturate(110%);
    backdrop-filter: blur(10px) saturate(110%);
}


.section__header {
    text-align: center;
    margin-bottom: 28px;
}

.section__title {
    font-size: clamp(26px, 3.2vw, 40px);
    margin: 0 0 8px;
}

.section__subtitle {
    color: var(--text-1);
    margin: 0;
}

.grid {
    display: grid;
    gap: 18px;
}

.grid--two {
    grid-template-columns: 1fr;
}

.grid--services {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

@media (min-width: 760px) {
    .grid--two {
        grid-template-columns: 1.4fr 1fr;
    }

    .grid--services {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* About section: justify text and add more space between columns */
.about .reveal p {
    text-align: justify;
    color: var(--text-1);
    /* softer like services card text */
}

.about .grid--two {
    gap: 26px;
}

/* Make service cards stretch evenly within grid cells */
.grid--services>.card {
    height: 100%;
}

/* Standalone services cards outside container */
.services__cards {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 14px;
    width: min(1040px, 92%);
    margin: 0 auto;
    padding: 0 0 0 0;
}

@media (min-width: 760px) {
    .services__cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        width: min(880px, 92%);
    }
}

@media (min-width: 1024px) {
    .services__cards {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        width: min(900px, 86%);
    }
}

.panel {
    background: linear-gradient(180deg, var(--surface), rgba(255, 255, 255, 0.02));
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 20px;
    box-shadow: var(--shadow);
}

/* About list with particles overlay */
.about__list-panel {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    /* vertically center the list */
}

#about-particles {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.about__list-panel .list {
    position: relative;
    z-index: 1;
}

/* Thin staggered cards inside the about list */
.about__list-panel .list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    /* allow items to sit next to each other */
    align-items: flex-start;
    gap: 10px 12px;
    /* row and column gaps */
}

.about__list-panel .list li {
    background: linear-gradient(180deg, var(--surface), rgba(255, 255, 255, 0.02));
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 6px 10px;
    /* thinner */
    min-height: 28px;
    display: flex;
    align-items: center;
    position: relative;
    color: var(--text-0);
    font-size: 13px;
    /* smaller text */
    line-height: 1.3;
    margin: 0;
    /* use margins for stagger so layout accounts for it */
    transform: translateY(0);
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
    will-change: transform;
    width: -moz-fit-content;
    width: fit-content;
}

.about__list-panel .list li:nth-child(odd) {
    margin-left: 8px;
}

.about__list-panel .list li:nth-child(even) {
    margin-right: 8px;
}

/* Vertical staggering pattern (layout-aware) */
.about__list-panel .list li:nth-child(4n + 1) {
    margin-top: 6px;
}

.about__list-panel .list li:nth-child(4n + 2) {
    margin-top: 2px;
}

.about__list-panel .list li:nth-child(4n + 3) {
    margin-top: 8px;
}

.about__list-panel .list li:nth-child(4n + 0) {
    margin-top: 0;
}

.about__list-panel .list li:hover,
.about__list-panel .list li:focus-within {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45), 0 0 16px rgba(139, 92, 246, 0.20);
    border-color: rgba(139, 92, 246, 0.60);
}

/* Starfield layers within about-particles */
.stars-layer {
    position: absolute;
    left: 0;
    bottom: 0;
    /* start from bottom, scroll upward */
    width: 1px;
    background: transparent;
    animation-name: animStar;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

.stars-clone {
    top: 2000px;
    /* duplicate field to create continuous scroll */
}

@keyframes animStar {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-2000px);
    }
}

.list {
    margin: 0;
    padding: 0 0 0 18px;
    color: var(--text-1);
}

.list li {
    margin: 8px 0;
}

/* Cards */
.card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 18px;
    box-shadow: var(--shadow);
    transform-style: preserve-3d;
    transition: transform 200ms ease, box-shadow 200ms ease, background 200ms ease, filter 200ms ease;
}

/* Default card hover stays subtle; service cards get special effect below */
.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.45);
}

.card__icon {
    font-size: 22px;
}

.card__title {
    margin: 8px 0;
    font-size: 18px;
}

.card__text {
    color: var(--text-1);
    margin: 0 0 8px;
}

.client-card {
    /* Frosted glass appearance */
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
    border-color: rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(12px) saturate(120%);
    -webkit-backdrop-filter: blur(12px) saturate(120%);
    box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.card__link {
    color: var(--brand-2);
    text-decoration: none;
    font-weight: 600;
}

.card__link:hover {
    text-decoration: underline;
}

/* Make services cards fully clickable and add neon pulse */
.card--service {
    display: block;
    text-decoration: none;
    color: inherit;
    position: relative;
    overflow: visible;
    /* allow glow to render outside */
    transform-origin: center;
    will-change: transform, box-shadow, filter;
    transition: transform 100ms ease, box-shadow 100ms ease, filter 100ms ease;
    /* Remove background fill and border; ring/glow handled by pseudo-elements */
    background: transparent;
    border-color: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

/* Ensure crisp text rendering on service cards */
.card--service,
.card--service * {
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    text-shadow: none;
}

/* removed animated border overlay */

.card--service::before {
    content: "";
    position: absolute;
    inset: -10px;
    /* diffused outer glow around the edge */
    border-radius: inherit;
    z-index: -1;
    background: linear-gradient(90deg, var(--brand-purple), var(--brand-blue), var(--brand-green));
    background-size: 200% 100%;
    filter: blur(16px);
    opacity: 0;
    transition: opacity 150ms ease;
}

.card--service::after {
    content: "";
    position: absolute;
    inset: -2px;
    /* thin gradient ring hugging the edge */
    border-radius: inherit;
    z-index: -1;
    /* behind card */
    background: linear-gradient(90deg, var(--brand-purple), var(--brand-blue), var(--brand-green));
    background-size: 200% 100%;
    /* Mask center so only a thin edge shows, with a spotlight following pointer */
    -webkit-mask: linear-gradient(#000, #000) content-box, linear-gradient(#000, #000), radial-gradient(160px 120px at var(--pointer-x, 50%) var(--pointer-y, 50%), #000 0 55%, transparent 60% 100%);
    mask: linear-gradient(#000, #000) content-box, linear-gradient(#000, #000), radial-gradient(160px 120px at var(--pointer-x, 50%) var(--pointer-y, 50%), #000 0 55%, transparent 60% 100%);
    -webkit-mask-composite: xor, source-in;
    mask-composite: exclude, intersect;
    padding: 2px;
    opacity: 0;
    transition: opacity 150ms ease;
}

.card.card--service:hover,
.card.card--service:focus-visible {
    transform: translateY(-4px) scale(1.04);
    filter: drop-shadow(0 0 10px rgba(139, 92, 246, 0.22));
    border-color: transparent;
    z-index: 3;
}

.card.card--service:active {
    transform: translateY(-2px) scale(1.02);
}

.card.card--service:hover::before,
.card.card--service:focus-visible::before {
    opacity: 0.5;
    animation: gradientShift 8s ease-in-out infinite;
}

.card.card--service:hover::after,
.card.card--service:focus-visible::after {
    opacity: 1;
    /* crisp gradient edge */
    animation: gradientShift 8s ease-in-out infinite;
}

@keyframes neonPulse {
    0% {
        /* solid ring right on the edge + subtle glow + depth */
        box-shadow:
            0 0 0 2px rgba(139, 92, 246, 0.65),
            0 0 12px rgba(139, 92, 246, 0.25),
            0 18px 54px rgba(0, 0, 0, 0.60);
    }

    50% {
        box-shadow:
            0 0 0 2px rgba(139, 92, 246, 0.65),
            0 0 20px rgba(139, 92, 246, 0.45),
            0 20px 60px rgba(0, 0, 0, 0.65);
    }

    100% {
        box-shadow:
            0 0 0 2px rgba(139, 92, 246, 0.65),
            0 0 12px rgba(139, 92, 246, 0.25),
            0 18px 54px rgba(0, 0, 0, 0.60);
    }
}

/* Marquee */
.marquee {
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
}

.marquee__track {
    display: flex;
    gap: 28px;
    padding: 14px;
    animation: scrollX 20s linear infinite;
}

.logo {
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border);
    color: var(--text-0);
    white-space: nowrap;
}

/* Carousel */
.carousel {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 10px;
}

.carousel__viewport {
    overflow: hidden;
}

.carousel__track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc(100% / 1.1);
    gap: 14px;
    padding: 6px 2px;
    transition: transform 400ms cubic-bezier(0.22, 1, 0.36, 1);
}

@media (min-width: 760px) {
    .carousel__track {
        grid-auto-columns: calc(100% / 2.2);
    }
}

@media (min-width: 1024px) {
    .carousel__track {
        grid-auto-columns: calc(100% / 3.2);
    }
}

.carousel__slide {
    list-style: none;
}

.carousel__btn {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.06);
    color: var(--text-0);
    cursor: pointer;
}

.carousel__btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.client-card {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 16px;
    align-items: center;
    min-height: 220px;
    position: relative;
    isolation: isolate;
    overflow: hidden;
}

.client-card__logo {
    width: 120px;
    height: 120px;
    object-fit: contain;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.client-card__logo::after {
    content: "";
    position: absolute;
    inset: -10%;
    background: linear-gradient(75deg, rgba(255, 255, 255, 0) 20%, rgba(255, 255, 255, 0.6) 50%, rgba(255, 255, 255, 0) 80%);
    transform: translateX(-150%) skewX(-12deg);
    pointer-events: none;
}

.client-card__logo.is-shine::after {
    animation: sheen 1200ms ease;
}

@keyframes sheen {
    to {
        transform: translateX(150%) skewX(-12deg);
    }
}

.client-card__name {
    margin: 0 0 6px;
    font-size: 18px;
}

.client-card__text {
    margin: 0;
    color: var(--text-1);
    font-size: 15px;
}

/* Interactive mesh-glow effect for client cards */
.client-card::before,
.client-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 14px;
    pointer-events: none;
    transition: opacity 250ms ease-out;
    z-index: 0;
}

/* Border glow that chases pointer angle */
.client-card::before {
    padding: 2px;
    background: linear-gradient(90deg, var(--brand-purple), var(--brand-blue), var(--brand-green)) border-box;
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
}

/* Background mesh highlight under content */
.client-card::after {
    /* Diffused outer glow */
    background: linear-gradient(90deg, var(--brand-purple), var(--brand-blue), var(--brand-green));
    filter: blur(16px);
    opacity: 0;
}

/* Fade effect off when not interacting */
.client-card:hover::before,
.client-card:focus-visible::before {
    opacity: 1;
    animation: gradientShift 8s ease-in-out infinite;
}

.client-card:hover::after,
.client-card:focus-visible::after {
    opacity: 0.45;
    animation: gradientShift 8s ease-in-out infinite;
}

.client-card:not(:hover):not(:focus-visible)::before,
.client-card:not(:hover):not(:focus-visible)::after {
    opacity: 0;
}

.client-card__cta {
    margin-top: 10px;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
    font-size: 13px;
    font-weight: 500;
    padding: 6px 10px;
    border-radius: 8px;
}

@keyframes scrollX {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* Clients grid (cards outside container) */
.clients__cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    width: min(1040px, 92%);
    margin: 0 auto;
    padding: 0;
}

@media (min-width: 760px) {
    .clients__cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        width: min(900px, 90%);
    }
}

@media (min-width: 1024px) {
    .clients__cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        width: min(900px, 86%);
    }
}

/* 3x3 client grid in container */
.clients__cards--3x3 {
    width: auto;
}

@media (min-width: 760px) {
    .clients__cards--3x3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        width: min(1080px, 94%);
    }
}

@media (min-width: 1200px) {
    .clients__cards--3x3 {
        width: min(1160px, 92%);
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    border: 1px solid var(--border);
    cursor: pointer;
    transition: transform 120ms ease, background 120ms ease, border-color 120ms ease;
    user-select: none;
}

.btn--primary {
    color: #0b1226;
    background: linear-gradient(90deg, var(--brand-purple), var(--brand-blue));
    border-color: transparent;
}

.btn--primary:hover {
    transform: translateY(-2px);
}

.btn--ghost {
    color: var(--text-0);
    background: transparent;
}

.btn--ghost:hover {
    background: rgba(255, 255, 255, 0.06);
}

/* Solid white buttons */
.btn--white {
    background: #ffffff;
    color: #0b1226;
    border-color: transparent;
}

.btn--white:hover {
    transform: translateY(-2px);
}

.badge {
    display: inline-block;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border);
    color: var(--text-0);
    text-decoration: none;
}

.badge:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Forms */
.form {
    display: grid;
    gap: 12px;
}

.form label {
    display: grid;
    gap: 6px;
    color: var(--text-1);
    font-size: 14px;
}

.form input,
.form textarea {
    width: 100%;
    padding: 10px 12px;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid var(--border);
    color: var(--text-0);
    outline: none;
}

.form input:focus,
.form textarea:focus {
    border-color: var(--brand-2);
}

.form__hint {
    color: var(--text-1);
    font-size: 12px;
    margin: 0;
}

/* Footer */
.site-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    background: linear-gradient(180deg, rgba(7, 11, 22, 0.35), rgba(7, 11, 22, 0.85));
}

.footer {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    align-items: center;
    padding: 20px 0;
}

.footer__brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer__nav {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.footer__nav a {
    color: var(--text-1);
    text-decoration: none;
}

.footer__nav a:hover {
    color: var(--text-0);
}

/* Reveal on scroll */
.reveal {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 500ms ease, transform 500ms ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Subtle utilities */