/* ListAll Website - Stunning Modern Redesign */
/* Colors inspired by app icon: Cyan, Blue, Magenta, Emerald Green */

:root {
    /* Icon-inspired gradient colors */
    --cyan: #00D9FF;
    --cyan-bright: #00F0FF;
    --blue: #0066FF;
    --blue-deep: #0044CC;
    --magenta: #FF00CC;
    --magenta-bright: #FF33DD;
    --purple: #AA00FF;
    --emerald: #00FF88;
    --emerald-bright: #00FFAA;
    
    /* Neutral colors */
    --bg-dark: #0A0A0F;
    --bg-darker: #050508;
    --bg-card: rgba(18, 18, 28, 0.6);
    --text-primary: #FFFFFF;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --text-tertiary: rgba(255, 255, 255, 0.5);
    --border-color: rgba(255, 255, 255, 0.1);
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--cyan) 0%, var(--blue) 50%, var(--magenta) 100%);
    --gradient-secondary: linear-gradient(135deg, var(--blue) 0%, var(--purple) 50%, var(--magenta) 100%);
    --gradient-accent: linear-gradient(135deg, var(--emerald) 0%, var(--cyan) 50%, var(--blue) 100%);
    --gradient-hero: linear-gradient(135deg, var(--cyan) 0%, var(--blue) 30%, var(--purple) 60%, var(--magenta) 80%, var(--emerald) 100%);
    
    /* Shadows with color */
    --shadow-cyan: 0 8px 32px rgba(0, 217, 255, 0.3);
    --shadow-blue: 0 8px 32px rgba(0, 102, 255, 0.3);
    --shadow-magenta: 0 8px 32px rgba(255, 0, 204, 0.3);
    --shadow-emerald: 0 8px 32px rgba(0, 255, 136, 0.3);
    --shadow-glow: 0 0 40px rgba(0, 217, 255, 0.5);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'SF Pro Display', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-dark);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Animated background gradient */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(0, 217, 255, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255, 0, 204, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 40% 20%, rgba(0, 255, 136, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
    animation: gradientShift 20s ease infinite;
}

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

/* Links */
a {
    color: var(--cyan);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

a:hover {
    color: var(--emerald);
}

/* Navigation - Glassmorphism */
nav {
    background: rgba(10, 10, 15, 0.7);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
    transition: background 0.3s ease, box-shadow 0.3s ease;
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
}

nav.scrolled {
    background: rgba(10, 10, 15, 0.95);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.25rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: nowrap;
}

.logo {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.875rem;
    letter-spacing: -0.5px;
    transition: all 0.3s ease;
    flex-shrink: 0;
    white-space: nowrap;
    position: relative;
}

.logo:hover {
    opacity: 1;
}

.logo-text {
    display: inline-block;
    position: relative;
    color: var(--text-primary);
    transition: filter 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.logo-text::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #00D9FF 0%, #0066FF 25%, #AA00FF 50%, #FF00CC 75%, #00D9FF 100%);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0;
    transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), filter 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    animation: none;
    pointer-events: none;
}

.logo:hover .logo-text::before {
    opacity: 1;
    animation: logoGradientShift 3s ease infinite;
    filter: drop-shadow(0 0 8px rgba(0, 217, 255, 0.5));
}

.logo:hover .logo-text {
    filter: drop-shadow(0 0 8px rgba(0, 217, 255, 0.3));
}

.logo img {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    position: relative;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 
        0 4px 12px rgba(0, 217, 255, 0.25),
        0 0 20px rgba(170, 0, 255, 0.15);
    z-index: 1;
}

.logo::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.6) 0%, rgba(0, 102, 255, 0.6) 50%, rgba(170, 0, 255, 0.6) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
    filter: blur(8px);
}

.logo:hover::before {
    opacity: 0.6;
}

