/* ========================================
   HOODRICH - STREET / HOOD / GRITTY STYLE
======================================== */

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

:root {
    --black: #000000;
    --dark: #0a0a0a;
    --dark-2: #0f0f0f;
    --dark-3: #141414;
    --gray-1: #1a1a1a;
    --gray-2: #2a2a2a;
    --gray-3: #444;
    --gray-4: #666;
    --gray-5: #888;
    --white: #fff;
    --green: #00ff88;
    --green-dark: #00cc6a;
    --font: 'Inter', sans-serif;
    --mono: 'JetBrains Mono', monospace;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font);
    background: var(--black);
    color: var(--white);
    overflow-x: hidden;
}

/* Dirty grain overlay */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

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

/* Scanlines overlay */
.scanlines {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    background: repeating-linear-gradient(
        0deg,
        rgba(0, 0, 0, 0.1) 0px,
        rgba(0, 0, 0, 0.1) 1px,
        transparent 1px,
        transparent 2px
    );
    opacity: 0.3;
}

/* ========================================
   NAVIGATION
======================================== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 3rem;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--gray-1);
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    z-index: 1002;
}

.nav-links {
    display: flex;
    gap: 3rem;
}

.nav-links a {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: var(--gray-4);
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--white);
}

.nav-buy {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    padding: 0.875rem 1.75rem;
    background: var(--white);
    color: var(--black);
    transition: all 0.2s;
}

.nav-buy:hover {
    background: var(--gray-5);
    transform: translateY(-2px);
}

.nav-buy-mobile {
    display: none !important;
}

.nav-toggle {
    display: none;
    width: 28px;
    height: 20px;
    flex-direction: column;
    justify-content: space-between;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1002;
    position: relative;
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--white);
    transition: all 0.3s ease;
    transform-origin: center;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translateY(9px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-9px);
}

/* ========================================
   HERO
======================================== */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

/* Grid background */
.hero-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(var(--gray-1) 1px, transparent 1px),
        linear-gradient(90deg, var(--gray-1) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.3;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(60px, 60px); }
}

.hero-glow {
    position: absolute;
    top: 50%;
    left: 30%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255,255,255,0.03) 0%, transparent 60%);
    pointer-events: none;
}

.hero-container {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 8rem 3rem 4rem;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* Hero Text */
.hero-text {
    padding-right: 0;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    color: var(--gray-4);
    margin-bottom: 2rem;
    padding: 0.5rem 1rem;
    background: var(--gray-1);
    border: 1px solid var(--gray-2);
}

.tag-pulse {
    width: 8px;
    height: 8px;
    background: var(--white);
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.3; transform: scale(0.8); }
}

.hero-title {
    margin-bottom: 1.5rem;
}

.title-line {
    display: block;
    font-size: clamp(4rem, 10vw, 8rem);
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: -0.03em;
    position: relative;
}

.title-line::before {
    content: attr(data-text);
    position: absolute;
    left: 2px;
    top: 0;
    color: var(--gray-3);
    opacity: 0;
}

.title-line.glitch::before {
    opacity: 1;
    animation: glitch 0.2s steps(2) infinite;
}

@keyframes glitch {
    0% { transform: translate(-2px, 2px); }
    25% { transform: translate(2px, -2px); }
    50% { transform: translate(-2px, -2px); }
    75% { transform: translate(2px, 2px); }
    100% { transform: translate(-2px, 2px); }
}

.title-accent {
    color: var(--gray-3);
    -webkit-text-stroke: 2px var(--white);
    text-stroke: 2px var(--white);
}

.hero-tags {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.street-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.5rem 0.75rem;
    background: var(--dark-2);
    border: 1px solid var(--green);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--green);
    animation: tagGlow 2s ease-in-out infinite;
}

.street-tag:nth-child(2) { animation-delay: 0.3s; }
.street-tag:nth-child(3) { animation-delay: 0.6s; }

@keyframes tagGlow {
    0%, 100% { box-shadow: 0 0 5px rgba(0, 255, 136, 0.2); }
    50% { box-shadow: 0 0 15px rgba(0, 255, 136, 0.4); }
}

