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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: #0a0a0a;
    color: #ffffff;
    line-height: 1.6;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
    position: relative;
    overflow: hidden;
    padding: 20px;
}

.hero::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(218,165,32,0.1) 0%, transparent 70%);
    top: -250px;
    right: -250px;
}

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

.logo {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    color: #DAA520;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(218,165,32,0.3);
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    background: linear-gradient(135deg, #ffffff 0%, #DAA520 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subtitle {
    font-size: 1.5rem;
    color: #b0b0b0;
    margin-bottom: 3rem;
    font-weight: 300;
}

/* Product Image Placeholder */
.product-preview {
    width: 100%;
    max-width: 800px;
    height: 500px;
    margin: 3rem auto;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 20px;
    border: 2px solid rgba(218,165,32,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    transition: all 0.3s;
}

.product-preview:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 70px rgba(0,0,0,0.6);
}

.product-preview-text {
    font-size: 1.2rem;
    color: #666;
    text-align: center;
    padding: 20px;
}

/* Timeline Badge */
.timeline-badge {
    background: rgba(218,165,32,0.15);
    border: 2px solid rgba(218,165,32,0.4);
    color: #DAA520;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 2rem auto;
    display: inline-block;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(218,165,32,0.4);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(218,165,32,0);
    }
}

/* Email Form */
.email-section {
    background: rgba(26, 26, 46, 0.8);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(218,165,32,0.2);
    max-width: 600px;
    margin: 3rem auto;
}

.trust-note {
    text-align: center;
    color: #888;
    font-size: 0.9rem;
    margin-top: 1rem;
}

.email-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #DAA520;
}

.form-subtitle {
    font-size: 1.1rem;
    color: #b0b0b0;
    margin-bottom: 1.5rem;
}

input[type="text"],
input[type="email"],
select {
    padding: 1rem 1.5rem;
    font-size: 1rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(218,165,32,0.3);
    border-radius: 10px;
    color: #ffffff;
    transition: all 0.3s;
    font-family: inherit;
}

input[type="text"]:focus,
input[type="email"]:focus,
select:focus {
    outline: none;
    border-color: #DAA520;
    background: rgba(255,255,255,0.08);
    box-shadow: 0 0 20px rgba(218,165,32,0.2);
}

input::placeholder {
    color: #666;
}

select {
    cursor: pointer;
}

select option {
    background: #1a1a2e;
    color: #ffffff;
}

/* Form Questions */
.form-question {
    margin: 1rem 0;
}

.form-question label {
    display: block;
    color: #b0b0b0;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    padding: 0.75rem;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(218,165,32,0.2);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
}

.checkbox-label:hover {
    background: rgba(255,255,255,0.05);
    border-color: rgba(218,165,32,0.4);
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-right: 0.75rem;
    cursor: pointer;
    accent-color: #DAA520;
}

.checkbox-label span {
    color: #d0d0d0;
    font-size: 0.95rem;
}

/* CTA Button */
.cta-button {
    padding: 1.2rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    background: linear-gradient(135deg, #DAA520 0%, #B8860B 100%);
    color: #0a0a0a;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 1rem;
    position: relative;
}

.cta-button:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(218,165,32,0.4);
}

.cta-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.button-loading {
    display: none;
}

.cta-button.loading .button-text {
    display: none;
}

.cta-button.loading .button-loading {
    display: inline;
}

.discount-badge {
    display: inline-block;
    background: rgba(218,165,32,0.2);
    color: #DAA520;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    border: 1px solid rgba(218,165,32,0.3);
}

/* Success/Error Messages */
.success-message,
.error-message {
    display: none;
    padding: 1rem;
    border-radius: 10px;
    margin-top: 1rem;
    text-align: center;
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.success-message {
    background: rgba(34, 197, 94, 0.2);
    border: 1px solid rgba(34, 197, 94, 0.5);
    color: #22c55e;
}

.error-message {
    background: rgba(239, 68, 68, 0.2);
    border: 1px solid rgba(239, 68, 68, 0.5);
    color: #ef4444;
}

.success-message.show,
.error-message.show {
    display: block;
}

/* Social Share */
.social-share {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(218,165,32,0.2);
}

.share-text {
    color: #b0b0b0;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.share-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.share-btn {
    padding: 0.75rem 1.5rem;
    border: 1px solid rgba(218,165,32,0.3);
    background: rgba(255,255,255,0.05);
    color: #ffffff;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 0.9rem;
}

.share-btn:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(218,165,32,0.5);
    transform: translateY(-2px);
}

