:root {
    --bg-deep: #080c10;
    --bg: #0c1118;
    --bg-elevated: #121a24;
    --surface: #161f2c;
    --border: rgba(148, 163, 184, 0.12);
    --border-strong: rgba(148, 163, 184, 0.22);
    --text: #eef2f7;
    --text-muted: #94a3b8;
    --text-dim: #64748b;
    --accent: #f4a742;
    --accent-hover: #ffc266;
    --accent-muted: rgba(244, 167, 66, 0.15);
    --accent-glow: rgba(244, 167, 66, 0.35);
    --teal: #2dd4bf;
    --font-body: "DM Sans", system-ui, sans-serif;
    --font-display: "Fraunces", Georgia, serif;
    --radius: 14px;
    --radius-sm: 10px;
    --shadow-lg: 0 24px 80px rgba(0, 0, 0, 0.45);
    --header-h: 64px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-h) + 0.75rem);
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
}

body {
    margin: 0;
    font-family: var(--font-body);
    font-size: 1.0625rem;
    background: var(--bg-deep);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: clip;
    padding-bottom: env(safe-area-inset-bottom, 0);
    overflow-wrap: break-word;
}

.skip-link {
    position: absolute;
    left: -9999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.skip-link:focus {
    position: fixed;
    left: 1rem;
    top: 1rem;
    width: auto;
    height: auto;
    padding: 0.5rem 1rem;
    background: var(--accent);
    color: #111;
    z-index: 9999;
    border-radius: 8px;
}

.wrap {
    box-sizing: border-box;
    width: 100%;
    max-width: 1120px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 0;
    padding-bottom: 0;
    /* Тільки px + calc(env): без max() — інакше частина WebView скидає padding повністю */
    padding-left: 20px;
    padding-right: 20px;
    padding-left: calc(20px + env(safe-area-inset-left, 0px));
    padding-right: calc(20px + env(safe-area-inset-right, 0px));
}

@media (min-width: 900px) {
    .wrap {
        padding-left: 32px;
        padding-right: 32px;
        padding-left: calc(32px + env(safe-area-inset-left, 0px));
        padding-right: calc(32px + env(safe-area-inset-right, 0px));
    }
}

.wrap--narrow {
    max-width: 720px;
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    min-height: var(--header-h);
    border-bottom: 1px solid var(--border);
    background: color-mix(in srgb, var(--bg-deep) 92%, transparent);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding-top: env(safe-area-inset-top, 0);
}

.site-header__inner {
    min-height: var(--header-h);
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.logo {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--text);
    text-decoration: none;
    letter-spacing: -0.02em;
}

.logo:hover {
    color: var(--accent);
}

.site-nav {
    display: flex;
    gap: 1.25rem;
    flex: 1;
    justify-content: center;
    flex-wrap: wrap;
}

.site-nav a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 500;
}

.site-nav a:hover {
    color: var(--text);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.65rem 1.15rem;
    min-height: 44px;
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-weight: 600;
    font-size: 0.9375rem;
    text-decoration: none;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}

.btn:active {
    transform: scale(0.98);
}

.btn,
.site-nav a,
.faq__item summary,
.site-footer__link {
    touch-action: manipulation;
}

.btn--sm {
    padding: 0.5rem 0.9rem;
    font-size: 0.875rem;
}

.btn--lg {
    padding: 0.95rem 1.35rem;
    font-size: 1rem;
    min-height: 48px;
}

.btn--primary {
    background: linear-gradient(165deg, var(--accent-hover), var(--accent) 55%, #d97706);
    color: #1a0f00;
    box-shadow: 0 4px 24px var(--accent-glow);
}

.btn--primary:hover {
    box-shadow: 0 8px 36px var(--accent-glow);
    filter: brightness(1.03);
}

.btn--ghost {
    background: transparent;
    border-color: var(--border-strong);
    color: var(--text);
}

.btn--ghost:hover {
    background: var(--surface);
    border-color: var(--text-dim);
}

/* Hero */
.hero {
    position: relative;
    padding: clamp(2.5rem, 6vw, 4.5rem) 0 clamp(3rem, 8vw, 5rem);
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 90% 70% at 10% -20%, rgba(244, 167, 66, 0.14), transparent 50%),
        radial-gradient(ellipse 70% 50% at 95% 10%, rgba(45, 212, 191, 0.08), transparent 45%),
        radial-gradient(ellipse 60% 40% at 50% 100%, rgba(59, 130, 246, 0.06), transparent 50%);
    pointer-events: none;
}

