/* ═══════════════════════════════ VARIABLES ═══════════════════════════════ */
:root {
    --color-primary: #4499FF;
    --color-primary-light: rgba(68, 153, 255, 0.15);
    --color-primary-border: rgba(68, 153, 255, 0.3);

    --color-bg: #ffffff;
    --color-bg-muted: #f8f9fa;
    --color-bg-card: #ffffff;

    --color-text: #111827;
    --color-text-muted: #6b7280;
    --color-text-light: rgba(107, 114, 128, 0.6);

    --color-border: #e5e7eb;
    --color-border-hover: rgba(17, 24, 39, 0.2);

    --color-hero-bg: hsl(220, 25%, 8%);

    --font-display: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;

    --radius: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-full: 9999px;

    --container: 1200px;
    --gutter: 1.5rem;
}

/* ═══════════════════════════════ RESET ═══════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: var(--font-body);
    color: var(--color-text);
    background: var(--color-bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; color: inherit; }
ul { list-style: none; }

/* ═══════════════════════════════ UTILITIES ═══════════════════════════════ */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding-left: var(--gutter);
    padding-right: var(--gutter);
}

.gradient-text {
    background: linear-gradient(135deg, var(--color-primary), #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    border-radius: var(--radius);
    font-weight: 500;
    font-size: 0.875rem;
    transition: all 0.2s;
    white-space: nowrap;
}

.btn--primary {
    background: var(--color-primary);
    color: #fff;
}
.btn--primary:hover { opacity: 0.9; }
.btn--full { width: 100%; justify-content: center; }

.input {
    width: 100%;
    padding: 0.625rem 0.875rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    font-size: 0.875rem;
    font-family: var(--font-body);
    background: var(--color-bg);
    color: var(--color-text);
    transition: border-color 0.2s;
}
.input:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px var(--color-primary-light);
}
.textarea { resize: none; }

/* ═══════════════════════════════ NAVBAR ═══════════════════════════════ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: var(--color-bg);
    transition: all 0.3s;
}
.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--color-border);
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}
.navbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4rem;
}
.navbar__logo-img { height: 2rem; }
.navbar__links {
    display: none;
    align-items: center;
    gap: 2rem;
}
.navbar__link {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-text-muted);
    transition: color 0.2s;
}
.navbar__link:hover { color: var(--color-text); }
.navbar__actions { display: none; }

.navbar__burger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
}
.navbar__burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-text);
    transition: all 0.3s;
}
.navbar__burger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.navbar__burger.active span:nth-child(2) { opacity: 0; }
.navbar__burger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.navbar__mobile {
    display: none;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem var(--gutter) 1.5rem;
}
.navbar__mobile.open { display: flex; }
.navbar__mobile-link {
    font-weight: 500;
    color: var(--color-text-muted);
    padding: 0.5rem 0;
}
.navbar__mobile-link:hover { color: var(--color-text); }

@media (min-width: 1024px) {
    .navbar__links { display: flex; }
    .navbar__actions { display: block; }
    .navbar__burger { display: none; }
    .navbar__mobile { display: none !important; }
    .navbar__logo-img { height: 2.25rem; }
}

/* ═══════════════════════════════ HERO ═══════════════════════════════ */
.hero {
    padding-top: 5rem;
    background: var(--color-hero-bg);
}
.hero__content {
    padding-top: 3rem;
    padding-bottom: 1rem;
    text-align: center;
}
.hero__title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 5vw, 3.5rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.15;
    max-width: 56rem;
    margin: 0 auto;
}

/* Rotating tagline */
.hero__rotating {
    position: relative;
    height: 2rem;
    margin-top: 1.25rem;
    overflow: hidden;
}
.rotating-line {
    position: absolute;
    inset: 0;
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 300;
    opacity: 0;
    transform: translateY(1rem);
    transition: all 0.4s;
}
.rotating-line.active {
    opacity: 1;
    transform: translateY(0);
}

/* Game cards carousel */
.games-carousel { margin-top: 1rem; }
.games-carousel__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}
.games-carousel__count {
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.4);
}
.games-carousel__nav { display: flex; gap: 0.5rem; }
.games-carousel__btn {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: var(--radius-full);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.4);
    transition: all 0.2s;
}
.games-carousel__btn:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.5);
}

.games-carousel__track {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding-bottom: 2rem;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.games-carousel__track::-webkit-scrollbar { display: none; }

.game-card {
    flex-shrink: 0;
    width: 14rem;
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    aspect-ratio: 3/4;
    scroll-snap-align: start;
    cursor: pointer;
    transition: all 0.5s;
}
.game-card:hover { transform: scale(1.02); }
.game-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.game-card:hover .game-card__img { transform: scale(1.05); }
.game-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 40%, transparent 100%);
}
.game-card__focus {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    padding: 0.375rem 0.625rem;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    font-size: 0.75rem;
    font-weight: 500;
    color: #fff;
}
.game-card__info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
}
.game-card__title {
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.25rem;
}
.game-card__desc {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 0.5rem;
}
.game-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.375rem;
}
.game-card__meta span {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.125rem 0.5rem;
    border-radius: 0.375rem;
    background: rgba(255, 255, 255, 0.1);
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Use cases */
.hero__usecases {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
}
.hero__usecases-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.3);
    text-align: center;
    margin-bottom: 1.5rem;
}
.hero__usecases-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
}
.usecase-pill {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1rem;
    border-radius: var(--radius-full);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    transition: all 0.2s;
    white-space: nowrap;
}
.usecase-pill:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}
.usecase-pill svg { color: var(--color-primary); }

