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

:root {
    --bg-primary: #ffffff;
    --bg-secondary: #fafafa;
    --text-primary: #1a1a1a;
    --text-secondary: #404040;
    --text-muted: #737373;
    --accent-primary: #6b21a8;
    --accent-secondary: #581c87;
    --accent-tertiary: #4c1d95;
    --gradient-primary: linear-gradient(135deg, #6b21a8 0%, #581c87 50%, #4c1d95 100%);
    --gradient-secondary: linear-gradient(135deg, #7c3aed 0%, #6b21a8 100%);
    --border-color: #e8e8e8;
    --shadow-sm: 0 4px 12px rgba(107, 33, 168, 0.12);
    --shadow-md: 0 8px 24px rgba(107, 33, 168, 0.15);
    --shadow-lg: 0 16px 48px rgba(107, 33, 168, 0.20);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 32px;
}

/* Background Animation */
.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(107, 33, 168, 0.08) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(88, 28, 135, 0.06) 0%, transparent 50%), radial-gradient(circle at 40% 80%, rgba(76, 29, 149, 0.04) 0%, transparent 50%);
    animation: backgroundFloat 20s ease-in-out infinite;
    pointer-events: none;
    z-index: -1;
}

@keyframes backgroundFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 1;
    }

    50% {
        transform: translateY(-20px) rotate(1deg);
        opacity: 0.8;
    }
}

.breadcrumb {
    text-align: center;
    padding: 20px 0;
    margin-bottom: 20px;
}

.breadcrumb a {
    color: var(--accent-primary);
    text-decoration: none;
    font-size: 14px;
}

    .breadcrumb a:hover {
        text-decoration: underline;
    }

.breadcrumb span {
    color: var(--text-muted);
    margin: 0 8px;
}


/* Main Content */
.main-content {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 0;
}

.subscribe-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(107, 33, 168, 0.15);
    border-radius: 32px;
    padding: 60px 50px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 800px;
}

    .subscribe-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 6px;
        background: var(--gradient-primary);
        border-radius: 32px 32px 0 0;
    }

    .subscribe-card::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(145deg, rgba(255,255,255,0.1) 0%, rgba(107, 33, 168, 0.02) 100%);
        border-radius: 32px;
        pointer-events: none;
    }

/* Logo */
.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 32px;
    position: relative;
    z-index: 1;
}

.logo-icon {
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    animation: logoFloat 3s ease-in-out infinite;
}

@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0px);
    }

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

.logo-text {
    font-size: 28px;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Headline */
.headline {
    position: relative;
    z-index: 1;
    margin-bottom: 16px;
}

    .headline h1 {
        font-size: clamp(32px, 4vw, 42px);
        font-weight: 600;
        line-height: 1.2;
        background: var(--gradient-primary);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        letter-spacing: -0.02em;
        margin-bottom: 20px;
    }

.subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 8px;
    font-weight: 500;
}

.description {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 40px;
    line-height: 1.6;
}

/* Signup Form */
.signup-form {
    position: relative;
    z-index: 1;
    margin-bottom: 32px;
}

.form-container {
    background: white;
    border: 3px solid var(--border-color);
    border-radius: 20px;
    padding: 12px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

    .form-container:focus-within {
        border-color: var(--accent-primary);
        box-shadow: 0 0 0 4px rgba(107, 33, 168, 0.15), var(--shadow-md);
        transform: translateY(-2px);
    }

.form-row {
    display: flex;
    gap: 12px;
    align-items: stretch;
}

.email-input {
    flex: 1;
    padding: 20px 24px;
    border: none;
    background: transparent;
    color: var(--text-primary);
    font-size: 16px;
    outline: none;
    font-family: inherit;
    font-weight: 500;
}

    .email-input::placeholder {
        color: var(--text-muted);
        font-weight: 400;
    }

.submit-btn {
    background: var(--gradient-primary);
    color: white;
    padding: 20px 32px;
    border: none;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

    .submit-btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
        transition: left 0.5s;
    }

    .submit-btn:hover {
        transform: translateY(-3px);
        box-shadow: var(--shadow-lg);
    }

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

    .submit-btn:active {
        transform: translateY(-1px);
    }

/* Trust Signals */
.trust-signals {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 500;
}

.trust-icon {
    width: 20px;
    height: 20px;
    color: var(--accent-primary);
}

/* Preview Section */
.preview-section {
    position: relative;
    z-index: 1;
    background: linear-gradient(145deg, rgba(107, 33, 168, 0.06) 0%, rgba(255,255,255,0.95) 100%);
    border: 1px solid rgba(107, 33, 168, 0.15);
    border-radius: 18px;
    padding: 32px 28px;
    margin-bottom: 32px;
    backdrop-filter: blur(10px);
}

.preview-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 24px;
}

.preview-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 28px;
}

@media (max-width: 600px) {
    .preview-grid {
        grid-template-columns: 1fr;
    }
}

.preview-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 20px 18px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(107, 33, 168, 0.1);
    border-radius: 14px;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    min-height: 110px;
}

    .preview-item:hover {
        transform: translateY(-2px);
        border-color: rgba(107, 33, 168, 0.2);
        box-shadow: var(--shadow-sm);
    }

