/* ═══════════════════════════════════════════════════════════════════════════
   OurSpot Landing Page — Premium Gen Z Design System
   Orange/Gold Gradient Palette with Modern Glassmorphism
   ═══════════════════════════════════════════════════════════════════════════ */

/* CSS Variables — The DNA of our design */
:root {
    /* Primary Gradient Palette — Warm Gold/Orange */
    --gold-100: #FFF7ED;
    --gold-200: #FFEDD5;
    --gold-300: #FED7AA;
    --gold-400: #FDBA74;
    --gold-500: #FB923C;
    --gold-600: #F97316;
    --gold-700: #EA580C;
    --gold-800: #C2410C;

    /* Accent Colors */
    --coral: #FF6B6B;
    --peach: #FFECD2;
    --amber: #F59E0B;
    --sunset: #FF8C42;

    /* Neutrals */
    --black: #0A0A0A;
    --gray-900: #171717;
    --gray-800: #262626;
    --gray-700: #404040;
    --gray-600: #525252;
    --gray-400: #A3A3A3;
    --gray-200: #E5E5E5;
    --white: #FAFAFA;

    /* Gradients */
    --gradient-hero: linear-gradient(135deg, #0A0A0A 0%, #1a1206 50%, #1f1508 100%);
    --gradient-primary: linear-gradient(135deg, #F97316 0%, #FB923C 50%, #FBBF24 100%);
    --gradient-glow: linear-gradient(135deg, #F97316 0%, #EA580C 100%);
    --gradient-card: linear-gradient(135deg, rgba(249, 115, 22, 0.1) 0%, rgba(251, 146, 60, 0.05) 100%);
    --gradient-text: linear-gradient(135deg, #FB923C 0%, #F97316 30%, #FBBF24 70%, #F59E0B 100%);

    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-blur: blur(20px);

    /* Typography Scale */
    --font-display: 'Outfit', sans-serif;
    --font-body: 'Space Grotesk', sans-serif;

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 5rem;
    --space-3xl: 8rem;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 100px;

    /* Transitions */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: 0.2s var(--ease-out);
    --transition-medium: 0.4s var(--ease-out);
    --transition-slow: 0.6s var(--ease-out);
}

/* ═══════════════════════════════════════════════════════════════════════════
   Reset & Base Styles
   ═══════════════════════════════════════════════════════════════════════════ */

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

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

body {
    font-family: var(--font-body);
    background: var(--black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

/* Selection styling */
::selection {
    background: var(--gold-500);
    color: var(--black);
}

/* ═══════════════════════════════════════════════════════════════════════════
   Floating Orbs — Ambient Background Elements
   ═══════════════════════════════════════════════════════════════════════════ */

.orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    pointer-events: none;
    z-index: 0;
    animation: float 20s infinite ease-in-out;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--gold-600) 0%, transparent 70%);
    top: -200px;
    right: -100px;
    animation-delay: 0s;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--gold-500) 0%, transparent 70%);
    bottom: 20%;
    left: -150px;
    animation-delay: -7s;
}

.orb-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--amber) 0%, transparent 70%);
    top: 60%;
    right: 10%;
    animation-delay: -14s;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    25% {
        transform: translate(30px, -30px) scale(1.05);
    }

    50% {
        transform: translate(-20px, 20px) scale(0.95);
    }

    75% {
        transform: translate(20px, 10px) scale(1.02);
    }
}

/* Noise texture overlay */
.noise {
    position: fixed;
    inset: 0;
    z-index: 1000;
    pointer-events: none;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* ═══════════════════════════════════════════════════════════════════════════
   Navigation
   ═══════════════════════════════════════════════════════════════════════════ */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: var(--space-md) var(--space-lg);
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid var(--glass-border);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.5rem;
}

.logo-img {
    width: 36px;
    height: 36px;
    object-fit: contain;
    transition: var(--transition-fast);
}

.logo:hover .logo-img {
    transform: scale(1.1) rotate(-5deg);
}

.logo-text {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.nav-cta {
    padding: 0.75rem 1.5rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-full);
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.nav-cta:hover {
    background: var(--gradient-primary);
    border-color: transparent;
    color: var(--black);
    transform: translateY(-2px);
}

/* ═══════════════════════════════════════════════════════════════════════════
   Hero Section
   ═══════════════════════════════════════════════════════════════════════════ */

.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: var(--space-xl);
    padding: calc(100px + var(--space-2xl)) var(--space-lg) var(--space-2xl);
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 600px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: 0.5rem 1rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gold-400);
    margin-bottom: var(--space-lg);
    animation: fadeInUp 0.8s var(--ease-out) both;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--gold-500);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: var(--space-md);
    animation: fadeInUp 0.8s var(--ease-out) 0.1s both;
}

