/* Reset & Base */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg: #000;
    --bg-secondary: #0a0a0a;
    --text: #fff;
    --text-muted: rgba(255, 255, 255, 0.6);
    --text-subtle: rgba(255, 255, 255, 0.4);
    --border: rgba(255, 255, 255, 0.1);
    --accent: #fff;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

a {
    color: inherit;
    text-decoration: none;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
}

.btn i {
    font-size: 18px;
}

/* ... */

.feature-icon i {
    font-size: 32px;
}

/* ... */

.pricing-features li i {
    font-size: 20px;
    color: #10b981;
    /* Green checkmark */
    flex-shrink: 0;
}

/* ... */

.snow-btn i {
    font-size: 24px;
}

.btn-primary {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-primary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

.btn-secondary {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text-muted);
}

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

.btn-secondary:active {
    transform: translateY(0);
    box-shadow: none;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

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

/* Animated Build Button */
.btn-build {
    width: 85px;
    height: 40px;
    overflow: hidden;
    border: none;
    background: none;
    position: relative;
    padding-bottom: 2px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    white-space: nowrap;
}

.btn-build>div,
.btn-build>svg {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.btn-build>div {
    justify-content: flex-end;
    padding-right: 20px;
}

.btn-build:before {
    content: "";
    position: absolute;
    height: 2px;
    bottom: 0;
    left: 0;
    width: 100%;
    transform: scaleX(0);
    transform-origin: bottom right;
    background: currentColor;
    transition: transform 0.25s ease-out;
}

.btn-build:hover:before {
    transform: scaleX(1);
    transform-origin: bottom left;
}

.btn-build .clone>*,
.btn-build .text>* {
    opacity: 1;
    font-size: 1.1rem;
    transition: 0.2s;
    margin-left: 4px;
    font-weight: 600;
}

.btn-build .clone>* {
    transform: translateY(60px);
}

.btn-build:hover .clone>* {
    opacity: 1;
    transform: translateY(0px);
    transition: all 0.2s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}

.btn-build:hover .text>* {
    opacity: 1;
    transform: translateY(-60px);
    transition: all 0.2s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}

.btn-build:hover .clone> :nth-child(1) {
    transition-delay: 0.15s;
}

/* icon style and hover */
.btn-build svg {
    width: 18px;
    right: -2px;
    top: 50%;
    transform: translateY(-50%) rotate(-45deg);
    transition: 0.2s ease-out;
}

.btn-build:hover svg {
    transform: translateY(-50%) rotate(-90deg);
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 2000;
    /* Increased to stay on top of overlay */
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    /* Increased from 72px for better presence */
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

@font-face {
    font-family: 'LogoFont';
    src: url('logo-font.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

.logo-text {
    font-family: 'LogoFont', sans-serif;
    font-size: 1.5rem;
    font-weight: normal;
    /* Override bold since it might be a display font */
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    /* Slightly reduced gap */
}

.nav-links a:not(.btn) {
    color: var(--text-muted);
    font-size: 0.95rem;
    transition: color 0.2s;
}

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

.mobile-menu-btn {
    display: none !important;
    /* Entirely removed as requested */
}

.pricing-features li svg {
    width: 12px;
    height: 12px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 120px;
    /* Standardized for fixed nav */
    position: relative;
    overflow: hidden;
}

@media (max-width: 768px) {
    .hero {
        padding-top: 140px;
        /* Generous space for phones */
    }
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.grid-pattern {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 50% at 50% 50%, black 40%, transparent 100%);
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.15;
}

.glow-1 {
    width: 600px;
    height: 600px;
    background: #fff;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
}

.glow-2 {
    width: 400px;
    height: 400px;
    background: #fff;
    bottom: -100px;
    right: -100px;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 4rem 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.pulse {
    width: 8px;
    height: 8px;
    background: #ffffff;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.gradient-text {
    background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.6) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 2.5rem;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.hero-note {
    font-size: 0.85rem;
    color: var(--text-subtle);
}

/* Demo Window */
.hero-demo {
    margin-top: 4rem;
    margin-bottom: 4rem;
    perspective: 1000px;
}

.demo-window {
    background: #0a0a0a;
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    overflow: hidden;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 50px 100px -20px rgba(0, 0, 0, 0.5);
    transform: rotateX(2deg);
}

.demo-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 2px solid rgba(255, 255, 255, 0.15);
}

.demo-dots {
    display: flex;
    gap: 0.5rem;
}

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

.demo-url {
    font-size: 0.85rem;
    color: var(--text-subtle);
}

.demo-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 300px;
}

.demo-chat {
    padding: 2rem;
    border-right: 2px solid rgba(255, 255, 255, 0.15);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.chat-bubble {
    padding: 1rem 1.25rem;
    border-radius: 12px;
    font-size: 0.9rem;
    max-width: 90%;
}

.chat-bubble.user {
    background: #fff;
    color: #000;
    align-self: flex-end;
    border-bottom-right-radius: 4px;
}

.chat-bubble.ai {
    background: #1a1a1a;
    border: 2px solid rgba(255, 255, 255, 0.15);
    align-self: flex-start;
    border-bottom-left-radius: 4px;
}

.typing {
    display: inline-block;
    animation: blink 1s infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.demo-form {
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes popIn {
    0% {
        opacity: 0;
        transform: scale(0.95) translateY(10px);
    }

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

.form-preview-card {
    background: #111;
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 1.5rem;
    width: 100%;
    animation: popIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) backwards;
    animation-delay: 2s;
    /* Wait for chat bubbles */
}

.form-preview-card h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

.field-preview {
    height: 46px;
    background: linear-gradient(90deg,
            rgba(255, 255, 255, 0.1) 0%,
            rgba(255, 255, 255, 0.2) 50%,
            rgba(255, 255, 255, 0.1) 100%);
    background-size: 200% 100%;
    animation: shimmer 2s infinite linear;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.field-preview.short {
    width: 60%;
}

/* Sections Common */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-muted);
}

/* Features */
.features {
    padding: 8rem 0;
    background: var(--bg-secondary);
}

.features-marquee {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
    padding: 2rem 0;
    /* Add vertical padding for hover scale */
    margin: -2rem 0;
    /* Compensate for padding */
}

.marquee-row {
    position: relative;
    width: 100%;
}

.marquee-track {
    display: flex;
    gap: 2rem;
    width: max-content;
}

.marquee-track:hover {
    animation-play-state: paused;
}

.marquee-track.right-scroll {
    animation: scrollRight 40s linear infinite;
}

@keyframes scrollRight {
    from {
        transform: translateX(calc(-100% / 3));
    }

    to {
        transform: translateX(0);
    }
}

.marquee-track.left-scroll {
    animation: scrollLeft 40s linear infinite;
}

@keyframes scrollLeft {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-100% / 3));
    }
}

.feature-card {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: 16px;
    transition: all 0.3s ease;
    min-width: 280px;
    flex-shrink: 0;
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.08);
    /* Highlight on hover */
    border-color: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
    /* "Cut on top" interpreted as Pop out */
    z-index: 10;
    box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.5);
    position: relative;
    /* Needed for z-index */
}

.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    margin-bottom: 1.25rem;
    color: var(--accent);
}

