/* ══════════════════════════════════════════════════════════════
   POROCOX COHESIVE CORE THEME SYSTEM
   Shared CSS for Index, AMAC, Gestura, Gestura Info, Login & Signup
   ══════════════════════════════════════════════════════════════ */

@font-face {
    font-family: 'Google Sans';
    src: url('./Fonts/GoogleSans-VariableFont_GRAD,opsz,wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

:root {
    --color-white: #ffffff;
    --color-black: #000000;
    --color-blue: #0071e3;
    --color-blue-hover: #0077ed;
    --color-orange: #bf4800;

    --text-primary: #1d1d1f;
    --text-secondary: #86868b;
    --text-tertiary: #6e6e73;
    --text-light: #ffffff;

    --bg-primary: #ffffff;
    --bg-secondary: #ffffff;
    --bg-dark: #000000;

    --footer-bg: #fafafa;
    --footer-border: #e5e5e5;
    --footer-text-primary: #1d1d1f;
    --footer-text-link: #6e6e73;
    --footer-text-link-hover: #1d1d1f;
    --footer-text-copy: #a1a1a6;
    --footer-watermark: #f0f0f0;
    --footer-icon-bg: #1d1d1f;
    --footer-icon-fg: #ffffff;

    --lg-blur: 20px;
    --lg-saturate: 180%;
    --lg-tint-light: rgba(255, 255, 255, 0.72);
    --lg-tint-dark: rgba(29, 29, 31, 0.82);
    --lg-border-light: rgba(0, 0, 0, 0.08);
    --lg-border-dark: rgba(255, 255, 255, 0.12);

    --nav-height: 48px;
    --content-width: 80%;
    --content-max-width: 1200px;
    --carousel-gap: 20px;

    --space-1: 8px;
    --space-2: 16px;
    --space-3: 24px;
    --space-4: 32px;
    --space-5: 40px;
    --space-6: 48px;
    --space-7: 56px;
    --space-8: 64px;
    --space-10: 80px;
    --space-12: 96px;
    --space-16: 128px;

    --ease-apple: cubic-bezier(0.32, 0.72, 0, 1);
    --font-system: 'Google Sans', 'Inter', -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Arial", sans-serif;
}

/* Reset and Globals */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
    background: #ffffff;
}

body {
    font-family: var(--font-system);
    background: #ffffff;
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.47059;
    font-weight: 400;
    letter-spacing: -0.022em;
}

a {
    -webkit-tap-highlight-color: transparent;
    text-decoration: none;
    color: inherit;
}

button {
    -webkit-tap-highlight-color: transparent;
    border: none;
    background: none;
    font-family: inherit;
    cursor: pointer;
    outline: none;
}

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

/* ── AUTH STRIP ── */
.auth-strip {
    position: relative;
    background: #f5f5f7;
    border-bottom: 1px solid #d2d2d7;
    padding: 10px 24px;
    font-family: var(--font-system);
    display: none;
    align-items: center;
    justify-content: center;
    gap: 20px;
    z-index: 9997;
    transition: all 0.4s var(--ease-apple);
    opacity: 0;
    transform: translateY(-10px);
}

.auth-strip.visible {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}

.auth-strip-text {
    font-size: 13px;
    color: #1d1d1f;
    line-height: 1.4;
    max-width: 600px;
    text-align: center;
}

.auth-strip-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.auth-strip-btn {
    font-size: 13px;
    font-weight: 500;
    color: var(--color-blue);
    cursor: pointer;
    transition: opacity 0.2s ease;
    background: none;
    border: none;
    padding: 0;
    font-family: inherit;
}

.auth-strip-btn:hover {
    text-decoration: underline;
    opacity: 0.8;
}

.auth-strip-btn.primary {
    background: var(--color-blue);
    color: white;
    padding: 6px 14px;
    border-radius: 980px;
    text-decoration: none;
}

.auth-strip-btn.primary:hover {
    background: var(--color-blue-hover);
    text-decoration: none;
}

.auth-strip-close {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #86868b;
    font-size: 18px;
    cursor: pointer;
    padding: 4px;
    line-height: 1;
    background: none;
    border: none;
}

@media (max-width: 734px) {
    .auth-strip {
        flex-direction: column;
        gap: 12px;
        padding: 16px 24px;
        text-align: center;
    }
    .auth-strip-close {
        top: 10px;
        right: 10px;
        transform: none;
    }
}

/* ── LOGIN MODAL ── */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
}

