@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');

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

:root {
    --bg-primary: #072723;
    --bg-secondary: #0a3530;
    --bg-panel: #1a202c;
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.92);
    --text-muted: rgba(255, 255, 255, 0.6);
    --border-color: rgba(255, 255, 255, 0.16);
    --accent-green: #dbfbf6;
    --accent-blue: #92efd5;
    --accent-purple: #22d3ee;
    --chakra-colors-gray-800: #1A202C;
}

body {
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", sans-serif;
    background: var(--bg-primary);
    color: var(--text-secondary);
    line-height: 1.5;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizelegibility;
    cursor: none;
    margin: 0;
    padding: 0;
    min-height: 100vh;
}

/* Custom Cursor */
.cursor {
    width: 10px;
    height: 10px;
    background: var(--accent-green);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.1s ease;
    mix-blend-mode: screen;
}

.cursor-follower {
    width: 30px;
    height: 30px;
    border: 2px solid rgba(146, 239, 213, 0.3);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    transition: transform 0.2s ease;
}

/* Particles Background */
.particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    opacity: 0.3;
    will-change: transform;
}

.particle {
    backface-visibility: hidden;
    transform: translateZ(0);
}

/* Navigation */
.nav-container {
    position: fixed;
    top: 20px;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    justify-content: center;
    animation: slideDown 0.8s ease;
    pointer-events: none;
}

.nav-container > * {
    pointer-events: auto;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.nav-inner {
    width: 100%;
    max-width: 1200px;
    margin: 0 20px;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 40px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 64px;
    padding: 0 24px;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-logo-icon {
    width: 32px;
    height: 28px;
}

.nav-logo-icon path {
    fill: #072723;
}

.nav-logo-text {
    font-size: 18px;
    font-weight: 600;
    color: #072723;
    letter-spacing: -0.5px;
}


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

.nav-link {
    color: #072723;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s;
    cursor: pointer;
    position: relative;
    opacity: 0.8;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-green);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: #072723;
    opacity: 1;
}

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

.launch-app-btn {
    background: #92efd5;
    color: #072723;
    padding: 10px 24px;
    border-radius: 24px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.launch-app-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.5s;
}

.launch-app-btn:hover::before {
    left: 100%;
}

.launch-app-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(146, 239, 213, 0.4);
    background: #7ae5c7;
}

/* Hero Section */
.hero-section {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 100vh;
    z-index: 1;
    overflow: hidden;
    background: var(--bg-primary);
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
    filter: brightness(0.4) contrast(1.2);
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, 
        rgba(7, 39, 35, 0.3) 0%, 
        rgba(7, 39, 35, 0.7) 50%, 
        rgba(7, 39, 35, 0.9) 100%);
    pointer-events: none;
}

.main-hero {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 40px 60px;
}

.hero-container {
    max-width: 1400px;
    width: 100%;
}

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

.blob-animation {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 350px;
    height: 350px;
    opacity: 0.5;
    z-index: -1;
    animation: float 6s ease-in-out infinite;
    pointer-events: none;
    -webkit-mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 1) 55%, rgba(0, 0, 0, 0) 85%);
    mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 1) 55%, rgba(0, 0, 0, 0) 85%);
    clip-path: circle(50% at 50% 50%);
}

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

.hero-title {
    font-size: 72px;
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--text-primary);
    letter-spacing: -2px;
    animation: fadeInUp 1s ease;
}

.gradient-text {
    background: linear-gradient(135deg, var(--accent-green) 0%, var(--accent-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 400;
}

.hero-subtitle {
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 48px;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 16px;
    animation: fadeInUp 1s ease 0.4s both;
}

.btn-primary,
.btn-secondary {
    padding: 16px 32px;
    border-radius: 24px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
}

.btn-primary {
    background: var(--accent-green);
    color: var(--bg-primary);
    overflow: hidden;
    border: 2px solid transparent;
    font-weight: 700;
}

.btn-sparkle {
    animation: sparkle 2s ease infinite;
}

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

.pulse-animation {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(34, 211, 238, 0.4); }
    50% { box-shadow: 0 0 0 20px rgba(34, 211, 238, 0); }
}

.bookmarklet {
    cursor: move !important;
    position: relative;
}

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

@keyframes shimmer {
    100% { left: 100%; }
}

.btn-primary:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 20px 40px rgba(146, 239, 213, 0.3);
    background: var(--accent-blue);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid rgba(255, 255, 255, 0.3);
    font-weight: 600;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent-green);
    transform: translateY(-2px);
    color: var(--accent-green);
}

.bookmarklet-hint {
    color: var(--text-muted);
    font-size: 14px;
    margin-top: 12px;
    opacity: 0.8;
    animation: fadeIn 1s ease 0.6s both;
}

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

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

