/* ================================================
   4-YOU.NET — Premium Landing Page
   Gold × Crimson luxury aesthetic
   ================================================ */

:root {
    /* Backgrounds */
    --bg-deep:        #0a0808;
    --bg-card:        #120a0a;
    --bg-glass:       rgba(255,255,255,0.04);

    /* Gold palette (from logo) */
    --gold:           #D4924A;
    --gold-light:     #F0C060;
    --gold-bright:    #FFD888;
    --gold-dark:      #9A5E20;
    --gold-dim:       rgba(212,146,74,0.18);

    /* Crimson palette (from logo interior) */
    --crimson:        #C01830;
    --crimson-light:  #E03050;
    --crimson-dark:   #820010;
    --crimson-dim:    rgba(192,24,48,0.18);

    /* Text */
    --text:           #F5EDE0;
    --text-muted:     #9A8870;

    /* Border — thin gold line */
    --border:         rgba(212,146,74,0.22);
    --border-crimson: rgba(192,24,48,0.25);

    /* Legacy vars expected by some components */
    --rose:           #C01830;
    --primary-color:  #D4924A;
    --gradient-start: #F0C060;
    --gradient-end:   #D4924A;
}

/* Light theme */
[data-theme="light"] {
    --bg-deep:        #FAF3EA;
    --bg-card:        #FFFFFF;
    --bg-glass:       rgba(0,0,0,0.03);
    --text:           #1A0A04;
    --text-muted:     #7A5A3A;
    --border:         rgba(180,100,30,0.25);
    --gold-dim:       rgba(180,100,30,0.12);
    --crimson-dim:    rgba(160,10,30,0.1);
    --primary-color:  #9A5020;
    --gradient-start: #C07830;
    --gradient-end:   #7A3A10;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-deep);
    color: var(--text);
    line-height: 1.65;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ─── HEADER ─────────────────────────────── */
.header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 200;
    padding: 0 24px;
    background: rgba(10,10,12,0.72);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: background 0.3s;
}
[data-theme="light"] .header {
    background: rgba(245,240,234,0.82);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: auto;
    padding: 10px 0;
}

.logo { text-decoration: none; display: flex; align-items: center; }
.logo:hover { opacity: 0.85; }

.desktop-nav-wrapper {
    display: flex;
    align-items: center;
    gap: 16px;
}

.header-auth-links {
    display: flex;
    gap: 10px;
}
.btn-header-login {
    padding: 8px 20px;
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    background: transparent;
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s;
}
.btn-header-login:hover { border-color: var(--gold); color: var(--gold); }
.btn-header-reg {
    padding: 8px 20px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--crimson-dark) 0%, var(--crimson) 55%, var(--crimson-light) 100%);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    border: 1px solid rgba(255,80,80,0.25);
    cursor: pointer;
    text-decoration: none;
    transition: opacity 0.2s, transform 0.15s, box-shadow 0.2s;
    box-shadow: 0 2px 12px rgba(192,24,48,0.4);
}
.btn-header-reg:hover { opacity: 0.9; transform: translateY(-1px); box-shadow: 0 4px 20px rgba(192,24,48,0.55); }

/* lang & theme controls */
.lang-select-wrapper { position: relative; display: flex; align-items: center; }
.lang-select {
    appearance: none;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text-muted);
    font-size: 13px;
    padding: 6px 28px 6px 10px;
    cursor: pointer;
    outline: none;
    transition: border-color 0.2s;
}
.lang-select:hover, .lang-select:focus { border-color: var(--gold); }
.lang-select option { background: #111116; color: #f0ede8; }
.lang-select-icon { position: absolute; right: 8px; pointer-events: none; color: var(--text-muted); }

.theme-toggle {
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text-muted);
    width: 36px; height: 36px;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s;
}
.theme-toggle:hover { border-color: var(--gold); color: var(--gold); }

.mobile-actions { display: none; gap: 8px; align-items: center; }
.menu-toggle {
    background: transparent; border: none; cursor: pointer;
    color: var(--text); padding: 4px;
}
.mobile-menu {
    display: none;
    position: fixed;
    top: 64px; left: 0; right: 0; bottom: 0;
    background: var(--bg-deep);
    z-index: 199;
    padding: 24px;
    flex-direction: column;
    gap: 16px;
}
.mobile-menu.is-open { display: flex; }
.mobile-menu-close {
    position: absolute; top: 16px; right: 20px;
    background: none; border: none; font-size: 28px;
    color: var(--text-muted); cursor: pointer;
}
.mobile-lang-switcher { margin-top: 16px; }