.auth-modal {
    background: #1e1e1e;
    width: 100%;
    max-width: 440px;
    padding: 40px;
    border-radius: 24px;
    color: white;
    position: relative;
    opacity: 0;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-overlay.active .auth-modal {
    transform: scale(1);
}

.auth-modal-close {
    position: absolute;
    right: 20px;
    top: 20px;
    background: none;
    border: none;
    color: #86868b;
    font-size: 24px;
    cursor: pointer;
    padding: 8px;
    line-height: 1;
    transition: color 0.2s ease;
}

.auth-modal-close:hover {
    color: white;
}

.auth-modal-header {
    text-align: center;
    margin-bottom: 32px;
}

.auth-modal-title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.auth-modal-subtitle {
    font-size: 15px;
    color: #86868b;
    line-height: 1.5;
}

.social-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.social-btn {
    height: 52px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: transparent;
    color: white;
    display: flex;
    align-items: center;
    padding: 0 20px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease;
    gap: 12px;
}

.social-btn:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.3);
}

.social-btn img {
    width: 20px;
    height: 20px;
}

.social-btn svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.auth-divider {
    display: flex;
    align-items: center;
    margin: 24px 0;
    gap: 16px;
}

.auth-divider::before, .auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.auth-divider span {
    font-size: 12px;
    color: #6e6e73;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
}

.auth-input-group {
    margin-bottom: 20px;
}

.auth-input {
    width: 100%;
    height: 52px;
    background: #2c2c2e;
    border: 1px solid transparent;
    border-radius: 12px;
    padding: 0 16px;
    color: white;
    font-size: 16px;
    outline: none;
    transition: border-color 0.2s ease;
}

.auth-input:focus {
    border-color: var(--color-blue);
}

.auth-btn-continue {
    width: 100%;
    height: 52px;
    background: white;
    color: black;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.auth-btn-continue:hover {
    opacity: 0.9;
}

/* ── GLOBAL STICKY NAV ── */
.global-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    height: var(--nav-height);
    width: 100%;
    transition: transform 0.4s var(--ease-apple);
}

.global-nav.nav-hidden {
    transform: translateY(-100%);
}

.global-nav::before {
    content: '';
    position: absolute;
    inset: 0;
    backdrop-filter: blur(var(--lg-blur)) saturate(var(--lg-saturate));
    -webkit-backdrop-filter: blur(var(--lg-blur)) saturate(var(--lg-saturate));
    background: var(--lg-tint-light);
    border-bottom: 0.5px solid var(--lg-border-light);
    z-index: -1;
    transition: background 0.36s var(--ease-apple), border-color 0.36s var(--ease-apple), transform 0.4s var(--ease-apple);
}

.global-nav.nav-hidden::before {
    transform: translateY(-100%);
}

.global-nav.dark-mode::before {
    background: var(--lg-tint-dark);
    border-bottom-color: var(--lg-border-dark);
}

.global-nav::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.5) 25%, rgba(255, 255, 255, 0.8) 50%, rgba(255, 255, 255, 0.5) 75%, transparent 100%);
    opacity: 0.6;
    z-index: 1;
    transition: opacity 0.36s ease;
}

.global-nav.dark-mode::after {
    opacity: 0.3;
}

