@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap');

:root {
    --primary: #FF6600;
    --primary-glow: rgba(255, 102, 0, 0.3);
    --bg: #0A0A0A;
    --surface: #121212;
    --surface-light: #1A1A1A;
    --text: #FFFFFF;
    --text-muted: #A1A1AA;
    --border: rgba(255, 255, 255, 0.08);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    background-color: var(--bg);
    background-image: 
        radial-gradient(circle at 50% 0%, rgba(255, 102, 0, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 100% 100%, rgba(255, 102, 0, 0.02) 0%, transparent 50%);
    background-attachment: fixed;
    color: var(--text);
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: 'Roboto', sans-serif;
    font-weight: 900;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header/Nav */
header {
    padding: 2rem 0;
    text-align: center;
}

.logo {
    font-family: 'Roboto', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.logo span {
    color: var(--primary);
}

/* Hero Section */
.hero {
    padding: 4rem 0 6rem; /* Increased bottom padding */
    text-align: center;
}

.hero h1 {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -1.5px;
}

.hero h1 span {
    color: var(--primary);
}

.hero p {
    color: var(--text-muted);
    font-size: clamp(1.1rem, 3vw, 1.4rem);
    max-width: 700px;
    margin: 0 auto 3rem;
}

/* VSL Container */
.vsl-wrapper {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 2rem 0; 
    margin-bottom: 2rem;
    position: relative;
}

.vsl-container {
    position: relative;
    z-index: 1;
    border-radius: 16px;
    overflow: hidden; 
    aspect-ratio: 16/9;
    background: black; 
    box-shadow: 0 0 15px 2px var(--primary), 0 0 50px 0px var(--primary); /* Brighter multi-layer glow */
}

/* Removed stretched pseudo-glows */

/* Offer Section */
.offer-section {
    padding: 4rem 0;
    border-top: 1px solid var(--border);
}

.offer-card {
    background: linear-gradient(145deg, var(--surface) 0%, var(--bg) 100%);
    border: 1px solid var(--border);
    border-radius: 32px;
    padding: 3rem;
    text-align: center;
    position: relative;
}

.price-tag {
    font-size: 4rem;
    font-weight: 800;
    color: var(--primary);
    margin: 1rem 0;
    font-family: 'Roboto', sans-serif;
}

.price-tag span {
    font-size: 1.2rem;
    color: var(--text-muted);
    font-weight: 400;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 3rem 0;
    text-align: left;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-muted);
}

.feature-item svg {
    color: var(--primary);
    flex-shrink: 0;
}

/* CTA Buttons */
.cta-button {
    display: inline-block;
    background-color: var(--primary);
    color: white;
    text-decoration: none;
    padding: 1.25rem 2.5rem;
    border-radius: 100px;
    font-family: 'Roboto', sans-serif;
    font-weight: 800;
    font-size: 1.25rem;
    transition: var(--transition);
    box-shadow: 0 10px 20px -5px var(--primary-glow);
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 30px -5px var(--primary-glow);
    filter: brightness(1.1);
}

/* Footer */
footer {
    padding: 4rem 0 4rem; /* Increased bottom padding */
    text-align: center;
    border-top: 1px solid var(--border);
    margin-top: 4rem;
    width: 100%;
}

.footer-links {
    margin-top: 1rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary);
}

/* Terms Page Specific */
.terms-content {
    max-width: 800px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.terms-content h1 {
    margin-bottom: 2rem;
    color: var(--primary);
}

.terms-content h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.terms-content p, .terms-content ul {
    margin-bottom: 1.5rem;
    color: var(--text-muted);
}

.terms-content ul {
    padding-left: 1.5rem;
}

.back-link {
    display: inline-block;
    margin-bottom: 2rem;
    color: var(--primary);
    text-decoration: none;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 3rem;
    }
    
    .offer-card {
        padding: 2rem 1.5rem;
    }
}
