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

:root {
    --primary: #FF6B35;
    --primary-dark: #E55A2B;
    --secondary: #1A1A2E;
    --accent: #E94560;
    --bg-dark: #0F0F0F;
    --bg-card: #1A1A1A;
    --text: #FFFFFF;
    --text-muted: #A0A0A0;
    --border: #2A2A2A;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg-dark);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, var(--bg-dark) 0%, #1A1A2E 50%, var(--bg-dark) 100%);
    padding: 80px 24px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 107, 53, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.badge {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 8px 20px;
    border-radius: 24px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 32px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.hero h1 {
    font-size: clamp(2.5rem, 7vw, 5rem);
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.highlight {
    color: var(--primary);
    position: relative;
}

.subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-muted);
    margin-bottom: 48px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

/* Email Form */
.email-form {
    display: flex;
    gap: 12px;
    max-width: 500px;
    margin: 0 auto;
}

.email-form input {
    flex: 1;
    padding: 18px 24px;
    border: 2px solid var(--border);
    border-radius: 12px;
    background: var(--bg-card);
    color: white;
    font-size: 16px;
    font-family: inherit;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.email-form input::placeholder {
    color: #666;
}

.email-form input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.15);
}

.email-form button {
    padding: 18px 36px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
    white-space: nowrap;
}

.email-form button:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

.email-form button:active {
    transform: translateY(0);
}

.email-form button:disabled {
    cursor: not-allowed;
    opacity: 0.8;
}

.form-note {
    margin-top: 16px;
    font-size: 14px;
    color: var(--text-muted);
}

/* ============================================
   PAIN POINTS SECTION
   ============================================ */
.pain-points {
    padding: 120px 24px;
    background: var(--bg-dark);
}

.pain-points h2 {
    text-align: center;
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin-bottom: 64px;
    font-weight: 700;
}

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

.pain-card {
    background: var(--bg-card);
    padding: 36px;
    border-radius: 16px;
    border: 1px solid var(--border);
    transition: transform 0.2s, border-color 0.2s;
}

.pain-card:hover {
    transform: translateY(-2px);
    border-color: var(--accent);
}

.pain-icon {
    font-size: 20px;
    color: var(--accent);
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(233, 69, 96, 0.1);
    border-radius: 10px;
}

.pain-card h3 {
    font-size: 1.25rem;
    margin: 20px 0 12px;
    font-weight: 600;
}

.pain-card p {
    color: var(--text-muted);
    line-height: 1.7;
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.features {
    padding: 120px 24px;
    background: #111111;
}

.features h2 {
    text-align: center;
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin-bottom: 64px;
    font-weight: 700;
}

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

.feature-card {
    background: var(--bg-card);
    padding: 36px;
    border-radius: 16px;
    border: 1px solid var(--border);
    transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
    box-shadow: 0 12px 40px rgba(255, 107, 53, 0.1);
}

.feature-icon {
    font-size: 36px;
    display: block;
    margin-bottom: 8px;
}

.feature-card h3 {
    font-size: 1.25rem;
    margin: 16px 0 12px;
    font-weight: 600;
}

.feature-card p {
    color: var(--text-muted);
    line-height: 1.7;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
    padding: 120px 24px;
    background: var(--bg-dark);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin-bottom: 28px;
    font-weight: 700;
}

.about-text p {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-name {
    color: var(--text);
    font-weight: 500;
    margin-top: 32px !important;
}

.about-name strong {
    color: var(--primary);
}

.image-placeholder {
    width: 100%;
    aspect-ratio: 1;
    background: var(--bg-card);
    border-radius: 20px;
    border: 2px dashed var(--border);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    gap: 12px;
}

.image-placeholder span {
    font-size: 48px;
}

.image-placeholder p {
    font-size: 1rem;
    margin: 0;
}

/* ============================================
   DISCORD CTA SECTION
   ============================================ */
.discord-cta {
    padding: 120px 24px;
    background: #111111;
    text-align: center;
}

.discord-cta h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin-bottom: 16px;
    font-weight: 700;
}

.discord-cta p {
    color: var(--text-muted);
    font-size: 1.15rem;
    margin-bottom: 40px;
}

.discord-button {
    display: inline-block;
    padding: 18px 48px;
    background: #5865F2;
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    transition: background 0.2s, transform 0.1s;
}

.discord-button:hover {
    background: #4752C4;
    transform: translateY(-2px);
}

/* ============================================
   FOOTER
   ============================================ */
footer {
    padding: 64px 24px 40px;
    background: var(--bg-dark);
    border-top: 1px solid var(--border);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 48px;
}

.footer-brand .logo {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.02em;
}

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

.footer-links {
    display: flex;
    gap: 36px;
}

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

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

.footer-bottom {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 14px;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 768px) {
    .email-form {
        flex-direction: column;
    }

    .email-form button {
        width: 100%;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-image {
        order: -1;
    }

    .footer-content {
        flex-direction: column;
        gap: 32px;
        text-align: center;
    }

    .footer-links {
        gap: 24px;
    }

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

@media (max-width: 480px) {
    .hero {
        padding: 60px 20px;
    }

    .pain-points,
    .features,
    .about,
    .discord-cta {
        padding: 80px 20px;
    }
}