.hero__grid {
    position: relative;
    display: grid;
    grid-template-columns: 1fr minmax(260px, 340px);
    gap: clamp(2rem, 5vw, 3.5rem);
    align-items: start;
}

@media (max-width: 900px) {
    .hero__grid {
        grid-template-columns: 1fr;
    }
}

.eyebrow {
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent);
    margin: 0 0 0.75rem;
}

.eyebrow--dim {
    color: var(--teal);
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4.5vw, 2.85rem);
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -0.03em;
    margin: 0 0 1.25rem;
    color: var(--text);
}

.hero__lead {
    margin: 0 0 1.5rem;
    color: var(--text-muted);
    max-width: 38rem;
    font-size: 1.0625rem;
}

.hero__bullets {
    margin: 0 0 1.75rem;
    padding: 0;
    list-style: none;
    max-width: 40rem;
}

.hero__bullets li {
    position: relative;
    padding-left: 1.35rem;
    margin-bottom: 0.75rem;
    color: var(--text-muted);
    font-size: 0.98rem;
}

.hero__bullets li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-muted);
}

.hero__bullets strong {
    color: var(--text);
    font-weight: 600;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

@media (max-width: 900px) {
    .hero__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero__actions .btn {
        width: 100%;
        justify-content: center;
    }
}

.hero__note {
    margin: 0;
    font-size: 0.8125rem;
    color: var(--text-dim);
    max-width: 36rem;
    line-height: 1.5;
}

.hero__panel {
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: clamp(1.25rem, 3vw, 1.75rem) max(1.1rem, min(1.75rem, 4vw));
    box-shadow: var(--shadow-lg);
}

.hero__panel-title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    margin: 0 0 1.25rem;
    font-weight: 600;
}

.hero__facts {
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.15rem;
}

.hero__facts dt {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 0.25rem;
}

.hero__facts dd {
    margin: 0;
    font-size: 0.9375rem;
    color: var(--text-muted);
    line-height: 1.55;
}

/* Strip */
.strip {
    border-block: 1px solid var(--border);
    background: var(--bg);
}

/* Окремий контейнер: поля гарантовано навіть якщо .wrap десь «ламається» у клієнті */
.strip__shell {
    box-sizing: border-box;
    width: 100%;
    max-width: 1120px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
    padding-left: calc(20px + env(safe-area-inset-left, 0px));
    padding-right: calc(20px + env(safe-area-inset-right, 0px));
}

@media (min-width: 900px) {
    .strip__shell {
        padding-left: 32px;
        padding-right: 32px;
        padding-left: calc(32px + env(safe-area-inset-left, 0px));
        padding-right: calc(32px + env(safe-area-inset-right, 0px));
    }
}

.strip__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: clamp(1rem, 3vw, 2rem);
    padding: clamp(1.5rem, 4vw, 2.25rem) 0;
}

@media (max-width: 720px) {
    .strip__grid {
        grid-template-columns: 1fr;
    }
}

.strip__label {
    display: block;
    font-weight: 700;
    font-size: 0.875rem;
    color: var(--text);
    margin-bottom: 0.5rem;
    line-height: 1.35;
}

.strip__item p {
    margin: 0;
    font-size: 0.9375rem;
    color: var(--text-muted);
    line-height: 1.55;
}

/* Sections */
.section {
    padding: clamp(3rem, 7vw, 4.5rem) 0;
}

.section--alt {
    background: linear-gradient(180deg, var(--bg) 0%, var(--bg-deep) 100%);
}