@media (max-width: 768px) {
    .desktop-nav-wrapper { display: none; }
    .mobile-actions { display: flex; }
}

/* ─── FIRST SCREEN WRAPPER ────────────────── */
.first-screen {
    height: 100vh;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    padding-top: 80px; /* header: logo 36px + 10px*2 padding + 4px border */
    overflow: hidden;
}

/* ─── HERO ────────────────────────────────── */
.hero {
    flex: 1;           /* fill remaining space above trust strip */
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
    overflow: hidden;
    min-height: 0;
}

.hero-left {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 40px 60px 40px 60px;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 24px;
}
.hero-eyebrow::before {
    content: '';
    display: block;
    width: 24px; height: 1px;
    background: var(--gold);
}

.hero-title {
    font-size: clamp(2.2rem, 4vw, 3.6rem);
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
    color: var(--text);
}

.hero-title .gold { color: var(--gold); }
.hero-title .italic { font-style: italic; font-weight: 400; }

.hero-description {
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 420px;
    margin-bottom: 28px;
    line-height: 1.65;
}

.hero-cta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: linear-gradient(135deg, var(--crimson-dark) 0%, var(--crimson) 50%, var(--crimson-light) 100%);
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    border: none;
    border-radius: 12px;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 24px rgba(192,24,48,0.45), inset 0 1px 0 rgba(255,255,255,0.12);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 36px rgba(192,24,48,0.6), inset 0 1px 0 rgba(255,255,255,0.12);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: transparent;
    color: var(--gold-light);
    font-weight: 600;
    font-size: 15px;
    border: 1px solid rgba(212,146,74,0.45);
    border-radius: 12px;
    text-decoration: none;
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s, transform 0.2s, background 0.2s;
}
.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold-bright);
    background: rgba(212,146,74,0.08);
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    gap: 32px;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}
.stat-item {}
.stat-value {
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}
.stat-label {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 4px;
    letter-spacing: 0.04em;
}

/* Right photo mosaic */
.hero-right {
    position: relative;
    overflow: hidden;
}

.hero-mosaic {
    display: grid;
    /*
      Schema:
      col1 (45%)       col2 (55%)
      ┌─────────────┬───────────────┐
      │             │  [2] phone    │  row1
      │  [1] dress  ├───────────────┤
      │   (tall)    │  [3] roses    │  row2
      ├─────────────┼───────────────┤
      │  [4] boudoir│               │  row3
      ├─────────────┤  [6] silhouet │
      │  [5] beach  │   (tall)      │  row4
      └─────────────┴───────────────┘
    */
    grid-template-columns: 9fr 11fr;
    grid-template-rows: 1fr 1fr 1fr 1fr;
    gap: 3px;
    height: 100%;
}

.mosaic-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.55s ease, filter 0.35s;
    filter: brightness(0.88) saturate(1.1);
}
.mosaic-img:hover { transform: scale(1.06); filter: brightness(1) saturate(1.2); }

.mosaic-item {
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

/* zoom hint icon — appears on hover */
.mosaic-zoom-hint {
    position: absolute;
    bottom: 8px; right: 8px;
    width: 28px; height: 28px;
    border-radius: 50%;
    background: rgba(0,0,0,0.45);
    border: 1px solid rgba(255,255,255,0.3);
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    opacity: 0;
    transform: scale(0.7);
    transition: opacity 0.25s, transform 0.25s;
    pointer-events: none;
    backdrop-filter: blur(4px);
}
.mosaic-item:hover .mosaic-zoom-hint {
    opacity: 1;
    transform: scale(1);
}

/* [1] dress: col1, rows 1-2 */
.mosaic-item:nth-child(1) { grid-column: 1; grid-row: 1 / span 2; }
/* [2] phone: col2, row1 */
.mosaic-item:nth-child(2) { grid-column: 2; grid-row: 1; }
/* [3] roses: col2, row2 */
.mosaic-item:nth-child(3) { grid-column: 2; grid-row: 2; }
/* [4] boudoir: col1, row3 */
.mosaic-item:nth-child(4) { grid-column: 1; grid-row: 3; }
/* [5] beach: col1, row4 */
.mosaic-item:nth-child(5) { grid-column: 1; grid-row: 4; }
/* [6] silhouette: col2, rows 3-4 */
.mosaic-item:nth-child(6) { grid-column: 2; grid-row: 3 / span 2; }

/* face/body crops */
.mosaic-item:nth-child(1) .mosaic-img { object-position: center 15%; }
.mosaic-item:nth-child(2) .mosaic-img { object-position: center 20%; }
.mosaic-item:nth-child(3) .mosaic-img { object-position: center 25%; }
.mosaic-item:nth-child(4) .mosaic-img { object-position: center 15%; }
.mosaic-item:nth-child(5) .mosaic-img { object-position: center 22%; }
.mosaic-item:nth-child(6) .mosaic-img { object-position: center 20%; }

/* gradient fade on left edge */
.hero-right::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 120px;
    background: linear-gradient(to right, var(--bg-deep), transparent);
    z-index: 1;
    pointer-events: none;
}