/* ═══════════════════════════════ SECTIONS ═══════════════════════════════ */
.section { padding: 5rem 0; }
.section--muted { background: var(--color-bg-muted); }
.section--border-top { border-top: 1px solid var(--color-border); }

.section__label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-text-muted);
    margin-bottom: 0.75rem;
}
.section__label--mt { margin-top: 3rem; }

.section__title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--color-text);
    line-height: 1.15;
}
.section__title--center { text-align: center; }
.section__title--mt { margin-top: 3rem; }

.section__subtitle {
    color: var(--color-text-muted);
    margin-top: 0.75rem;
    max-width: 42rem;
}
.section__subtitle--center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

/* ═══════════════════════════════ WHY — LOOP ═══════════════════════════════ */
.loop-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 3rem;
}
.loop-step { position: relative; }
.loop-step__number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-border);
}
.loop-step__title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}
.loop-step__desc {
    color: var(--color-text-muted);
    font-size: 0.875rem;
    line-height: 1.6;
}
.loop-step__arrow {
    display: none;
    position: absolute;
    top: 1.5rem;
    right: -0.75rem;
    color: var(--color-border);
}

@media (min-width: 768px) {
    .loop-steps { grid-template-columns: repeat(4, 1fr); }
    .loop-step__arrow { display: block; }
    .loop-step:last-child .loop-step__arrow { display: none; }
}

/* ═══════════════════════════════ WHY — ADVANTAGES ═══════════════════════════════ */
.advantages-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}
.advantage-card {
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    transition: border-color 0.2s;
}
.advantage-card:hover { border-color: var(--color-border-hover); }
.advantage-card__title {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}
.advantage-card__desc {
    color: var(--color-text-muted);
    font-size: 0.875rem;
    line-height: 1.6;
}

@media (min-width: 640px) {
    .advantages-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ═══════════════════════════════ CASES ═══════════════════════════════ */
.cases__header {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}
.cases__stats {
    display: flex;
    gap: 2rem;
    text-align: center;
}
.stat__value {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
}
.stat__label {
    font-size: 0.75rem;
    color: var(--color-text-muted);
}
.cases__logos-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-text-muted);
    margin-bottom: 2rem;
}
.cases__logos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    align-items: center;
}
.logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    border-radius: var(--radius-lg);
    background: rgba(0,0,0,0.02);
    border: 1px solid rgba(0,0,0,0.04);
    height: 5rem;
}
.logo-item img {
    max-height: 3.5rem;
    max-width: 100%;
    object-fit: contain;
    opacity: 0.8;
    transition: opacity 0.2s;
}
.logo-item:hover img { opacity: 1; }

@media (min-width: 640px) {
    .cases__logos { grid-template-columns: repeat(4, 1fr); }
}
@media (min-width: 768px) {
    .cases__header { flex-direction: row; align-items: flex-end; justify-content: space-between; }
    .cases__logos { grid-template-columns: repeat(7, 1fr); }
}

/* ═══════════════════════════════ GALLERY ═══════════════════════════════ */
.gallery__header { text-align: center; margin-bottom: 2rem; }
.gallery__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    background: var(--color-primary-light);
    border: 1px solid var(--color-primary-border);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
}

.gallery { position: relative; max-width: 56rem; margin: 0 auto; }
.gallery__viewport {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    aspect-ratio: 16/10;
    background: var(--color-bg-card);
}
.gallery__track {
    display: flex;
    transition: transform 0.3s ease;
    height: 100%;
}
.gallery-slide {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
}
.gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.gallery__counter {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    padding: 0.375rem 0.75rem;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(8px);
    font-size: 0.75rem;
    font-weight: 500;
}
.gallery__btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 2.5rem;
    height: 2.5rem;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}
.gallery__btn:hover { background: var(--color-bg); }
.gallery__btn--prev { left: 0.75rem; }
.gallery__btn--next { right: 0.75rem; }

.gallery__thumbs {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    overflow-x: auto;
    padding: 0.25rem 1rem 0.5rem;
}
.gallery-thumb {
    flex-shrink: 0;
    width: 3.5rem;
    height: 2.5rem;
    border-radius: 0.5rem;
    overflow: hidden;
    border: 2px solid transparent;
    opacity: 0.5;
    transition: all 0.2s;
    padding: 0;
}
.gallery-thumb:hover { opacity: 0.8; }
.gallery-thumb.active {
    border-color: var(--color-primary);
    opacity: 1;
    transform: scale(1.05);
}
.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (min-width: 768px) {
    .gallery__viewport { aspect-ratio: 16/9; }
    .gallery-thumb {
        width: 5rem;
        height: 3.5rem;
    }
}

