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

:root {
    --green-primary: #16a34a;
    --green-dark: #15803d;
    --green-light: #22c55e;
    --text-primary: #09090b;
    --text-secondary: #52525b;
    --text-muted: #a1a1aa;
    --border: #e4e4e7;
    --bg-primary: #ffffff;
    --bg-secondary: #f9fafb;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
    color: var(--text-primary);
    background: #0a0a0b;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Animated Background */
.bg-gradient {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a0a0b 0%, #1a1a1d 50%, #0f1419 100%);
    z-index: -2;
}

.bg-orbs {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: float 20s infinite ease-in-out;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, #16a34a 0%, transparent 70%);
    top: -10%;
    right: -10%;
    animation-delay: 0s;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #06b6d4 0%, transparent 70%);
    bottom: -10%;
    left: -10%;
    animation-delay: -7s;
}

.orb-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #8b5cf6 0%, transparent 70%);
    top: 50%;
    left: 50%;
    animation-delay: -14s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(100px, -100px) scale(1.1);
    }
    66% {
        transform: translate(-100px, 100px) scale(0.9);
    }
}

/* Cursor Tracker */
.cursor-glow {
    position: fixed;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(22, 163, 74, 0.12) 0%,
        rgba(22, 163, 74, 0.08) 20%,
        rgba(22, 163, 74, 0.04) 40%,
        transparent 70%
    );
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease;
    opacity: 0;
    mix-blend-mode: screen;
    filter: blur(40px);
}

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

/* Hide cursor glow on touch devices */
@media (hover: none) and (pointer: coarse) {
    .cursor-glow {
        display: none;
    }
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 20px 0;
    background: rgba(10, 10, 11, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo {
    height: 32px;
    width: auto;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: var(--green-light);
    letter-spacing: -0.5px;
}

.nav-stats {
    display: flex;
    gap: 24px;
}

.stat-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: rgba(22, 163, 74, 0.1);
    border: 1px solid rgba(22, 163, 74, 0.2);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.stat-number {
    font-size: 17px;
    font-weight: 700;
    color: var(--green-light);
    line-height: 1;
}

.stat-label {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1;
}

/* Hero Section */
.hero {
    padding: 0;
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 120px 48px 80px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-left {
    text-align: left;
}

.hero-right {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    font-size: 14px;
    color: #ffffff;
    margin-bottom: 32px;
    backdrop-filter: blur(10px);
    animation: fadeInUp 0.6s ease;
}

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

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.hero-title {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 64px;
    font-weight: 800;
    letter-spacing: -2.5px;
    margin-bottom: 24px;
    color: #ffffff;
    line-height: 1.1;
    animation: fadeInUp 0.6s ease 0.1s backwards;
    padding-right: 8px;
    overflow: visible;
}

.gradient-text {
    background: linear-gradient(135deg, #16a34a 0%, #22c55e 50%, #10b981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    padding-right: 8px;
}

.hero-subtitle {
    font-size: 20px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 48px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    letter-spacing: -0.01em;
    animation: fadeInUp 0.6s ease 0.2s backwards;
}

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

/* Buttons */
.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-bottom: 48px;
    animation: fadeInUp 0.6s ease 0.3s backwards;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    font-family: inherit;
    position: relative;
    overflow: hidden;
    min-width: 200px;
    letter-spacing: -0.01em;
}

.btn-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}

.btn-main {
    font-size: 15px;
    font-weight: 500;
}

.btn-subtitle {
    font-size: 13px;
    font-weight: 400;
    opacity: 0.8;
    letter-spacing: -0.005em;
}

.btn svg {
    flex-shrink: 0;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
    color: white;
    box-shadow: 0 4px 20px rgba(22, 163, 74, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(22, 163, 74, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-large {
    padding: 20px 40px;
    font-size: 18px;
}

.btn-single {
    justify-content: center;
}

.btn-single > span {
    font-size: 18px;
    font-weight: 600;
}

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

.btn span {
    position: relative;
    z-index: 1;
}

.btn svg {
    position: relative;
    z-index: 1;
}

/* Social Proof */
.social-proof {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    animation: fadeInUp 0.6s ease 0.4s backwards;
}

.avatars {
    display: flex;
    align-items: center;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(22, 163, 74, 0.3), rgba(34, 197, 94, 0.15));
    border: 2px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: -12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.avatar svg {
    width: 20px;
    height: 20px;
    color: rgba(255, 255, 255, 0.4);
}

.avatar-1 {
    background: linear-gradient(135deg, rgba(22, 163, 74, 0.35), rgba(34, 197, 94, 0.2));
}

.avatar-1 svg {
    color: rgba(34, 197, 94, 0.6);
}

.avatar-2 {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.35), rgba(34, 211, 238, 0.2));
}

.avatar-2 svg {
    color: rgba(34, 211, 238, 0.6);
}

.avatar-3 {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.35), rgba(52, 211, 153, 0.2));
}

.avatar-3 svg {
    color: rgba(52, 211, 153, 0.6);
}

.avatar-4 {
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.35), rgba(45, 212, 191, 0.2));
}

