:root {
    --bg-color: #050508;
    --text-primary: #ffffff;
    --text-secondary: #94A3B8;
    --accent-red: #E11D48;
    --accent-purple: #8B5CF6;
    --accent-blue: #3B82F6;
    
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-blur: blur(20px);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Background Effects */
.background-effects {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    z-index: -1;
    overflow: hidden;
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.4;
    animation: drift 20s infinite alternate ease-in-out;
}

.orb-1 {
    width: 600px; height: 600px;
    background: radial-gradient(circle, var(--accent-purple) 0%, transparent 70%);
    top: -200px; left: -100px;
}

.orb-2 {
    width: 500px; height: 500px;
    background: radial-gradient(circle, var(--accent-blue) 0%, transparent 70%);
    bottom: -100px; right: -100px;
    animation-delay: -5s;
}

.orb-3 {
    width: 400px; height: 400px;
    background: radial-gradient(circle, var(--accent-red) 0%, transparent 70%);
    top: 40%; left: 40%;
    opacity: 0.15;
    animation-delay: -10s;
}

@keyframes drift {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(50px, 30px) scale(1.1); }
}

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Glass Typography & Cards */
.glass-panel {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: var(--glass-blur);
    border-radius: 24px;
}

.glass-card {
    background: rgba(20, 20, 25, 0.6);
    border: 1px solid var(--glass-border);
    backdrop-filter: var(--glass-blur);
    border-radius: 16px;
    padding: 32px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    padding: 20px 0;
    z-index: 100;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.logo span {
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a:not(.btn) {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:not(.btn):hover {
    color: var(--text-primary);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-red));
    color: white;
    box-shadow: 0 4px 15px rgba(225, 29, 72, 0.3);
}

.btn-primary:hover {
    box-shadow: 0 6px 25px rgba(225, 29, 72, 0.5);
    transform: translateY(-2px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid var(--glass-border);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 1px solid var(--glass-border);
    padding: 8px 16px;
    font-size: 14px;
}

.btn-outline:hover {
    border-color: rgba(255, 255, 255, 0.3);
}

.full-width {
    width: 100%;
}

/* Typography elements */
.badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(139, 92, 246, 0.15);
    border: 1px solid rgba(139, 92, 246, 0.3);
    color: #c4b5fd;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
}

.section-title {
    font-size: 40px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 48px;
    letter-spacing: -1px;
}

/* Hero Section */
.hero {
    margin: 120px 24px 64px 24px;
    padding: 80px 40px;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero h1 {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1.5px;
    background: linear-gradient(to right, #ffffff, #a5a5a5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero .subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-actions {
    display: flex;
    gap: 16px;
}

/* Image visuals */
.float-animation {
    animation: floating 6s ease-in-out infinite;
}

@keyframes floating {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

.image-wrapper {
    position: relative;
    width: 100%;
    height: 400px;
}

.app-screenshot {
    position: absolute;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.6);
    border: 1px solid rgba(255,255,255,0.1);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.main-shot {
    width: 90%;
    z-index: 2;
    top: 0;
    left: 0;
}

.secondary-shot {
    width: 70%;
    z-index: 1;
    bottom: -30px;
    right: -20px;
    opacity: 0.7;
}

.image-wrapper:hover .main-shot {
    transform: perspective(1000px) rotateY(-5deg) scale(1.05);
}

.image-wrapper:hover .secondary-shot {
    transform: perspective(1000px) rotateY(10deg) translateZ(-50px) scale(0.95);
    opacity: 1;
}

/* Features */
.features {
    padding: 60px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 15px;
}

.icon-box {
    width: 48px; height: 48px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
}

.result-banner {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 32px;
    overflow: hidden;
    position: relative;
}

.glow-border {
    position: relative;
}

.glow-border::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-blue), transparent);
}

.banner-content {
    flex: 1;
}

.banner-content h3 {
    font-size: 28px;
    margin-bottom: 12px;
    color: #60A5FA;
}

.banner-content p {
    color: var(--text-secondary);
    font-size: 16px;
}

.result-img {
    width: 40%;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.1);
}

/* Split Section (Pricing & Partner) */
.split-sections {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    padding: 60px 0 100px 0;
}

.card-title {
    font-size: 28px;
    margin-bottom: 8px;
}

.requirements {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.price-tags {
    margin-bottom: 32px;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 12px;
}

.price-row .period {
    font-size: 16px;
    font-weight: 500;
}

.price-row .amount {
    font-size: 36px;
    font-weight: 800;
}

.price-row.renewal {
    color: var(--text-secondary);
}

.price-row.renewal .amount {
    font-size: 24px;
}

.price-row.renewal .amount span {
    font-size: 16px;
    font-weight: 500;
}

.benefits {
    list-style: none;
    margin-bottom: 32px;
}

.benefits li {
    margin-bottom: 12px;
    color: var(--text-secondary);
}

.benefits strong {
    color: var(--text-primary);
}

/* Partner section styling */
.partner-badge {
    display: inline-block;
    background: rgba(59, 130, 246, 0.15);
    color: #93C5FD;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 16px;
}

.reward-box {
    background: rgba(255,255,255,0.03);
    border: 1px dashed rgba(255,255,255,0.2);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    margin-bottom: 32px;
}

.reward-amount {
    display: block;
    font-size: 48px;
    font-weight: 800;
    color: #4ADE80;
    line-height: 1;
    margin-bottom: 8px;
}

.reward-text {
    color: var(--text-secondary);
    font-size: 14px;
}

.partner-features {
    list-style: none;
    margin-bottom: 32px;
}

.partner-features li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 16px;
    color: var(--text-secondary);
}

.partner-features li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent-blue);
    font-size: 24px;
    line-height: 1;
    top: -2px;
}

.partner-features strong {
    color: var(--text-primary);
}

/* Footer */
footer {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px 0;
    background: rgba(0,0,0,0.3);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    font-size: 20px;
    font-weight: 700;
}

.footer-logo span {
    color: var(--text-secondary);
}

.copyright {
    color: var(--text-secondary);
    font-size: 14px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
}

.footer-links a:hover {
    color: white;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-container { grid-template-columns: 1fr; text-align: center; }
    .hero h1 { font-size: 48px; }
    .hero .subtitle { margin: 0 auto 40px; }
    .hero-actions { justify-content: center; }
    .split-sections { grid-template-columns: 1fr; }
    .result-banner { flex-direction: column; text-align: center; }
    .result-img { width: 100%; max-width: 500px; }
}

@media (max-width: 768px) {
    .features-grid { grid-template-columns: 1fr; }
    .nav-links { display: none; }
    .footer-content { flex-direction: column; gap: 20px; text-align: center; }
}