.hero-desc {
    font-size: 1.125rem;
    color: var(--gray-5);
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 480px;
}

.highlight-green {
    color: var(--green);
    font-weight: 700;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1.25rem 2rem;
    background: var(--white);
    color: var(--black);
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    transition: all 0.2s;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0,0,0,0.1), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { left: -100%; }
    50%, 100% { left: 100%; }
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(255,255,255,0.2);
}

.btn-primary .material-symbols-outlined {
    font-size: 1.25rem;
    transition: transform 0.2s;
}

.btn-primary:hover .material-symbols-outlined {
    transform: translate(3px, -3px);
}

.token-box {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: var(--dark-2);
    border: 1px solid var(--gray-2);
    cursor: pointer;
    transition: border-color 0.2s;
}

.token-box:hover {
    border-color: var(--gray-3);
}

.token-label {
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--gray-4);
}

.token-value {
    font-family: var(--mono);
    font-size: 1rem;
    font-weight: 600;
    flex: 1;
}

.token-box .material-symbols-outlined {
    font-size: 1.125rem;
    color: var(--gray-4);
}

/* Hero Character */
.hero-character {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.character-img {
    width: 100%;
    max-width: 400px;
    height: auto;
    filter: drop-shadow(0 0 80px rgba(255,255,255,0.1));
    transition: transform 0.1s ease-out;
    animation: float 6s ease-in-out infinite;
    margin: 0 auto;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.character-glow {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    height: 100px;
    background: radial-gradient(ellipse, rgba(255,255,255,0.1) 0%, transparent 70%);
    filter: blur(30px);
}

/* Scroll indicator */
.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.625rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    color: var(--gray-4);
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--gray-3), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 1; height: 40px; }
    50% { opacity: 0.5; height: 60px; }
}

/* ========================================
   GALLERY SECTION
======================================== */
.gallery-section {
    padding: 6rem 2rem;
    background: var(--dark);
    overflow: hidden;
    max-width: 1600px;
    margin: 0 auto;
}

.gallery-header {
    text-align: center;
    padding: 0 2rem;
    margin-bottom: 3rem;
}

.gallery-scroll {
    width: 100%;
    overflow: hidden;
    position: relative;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.gallery-track {
    display: flex;
    gap: 1.5rem;
    padding: 1rem 0;
    width: max-content;
    animation: galleryScroll 40s linear infinite;
}

.gallery-track:hover {
    animation-play-state: paused;
}

@keyframes galleryScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.gallery-item {
    flex: 0 0 auto;
    width: calc(20% - 1.2rem);
    min-width: 200px;
    max-width: 280px;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--gray-2);
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.gallery-item img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.5s ease;
    background: var(--dark-2);
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.25rem;
    background: linear-gradient(to top, rgba(0,0,0,0.95), transparent);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--green);
    text-align: center;
}

/* ========================================
   LOCK BADGE (inline in About section)
======================================== */
.lock-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 3rem;
    padding: 1rem 1.5rem;
    background: var(--dark-2);
    border: 1px solid var(--green);
    transition: all 0.3s ease;
}

.lock-badge:hover {
    background: var(--dark-3);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.2);
}

.lock-badge .material-symbols-outlined:first-child {
    color: var(--green);
    font-size: 1.5rem;
}

.lock-badge-text {
    font-family: var(--mono);
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
}

.lock-badge-sub {
    font-size: 0.75rem;
    color: var(--gray-4);
}

.lock-badge .material-symbols-outlined:last-child {
    font-size: 1rem;
    color: var(--gray-4);
    margin-left: 0.5rem;
}

/* ========================================
   SECTIONS
======================================== */
.section {
    padding: 8rem 4rem;
    max-width: 1600px;
    margin: 0 auto;
}

