/* ═══════════════════════════════════════════════
   FASHION SKETCH DESIGN — Landing Page Styles
   Design System: Matching iOS App Theme
   ═══════════════════════════════════════════════ */

/* ─── Design Tokens ─── */
:root {
    /* Colors (from AppTheme.swift) */
    --bg: #FDFCFB;
    --bg-alt: #F5F5F0;
    --bg-dark: #1C1917;
    --text-primary: #1A1816;
    --text-secondary: #8C8376;
    --border: #C5B49D;
    --fashion-black: #0A0A0A;
    --fashion-gray: #D1D1CF;
    --accent-pink: #ee2b8c;

    /* Stone Palette */
    --stone-50: #FAFAF9;
    --stone-100: #F5F5F4;
    --stone-200: #E7E5E4;
    --stone-300: #D6D3D1;
    --stone-400: #A8A29E;
    --stone-500: #78716C;
    --stone-600: #57534E;
    --stone-700: #44403C;
    --stone-800: #292524;
    --stone-900: #1C1917;
    --stone-950: #0C0A09;

    /* Typography */
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Plus Jakarta Sans', -apple-system, sans-serif;

    /* Spacing */
    --section-padding: 120px;
    --container-max: 1200px;

    /* Transitions */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --duration: 0.6s;
}

/* ─── Reset & Base ─── */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    color: var(--text-primary);
    background: var(--bg);
    line-height: 1.6;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s ease;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* ─── Section Shared ─── */
.section-label {
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 900;
    line-height: 1.05;
    text-transform: uppercase;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.section-line {
    width: 40px;
    height: 2px;
    background: var(--fashion-black);
    margin-bottom: 24px;
}

.section-line-center {
    margin-left: auto;
    margin-right: auto;
}

.section-desc {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.7;
    color: var(--text-secondary);
    max-width: 520px;
}

/* ═══════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(253, 252, 251, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(197, 180, 157, 0.1);
    transition: transform 0.3s var(--ease-out), box-shadow 0.3s ease;
}

.navbar.scrolled {
    box-shadow: 0 1px 20px rgba(0, 0, 0, 0.04);
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

.nav-logo-icon {
    width: 36px;
    height: 36px;
    color: var(--fashion-black);
}

.nav-logo-text {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--fashion-black);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-link {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-secondary);
    position: relative;
    cursor: pointer;
    transition: color 0.2s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--fashion-black);
    transition: width 0.3s var(--ease-out);
}

.nav-link:hover {
    color: var(--fashion-black);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.active {
    color: var(--fashion-black);
}

.nav-link.active::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    border: none;
    background: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--fashion-black);
    transition: all 0.3s ease;
}

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

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

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

/* ═══════════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════════ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 72px;
    background: var(--bg);
    overflow: hidden;
}

.hero-grid-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0,0,0,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,0,0,0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

.hero-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
    position: relative;
    z-index: 1;
}

.hero-content {
    padding: 40px 0;
}

.hero-label {
    font-family: var(--font-body);
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeUp 0.8s var(--ease-out) 0.2s forwards;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(56px, 7vw, 88px);
    font-weight: 900;
    line-height: 0.92;
    text-transform: uppercase;
    color: var(--fashion-black);
    margin-bottom: 24px;
    opacity: 0;
    animation: fadeUp 0.8s var(--ease-out) 0.4s forwards;
}

.hero-title-outline {
    -webkit-text-stroke: 2px var(--fashion-black);
    color: transparent;
}

.hero-subtitle {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    color: var(--text-secondary);
    max-width: 440px;
    margin-bottom: 36px;
    opacity: 0;
    animation: fadeUp 0.8s var(--ease-out) 0.6s forwards;
}

.hero-cta-group {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    opacity: 0;
    animation: fadeUp 0.8s var(--ease-out) 0.8s forwards;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 16px 28px;
    border: none;
    cursor: pointer;
    transition: all 0.3s var(--ease-out);
}

.btn-primary {
    background: var(--fashion-black);
    color: #fff;
}

.btn-primary:hover {
    background: var(--stone-800);
    transform: translateY(-1px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.btn-ghost {
    background: transparent;
    color: var(--fashion-black);
    border: 1.5px solid var(--fashion-black);
}

.btn-ghost:hover {
    background: var(--fashion-black);
    color: #fff;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 32px;
    opacity: 0;
    animation: fadeUp 0.8s var(--ease-out) 1s forwards;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 900;
    color: var(--fashion-black);
}

.stat-suffix {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    color: var(--fashion-black);
}

.stat-label {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-secondary);
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border);
    opacity: 0.3;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    animation: fadeUp 1s var(--ease-out) 0.5s forwards;
}

.hero-image-wrapper {
    position: relative;
    max-width: 480px;
    width: 100%;
}

.hero-image {
    width: 100%;
    border: 2px solid var(--fashion-black);
    box-shadow: 12px 12px 0 var(--accent-pink);
    transition: box-shadow 0.4s var(--ease-out);
}

.hero-image-wrapper:hover .hero-image {
    box-shadow: 16px 16px 0 var(--accent-pink);
}

.hero-image-accent {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 80px;
    height: 80px;
    border: 2px solid var(--border);
    opacity: 0.3;
    pointer-events: none;
}

/* Hero Floating Badges */
.hero-floating-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: #fff;
    border: 1px solid var(--fashion-black);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    white-space: nowrap;
    animation: float 6s ease-in-out infinite;
    z-index: 2;
}

