:root {
    --bg-dark: #0A0A0A;
    --bg-darker: #050505;
    --neon-green: #00FF88;
    --neon-pink: #FF00FF;
    --neon-blue: #00D4FF;
    --text-white: #FFFFFF;
    --text-gray: #888888;
    --font-mono: 'Courier New', 'SF Mono', monospace;
    --font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', sans-serif;
    --transition-fast: 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-base: 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --transition-slow: 0.6s cubic-bezier(0.77, 0, 0.175, 1);
}

body {
    background: var(--bg-dark);
    color: var(--text-white);
    font-family: var(--font-sans);
    overflow-x: hidden;
    cursor: none;
}

.noise-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-radial-gradient(circle at 20% 30%, rgba(0, 0, 0, 0.05) 0px, rgba(0, 0, 0, 0.05) 2px, transparent 2px, transparent 4px);
    pointer-events: none;
    z-index: 0;
}

.gradient-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(0, 255, 136, 0.03) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.cursor {
    width: 8px;
    height: 8px;
    background: var(--neon-green);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.05s;
}

.cursor-follower {
    width: 40px;
    height: 40px;
    border: 2px solid var(--neon-green);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    transition: transform 0.1s, width 0.2s, height 0.2s;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 24px 0;
    z-index: 100;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 255, 136, 0.2);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 32px;
    font-weight: 800;
    letter-spacing: 4px;
}

.logo-nero {
    background: linear-gradient(135deg, var(--neon-green), var(--neon-pink));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.logo-dot {
    color: var(--neon-green);
}

.nav-list {
    display: flex;
    gap: 48px;
}

.nav-link {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    position: relative;
    transition: color var(--transition-fast);
}

.nav-link::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    color: var(--neon-green);
    width: 0;
    overflow: hidden;
    transition: width var(--transition-base);
}

.nav-link:hover::before {
    width: 100%;
}

.cart-btn {
    font-size: 20px;
    color: white;
    transition: transform var(--transition-fast);
}

.cart-btn:hover {
    transform: scale(1.1);
    color: var(--neon-green);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
}

.mobile-toggle span {
    width: 25px;
    height: 2px;
    background: white;
    transition: var(--transition-fast);
}

.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
}

.hero-split {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-split.left {
    background: var(--bg-dark);
    padding: 0 60px;
}

.hero-tag {
    font-family: var(--font-mono);
    font-size: 14px;
    color: var(--neon-green);
    letter-spacing: 4px;
    margin-bottom: 24px;
}

.hero-title {
    font-size: 80px;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 24px;
}

.title-line {
    display: block;
}

.glitch {
    position: relative;
    color: white;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch::before {
    color: var(--neon-pink);
    z-index: -1;
    animation: glitch 0.3s infinite;
}

.glitch::after {
    color: var(--neon-green);
    z-index: -2;
    animation: glitch 0.3s infinite reverse;
}

@keyframes glitch {
    0% {
        transform: translate(0);
    }
    20% {
        transform: translate(-2px, 2px);
    }
    40% {
        transform: translate(-2px, -2px);
    }
    60% {
        transform: translate(2px, 2px);
    }
    80% {
        transform: translate(2px, -2px);
    }
    100% {
        transform: translate(0);
    }
}

.hero-desc {
    font-size: 18px;
    color: var(--text-gray);
    max-width: 400px;
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.btn {
    padding: 14px 32px;
    font-weight: 700;
    letter-spacing: 1px;
    transition: all var(--transition-base);
    cursor: pointer;
}

.btn-primary {
    background: var(--neon-green);
    color: var(--bg-dark);
}

.btn-primary:hover {
    background: var(--neon-pink);
    transform: scale(1.05);
}

.btn-outline {
    border: 2px solid white;
    background: transparent;
}

.btn-outline:hover {
    border-color: var(--neon-green);
    color: var(--neon-green);
    transform: scale(1.05);
}

.hero-split.right {
    background: linear-gradient(135deg, #111, #050505);
    overflow: hidden;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(30%) contrast(120%);
    transition: transform var(--transition-slow);
}

.hero-image-wrapper:hover .hero-image {
    transform: scale(1.05);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 255, 136, 0.1), rgba(255, 0, 255, 0.1));
    mix-blend-mode: overlay;
}

.marquee {
    background: var(--neon-green);
    padding: 16px 0;
    overflow: hidden;
    white-space: nowrap;
}

.marquee-content {
    display: inline-block;
    animation: marquee 20s linear infinite;
    font-family: var(--font-mono);
    font-weight: 800;
    color: var(--bg-dark);
    letter-spacing: 2px;
}

.marquee-content span {
    margin: 0 24px;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.lookbook {
    padding: 120px 0;
}

.section-header {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 60px;
}

.section-number {
    font-family: var(--font-mono);
    font-size: 48px;
    font-weight: 800;
    color: rgba(0, 255, 136, 0.3);
}

.section-title {
    font-size: 48px;
    font-weight: 800;
    letter-spacing: 4px;
}

.section-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, var(--neon-green), transparent);
}

.lookbook-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.lookbook-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/5;
}