.logo:hover img {
    box-shadow: 
        0 8px 24px rgba(0, 217, 255, 0.4),
        0 0 32px rgba(170, 0, 255, 0.3),
        0 0 48px rgba(255, 0, 204, 0.2);
    transform: translateY(-1px);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    align-items: center;
    margin: 0;
    padding: 0;
    flex: 1;
    justify-content: center;
    flex-wrap: nowrap;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

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

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

.back-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.back-link:hover {
    color: var(--cyan);
    transform: translateX(-4px);
}

.cta-button {
    background: var(--gradient-primary);
    color: white;
    padding: 0.875rem 1.75rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    box-shadow: var(--shadow-cyan);
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
    white-space: nowrap;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-accent);
    transition: left 0.5s ease;
    z-index: -1;
}

.cta-button:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: var(--shadow-glow);
}

.cta-button:hover::before {
    left: 0;
}

/* Hero Section - Sophisticated Design with Enhanced Animations */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 2rem;
    text-align: left;
    overflow-x: hidden;
    overflow-y: visible;
    background: var(--bg-dark);
}

/* Animated Particles */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--cyan);
    border-radius: 50%;
    opacity: 0.6;
    box-shadow: 0 0 10px var(--cyan), 0 0 20px var(--cyan);
    animation: floatParticle 15s infinite ease-in-out;
}

.particle:nth-child(1) {
    left: 10%;
    animation-delay: 0s;
    animation-duration: 12s;
}

.particle:nth-child(2) {
    left: 20%;
    animation-delay: 2s;
    animation-duration: 18s;
}

.particle:nth-child(3) {
    left: 30%;
    animation-delay: 4s;
    animation-duration: 15s;
}

.particle:nth-child(4) {
    left: 40%;
    animation-delay: 1s;
    animation-duration: 20s;
}

.particle:nth-child(5) {
    left: 50%;
    animation-delay: 3s;
    animation-duration: 14s;
}

.particle:nth-child(6) {
    left: 60%;
    animation-delay: 5s;
    animation-duration: 16s;
}

.particle:nth-child(7) {
    left: 70%;
    animation-delay: 2.5s;
    animation-duration: 13s;
}

.particle:nth-child(8) {
    left: 80%;
    animation-delay: 4.5s;
    animation-duration: 17s;
}

.particle:nth-child(9) {
    left: 15%;
    animation-delay: 1.5s;
    animation-duration: 19s;
}

.particle:nth-child(10) {
    left: 45%;
    animation-delay: 3.5s;
    animation-duration: 11s;
}

.particle:nth-child(11) {
    left: 75%;
    animation-delay: 0.5s;
    animation-duration: 21s;
}

.particle:nth-child(12) {
    left: 90%;
    animation-delay: 6s;
    animation-duration: 22s;
}

@keyframes floatParticle {
    0% {
        transform: translateY(100vh) translateX(0) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
        transform: translateY(90vh) translateX(20px) scale(1);
    }
    50% {
        transform: translateY(50vh) translateX(-30px) scale(1.2);
        opacity: 0.8;
    }
    90% {
        opacity: 0.6;
        transform: translateY(10vh) translateX(15px) scale(1);
    }
    100% {
        transform: translateY(-10vh) translateX(0) scale(0);
        opacity: 0;
    }
}

/* Animated Gradient Orbs */
.hero-gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: orbFloat 20s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--cyan) 0%, transparent 70%);
    top: 10%;
    left: 10%;
    animation-duration: 25s;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--magenta) 0%, transparent 70%);
    bottom: 20%;
    right: 15%;
    animation-duration: 30s;
    animation-delay: -5s;
}

.orb-3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, var(--emerald) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-duration: 35s;
    animation-delay: -10s;
}

@keyframes orbFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.4;
    }
    25% {
        transform: translate(50px, -50px) scale(1.1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-30px, 30px) scale(0.9);
        opacity: 0.3;
    }
    75% {
        transform: translate(40px, 20px) scale(1.05);
        opacity: 0.45;
    }
}

