/* === DESIGN SYSTEM — CLAWSMB UMBRELLA === */
:root {
    --bg-primary: #08080e;
    --bg-secondary: #0e0f18;
    --bg-card: #131420;
    --bg-card-hover: #191b2a;

    --text-primary: #ecedf2;
    --text-secondary: #95979f;
    --text-muted: #5e606d;

    --accent: #ff6b35;
    --accent-light: #ff8c5a;
    --accent-glow: rgba(255, 107, 53, 0.2);
    --accent-gradient: linear-gradient(135deg, #ff6b35, #ff8c5a);

    --clawbolt: #6c5ce7;
    --clawbolt-light: #a29bfe;
    --nemoclaw: #76b900;
    --nemoclaw-light: #8fc926;

    --success: #00d2d3;
    --danger: #ff6b6b;
    --warning: #ffd93d;

    --radius: 12px;
    --radius-lg: 20px;
    --radius-full: 9999px;

    --shadow-sm: 0 2px 8px rgba(0,0,0,0.4);
    --shadow-md: 0 8px 32px rgba(0,0,0,0.5);
    --shadow-lg: 0 16px 64px rgba(0,0,0,0.6);
    --shadow-glow: 0 0 40px var(--accent-glow);

    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
}

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

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

a { color: var(--accent-light); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--accent); }

/* === GRADIENT BACKGROUND === */
.gradient-bg {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse at 20% 20%, rgba(108, 92, 231, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(118, 185, 0, 0.05) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(255, 107, 53, 0.03) 0%, transparent 60%);
}

/* === LAYOUT === */
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.section { position: relative; z-index: 1; padding: 100px 0; }
.section-dark { background: var(--bg-secondary); }

.section-header { text-align: center; margin-bottom: 60px; }

.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent);
    background: rgba(255, 107, 53, 0.1);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    margin-bottom: 16px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.section-desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 660px;
    margin: 0 auto;
}

/* === HEADER === */
#main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(8, 8, 14, 0.88);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 0 24px;
}

.header-container {
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.logo { display: flex; align-items: center; gap: 10px; font-size: 1.2rem; font-weight: 700; }
.logo-icon { font-size: 1.3rem; }
.logo-accent { color: var(--accent); }

.header-nav { display: flex; gap: 32px; }
.nav-link { font-size: 0.875rem; font-weight: 500; color: var(--text-secondary); transition: color 0.2s; }
.nav-link:hover { color: var(--text-primary); }

.header-cta {
    font-size: 0.85rem;
    font-weight: 700;
    padding: 8px 20px;
    background: var(--accent-gradient);
    color: white;
    border-radius: var(--radius-full);
    transition: all 0.3s;
}

.header-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px var(--accent-glow);
    color: white;
}

/* === HERO === */
#hero {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 24px 80px;
    text-align: center;
}

.hero-content { max-width: 820px; }

.launch-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 107, 53, 0.08);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: var(--radius-full);
    padding: 8px 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 32px;
    animation: fadeUp 0.8s ease-out;
}

.badge-pulse {
    width: 8px; height: 8px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.5); }
    50% { opacity: 0.8; box-shadow: 0 0 0 8px rgba(255, 107, 53, 0); }
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-title {
    font-size: 3.8rem;
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
    animation: fadeUp 0.8s ease-out 0.2s both;
}

.hero-gradient-text {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 36px;
    animation: fadeUp 0.8s ease-out 0.4s both;
}

.hero-subtitle strong { color: var(--text-primary); }

/* === BRAND PILLS === */
.hero-brands {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 48px;
    animation: fadeUp 0.8s ease-out 0.6s both;
}

.brand-pill {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    border-radius: var(--radius);
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s;
    border: 1px solid;
}

.brand-clawbolt {
    background: rgba(108, 92, 231, 0.08);
    border-color: rgba(108, 92, 231, 0.2);
    color: var(--clawbolt-light);
}

