/* Style Reset and Variable Definitions */
:root {
    --primary-bg: #030a16;
    --navy-dark: #001229;
    --navy-medium: #011b3f;
    --navy-light: #052d62;
    --accent-emerald: #00b875;
    --accent-teal: #00d2c4;
    --text-white: #ffffff;
    --text-silver: #c5d3e8;
    --text-muted: #647b9b;
    --border-glass: rgba(255, 255, 255, 0.08);
    --border-active: rgba(0, 184, 117, 0.4);
    --card-bg-glass: rgba(1, 27, 63, 0.4);
    --card-bg-glass-hover: rgba(5, 45, 98, 0.55);
    --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
    --font-title: 'Montserrat', system-ui, -apple-system, sans-serif;
    --glow-emerald: rgba(0, 184, 117, 0.25);
    --glow-teal: rgba(0, 210, 196, 0.2);
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html, body {
    width: 100%;
    min-height: 100vh;
    font-family: var(--font-sans);
    background-color: var(--primary-bg);
    color: var(--text-silver);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--primary-bg);
}
::-webkit-scrollbar-thumb {
    background: var(--navy-light);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent-emerald);
}

/* Background Particle Canvas */
#particle-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    opacity: 0.85;
}

/* Ambient glow blobs */
.ambient-glow {
    position: fixed;
    border-radius: 50%;
    filter: blur(140px);
    z-index: 0;
    pointer-events: none;
    opacity: 0.15;
}
.glow-1 {
    top: -10%;
    left: 10%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, var(--accent-teal) 0%, transparent 70%);
    animation: floatGlow 15s infinite alternate ease-in-out;
}
.glow-2 {
    bottom: -10%;
    right: 5%;
    width: 45vw;
    height: 45vw;
    background: radial-gradient(circle, var(--accent-emerald) 0%, transparent 70%);
    animation: floatGlow 18s infinite alternate-reverse ease-in-out;
}

@keyframes floatGlow {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(4%, 6%) scale(1.15); }
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

/* Header */
.header {
    width: 100%;
    padding: 2rem 0;
    position: relative;
    z-index: 10;
}
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
}
.logo-wrapper {
    display: inline-block;
    max-width: 260px;
    transition: var(--transition-smooth);
}
.logo-wrapper:hover {
    transform: translateY(-2px);
    filter: drop-shadow(0 0 15px rgba(0, 184, 117, 0.2));
}
.logo {
    width: 100%;
    height: auto;
    display: block;
}

/* Header Badge */
.header-badge {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-glass);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: var(--accent-emerald);
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(0, 184, 117, 0.7);
    animation: pulse 1.8s infinite;
}
@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(0, 184, 117, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 8px rgba(0, 184, 117, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(0, 184, 117, 0);
    }
}
.badge-text {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-white);
}

/* Main Layout */
.main-content {
    position: relative;
    z-index: 5;
    padding-bottom: 5rem;
}

/* Hero Section */
.hero-section {
    padding: 4rem 0 3rem 0;
    text-align: center;
}
.hero-container {
    max-width: 850px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.coming-soon-tag {
    background: rgba(0, 210, 196, 0.08);
    border: 1px solid rgba(0, 210, 196, 0.25);
    color: var(--accent-teal);
    padding: 0.4rem 1.2rem;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 20px rgba(0, 210, 196, 0.05);
}
.tag-icon {
    width: 14px;
    height: 14px;
}
.hero-title {
    font-family: var(--font-title);
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.15;
    color: var(--text-white);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}
.text-gradient {
    background: linear-gradient(135deg, var(--accent-teal) 0%, var(--accent-emerald) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-silver);
    max-width: 680px;
    margin-bottom: 3rem;
    font-weight: 300;
    line-height: 1.7;
}

/* Status Panel */
.status-panel {
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--card-bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    padding: 1.5rem 3rem;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    width: 100%;
    max-width: 700px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}
.status-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.status-num {
    font-family: var(--font-title);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 0.25rem;
    letter-spacing: 0.05em;
    background: linear-gradient(135deg, #ffffff 0%, var(--text-silver) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.status-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    font-weight: 600;
}
.status-divider {
    width: 1px;
    height: 40px;
    background: var(--border-glass);
    margin: 0 2rem;
}


/* Connect Section (Form & Details) */
.connect-section {
    padding: 4rem 0;
}
.connect-container {
    display: grid;
    grid-template-columns: 1fr 1.8fr;
    gap: 4rem;
    align-items: center;
}
.contact-info-panel {
    display: flex;
    flex-direction: column;
}
.connect-title {
    font-family: var(--font-title);
    font-size: 2.25rem;
    color: var(--text-white);
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}
.connect-desc {
    font-size: 1.05rem;
    color: var(--text-silver);
    margin-bottom: 2.5rem;
    font-weight: 300;
    line-height: 1.7;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}
.contact-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}
.contact-icon {
    width: 46px;
    height: 46px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-glass);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-teal);
    flex-shrink: 0;
    transition: var(--transition-smooth);
}
.contact-item:hover .contact-icon {
    color: var(--accent-emerald);
    border-color: var(--border-active);
    background: rgba(0, 184, 117, 0.05);
    box-shadow: 0 0 15px rgba(0, 184, 117, 0.15);
}
.contact-icon svg {
    width: 20px;
    height: 20px;
}
.contact-text {
    display: flex;
    flex-direction: column;
}
.contact-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 0.2rem;
}
.contact-value {
    font-size: 1.05rem;
    color: var(--text-white);
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition-smooth);
}
a.contact-value:hover {
    color: var(--accent-emerald);
}