.gradient-text {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--gray-400);
    line-height: 1.7;
    margin-bottom: var(--space-xl);
    animation: fadeInUp 0.8s var(--ease-out) 0.2s both;
}

.hero-subtitle strong {
    color: var(--white);
}

.hero-ctas {
    animation: fadeInUp 0.8s var(--ease-out) 0.3s both;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    padding: 1rem 2rem;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-lg);
    border: none;
    cursor: pointer;
    transition: var(--transition-fast);
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--black);
    box-shadow:
        0 4px 20px rgba(249, 115, 22, 0.4),
        0 0 60px rgba(249, 115, 22, 0.2);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow:
        0 8px 30px rgba(249, 115, 22, 0.5),
        0 0 80px rgba(249, 115, 22, 0.3);
}

.btn-primary:active {
    transform: translateY(-1px) scale(0.98);
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
}

.apple-icon {
    width: 20px;
    height: 20px;
}

/* Phone Mockup */
/* Phone Mockup — iPhone 17 Pro Titanium Style */
.phone-mockup {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInUp 0.8s var(--ease-out) 0.4s both;
}

.phone-frame {
    width: 300px;
    /* Slightly wider for Pro feel */
    height: 620px;
    /* Titanium bezel gradient */
    background: linear-gradient(135deg,
            #555555 0%,
            #2a2a2a 20%,
            #1a1a1a 80%,
            #444444 100%);
    border-radius: 56px;
    /* Smoother curve */
    padding: 8px;
    /* Thinner bezel */
    box-shadow:
        0 0 0 2px #333,
        /* Outer lip */
        0 50px 100px rgba(0, 0, 0, 0.7),
        /* Deep shadow */
        inset 0 0 4px rgba(255, 255, 255, 0.2);
    /* Metallic inner shine */
    position: relative;
    z-index: 2;
}

/* Dynamic Island */
.phone-frame::before {
    content: '';
    position: absolute;
    top: 20px;
    /* Spaced from top */
    left: 50%;
    transform: translateX(-50%);
    width: 96px;
    /* Pill width */
    height: 28px;
    /* Pill height */
    background: #000;
    border-radius: 20px;
    z-index: 100;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
    /* Subtle depth */
}

/* Speaker slit inside Dynamic Island */
.phone-frame::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 96px;
    height: 28px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    /* Subtle reflection */
    pointer-events: none;
    z-index: 101;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: var(--gradient-hero);
    border-radius: 48px;
    /* Follows frame curve */
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.5);
    /* Screen edge transition */
}

/* ═══════════════════════════════════════════════════════════════════════════
   Map Preview Mockup — Realistic Dark Mode Image
   ═══════════════════════════════════════════════════════════════════════════ */

/* Map Background Image */
.map-bg {
    position: absolute;
    inset: 0;
    background-image: url('map-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    filter: brightness(0.7) contrast(1.1) saturate(0.9);
    /* Dimmed brightness and reduced saturation for subtler lines */
}

/* Plan pins on the map */
.plan-pin {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 10;
    animation: pin-float 3s ease-in-out infinite;
}

.plan-pin:nth-child(2) {
    animation-delay: -0.5s;
}

.plan-pin:nth-child(3) {
    animation-delay: -1s;
}

.plan-pin:nth-child(4) {
    animation-delay: -1.5s;
}

.plan-pin:nth-child(5) {
    animation-delay: -2s;
}

.plan-pin:nth-child(6) {
    animation-delay: -2.5s;
}

@keyframes pin-float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
        /* Increased float distance slightly for bigger pins */
    }
}

/* Stacked Attendee Bubbles on Pins */
.pin-attendees {
    display: flex;
    margin-bottom: 5px;
}

.pin-attendees img {
    width: 36px;
    /* Increased from 28px */
    height: 36px;
    /* Increased from 28px */
    border-radius: 50%;
    border: 2px solid var(--gold-500);
    margin-left: -12px;
    object-fit: cover;
    box-shadow: 0 0 14px rgba(251, 146, 60, 0.5), 0 3px 8px rgba(0, 0, 0, 0.5);
}

.pin-attendees img:first-child {
    margin-left: 0;
}

.pin-label {
    padding: 4px 10px;
    /* Increased padding */
    background: rgba(0, 0, 0, 0.85);
    border: 1px solid var(--gold-500);
    border-radius: 12px;
    /* Increased radius */
    font-size: 0.7rem;
    /* Increased from 0.55rem */
    font-weight: 600;
    color: var(--white);
    white-space: nowrap;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.6);
}