.brand-clawbolt:hover {
    background: rgba(108, 92, 231, 0.15);
    border-color: rgba(108, 92, 231, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(108, 92, 231, 0.15);
    color: var(--clawbolt-light);
}

.brand-nemoclaw {
    background: rgba(118, 185, 0, 0.06);
    border-color: rgba(118, 185, 0, 0.2);
    color: var(--nemoclaw-light);
}

.brand-nemoclaw:hover {
    background: rgba(118, 185, 0, 0.12);
    border-color: rgba(118, 185, 0, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(118, 185, 0, 0.12);
    color: var(--nemoclaw-light);
}

.brand-icon { font-size: 1.2rem; }

/* === HERO PROOF === */
.hero-proof {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    animation: fadeUp 0.8s ease-out 0.8s both;
}

.proof-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.proof-divider {
    width: 1px;
    height: 20px;
    background: rgba(255, 255, 255, 0.1);
}

/* === PRODUCT CARDS === */
.product-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 40px;
    transition: all 0.3s;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.product-header {
    padding: 40px 40px 32px;
    position: relative;
}

.product-header-clawbolt {
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.12), rgba(162, 155, 254, 0.05));
    border-bottom: 1px solid rgba(108, 92, 231, 0.15);
}

.product-header-nemoclaw {
    background: linear-gradient(135deg, rgba(118, 185, 0, 0.1), rgba(143, 201, 38, 0.04));
    border-bottom: 1px solid rgba(118, 185, 0, 0.15);
}

.product-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-secondary);
    background: rgba(255, 255, 255, 0.06);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    margin-bottom: 12px;
}

.product-logo { font-size: 1.8rem; font-weight: 900; margin-bottom: 8px; }
.product-tagline { font-size: 1.05rem; color: var(--text-secondary); }

.product-body { padding: 36px 40px 40px; }

.product-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 28px;
}

.pf-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.pf-icon { font-size: 1.5rem; flex-shrink: 0; margin-top: 2px; }
.pf-item strong { font-size: 0.95rem; display: block; margin-bottom: 4px; }
.pf-item p { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.5; margin: 0; }

.product-audience { margin-bottom: 28px; }
.product-audience h4 { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 12px; text-transform: uppercase; letter-spacing: 0.1em; }

.audience-tags { display: flex; flex-wrap: wrap; gap: 8px; }

.audience-tags span {
    font-size: 0.8rem;
    padding: 5px 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-full);
    color: var(--text-secondary);
}

.product-cta {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 700;
    padding: 14px 28px;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
}

.cta-clawbolt {
    background: linear-gradient(135deg, var(--clawbolt), var(--clawbolt-light));
}

.cta-nemoclaw {
    background: linear-gradient(135deg, var(--nemoclaw), var(--nemoclaw-light));
    color: #000;
}

.cta-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
    color: white;
}

.cta-nemoclaw:hover { color: #000; }

.btn-icon { font-size: 1.1rem; }

.product-price {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.product-price strong {
    color: var(--text-primary);
    font-size: 1.1rem;
}

/* === USP GRID === */
.usp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.usp-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius);
    padding: 32px 28px;
    transition: all 0.3s;
}

.usp-card:hover {
    border-color: rgba(255, 107, 53, 0.2);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.3);
}

.usp-icon { font-size: 2rem; margin-bottom: 16px; }
.usp-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; }
.usp-card p { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.6; }

/* === FAQ === */
.faq-list { max-width: 700px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }

.faq-item {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius);
    overflow: hidden;
    transition: border-color 0.3s;
}

.faq-item:hover { border-color: rgba(255, 107, 53, 0.2); }

.faq-item summary {
    padding: 20px 24px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
    content: '+';
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--accent);
    transition: transform 0.3s;
}

.faq-item[open] summary::after { transform: rotate(45deg); }

.faq-item p {
    padding: 0 24px 20px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.75;
}

/* === SIGNUP / KIT FORM === */
.signup-content {
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
}

.signup-content h2 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 16px;
}

.signup-content > p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 36px;
}

.signup-content strong { color: var(--accent); }

/* Kit.com form styling overrides for dark theme */
.kit-form-wrapper {
    max-width: 520px;
    margin: 0 auto;
}

.kit-form-wrapper .formkit-form {
    max-width: 100% !important;
}

.kit-form-wrapper .formkit-form [data-style="clean"] {
    padding: 0 !important;
}