.avatar-4 svg {
    color: rgba(45, 212, 191, 0.6);
}

.avatar:first-child {
    margin-left: 0;
}

.avatar-more {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid #0a0a0b;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: -12px;
    font-size: 12px;
    font-weight: 600;
    color: #ffffff;
    backdrop-filter: blur(10px);
}

.proof-text {
    font-size: 15px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.65);
    letter-spacing: -0.01em;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(22, 163, 74, 0.1);
    border: 1px solid rgba(22, 163, 74, 0.2);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    color: var(--green-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}

.section-title {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 48px;
    font-weight: 800;
    letter-spacing: -2px;
    color: #ffffff;
}

/* How It Works */
.how-it-works {
    padding: 100px 0;
    position: relative;
}

.value-cards {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.value-card {
    display: flex;
    align-items: flex-start;
    gap: 32px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.value-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(22, 163, 74, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(22, 163, 74, 0.15);
}

.value-icon {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    background: rgba(22, 163, 74, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.value-card:hover .value-icon {
    background: rgba(22, 163, 74, 0.2);
    transform: scale(1.1);
}

.value-icon svg {
    width: 32px;
    height: 32px;
    color: var(--green-light);
}

.value-content {
    flex: 1;
}

.value-content h3 {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.value-content p {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: -0.01em;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.step-card {
    position: relative;
    padding: 40px 32px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    backdrop-filter: blur(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.step-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(22, 163, 74, 0.3);
    box-shadow: 0 20px 60px rgba(22, 163, 74, 0.15);
}

.step-number {
    position: absolute;
    top: 24px;
    right: 24px;
    font-size: 48px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.75);
    letter-spacing: -2px;
}

.step-icon-wrapper {
    width: 80px;
    height: 80px;
    margin-bottom: 24px;
    background: linear-gradient(135deg, rgba(22, 163, 74, 0.2), rgba(16, 185, 129, 0.1));
    border: 1px solid rgba(22, 163, 74, 0.3);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.step-card:hover .step-icon-wrapper {
    transform: scale(1.1) rotate(-5deg);
}

.step-icon {
    width: 40px;
    height: 40px;
    color: var(--green-light);
}

.step-card h3 {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #ffffff;
    letter-spacing: -0.02em;
}

.step-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.65;
    letter-spacing: -0.01em;
}

/* Demos Section */
.demos {
    padding: 120px 0;
}

.demo-tabs {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-bottom: 48px;
    padding: 6px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.tab-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 12px;
    background: transparent;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    color: var(--text-muted);
}

.tab-icon {
    width: 18px;
    height: 18px;
}

.tab-btn:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.05);
}

.tab-btn.active {
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
    color: white;
    box-shadow: 0 4px 16px rgba(22, 163, 74, 0.3);
}

.demo-content {
    display: none;
}

.demo-content.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

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

.demo-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    padding: 48px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    backdrop-filter: blur(20px);
    align-items: center;
}

.demo-text h3 {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 16px;
    letter-spacing: -0.03em;
    color: #ffffff;
}

.demo-description {
    font-size: 17px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 32px;
    line-height: 1.65;
    letter-spacing: -0.01em;
}

.feature-list {
    list-style: none;
    margin-bottom: 32px;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    font-size: 16px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    letter-spacing: -0.01em;
}

.check-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #16a34a, #22c55e);
    border-radius: 50%;
    font-size: 14px;
    color: white;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Integration Badge */
.integration-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: linear-gradient(135deg, rgba(22, 163, 74, 0.15), rgba(16, 185, 129, 0.1));
    border: 1px solid rgba(22, 163, 74, 0.3);
    border-radius: 20px;
    margin-top: 8px;
    color: var(--green-light);
    font-size: 14px;
    font-weight: 600;
}

.integration-badge svg {
    color: var(--green-light);
}

/* Code Demo Container */
.code-demo-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Code Preview Compact */
.code-preview-compact {
    background: #18181b;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
}

.code-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.code-dots {
    display: flex;
    gap: 6px;
}

.code-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
}

.code-title {
    font-size: 12px;
    color: var(--text-muted);
}

.code-preview-compact pre {
    margin: 0;
    padding: 16px 20px;
}

.code-preview-compact code {
    font-family: 'SF Mono', 'Fira Code', Monaco, monospace;
    font-size: 13px;
    line-height: 1.7;
    color: #d4d4d8;
}

.code-import {
    color: #c084fc;
}

.code-keyword {
    color: #f472b6;
}

.code-function {
    color: #60a5fa;
}

.code-string {
    color: #34d399;
}

.code-number {
    color: #fbbf24;
}

.code-property {
    color: #a78bfa;
}

/* Video Container Small */
.video-container-small {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.video-container-small .video-placeholder {
    aspect-ratio: 16/9;
    min-height: unset;
}

.video-container-small .demo-video {
    border-radius: 12px;
}

/* Video Container */
.video-container {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

.demo-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    background: #000;
}

.video-placeholder {
    position: relative;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, rgba(22, 163, 74, 0.1) 0%, rgba(16, 185, 129, 0.05) 100%);
    border: 2px dashed rgba(22, 163, 74, 0.3);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s ease;
    overflow: hidden;
    min-height: 400px;
}

.video-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(22, 163, 74, 0.2) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.video-placeholder:hover::before {
    opacity: 1;
}

.video-placeholder:hover {
    border-color: var(--green-light);
    transform: scale(1.02);
}

.play-button {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #16a34a, #22c55e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 8px 32px rgba(22, 163, 74, 0.4);
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.video-placeholder:hover .play-button {
    transform: scale(1.1);
    box-shadow: 0 12px 48px rgba(22, 163, 74, 0.6);
}

.video-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    padding: 16px;
    background: rgba(10, 10, 11, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.video-label {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 4px;
}

.video-duration {
    font-size: 13px;
    color: var(--text-muted);
}

/* Stats Section */
.stats-section {
    padding: 80px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
    padding: 48px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    backdrop-filter: blur(20px);
}

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

.stat-value {
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(135deg, #16a34a, #22c55e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

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

/* Final CTA */
.final-cta {
    padding: 120px 0;
}

.cta-card {
    text-align: center;
    padding: 80px 48px;
    background: linear-gradient(135deg, rgba(22, 163, 74, 0.1) 0%, rgba(16, 185, 129, 0.05) 100%);
    border: 1px solid rgba(22, 163, 74, 0.2);
    border-radius: 32px;
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(22, 163, 74, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.cta-card h2 {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
    letter-spacing: -0.03em;
    position: relative;
    z-index: 1;
}

.cta-card p {
    font-size: 19px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 32px;
    line-height: 1.6;
    letter-spacing: -0.01em;
    position: relative;
    z-index: 1;
}

.cta-card .btn {
    position: relative;
    z-index: 1;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    animation: fadeIn 0.2s ease;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
}

.glass-card {
    position: relative;
    background: rgba(26, 26, 29, 0.95);
    backdrop-filter: blur(40px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 48px;
    max-width: 540px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6);
    animation: slideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 24px;
    color: var(--text-muted);
    cursor: pointer;
    line-height: 1;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.modal-header {
    text-align: center;
    margin-bottom: 32px;
}

.modal-header h2 {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -1.5px;
    color: #ffffff;
}

.modal-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: -0.01em;
}

/* Forms */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
    color: #ffffff;
    letter-spacing: -0.01em;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s ease;
    color: #ffffff;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--green-primary);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 4px rgba(22, 163, 74, 0.1);
}

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

.form-group select {
    cursor: pointer;
}

/* Success State */
.success-state {
    text-align: center;
    padding: 20px 0;
}

.success-animation {
    margin-bottom: 24px;
}

.success-checkmark {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #16a34a, #22c55e);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    margin: 0 auto;
    animation: scaleIn 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(22, 163, 74, 0.4);
}

@keyframes scaleIn {
    0% {
        transform: scale(0);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.success-state h3 {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #ffffff;
}

.success-message {
    font-size: 16px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 24px;
    line-height: 1.6;
    letter-spacing: -0.01em;
}

.success-subtitle {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 24px;
}

/* Waitlist Position */
.waitlist-position {
    margin-bottom: 32px;
}

.position-card {
    padding: 32px;
    background: linear-gradient(135deg, rgba(22, 163, 74, 0.1) 0%, rgba(16, 185, 129, 0.05) 100%);
    border: 1px solid rgba(22, 163, 74, 0.2);
    border-radius: 20px;
    backdrop-filter: blur(20px);
}

.position-label {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.position-number {
    font-size: 64px;
    font-weight: 800;
    background: linear-gradient(135deg, #16a34a, #22c55e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 8px;
}

.position-total {
    font-size: 16px;
    color: var(--text-muted);
}

/* Referral Section */
.referral-section {
    padding: 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(10px);
}

.referral-link-container {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}

.referral-input {
    flex: 1;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: #ffffff;
    font-size: 14px;
    font-family: 'SF Mono', monospace;
}

.btn-copy {
    padding: 12px 24px;
    background: linear-gradient(135deg, #16a34a, #15803d);
    border: none;
    border-radius: 10px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.btn-copy:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(22, 163, 74, 0.4);
}

.referral-note {
    font-size: 13px;
    color: var(--text-muted);
    text-align: center;
}

/* Success Details */
.success-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-align: left;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--text-muted);
}

.detail-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    color: var(--green-light);
}

.detail-icon svg {
    width: 100%;
    height: 100%;
}

/* Responsive */
@media (max-width: 968px) {
    .hero-title {
        font-size: 48px;
        letter-spacing: -2px;
    }

    .section-title {
        font-size: 36px;
    }

    .demo-card {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 32px;
    }

    .steps {
        grid-template-columns: 1fr;
    }

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

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media (max-width: 640px) {
    /* Navbar */
    .navbar {
        padding: 16px 0;
    }

    .logo {
        height: 28px;
    }

    .logo-text {
        font-size: 20px;
    }

    .nav-stats {
        display: none;
    }

    /* Hero Section */
    .hero {
        min-height: auto;
    }

    .hero-container {
        padding: 80px 20px 40px;
        gap: 32px;
    }

    .hero-right {
        height: 280px;
    }

    .hero-visual {
        height: 280px;
    }

    .hero-badge {
        font-size: 11px;
        padding: 6px 12px;
        margin-bottom: 16px;
    }

    .hero-title {
        font-size: 36px;
        letter-spacing: -1.5px;
        line-height: 1.15;
        margin-bottom: 16px;
        padding-right: 0;
    }

    .hero-subtitle {
        font-size: 16px;
        line-height: 1.5;
        margin-bottom: 24px;
        padding: 0 8px;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
        gap: 12px;
        margin-bottom: 32px;
    }

    .btn {
        width: 100%;
        justify-content: space-between;
        padding: 16px 20px;
        min-width: unset;
    }

    .btn-main {
        font-size: 15px;
    }

    .btn-subtitle {
        font-size: 11px;
    }

    /* Mobile wallet - simplified */
    .wallet-card {
        width: 200px;
        height: 130px;
        padding: 16px 18px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: flex-start;
        gap: 0;
    }

    .wallet-logo {
        width: 40px;
        height: 40px;
        padding: 9px;
        margin-bottom: 0;
    }

    .wallet-balance {
        font-size: 24px;
        margin-top: auto;
        margin-bottom: 2px;
    }

    .wallet-label {
        font-size: 11px;
        margin-top: 0;
        margin-bottom: 0;
        padding-bottom: 4px;
        letter-spacing: 0.8px;
    }

    .connected-app {
        width: 48px;
        height: 48px;
    }

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

    /* Further simplify connections on mobile */
    .connection-line {
        opacity: 0.3;
        width: 1px;
    }

    .connection-dot {
        width: 5px;
        height: 5px;
        opacity: 0.6;
    }

    /* Hide some apps on very small screens to reduce clutter */
    .app-5,
    .app-6 {
        opacity: 0.4;
    }

    /* Social Proof */
    .social-proof {
        margin-top: 40px;
    }

    .avatars {
        gap: -8px;
        margin-bottom: 12px;
    }

    .avatar {
        width: 36px;
        height: 36px;
    }

    .avatar-more {
        width: 36px;
        height: 36px;
        font-size: 11px;
    }

    .proof-text {
        font-size: 13px;
    }

    /* Sections */
    .how-it-works,
    .demos,
    .stats-section,
    .final-cta {
        padding: 48px 0;
    }

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

    .section-badge {
        font-size: 11px;
        padding: 6px 12px;
    }

    .section-title {
        font-size: 28px;
        letter-spacing: -1px;
        margin-bottom: 12px;
        line-height: 1.2;
    }

    /* Value cards mobile */
    .value-cards {
        gap: 16px;
    }

    .value-card {
        padding: 24px 20px;
    }

    .value-icon {
        width: 48px;
        height: 48px;
    }

    .value-icon svg {
        width: 24px;
        height: 24px;
    }

    .value-content h3 {
        font-size: 18px;
        margin-bottom: 8px;
    }

    .value-content p {
        font-size: 14px;
        line-height: 1.5;
    }

    .section-subtitle {
        font-size: 15px;
    }

    .container {
        padding: 0 20px;
    }

    /* Steps */
    .step-card {
        padding: 28px 20px;
    }

    .step-number {
        font-size: 72px;
        margin-bottom: 16px;
    }

    .step-card h3 {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .step-card p {
        font-size: 14px;
    }

    /* Demo Cards */
    .demo-card {
        padding: 28px 20px;
        gap: 28px;
    }

    .demo-text h3 {
        font-size: 22px;
        margin-bottom: 10px;
        line-height: 1.3;
    }

    .demo-description {
        font-size: 14px;
        margin-bottom: 20px;
        line-height: 1.6;
    }

    .feature-list {
        gap: 8px;
    }

    .feature-list li {
        font-size: 14px;
        padding: 10px 0;
        line-height: 1.4;
    }

    .check-icon {
        width: 18px;
        height: 18px;
        font-size: 11px;
        flex-shrink: 0;
    }

    /* Demo videos/visuals */
    .demo-visual {
        margin-top: 8px;
    }

    .video-container,
    .code-demo-container {
        border-radius: 12px;
    }

    /* Tabs */
    .tab-buttons {
        gap: 8px;
        margin-bottom: 32px;
    }

    .tab-btn {
        padding: 10px 18px;
        font-size: 14px;
    }

    /* Code Preview */
    .code-preview-compact pre {
        padding: 16px 14px;
        font-size: 12px;
    }

    .integration-badge {
        font-size: 12px;
        padding: 8px 12px;
    }

    /* Final CTA mobile */
    .cta-card {
        padding: 36px 24px;
        border-radius: 20px;
    }

    .cta-card h2 {
        font-size: 26px;
        line-height: 1.3;
        margin-bottom: 12px;
    }

    .cta-card p {
        font-size: 15px;
        line-height: 1.5;
        margin-bottom: 24px;
    }

    /* Stats */
    .stat-item {
        padding: 24px 20px;
    }

    .stat-value {
        font-size: 36px;
        margin-bottom: 8px;
    }

    .stat-label {
        font-size: 13px;
    }

    /* CTA Card */
    .cta-card {
        padding: 40px 24px;
    }

    .cta-card h2 {
        font-size: 28px;
        margin-bottom: 12px;
    }

    .cta-card p {
        font-size: 15px;
        margin-bottom: 24px;
    }

    /* Modals */
    .modal-content {
        width: 95%;
        max-width: 100%;
        margin: 20px;
        max-height: 90vh;
        overflow-y: auto;
    }

    .glass-card {
        padding: 28px 20px;
    }

    .modal-header h2 {
        font-size: 24px;
    }

    .modal-description {
        font-size: 14px;
    }

    .form-group label {
        font-size: 13px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 15px;
        padding: 12px 14px;
    }

    /* Success State */
    .success-checkmark {
        width: 56px;
        height: 56px;
        font-size: 32px;
    }

    .success-state h3 {
        font-size: 22px;
    }

    .success-message {
        font-size: 14px;
    }

    .position-number {
        font-size: 40px;
    }

    .position-label {
        font-size: 12px;
    }

    .referral-section h4 {
        font-size: 16px;
    }

    .referral-input {
        font-size: 13px;
        padding: 10px 12px;
    }

    .copy-btn {
        padding: 10px 16px;
        font-size: 13px;
    }

    /* Footer */
    .footer {
        padding: 32px 0 24px;
        margin-top: 60px;
    }
}

/* ============================================================================
   FOOTER
   ============================================================================ */

.footer {
    background: rgba(10, 10, 11, 0.8);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 48px 0 32px;
    margin-top: 120px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.footer-logo {
    display: block;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

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

.footer-logo img {
    height: 32px;
    width: auto;
}

.footer-social {
    display: flex;
    gap: 24px;
    align-items: center;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
    background: rgba(22, 163, 74, 0.1);
    border-color: var(--green-light);
    color: var(--green-light);
    transform: translateY(-2px);
}

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

.footer-copyright {
    font-size: 14px;
    color: var(--text-muted);
    text-align: center;
}

/* Footer Mobile */
@media (max-width: 768px) {
    .footer {
        padding: 32px 0 24px;
        margin-top: 80px;
    }

    .footer-content {
        gap: 24px;
    }

    .footer-logo img {
        height: 28px;
    }

    .social-link {
        width: 36px;
        height: 36px;
    }

    .footer-copyright {
        font-size: 13px;
    }
}

/* Hero Visual - Wallet Ecosystem */
.hero-visual {
    position: relative;
    width: 100%;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wallet-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wallet-card {
    position: relative;
    width: 300px;
    height: 190px;
    background: linear-gradient(135deg, rgba(22, 163, 74, 0.12) 0%, rgba(21, 128, 61, 0.08) 100%);
    border: 1.5px solid rgba(22, 163, 74, 0.4);
    border-radius: 20px;
    padding: 28px;
    backdrop-filter: blur(30px);
    box-shadow:
        0 10px 40px rgba(22, 163, 74, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.05) inset,
        0 0 80px rgba(22, 163, 74, 0.1);
    z-index: 10;
    animation: floatWallet 6s ease-in-out infinite;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
}

.wallet-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.wallet-card::after {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(22, 163, 74, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

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

.wallet-logo {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(22, 163, 74, 0.25) 0%, rgba(22, 163, 74, 0.15) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    position: relative;
    z-index: 1;
    box-shadow:
        0 4px 16px rgba(22, 163, 74, 0.25),
        0 0 0 2px rgba(22, 163, 74, 0.15) inset;
}

.wallet-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.wallet-balance {
    font-size: 40px;
    font-weight: 700;
    color: #ffffff;
    margin-top: 12px;
    position: relative;
    z-index: 1;
    letter-spacing: -0.02em;
}

.wallet-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
    position: relative;
    z-index: 1;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Connected Apps */
.connected-app {
    position: absolute;
    width: 68px;
    height: 68px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 18px;
    backdrop-filter: blur(15px);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.connected-app:hover {
    transform: scale(1.15);
    background: linear-gradient(135deg, rgba(22, 163, 74, 0.15) 0%, rgba(22, 163, 74, 0.08) 100%);
    border-color: rgba(22, 163, 74, 0.4);
    box-shadow: 0 8px 24px rgba(22, 163, 74, 0.2);
}

.connected-app:hover .connection-line {
    opacity: 1;
    filter: blur(0.3px);
    background: linear-gradient(180deg,
        rgba(22, 163, 74, 0.6) 0%,
        rgba(22, 163, 74, 0.4) 30%,
        rgba(22, 163, 74, 0.2) 60%,
        transparent 100%);
}

.connected-app:hover .connection-dot {
    background: rgba(22, 163, 74, 1);
    box-shadow:
        0 0 16px rgba(22, 163, 74, 0.8),
        0 0 28px rgba(22, 163, 74, 0.5);
    animation: pulseDotFast 1s ease-in-out infinite;
}

@keyframes pulseDotFast {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.4);
    }
}

.app-icon {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.app-icon svg {
    width: 28px;
    height: 28px;
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
}

.connected-app:hover .app-icon svg {
    color: var(--green-light);
    transform: scale(1.1);
}

.connection-line {
    position: absolute;
    width: 1.5px;
    height: 100px;
    background: linear-gradient(180deg,
        rgba(22, 163, 74, 0.4) 0%,
        rgba(22, 163, 74, 0.25) 30%,
        rgba(22, 163, 74, 0.1) 60%,
        transparent 100%);
    top: 50%;
    left: 50%;
    transform-origin: top center;
    filter: blur(0.5px);
    opacity: 0.8;
    z-index: 1;
}

.connection-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background: rgba(22, 163, 74, 0.8);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow:
        0 0 12px rgba(22, 163, 74, 0.6),
        0 0 20px rgba(22, 163, 74, 0.3);
    z-index: 3;
    animation: pulseDot 3s ease-in-out infinite;
}

@keyframes pulseDot {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 1;
    }
}

/* App Positions - 6 apps arranged in circle */
.app-1 {
    top: 8%;
    left: 15%;
    animation: floatApp1 8s ease-in-out infinite;
}

.app-1 .connection-line {
    transform: translate(-50%, -50%) rotate(135deg);
    height: 170px;
}

.app-2 {
    top: 8%;
    right: 15%;
    animation: floatApp2 7s ease-in-out infinite;
}

.app-2 .connection-line {
    transform: translate(-50%, -50%) rotate(45deg);
    height: 170px;
}

.app-3 {
    top: 50%;
    right: 5%;
    animation: floatApp3 9s ease-in-out infinite;
}

.app-3 .connection-line {
    transform: translate(-50%, -50%) rotate(0deg);
    height: 130px;
}

.app-4 {
    bottom: 8%;
    right: 15%;
    animation: floatApp4 8.5s ease-in-out infinite;
}

.app-4 .connection-line {
    transform: translate(-50%, -50%) rotate(315deg);
    height: 170px;
}

.app-5 {
    bottom: 8%;
    left: 15%;
    animation: floatApp5 7.5s ease-in-out infinite;
}

.app-5 .connection-line {
    transform: translate(-50%, -50%) rotate(225deg);
    height: 170px;
}

.app-6 {
    top: 50%;
    left: 5%;
    animation: floatApp6 8s ease-in-out infinite;
}

.app-6 .connection-line {
    transform: translate(-50%, -50%) rotate(180deg);
    height: 130px;
}

@keyframes floatApp1 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-10px, -15px); }
}

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

@keyframes floatApp3 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-15px, 10px); }
}

@keyframes floatApp4 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(15px, 15px); }
}

@keyframes floatApp5 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-15px, 10px); }
}

@keyframes floatApp6 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-10px, -8px); }
}