.animate-in {
    animation: fadeInUp 1s ease;
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    animation: slideInLeft 0.8s ease both;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide-in-right {
    animation: slideInRight 0.8s ease both;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.zoom-in {
    animation: zoomIn 0.8s ease both;
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease both;
}

.delayed { animation-delay: 0.2s; }
.delayed-1 { animation-delay: 0.3s; }
.delayed-2 { animation-delay: 0.4s; }
.delayed-3 { animation-delay: 0.5s; }

.floating {
    animation: floating 3s ease-in-out infinite;
}

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

/* Features Banner */
.features-banner {
    position: relative;
    z-index: 2;
    background: linear-gradient(180deg, transparent 0%, var(--bg-primary) 10%);
    padding: 80px 40px 120px;
    min-height: auto;
}

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

.banner-title {
    font-size: 42px;
    font-weight: 300;
    text-align: center;
    margin-bottom: 80px;
    color: var(--text-secondary);
}

.animated-text {
    display: inline-flex;
    gap: 8px;
    margin: 0 12px;
}

.text-flip {
    position: relative;
    display: inline-block;
    animation: flip 4s ease-in-out infinite;
    transform-style: preserve-3d;
    perspective: 800px;
}

.text-flip:nth-child(2) { animation-delay: 0.1s; }
.text-flip:nth-child(3) { animation-delay: 0.2s; }
.text-flip:nth-child(4) { animation-delay: 0.3s; }
.text-flip:nth-child(5) { animation-delay: 0.4s; }
.text-flip:nth-child(6) { animation-delay: 0.5s; }
.text-flip:nth-child(7) { animation-delay: 0.6s; }

@keyframes flip {
    0%, 80%, 100% { transform: rotateY(0); }
    40% { transform: rotateY(180deg); }
}

.text-item,
.text-item-shadow {
    font-weight: 700;
    font-size: 48px;
    color: var(--accent-green);
    text-transform: uppercase;
    letter-spacing: 2px;
    -webkit-backface-visibility: visible;
    backface-visibility: visible;
    transform-style: preserve-3d;
}

.text-item-shadow {
    position: absolute;
    top: 2px;
    left: 2px;
    opacity: 0.3;
    color: var(--accent-purple);
    z-index: -1;
    filter: blur(2px);
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 60px;
    align-items: center;
}

.feature-column {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.feature-item {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.feature-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
}

.feature-content {
    flex: 1;
}

.feature-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.feature-description {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-muted);
}

.screenshot-container {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
}

.screenshot {
    width: 600px;
    height: auto;
    display: block;
}

.screenshot-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    right: -50%;
    bottom: -50%;
    background: radial-gradient(circle, rgba(34, 211, 238, 0.2) 0%, transparent 70%);
    animation: rotate 10s linear infinite;
}

@keyframes rotate {
    100% { transform: rotate(360deg); }
}

/* Installation Section */
.installation-section {
    position: relative;
    z-index: 2;
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 50%, var(--bg-primary) 100%);
    padding: 80px 40px;
    min-height: auto;
}

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

.section-title {
    font-size: 42px;
    font-weight: 300;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-primary);
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.step-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(146, 239, 213, 0.2);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-blue), var(--accent-green));
    transform: translateX(-100%);
    transition: transform 0.5s ease;
}

.step-card:hover::before {
    transform: translateX(0);
}

.step-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-green);
    background: rgba(219, 251, 246, 0.08);
    box-shadow: 0 30px 60px rgba(146, 239, 213, 0.15);
}

.step-number {
    width: 56px;
    height: 56px;
    background: var(--accent-green);
    color: var(--bg-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 24px;
    margin: 0 auto 20px;
    position: relative;
    box-shadow: 0 8px 24px rgba(146, 239, 213, 0.3);
}

.step-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.step-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.5;
}