.hero-background-text {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 0;
    opacity: 0.06;
    overflow: hidden;
}

.repeating-text-wrapper {
    display: flex;
    white-space: nowrap;
    animation: scrollText 30s linear infinite;
    will-change: transform;
}

.repeating-text {
    font-size: clamp(8rem, 25vw, 20rem);
    font-weight: 900;
    line-height: 0.8;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradientText 8s ease infinite;
    display: inline-block;
    margin: 0;
    padding: 0 2rem;
    flex-shrink: 0;
}

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

.hero-content {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    padding: 8rem 0;
    animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: visible;
}

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

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(0, 217, 255, 0.1);
    border: 1px solid rgba(0, 217, 255, 0.3);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--cyan);
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.2s backwards;
}

.hero-title {
    font-size: clamp(3.5rem, 12vw, 10rem);
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: -0.04em;
    margin-bottom: 2.5rem;
    color: var(--text-primary);
    display: flex;
    flex-direction: column;
    gap: 0;
    overflow: visible;
    width: 100%;
}

.title-line {
    display: block;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradientText 8s ease infinite;
}

.title-line.highlight {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@keyframes gradientText {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes logoGradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-description {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    margin-bottom: 3rem;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 600px;
    font-weight: 400;
    animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.4s backwards;
}

.hero-buttons {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.hero-stats {
    display: flex;
    gap: 4rem;
    padding-top: 3rem;
    border-top: 1px solid var(--border-color);
    animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.7s backwards;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.stat-number {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-tertiary);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 600;
    animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.8s backwards;
    z-index: 2;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

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

@keyframes scrollLine {
    0%, 100% { opacity: 0.3; transform: translateY(0); }
    50% { opacity: 1; transform: translateY(10px); }
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    padding: 1.5rem 3rem;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.125rem;
    box-shadow: var(--shadow-cyan);
    border: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.5s backwards;
}

.btn-primary svg {
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-accent);
    transition: left 0.5s ease;
    z-index: -1;
}

.btn-primary:hover::before {
    left: 0;
}

.btn-primary:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: var(--shadow-glow);
}

.btn-primary:hover svg {
    transform: translateX(4px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    color: var(--text-primary);
    padding: 1.5rem 3rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.125rem;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: inline-block;
    animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.6s backwards;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--cyan);
    transform: translateY(-2px);
    box-shadow: var(--shadow-cyan);
}

/* Section Styles */
section {
    padding: 8rem 2rem;
    position: relative;
}

section:first-of-type {
    padding-top: 10rem;
}

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

.section-title {
    text-align: center;
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.section-subtitle {
    text-align: center;
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-secondary);
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

/* Features Section - Creative Magazine-Style Layout */
.features {
    background: var(--bg-darker);
    position: relative;
    overflow: hidden;
}

.features-layout {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: minmax(280px, auto);
    gap: 1.5rem;
    margin-top: 4rem;
}

.feature-item {
    background: rgba(18, 18, 28, 0.5);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 24px;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    opacity: 0;
}

.feature-item.animate-in {
    opacity: 1;
}

/* Large Feature Items - Span 2 columns */
.feature-large {
    grid-column: span 6;
    padding: 4rem;
    min-height: 400px;
}

/* Medium Feature Items - Span 3 columns */
.feature-medium {
    grid-column: span 3;
    padding: 3rem;
    min-height: 320px;
}

/* Small Feature Items - Span 2 columns */
.feature-small {
    grid-column: span 2;
    padding: 2.5rem;
    min-height: 240px;
}

/* Reverse layout for alternating large items */
.feature-reverse {
    flex-direction: column-reverse;
}

.feature-number {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 6rem;
    font-weight: 900;
    line-height: 1;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.15;
    z-index: 0;
    transition: opacity 0.4s ease;
}

.feature-item:hover .feature-number {
    opacity: 0.25;
}

.feature-content {
    position: relative;
    z-index: 1;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    filter: drop-shadow(0 4px 16px rgba(0, 217, 255, 0.4));
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.feature-icon-large {
    font-size: 5rem;
    margin-bottom: 2rem;
    display: inline-block;
    filter: drop-shadow(0 6px 24px rgba(0, 217, 255, 0.5));
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.feature-item:hover .feature-icon,
.feature-item:hover .feature-icon-large {
    transform: scale(1.1) translateY(-4px);
    filter: drop-shadow(0 8px 32px rgba(0, 217, 255, 0.7));
}

.feature-item h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.2;
    transition: all 0.4s ease;
}

.feature-large h3 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.feature-item:hover h3 {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-item p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1.05rem;
    transition: color 0.4s ease;
}

.feature-large p {
    font-size: 1.15rem;
    line-height: 1.9;
}

.feature-item:hover p {
    color: var(--text-primary);
}

.feature-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.feature-item:hover .feature-accent {
    transform: scaleX(1);
}

.feature-item:hover {
    transform: translateY(-8px);
    border-color: var(--cyan);
    box-shadow: 
        0 20px 60px rgba(0, 217, 255, 0.2),
        0 0 0 1px rgba(0, 217, 255, 0.1);
    background: rgba(18, 18, 28, 0.7);
}



/* Smooth fade-in animation for feature items */
.feature-item {
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) backwards;
    animation-play-state: paused;
}

.feature-item.animate-in {
    animation-play-state: running;
}

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

/* Platforms Section - Bold Redesign */
.platforms {
    background: var(--bg-darker);
    position: relative;
    overflow: hidden;
}

.platforms-header {
    text-align: center;
    margin-bottom: 6rem;
}

.platforms-showcase {
    display: flex;
    flex-direction: column;
    gap: 8rem;
    margin-top: 4rem;
}

.platform-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    position: relative;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.platform-item.animate-in {
    opacity: 1;
}

.platform-item:nth-child(even) {
    direction: rtl;
}

.platform-item:nth-child(even) > * {
    direction: ltr;
}

.platform-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.device-frame {
    position: relative;
    background: linear-gradient(145deg, #1a1a1a, #0a0a0a);
    border-radius: 24px;
    padding: 12px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.device-iphone {
    width: 200px;
    height: 400px;
    border-radius: 36px;
    padding: 16px;
}

.device-watch {
    width: 180px;
    height: 220px;
    border-radius: 48px;
    padding: 20px;
}

.device-ipad {
    width: 300px;
    height: 400px;
    border-radius: 20px;
    padding: 14px;
}

.device-screen {
    width: 100%;
    height: 100%;
    background: var(--bg-dark);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.device-content {
    font-size: 5rem;
    filter: drop-shadow(0 8px 24px rgba(0, 217, 255, 0.4));
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.platform-item:hover .device-frame {
    transform: translateY(-20px) scale(1.05);
    box-shadow: 
        0 30px 80px rgba(0, 217, 255, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.platform-item:hover .device-content {
    transform: scale(1.2) rotate(5deg);
    filter: drop-shadow(0 12px 40px rgba(0, 217, 255, 0.7));
}

.platform-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.platform-number {
    font-size: 8rem;
    font-weight: 900;
    line-height: 1;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.2;
    position: absolute;
    top: -2rem;
    left: -1rem;
    z-index: 0;
    transition: opacity 0.4s ease;
}

.platform-item:hover .platform-number {
    opacity: 0.3;
}

.platform-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--text-primary);
    margin: 0;
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
}

.platform-item:hover .platform-title {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.platform-description {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text-secondary);
    max-width: 500px;
    position: relative;
    z-index: 1;
    transition: color 0.4s ease;
}

.platform-item:hover .platform-description {
    color: var(--text-primary);
}

.platform-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--emerald);
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
    width: fit-content;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--emerald);
    border-radius: 50%;
    box-shadow: 0 0 12px rgba(0, 255, 136, 0.8);
    animation: pulseDot 2s ease-in-out infinite;
}

@keyframes pulseDot {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.2);
    }
}

.platform-item:hover .platform-badge {
    background: rgba(0, 255, 136, 0.2);
    border-color: var(--emerald);
    transform: translateX(8px);
    box-shadow: 0 4px 20px rgba(0, 255, 136, 0.3);
}

/* Privacy Section */
.privacy {
    background: var(--bg-darker);
    position: relative;
}

.privacy-content {
    max-width: 900px;
    margin: 0 auto;
}

.privacy-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.privacy-item {
    display: flex;
    gap: 1.25rem;
    padding: 1.5rem;
    background: rgba(18, 18, 28, 0.6);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 20px;
    border: 1px solid var(--border-color);
    border-left: 4px solid var(--emerald);
    transition: all 0.3s ease;
}

.privacy-item:hover {
    transform: translateX(8px);
    border-left-color: var(--cyan);
    box-shadow: var(--shadow-cyan);
}

.privacy-icon {
    font-size: 2rem;
    color: var(--emerald);
    flex-shrink: 0;
    filter: drop-shadow(0 2px 8px rgba(0, 255, 136, 0.4));
}

.privacy-item h4 {
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-weight: 700;
    font-size: 1.1rem;
}

.privacy-item p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Download Section - Gradient CTA */
.download {
    background: var(--gradient-hero);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.download::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.download .container {
    position: relative;
    z-index: 1;
}

.download h2 {
    color: white;
    margin-bottom: 1rem;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.download p {
    font-size: clamp(1rem, 2vw, 1.25rem);
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.app-store-badge {
    display: inline-block;
    margin: 1rem;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.3));
}

.app-store-badge:hover {
    transform: scale(1.1);
}

.app-store-badge img {
    height: 70px;
    transition: filter 0.3s ease;
}

.app-store-badge:hover img {
    filter: brightness(1.1);
}

/* Open Source Section - Bold Code-Themed Design */
.open-source {
    background: var(--bg-darker);
    position: relative;
    overflow: hidden;
    padding: 8rem 2rem;
}

.code-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.05;
    font-family: 'Monaco', 'Menlo', 'Courier New', monospace;
    font-size: 0.9rem;
    line-height: 1.8;
    padding: 2rem;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.code-line {
    color: var(--cyan);
    white-space: nowrap;
    animation: codeScroll 20s linear infinite;
    margin-bottom: 0.5rem;
}

.code-line[data-line="1"] { animation-delay: 0s; }
.code-line[data-line="2"] { animation-delay: 2s; }
.code-line[data-line="3"] { animation-delay: 4s; }
.code-line[data-line="4"] { animation-delay: 6s; }
.code-line[data-line="5"] { animation-delay: 8s; }
.code-line[data-line="6"] { animation-delay: 10s; }
.code-line[data-line="7"] { animation-delay: 12s; }

@keyframes codeScroll {
    0% {
        transform: translateX(100vw);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateX(-100%);
        opacity: 0;
    }
}

.open-source-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.open-source-header {
    position: relative;
}

.terminal-window {
    background: rgba(10, 10, 15, 0.9);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    font-family: 'Monaco', 'Menlo', 'Courier New', monospace;
}

.terminal-header {
    background: rgba(30, 30, 40, 0.8);
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.terminal-buttons {
    display: flex;
    gap: 0.5rem;
}

.terminal-btn {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
}

.terminal-btn-red {
    background: #ff5f56;
}

.terminal-btn-yellow {
    background: #ffbd2e;
}

.terminal-btn-green {
    background: #27c93f;
}

.terminal-title {
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 500;
}

.terminal-body {
    padding: 1.5rem;
    min-height: 200px;
    background: rgba(5, 5, 8, 0.8);
}

.terminal-line {
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    line-height: 1.6;
}

.terminal-prompt {
    color: var(--emerald);
    margin-right: 0.5rem;
    font-weight: 600;
}

.terminal-command {
    color: var(--cyan);
}

.terminal-output {
    color: var(--text-secondary);
    margin-left: 1.5rem;
}

.terminal-text {
    color: var(--text-secondary);
}

.terminal-cursor {
    color: var(--cyan);
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.open-source-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.open-source-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--text-primary);
    margin: 0;
    white-space: nowrap;
    display: inline-block;
}

.code-bracket {
    color: var(--cyan);
    font-family: 'Monaco', 'Menlo', 'Courier New', monospace;
}

.open-source-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-secondary);
    max-width: 500px;
}

.github-stats {
    display: flex;
    gap: 2rem;
    margin: 1rem 0;
}

.stat-box {
    flex: 1;
    padding: 1.5rem;
    background: rgba(18, 18, 28, 0.6);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    text-align: center;
    transition: all 0.4s ease;
}

.stat-box:hover {
    transform: translateY(-4px);
    border-color: var(--cyan);
    box-shadow: var(--shadow-cyan);
}

.stat-value {
    font-size: 2rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    font-family: 'Monaco', 'Menlo', 'Courier New', monospace;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
}

.open-source-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.github-link-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--gradient-primary);
    color: white;
    padding: 1.25rem 2.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: var(--shadow-cyan);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.github-link-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-accent);
    transition: left 0.5s ease;
    z-index: -1;
}

