/* Reset & Base */
:root {
    /* Colors - DevClub Identity */
    --bg-primary: #020617;
    /* Slate 950 */
    --bg-secondary: #0f172a;
    /* Slate 900 */
    --text-primary: #ffffff;
    /* White */
    --text-secondary: #cbd5e1;
    /* Slate 300 */

    --accent-primary: #4ade80;
    /* Green Neon */
    --accent-secondary: #581c87;
    /* Deep Purple */

    --accent-glow: rgba(74, 222, 128, 0.3);

    /* Spacing */
    --container-width: 1200px;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;

    /* Typography */
    --font-heading: 'Inter', sans-serif;
    --font-mono: 'Roboto Mono', monospace;
}

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

body {
    font-family: var(--font-heading);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    display: block;
}

/* Utilities */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

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

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

/* Header */
.header {
    padding: var(--spacing-sm) 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.05em;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-image {
    height: 48px;
    width: auto;
    border-radius: 8px;
    /* rounded-lg equivalent */
}

/* Hero Section */
.hero {
    padding: 180px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
}

.hero-background-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--accent-glow) 0%, rgba(0, 0, 0, 0) 70%);
    opacity: 0.2;
    z-index: 1;
    pointer-events: none;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    font-size: 0.875rem;
    margin-bottom: var(--spacing-md);
    color: var(--sku-secondary);
}

.headline {
    font-size: 3.5rem;
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: var(--spacing-sm);
}

.subheadline {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-lg);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--accent-primary);
    color: var(--bg-primary);
    font-weight: 700;
    border-radius: 8px;
    font-size: 1.125rem;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.4);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.6);
}

/* Benefits Section */
.benefits {
    padding: var(--spacing-lg) 0;
    background: var(--bg-primary);
}

.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: var(--spacing-lg);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
}

.benefit-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: var(--spacing-md);
    border-radius: 12px;
    transition: transform 0.3s ease, background 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

.benefit-card .icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.benefit-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.benefit-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Capture Section */
.capture-section {
    padding: var(--spacing-lg) 0;
    background: linear-gradient(to bottom, var(--bg-primary), var(--bg-secondary));
}

.capture-content {
    max-width: 600px;
    text-align: center;
}

.capture-text {
    margin-bottom: var(--spacing-md);
}

.form-container-placeholder {
    background: var(--bg-primary);
    border: 2px dashed var(--accent-secondary);
    border-radius: 12px;
    padding: var(--spacing-md);
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-message {
    color: var(--text-secondary);
    text-align: center;
}

.placeholder-message p {
    font-weight: bold;
    color: var(--accent-secondary);
    margin-bottom: 0.5rem;
}

.placeholder-message small {
    font-size: 0.8rem;
    opacity: 0.7;
}

/* Footer */
.footer {
    padding: var(--spacing-md) 0;
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.875rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

    .hero {
        padding: 140px 0 80px;
    }
}

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

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.hero-content,
.benefits-grid,
.capture-content {
    animation: fadeInUp 0.8s ease-out forwards;
}

.benefit-card:nth-child(1) {
    animation-delay: 0.2s;
}

.benefit-card:nth-child(2) {
    animation-delay: 0.4s;
}

.benefit-card:nth-child(3) {
    animation-delay: 0.6s;
}

/* Active Campaign Form Overrides */
._form_407 {
    padding: 0 !important;
    margin: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 100% !important;
    font-family: inherit !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

._form-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

._form_element {
    margin-bottom: 0 !important;
}

._form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500 !important;
}

._field-wrapper input[type="text"] {
    width: 100%;
    padding: 0.75rem 1rem !important;
    background-color: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 8px !important;
    color: var(--text-primary) !important;
    font-family: var(--font-heading) !important;
    font-size: 1rem !important;
    transition: all 0.3s ease;
}

._field-wrapper input[type="text"]:focus {
    outline: none;
    border-color: var(--accent-primary) !important;
    background-color: rgba(255, 255, 255, 0.1) !important;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}

._form-branding {
    margin-top: 1rem;
    font-size: 0.75rem;
    opacity: 0;
    pointer-events: none;
    height: 0;
}

._error-inner {
    background: transparent !important;
    color: #ef4444 !important;
    padding: 0.25rem 0 !important;
    font-size: 0.85rem !important;
    box-shadow: none !important;
    border: none !important;
}

._error-arrow {
    display: none !important;
}

.hidden {
    display: none !important;
}