/* Form Panel */
.form-panel {
    background: var(--card-bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: 24px;
    padding: 3rem;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
}
.form-panel::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-teal), var(--accent-emerald));
}
.form-container-box {
    position: relative;
    z-index: 2;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.form-header {
    margin-bottom: 2rem;
}
.form-header h3 {
    font-family: var(--font-title);
    font-size: 1.5rem;
    color: var(--text-white);
    margin-bottom: 0.5rem;
    font-weight: 700;
}
.form-header p {
    font-size: 0.9rem;
    color: var(--text-silver);
    font-weight: 300;
}

/* Form Styling */
.form-row {
    margin-bottom: 1.25rem;
}
.form-row.two-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}
@media (max-width: 650px) {
    .form-row.two-cols {
        grid-template-columns: 1fr;
    }
}
.form-group {
    display: flex;
    flex-direction: column;
    position: relative;
}
.form-group label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.5rem;
    letter-spacing: 0.02em;
}
.form-group input, 
.form-group select, 
.form-group textarea {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-glass);
    padding: 0.85rem 1rem;
    border-radius: 10px;
    color: var(--text-white);
    font-family: var(--font-sans);
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.2);
}
.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-emerald);
    background: rgba(0, 184, 117, 0.02);
    box-shadow: 0 0 15px rgba(0, 184, 117, 0.08);
}
.form-group select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg fill='none' stroke='white' stroke-width='2' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'><path d='M19 9l-7 7-7-7'></path></svg>");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1.2rem;
    padding-right: 2.5rem;
}
.form-group select option {
    background-color: var(--navy-dark);
    color: var(--text-white);
    padding: 10px;
}

/* Form Validation Styling */
.form-group.invalid input,
.form-group.invalid select,
.form-group.invalid textarea {
    border-color: #ff3b30;
    background: rgba(255, 59, 48, 0.03);
}
.error-message {
    color: #ff8c85;
    font-size: 0.75rem;
    font-weight: 500;
    margin-top: 0.35rem;
    display: none;
}
.form-group.invalid .error-message {
    display: block;
}

/* Submit Button */
.submit-btn {
    width: 100%;
    margin-top: 1rem;
    background: linear-gradient(135deg, var(--accent-teal) 0%, var(--accent-emerald) 100%);
    border: none;
    padding: 1rem;
    border-radius: 10px;
    color: var(--primary-bg);
    font-family: var(--font-title);
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 184, 117, 0.2);
}
.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0, 184, 117, 0.35);
    filter: brightness(1.1);
}
.submit-btn:active {
    transform: translateY(0);
}
.submit-btn:disabled {
    cursor: not-allowed;
    filter: grayscale(1);
    opacity: 0.7;
}
.btn-spinner {
    width: 20px;
    height: 20px;
    border: 3px solid rgba(2, 9, 22, 0.2);
    border-top: 3px solid var(--primary-bg);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Success Screen States */
.success-screen {
    text-align: center;
    padding: 2rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.5s ease;
}
.success-icon-wrapper {
    width: 72px;
    height: 72px;
    background: rgba(0, 184, 117, 0.1);
    border: 1px solid var(--border-active);
    color: var(--accent-emerald);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 0 25px rgba(0, 184, 117, 0.2);
}
.success-icon-wrapper svg {
    width: 32px;
    height: 32px;
    animation: scaleIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.success-screen h3 {
    font-family: var(--font-title);
    font-size: 1.5rem;
    color: var(--text-white);
    margin-bottom: 0.75rem;
    font-weight: 700;
}
.success-screen p {
    font-size: 0.95rem;
    color: var(--text-silver);
    max-width: 360px;
    margin-bottom: 2rem;
    font-weight: 300;
}
.reset-btn {
    background: transparent;
    border: 1px solid var(--border-glass);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    color: var(--text-white);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-smooth);
}
.reset-btn:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--text-white);
}

.hidden {
    display: none !important;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes scaleIn {
    from { transform: scale(0.6); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

/* Footer Section */
.footer {
    border-top: 1px solid var(--border-glass);
    padding: 4rem 0;
    background: var(--navy-dark);
    position: relative;
    z-index: 5;
}
.footer-container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}
.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.footer-logo {
    max-width: 180px;
    height: auto;
    margin-bottom: 1rem;
}
.footer-tagline {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent-teal);
    font-weight: 600;
}
.footer-legal {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
}
.footer-legal p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}
.compliance-note {
    font-size: 0.75rem !important;
    line-height: 1.5;
    color: rgba(100, 123, 155, 0.75) !important;
    max-width: 800px;
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }
    .connect-container {
        gap: 2.5rem;
    }
}

@media (max-width: 900px) {
    .connect-container {
        grid-template-columns: 1fr;
    }
    .contact-info-panel {
        text-align: center;
        align-items: center;
        margin-bottom: 1.5rem;
    }
    .contact-details {
        align-items: center;
    }
}

@media (max-width: 600px) {
    .header-container {
        flex-direction: column;
        gap: 1rem;
    }
    .hero-title {
        font-size: 2.25rem;
    }
    .form-panel {
        padding: 2rem 1.5rem;
    }
    .logo-wrapper {
        max-width: 200px;
    }
}
