@font-face {
    font-family: 'Mona Sans';
    src: local('Mona Sans'), local('Inter'), local('system-ui');
    font-weight: 400 900;
}

:root {
    --bg-dark: #0d1117;
    --bg-darker: #010409;
    --bg-card: #161b22;
    --bg-card-hover: #1c2128;

    --text-primary: #f0f6fc;
    --text-secondary: #8b949e;
    --text-muted: #6e7681;

    --accent-purple: #7c3aed;
    --accent-cyan: #06b6d4;
    --accent-green: #10b981;
    --accent-pink: #ec4899;

    --border: rgba(240, 246, 252, 0.1);
    --border-hover: rgba(240, 246, 252, 0.2);

    --gradient-1: linear-gradient(90deg, #7c3aed, #06b6d4);
    --gradient-2: linear-gradient(90deg, #06b6d4, #10b981);
    --gradient-3: linear-gradient(135deg, #7c3aed 0%, #ec4899 50%, #06b6d4 100%);

    --font: 'Mona Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
    --font-mono: ui-monospace, SFMono-Regular, 'SF Mono', Menlo, Consolas, monospace;

    --container: 1280px;
    --transition: 0.2s ease;
}

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

html {
    scroll-behavior: smooth;
}

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

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

.bg-lines {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    pointer-events: none;
    z-index: 0;
    opacity: 0.6;
}

.hero-glow {
    width: 100%;
    height: 100%;
}

.flow-line {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: flow 4s ease-out forwards;
}

.line-1 {
    animation-delay: 0s;
}

.line-2 {
    animation-delay: 0.3s;
}

.line-3 {
    animation-delay: 0.6s;
}

@keyframes flow {
    to {
        stroke-dashoffset: 0;
    }
}

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(13, 17, 23, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}

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

.nav-logo {
    display: flex;
    align-items: flex-end;
    gap: 3px;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.75rem;
    line-height: 1;
}

.logo-icon {
    width: 36px;
    height: 36px;
    color: var(--accent-purple);
}

.nav-links {
    display: flex;
    gap: 8px;
}

.nav-links a {
    padding: 10px 20px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 1.125rem;
    font-weight: 500;
    border-radius: 6px;
    transition: color var(--transition), background var(--transition);
}

.nav-links a:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
}

.nav-cta {
    padding: 10px 20px;
    background: #f0f6fc;
    color: #0d1117;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 6px;
    transition: transform var(--transition), box-shadow var(--transition);
}

.nav-cta:hover {
    background: #ffffff;
    transform: translateY(-1px);
}

.hero {
    min-height: 100vh;
    padding: 160px 32px 100px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: var(--container);
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    background: rgba(124, 58, 237, 0.1);
    border: 1px solid rgba(124, 58, 237, 0.3);
    border-radius: 100px;
    font-size: 0.8rem;
    color: var(--accent-cyan);
    margin-bottom: 32px;
    position: relative;
    overflow: hidden;
}

.badge-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(124, 58, 237, 0.2), transparent);
    animation: shimmer 3s infinite;
}

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

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

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
}

.title-line {
    display: block;
}

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

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

.hero-description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 32px;
}

.hero-description strong {
    color: var(--text-primary);
}

.highlight {
    color: var(--accent-cyan);
}

.hero-cta {
    display: flex;
    gap: 16px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 24px;
    background: #f0f6fc;
    color: #0d1117;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all var(--transition);
}

.btn-primary svg {
    width: 16px;
    height: 16px;
    transition: transform var(--transition);
}

.btn-primary:hover {
    background: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.15);
}

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

.btn-secondary {
    display: inline-flex;
    align-items: center;
    padding: 14px 24px;
    background: transparent;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    border: 1px solid var(--border-hover);
    border-radius: 8px;
    transition: all var(--transition);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--text-muted);
}

.hero-visual {
    position: relative;
}

.terminal-window {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
}

.terminal-bar {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    background: rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid var(--border);
}

.terminal-dots {
    display: flex;
    gap: 8px;
}

.terminal-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--text-muted);
}

.terminal-dots span:nth-child(1) {
    background: #ff5f56;
}

.terminal-dots span:nth-child(2) {
    background: #ffbd2e;
}

.terminal-dots span:nth-child(3) {
    background: #27c93f;
}

.terminal-title {
    margin-left: auto;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--text-muted);
}