.nav-container {
    max-width: 1024px;
    margin: 0 auto;
    padding: 0 22px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.nav-logo {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 8px;
    margin-left: -8px;
    flex-shrink: 0;
}

.nav-logo-img {
    height: 18px;
    width: auto;
    transition: filter 0.36s var(--ease-apple), opacity 0.36s ease;
    opacity: 0.92;
}

.nav-logo:hover .nav-logo-img {
    opacity: 1;
}

.global-nav.dark-mode .nav-logo-img {
    filter: brightness(0) invert(1);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 0;
    list-style: none;
    flex: 1;
    justify-content: center;
}

.nav-links li {
    display: flex;
}

.nav-links a {
    font-size: 12px;
    font-weight: 400;
    color: var(--text-primary);
    padding: 0 12px;
    height: var(--nav-height);
    display: flex;
    align-items: center;
    opacity: 0.88;
    transition: opacity 0.3s ease, color 0.36s var(--ease-apple);
    white-space: nowrap;
}

.nav-links a:hover {
    opacity: 1;
}

.global-nav.dark-mode .nav-links a {
    color: var(--text-light);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-right: -8px;
}

.nav-action-btn {
    width: 40px;
    height: var(--nav-height);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.88;
    transition: opacity 0.3s ease;
}

.nav-action-btn:hover {
    opacity: 1;
}

.nav-action-btn svg {
    width: 16px;
    height: 16px;
    fill: var(--text-primary);
    transition: fill 0.36s var(--ease-apple);
}

.global-nav.dark-mode .nav-action-btn svg {
    fill: var(--text-light);
}

.nav-hamburger {
    display: none;
    width: 40px;
    height: var(--nav-height);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    opacity: 0.88;
    transition: opacity 0.3s ease;
}

.nav-hamburger:hover {
    opacity: 1;
}

.nav-hamburger-line {
    width: 17px;
    height: 1.5px;
    background: var(--text-primary);
    border-radius: 1px;
    transition: transform 0.36s var(--ease-apple), opacity 0.36s ease, background 0.36s var(--ease-apple);
    transform-origin: center;
}

.global-nav.dark-mode .nav-hamburger-line {
    background: var(--text-light);
}

.nav-hamburger.active .nav-hamburger-line:first-child {
    transform: translateY(3.25px) rotate(45deg);
}

.nav-hamburger.active .nav-hamburger-line:last-child {
    transform: translateY(-3.25px) rotate(-45deg);
}

.nav-right-cluster {
    display: flex;
    align-items: center;
    margin-right: -8px;
}

/* ── SEARCH OVERLAY ── */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(30px) saturate(200%);
    -webkit-backdrop-filter: blur(30px) saturate(200%);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s var(--ease-apple), visibility 0.4s;
}

.search-overlay.active {
    opacity: 1;
    visibility: visible;
}

.search-container {
    max-width: 680px;
    margin: 0 auto;
    padding: 0 24px;
    padding-top: calc(var(--nav-height) + 40px);
}

.search-input-wrapper {
    position: relative;
    margin-bottom: 32px;
}