@media (max-width: 900px) {
    .first-screen {
        height: auto;
        min-height: 100vh;
    }
    .hero {
        grid-template-columns: 1fr;
        flex: none;
    }
    .hero-left {
        padding: 32px 24px 32px;
        text-align: center;
    }
    .hero-description { margin-left: auto; margin-right: auto; }
    .hero-cta { justify-content: center; }
    .hero-stats { justify-content: center; }
    .hero-right { height: 300px; }
    .hero-mosaic {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(2, 1fr);
    }
    .mosaic-item:nth-child(1) { grid-column: span 1; grid-row: span 1; }
    .mosaic-item:nth-child(2) { grid-column: auto; grid-row: auto; }
    .mosaic-item:nth-child(3) { grid-column: auto; grid-row: auto; }
    .mosaic-item:nth-child(4) { grid-column: auto; grid-row: auto; }
    .mosaic-item:nth-child(5) { grid-column: auto; grid-row: auto; }
    .mosaic-item:nth-child(6) { grid-column: auto; grid-row: auto; }
    .mosaic-zoom-hint { display: none; }
    .hero-right::before { display: none; }
}

/* ─── TRUST STRIP ─────────────────────────── */
/* sits at the bottom of .first-screen — flex child, fixed height */
.trust-strip {
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    padding: 16px 0;
    overflow: hidden;
    flex-shrink: 0;
}
.trust-track {
    display: flex;
    gap: 48px;
    align-items: center;
    animation: trust-scroll 28s linear infinite;
    white-space: nowrap;
    width: max-content;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    flex-shrink: 0;
}
.trust-dot {
    width: 5px; height: 5px;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
}
@keyframes trust-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* ─── FEATURES ────────────────────────────── */
.features {
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.features-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.features-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    filter: brightness(0.35) saturate(0.8);
}
.features-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        var(--bg-deep) 0%,
        rgba(10,10,12,0.55) 30%,
        rgba(10,10,12,0.55) 70%,
        var(--bg-deep) 100%
    );
}
[data-theme="light"] .features-bg-img {
    filter: brightness(0.6) saturate(0.6);
}
[data-theme="light"] .features-bg-overlay {
    background: linear-gradient(
        to bottom,
        var(--bg-deep) 0%,
        rgba(245,240,234,0.55) 30%,
        rgba(245,240,234,0.55) 70%,
        var(--bg-deep) 100%
    );
}

.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}
.section-eyebrow::before {
    content: '';
    display: block;
    width: 20px; height: 1px;
    background: var(--gold);
}

.section-title {
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
    color: var(--text);
    line-height: 1.2;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 520px;
    line-height: 1.7;
    margin-bottom: 56px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

@media (max-width: 900px) { .features-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 500px) { .features-grid { grid-template-columns: 1fr; } }

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 36px 28px;
    transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
    cursor: default;
    position: relative;
    overflow: hidden;
}
.feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--crimson-dark), var(--gold), var(--crimson));
    opacity: 0;
    transition: opacity 0.3s;
}
.feature-card:hover {
    border-color: rgba(212,146,74,0.5);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(192,24,48,0.15), 0 4px 16px rgba(212,146,74,0.1);
}
.feature-card:hover::before { opacity: 1; }

.feature-icon-wrap {
    width: 52px; height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--crimson-dim), var(--gold-dim));
    border: 1px solid rgba(212,146,74,0.25);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px;
    color: var(--gold);
}

.feature-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text);
}
.feature-desc {
    font-size: 13.5px;
    color: var(--text-muted);
    line-height: 1.65;
}

