/* =====================
   RESET & BASE
===================== */

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

html {
    scroll-behavior: smooth;
}

body {
    background: #050505;
    color: #fff;
    font-family: "Montserrat", sans-serif;
    font-weight: 300;
    font-size: 15px;
    line-height: 1.7;
    min-height: 100vh;
    overflow-x: hidden;
    cursor: none;
}

body.no-cursor {
    cursor: auto;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select,
textarea {
    font: inherit;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

/* =====================
   ANIMOWANE TŁO — siatka 3D (canvas)
===================== */

.background {
    position: fixed;
    inset: 0;
    z-index: -5;
    background: #050505;
    overflow: hidden;
    pointer-events: none;
}

.background::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 90% 80% at 50% 50%, transparent 55%, rgba(5, 5, 5, 0.35) 100%);
    pointer-events: none;
}

#mesh-canvas {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 130%;
    height: 130%;
    transform: translate(-50%, -50%);
}

/* =====================
   KURSOR
===================== */

.cursor {
    width: 18px;
    height: 18px;
    border: 1px solid #fff;
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9999;
    box-shadow: 0 0 15px #fff, 0 0 30px rgba(255, 255, 255, 0.4);
    transition: width 0.35s ease, height 0.35s ease;
    opacity: 0;
}

.cursor.is-visible {
    opacity: 1;
}

.cursor::before {
    content: "";
    position: absolute;
    inset: -12px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%   { transform: scale(0.7); opacity: 1; }
    100% { transform: scale(2); opacity: 0; }
}

/* =====================
   LAYOUT
===================== */

.container {
    width: min(1100px, 100% - 3rem);
    margin: 0 auto;
}

/* =====================
   HEADER / NAV
===================== */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 25px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    transition: background 0.4s ease, backdrop-filter 0.4s ease;
}

.site-header.is-scrolled {
    background: rgba(5, 5, 5, 0.85);
    backdrop-filter: blur(12px);
}

.logo {
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 5px;
    transition: opacity 0.4s;
}

.logo:hover {
    opacity: 0.5;
}

.site-nav {
    display: flex;
    gap: 35px;
}

.site-nav a {
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    transition: opacity 0.4s;
    position: relative;
}

.site-nav a:hover,
.site-nav a.is-active {
    opacity: 0.5;
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 7px;
}

.nav-toggle span {
    display: block;
    width: 18px;
    height: 1px;
    background: #fff;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

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

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

/* =====================
   HERO
===================== */

.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 120px 1.5rem 4rem;
    position: relative;
}

.hero-inner {
    max-width: 900px;
}

.hero-title {
    font-size: clamp(60px, 14vw, 180px);
    font-weight: 200;
    letter-spacing: clamp(12px, 3vw, 25px);
    line-height: 1;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.25);
    animation: showTitle 2s ease;
}

.hero-tagline {
    margin-top: 25px;
    font-size: clamp(10px, 2vw, 13px);
    letter-spacing: clamp(4px, 1.5vw, 8px);
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
}

.hero-text {
    margin: 2.5rem auto 0;
    max-width: 48ch;
    font-size: 14px;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.8;
}

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