.section__title {
    font-family: var(--font-display);
    font-size: clamp(1.65rem, 3vw, 2.1rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin: 0 0 0.75rem;
}

.section__intro {
    margin: 0 0 2rem;
    color: var(--text-muted);
    max-width: 52rem;
    font-size: 1.02rem;
}

/* Steps */
.steps {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 1.25rem;
}

.steps > li {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.15rem;
    align-items: start;
    padding: 1.25rem 1.35rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: border-color 0.2s ease;
}

@media (hover: hover) {
    .steps > li:hover {
        border-color: var(--border-strong);
    }
}

.steps__num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 12px;
    background: var(--accent-muted);
    color: var(--accent);
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}

.steps__head {
    margin: 0 0 0.4rem;
    font-size: 1.05rem;
    font-weight: 600;
}

.steps p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.96rem;
}

/* Role cards */
.role-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

@media (max-width: 960px) {
    .role-cards {
        grid-template-columns: 1fr;
    }
}

.role-card {
    padding: 1.35rem 1.4rem;
    border-radius: var(--radius);
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    min-height: 100%;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

@media (hover: hover) {
    .role-card:hover {
        transform: translateY(-2px);
        border-color: color-mix(in srgb, var(--accent) 35%, var(--border));
    }
}

.role-card__tag {
    align-self: flex-start;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--bg-deep);
    background: var(--teal);
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
    margin-bottom: 0.85rem;
}

.role-card__title {
    margin: 0 0 0.65rem;
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
}

.role-card__text {
    margin: 0 0 1rem;
    color: var(--text-muted);
    font-size: 0.9375rem;
    flex: 1;
}

.role-card__list {
    margin: 0;
    padding-left: 1.1rem;
    color: var(--text-dim);
    font-size: 0.875rem;
}

.role-card__list li {
    margin-bottom: 0.35rem;
}

/* FAQ */
.faq {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.faq__item {
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--surface);
    overflow: hidden;
}

.faq__item summary {
    padding: 1rem 1.15rem;
    cursor: pointer;
    font-weight: 600;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.faq__item summary::-webkit-details-marker {
    display: none;
}

.faq__item summary::after {
    content: "+";
    font-weight: 400;
    color: var(--accent);
    font-size: 1.25rem;
    line-height: 1;
}

.faq__item[open] summary::after {
    content: "−";
}

@media (hover: hover) {
    .faq__item summary:hover {
        background: color-mix(in srgb, var(--surface) 85%, var(--accent-muted));
    }
}

.faq__item p {
    margin: 0;
    padding: 0 1.15rem 1.1rem;
    color: var(--text-muted);
    font-size: 0.9375rem;
    border-top: 1px solid var(--border);
    padding-top: 0.85rem;
}

/* CTA band */
.cta-band {
    padding: clamp(2.5rem, 5vw, 3.5rem) 0;
    background: linear-gradient(135deg, rgba(244, 167, 66, 0.12) 0%, transparent 55%),
        var(--bg-elevated);
    border-block: 1px solid var(--border);
}

.cta-band__inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.cta-band__title {
    font-family: var(--font-display);
    font-size: clamp(1.35rem, 2.5vw, 1.65rem);
    margin: 0 0 0.5rem;
    font-weight: 700;
}

.cta-band__text {
    margin: 0;
    color: var(--text-muted);
    max-width: 36rem;
}

.disclaimer {
    padding: 2rem 0 3rem;
    color: var(--text-dim);
    font-size: 0.875rem;
    line-height: 1.55;
    max-width: 56rem;
}

.site-footer {
    border-top: 1px solid var(--border);
    padding: 1.5rem 0 2.5rem;
    background: var(--bg-deep);
}

.site-footer__inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    font-size: 0.875rem;
    color: var(--text-dim);
}

.site-footer__link {
    color: var(--accent);
    font-weight: 600;
    text-decoration: none;
}

.site-footer__link:hover {
    text-decoration: underline;
}

.site-footer__inner--stack {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
}

.site-footer__copy {
    margin: 0;
}

.site-footer__nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.35rem 0.15rem;
    max-width: 100%;
}