.github-link-primary:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: var(--shadow-glow);
}

.github-link-primary:hover::before {
    left: 0;
}

.github-link-primary svg {
    width: 20px;
    height: 20px;
}

.github-link-secondary {
    display: inline-flex;
    align-items: center;
    padding: 1.25rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.4s ease;
}

.github-link-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--cyan);
    transform: translateY(-2px);
    box-shadow: var(--shadow-cyan);
}

.open-source-footer {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.open-source-footer p {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.license-text {
    font-size: 0.9rem;
    color: var(--text-tertiary);
}

.license-text strong {
    color: var(--cyan);
    font-family: 'Monaco', 'Menlo', 'Courier New', monospace;
}

/* Footer */
footer {
    background: var(--bg-darker);
    color: white;
    padding: 4rem 2rem 2rem;
    border-top: 1px solid var(--border-color);
    position: relative;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    margin-bottom: 1.25rem;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
}

.footer-section p {
    color: var(--text-secondary);
    line-height: 1.7;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--cyan);
    transform: translateX(4px);
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    text-align: center;
    color: var(--text-tertiary);
    font-size: 0.9rem;
}

/* Content Pages (Privacy, Support) */
.content-card {
    background: rgba(18, 18, 28, 0.6);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 24px;
    padding: 4rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
    margin-top: 2rem;
}

h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

h2 {
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    margin-top: 3rem;
    margin-bottom: 1.25rem;
    color: var(--text-primary);
    font-weight: 700;
}

h3 {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-weight: 600;
}

p {
    margin-bottom: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

ul, ol {
    margin-bottom: 1.5rem;
    margin-left: 2rem;
}

li {
    margin-bottom: 0.75rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

strong {
    color: var(--text-primary);
    font-weight: 600;
}

.last-updated {
    color: var(--text-tertiary);
    font-size: 0.95rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.highlight-box {
    background: rgba(0, 255, 136, 0.1);
    backdrop-filter: blur(10px);
    border-left: 4px solid var(--emerald);
    padding: 2rem;
    margin: 2.5rem 0;
    border-radius: 16px;
    border: 1px solid rgba(0, 255, 136, 0.2);
    box-shadow: var(--shadow-emerald);
}

.highlight-box p:last-child {
    margin-bottom: 0;
}

/* Support Page Specific */
.subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: clamp(1rem, 2vw, 1.2rem);
    margin-bottom: 3rem;
}

.faq-section {
    background: rgba(18, 18, 28, 0.6);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 24px;
    padding: 3rem;
    margin-bottom: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
}

.faq-category {
    margin-bottom: 3rem;
}

.faq-category:last-child {
    margin-bottom: 0;
}

.category-title {
    font-size: clamp(1.3rem, 3vw, 1.75rem);
    margin-bottom: 2rem;
    color: var(--text-primary);
    padding-bottom: 1rem;
    border-bottom: 2px solid;
    border-image: var(--gradient-primary) 1;
    font-weight: 700;
}

.faq-item {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--cyan);
    transform: translateX(4px);
}

.faq-question {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.faq-answer {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-left: 0;
}

.faq-answer ul {
    margin-top: 0.75rem;
}

.faq-answer li {
    margin-bottom: 0.5rem;
}

.contact-section {
    background: rgba(18, 18, 28, 0.6);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 24px;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
}

.contact-title {
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-weight: 700;
}

.contact-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2.5rem;
}

.contact-card {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-card:hover {
    transform: translateY(-8px) scale(1.05);
    border-color: var(--cyan);
    box-shadow: var(--shadow-cyan);
    background: rgba(255, 255, 255, 0.08);
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 4px 12px rgba(0, 217, 255, 0.4));
}

.contact-card h3 {
    margin-bottom: 0.75rem;
    color: var(--text-primary);
    font-weight: 600;
}

.contact-card p {
    color: var(--text-secondary);
    margin-bottom: 0;
}

.contact-card a {
    color: var(--cyan);
    transition: color 0.3s ease;
}

.contact-card a:hover {
    color: var(--emerald);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-links {
        gap: 1.5rem;
    }
    
    .nav-links a {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 1rem 1.5rem;
        gap: 1rem;
    }
    
    .logo {
        font-size: 1.5rem;
    }
    
    .logo img {
        width: 36px;
        height: 36px;
    }
    
    .nav-links {
        display: none;
    }
    
    .cta-button {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .hero {
        min-height: 100vh;
        padding: 0 1.5rem;
    }
    
    .hero-content {
        padding: 6rem 0 4rem;
        text-align: center;
    }
    
    .hero-title {
        text-align: center;
    }
    
    .hero-description {
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 2rem;
    }
    
    
    .features-layout {
        grid-template-columns: 1fr;
    }
    
    .feature-large,
    .feature-medium,
    .feature-small {
        grid-column: span 1;
    }
    
    .platforms-showcase {
        gap: 4rem;
    }
    
    .platform-item {
        grid-template-columns: 1fr;
        gap: 3rem;
        direction: ltr !important;
    }
    
    .platform-item:nth-child(even) {
        direction: ltr !important;
    }
    
    .platform-visual {
        min-height: 300px;
    }
    
    .device-iphone {
        width: 150px;
        height: 300px;
    }
    
    .device-watch {
        width: 140px;
        height: 170px;
    }
    
    .device-ipad {
        width: 220px;
        height: 300px;
    }
    
    .platform-number {
        font-size: 6rem;
        top: -1rem;
    }
    
    .privacy-features {
        grid-template-columns: 1fr;
    }
    
    .open-source-content {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .github-stats {
        flex-direction: column;
    }
    
    .open-source-actions {
        flex-direction: column;
    }
    
    .github-link-primary,
    .github-link-secondary {
        width: 100%;
        justify-content: center;
    }
    
    section {
        padding: 4rem 1.5rem;
    }
    
    .content-card {
        padding: 2rem;
    }
    
    .faq-section {
        padding: 2rem;
    }
    
    .contact-options {
        grid-template-columns: 1fr;
    }
    
    .repeating-text {
        font-size: clamp(6rem, 20vw, 12rem);
    }
}

/* Smooth scroll reveal animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.privacy-item {
    animation: fadeIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) backwards;
}