.kit-form-wrapper .formkit-fields {
    display: flex !important;
    gap: 8px;
    padding: 6px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 107, 53, 0.15);
    border-radius: var(--radius);
    transition: border-color 0.3s, box-shadow 0.3s;
}

.kit-form-wrapper .formkit-fields:focus-within {
    border-color: var(--accent);
    box-shadow: var(--shadow-glow);
}

.kit-form-wrapper .formkit-input {
    background: transparent !important;
    border: none !important;
    color: var(--text-primary) !important;
    font-family: var(--font-sans) !important;
    font-size: 1rem !important;
    padding: 14px 16px !important;
    border-radius: 0 !important;
}

.kit-form-wrapper .formkit-input::placeholder {
    color: var(--text-muted) !important;
    opacity: 1 !important;
}

.kit-form-wrapper .formkit-submit {
    background: var(--accent-gradient) !important;
    border: none !important;
    border-radius: 8px !important;
    font-family: var(--font-sans) !important;
    font-weight: 700 !important;
    font-size: 0.95rem !important;
    cursor: pointer !important;
    transition: all 0.3s !important;
    margin-bottom: 0 !important;
    white-space: nowrap;
}

.kit-form-wrapper .formkit-submit:hover {
    transform: translateY(-1px) !important;
    box-shadow: 0 8px 24px var(--accent-glow) !important;
}

.kit-form-wrapper .formkit-submit > span {
    padding: 14px 24px !important;
}

.kit-form-wrapper .formkit-alert-success {
    background: rgba(0, 210, 211, 0.1) !important;
    border-color: var(--success) !important;
    color: var(--success) !important;
    border-radius: var(--radius) !important;
}

.kit-form-wrapper .formkit-alert-error {
    background: rgba(255, 107, 107, 0.1) !important;
    border-color: var(--danger) !important;
    color: var(--danger) !important;
    border-radius: var(--radius) !important;
}

.kit-form-wrapper .formkit-powered-by-convertkit-container {
    display: none !important;
}

.form-disclaimer {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 16px;
}

/* === FOOTER === */
#site-footer {
    position: relative;
    z-index: 1;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px 24px 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-left { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.footer-tagline { font-size: 0.8rem; color: var(--text-muted); margin-left: 8px; }
.footer-right { display: flex; align-items: center; gap: 24px; }
.footer-links { display: flex; gap: 20px; }
.footer-links a { font-size: 0.85rem; color: var(--text-muted); }
.footer-links a:hover { color: var(--text-primary); }

.footer-bottom { text-align: center; margin-top: 32px; padding-top: 20px; border-top: 1px solid rgba(255, 255, 255, 0.04); }
.footer-bottom p { font-size: 0.75rem; color: var(--text-muted); }

/* === RESPONSIVE === */
@media (max-width: 768px) {
    .header-nav { display: none; }
    .hero-title { font-size: 2.5rem; }
    .hero-brands { flex-direction: column; align-items: center; }
    .hero-proof { flex-direction: column; gap: 12px; }
    .proof-divider { display: none; }
    .product-features { grid-template-columns: 1fr; }
    .product-header, .product-body { padding: 24px; }
    .product-cta { flex-direction: column; align-items: flex-start; }
    .usp-grid { grid-template-columns: 1fr; }
    .section-header h2 { font-size: 1.8rem; }
    .signup-content h2 { font-size: 1.8rem; }
    .footer-content { flex-direction: column; text-align: center; }
    .footer-right { flex-direction: column; }

    .kit-form-wrapper .formkit-fields {
        flex-direction: column !important;
        background: transparent;
        border: none;
        padding: 0;
    }

    .kit-form-wrapper .formkit-fields:focus-within {
        box-shadow: none;
        border-color: transparent;
    }

    .kit-form-wrapper .formkit-input {
        background: rgba(255, 255, 255, 0.04) !important;
        border: 1px solid rgba(255, 107, 53, 0.15) !important;
        border-radius: var(--radius) !important;
    }
}

@media (max-width: 480px) {
    .hero-title { font-size: 2rem; }
    .section { padding: 60px 0; }
    .header-cta { display: none; }
}
