/* Global Reset & Base Styles */
:root {
    --bg-color: #050505;
    --text-primary: #ffffff;
    --text-secondary: #a1a1aa;
    --accent-gold: #D4AF37;
    --accent-gold-dim: #aa8c2c;
    --surface-glass: rgba(255, 255, 255, 0.03);
    --border-glass: rgba(255, 255, 255, 0.1);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Outfit', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.error{
    color: #bb2b2b ! IMPORTANT;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-weight: 300;
    overflow-x: hidden;
    line-height: 1.6;
}

/* Ambient Background */
.background-ambient {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
    background:
        radial-gradient(circle at 15% 50%, rgba(212, 175, 55, 0.08) 0%, transparent 25%),
        radial-gradient(circle at 85% 30%, rgba(100, 116, 139, 0.1) 0%, transparent 25%);
    filter: contrast(120%);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    background: linear-gradient(180deg, rgba(5, 5, 5, 0.8) 0%, transparent 100%);
    backdrop-filter: blur(2px);
}

.brand-logo text {
    fill: white;
}
.logo-container img{
        height: 57px;
}

.cta-button-outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 0.8rem 2rem;
    font-family: var(--font-heading);
    letter-spacing: 1.5px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.4s ease;
    text-transform: uppercase;
}

.cta-button-outline:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

/* Hero Section */
.hero-section {
    height: 100vh;
    display: flex;
    flex-direction: column;
    background: url(../images/banner.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    position: relative;
}

.meta-tag {
    font-size: 0.9rem;
    letter-spacing: 4px;
    color: var(--accent-gold);
    margin-bottom: 2rem;
    text-transform: uppercase;
    font-weight: 500;
}

.main-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 300;
    margin-bottom: 2rem;
    color: white;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.brand-separator {
    color: var(--accent-gold);
    margin: 0 0px;
    font-weight: 100;
}

.launch-details {
    margin-top: 3rem;
}

.launch-details p {
    margin: 0.5rem 0;
    letter-spacing: 3px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-transform: uppercase;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    opacity: 0.7;
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.scroll-indicator .line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, white, transparent);
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

/* Registration Section */
.registration-section {
    scroll-margin-top: 120px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5rem 2rem;
    background: linear-gradient(0deg, #050505 0%, #0a0a0a 100%);
}

.form-container {
    width: 100%;
    max-width: 600px;
    background: var(--surface-glass);
    border: 1px solid var(--border-glass);
    padding: 4rem;
    border-radius: 4px;
    /* Sharp corners for premium feel usually involve tight radii */
    backdrop-filter: blur(20px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.form-header {
    text-align: center;
    margin-bottom: 3rem;
}

.form-header h2 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.form-header p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.input-group {
    margin-bottom: 2rem;
}

.input-group label {
    display: block;
    margin-bottom: 0.8rem;
    font-size: 0.8rem;
    letter-spacing: 1px;
    color: var(--text-secondary);
    text-transform: uppercase;
}

.input-group input,
.input-group select {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--border-glass);
    padding: 1rem 0;
    color: white;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.input-group input:focus,
.input-group select:focus {
    outline: none;
    border-bottom-color: var(--accent-gold);
}

.telephone-group .phone-input-wrapper {
    display: flex;
    gap: 15px;
}

.country-code {
    width: 120px !important;
}

/* Checkbox/Radio Styling */
.radio-group-container {
    margin-bottom: 3rem;
}

.radio-group-container>label {
    display: block;
    margin-bottom: 1rem;
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.radio-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.radio-card {
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    border: 1px solid var(--border-glass);
    transition: all 0.3s ease;
}

.radio-card:hover {
    background: rgba(255, 255, 255, 0.02);
}

.radio-card input {
    position: absolute;
    opacity: 0;
}

.radio-label {
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.radio-card input:checked+.radio-custom+.radio-label,
.radio-card input:checked~.radio-label {
    color: var(--accent-gold);
}

.radio-card:has(input:checked) {
    border-color: var(--accent-gold);
    background: rgba(212, 175, 55, 0.05);
}

/* Button */
.submit-btn {
    width: 100%;
    padding: 1.2rem;
    background: white;
    border: none;
    color: black;
    font-family: var(--font-heading);
    font-weight: 600;
    letter-spacing: 2px;
    cursor: pointer;
    margin-top: 1rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.2s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    background: #f0f0f0;
}

.submit-btn span {
    position: relative;
    z-index: 1;
}

.disclaimer {
    font-size: 0.75rem;
    margin-top: 2rem;
    color: #555;
    text-align: center;
}

.disclaimer a {
    color: #777;
    text-decoration: underline;
}

/* Footer */
.footer {
    padding: 4rem 5%;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    text-align: center;
}

.footer-brand {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 3px;
}

.footer-links {
    display: flex;
    gap: 20px;
    align-items: center;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
}

.copyright {
    color: #444;
    font-size: 0.8rem;
}

@media (max-width: 768px) {
    .main-title {
        font-size: 2rem;
    }

    .form-container {
        padding: 2rem;
    }

    .radio-options {
        grid-template-columns: 1fr;
    }
    .logo-container img{
            height: 40px;
    }
}