/* ─── CREATORS SHOWCASE ───────────────────── */
.creators-section {
    padding: 100px 0;
    background: #0e0608;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.creators-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 56px;
}

@media (max-width: 768px) { .creators-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .creators-grid { grid-template-columns: 1fr; } }

.creator-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 3/4;
    cursor: pointer;
    group: '';
}
.creator-card img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease, filter 0.4s;
    filter: brightness(0.85) saturate(1.1);
}
.creator-card:hover img { transform: scale(1.06); filter: brightness(0.7) saturate(1.2); }

.creator-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,10,12,0.92) 0%, transparent 55%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px 20px;
}

.creator-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: linear-gradient(135deg, rgba(192,24,48,0.22), rgba(212,146,74,0.15));
    border: 1px solid rgba(212,146,74,0.4);
    border-radius: 20px;
    padding: 3px 12px;
    font-size: 11px;
    font-weight: 600;
    color: var(--gold-light);
    margin-bottom: 10px;
    width: fit-content;
}

.creator-name {
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.creator-tag {
    font-size: 12px;
    color: rgba(255,255,255,0.55);
}

.creator-lock {
    position: absolute;
    top: 16px; right: 16px;
    width: 36px; height: 36px;
    background: rgba(10,10,12,0.65);
    backdrop-filter: blur(8px);
    border-radius: 10px;
    border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    color: var(--gold);
    opacity: 0;
    transition: opacity 0.25s;
}
.creator-card:hover .creator-lock { opacity: 1; }

/* ─── MONETIZATION ────────────────────────── */
.monetization {
    padding: 120px 0;
}

.monetization-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

@media (max-width: 768px) {
    .monetization-inner { grid-template-columns: 1fr; gap: 48px; }
}

.mono-image-wrap {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 32px 80px rgba(0,0,0,0.5);
}
.mono-image-wrap img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    display: block;
    filter: brightness(0.9) saturate(1.1);
}

.mono-pill {
    position: absolute;
    bottom: 24px; left: 24px;
    background: rgba(10,10,12,0.85);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.mono-pill-icon { font-size: 26px; }
.mono-pill-text {}
.mono-pill-main { font-size: 15px; font-weight: 700; color: var(--gold); }
.mono-pill-sub { font-size: 12px; color: var(--text-muted); }

.mono-content {}

.mono-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}
.mono-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}
.mono-check {
    width: 24px; height: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--crimson-dark), var(--crimson));
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
    font-size: 12px;
    color: #fff;
    font-weight: 800;
    box-shadow: 0 2px 8px rgba(192,24,48,0.4);
}
.mono-list-text strong {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 3px;
}
.mono-list-text span {
    font-size: 13.5px;
    color: var(--text-muted);
}

/* ─── CTA BANNER ──────────────────────────── */
.cta-banner {
    margin: 0 24px 80px;
    border-radius: 28px;
    background: linear-gradient(135deg, #1a0406 0%, #260810 45%, #1a0406 100%);
    border: 1px solid rgba(192,24,48,0.35);
    padding: 72px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 80px rgba(192,24,48,0.12) inset, 0 24px 80px rgba(0,0,0,0.4);
}
.cta-banner::before {
    content: '';
    position: absolute;
    top: -80px; right: -80px;
    width: 380px; height: 380px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212,146,74,0.14) 0%, rgba(192,24,48,0.08) 50%, transparent 70%);
    pointer-events: none;
}
.cta-banner::after {
    content: '';
    position: absolute;
    bottom: -60px; left: -60px;
    width: 260px; height: 260px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(192,24,48,0.1), transparent 70%);
    pointer-events: none;
}
.cta-text {}
.cta-banner-title {
    font-size: clamp(1.5rem, 2.5vw, 2.2rem);
    font-weight: 700;
    color: var(--text);
    margin-bottom: 10px;
}
.cta-banner-sub {
    color: var(--text-muted);
    font-size: 1rem;
}
.cta-actions { display: flex; gap: 12px; flex-shrink: 0; flex-wrap: wrap; }

@media (max-width: 768px) {
    .cta-banner { flex-direction: column; text-align: center; padding: 48px 28px; margin: 0 16px 60px; }
    .cta-actions { justify-content: center; }
}