.lookbook-item.large {
    grid-row: span 2;
    aspect-ratio: auto;
}

.lookbook-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.lookbook-item:hover img {
    transform: scale(1.1);
}

.lookbook-caption {
    position: absolute;
    bottom: -100%;
    left: 0;
    right: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.9), transparent);
    padding: 40px 24px 24px;
    transition: bottom var(--transition-base);
}

.lookbook-item:hover .lookbook-caption {
    bottom: 0;
}

.lookbook-caption h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

.lookbook-caption p {
    color: var(--neon-green);
    font-size: 14px;
}

.collections {
    padding: 80px 0;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    scrollbar-width: thin;
}

.collections::-webkit-scrollbar {
    height: 4px;
}

.collections::-webkit-scrollbar-track {
    background: #222;
}

.collections::-webkit-scrollbar-thumb {
    background: var(--neon-green);
}

.collections-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px 40px;
}

.collections-title {
    font-size: 64px;
    font-weight: 900;
    letter-spacing: 8px;
}

.scroll-hint {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--neon-green);
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0%,
    100% {
        opacity: 1;
    }
    50% {
        opacity: 0.3;
    }
}

.collections-track {
    display: inline-flex;
    gap: 24px;
    padding: 0 40px;
}

.collection-card {
    width: 400px;
    background: #111;
    border-radius: 16px;
    overflow: hidden;
    transition: transform var(--transition-base);
    white-space: normal;
}

.collection-card:hover {
    transform: translateY(-10px);
}

.collection-image {
    aspect-ratio: 1;
    overflow: hidden;
}

.collection-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.collection-card:hover .collection-image img {
    transform: scale(1.1);
}

.collection-info {
    padding: 24px;
}

.collection-year {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--neon-green);
}

.collection-info h3 {
    font-size: 24px;
    margin: 12px 0;
}

.collection-info p {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 16px;
}

.collection-link {
    color: var(--neon-green);
    font-weight: 600;
    transition: letter-spacing var(--transition-fast);
}

.collection-link:hover {
    letter-spacing: 2px;
}

.about {
    padding: 120px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 48px;
    line-height: 1.2;
    margin: 24px 0 32px;
}

.about-text p {
    font-size: 18px;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 48px;
}

.stat-badge {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 24px;
}

.stat-badge .stat-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--neon-green);
}

.stat-badge .stat-label {
    font-size: 16px;
    color: var(--text-gray);
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 24px;
    filter: grayscale(50%);
}

.glitch-border {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 2px solid var(--neon-pink);
    border-radius: 28px;
    animation: borderGlitch 2s infinite;
    pointer-events: none;
}

@keyframes borderGlitch {
    0%,
    100% {
        transform: translate(0);
        opacity: 1;
    }
    50% {
        transform: translate(4px, -4px);
        opacity: 0.5;
    }
}

.contact {
    padding: 80px 0;
}

.contact-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: linear-gradient(135deg, #111, #0A0A0A);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 32px;
    overflow: hidden;
}

.contact-left {
    padding: 60px;
}

.contact-left h2 {
    font-size: 48px;
    margin-bottom: 24px;
}