/* Event Card Preview */
.event-card-preview {
    position: absolute;
    bottom: 80px;
    left: 16px;
    right: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    background: rgba(30, 30, 30, 0.95);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    z-index: 40;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}

.event-attendees {
    display: flex;
}

.event-attendees img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid var(--gray-700);
    margin-left: -12px;
    object-fit: cover;
}

.event-attendees img:first-child {
    margin-left: 0;
}

.event-info {
    flex: 1;
    min-width: 0;
}

.event-name {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--white);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.event-meta {
    font-size: 0.6rem;
    color: var(--gray-400);
}

.event-join {
    padding: 6px 14px;
    background: var(--gradient-primary);
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--black);
    box-shadow: 0 2px 8px rgba(249, 115, 22, 0.3);
}

/* Minimalist Bottom Nav Bar */
.nav-bar {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 12px 8px;
    background: rgba(20, 20, 20, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 50;
}

.nav-item {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-500);
    transition: var(--transition-fast);
}

.nav-item svg {
    width: 22px;
    height: 22px;
}

.nav-item.active {
    color: var(--gold-500);
}

.nav-item.nav-plus {
    width: 44px;
    height: 44px;
    background: var(--gradient-primary);
    border-radius: 50%;
    color: var(--black);
    margin-top: -24px;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.5);
}

.nav-item.nav-plus svg {
    width: 28px;
    height: 28px;
}

.phone-glow {
    position: absolute;
    width: 400px;
}

.tab-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 0.6rem;
    color: var(--gray-400);
    gap: 4px;
}

.tab-item.active {
    color: var(--gold-500);
}

.plus-btn {
    width: 44px;
    height: 44px;
    background: var(--gradient-primary);
    border-radius: 16px;
    color: var(--black);
    font-size: 1.5rem;
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -20px;
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.4);
}

.phone-glow {
    position: absolute;
    width: 400px;
    /* ... rest of glow ... */
    height: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--gold-600) 0%, transparent 60%);
    filter: blur(60px);
    opacity: 0.5;
    z-index: 1;
    animation: glow-pulse 4s infinite ease-in-out;
}

@keyframes glow-pulse {

    0%,
    100% {
        opacity: 0.4;
        transform: scale(1);
    }

    50% {
        opacity: 0.6;
        transform: scale(1.1);
    }
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ═══════════════════════════════════════════════════════════════════════════
   Statements Section
   ═══════════════════════════════════════════════════════════════════════════ */

.statements {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-lg);
    padding: var(--space-3xl) var(--space-lg);
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.statement-card {
    padding: var(--space-xl);
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    text-align: center;
    transition: var(--transition-medium);
}

.statement-card:hover {
    transform: translateY(-8px);
    background: var(--gradient-card);
    border-color: rgba(249, 115, 22, 0.3);
    box-shadow: 0 20px 60px rgba(249, 115, 22, 0.15);
}

.statement-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: var(--space-md);
}

.statement-card h2 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: var(--space-sm);
    background: var(--gradient-text);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.statement-card p {
    color: var(--gray-400);
    font-size: 1rem;
    line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════════════════════
   Animated Scroll Marquee — "Meet me at OurSpot"
   ═══════════════════════════════════════════════════════════════════════════ */

.marquee-section {
    padding: var(--space-2xl) 0;
    overflow: hidden;
    position: relative;
    z-index: 1;
    background: linear-gradient(90deg, var(--black) 0%, rgba(249, 115, 22, 0.05) 50%, var(--black) 100%);
}

.marquee-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.marquee-wrapper::before,
.marquee-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
    pointer-events: none;
}

.marquee-wrapper::before {
    left: 0;
    background: linear-gradient(90deg, var(--black) 0%, transparent 100%);
}

.marquee-wrapper::after {
    right: 0;
    background: linear-gradient(90deg, transparent 0%, var(--black) 100%);
}

.marquee-track {
    display: flex;
    gap: var(--space-xl);
    animation: marquee-scroll 25s linear infinite;
    width: max-content;
}

@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.marquee-text {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 800;
    color: var(--white);
    white-space: nowrap;
    transition: var(--transition-fast);
    cursor: default;
}

.marquee-text:hover {
    color: var(--white);
}

.marquee-text .brand {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 900;
}

/* ═══════════════════════════════════════════════════════════════════════════
   Big Statement Section
   ═══════════════════════════════════════════════════════════════════════════ */