.hero-meta {
    display: flex;
    gap: clamp(2rem, 6vw, 5rem);
    margin-top: clamp(3rem, 8vh, 5rem);
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.meta-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.meta-value {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 200;
    letter-spacing: 4px;
}

.meta-label {
    font-size: 9px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
}

/* =====================
   BUTTONS
===================== */

.btn {
    display: inline-block;
    margin-top: 2.5rem;
    padding: 14px 36px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: transparent;
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
    transition: background 0.4s, color 0.4s, border-color 0.4s;
}

.btn:hover {
    background: #fff;
    color: #050505;
    border-color: #fff;
}

.btn:disabled {
    opacity: 0.5;
    pointer-events: none;
}

/* =====================
   SECTIONS
===================== */

.section {
    padding: clamp(5rem, 12vh, 8rem) 0;
}

.section-label {
    display: block;
    font-size: 10px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 1.5rem;
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 200;
    letter-spacing: 6px;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    max-width: 20ch;
}

.section-lead {
    max-width: 58ch;
    color: rgba(255, 255, 255, 0.55);
    font-size: 14px;
    letter-spacing: 0.5px;
    margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.section-title--center,
.section-lead--center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.section-title--center {
    max-width: none;
}

.section--map .section-lead--center {
    max-width: 52ch;
}

.world-map {
    position: relative;
    max-width: min(100%, 1080px);
    margin: 0 auto;
    overflow: hidden;
}

.world-map__svg {
    display: block;
    width: 100%;
    height: auto;
    max-width: 100%;
}

.world-map__svg path,
.world-map__svg g path {
    fill: transparent;
    stroke: rgba(255, 255, 255, 0.42);
    stroke-width: 0.65;
    vector-effect: non-scaling-stroke;
    transition: fill 0.35s ease, stroke 0.35s ease;
}

.world-map__country {
    cursor: pointer;
    outline: none;
}

.world-map__svg g.is-active path,
.world-map__svg path.is-active {
    fill: rgba(255, 255, 255, 0.95);
    stroke: rgba(255, 255, 255, 0.95);
}

.world-map__svg g.world-map__country:not(.is-active):hover path,
.world-map__svg path.world-map__country:not(.is-active):hover {
    fill: rgba(255, 255, 255, 0.14);
    stroke: rgba(255, 255, 255, 0.72);
}

.world-map__svg g.world-map__country:focus-visible path,
.world-map__svg path.world-map__country:focus-visible {
    fill: rgba(255, 255, 255, 0.2);
    stroke: rgba(255, 255, 255, 0.9);
}

.world-map__tooltip {
    position: absolute;
    z-index: 2;
    pointer-events: none;
    padding: 0.35rem 0.65rem;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
    background: rgba(0, 0, 0, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.15);
    opacity: 0;
    transform: translate(-50%, -100%);
    transition: opacity 0.2s ease;
    white-space: nowrap;
}

.world-map__tooltip.is-visible {
    opacity: 1;
}

.world-map__error {
    text-align: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
}

/* =====================
   ABOUT
===================== */

.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(1.5rem, 3vw, 2.5rem);
}

.about-card {
    padding: clamp(1.75rem, 3vw, 2.5rem);
    background: #050505;
    transition: background 0.4s;
}

.about-card:hover {
    background: rgba(255, 255, 255, 0.03);
}

.card-num {
    display: block;
    font-size: 10px;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 1.5rem;
}

.about-card h3 {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.about-card p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
}

/* =====================
   PROJECTS
===================== */

.projects-carousel {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: clamp(1rem, 3vw, 2rem);
    align-items: center;
}

.projects-viewport {
    overflow: hidden;
    min-width: 0;
}

.projects-track {
    will-change: transform;
}

.projects-navs {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.projects-nav {
    min-width: 72px;
    padding: 0.65rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    font-size: 9px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    cursor: pointer;
    transition: border-color 0.3s ease, color 0.3s ease, background-color 0.3s ease;
}

.projects-nav:hover {
    border-color: rgba(255, 255, 255, 0.4);
    color: rgba(255, 255, 255, 0.85);
    background: rgba(255, 255, 255, 0.04);
}

.project-row {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 2rem;
    align-items: center;
    padding: 2rem 0;
}

.project-index {
    font-size: 11px;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.3);
}

.project-info,
.step-info {
    justify-self: start;
    width: fit-content;
    max-width: 100%;
    transition: transform 0.4s ease;
}

.project-info h3,
.step-info h3 {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.project-info p,
.step-info p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    max-width: 50ch;
}

@media (min-width: 901px) {
    .project-info:hover,
    .step-info:hover {
        transform: translateX(1rem);
    }
}

/* =====================
   STEPS
===================== */

.step {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 2rem;
    padding: 2rem 0;
    align-items: center;
}

.step-num {
    font-size: 11px;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.3);
}

/* =====================
   REVENUE NOTE
===================== */

.revenue-note {
    max-width: 60ch;
    margin-top: calc(clamp(2rem, 4vw, 2.5rem) + 1.8em);
}

.revenue-note p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.5px;
    line-height: 1.8;
}

/* =====================
   CONTACT
===================== */

.section--contact {
    padding-bottom: clamp(6rem, 14vh, 9rem);
}

.contact-wrap {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: clamp(2rem, 6vw, 5rem);
    align-items: start;
}