/* ─── FOOTER ──────────────────────────────── */
.footer {
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    padding: 40px 0 32px;
}
.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}
.footer-brand { text-decoration: none; display: flex; align-items: center; }
.footer-brand .cf-logo--vertical .cf-logo__mark { height: 90px; }
.footer-brand .cf-logo--vertical .cf-logo__name { font-size: 1.1rem; vertical-align: middle; display: block; }
.footer-brand .cf-logo--vertical .cf-logo__line { max-width: 50px; }
.footer-links {
    display: flex;
    gap: 28px;
}
.footer-links a {
    font-size: 13px;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }

.footer-usdt {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--text-muted);
    background: var(--bg-glass);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 6px 14px;
}
.footer-copy {
    font-size: 12px;
    color: var(--text-muted);
}

/* ─── AUTH POPUP ──────────────────────────── */
.popup {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 500;
    align-items: center;
    justify-content: center;
    padding: 16px;
}
.popup.is-open { display: flex; }

.overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.75);
    backdrop-filter: blur(4px);
    z-index: 490;
}
.overlay.is-open { display: block; }

.popup-content {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 40px 36px;
    width: 100%;
    max-width: 460px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    z-index: 501;
    box-shadow: 0 32px 80px rgba(0,0,0,0.6);
}

.register-popup-content { max-width: 600px; }

.popup-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
}
.popup-header h2 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text);
}
.popup-close {
    background: none;
    border: 1px solid var(--border);
    border-radius: 8px;
    width: 32px; height: 32px;
    font-size: 18px;
    color: var(--text-muted);
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: border-color 0.2s, color 0.2s;
}
.popup-close:hover { border-color: var(--gold); color: var(--gold); }

.auth-form {}
.form-group {
    margin-bottom: 18px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.form-group label {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
}
.form-group input,
.form-group select {
    background: #160c0c;
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 10px 14px;
    color: var(--text);
    font-size: 14px;
    outline: none;
    width: 100%;
    transition: border-color 0.2s;
    font-family: inherit;
    -webkit-appearance: none;
    appearance: none;
    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 d='M1 1l5 5 5-5' stroke='%239A8870' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 34px;
    cursor: pointer;
}
.form-group input[type="date"] {
    background-image: none;
    padding-right: 14px;
    -webkit-appearance: none;
    appearance: none;
    cursor: pointer;
    color-scheme: dark;
}
.form-group input[type="number"] {
    background-image: none;
    padding-right: 14px;
}
.form-group select option {
    background: #1a0c0c;
    color: #f5ede0;
}
.form-group select option:checked,
.form-group select option:hover {
    background: #2d1010;
    color: #f0c060;
}
[data-theme="light"] .form-group input,
[data-theme="light"] .form-group select {
    background: #f8f5f0;
    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 d='M1 1l5 5 5-5' stroke='%237A5A3A' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 34px;
    color-scheme: light;
}
[data-theme="light"] .form-group input[type="date"],
[data-theme="light"] .form-group input[type="number"] {
    background-image: none;
    padding-right: 14px;
}
[data-theme="light"] .form-group select option {
    background: #ffffff;
    color: #1a0804;
}
.form-group input:focus,
.form-group select:focus { border-color: var(--gold); }
.required { color: var(--rose); }

.input-with-eye { position: relative; }
.input-with-eye input { padding-right: 44px; }
.password-toggle {
    position: absolute;
    right: 12px; top: 50%;
    transform: translateY(-50%);
    background: none; border: none; cursor: pointer;
    color: var(--text-muted);
    display: flex; align-items: center;
    padding: 0;
}
.eye-closed { display: none; }
.password-toggle.show-pwd .eye-open { display: none; }
.password-toggle.show-pwd .eye-closed { display: block; }

/* Custom checkbox */
.checkbox-group {
    flex-direction: row !important;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    user-select: none;
}
.checkbox-group input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 20px; height: 20px; min-width: 20px;
    border: 1.5px solid var(--border);
    border-radius: 6px;
    background: rgba(255,255,255,0.04);
    cursor: pointer;
    position: relative;
    transition: border-color 0.2s, background 0.2s;
    flex-shrink: 0;
}
.checkbox-group input[type="checkbox"]:checked {
    background: var(--gold);
    border-color: var(--gold);
}
.checkbox-group input[type="checkbox"]:checked::after {
    content: '';
    position: absolute;
    left: 5px; top: 2px;
    width: 7px; height: 11px;
    border: 2px solid #0a0808;
    border-top: none; border-left: none;
    transform: rotate(45deg);
}
.checkbox-group label {
    font-size: 13px;
    color: var(--text-muted);
    cursor: pointer;
    margin-bottom: 0;
}