kbd {
    background: rgba(255, 255, 255, 0.1);
    padding: 3px 7px;
    border-radius: 4px;
    font-family: 'Monaco', 'Courier New', monospace;
    font-size: 13px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Stats Section */
.stats-section {
    position: relative;
    z-index: 2;
    background: var(--bg-primary);
    padding: 100px 40px;
    min-height: auto;
    display: flex;
    align-items: center;
}

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

.stats-grid {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background: rgba(219, 251, 246, 0.02);
    border: 1px solid rgba(146, 239, 213, 0.15);
    border-radius: 32px;
    padding: 60px 80px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    gap: 60px;
}

.stat-item {
    text-align: center;
    position: relative;
}

.stat-label {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-value {
    font-size: 36px;
    font-weight: 700;
    color: var(--accent-green);
    display: inline-block;
    letter-spacing: -1px;
}

.stat-suffix {
    display: inline-block;
    font-size: 20px;
    color: var(--accent-green);
    margin-left: 4px;
}

.stat-divider {
    width: 1px;
    height: 60px;
    background: var(--border-color);
}

/* Community Section */
.community-section {
    position: relative;
    z-index: 2;
    padding: 120px 40px;
    text-align: center;
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

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

.community-title {
    font-size: 36px;
    font-weight: 300;
    margin-bottom: 16px;
    color: var(--text-secondary);
}

.community-subtitle {
    font-size: 56px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent-green), var(--accent-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    letter-spacing: -1px;
    text-transform: uppercase;
}

.glitch-effect {
    animation: glitch 2s ease-in-out infinite;
}

@keyframes glitch {
    0%, 100% { transform: translate(0); }
    20% { transform: translate(-1px, 1px); }
    40% { transform: translate(-1px, -1px); }
    60% { transform: translate(1px, 1px); }
    80% { transform: translate(1px, -1px); }
}

/* CTA Section */
.cta-section {
    position: relative;
    z-index: 2;
    padding: 100px 40px;
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    min-height: auto;
    display: flex;
    align-items: center;
}

.cta-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.cta-title {
    font-size: 42px;
    font-weight: 300;
    line-height: 1.3;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.highlight {
    background: linear-gradient(135deg, var(--accent-green), var(--accent-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    display: inline-block;
}

.gradient-animation {
    background-size: 200% 200%;
    animation: gradientShift 3s ease infinite;
}

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

.cta-subtitle {
    font-size: 20px;
    color: var(--text-muted);
    margin-bottom: 48px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.hover-lift {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hover-lift:hover {
    transform: translateY(-4px);
}

/* Trust Section */
.trust-section {
    position: relative;
    z-index: 2;
    padding: 120px 40px;
    background: var(--bg-secondary);
}

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

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 16px;
}

.trust-header h2 {
    font-size: 40px;
    font-weight: 300;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.trust-header p {
    color: var(--text-muted);
    max-width: 760px;
    line-height: 1.6;
}

.trust-header span {
    color: var(--accent-green);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.trust-card {
    border: 1px solid rgba(146, 239, 213, 0.2);
    border-radius: 20px;
    padding: 32px;
    background: rgba(7, 39, 35, 0.6);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
    min-height: 220px;
}

.trust-badge {
    display: inline-flex;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(146, 239, 213, 0.12);
    color: var(--accent-green);
    font-size: 12px;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}

.trust-card h3 {
    color: var(--text-primary);
    margin-bottom: 12px;
    font-weight: 600;
}

.trust-card p {
    color: var(--text-muted);
    line-height: 1.6;
}

/* Security Section */
.security-section {
    position: relative;
    z-index: 2;
    padding: 120px 40px;
    background: var(--bg-primary);
}

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

.security-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.security-card,
.contact-card {
    border: 1px solid rgba(146, 239, 213, 0.2);
    border-radius: 24px;
    padding: 32px;
    background: rgba(255, 255, 255, 0.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
}

.security-card h4,
.contact-card h4 {
    color: var(--text-primary);
    margin-bottom: 20px;
    font-size: 20px;
}

.security-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.security-card li {
    color: var(--text-muted);
    margin-bottom: 12px;
    position: relative;
    padding-left: 18px;
}

.security-card li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent-green);
}

.contact-card {
    background: rgba(146, 239, 213, 0.05);
}

.contact-item {
    margin-bottom: 16px;
}

.contact-item .label {
    display: block;
    font-size: 12px;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    margin-bottom: 4px;
}

.contact-item a {
    color: var(--text-primary);
    font-size: 18px;
    text-decoration: none;
}

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

.contact-note {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 16px;
}

/* FAQ Section */
.faq-section {
    position: relative;
    z-index: 2;
    padding: 120px 40px;
    background: var(--bg-secondary);
}

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

.faq-header h2 {
    font-size: 38px;
    font-weight: 300;
    color: var(--text-primary);
}

.faq-grid {
    margin-top: 48px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.faq-item {
    border: 1px solid rgba(146, 239, 213, 0.2);
    border-radius: 20px;
    padding: 28px;
    background: rgba(7, 39, 35, 0.7);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.faq-item h3 {
    color: var(--text-primary);
    margin-bottom: 10px;
    font-size: 20px;
}

.faq-item p {
    color: var(--text-muted);
    line-height: 1.6;
}

/* Footer */
.footer-section {
    position: relative;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--bg-primary);
}

.footer-logo {
    width: 240px;
    opacity: 0.15;
    position: absolute;
    filter: brightness(2);
}

.footer-blob {
    position: absolute;
    width: 600px;
    opacity: 0.3;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    -webkit-mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 1) 60%, rgba(0, 0, 0, 0) 90%);
    mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 1) 60%, rgba(0, 0, 0, 0) 90%);
    clip-path: circle(45% at 50% 50%);
}

.footer {
    position: relative;
    z-index: 2;
    padding: 60px 40px;
    border-top: 1px solid rgba(146, 239, 213, 0.1);
    background: var(--bg-primary);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.footer-text,
.footer-link {
    font-size: 14px;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-link:hover {
    color: var(--text-primary);
}

.footer-center-blob {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    opacity: 0.4;
    pointer-events: none;
    -webkit-mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 1) 60%, rgba(0, 0, 0, 0) 90%);
    mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 1) 60%, rgba(0, 0, 0, 0) 90%);
    clip-path: circle(50% at 50% 50%);
}

/* Performance optimizations */
* {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

img, video {
    transform: translateZ(0);
    will-change: transform;
}

.hero-video {
    transform: translateZ(0);
    backface-visibility: hidden;
}

/* Additional Hyperfoundation styles */
.screenshot-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 50px 100px -20px rgba(0, 0, 0, 0.5),
                0 30px 60px -30px rgba(146, 239, 213, 0.2);
    border: 1px solid rgba(146, 239, 213, 0.1);
}

.feature-item {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-item:hover .feature-icon {
    transform: translateY(-5px) rotate(5deg);
}

.feature-icon {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Smooth section transitions */
section, div[class*="-section"] {
    transition: background 0.3s ease;
}

/* Better text rendering */
h1, h2, h3, h4, h5, h6 {
    font-feature-settings: "kern" 1;
    text-rendering: optimizeLegibility;
}

/* Improved focus states */
a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--accent-green);
    outline-offset: 4px;
    border-radius: 4px;
}

/* Loading optimization */
img[loading="lazy"] {
    background: linear-gradient(135deg, 
        rgba(146, 239, 213, 0.1) 0%, 
        rgba(34, 211, 238, 0.1) 100%);
}

/* Responsive Navigation */
@media (max-width: 1200px) {
    .nav-inner {
        max-width: calc(100% - 40px);
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .nav-container {
        top: 10px;
    }
    .nav-inner {
        margin: 0 10px;
    }
    .hero-title { font-size: 48px; }
    .features-grid { grid-template-columns: 1fr; text-align: center; gap: 40px; }
    .feature-item { flex-direction: column; align-items: center; text-align: center; }
    .screenshot-container { max-width: 500px; margin: 40px auto; }
    .screenshot { width: 100%; }
    .steps-container { grid-template-columns: repeat(2, 1fr); }
    .community-subtitle { font-size: 42px; }
}

@media (max-width: 768px) {
    body { cursor: auto; }
    .cursor, .cursor-follower { display: none; }
    .nav-container { 
        top: 10px;
    }
    .nav-inner {
        margin: 0 10px;
        border-radius: 30px;
        max-width: calc(100% - 20px);
    }
    .nav-content {
        padding: 0 16px;
        height: 56px;
    }
    .nav-left {
        gap: 8px;
    }
    .nav-logo-text {
        font-size: 16px;
    }
    .nav-links { gap: 12px; }
    .nav-link:not(.launch-app-btn) { display: none; }
    .launch-app-btn {
        padding: 8px 20px;
        font-size: 14px;
    }
    .hero-title { font-size: 36px; letter-spacing: -1px; }
    .hero-subtitle { font-size: 16px; padding: 0 20px; }
    .hero-buttons { flex-direction: column; width: 100%; padding: 0 20px; }
    .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
    .steps-container { grid-template-columns: 1fr; }
    .stats-grid { 
        flex-direction: column; 
        gap: 32px; 
        padding: 40px 24px;
    }
    .stat-divider { display: none; }
    .footer-content { flex-direction: column; gap: 16px; text-align: center; }
    .animated-text { font-size: 32px; }
    .text-item, .text-item-shadow { font-size: 36px; }
    .banner-title { font-size: 28px; }
    .cta-title { font-size: 32px; }
    .community-subtitle { font-size: 36px; }
    .section-title { font-size: 32px; }
    .feature-column { gap: 32px; }
    .blob-animation { 
        width: 250px; 
        height: 250px;
        opacity: 0.4;
        -webkit-mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 1) 55%, rgba(0, 0, 0, 0) 85%);
        mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 1) 55%, rgba(0, 0, 0, 0) 85%);
        clip-path: circle(50% at 50% 50%);
    }
    .footer-blob {
        width: 400px;
        opacity: 0.25;
        -webkit-mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 1) 60%, rgba(0, 0, 0, 0) 90%);
        mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 1) 60%, rgba(0, 0, 0, 0) 90%);
        clip-path: circle(45% at 50% 50%);
    }
    .trust-grid,
    .security-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }
    .trust-section,
    .security-section,
    .faq-section {
        padding: 80px 20px;
    }
}