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

:root {
    --bg: #0a0a0a;
    --bg-secondary: #111111;
    --text: #ffffff;
    --text-muted: #8b8b8b;
    --accent: #ff6b35;
    --accent-light: #ff8555;
    --border: #222222;
    --glow: rgba(255, 107, 53, 0.3);
    --bunny-purple: #9b59b6;
    --bunny-purple-light: #b67fc7;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 2rem;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: -1;
}

@keyframes float {
    from {
        transform: translate(0, 0);
    }
    to {
        transform: translate(50px, 50px);
    }
}

.glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(150px);
    opacity: 0.3;
}

.glow-1 {
    width: 600px;
    height: 600px;
    background: var(--bunny-purple);
    top: -300px;
    left: 10%;
    animation: pulse 8s ease-in-out infinite;
}

.glow-2 {
    width: 400px;
    height: 400px;
    background: var(--accent);
    bottom: -200px;
    right: 10%;
    animation: pulse 8s ease-in-out infinite 4s;
}

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

.hero-content {
    max-width: 600px;
    text-align: center;
    z-index: 1;
    position: relative;
}

.hero-badge {
    display: inline-block;
    padding: 0.25rem 1rem;
    background: rgba(155, 89, 182, 0.2);
    border: 1px solid var(--bunny-purple);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
    color: var(--bunny-purple-light);
    animation: glow-badge 2s ease-in-out infinite;
}

@keyframes glow-badge {
    0%, 100% {
        box-shadow: 0 0 10px rgba(155, 89, 182, 0.3);
    }
    50% {
        box-shadow: 0 0 20px rgba(155, 89, 182, 0.5);
    }
}

/* Bunny Logo */
.bunny-logo {
    margin-bottom: 1.5rem;
    animation: hop 2s ease-in-out infinite;
}

.bunny-icon {
    font-size: 5rem;
    line-height: 1;
    filter: drop-shadow(0 10px 30px rgba(155, 89, 182, 0.4));
}

@keyframes hop {
    0%, 100% {
        transform: translateY(0);
    }
    25% {
        transform: translateY(-10px) rotate(-5deg);
    }
    50% {
        transform: translateY(0);
    }
    75% {
        transform: translateY(-5px) rotate(5deg);
    }
}

.hero-title {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.gradient-text {
    background: linear-gradient(135deg, var(--bunny-purple), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 2rem;
}

/* Feature Pills */
.hero-features {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 50px;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.feature-item i {
    color: var(--accent);
    font-size: 1rem;
}

/* Email Signup */
.email-signup {
    margin-bottom: 3rem;
}

.waitlist-form {
    display: flex;
    gap: 0.5rem;
    max-width: 400px;
    margin: 0 auto;
    background: var(--bg-secondary);
    padding: 0.5rem;
    border-radius: 50px;
    border: 2px solid var(--border);
    transition: all 0.3s;
}

.waitlist-form:focus-within {
    border-color: var(--bunny-purple);
    box-shadow: 0 0 30px rgba(155, 89, 182, 0.2);
}

.formkit-fields {
    display: flex;
    width: 100%;
    gap: 0.5rem;
}

.waitlist-form input,
.formkit-input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 0.75rem 1rem;
    color: var(--text);
    font-size: 1rem;
    outline: none;
}

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

/* ConvertKit Spinner */
.formkit-spinner {
    display: inline-block;
    width: 1rem;
    height: 1rem;
}

.formkit-spinner > div {
    width: 0.75rem;
    height: 0.75rem;
    background-color: white;
    border-radius: 100%;
    display: inline-block;
    animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}

.formkit-spinner > div:nth-child(1) {
    animation-delay: -0.32s;
}

.formkit-spinner > div:nth-child(2) {
    animation-delay: -0.16s;
}

@keyframes sk-bouncedelay {
    0%, 80%, 100% {
        transform: scale(0);
    }
    40% {
        transform: scale(1.0);
    }
}

.formkit-alert {
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 0.5rem;
    background: rgba(255, 0, 0, 0.1);
    color: #ff4444;
    list-style: none;
}

.formkit-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn {
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--bunny-purple), var(--accent));
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(155, 89, 182, 0.3);
}

.signup-note {
    margin-top: 1rem;
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Coming Soon */
.coming-soon {
    display: inline-block;
    text-align: center;
}

.countdown-item {
    text-align: center;
    margin-bottom: 1rem;
}

.countdown-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--bunny-purple);
    line-height: 1;
}

.countdown-label {
    font-size: 0.875rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.coming-text {
    color: var(--text-muted);
    font-size: 1rem;
    margin-top: 1rem;
    padding: 0.75rem 1.5rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 50px;
    display: inline-block;
}

/* Floating Receipts Animation */
.floating-receipts {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.receipt {
    position: absolute;
    width: 120px;
    background: white;
    border-radius: 8px;
    padding: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    opacity: 0.1;
}

.receipt-content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.receipt-line {
    height: 4px;
    background: #e0e0e0;
    border-radius: 2px;
}

.receipt-line.short {
    width: 60%;
}

.receipt-total {
    margin-top: 0.5rem;
    padding-top: 0.5rem;
    border-top: 1px dashed #ccc;
    font-weight: bold;
    font-size: 0.875rem;
    color: #333;
    text-align: right;
}

.receipt-1 {
    top: 20%;
    left: 10%;
    animation: float-receipt 15s ease-in-out infinite;
    transform: rotate(-15deg);
}

.receipt-2 {
    top: 60%;
    right: 15%;
    animation: float-receipt 18s ease-in-out infinite reverse;
    transform: rotate(10deg);
}

.receipt-3 {
    bottom: 20%;
    left: 20%;
    animation: float-receipt 20s ease-in-out infinite 5s;
    transform: rotate(-5deg);
}

@keyframes float-receipt {
    0%, 100% {
        transform: translateY(0) rotate(-15deg);
    }
    50% {
        transform: translateY(-30px) rotate(-10deg);
    }
}

/* Teaser Section */
.teaser {
    padding: 6rem 2rem;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
}

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

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.125rem;
    margin-bottom: 3rem;
}

.teaser-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.teaser-item {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.3s;
}

.teaser-item:hover {
    border-color: var(--bunny-purple);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(155, 89, 182, 0.1);
}

.teaser-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--bunny-purple);
    opacity: 0.8;
}

.teaser-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--text);
}

.teaser-item p {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Feature Preview Box */
.feature-preview {
    max-width: 600px;
    margin: 0 auto;
    background: var(--bg);
    border: 2px solid var(--bunny-purple);
    border-radius: 1rem;
    padding: 2rem;
    position: relative;
}

.preview-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--bunny-purple);
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
}

.preview-content {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
}

.preview-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.preview-label {
    font-size: 0.875rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.preview-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--accent);
}

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

.footer-content {
    max-width: 600px;
    margin: 0 auto;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.footer-logo span:first-child {
    font-size: 1.5rem;
}

.footer-tagline {
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 1rem;
}

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

/* Success Message */
.success-message {
    position: fixed;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%);
    background: var(--bunny-purple);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(155, 89, 182, 0.3);
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 1000;
}

.success-message.show {
    opacity: 1;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero {
        min-height: 100vh;
        padding: 2rem 1rem;
    }

    .bunny-icon {
        font-size: 3.5rem;
    }

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

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

    .hero-features {
        flex-direction: column;
        align-items: center;
    }

    #waitlist-form {
        flex-direction: column;
        border-radius: 1rem;
        padding: 0.75rem;
    }

    #waitlist-form input {
        padding: 1rem;
    }

    .btn {
        width: 100%;
    }

    .receipt {
        display: none;
    }

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