.neon {
    color: var(--neon-green);
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

.contact-left p {
    color: var(--text-gray);
    margin-bottom: 32px;
    line-height: 1.6;
}

.subscribe-form {
    display: flex;
    gap: 0;
    margin-bottom: 40px;
}

.subscribe-form input {
    flex: 1;
    padding: 16px 20px;
    background: #1a1a1a;
    border: 1px solid #333;
    color: white;
    font-size: 16px;
}

.subscribe-form input:focus {
    border-color: var(--neon-green);
}

.btn-submit {
    padding: 16px 32px;
    background: var(--neon-green);
    color: var(--bg-dark);
    font-weight: 700;
    font-size: 20px;
    transition: background var(--transition-fast);
}

.btn-submit:hover {
    background: var(--neon-pink);
}

.social-links {
    display: flex;
    gap: 32px;
}

.social-links a {
    font-family: var(--font-mono);
    font-size: 14px;
    font-weight: 600;
    transition: color var(--transition-fast);
}

.social-links a:hover {
    color: var(--neon-green);
}

.contact-right {
    background: linear-gradient(135deg, #0A0A0A, #050505);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    border-left: 1px solid rgba(0, 255, 136, 0.2);
}

.qr-code {
    width: 160px;
    height: 160px;
    background: repeating-linear-gradient(45deg, var(--neon-green) 0px, var(--neon-green) 2px, transparent 2px, transparent 8px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 800;
    color: var(--bg-dark);
}

.contact-right p {
    font-size: 12px;
    color: var(--text-gray);
}

.footer {
    background: var(--bg-darker);
    padding: 60px 0 24px;
    border-top: 1px solid rgba(0, 255, 136, 0.2);
    margin-top: 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 48px;
}

.footer-brand .logo {
    font-size: 28px;
    margin-bottom: 16px;
}

.footer-brand p {
    color: var(--text-gray);
    font-size: 14px;
}

.footer-links h4,
.footer-newsletter h4 {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 20px;
    color: var(--neon-green);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a,
.footer-newsletter p {
    color: var(--text-gray);
    font-size: 14px;
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--neon-green);
}

.footer-newsletter form {
    display: flex;
    margin-top: 16px;
}

.footer-newsletter input {
    flex: 1;
    padding: 12px;
    background: #1a1a1a;
    border: 1px solid #333;
    color: white;
}

.footer-newsletter button {
    padding: 12px 20px;
    background: var(--neon-green);
    color: var(--bg-dark);
    font-weight: 700;
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 12px;
    color: var(--text-gray);
}


/* Неоновый котик */

.neon-cat {
    position: fixed;
    width: 60px;
    height: 60px;
    pointer-events: none;
    z-index: 9999;
    transition: all 0.3s cubic-bezier(0.34, 1.2, 0.64, 1);
    opacity: 0;
    filter: drop-shadow(0 0 5px #00ff88) drop-shadow(0 0 10px #00ff88);
}

.neon-cat.visible {
    opacity: 1;
}

.neon-cat.jumping {
    animation: catJump 0.5s ease-out;
}

@keyframes catJump {
    0% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-40px) scale(1.2);
    }
    100% {
        transform: translateY(0) scale(1);
    }
}

.cat-svg {
    width: 100%;
    height: 100%;
}

.cat-head {
    fill: none;
    stroke: #00ff88;
    stroke-width: 2;
    filter: drop-shadow(0 0 3px #00ff88);
}

.cat-ear {
    fill: none;
    stroke: #00ff88;
    stroke-width: 2;
}

.cat-eye {
    fill: #00ff88;
    animation: blink 4s infinite;
}

@keyframes blink {
    0%,
    94%,
    100% {
        r: 3;
        opacity: 1;
    }
    95%,
    99% {
        r: 1;
        opacity: 0.3;
    }
}

.cat-nose {
    fill: #ff6584;
}

.cat-whisker {
    stroke: #00ff88;
    stroke-width: 1;
}

.cat-body {
    fill: none;
    stroke: #00ff88;
    stroke-width: 2;
}

.cat-tail {
    stroke: #00ff88;
    stroke-width: 2;
    animation: tailWag 2s infinite ease-in-out;
}

@keyframes tailWag {
    0%,
    100% {
        transform: rotate(0deg);
    }
    50% {
        transform: rotate(15deg);
    }
}