.terminal-body {
    padding: 20px;
    font-family: var(--font-mono);
    font-size: 0.9rem;
    line-height: 1.8;
}

.code-line {
    margin-bottom: 4px;
}

.code-prompt {
    color: var(--accent-green);
}

.code-string {
    color: var(--accent-cyan);
}

.code-comment {
    color: var(--text-muted);
}

.code-key {
    color: var(--accent-purple);
}

.code-value {
    color: #f0883e;
}

.code-warning {
    color: #f85149;
}

.cursor {
    animation: blink 1s step-end infinite;
}

@keyframes blink {
    50% {
        opacity: 0;
    }
}

.fade-in {
    opacity: 0;
    animation: fadeIn 0.5s ease forwards;
}

.delay-1 {
    animation-delay: 0.5s;
}

.delay-2 {
    animation-delay: 1s;
}

.delay-3 {
    animation-delay: 1.5s;
}

.delay-4 {
    animation-delay: 2s;
}

.delay-5 {
    animation-delay: 2.5s;
}

.delay-6 {
    animation-delay: 3s;
}

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

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}

.orb-1 {
    width: 300px;
    height: 300px;
    background: var(--accent-purple);
    opacity: 0.15;
    top: -50px;
    right: -100px;
}

.orb-2 {
    width: 200px;
    height: 200px;
    background: var(--accent-cyan);
    opacity: 0.1;
    bottom: -50px;
    left: 50px;
}

.section {
    padding: 120px 0;
    position: relative;
    z-index: 1;
}

.section-intro {
    text-align: center;
    margin-bottom: 64px;
}

.section-intro.center {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-label {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(6, 182, 212, 0.1);
    border: 1px solid rgba(6, 182, 212, 0.3);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--accent-cyan);
    margin-bottom: 20px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-desc {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.section-problem {
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
}

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

.stat-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 32px;
    transition: all var(--transition);
    overflow: hidden;
}

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

.stat-card:hover .stat-glow {
    opacity: 1;
}

.stat-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-1);
    opacity: 0;
    transition: opacity var(--transition);
}

.stat-icon {
    width: 32px;
    height: 32px;
    margin-bottom: 16px;
    color: var(--text-muted);
}

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

.stat-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 8px;
}

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

.line-divider {
    width: 100%;
    height: 100px;
    margin-top: 80px;
}

.line-divider svg {
    width: 100%;
    height: 100%;
}

.divider-line {
    stroke-dasharray: 2000;
    stroke-dashoffset: 2000;
    animation: drawLine 2s ease forwards;
}

@keyframes drawLine {
    to {
        stroke-dashoffset: 0;
    }
}

.section-how {
    background: var(--bg-darker);
}

.steps-flow {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.step-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    padding: 60px 0;
    position: relative;
}

.step-row.reverse {
    direction: rtl;
}

.step-row.reverse>* {
    direction: ltr;
}

.step-row.highlight-step {
    background: linear-gradient(90deg, rgba(124, 58, 237, 0.05), rgba(6, 182, 212, 0.05));
    border-radius: 16px;
    padding: 60px 40px;
    margin: 0 -40px;
}

.step-content {
    max-width: 480px;
}

.step-number {
    font-size: 3rem;
    font-weight: 900;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.5;
    margin-bottom: 16px;
}

.step-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.step-content p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
}

.step-line {
    position: absolute;
    left: 50%;
    bottom: -50px;
    transform: translateX(-50%);
    height: 100px;
    z-index: 2;
}

.step-visual {
    display: flex;
    justify-content: center;
}

.input-mock {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 16px 20px;
    font-family: var(--font-mono);
}

.input-label {
    color: var(--text-muted);
    margin-right: 8px;
}

.input-value {
    color: var(--accent-cyan);
}

.blink {
    animation: blink 1s step-end infinite;
}

.scan-animation {
    position: relative;
    width: 160px;
    height: 160px;
}

.scan-ring {
    position: absolute;
    border: 2px solid var(--accent-cyan);
    border-radius: 50%;
    opacity: 0.3;
}

.ring-1 {
    inset: 0;
    animation: pulse 2s ease-out infinite;
}

.ring-2 {
    inset: 20px;
    animation: pulse 2s ease-out infinite 0.4s;
}

.ring-3 {
    inset: 40px;
    animation: pulse 2s ease-out infinite 0.8s;
}

@keyframes pulse {
    0% {
        transform: scale(0.8);
        opacity: 0.8;
    }

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

.scan-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
}