.contact-aside p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.55);
    letter-spacing: 0.5px;
    max-width: 38ch;
}

.contact-aside p + p {
    margin-top: 1.5rem;
}

.contact-aside-note {
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.75;
}

.contact-detail {
    display: grid;
    gap: 1.5rem;
}

.contact-detail dt {
    font-size: 9px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 0.35rem;
}

.contact-detail dd {
    font-size: 14px;
    letter-spacing: 1px;
}

.contact-detail a {
    transition: opacity 0.4s;
}

.contact-detail a:hover {
    opacity: 0.5;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.form-field {
    display: grid;
    gap: 0.5rem;
}

.form-field--full {
    grid-column: 1 / -1;
}

.form-field label,
.form-field .field-label {
    font-size: 9px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
}

.contact-form {
    color-scheme: dark;
}

.form-field input:not([type="radio"]):not([type="checkbox"]) {
    width: 100%;
    min-height: 48px;
    padding: 0 1rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background-color: #0a0a0a;
    color: #fff;
    font-size: 16px;
    letter-spacing: 0.5px;
    outline: none;
    transition: border-color 0.3s, background-color 0.3s;
}

.form-field input:not([type="radio"]):not([type="checkbox"]):focus {
    border-color: rgba(255, 255, 255, 0.35);
    background-color: #101010;
}

.form-field input:not([type="radio"]):not([type="checkbox"])::placeholder {
    color: rgba(255, 255, 255, 0.25);
}

/* Custom select */
.custom-select {
    position: relative;
}

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

.custom-select__trigger {
    width: 100%;
    min-height: 48px;
    padding: 0 2.5rem 0 1rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background-color: #0a0a0a;
    color: #fff;
    font-family: inherit;
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 0.5px;
    text-align: left;
    cursor: pointer;
    outline: none;
    transition: border-color 0.3s, background-color 0.3s;
    position: relative;
}

.custom-select__trigger::after {
    content: "";
    position: absolute;
    right: 1rem;
    top: 50%;
    width: 10px;
    height: 6px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23888' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
}

.custom-select.is-open .custom-select__trigger::after {
    transform: translateY(-50%) rotate(180deg);
}

.custom-select__trigger.is-placeholder {
    color: rgba(255, 255, 255, 0.55);
}

.custom-select__trigger:hover,
.custom-select.is-open .custom-select__trigger {
    border-color: rgba(255, 255, 255, 0.28);
    background-color: #101010;
}

.custom-select__trigger:focus-visible {
    border-color: rgba(255, 255, 255, 0.35);
    background-color: #101010;
}

.custom-select__list {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    z-index: 120;
    max-height: 240px;
    overflow-y: auto;
    margin: 0;
    padding: 0.35rem 0;
    list-style: none;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: #0a0a0a;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
}

.custom-select.is-open .custom-select__list {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.custom-select__option {
    display: block;
    width: 100%;
    padding: 0.7rem 1rem;
    border: 0;
    background: transparent;
    color: rgba(255, 255, 255, 0.78);
    font-family: inherit;
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 0.5px;
    text-align: left;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.custom-select__option:hover,
.custom-select__option.is-selected {
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
}

.custom-select__list::-webkit-scrollbar {
    width: 6px;
}

.custom-select__list::-webkit-scrollbar-track {
    background: transparent;
}

.custom-select__list::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.18);
    border-radius: 3px;
}

.form-field.is-invalid .custom-select__trigger {
    border-color: rgba(255, 120, 120, 0.5);
}

.intent-group {
    display: grid;
    gap: 0.75rem;
    margin-top: 0.25rem;
}

.intent-option {
    display: block;
    cursor: pointer;
}

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

.intent-chip {
    display: block;
    padding: 0.85rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: #0a0a0a;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.55);
    letter-spacing: 0.3px;
    line-height: 1.5;
    transition: border-color 0.3s, background-color 0.3s, color 0.3s;
}

.intent-option:hover .intent-chip {
    border-color: rgba(255, 255, 255, 0.22);
    background: #101010;
}

.intent-option input:focus-visible + .intent-chip {
    border-color: rgba(255, 255, 255, 0.35);
    outline: 1px solid rgba(255, 255, 255, 0.2);
    outline-offset: 2px;
}

.intent-option input:checked + .intent-chip {
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.85);
}