.form-links {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 16px;
}
.forgot-link { font-size: 13px; color: var(--gold); text-decoration: none; }
.forgot-link:hover { opacity: 0.8; }

.auth-submit-btn {
    width: 100%;
    padding: 13px;
    background: linear-gradient(135deg, var(--crimson-dark) 0%, var(--crimson) 55%, var(--crimson-light) 100%);
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: opacity 0.2s, transform 0.15s, box-shadow 0.2s;
    margin-top: 4px;
    box-shadow: 0 4px 20px rgba(192,24,48,0.45);
}
.auth-submit-btn:hover { opacity: 0.92; transform: translateY(-1px); box-shadow: 0 6px 28px rgba(192,24,48,0.6); }

.auth-switch {
    text-align: center;
    margin-top: 20px;
    font-size: 13.5px;
    color: var(--text-muted);
}
.switch-link {
    background: none; border: none;
    color: var(--gold); font-weight: 600;
    cursor: pointer; font-size: inherit;
}

.form-block { margin-bottom: 20px; }
.form-block-title {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 14px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border);
}
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-row-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 12px; }
.form-row-stack { display: flex; flex-direction: column; gap: 12px; }

.error-message { font-size: 12px; color: var(--rose); min-height: 16px; }

@media (max-width: 500px) {
    .form-row-2, .form-row-3 { grid-template-columns: 1fr; }
    .popup-content { padding: 28px 20px; }
}