.data-map {
    position: relative;
    width: 200px;
    height: 200px;
}

.map-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    z-index: 2;
}

.map-node {
    position: absolute;
    width: 40px;
    height: 40px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    z-index: 2;
    animation: float 3s ease-in-out infinite;
}

.node-1 {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 0s;
}

.node-2 {
    top: 20%;
    right: 0;
    animation-delay: 0.3s;
}

.node-3 {
    bottom: 20%;
    right: 0;
    animation-delay: 0.6s;
}

.node-4 {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 0.9s;
}

.node-5 {
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    animation-delay: 1.2s;
}

@keyframes float {

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

    50% {
        transform: translateY(-5px);
    }
}

.map-lines {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.ai-chat {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 280px;
}

.chat-bubble {
    padding: 14px 18px;
    border-radius: 16px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.chat-bubble.user {
    background: var(--accent-purple);
    color: white;
    align-self: flex-end;
    border-bottom-right-radius: 4px;
}

.chat-bubble.bot {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-bottom-left-radius: 4px;
    color: var(--text-secondary);
}

.chat-bubble.bot em {
    color: var(--accent-cyan);
    font-style: normal;
    font-weight: 600;
}

.section-quote {
    padding: 80px 0;
    background: var(--bg-dark);
}

.quote-card {
    position: relative;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1), rgba(6, 182, 212, 0.05));
    border: 1px solid rgba(124, 58, 237, 0.3);
    border-radius: 16px;
    padding: 48px;
    text-align: center;
    overflow: hidden;
}

.quote-glow {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 200px;
    background: var(--accent-purple);
    filter: blur(100px);
    opacity: 0.2;
}

.quote-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
    display: block;
}

.quote-main {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 12px;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.quote-sub {
    font-size: 1.125rem;
    color: var(--text-secondary);
}

.section-audience {
    background: var(--bg-darker);
}

.audience-cards {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 24px;
}

.audience-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
}

.audience-card.primary {
    border-color: var(--accent-purple);
}

.audience-card.primary .card-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-1);
}

.card-header {
    padding: 32px 32px 24px;
    background: rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid var(--border);
}

.card-label {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--accent-cyan);
    margin-bottom: 8px;
}

.card-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
}

.age {
    color: var(--accent-purple);
}

.card-list {
    list-style: none;
    padding: 24px 32px 32px;
}

.card-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border);
}

.card-list li:last-child {
    border-bottom: none;
}

.check {
    color: var(--accent-green);
    font-weight: 600;
}

.section-partners {
    background: var(--bg-dark);
}

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

.partner-group {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 28px;
}

.partner-group h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.partner-items {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.partner-item {
    padding: 12px 16px;
    background: var(--bg-darker);
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
    transition: all var(--transition);
}

.partner-item:hover {
    color: var(--text-primary);
    border-color: var(--accent-cyan);
    background: rgba(6, 182, 212, 0.05);
}

.section-contact {
    padding: 120px 0 80px;
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
}

.contact-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 64px;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    overflow: hidden;
}

.contact-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.05), transparent, rgba(6, 182, 212, 0.05));
}

.contact-card h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 12px;
    position: relative;
}

.contact-card p {
    color: var(--text-secondary);
    margin-bottom: 32px;
    position: relative;
}

.contact-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    position: relative;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    background: var(--bg-darker);
    border: 1px solid var(--border);
    border-radius: 8px;
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    transition: all var(--transition);
}

.contact-item:hover {
    border-color: var(--accent-purple);
    transform: translateY(-2px);
}

.contact-icon {
    font-size: 1.25rem;
}

.contact-icon svg {
    display: block;
}

.footer {
    background: var(--bg-darker);
    border-top: 1px solid var(--border);
    padding: 32px 0;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0;
    font-weight: 700;
    font-size: 1.125rem;
}

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

.footer-copy {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-credit {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-top: 8px;
}

.footer-credit .heart {
    color: #ef4444;
}

.footer-credit a {
    color: var(--accent-cyan);
    text-decoration: none;
    font-weight: 500;
    transition: color var(--transition);
}

.footer-credit a:hover {
    color: var(--accent-purple);
}

@keyframes heartbeat {

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

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

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--accent-cyan);
    margin-bottom: 16px;
}

.problem-content {
    max-width: 800px;
    margin: 0 auto 48px;
    text-align: center;
}