.form-field.is-invalid .intent-chip {
    border-color: rgba(255, 120, 120, 0.5);
}

.checkbox-field {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.55);
    letter-spacing: 0.3px;
    line-height: 1.6;
    cursor: pointer;
}

.checkbox-field input {
    margin-top: 3px;
    accent-color: #fff;
    width: auto;
    min-height: auto;
    flex-shrink: 0;
}

.form-actions {
    margin-top: 1.5rem;
    display: grid;
    gap: 1rem;
}

.form-actions .btn {
    margin-top: 0;
}

.form-message {
    font-size: 12px;
    letter-spacing: 0.5px;
    min-height: 1.4em;
    color: rgba(255, 255, 255, 0.5);
}

.form-message.is-success {
    color: rgba(160, 210, 160, 0.9);
}

.form-message.is-error {
    color: rgba(210, 150, 150, 0.9);
}

/* =====================
   FOOTER
===================== */

.site-footer {
    padding: 1rem 0 1.25rem;
    position: relative;
    z-index: 2;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem 1.25rem;
}

.footer-copy {
    margin: 0;
    font-size: 9px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.32);
}

.footer-copy a {
    color: inherit;
}

/* =====================
   LEGAL PAGE
===================== */

.legal-page {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    padding: 7rem 0 3rem;
}

.legal-page h1 {
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 200;
    letter-spacing: 6px;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.legal-page h2 {
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin: 2rem 0 0.75rem;
    color: rgba(255, 255, 255, 0.7);
}

.legal-page p,
.legal-page li {
    font-size: 13px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.5);
    max-width: 68ch;
}

.legal-page ul {
    margin: 0.5rem 0 0 1.25rem;
}

.legal-back {
    display: inline-block;
    margin-bottom: 2.5rem;
    font-size: 9px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    transition: color 0.3s ease;
}

.legal-back:hover {
    color: rgba(255, 255, 255, 0.7);
}

/* =====================
   REVEAL
===================== */

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.9s ease, transform 0.9s ease;
}

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

/* =====================
   RESPONSIVE
===================== */

@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
    }

    .contact-wrap {
        grid-template-columns: 1fr;
    }

    .project-row,
    .step {
        grid-template-columns: 40px 1fr;
        gap: 1rem;
    }

    .projects-carousel {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .projects-viewport {
        order: 1;
        width: 100%;
    }

    .projects-navs {
        order: 2;
        flex-direction: row;
        justify-content: center;
        align-items: stretch;
        gap: 0.75rem;
        width: 100%;
        margin-top: 0.25rem;
    }

    .projects-nav {
        flex: 1 1 0;
        max-width: 9.5rem;
        min-height: 2.75rem;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 0.75rem 1rem;
    }

    .section--map .container {
        width: min(1100px, 100% - 1.5rem);
    }

    .world-map__svg path,
    .world-map__svg g path {
        stroke-width: 1.1;
        vector-effect: none;
    }
}

@media (max-width: 800px) {
    body {
        cursor: auto;
    }

    .cursor {
        display: none;
    }

    .site-header {
        padding: 20px 25px;
    }

    .nav-toggle {
        display: flex;
    }

    .site-nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        background: rgba(5, 5, 5, 0.97);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: transform 0.4s ease, opacity 0.4s ease, visibility 0.4s;
    }

    .site-nav.is-open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .site-nav a {
        font-size: 12px;
        letter-spacing: 5px;
    }

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

    .hero-meta {
        flex-direction: column;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        width: min(1100px, 100% - 1.25rem);
    }

    .step {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .projects-navs {
        gap: 0.65rem;
    }

    .projects-nav {
        max-width: none;
        min-width: 0;
        font-size: 8px;
        letter-spacing: 2px;
        padding: 0.7rem 0.5rem;
    }

    .section--map .section-lead--center {
        font-size: 13px;
    }

    .world-map {
        margin-left: -0.25rem;
        margin-right: -0.25rem;
    }

    .world-map__svg path,
    .world-map__svg g path {
        stroke-width: 1.25;
    }
}

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

    .background::after,
    .cursor::before,
    .hero-title,
    .reveal,
    .world-map__svg path,
    .world-map__svg g path,
    .world-map__tooltip {
        animation: none !important;
        transition: none !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}