.feature-icon i {
    font-size: 28px;
}

.feature-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* How it Works */
/* How it Works */
/* How it Works */
.how-it-works {
    padding: 8rem 0;
    position: relative;
    /* Create scroll space */
}

.stack-container {
    position: relative;
    width: 100%;
    margin-top: 4rem;
    padding-bottom: 20vh;
    /* Space for last card */
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4rem;
}

.step-card {
    position: sticky;
    top: 150px;
    /* Stick near top */
    min-width: 60vw;
    max-width: 800px;
    height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 32px;
    padding: 4rem 2rem;
    overflow: hidden;
    transition: transform 0.1s ease-out, filter 0.1s ease-out;
    /* JavaScript driven smoothnes */
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    will-change: transform, filter;
    transform-origin: center top;
}

.step-card:nth-child(1) {
    top: 150px;
}

.step-card:nth-child(2) {
    top: 170px;
}

/* Slight offset for stacking look */
.step-card:nth-child(3) {
    top: 190px;
}

/* Mobile adjustments for 3D Stack */
@media (max-width: 768px) {
    .stack-container {
        gap: 2rem;
        /* Smaller gap on mobile */
        padding-bottom: 30vh;
    }

    .step-card {
        /* Keep sticky behavior */
        min-width: unset;
        width: 100%;
        min-height: 50vh;
        /* Smaller height on mobile */
        padding: 2rem 1.5rem;
    }

    /* Adjust sticky top positions for mobile if header is smaller */
    .step-card:nth-child(1) {
        top: 120px;
    }

    .step-card:nth-child(2) {
        top: 140px;
    }

    .step-card:nth-child(3) {
        top: 160px;
    }

    .step-number {
        font-size: 5rem;
        right: -10px;
        top: -10px;
    }
}



.step-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.5);
}

.step-number {
    position: absolute;
    top: -20px;
    right: -20px;
    font-size: 8rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.03);
    line-height: 1;
    pointer-events: none;
    transition: all 0.3s ease;
}

.step-card:hover .step-number {
    color: rgba(255, 255, 255, 0.06);
    transform: scale(1.1);
}

.step-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    font-size: 1.5rem;
    color: var(--text);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.step-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    position: relative;
}

.step-card p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
    position: relative;
}

/* Pricing */
.pricing {
    padding: 8rem 0;
    background: var(--bg-secondary);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: 20px;
    position: relative;
}