/* ═══════════════════════════════ TEAM ═══════════════════════════════ */
.team-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    max-width: 56rem;
    margin: 2rem auto 3rem;
}
.team-card { cursor: pointer; }
.team-card__photo-wrap {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--color-border);
    transition: border-color 0.3s;
    aspect-ratio: 4/3;
}
.team-card:hover .team-card__photo-wrap { border-color: var(--color-border-hover); }
.team-card__photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.7s;
}
.team-card:hover .team-card__photo { transform: scale(1.05); }
.team-card__photo-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--color-bg) 0%, rgba(255,255,255,0.2) 40%, transparent 100%);
    opacity: 0.8;
}
.team-card__role {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.375rem 0.75rem;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    border: 1px solid var(--color-border);
    font-size: 0.875rem;
    font-weight: 600;
}
.team-card__name-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.25rem;
}
.team-card__name {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}
.team-bio-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.75rem;
    color: var(--color-text-muted);
    margin-top: 0.5rem;
    transition: color 0.2s;
}
.team-bio-toggle:hover { color: var(--color-text); }
.team-bio-toggle svg { transition: transform 0.3s; }
.team-bio-toggle.open svg { transform: rotate(180deg); }

.team-bio {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 0.25rem;
}
.team-bio.open {
    max-height: 500px;
    padding: 1rem 0.25rem 0.5rem;
}
.team-bio p {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    line-height: 1.7;
    margin-bottom: 0.25rem;
}

@media (min-width: 768px) {
    .team-grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
}

/* ═══════════════════════════════ PARTNERS ═══════════════════════════════ */
.partners-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    max-width: 56rem;
    margin: 1rem auto 0;
}
.partner-card {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    padding: 1.5rem;
    border-radius: var(--radius-xl);
    border: 1px solid var(--color-border);
    background: rgba(255, 255, 255, 0.5);
    transition: border-color 0.3s;
}
.partner-card:hover { border-color: var(--color-border-hover); }
.partner-card__photo {
    width: 6rem;
    height: 6rem;
    border-radius: var(--radius-xl);
    object-fit: cover;
    flex-shrink: 0;
}
.partner-card__name {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 700;
}
.partner-card__role {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    font-weight: 500;
    margin-top: 0.25rem;
    margin-bottom: 1rem;
}
.partner-card__creds li {
    font-size: 0.875rem;
    color: var(--color-text-light);
    line-height: 1.7;
}

@media (min-width: 768px) {
    .partners-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ═══════════════════════════════ BOOKING ═══════════════════════════════ */
.booking {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 56rem;
    margin: 2rem auto 0;
}
.booking__events { display: flex; flex-direction: column; gap: 1rem; }
.booking__event {
    padding: 1.25rem;
    border-radius: var(--radius-xl);
    border: 1px solid var(--color-border);
    background: var(--color-bg);
}
.booking__event-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 0.75rem;
}
.booking__event-title {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 700;
}
.booking__event-badge {
    font-size: 0.75rem;
    font-weight: 500;
    padding: 0.25rem 0.625rem;
    border-radius: var(--radius-full);
    background: var(--color-bg-muted);
    color: var(--color-text-muted);
}
.booking__event-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.875rem;
    color: var(--color-text-muted);
}
.booking__event-meta span {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
}

.booking__form-wrap {
    padding: 1.5rem;
    border-radius: var(--radius-xl);
    border: 1px solid var(--color-border);
    background: var(--color-bg);
}
.booking__form-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
}
.booking__form { display: flex; flex-direction: column; gap: 0.75rem; }
.booking__form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
}

.booking__success {
    text-align: center;
    padding: 2rem 0;
}
.booking__success svg { margin: 0 auto 1rem; }
.booking__success h4 {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.booking__success p {
    color: var(--color-text-muted);
    font-size: 0.875rem;
}

@media (min-width: 640px) {
    .booking__form-row { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 768px) {
    .booking { grid-template-columns: 1fr 1fr; }
}

/* ═══════════════════════════════ FOOTER ═══════════════════════════════ */
.footer {
    padding: 2.5rem 0;
    border-top: 1px solid var(--color-border);
}
.footer__inner {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.footer__name {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.25rem;
}
.footer__desc {
    color: var(--color-text-muted);
    font-size: 0.875rem;
    margin-top: 0.5rem;
    max-width: 20rem;
}
.footer__links {
    display: flex;
    gap: 1.5rem;
    font-size: 0.875rem;
    color: var(--color-text-muted);
}
.footer__links a:hover { color: var(--color-text); }
.footer__social { display: flex; gap: 0.75rem; }
.footer__social-link {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: var(--radius-full);
    border: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted);
    transition: all 0.2s;
}
.footer__social-link:hover {
    color: var(--color-text);
    border-color: var(--color-border-hover);
}

.footer__bottom {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--color-border);
    font-size: 0.75rem;
    color: var(--color-text-muted);
}

@media (min-width: 768px) {
    .footer__inner {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
    }
}
