/**
 * TALAREF - Streetwear Premium Waitlist
 * Design: Dark, Minimal, Premium
 * Mobile-first responsive
 */

/* ===== CSS RESET & VARIABLES ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors */
    --black: #0a0a0a;
    --black-pure: #000000;
    --anthracite: #1a1a1a;
    --grey-dark: #2a2a2a;
    --grey: #4a4a4a;
    --grey-light: #8a8a8a;
    --off-white: #f5f5f0;
    --white: #ffffff;
    
    /* Typography */
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 8rem;
    
    /* Transitions */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
    
    /* Durations */
    --duration-fast: 0.2s;
    --duration-normal: 0.4s;
    --duration-slow: 0.8s;
}

/* ===== BASE STYLES ===== */
html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-main);
    background: var(--black);
    color: var(--off-white);
    line-height: 1.4;
    overflow-x: hidden;
    cursor: none;
}

/* Mobile: show default cursor */
@media (max-width: 768px) {
    body {
        cursor: auto;
    }
}

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

button {
    font-family: inherit;
    cursor: none;
}

@media (max-width: 768px) {
    button {
        cursor: pointer;
    }
}

::selection {
    background: var(--off-white);
    color: var(--black);
}

/* ===== NOISE TEXTURE OVERLAY ===== */
.noise {
    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.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* ===== CUSTOM CURSOR ===== */
.cursor {
    position: fixed;
    width: 40px;
    height: 40px;
    border: 1px solid var(--off-white);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.8);
    transition: 
        opacity 0.3s ease,
        transform 0.15s ease,
        width 0.3s ease,
        height 0.3s ease,
        border-color 0.3s ease;
}

.cursor.active {
    opacity: 1;
}

.cursor.hover {
    width: 60px;
    height: 60px;
    border-color: var(--off-white);
    mix-blend-mode: difference;
}

.cursor-dot {
    position: fixed;
    width: 6px;
    height: 6px;
    background: var(--off-white);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10001;
    opacity: 0;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease;
}

.cursor-dot.active {
    opacity: 1;
}

@media (max-width: 768px) {
    .cursor, .cursor-dot {
        display: none;
    }
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: var(--space-md);
    background: var(--black);
    overflow: hidden;
}

/* Subtle gradient background */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse 80% 50% at 50% 0%, rgba(255,255,255,0.02) 0%, transparent 50%),
        radial-gradient(ellipse 50% 80% at 100% 50%, rgba(255,255,255,0.01) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

/* Brand logo */
.brand {
    margin-bottom: var(--space-lg);
    overflow: hidden;
}

.brand-logo {
    height: clamp(60px, 12vw, 120px);
    width: auto;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}

.brand.revealed .brand-logo {
    opacity: 1;
    transform: translateY(0);
}

.brand-text {
    display: inline-block;
    font-size: clamp(0.75rem, 1.5vw, 0.875rem);
    font-weight: 500;
    letter-spacing: 0.4em;
    color: var(--grey-light);
    transform: translateY(100%);
    opacity: 0;
}

.brand-text.revealed {
    transform: translateY(0);
    opacity: 1;
    transition: transform 1s var(--ease-out), opacity 1s var(--ease-out);
}

/* Headline */
.headline {
    margin-bottom: var(--space-md);
}

.headline .line {
    display: block;
    font-size: clamp(3rem, 15vw, 10rem);
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 0.9;
    text-transform: uppercase;
    overflow: hidden;
    transform: translateY(100%);
    opacity: 0;
}

.headline .line.revealed {
    transform: translateY(0);
    opacity: 1;
    transition: transform 1.2s var(--ease-out), opacity 1.2s var(--ease-out);
}

.headline .line.accent {
    color: transparent;
    -webkit-text-stroke: 1px var(--off-white);
    text-stroke: 1px var(--off-white);
}

/* Subtext */
.subtext {
    font-size: clamp(0.875rem, 2vw, 1rem);
    font-weight: 400;
    letter-spacing: 0.1em;
    color: var(--grey-light);
    text-transform: uppercase;
    margin-bottom: var(--space-lg);
    opacity: 0;
    transform: translateY(20px);
}

.subtext.revealed {
    opacity: 1;
    transform: translateY(0);
    transition: transform 1s var(--ease-out) 0.3s, opacity 1s var(--ease-out) 0.3s;
}

/* CTA Button */
.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-md);
    border: 1px solid var(--off-white);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
    transition: 
        background 0.4s ease,
        color 0.4s ease,
        transform 0.4s var(--ease-out);
}