.problem-text {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.section-security {
    background: var(--bg-dark);
}

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

.security-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    transition: all var(--transition);
}

.security-card:hover {
    border-color: var(--accent-green);
    transform: translateY(-4px);
}

.security-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.security-icon svg {
    width: 28px;
    height: 28px;
    color: var(--accent-green);
}

.security-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
}

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

.section-impact {
    background: linear-gradient(180deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
}

.impact-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.impact-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 48px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.impact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
}

.impact-card.short-term::before {
    background: var(--gradient-1);
}

.impact-card.long-term::before {
    background: var(--gradient-2);
}

.impact-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    width: 64px;
    height: 64px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.impact-icon svg {
    width: 48px;
    height: 48px;
}

.impact-card.short-term .impact-icon svg {
    color: var(--accent-purple);
}

.impact-card.long-term .impact-icon svg {
    color: var(--accent-cyan);
}

.impact-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.impact-label {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 16px;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.impact-card.long-term .impact-label {
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.impact-card p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
}

.impact-card p em {
    color: var(--accent-cyan);
    font-style: normal;
    font-weight: 600;
}

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

.footer-tagline {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.footer-links {
    display: flex;
    gap: 24px;
    margin-bottom: 8px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color var(--transition);
}

.footer-links a:hover {
    color: var(--accent-cyan);
}

.footer-social {
    display: flex;
    gap: 16px;
    margin-bottom: 8px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 50%;
    color: var(--text-muted);
    transition: all var(--transition);
}

.footer-social a:hover {
    color: var(--text-primary);
    border-color: var(--accent-purple);
    transform: translateY(-2px);
}


/* Waitlist Section */
.section-waitlist {
    background: var(--bg-dark);
}

.waitlist-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 80px 40px;
    text-align: center;
    overflow: hidden;
    max-width: 900px;
    margin: 0 auto;
    transition: transform var(--transition);
}

.waitlist-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-hover);
}

.waitlist-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-3);
    opacity: 0.5;
}

.waitlist-form {
    max-width: 500px;
    margin: 40px auto 0;
}

.form-group {
    display: flex;
    gap: 12px;
    background: rgba(255, 255, 255, 0.05);
    padding: 8px;
    border: 1px solid var(--border);
    border-radius: 12px;
    transition: all var(--transition);
}

.form-group:focus-within {
    border-color: var(--accent-purple);
    box-shadow: 0 0 20px rgba(124, 58, 237, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.form-input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 12px 16px;
    color: var(--text-primary);
    font-family: var(--font);
    font-size: 1rem;
    outline: none;
}

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

.btn-waitlist {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--gradient-1);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
    min-width: 140px;
}

.btn-waitlist:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.4);
}

.btn-waitlist:active {
    transform: scale(0.98);
}

/* Loader */
.btn-loader {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: btn-spin 0.8s linear infinite;
}

@keyframes btn-spin {
    to { transform: rotate(360deg); }
}

.form-result {
    margin-top: 16px;
    font-size: 0.9rem;
    min-height: 1.25rem;
    transition: all var(--transition);
}

.form-result.success {
    color: var(--accent-green);
}

.form-result.error {
    color: #f85149;
}

.hidden {
    display: none;
}

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

    .hero-visual {
        display: none;
    }

    .step-row {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .step-row.reverse {
        direction: ltr;
    }

    .step-line {
        display: none;
    }

    .problem-stats,
    .partners-grid,
    .security-cards {
        grid-template-columns: 1fr;
    }

    .audience-cards,
    .impact-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .section {
        padding: 80px 0;
    }

    .hero-title {
        font-size: 2rem;
    }

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

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

    .quote-main {
        font-size: 1.5rem;
    }

    .contact-links {
        flex-direction: column;
    }

    .step-row.highlight-step {
        margin: 0;
        padding: 40px 24px;
    }

    .impact-card {
        padding: 32px 24px;
    }

    .impact-label {
        font-size: 1.5rem;
    }

    .footer-links {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    /* Waitlist Mobile Fix */
    .waitlist-card {
        padding: 40px 24px;
    }

    .waitlist-form .form-group {
        flex-direction: column;
        background: transparent;
        border: none;
        padding: 0;
        gap: 16px;
    }

    .waitlist-form .form-input {
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid var(--border);
        border-radius: 12px;
        width: 100%;
        padding: 14px 16px;
    }

    .waitlist-form .btn-waitlist {
        width: 100%;
        padding: 16px;
    }
}