.section-dark {
    background: var(--dark-2);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section .lock-badge {
    display: flex;
    justify-content: center;
    margin: 4rem auto 0;
    max-width: 600px;
}

.section-tag {
    display: inline-block;
    font-family: var(--mono);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: var(--gray-4);
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.02em;
}

/* About Grid */
.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.about-card {
    padding: 2.5rem;
    background: var(--dark-2);
    border: 1px solid var(--gray-1);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.about-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.about-card:nth-child(2) { transition-delay: 0.1s; }
.about-card:nth-child(3) { transition-delay: 0.2s; }

.card-number {
    font-family: var(--mono);
    font-size: 3rem;
    font-weight: 900;
    color: var(--gray-2);
    line-height: 1;
    margin-bottom: 1.5rem;
}

.about-card h3 {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.about-card p {
    font-size: 0.9375rem;
    color: var(--gray-5);
    line-height: 1.7;
}

/* ========================================
   SWAP WIDGET SECTION
======================================== */
.swap-widget {
    max-width: 500px;
    margin: 0 auto;
    padding: 1.5rem;
    background: var(--dark-2);
    border: 1px solid var(--gray-2);
    border-radius: 16px;
}

.swap-widget iframe {
    border-radius: 12px;
}

/* ========================================
   MATRESS SECTION (Easter Egg)
======================================== */
.matress-section {
    margin-top: 4rem;
    display: flex;
    justify-content: center;
}

.matress-card {
    display: flex;
    gap: 2rem;
    max-width: 800px;
    padding: 1.5rem;
    background: var(--dark-2);
    border: 1px solid var(--gray-2);
    border-radius: 12px;
    align-items: center;
}

.matress-img {
    width: 200px;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid var(--gray-2);
}

.matress-content h3 {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.matress-content p {
    color: var(--gray-5);
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.matress-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: var(--gray-1);
    border: 1px solid var(--green);
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--green);
    transition: all 0.2s;
}

.matress-link:hover {
    background: var(--gray-2);
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.2);
}

.matress-link .material-symbols-outlined {
    font-size: 1rem;
}

@media (max-width: 768px) {
    .matress-card {
        flex-direction: column;
        text-align: center;
    }
    
    .matress-img {
        width: 100%;
        height: 200px;
    }
}

/* ========================================
   CLAIM SECTION
======================================== */
.claim-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.claim-left .section-tag {
    text-align: left;
}

.claim-left .section-title {
    text-align: left;
    margin-bottom: 1.5rem;
}

.claim-desc {
    font-size: 1.125rem;
    color: var(--gray-5);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.btn-telegram {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: var(--gray-1);
    border: 1px solid var(--gray-2);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    transition: all 0.2s;
}

.btn-telegram:hover {
    background: var(--gray-2);
    border-color: var(--gray-3);
}

.claim-right {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.command-card {
    padding: 1.75rem;
    background: var(--dark-3);
    border: 1px solid var(--gray-1);
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.6s ease;
}

.command-card.visible {
    opacity: 1;
    transform: translateX(0);
}

.command-card:nth-child(2) { transition-delay: 0.1s; }

.command-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
}

.command-header code {
    font-family: var(--mono);
    font-size: 1.125rem;
    font-weight: 700;
}

.command-tag {
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    padding: 0.375rem 0.625rem;
    background: var(--gray-1);
    color: var(--gray-4);
}

.command-card p {
    font-size: 0.9375rem;
    color: var(--gray-5);
    line-height: 1.6;
}

.command-card strong {
    color: var(--white);
}

.command-example {
    display: block;
    margin-top: 1rem;
    padding: 0.75rem 1rem;
    background: var(--dark);
    border: 1px solid var(--gray-1);
    font-family: var(--mono);
    font-size: 0.8125rem;
    color: var(--gray-4);
}

/* ========================================
   STEPS
======================================== */
.steps-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.step {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 2rem;
    padding: 2.5rem 0;
    position: relative;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.step.visible {
    opacity: 1;
    transform: translateY(0);
}

.step:nth-child(2) { transition-delay: 0.1s; }
.step:nth-child(3) { transition-delay: 0.2s; }

.step-line {
    position: absolute;
    left: 50px;
    top: 0;
    bottom: 0;
    width: 1px;
    background: var(--gray-2);
}

.step:first-child .step-line { top: 50%; }
.step:last-child .step-line { bottom: 50%; }

.step-number {
    font-family: var(--mono);
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--gray-2);
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-final .step-number {
    color: var(--white);
}

.step-content h3 {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.step-content p {
    font-size: 0.9375rem;
    color: var(--gray-5);
    line-height: 1.6;
}

.step-token {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.75rem 1rem;
    background: var(--dark-2);
    border: 1px solid var(--gray-2);
    font-family: var(--mono);
    font-size: 0.9375rem;
    font-weight: 600;
}

.step-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    margin-left: 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--white);
}

.step-link .material-symbols-outlined {
    font-size: 1rem;
    transition: transform 0.2s;
}

.step-link:hover .material-symbols-outlined {
    transform: translate(3px, -3px);
}

/* ========================================
   FOOTER
======================================== */
.footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 3rem;
    background: var(--black);
    border-top: 1px solid var(--gray-1);
}

.footer-brand {
    font-size: 1.25rem;
    font-weight: 900;
    letter-spacing: 0.1em;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--gray-4);
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-copy {
    font-size: 0.75rem;
    color: var(--gray-4);
    letter-spacing: 0.1em;
}

/* ========================================
   TOAST
======================================== */
.toast {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background: var(--white);
    color: var(--black);
    font-weight: 600;
    opacity: 0;
    transition: all 0.3s;
    z-index: 1000;
}

.toast.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

/* ========================================
   RESPONSIVE
======================================== */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text {
        padding-right: 0;
        order: 2;
    }
    
    .hero-tags {
        justify-content: center;
    }
    
    .hero-character {
        order: 1;
    }
    
    .character-img {
        max-width: 350px;
    }
    
    .hero-desc {
        margin: 0 auto 2.5rem;
    }
    
    .hero-buttons {
        align-items: center;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .lock-badge {
        justify-content: center;
        flex-wrap: wrap;
        text-align: center;
    }
    
    .claim-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .claim-left .section-tag,
    .claim-left .section-title {
        text-align: center;
    }
    
    .claim-desc {
        max-width: 500px;
        margin: 0 auto 2rem;
    }
    
    .btn-telegram {
        margin: 0 auto;
    }
    
    .gallery-track {
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        padding: 0 1.5rem;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    
    .gallery-track::-webkit-scrollbar {
        display: none;
    }
    
    .gallery-item {
        min-width: 240px;
        max-width: 240px;
    }
    
    .gallery-item img {
        height: 320px;
    }
}

@media (max-width: 768px) {
    .nav {
        padding: 1rem 1.5rem;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-buy {
        display: none;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: #000;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2.5rem;
        clip-path: circle(0% at calc(100% - 40px) 30px);
        transition: clip-path 0.4s ease-in-out;
        z-index: 1001;
    }
    
    .nav-links.active {
        clip-path: circle(150% at calc(100% - 40px) 30px);
    }
    
    .nav-links a {
        font-size: 2rem;
        font-weight: 800;
        color: var(--white);
        letter-spacing: 0.05em;
    }
    
    .nav-buy-mobile {
        display: block !important;
        margin-top: 1rem;
        padding: 1.25rem 3rem;
        background: var(--white);
        color: #000 !important;
        font-weight: 700;
        font-size: 1rem;
        letter-spacing: 0.05em;
    }
    
    .section {
        padding: 5rem 1.5rem;
    }
    
    .gallery-section {
        padding: 4rem 0;
    }
    
    .gallery-header {
        padding: 0 1.5rem;
        margin-bottom: 2rem;
    }
    
    .gallery-item {
        min-width: 180px;
        max-width: 180px;
    }
    
    .gallery-item img {
        height: 240px;
    }
    
    .gallery-caption {
        padding: 0.75rem;
        font-size: 0.6rem;
    }
    
    .lock-badge {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
        padding: 1.25rem;
    }
    
    .lock-badge-sub {
        display: none;
    }
    
    .title-line {
        font-size: clamp(2.5rem, 12vw, 4rem);
    }
    
    .street-tag {
        font-size: 0.6rem;
        padding: 0.4rem 0.6rem;
    }
    
    .step {
        grid-template-columns: 60px 1fr;
        gap: 1rem;
    }
    
    .step-line {
        left: 30px;
    }
    
    .footer {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
}