.cta-btn.revealed {
    opacity: 1;
    transform: translateY(0);
    transition: 
        opacity 1s var(--ease-out) 0.5s,
        transform 1s var(--ease-out) 0.5s,
        background 0.4s ease,
        color 0.4s ease;
}

.cta-btn:hover {
    background: var(--off-white);
    color: var(--black);
}

.cta-arrow {
    transition: transform 0.4s var(--ease-out);
}

.cta-btn:hover .cta-arrow {
    transform: translateX(5px);
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: var(--space-md);
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
}

.scroll-indicator.revealed {
    opacity: 1;
    transition: opacity 1s var(--ease-out) 1s;
}

.scroll-line {
    display: block;
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--grey-light), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% {
        transform: scaleY(1);
        opacity: 1;
    }
    50% {
        transform: scaleY(0.5);
        opacity: 0.5;
    }
}

/* ===== WAITLIST SECTION ===== */
.waitlist {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-xl) var(--space-md);
    background: var(--black);
    position: relative;
}

.waitlist-container {
    width: 100%;
    max-width: 600px;
}

.waitlist-content {
    text-align: center;
}

/* Section title */
.section-title {
    margin-bottom: var(--space-lg);
}

.title-line {
    display: block;
    font-size: clamp(2rem, 10vw, 5rem);
    font-weight: 900;
    letter-spacing: -0.02em;
    line-height: 0.95;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(40px);
    transition: transform 0.8s var(--ease-out), opacity 0.8s var(--ease-out);
}

.title-line.accent {
    color: transparent;
    -webkit-text-stroke: 1px var(--off-white);
    text-stroke: 1px var(--off-white);
}

[data-scroll].visible .title-line {
    opacity: 1;
    transform: translateY(0);
}

[data-scroll].visible .title-line:nth-child(2) {
    transition-delay: 0.1s;
}

[data-scroll].visible .title-line:nth-child(3) {
    transition-delay: 0.2s;
}

/* Form */
.waitlist-form {
    opacity: 0;
    transform: translateY(30px);
    transition: transform 0.8s var(--ease-out) 0.3s, opacity 0.8s var(--ease-out) 0.3s;
}

[data-scroll].visible .waitlist-form {
    opacity: 1;
    transform: translateY(0);
}

.form-group {
    position: relative;
    margin-bottom: var(--space-md);
}

.form-group input {
    width: 100%;
    padding: var(--space-sm) 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--grey);
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: var(--off-white);
    text-align: center;
    text-transform: uppercase;
    outline: none;
    transition: border-color 0.3s ease;
}

.form-group input::placeholder {
    color: var(--grey);
    letter-spacing: 0.2em;
}

.form-group input:focus {
    border-color: var(--off-white);
}

.input-line {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 1px;
    background: var(--off-white);
    transform: translateX(-50%);
    transition: width 0.4s var(--ease-out);
}

.form-group input:focus ~ .input-line {
    width: 100%;
}

/* Submit button */
.submit-btn {
    width: 100%;
    padding: var(--space-sm) var(--space-md);
    background: var(--off-white);
    border: none;
    color: var(--black);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(255,255,255,0.1);
}

.submit-btn:active {
    transform: translateY(0);
}

.btn-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.btn-arrow {
    transition: transform 0.3s var(--ease-out);
}

.submit-btn:hover .btn-arrow {
    transform: translateX(5px);
}

/* Loading state */
.btn-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    gap: 6px;
    opacity: 0;
    pointer-events: none;
}

.loading-dot {
    width: 6px;
    height: 6px;
    background: var(--black);
    border-radius: 50%;
    animation: loadingDot 1.4s ease-in-out infinite;
}

.loading-dot:nth-child(2) {
    animation-delay: 0.2s;
}

.loading-dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes loadingDot {
    0%, 80%, 100% {
        transform: scale(0.6);
        opacity: 0.4;
    }
    40% {
        transform: scale(1);
        opacity: 1;
    }
}

.submit-btn.loading .btn-content {
    opacity: 0;
    transform: translateY(10px);
}

.submit-btn.loading .btn-loading {
    opacity: 1;
}

/* Form note */
.form-note {
    margin-top: var(--space-sm);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    color: var(--grey);
    text-transform: uppercase;
}

/* Success message */
.success-message {
    display: none;
    text-align: center;
    animation: fadeInUp 0.6s var(--ease-out);
}