/* Floating Particles */
.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(22, 163, 74, 0.4);
    border-radius: 50%;
    box-shadow: 0 0 12px rgba(22, 163, 74, 0.5);
    filter: blur(0.5px);
}

.particle-1 {
    top: 20%;
    left: 30%;
    animation: floatParticle 4s ease-in-out infinite;
}

.particle-2 {
    top: 60%;
    left: 70%;
    animation: floatParticle 5s ease-in-out infinite 1s;
}

.particle-3 {
    top: 80%;
    left: 40%;
    animation: floatParticle 6s ease-in-out infinite 2s;
}

@keyframes floatParticle {
    0%, 100% {
        transform: translateY(0) scale(1);
        opacity: 0.4;
    }
    50% {
        transform: translateY(-30px) scale(1.2);
        opacity: 0.8;
    }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
    animation: fadeIn 1s ease 1s backwards;
}

.scroll-arrow {
    font-size: 24px;
    animation: bounce 2s ease-in-out infinite;
}

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

/* Responsive - Hero Split */
@media (max-width: 968px) {
    .hero {
        min-height: auto;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 48px;
        padding: 120px 24px 60px;
    }

    .hero-left {
        text-align: center;
        padding-right: 0;
    }

    .hero-right {
        order: -1;
        height: 350px;
    }

    .hero-visual {
        height: 350px;
    }

    .hero-title {
        font-size: 48px;
        letter-spacing: -2px;
    }

    .hero-subtitle {
        font-size: 17px;
        line-height: 1.6;
        max-width: 500px;
        margin: 0 auto 32px;
    }

    .cta-buttons {
        justify-content: center;
        flex-direction: column;
        max-width: 400px;
        margin: 0 auto 48px;
    }

    .btn {
        width: 100%;
    }

    /* Simplified wallet for tablet */
    .wallet-card {
        width: 220px;
        height: 140px;
        padding: 18px;
    }

    .wallet-logo {
        width: 44px;
        height: 44px;
        padding: 10px;
    }

    .wallet-balance {
        font-size: 26px;
    }

    .wallet-label {
        font-size: 11px;
    }

    .connected-app {
        width: 56px;
        height: 56px;
    }

    .app-icon svg {
        width: 24px;
        height: 24px;
    }

    .connection-line {
        opacity: 0.5;
    }

    .connection-dot {
        width: 6px;
        height: 6px;
    }

    .particle {
        display: none;
    }

    /* Scroll indicator */
    .scroll-indicator {
        display: none;
    }

    /* Value Cards Mobile */
    .value-card {
        flex-direction: column;
        padding: 28px 24px;
        gap: 20px;
    }

    .value-icon {
        width: 56px;
        height: 56px;
    }

    .value-icon svg {
        width: 28px;
        height: 28px;
    }

    .value-content h3 {
        font-size: 20px;
    }

    .value-content p {
        font-size: 15px;
    }

    /* Sections spacing */
    .how-it-works {
        padding: 60px 0;
    }

    .demos {
        padding: 60px 0;
    }
}