.badge-top {
    top: 10%;
    right: -10px;
    animation-delay: 0s;
}

.badge-top svg {
    color: #F59E0B;
}

.badge-bottom {
    bottom: 15%;
    left: -10px;
    animation-delay: 3s;
}

.badge-bottom svg {
    color: var(--accent-pink);
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0;
    animation: fadeIn 1s ease 1.5s forwards;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: var(--border);
    animation: scrollPulse 2s ease-in-out infinite;
}

.hero-scroll-indicator span {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--text-secondary);
}

/* ═══════════════════════════════════════════════
   FEATURES SECTION — Blog/Editorial Layout
   ═══════════════════════════════════════════════ */
.features {
    padding: var(--section-padding) 0;
    background: var(--bg);
}

.section-header {
    margin-bottom: 60px;
}

/* Feature Hero — Full Width Image + Content */
.feature-hero {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 0;
    margin-bottom: 32px;
    border: 1px solid rgba(197, 180, 157, 0.2);
    overflow: hidden;
    transition: all 0.4s var(--ease-out);
}

.feature-hero:hover {
    border-color: var(--fashion-black);
    box-shadow: 12px 12px 0 rgba(0, 0, 0, 0.04);
}

.feature-hero-image {
    overflow: hidden;
    aspect-ratio: 4/3;
}

.feature-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease-out);
}

.feature-hero:hover .feature-hero-image img {
    transform: scale(1.04);
}

.feature-hero-content {
    padding: 48px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--bg);
}

.feature-number {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 900;
    color: rgba(197, 180, 157, 0.25);
    line-height: 1;
    margin-bottom: 16px;
}

.feature-hero-title {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.feature-hero-desc {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.feature-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.feature-tag {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 6px 14px;
    border: 1px solid var(--border);
    color: var(--text-secondary);
    transition: all 0.2s ease;
}

.feature-tag:hover {
    background: var(--fashion-black);
    color: #fff;
    border-color: var(--fashion-black);
}

/* Feature Cards Row — 2x2 Grid */
.feature-cards-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.feature-card-v2 {
    padding: 36px 28px;
    border: 1px solid rgba(197, 180, 157, 0.2);
    background: var(--bg);
    transition: all 0.4s var(--ease-out);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.feature-card-v2::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-pink);
    transition: width 0.4s var(--ease-out);
}

.feature-card-v2:hover {
    border-color: var(--fashion-black);
    transform: translateY(-4px);
    box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.03);
}

.feature-card-v2:hover::before {
    width: 100%;
}

.feature-card-v2 .feature-number {
    font-size: 36px;
    margin-bottom: 20px;
}

.feature-card-v2-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    margin-bottom: 20px;
    color: var(--fashion-black);
    transition: all 0.3s ease;
}

.feature-card-v2:hover .feature-card-v2-icon {
    background: var(--fashion-black);
    color: #fff;
    border-color: var(--fashion-black);
}

