/* Mindrix Landing Page Minimalist Dark Theme */

:root {
    --bg-color: #05050e;
    /* Deep dark blue, almost black "night in Secaucus" */
    --text-primary: #ffffff;
    --text-secondary: #8b92a5;
    --accent: #e2e8f0;
    --primary-btn: #ffffff;
    --primary-btn-text: #000000;
    --secondary-btn: transparent;
    --secondary-btn-border: #ffffff;
    --secondary-btn-text: #ffffff;
    --lightning-color: rgba(147, 197, 253, 0.4);
    --input-bg: rgba(255, 255, 255, 0.05);
    --input-border: rgba(255, 255, 255, 0.1);
    --input-focus: rgba(255, 255, 255, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.5;
}

html {
    scroll-behavior: smooth;
}

/* Lightning Canvas */
#lightning-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    pointer-events: none;
    opacity: 0.8;
}

.container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px 0;
}

h1 {
    font-size: clamp(40px, 8vw, 64px);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.04em;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.hero-logo {
    max-width: 80%;
    max-height: 120px;
    margin-bottom: 24px;
    object-fit: contain;
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.3));
}

.subtitle {
    font-size: clamp(18px, 4vw, 24px);
    font-weight: 400;
    color: var(--text-secondary);
    margin-bottom: 48px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.subtitle p {
    margin: 0;
}

.subtitle .platforms {
    color: var(--text-primary);
    font-weight: 700;
}

.subtitle .highlight {
    color: var(--text-primary);
}

/* Buttons */
.actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    max-width: 400px;
    margin-bottom: 32px;
}

.btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 20px 32px;
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.2s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn:active {
    transform: scale(0.98);
}

.btn-primary {
    background-color: var(--primary-btn);
    color: var(--primary-btn-text);
    border: none;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.btn-primary:hover {
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: var(--secondary-btn);
    color: var(--secondary-btn-text);
    border: 2px solid var(--secondary-btn-border);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.pricing-info {
    font-size: 14px;
    color: var(--text-secondary);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    opacity: 0.7;
}

.pricing-info .dot {
    opacity: 0.5;
}

/* Order Section */
.order-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 0;
    position: relative;
}

.order-section h2 {
    font-size: clamp(28px, 6vw, 40px);
    font-weight: 900;
    margin-bottom: 8px;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.order-section>p {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.input-group input,
.input-group textarea {
    width: 100%;
    background-color: var(--input-bg);
    border: 1px solid var(--input-border);
    color: var(--text-primary);
    padding: 18px 24px;
    font-size: 18px;
    border-radius: 8px;
    outline: none;
    transition: border-color 0.2s ease;
}

.input-group input::placeholder,
.input-group textarea::placeholder {
    color: #64748b;
}

.input-group input:focus,
.input-group textarea:focus {
    border-color: var(--input-focus);
    background-color: rgba(255, 255, 255, 0.08);
}

.input-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    background-color: var(--primary-btn);
    color: var(--primary-btn-text);
    border: none;
    margin-top: 10px;
    position: relative;
    overflow: hidden;
}

/* Form Status */
.form-status {
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    margin-top: 10px;
    padding: 15px;
    border-radius: 8px;
    display: none;
}

.form-status.success {
    display: block;
    background-color: rgba(34, 197, 94, 0.1);
    color: #4ade80;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.form-status.error {
    display: block;
    background-color: rgba(239, 68, 68, 0.1);
    color: #f87171;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

/* Loader */
.btn-loader {
    width: 24px;
    height: 24px;
    border: 3px solid rgba(0, 0, 0, 0.2);
    border-bottom-color: #000;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
    position: absolute;
}

.loader-hidden {
    display: none;
}

.loading .btn-text {
    visibility: hidden;
}

.loading .btn-loader {
    display: inline-block;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Footer */
footer {
    padding: 40px 0;
    text-align: center;
    color: var(--text-secondary);
    font-size: 14px;
}

footer a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 700;
}

footer a:hover {
    text-decoration: underline;
}

/* Simple mobile layout adjustments */
@media (max-width: 480px) {
    .pricing-info {
        flex-direction: column;
        gap: 8px;
    }

    .pricing-info .dot {
        display: none;
    }

    .btn {
        padding: 16px 24px;
        font-size: 18px;
    }
}