.success-message.show {
    display: block;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.success-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto var(--space-md);
    border: 1px solid var(--off-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.success-icon svg {
    width: 24px;
    height: 24px;
    stroke-dasharray: 30;
    stroke-dashoffset: 30;
    animation: checkDraw 0.6s var(--ease-out) 0.3s forwards;
}

@keyframes checkDraw {
    to {
        stroke-dashoffset: 0;
    }
}

.success-title {
    font-size: clamp(1.5rem, 5vw, 2.5rem);
    font-weight: 900;
    letter-spacing: -0.02em;
    margin-bottom: var(--space-xs);
}

.success-text {
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    color: var(--grey-light);
    text-transform: uppercase;
}

/* ===== MODAL WAITLIST ===== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 9000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-md);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

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

.modal {
    width: 100%;
    max-width: 420px;
    background: var(--anthracite);
    border: 1px solid var(--grey-dark);
    padding: var(--space-lg);
    position: relative;
    transform: translateY(30px) scale(0.95);
    transition: transform 0.4s var(--ease-out);
}

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

.modal-close {
    position: absolute;
    top: var(--space-sm);
    right: var(--space-sm);
    width: 40px;
    height: 40px;
    background: transparent;
    border: 1px solid var(--grey-dark);
    color: var(--grey-light);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.modal-close:hover {
    border-color: var(--off-white);
    color: var(--off-white);
}

.modal-close svg {
    width: 18px;
    height: 18px;
}

.modal-content {
    text-align: center;
}

.modal-title {
    font-size: clamp(1.5rem, 5vw, 2rem);
    font-weight: 900;
    letter-spacing: -0.02em;
    margin-bottom: var(--space-xs);
}

.modal-subtitle {
    font-size: 0.875rem;
    color: var(--grey-light);
    letter-spacing: 0.05em;
    margin-bottom: var(--space-md);
}

.modal-form {
    margin-bottom: var(--space-sm);
}

.modal-input-group {
    margin-bottom: var(--space-sm);
}

.modal-input-group input {
    width: 100%;
    padding: var(--space-sm);
    background: var(--black);
    border: 1px solid var(--grey-dark);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--off-white);
    text-align: center;
    text-transform: uppercase;
    outline: none;
    transition: border-color 0.3s ease;
}

.modal-input-group input::placeholder {
    color: var(--grey);
}

.modal-input-group input:focus {
    border-color: var(--off-white);
}

.modal-submit {
    width: 100%;
    padding: var(--space-sm);
    background: var(--off-white);
    border: none;
    color: var(--black);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    position: relative;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.modal-submit:hover {
    transform: translateY(-2px);
}

.modal-submit:active {
    transform: translateY(0);
}

.modal-btn-text {
    transition: opacity 0.3s ease;
}

.modal-btn-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    gap: 6px;
    opacity: 0;
}

.modal-submit.loading .modal-btn-text {
    opacity: 0;
}

.modal-submit.loading .modal-btn-loading {
    opacity: 1;
}

.modal-note {
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    color: var(--grey);
    text-transform: uppercase;
}

/* Modal success state */
.modal-success {
    display: none;
    text-align: center;
    padding: var(--space-md) 0;
}

.modal-success.show {
    display: block;
    animation: fadeInUp 0.5s var(--ease-out);
}

.modal-success .success-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto var(--space-sm);
    border: 1px solid var(--off-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-success .success-icon svg {
    width: 20px;
    height: 20px;
}

/* Hide body scroll when modal open */
body.modal-open {
    overflow: hidden;
}

/* ===== CTA BUTTON AS BUTTON ===== */
.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-md);
    background: transparent;
    border: 1px solid var(--off-white);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--off-white);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
    transition: 
        background 0.4s ease,
        color 0.4s ease,
        transform 0.4s var(--ease-out);
}

/* ===== SOLD OUT SECTION ===== */
.soldout {
    padding: var(--space-xl) var(--space-md);
    background: var(--black);
    position: relative;
}

.soldout::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--grey-dark), transparent);
}

.soldout-container {
    max-width: 1000px;
    margin: 0 auto;
}

.soldout-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
    opacity: 0;
    transform: translateY(20px);
    transition: transform 0.8s var(--ease-out), opacity 0.8s var(--ease-out);
}

[data-scroll].visible.soldout-header {
    opacity: 1;
    transform: translateY(0);
}

.soldout-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    color: var(--off-white);
    text-transform: uppercase;
}

.soldout-status {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: #c0392b;
    padding: 4px 12px;
    border: 1px solid #c0392b;
    text-transform: uppercase;
}

/* Drop Showcase */
.drop-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    max-width: 900px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(30px);
    transition: transform 0.8s var(--ease-out) 0.2s, opacity 0.8s var(--ease-out) 0.2s;
}