.pricing-card.featured {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    color: #000;
    padding: 0.4rem 1rem;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-header {
    margin-bottom: 2rem;
}

.pricing-header h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-muted);
}

.price {
    font-size: 3rem;
    font-weight: 800;
}

.price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-muted);
}

.price span:first-child {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text);
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.95rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.pricing-features li i {
    font-size: 20px;
    color: #10b981;
    /* Green checkmark */
    flex-shrink: 0;
}

.pricing-features li:last-child {
    border-bottom: none;
}

/* CTA */
.cta {
    padding: 8rem 0;
    text-align: center;
}

.cta h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

/* Footer */
.footer {
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand p {
    color: var(--text-muted);
    margin-top: 1rem;
    font-size: 0.95rem;
}

.footer-links h4 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-muted);
}

.footer-links a {
    display: block;
    color: var(--text-subtle);
    font-size: 0.9rem;
    padding: 0.5rem 0;
    transition: color 0.2s;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.footer-bottom p {
    color: var(--text-subtle);
    font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 900px) {
    .nav-links a:not(.btn-build) {
        display: none;
        /* Hide secondary links on mobile */
    }

    .nav-links {
        gap: 0.5rem;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .pricing-card.featured {
        transform: none;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .hero {
        padding-top: 140px;
    }

    .demo-content {
        grid-template-columns: 1fr;
    }

    .demo-chat {
        border-right: none;
        border-bottom: 2px solid rgba(255, 255, 255, 0.15);
        padding: 1.5rem;
    }

    .demo-form {
        padding: 1.5rem;
    }
}

@media (max-width: 600px) {
    .container {
        padding: 0 1.25rem;
    }

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

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

    .section-header h2 {
        font-size: 2rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-brand,
    .footer-links {
        text-align: center;
    }

    /* Mobile Marquee Optimization */
    .features-marquee {
        gap: 1rem;
    }

    .marquee-track {
        gap: 1rem;
    }

    .marquee-track.right-scroll {
        animation-duration: 20s;
    }

    .marquee-track.left-scroll {
        animation-duration: 20s;
    }

    .feature-card {
        min-width: 180px;
        /* Made cards smaller */
        padding: 1rem;
    }

    .feature-card p {
        max-width: 140px;
        /* Force text to wrap into 2 lines */
        margin: 0 auto;
        line-height: 1.4;
    }

    .feature-card h3 {
        font-size: 1rem;
    }

    .feature-card:hover {
        transform: none;
        /* Disable hover lift on mobile */
    }
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Hero Animations */
.fade-in-up {
    opacity: 0;
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

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

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

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

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

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

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

/* Floating Snow Button */
.snow-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    color: var(--text);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 3000;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.snow-btn:hover {
    transform: scale(1.1) rotate(15deg);
    background: rgba(255, 255, 255, 0.2);
}

.snow-btn i {
    font-size: 24px;
}

/* Snowflakes */
.snowflake {
    position: fixed;
    top: -10px;
    color: #fff;
    font-size: 1em;
    font-family: Arial;
    text-shadow: 0 0 1px #000;
    z-index: 9999;
    pointer-events: none;
    animation-name: fall;
    animation-timing-function: linear;
    animation-fill-mode: forwards;
}

@keyframes fall {
    to {
        transform: translateY(110vh) rotate(360deg);
    }
}

/* Legal Pages Styles */
.page-header {
    padding: 120px 0 60px;
    /* Standardized for fixed nav */
    text-align: center;
}

@media (max-width: 768px) {
    .page-header {
        padding: 140px 0 40px;
    }
}

.page-content {
    max-width: 800px;
    margin: 0 auto 6rem;
    color: var(--text-muted);
}

.page-content h2 {
    color: var(--text);
    margin: 2.5rem 0 1rem;
    font-size: 1.5rem;
}

.page-content p {
    margin-bottom: 1rem;
}

.page-content ul {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.page-content li {
    margin-bottom: 0.5rem;
}

/* Waitlist Form Styles */
.waitlist-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto;
}

.waitlist-input {
    padding: 1rem 1.25rem;
    border-radius: 10px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.05);
    color: var(--text);
    font-size: 1rem;
    outline: none;
    transition: all 0.2s ease;
}

.waitlist-input::placeholder {
    color: var(--text-subtle);
}

.waitlist-input:focus {
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.waitlist-btn {
    padding: 1rem 2rem;
    border-radius: 10px;
    background: #fff;
    color: #000;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.waitlist-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.2);
}

.waitlist-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.waitlist-message {
    padding: 1rem;
    border-radius: 10px;
    font-size: 0.95rem;
    text-align: center;
    display: none;
}

.waitlist-message.success {
    display: block;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #10b981;
}

.waitlist-message.error {
    display: block;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

/* Spinner for loading state */
.spinner {
    width: 18px;
    height: 18px;
    border: 2px solid #000;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

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