.site-footer__sep {
    color: var(--text-dim);
    user-select: none;
    padding: 0 0.15rem;
}

.legal-page .site-header__inner {
    flex-wrap: wrap;
}

.legal-main {
    padding-top: 2rem;
    padding-bottom: 3rem;
}

.legal-doc {
    max-width: 42rem;
}

.legal-doc h1 {
    font-family: var(--font-display);
    font-size: clamp(1.65rem, 3vw, 2.1rem);
    font-weight: 700;
    margin: 0 0 0.5rem;
    line-height: 1.2;
    color: var(--text);
}

.legal-doc__meta {
    margin: 0 0 1.75rem;
    font-size: 0.875rem;
    color: var(--text-dim);
}

.legal-doc h2 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 2rem 0 0.65rem;
    color: var(--text);
}

.legal-doc p,
.legal-doc li {
    color: var(--text-muted);
    font-size: 0.98rem;
}

.legal-doc p {
    margin: 0 0 1rem;
}

.legal-doc ul {
    margin: 0 0 1rem;
    padding-left: 1.35rem;
}

.legal-doc li {
    margin-bottom: 0.45rem;
}

.legal-doc a {
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.legal-doc a:hover {
    color: var(--accent-hover);
}

.legal-doc__email {
    font-size: 1.15rem;
    font-weight: 600;
}

.legal-doc__email a {
    text-decoration: none;
}

.legal-doc__email a:hover {
    text-decoration: underline;
}

/* ——— Мобільна верстка ——— */
@media (max-width: 640px) {
    html {
        scroll-padding-top: calc(env(safe-area-inset-top, 0px) + 5.75rem);
    }

    body {
        font-size: 1rem;
    }

    .site-header__inner {
        display: grid;
        grid-template-columns: 1fr auto;
        grid-template-areas:
            "logo cta"
            "nav nav";
        column-gap: 0.75rem;
        row-gap: 0.5rem;
        min-height: unset;
        padding-block: 0.55rem;
    }

    .logo {
        grid-area: logo;
        font-size: 1.05rem;
        min-width: 0;
    }

    .site-header .btn--sm {
        grid-area: cta;
        align-self: center;
        max-width: min(11.5rem, 46vw);
        padding-inline: 0.65rem;
        text-align: center;
        line-height: 1.25;
        white-space: normal;
    }

    .site-nav {
        grid-area: nav;
        flex: none;
        width: 100%;
        max-width: 100%;
        justify-content: flex-start;
        gap: 1rem;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding-bottom: 0.2rem;
    }

    .site-nav::-webkit-scrollbar {
        display: none;
    }

    .site-nav a {
        flex-shrink: 0;
        white-space: nowrap;
        font-size: 0.875rem;
        padding: 0.35rem 0;
    }

    /*
     * Головний лендинг: якорна навігація — лише після першого скролу.
     * Уся шапка (навігація + бренд + Telegram) одним position: fixed — інакше sticky ламається через overflow-x: clip на body.
     */
    :root {
        --landing-mobile-fixed-header-total: 6.65rem;
    }

    body.landing-home .site-header__inner {
        grid-template-areas: "logo cta";
        row-gap: 0.5rem;
    }

    body.landing-home .site-nav {
        display: none;
    }

    html.landing-mobile-nav-revealed body.landing-home {
        padding-top: calc(env(safe-area-inset-top, 0px) + var(--landing-mobile-fixed-header-total));
    }

    html.landing-mobile-nav-revealed body.landing-home .site-header {
        position: fixed;
        top: env(safe-area-inset-top, 0px);
        left: 0;
        right: 0;
        z-index: 100;
        min-height: unset;
        border-bottom: 1px solid var(--border);
        background: color-mix(in srgb, var(--bg-deep) 92%, transparent);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
    }

    html.landing-mobile-nav-revealed body.landing-home .site-header__inner {
        grid-template-areas:
            "logo cta"
            "nav nav";
        row-gap: 0.45rem;
        padding-block: 0.45rem 0.55rem;
    }

    html.landing-mobile-nav-revealed body.landing-home .site-nav {
        display: flex;
        position: static;
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 0.35rem 0 0;
        border-top: 1px solid var(--border);
        border-bottom: none;
        background: transparent;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        justify-content: flex-start;
        gap: 1rem;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    html.landing-mobile-nav-revealed body.landing-home .site-nav::-webkit-scrollbar {
        display: none;
    }

    html.landing-mobile-nav-revealed:has(body.landing-home) {
        scroll-padding-top: calc(env(safe-area-inset-top, 0px) + var(--landing-mobile-fixed-header-total) + 0.35rem);
    }

    .hero {
        padding-top: clamp(1.25rem, 4vw, 2rem);
        padding-bottom: clamp(2rem, 6vw, 3rem);
    }

    .eyebrow {
        font-size: 0.7rem;
        letter-spacing: 0.06em;
        line-height: 1.35;
    }

    .hero h1 {
        font-size: clamp(1.45rem, 6.5vw, 2.1rem);
        margin-bottom: 1rem;
    }

    .hero__lead {
        font-size: 0.98rem;
        margin-bottom: 1.15rem;
    }

    .hero__bullets li {
        font-size: 0.9rem;
        padding-left: 1.15rem;
        margin-bottom: 0.65rem;
    }

    .hero__actions {
        gap: 0.65rem;
    }

    .hero__note {
        font-size: 0.78rem;
    }

    .hero__grid {
        display: flex;
        flex-direction: column;
        gap: 1.35rem;
    }

    .strip__grid {
        gap: 0;
        padding-block: 1.5rem;
    }

    /* Вертикальні відступи всередині кожного пункту — лінія не «прилипає» до тексту */
    .strip__item {
        padding: 1.2rem 0;
        border-bottom: 1px solid var(--border);
    }

    .strip__item:first-child {
        padding-top: 0.35rem;
    }

    .strip__item:last-child {
        padding-bottom: 0.35rem;
        border-bottom: 0;
    }

    .section {
        padding: clamp(2.25rem, 6vw, 3rem) 0;
    }

    .section__intro {
        font-size: 0.95rem;
        margin-bottom: 1.35rem;
    }

    .steps > li {
        padding: 1rem 1rem;
        gap: 0.85rem;
    }

    .steps__num {
        width: 2.25rem;
        height: 2.25rem;
        font-size: 0.9rem;
    }

    .steps__head {
        font-size: 1rem;
    }

    .steps p {
        font-size: 0.9rem;
    }

    .role-card {
        padding: 1.15rem 1.1rem;
    }

    .faq__item summary {
        min-height: 48px;
        padding: 0.85rem 1rem;
        align-items: flex-start;
        font-size: 0.95rem;
        line-height: 1.35;
    }

    .faq__item summary::after {
        flex-shrink: 0;
        margin-top: 0.1em;
    }

    .faq__item p {
        font-size: 0.9rem;
        padding-inline: 1rem;
    }

    .cta-band__inner {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
        gap: 1.1rem;
    }

    .cta-band__inner > div {
        text-align: center;
    }

    .cta-band .btn {
        width: 100%;
        justify-content: center;
    }

    .disclaimer {
        padding: 1.5rem 0 2.25rem;
        font-size: 0.8125rem;
    }

    .site-footer__inner {
        flex-direction: column;
        text-align: center;
        justify-content: center;
    }

    .site-footer__inner--stack {
        align-items: center;
    }

    .site-footer__nav {
        justify-content: center;
    }

    .site-footer__link {
        display: inline-block;
        padding: 0.35rem 0;
    }
}

@media (max-width: 380px) {
    .wrap,
    .strip__shell {
        padding-left: 18px;
        padding-right: 18px;
        padding-left: calc(18px + env(safe-area-inset-left, 0px));
        padding-right: calc(18px + env(safe-area-inset-right, 0px));
    }

    .hero h1 {
        font-size: 1.4rem;
    }

    .site-nav {
        gap: 0.85rem;
    }
}

@media (max-width: 640px) and (max-height: 720px) {
    .hero__bg {
        opacity: 0.85;
    }
}