[data-scroll].visible.drop-showcase {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .drop-showcase {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
}

.drop-main {
    position: relative;
}

.drop-image-large {
    aspect-ratio: 3/4;
    background: var(--anthracite);
    position: relative;
    overflow: hidden;
}

.drop-image-large .drop-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(2px);
}

.drop-details {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.drop-title {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 900;
    letter-spacing: -0.02em;
    margin-bottom: var(--space-xs);
}

.drop-tagline {
    font-size: 0.875rem;
    font-style: italic;
    color: var(--grey-light);
    margin-bottom: var(--space-md);
}

.drop-items {
    list-style: none;
    margin-bottom: var(--space-md);
}

.drop-items li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-xs) 0;
    border-bottom: 1px solid var(--grey-dark);
}

.drop-items li:last-child {
    border-bottom: none;
}

.item-name {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: var(--off-white);
}

.item-status {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #c0392b;
    text-transform: uppercase;
}

.drop-note {
    font-size: 0.75rem;
    font-style: italic;
    color: var(--grey);
    margin-top: var(--space-sm);
}

.sold-badge {
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    color: var(--off-white);
    padding: var(--space-xs) var(--space-sm);
    border: 1px solid var(--off-white);
    text-transform: uppercase;
}

/* ===== WAITLIST COUNTER ===== */
.waitlist-counter {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    margin-top: var(--space-md);
    padding-top: var(--space-md);
    border-top: 1px solid var(--grey-dark);
}

.counter-number {
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--off-white);
}

.counter-text {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: var(--grey);
    text-transform: uppercase;
}

/* ===== STATEMENT SECTION ===== */
.statement {
    padding: var(--space-xl) var(--space-md);
    background: var(--anthracite);
    position: relative;
}

.statement::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--grey), transparent);
}

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

.statement-content {
    text-align: center;
    margin-bottom: var(--space-xl);
    opacity: 0;
    transform: translateY(40px);
    transition: transform 0.8s var(--ease-out), opacity 0.8s var(--ease-out);
}

[data-scroll].visible.statement-content {
    opacity: 1;
    transform: translateY(0);
}

.statement-line {
    font-size: clamp(1rem, 3vw, 1.5rem);
    font-weight: 400;
    letter-spacing: 0.1em;
    color: var(--grey-light);
    text-transform: uppercase;
    margin-bottom: var(--space-xs);
}

.statement-line.large {
    font-size: clamp(2rem, 8vw, 5rem);
    font-weight: 900;
    letter-spacing: -0.02em;
    color: var(--off-white);
    margin-bottom: 0;
}

/* Statement blocks */
.statement-secondary {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    opacity: 0;
    transform: translateY(30px);
    transition: transform 0.8s var(--ease-out) 0.2s, opacity 0.8s var(--ease-out) 0.2s;
}

[data-scroll].visible.statement-secondary {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .statement-secondary {
        grid-template-columns: 1fr;
        gap: var(--space-sm);
    }
}

.statement-block {
    text-align: center;
    padding: var(--space-md);
    border: 1px solid var(--grey-dark);
    transition: border-color 0.3s ease, background 0.3s ease;
}

.statement-block:hover {
    border-color: var(--grey);
    background: rgba(255,255,255,0.02);
}

.block-number {
    display: block;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    color: var(--grey);
    margin-bottom: var(--space-xs);
}

.block-text {
    font-size: clamp(0.75rem, 2vw, 0.875rem);
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

/* ===== FOOTER ===== */
.footer {
    padding: var(--space-md);
    background: var(--black);
    border-top: 1px solid var(--grey-dark);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-logo {
    height: 35px;
    width: auto;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.footer-logo:hover {
    opacity: 1;
}

.footer-brand {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.3em;
}

.footer-social {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--grey-dark);
    transition: border-color 0.3s ease, background 0.3s ease;
}

.footer-social:hover {
    border-color: var(--off-white);
    background: var(--off-white);
}

.footer-social svg {
    width: 18px;
    height: 18px;
    transition: color 0.3s ease;
}

.footer-social:hover svg {
    color: var(--black);
}

.footer-copy {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    color: var(--grey);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 480px) {
    :root {
        --space-lg: 3rem;
        --space-xl: 5rem;
    }
    
    .headline .line {
        letter-spacing: -0.02em;
    }
    
    .cta-btn {
        width: 100%;
        justify-content: center;
    }
    
    .footer-container {
        flex-direction: column;
        gap: var(--space-sm);
        text-align: center;
    }
}

/* ===== UTILITY CLASSES ===== */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