.feature-card-v2-title {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.feature-card-v2-desc {
    font-size: 13px;
    line-height: 1.6;
    color: var(--text-secondary);
}

/* ═══════════════════════════════════════════════
   EVENTS SECTION
   ═══════════════════════════════════════════════ */
.events {
    padding: var(--section-padding) 0;
    background: var(--bg-alt);
}

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

.events-content {
    padding-right: 40px;
}

.events-features {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.event-feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.event-feature-dot {
    width: 8px;
    height: 8px;
    background: var(--fashion-black);
    margin-top: 6px;
    flex-shrink: 0;
}

.event-feature h4 {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--text-primary);
}

.event-feature p {
    font-size: 13px;
    line-height: 1.6;
    color: var(--text-secondary);
}

/* Events Visual */
.events-visual {
    position: relative;
}

.events-image-stack {
    position: relative;
    padding: 20px;
}

.events-img {
    border: 2px solid var(--fashion-black);
    transition: transform 0.4s var(--ease-out);
}

.events-img-1 {
    width: 90%;
    position: relative;
    z-index: 2;
    box-shadow: 10px 10px 0 var(--accent-pink);
}

.events-img-2 {
    width: 60%;
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 3;
    box-shadow: 6px 6px 0 var(--fashion-black);
}

.events-image-stack:hover .events-img-1 {
    transform: translate(-4px, -4px);
}

.events-image-stack:hover .events-img-2 {
    transform: translate(4px, 4px);
}

/* ═══════════════════════════════════════════════
   COMPETITION SECTION
   ═══════════════════════════════════════════════ */
.competition {
    padding: var(--section-padding) 0;
    background: var(--bg);
}

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

.competition-visual {
    position: relative;
}

.competition-img {
    width: 100%;
    border: 2px solid var(--fashion-black);
    box-shadow: 12px 12px 0 rgba(0, 0, 0, 0.06);
    filter: grayscale(0.3) contrast(1.1);
    transition: all 0.4s var(--ease-out);
}

.competition-visual:hover .competition-img {
    filter: grayscale(0) contrast(1);
    box-shadow: 16px 16px 0 rgba(0, 0, 0, 0.06);
}

.competition-overlay {
    position: absolute;
    bottom: 24px;
    left: 24px;
}

.competition-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--fashion-black);
    color: #fff;
    padding: 12px 20px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    box-shadow: 4px 4px 0 var(--accent-pink);
}

.competition-content {
    padding-left: 20px;
}

.competition-stats {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.comp-stat {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.comp-stat-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    flex-shrink: 0;
    color: var(--fashion-black);
}

.comp-stat strong {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary);
}

.comp-stat p {
    font-size: 13px;
    color: var(--text-secondary);
    margin-top: 4px;
}

/* ═══════════════════════════════════════════════
   DOWNLOAD SECTION
   ═══════════════════════════════════════════════ */
.download {
    padding: var(--section-padding) 0;
    background: var(--bg-dark);
    position: relative;
    overflow: hidden;
}

.download::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

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

.download .section-label {
    color: var(--stone-400);
}

.download .section-title {
    color: #fff;
}

.download .section-line {
    background: #fff;
}

.download-desc {
    color: var(--stone-400);
    max-width: 540px;
    margin: 0 auto 48px;
}

.download-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.store-btn {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 28px;
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    color: #fff;
    transition: all 0.3s var(--ease-out);
    cursor: pointer;
}

.store-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

.store-label {
    display: block;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    opacity: 0.7;
}

.store-name {
    display: block;
    font-size: 18px;
    font-weight: 700;
    margin-top: 2px;
}

/* ═══════════════════════════════════════════════
   LEGAL PAGES (Privacy & Terms — Separate Pages)
   ═══════════════════════════════════════════════ */
.legal-page {
    padding-top: 120px;
    padding-bottom: var(--section-padding);
    background: var(--bg);
    min-height: 100vh;
}

.legal-page-header {
    margin-bottom: 60px;
}

.legal-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 40px;
    transition: color 0.2s ease;
}

.legal-back:hover {
    color: var(--fashion-black);
}

.legal-page-updated {
    font-size: 13px;
    color: var(--text-secondary);
}

.legal-page-body {
    max-width: 720px;
}

.legal-section-block {
    margin-bottom: 36px;
    padding-bottom: 36px;
    border-bottom: 1px solid rgba(197, 180, 157, 0.12);
}

.legal-section-block:last-child {
    border-bottom: none;
}