/* ─── LIGHT THEME ADJUSTMENTS ─────────────── */
[data-theme="light"] body { background: var(--bg-deep); }
[data-theme="light"] .popup-content { background: #fff; }
[data-theme="light"] .footer { background: #f5ece8; }
[data-theme="light"] .creators-section { background: #F0E0DC; }
[data-theme="light"] .form-group input { background: #fdf7f5; border-color: #e0c0b0; color: #1a0804; }
[data-theme="light"] .lang-select option { background: #fff; color: #1a0804; }

/* Header on light */
[data-theme="light"] .header { background: rgba(250,243,234,0.94); border-bottom-color: rgba(180,80,30,0.2); }
[data-theme="light"] .btn-header-login { color: #6b2010; border-color: rgba(160,50,20,0.3); }
[data-theme="light"] .btn-header-login:hover { background: rgba(160,50,20,0.08); }
[data-theme="light"] .lang-select { color: #6b3010; }

/* Hero on light */
[data-theme="light"] .hero-badge { background: rgba(160,30,20,0.08); color: #8b1010; border-color: rgba(160,30,20,0.25); }
[data-theme="light"] .hero-title { color: #1a0804; }
[data-theme="light"] .hero-description { color: #5a2a18; }
[data-theme="light"] .stat-value { color: #9A5020; }
[data-theme="light"] .stat-label { color: #7a4a30; }
[data-theme="light"] .btn-outline { color: #8b3010; border-color: rgba(160,60,20,0.45); }
[data-theme="light"] .btn-outline:hover { background: rgba(160,50,20,0.08); color: #C01830; border-color: rgba(192,24,48,0.5); }

/* Trust strip on light */
[data-theme="light"] .trust-strip { background: #f0e0da; border-top-color: rgba(160,50,20,0.2); }

/* Features section on light */
[data-theme="light"] .features { background: #faf3ee; }
[data-theme="light"] .features-bg-img { filter: brightness(0.2) saturate(0.4); }
[data-theme="light"] .features-bg-overlay {
    background: linear-gradient(to bottom,
        rgba(250,243,238,0.95) 0%,
        rgba(250,243,238,0.75) 40%,
        rgba(250,243,238,0.75) 60%,
        rgba(250,243,238,0.95) 100%);
}
[data-theme="light"] .feature-card {
    background: #fff;
    border-color: rgba(192,24,48,0.15);
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}
[data-theme="light"] .feature-card:hover {
    border-color: rgba(192,24,48,0.35);
    box-shadow: 0 12px 40px rgba(192,24,48,0.1);
}
[data-theme="light"] .feature-title { color: #1a0804; }
[data-theme="light"] .feature-desc { color: #6b3020; }
[data-theme="light"] .section-title { color: #1a0804; }
[data-theme="light"] .section-sub { color: #6b3020; }
[data-theme="light"] .section-subtitle { color: #6b3020; }

/* Creators section on light */
[data-theme="light"] .creators-section .section-title { color: #1a0804; }
[data-theme="light"] .creators-section .section-sub { color: #6b3020; }

/* Monetization on light */
[data-theme="light"] .monetization { background: #fdf5f0; }
[data-theme="light"] .mono-pill { background: rgba(255,255,255,0.95); border-color: rgba(192,24,48,0.2); }
[data-theme="light"] .mono-pill-sub { color: #7a4030; }
[data-theme="light"] .mono-list-text strong { color: #1a0804; }
[data-theme="light"] .mono-list-text span { color: #6b3020; }

/* CTA banner — always dark with crimson */
[data-theme="light"] .cta-banner {
    background: linear-gradient(135deg, #1a0406 0%, #260810 45%, #1a0406 100%);
    border-color: rgba(192,24,48,0.4);
}
[data-theme="light"] .cta-banner-title { color: #f5ede8; }
[data-theme="light"] .cta-banner-sub { color: rgba(245,237,232,0.7); }

/* Footer on light */
[data-theme="light"] .footer-brand-name { color: #1a1208; }
[data-theme="light"] .footer-brand-desc { color: #7a6f60; }
[data-theme="light"] .footer-col-title { color: #1a1208; }
[data-theme="light"] .footer-link { color: #6b5c3e; }
[data-theme="light"] .footer-link:hover { color: #a07840; }
[data-theme="light"] .footer-bottom { border-top-color: rgba(160,120,64,0.2); color: #7a6f60; }

/* Popups on light */
[data-theme="light"] .popup-overlay { background: rgba(0,0,0,0.5); }
[data-theme="light"] .popup-title { color: #1a1208; }
[data-theme="light"] .popup-subtitle { color: #6b5c3e; }
[data-theme="light"] .form-group label { color: #4a3e2a; }
[data-theme="light"] .form-group input { color: #1a1208; }
[data-theme="light"] .popup-alt { color: #7a6f60; }
[data-theme="light"] .popup-alt a { color: #a07840; }

/* ─── HERO LIGHTBOX ────────────────────────── */
#hero-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9500;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
#hero-lightbox.is-open { display: flex; }

.lb-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.94);
    backdrop-filter: blur(12px);
    animation: lb-fade 0.25s ease;
}
@keyframes lb-fade { from { opacity: 0; } to { opacity: 1; } }

/* stage — центральная область с картинкой */
.lb-stage {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    flex: 1;
    padding: 60px 80px 0;
    box-sizing: border-box;
}
.lb-img {
    max-width: 100%;
    max-height: calc(100vh - 140px);
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 24px 80px rgba(0,0,0,0.7);
    display: block;
    transition: opacity 0.14s ease, transform 0.14s ease;
    animation: lb-img-in 0.28s cubic-bezier(0.34,1.36,0.64,1);
}
@keyframes lb-img-in {
    from { opacity: 0; transform: scale(0.92); }
    to   { opacity: 1; transform: scale(1); }
}

/* nav arrows */
.lb-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 48px; height: 48px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    backdrop-filter: blur(6px);
}
.lb-nav:hover { background: rgba(255,255,255,0.22); transform: translateY(-50%) scale(1.08); }
.lb-prev { left: 16px; }
.lb-next { right: 16px; }

/* close */
.lb-close {
    position: absolute;
    top: 14px; right: 14px;
    z-index: 3;
    width: 40px; height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    transition: background 0.2s;
    backdrop-filter: blur(6px);
}
.lb-close:hover { background: rgba(255,255,255,0.22); }

/* footer: counter + dots */
.lb-footer {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 14px 0 20px;
}
.lb-counter {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.45);
    letter-spacing: 0.1em;
    font-weight: 600;
}
.lb-dots { display: flex; gap: 8px; align-items: center; }
.lb-dot {
    width: 28px; height: 3px; border-radius: 2px;
    background: rgba(255,255,255,0.22);
    border: none; padding: 0; cursor: pointer;
    transition: background 0.25s, width 0.3s;
}
.lb-dot.active { background: #fff; width: 42px; }

@media (max-width: 640px) {
    .lb-stage { padding: 56px 12px 0; }
    .lb-nav { width: 38px; height: 38px; }
    .lb-prev { left: 6px; }
    .lb-next { right: 6px; }
    .lb-img { border-radius: 8px; }
}