.share-btn.copied {
    background: rgba(34, 197, 94, 0.2);
    border-color: rgba(34, 197, 94, 0.5);
    color: #22c55e;
}

/* Story Section */
.story-section {
    padding: 6rem 20px;
    max-width: 900px;
    margin: 0 auto;
    background: rgba(26, 26, 46, 0.3);
}

.story-content {
    text-align: center;
}

.story-text {
    margin: 3rem 0;
}

.story-paragraph {
    font-size: 1.15rem;
    line-height: 1.9;
    color: #d0d0d0;
    margin-bottom: 2rem;
    text-align: left;
}

.story-paragraph strong {
    color: #DAA520;
    font-weight: 600;
}

.founder-signature {
    text-align: right;
    font-style: italic;
    color: #DAA520;
    font-size: 1.1rem;
    margin-top: 3rem;
}

/* Social Proof */
.social-proof {
    padding: 4rem 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.proof-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 2rem;
}

.proof-item {
    text-align: center;
    padding: 2rem;
    background: rgba(26, 26, 46, 0.4);
    border-radius: 15px;
    border: 1px solid rgba(218,165,32,0.2);
    transition: all 0.3s;
}

.proof-item:hover {
    transform: translateY(-5px);
    border-color: rgba(218,165,32,0.5);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.proof-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.proof-item h3 {
    font-size: 1.3rem;
    color: #DAA520;
    margin-bottom: 0.5rem;
}

.proof-item p {
    color: #b0b0b0;
    font-size: 1rem;
}

/* Features Section */
.features {
    padding: 6rem 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 4rem;
    color: #DAA520;
}

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

.feature-card {
    background: rgba(26, 26, 46, 0.6);
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid rgba(218,165,32,0.2);
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(218,165,32,0.5);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.feature-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #DAA520;
}

.feature-description {
    color: #b0b0b0;
    font-size: 1.05rem;
}

/* Use Cases */
.use-cases {
    padding: 6rem 20px;
    background: rgba(26, 26, 46, 0.3);
}

.use-cases-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.use-case {
    text-align: center;
    padding: 2rem;
    background: rgba(26, 26, 46, 0.4);
    border-radius: 15px;
    border: 1px solid rgba(218,165,32,0.1);
    transition: all 0.3s;
}

.use-case:hover {
    transform: translateY(-5px);
    border-color: rgba(218,165,32,0.3);
}

.use-case-emoji {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.use-case-title {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #DAA520;
}

.use-case-description {
    color: #888;
}

/* Stats Section */
.stats {
    padding: 4rem 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.stat {
    padding: 2rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #DAA520;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: #b0b0b0;
}

/* Footer */
footer {
    padding: 3rem 20px;
    text-align: center;
    border-top: 1px solid rgba(218,165,32,0.2);
    color: #666;
}

/* Responsive */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    .logo {
        font-size: 2rem;
    }

    .subtitle {
        font-size: 1.2rem;
    }

    .product-preview {
        height: 300px;
    }

    .timeline-badge {
        font-size: 0.9rem;
        padding: 0.75rem 1.5rem;
    }

    .email-section {
        padding: 2rem;
    }

    .story-paragraph {
        font-size: 1rem;
    }

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

    .features-grid,
    .use-cases-grid {
        grid-template-columns: 1fr;
    }

    .share-buttons {
        flex-direction: column;
    }

    .share-btn {
        width: 100%;
    }

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

    .form-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }

    .logo {
        font-size: 1.5rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    .product-preview {
        height: 250px;
    }

    .email-section {
        padding: 1.5rem;
    }

    .stat-number {
        font-size: 2rem;
    }
}
