/* 
    TRADENATION - V5 THE VELOCITY SYSTEM
    High-Conversion Sales Architecture
*/

:root {
    --cls-bg: #050505;
    --cls-primary: #00E5FF;
    --cls-secondary: #7000FF;
    --cls-text: #FFFFFF;
    --cls-text-dim: #A0A0A0;
    --cls-card: rgba(255, 255, 255, 0.03);
    --cls-border: rgba(255, 255, 255, 0.08);
    --font-heading: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--cls-bg);
    color: var(--cls-text);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Institutional Background with Ken Burns Movement */
.aurora-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background: linear-gradient(rgba(5, 5, 10, 0.45), rgba(5, 5, 10, 0.65)),
        url('https://images.unsplash.com/photo-1590283603385-17ffb3a7f29f?q=80&w=2070&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    animation: kenBurns 40s infinite alternate ease-in-out;
}

@keyframes kenBurns {
    0% {
        transform: scale(1.1) translate(0, 0);
    }

    100% {
        transform: scale(1.3) translate(-2%, -2%);
    }
}

.glow-mesh {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: radial-gradient(circle at 50% 50%, rgba(0, 229, 255, 0.08), transparent 70%);
    pointer-events: none;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Logo Design */
.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 900;
    font-size: 1.5rem;
    letter-spacing: -1px;
    padding: 2rem 0;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.2);
}

/* Hero Section */
header {
    text-align: center;
    padding: 6rem 0 4rem;
}

h1,
h2,
h3 {
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 1.3;
    /* Properly set to 1.3 to ensure 'g' and other letters are never cut off */
    padding-bottom: 0.2em;
}

h1 {
    font-size: clamp(3rem, 8vw, 5rem);
    margin-bottom: 2rem;
    background: linear-gradient(to bottom, #fff, #888);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.price-tag {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--cls-primary);
    margin-bottom: 2rem;
    display: block;
}

/* Main Form Area */
.sales-box {
    background: var(--cls-card);
    border: 1px solid var(--cls-border);
    border-radius: 24px;
    padding: 3rem;
    backdrop-filter: blur(10px);
    margin-bottom: 4rem;
}

.feature-list {
    list-style: none;
    margin-bottom: 3rem;
    text-align: left;
    display: grid;
    gap: 1rem;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
    color: var(--cls-text-dim);
}

.feature-list li::before {
    content: '→';
    color: var(--cls-primary);
    font-weight: bold;
}

/* Form Styles */
.form-group {
    margin-bottom: 1.5rem;
    text-align: left;
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--cls-primary);
    text-transform: uppercase;
}

input[type="text"],
input[type="email"] {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--cls-border);
    border-radius: 12px;
    color: #fff;
    font-size: 1rem;
    transition: 0.3s;
}

input:focus {
    outline: none;
    border-color: var(--cls-primary);
    background: rgba(255, 255, 255, 0.1);
}

.checkbox-group {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    text-align: left;
}

.checkbox-group input {
    margin-top: 0.3rem;
}

.checkbox-label {
    font-size: 0.85rem;
    color: var(--cls-text-dim);
}

.buy-btn {
    width: 100%;
    padding: 1.5rem;
    background: #fff;
    color: #000;
    border: none;
    border-radius: 12px;
    font-weight: 900;
    font-size: 1.25rem;
    cursor: pointer;
    margin-top: 2rem;
    transition: 0.3s;
}

.buy-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 229, 255, 0.4);
}

/* Simple Social Proof */
.social-proof {
    text-align: center;
    border-top: 1px solid var(--cls-border);
    padding-top: 4rem;
    margin-top: 4rem;
}

.disclaimer-footer {
    font-size: 0.7rem;
    color: var(--cls-text-dim);
    margin-top: 6rem;
    text-align: center;
    padding-bottom: 4rem;
}

@media (max-width: 600px) {
    .sales-box {
        padding: 1.5rem;
    }
}