.big-statement {
    padding: var(--space-3xl) var(--space-lg);
    text-align: center;
    position: relative;
    z-index: 1;
}

.big-text {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.2;
    max-width: 900px;
    margin: 0 auto;
}

.big-text .highlight {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.big-text .smaller {
    display: block;
    margin-top: var(--space-sm);
    font-size: 0.7em;
    color: var(--gray-400);
    font-weight: 600;
}

/* ═══════════════════════════════════════════════════════════════════════════
   Social Proof Section
   ═══════════════════════════════════════════════════════════════════════════ */

.proof {
    padding: var(--space-2xl) var(--space-lg);
    position: relative;
    z-index: 1;
}

.proof-stats {
    display: flex;
    justify-content: center;
    gap: var(--space-2xl);
    flex-wrap: wrap;
    max-width: 800px;
    margin: 0 auto;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1;
}

.stat-label {
    display: block;
    margin-top: var(--space-xs);
    color: var(--gray-400);
    font-size: 0.9rem;
    font-weight: 500;
}

/* ═══════════════════════════════════════════════════════════════════════════
   Final CTA Section
   ═══════════════════════════════════════════════════════════════════════════ */

.final-cta {
    padding: var(--space-3xl) var(--space-lg);
    text-align: center;
    position: relative;
    z-index: 1;
}

.final-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(249, 115, 22, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: var(--space-md);
}

.cta-subtitle {
    font-size: 1.25rem;
    color: var(--gray-400);
    margin-bottom: var(--space-xl);
}

.cta-note {
    margin-top: var(--space-md);
    font-size: 0.875rem;
    color: var(--gray-600);
}

/* ═══════════════════════════════════════════════════════════════════════════
   Footer
   ═══════════════════════════════════════════════════════════════════════════ */

.footer {
    padding: var(--space-xl) var(--space-lg);
    border-top: 1px solid var(--glass-border);
    position: relative;
    z-index: 1;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
    text-align: center;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.25rem;
}

.footer-links {
    display: flex;
    gap: var(--space-lg);
}

.footer-links a {
    color: var(--gray-400);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

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

.footer-copy {
    color: var(--gray-600);
    font-size: 0.8rem;
}

/* ═══════════════════════════════════════════════════════════════════════════
   Responsive Design
   ═══════════════════════════════════════════════════════════════════════════ */

@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 120px;
    }

    .hero-content {
        max-width: 100%;
    }

    .phone-mockup {
        margin-top: var(--space-xl);
    }
}

@media (max-width: 768px) {
    .nav {
        padding: var(--space-sm);
    }

    .hero {
        padding: 100px var(--space-sm) var(--space-xl);
    }

    .phone-frame {
        width: 240px;
        height: 500px;
    }

    .statements {
        padding: var(--space-2xl) var(--space-sm);
    }

    .proof-stats {
        gap: var(--space-xl);
    }

    .stat-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

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

    .phone-frame {
        width: 280px;
        /* Widened from 200px to give more space */
        height: 580px;
        /* Proportional height increase */
        border-radius: 40px;
        padding: 10px;
        margin: 0 auto;
    }

    .phone-screen {
        border-radius: 32px;
    }

    .plan-card {
        padding: var(--space-xs);
    }

    .plan-emoji {
        font-size: 1.5rem;
    }

    .plan-title {
        font-size: 0.8rem;
    }

    .plan-meta {
        font-size: 0.65rem;
    }

    /* Mobile adjustments for map elements */
    .pin-attendees img {
        width: 24px;
        height: 24px;
        border-width: 1.5px;
        margin-left: -8px;
    }

    .pin-label {
        font-size: 0.5rem;
        padding: 2px 6px;
        border-radius: 8px;
    }

    .event-card-preview {
        bottom: 60px;
        left: 10px;
        right: 10px;
        padding: 6px 8px;
        border-radius: 12px;
    }

    .event-attendees img {
        width: 24px;
        height: 24px;
        margin-left: -8px;
    }

    .event-name {
        font-size: 0.65rem;
    }

    .event-join {
        padding: 4px 10px;
        font-size: 0.6rem;
    }

    .nav-bar {
        bottom: 12px;
        left: 12px;
        right: 12px;
        padding: 8px 4px;
    }

    .nav-item svg {
        width: 18px;
        height: 18px;
    }

    .nav-item.nav-plus {
        width: 36px;
        height: 36px;
        margin-top: -18px;
    }

    .nav-item.nav-plus svg {
        width: 20px;
        height: 20px;
    }
}

/* Smooth scrolling for the whole page */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}