.preview-icon {
    font-size: 20px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(107, 33, 168, 0.1) 0%, rgba(255,255,255,0.8) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(107, 33, 168, 0.15);
    margin-top: 2px;
}

.preview-content {
    flex: 1;
    min-width: 0;
}

.preview-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.preview-desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.4;
}

.preview-footer {
    display: flex;
    justify-content: center;
    gap: 28px;
    padding-top: 20px;
    border-top: 1px solid rgba(107, 33, 168, 0.1);
    flex-wrap: wrap;
}

.preview-schedule,
.preview-time {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Market Data Section */
.market-data {
    position: relative;
    z-index: 1;
    background: linear-gradient(145deg, rgba(107, 33, 168, 0.04) 0%, rgba(255,255,255,0.95) 100%);
    border: 1px solid rgba(107, 33, 168, 0.12);
    border-radius: 20px;
    padding: 32px 28px;
    margin-bottom: 32px;
    backdrop-filter: blur(10px);
}

.market-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 24px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 24px;
}

.stat-item {
    text-align: center;
    padding: 20px 16px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(107, 33, 168, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

    .stat-item:hover {
        transform: translateY(-2px);
        border-color: rgba(107, 33, 168, 0.2);
        box-shadow: var(--shadow-sm);
    }

.stat-number {
    font-size: 24px;
    font-weight: 700;
    color: var(--accent-primary);
    margin-bottom: 8px;
    line-height: 1;
}

.stat-label {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.3;
    font-weight: 500;
}

.market-footer {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(107, 33, 168, 0.1);
}

.market-note {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 500;
    font-style: italic;
}

/* Social Proof */
.social-proof {
    position: relative;
    z-index: 1;
    background: linear-gradient(145deg, rgba(107, 33, 168, 0.08) 0%, rgba(255,255,255,0.9) 100%);
    border: 1px solid rgba(107, 33, 168, 0.2);
    border-radius: 16px;
    padding: 28px;
    margin-bottom: 32px;
}

.social-proof-text {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 12px;
    font-weight: 500;
}

.subscriber-count {
    font-size: 18px;
    font-weight: 700;
    color: var(--accent-primary);
}

/* Social Media Links */
.social-links {
    position: relative;
    z-index: 1;
    text-align: center;
    margin-bottom: 28px;
}

.social-text {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 16px;
    font-weight: 500;
}

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

.social-btn {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(107, 33, 168, 0.15);
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
}

    .social-btn:hover {
        transform: translateY(-3px);
        box-shadow: var(--shadow-md);
    }

    .social-btn.twitter {
        color: #1da1f2;
    }

        .social-btn.twitter:hover {
            background: #1da1f2;
            color: white;
            border-color: #1da1f2;
        }

    .social-btn.linkedin {
        color: #0077b5;
    }

        .social-btn.linkedin:hover {
            background: #0077b5;
            color: white;
            border-color: #0077b5;
        }

    .social-btn.instagram {
        color: #E4405F;
    }

        .social-btn.instagram:hover {
            background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
            color: white;
            border-color: #E4405F;
        }

/* Simple Footer */
.simple-footer {
    background: var(--bg-secondary);
    border-top: 1px solid rgba(107, 33, 168, 0.1);
    padding: 20px 0;
    text-align: center;
}

    .simple-footer p {
        color: var(--text-muted);
        font-size: 14px;
        margin: 0;
    }

/* Footer Links */
.footer-links {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    gap: 28px;
    flex-wrap: wrap;
}

.footer-link {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
}

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


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

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

.success-message {
    background: linear-gradient(145deg, rgba(22, 163, 74, 0.1) 0%, rgba(255,255,255,0.9) 100%);
    border: 2px solid rgba(22, 163, 74, 0.3);
    border-radius: 16px;
    padding: 24px;
    margin-top: 20px;
    animation: slideIn 0.5s ease forwards;
}

.success-title {
    font-size: 18px;
    font-weight: 600;
    color: #16a34a;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
}

.success-text {
    font-size: 14px;
    color: var(--text-secondary);
    text-align: center;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .container {
        padding: 0 24px;
    }

    .main-content {
        padding: 40px 0;
    }

    .subscribe-card {
        padding: 36px 28px;
        border-radius: 20px;
    }

    .form-row {
        flex-direction: column;
        gap: 16px;
    }

    .email-input {
        padding: 18px 20px;
        text-align: center;
    }

    .submit-btn {
        padding: 18px 32px;
        width: 100%;
    }

    .trust-signals {
        gap: 20px;
    }

    .preview-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .preview-item {
        min-height: auto;
    }

    .trust-item {
        font-size: 13px;
    }

    .preview-footer {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .preview-schedule,
    .preview-time {
        justify-content: center;
    }

    .footer-links {
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .main-content {
        padding: 20px 0;
    }

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

    .headline h1 {
        font-size: 28px;
    }

    .subtitle {
        font-size: 18px;
    }

    .container {
        padding: 0 20px;
    }
}



@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

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