.search-input {
    width: 100%;
    height: 56px;
    padding: 0 56px 0 20px;
    font-size: 17px;
    font-family: var(--font-system);
    color: var(--text-primary);
    background: rgba(0, 0, 0, 0.04);
    border: none;
    border-radius: 12px;
    outline: none;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.search-input:focus {
    background: rgba(0, 0, 0, 0.06);
    box-shadow: 0 0 0 4px rgba(0, 113, 227, 0.15);
}

.search-input::placeholder {
    color: var(--text-secondary);
}

.search-clear-btn {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s;
}

.search-clear-btn.visible {
    opacity: 1;
    visibility: visible;
}

.search-clear-btn svg {
    width: 12px;
    height: 12px;
    fill: var(--text-secondary);
}

.search-close-btn {
    position: absolute;
    top: 12px;
    right: 24px;
    font-size: 17px;
    color: var(--color-blue);
    padding: 8px 16px;
    transition: opacity 0.2s ease;
}

.search-close-btn:hover {
    opacity: 0.7;
}

.search-results {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.search-section {
    padding: 16px 0;
}

.search-section-title {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 12px;
    padding: 0 4px;
}

.search-result-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 16px;
    border-radius: 12px;
    transition: background 0.2s ease;
    cursor: pointer;
}

.search-result-item:hover {
    background: rgba(0, 0, 0, 0.04);
}

.search-result-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.search-result-icon svg {
    width: 20px;
    height: 20px;
    fill: white;
}

.search-result-content {
    flex: 1;
    min-width: 0;
}

.search-result-title {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.search-result-description {
    font-size: 13px;
    color: var(--text-secondary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.search-no-results {
    text-align: center;
    padding: 60px 20px;
}

.search-no-results-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.search-no-results-text {
    font-size: 15px;
    color: var(--text-secondary);
}

.quick-links {
    margin-top: 24px;
}

.quick-link-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 4px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    transition: opacity 0.2s ease;
}

.quick-link-item:hover {
    opacity: 0.7;
}

.quick-link-item:last-child {
    border-bottom: none;
}

.quick-link-icon {
    width: 20px;
    height: 20px;
    fill: var(--text-tertiary);
}

.quick-link-text {
    font-size: 15px;
    color: var(--color-blue);
}

/* ── MOBILE NAV OVERLAY ── */
.mobile-nav {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.4s var(--ease-apple), visibility 0.4s, transform 0.4s var(--ease-apple);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.mobile-nav.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mobile-nav-content {
    padding: 12px 48px 48px;
}

.mobile-nav-links {
    list-style: none;
}

.mobile-nav-links li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.mobile-nav-links a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
    font-size: 17px;
    font-weight: 600;
    color: var(--text-primary);
    transition: opacity 0.3s ease;
}

.mobile-nav-links a::after {
    content: '';
    width: 8px;
    height: 8px;
    border-right: 2px solid var(--text-secondary);
    border-bottom: 2px solid var(--text-secondary);
    transform: rotate(-45deg);
    opacity: 0.5;
}

.mobile-nav-links a:active {
    opacity: 0.6;
}

.nav-spacer {
    height: var(--nav-height);
}

/* ── PREMIUM BUTTONS ── */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    min-width: 140px;
    height: 44px;
    font-size: 17px;
    font-weight: 400;
    color: var(--color-white);
    background: var(--color-blue);
    border-radius: 980px;
    transition: background 0.3s var(--ease-apple), transform 0.2s var(--ease-apple);
    white-space: nowrap;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.btn-primary:hover {
    background: var(--color-blue-hover);
}

.btn-primary:active {
    transform: scale(0.98);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    min-width: 100px;
    height: 44px;
    font-size: 17px;
    font-weight: 400;
    color: var(--color-blue);
    background: transparent;
    border: 1px solid var(--color-blue);
    border-radius: 980px;
    transition: background 0.3s var(--ease-apple), color 0.3s var(--ease-apple), transform 0.2s var(--ease-apple);
    white-space: nowrap;
    cursor: pointer;
    font-family: inherit;
}

.btn-secondary:hover {
    background: var(--color-blue);
    color: var(--color-white);
}

.btn-secondary:active {
    transform: scale(0.98);
}

.btn-secondary.btn-dark {
    color: rgba(255, 255, 255, 0.92);
    border-color: rgba(255, 255, 255, 0.4);
}

.btn-secondary.btn-dark:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
    color: var(--color-white);
}

.btn-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    flex-wrap: nowrap;
}

/* ── PREMIUM FOOTER ── */
.footer {
    position: relative;
    overflow: hidden;
    background: var(--footer-bg);
    border-top: 1px solid var(--footer-border);
    padding: 0 var(--space-10);
    min-height: 520px;
    padding-bottom: 180px;
    font-family: var(--font-system);
}

.footer__icon2 img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.footer__content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: var(--space-7) 0 0;
    position: relative;
    z-index: 3;
}

.footer__brand {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
    flex-shrink: 0;
    min-width: 200px;
}

.footer__brand-lockup {
    display: flex;
    align-items: center;
    gap: 9px;
}