.legal-section-block h2 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.legal-section-block p {
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.legal-section-block ul {
    padding-left: 24px;
    margin-bottom: 12px;
}

.legal-section-block li {
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.legal-section-block a {
    color: var(--fashion-black);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.legal-section-block a:hover {
    color: var(--accent-pink);
}

/* ═══════════════════════════════════════════════
   CONTACT SECTION
   ═══════════════════════════════════════════════ */
.contact {
    padding: var(--section-padding) 0;
    background: var(--bg-alt);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-details {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--text-secondary);
}

.contact-item svg {
    flex-shrink: 0;
    color: var(--fashion-black);
}

.contact-item a {
    color: var(--text-primary);
    font-weight: 500;
}

.contact-item a:hover {
    color: var(--accent-pink);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group label {
    display: block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid rgba(197, 180, 157, 0.3);
    background: var(--bg);
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--text-primary);
    transition: all 0.3s ease;
    outline: none;
    -webkit-appearance: none;
    border-radius: 0;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--fashion-black);
    box-shadow: 0 0 0 1px var(--fashion-black);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* ═══════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════ */
.footer {
    padding: 64px 0 32px;
    background: var(--bg-dark);
    color: var(--stone-400);
}

.footer-top {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.footer-logo .nav-logo-icon {
    color: #fff;
}

.footer-logo span {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 2px;
    color: #fff;
}

.footer-tagline {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--stone-500);
}

.footer-links {
    display: flex;
    gap: 60px;
}

.footer-col h4 {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--stone-400);
    margin-bottom: 16px;
}

.footer-col a {
    display: block;
    font-size: 13px;
    color: var(--stone-500);
    margin-bottom: 10px;
    transition: color 0.2s ease;
}

.footer-col a:hover {
    color: #fff;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    font-size: 12px;
    color: var(--stone-600);
}

.footer-credits {
    font-size: 10px;
    letter-spacing: 2px;
}

/* ═══════════════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════════════ */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

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

/* Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

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

/* ═══════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════ */

/* Tablet */
@media (max-width: 1024px) {
    :root {
        --section-padding: 80px;
    }

    .hero-container {
        gap: 40px;
    }

    .feature-hero {
        grid-template-columns: 1fr;
    }

    .feature-hero-image {
        aspect-ratio: 16/9;
    }

    .feature-cards-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .events-layout,
    .competition-layout,
    .contact-layout {
        gap: 48px;
    }

    .footer-links {
        gap: 40px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    :root {
        --section-padding: 64px;
    }

    /* Nav Mobile */
    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--bg);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 36px;
        transition: right 0.4s var(--ease-out);
        z-index: 1000;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-link {
        font-size: 14px;
        letter-spacing: 3px;
    }

    /* Hero Mobile */
    .hero {
        min-height: auto;
        padding-top: 100px;
        padding-bottom: 60px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-title {
        font-size: clamp(48px, 12vw, 72px);
    }

    .hero-visual {
        order: -1;
    }

    .hero-image-wrapper {
        max-width: 320px;
        margin: 0 auto;
    }

    .hero-floating-badge {
        display: none;
    }

    .hero-scroll-indicator {
        display: none;
    }

    .hero-stats {
        gap: 20px;
    }

    .stat-number {
        font-size: 24px;
    }

    .stat-suffix {
        font-size: 18px;
    }

    .hero-cta-group {
        flex-direction: column;
    }

    .btn {
        justify-content: center;
    }

    /* Features Mobile */
    .feature-hero {
        grid-template-columns: 1fr;
    }

    .feature-hero-content {
        padding: 32px 24px;
    }

    .feature-cards-row {
        grid-template-columns: 1fr;
    }

    /* Events Mobile */
    .events-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .events-content {
        padding-right: 0;
    }

    /* Competition Mobile */
    .competition-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .competition-content {
        padding-left: 0;
    }

    /* Contact Mobile */
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    /* Download Mobile */
    .download-buttons {
        flex-direction: column;
        align-items: center;
    }

    .store-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    /* Legal Page Mobile */
    .legal-page {
        padding-top: 100px;
    }

    /* Footer Mobile */
    .footer-top {
        flex-direction: column;
        gap: 36px;
    }

    .footer-links {
        gap: 32px;
        flex-wrap: wrap;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-stats {
        flex-wrap: wrap;
        gap: 16px;
    }

    .stat-divider {
        display: none;
    }

    .section-title {
        font-size: clamp(28px, 8vw, 40px);
    }
}

/* ─── Reduced Motion ─── */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}