.footer__icon {
    width: 30px;
    height: 30px;
    background: var(--footer-icon-bg);
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.footer__icon svg {
    width: 17px;
    height: 17px;
    display: block;
}

.footer__brand-name {
    font-size: 17px;
    font-weight: bold;
    color: var(--footer-text-primary);
}

.footer__brand-copy {
    font-size: 11px;
    color: var(--footer-text-copy);
    line-height: 1.55;
}

.footer__nav {
    display: flex;
    gap: var(--space-10);
    align-items: flex-start;
}

.footer__col {
    display: flex;
    flex-direction: column;
}

.footer__col-title {
    font-size: 12px;
    font-weight: 600;
    color: var(--footer-text-primary);
    margin-bottom: var(--space-2);
}

.footer__col a {
    font-size: 12px;
    color: var(--footer-text-link);
    text-decoration: none;
    margin-bottom: 11px;
    transition: color 0.2s ease;
    width: fit-content;
}

.footer__col a:last-child {
    margin-bottom: 0;
}

.footer__col a:hover {
    color: var(--footer-text-link-hover);
}

.footer__gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 320px;
    background: linear-gradient(to bottom, var(--footer-bg), transparent);
    z-index: 2;
    pointer-events: none;
}

.footer__watermark {
    position: absolute;
    bottom: 60px;
    left: 0;
    right: 0;
    text-align: center;
    font-size: 142px;
    font-weight: 700;
    letter-spacing: -0.04em;
    color: var(--footer-watermark);
    pointer-events: none;
    user-select: none;
    line-height: 1;
    white-space: nowrap;
    z-index: 1;
}

.footer__paragraph {
    position: absolute;
    bottom: 200px;
    left: 0;
    right: 0;
    padding-top: var(--space-12);
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    color: var(--footer-text-copy);
    user-select: none;
    z-index: 1;
}

.footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-2) 0 var(--space-3);
    position: relative;
    z-index: 3;
    flex-wrap: wrap;
    gap: var(--space-1);
    margin-top: var(--space-3);
    border-top: 1px solid var(--footer-border);
}

.footer__bottom-copy {
    font-size: 11px;
    padding-left: 39px;
    color: var(--footer-text-copy);
}

.footer__bottom-links {
    display: flex;
    align-items: center;
}

.footer__bottom-links a {
    font-size: 11px;
    color: var(--footer-text-copy);
    text-decoration: none;
    padding-right: 10px;
    margin-right: 10px;
    border-right: 1px solid #d0d0d0;
    line-height: 1;
    transition: color 0.2s;
}

.footer__bottom-links a:last-child {
    border-right: none;
    padding-right: 0;
    margin-right: 0;
}

.footer__bottom-links a:hover {
    color: var(--text-primary);
}

/* Responsive & Helpers */
@media (max-width: 1023px) {
    .global-nav .nav-links {
        display: none;
    }
    .global-nav .nav-hamburger {
        display: flex;
    }
    .footer {
        padding: 0 var(--space-4) var(--space-8);
        min-height: auto;
    }
    .footer__content {
        flex-direction: column;
        gap: var(--space-5);
    }
    .footer__nav {
        width: 100%;
        justify-content: space-between;
        gap: var(--space-2);
        flex-wrap: wrap;
    }
    .footer__watermark {
        font-size: 72px;
        bottom: 48px;
    }
    .footer__paragraph {
        bottom: 120px;
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .footer__watermark {
        font-size: 48px;
        bottom: 32px;
    }

    .footer__paragraph {
        bottom: 100px;
        font-size: 12px;
        padding-top: var(--space-8);
    }

    .footer__gradient {
        height: 200px;
    }

    .footer__bottom {
        padding: var(--space-2) 0;
        gap: var(--space-2);
    }

    .footer__bottom-copy {
        font-size: 10px;
    }

    .footer__bottom-links {
        flex-wrap: wrap;
        gap: var(--space-1);
    }

    .footer__bottom-links a {
        font-size: 10px;
        padding-right: 8px;
        margin-right: 8px;
    }
}

@media (max-width: 375px) {
    .footer {
        padding-bottom: 80px;
        min-height: 360px;
    }

    .footer__nav {
        flex-direction: column;
        gap: var(--space-3);
    }

    .footer__col {
        min-width: 100%;
    }

    .footer__watermark {
        font-size: 36px;
        bottom: 24px;
    }

    .footer__paragraph {
        bottom: 80px;
        font-size: 11px;
    }

    .footer__gradient {
        height: 160px;
    }

    .footer__bottom-links {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }

    .footer__bottom-links a {
        border-right: none;
        padding-right: 0;
        margin-right: 0;
        padding: 4px 0;
    }
}
