:root {
    --primary: #6B46C1;
    --primary-dark: #3B0764;
    --primary-glow: rgba(107, 70, 193, 0.35);
    --accent: #10B981;
    --accent-glow: rgba(16, 185, 129, 0.2);
    --text: #F8FAFC;
    --text-dim: #94A3B8;
    --bg: #090D16;
    --card: rgba(22, 28, 45, 0.7);
    --card-border: rgba(255, 255, 255, 0.08);
    --glass: rgba(9, 13, 22, 0.75);
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background-color: var(--bg);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

h1, h2, h3, .logo-text {
    font-family: 'Outfit', sans-serif;
}

/* Background glows */
.glow-circle {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    filter: blur(140px);
    z-index: 1;
    opacity: 0.35;
    pointer-events: none;
}

.glow-1 {
    background: var(--primary);
    top: -150px;
    right: -100px;
    animation: float-glow 10s infinite alternate;
}

.glow-2 {
    background: var(--accent);
    top: 600px;
    left: -150px;
    animation: float-glow 15s infinite alternate-reverse;
}

@keyframes float-glow {
    0% { transform: scale(1) translate(0, 0); }
    100% { transform: scale(1.15) translate(40px, 30px); }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 10;
}

/* Navbar */
.navbar {
    height: 80px;
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--glass);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--card-border);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo-text {
    font-size: 24px;
    font-weight: 900;
    color: #FFFFFF;
    letter-spacing: -0.5px;
}

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

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dim);
    font-weight: 600;
    font-size: 15px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #FFFFFF;
}

/* Buttons */
.btn {
    padding: 10px 24px;
    border-radius: 14px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: transform 0.2s, box-shadow 0.2s, background-color 0.2s;
    border: none;
    cursor: pointer;
}

.btn:active {
    transform: scale(0.98);
}

.btn-primary {
    background-color: var(--primary);
    color: white;
    box-shadow: 0 4px 15px var(--primary-glow);
}

.btn-primary:hover {
    background-color: #5B21B6;
    box-shadow: 0 6px 20px rgba(107, 70, 193, 0.5);
    transform: translateY(-2px);
}

.btn-large {
    padding: 16px 36px;
    font-size: 18px;
    border-radius: 16px;
}

.btn-outline {
    background-color: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 255, 255, 0.15);
    color: white;
}

.btn-outline:hover {
    border-color: rgba(255, 255, 255, 0.3);
    background-color: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

/* Hero */
.hero {
    padding-top: 180px;
    padding-bottom: 120px;
    background: radial-gradient(circle at top right, rgba(107, 70, 193, 0.08), transparent),
                radial-gradient(circle at bottom left, rgba(16, 185, 129, 0.03), transparent);
}

.hero .container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-content {
    flex: 1.1;
}

.hero-title {
    font-size: 58px;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 24px;
    color: #FFFFFF;
}

.gradient-text {
    background: linear-gradient(90deg, #A78BFA, var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 19px;
    color: var(--text-dim);
    margin-bottom: 40px;
    max-width: 560px;
    line-height: 1.6;
}

.hero-btns {
    display: flex;
    gap: 20px;
}

.hero-visual {
    flex: 0.9;
    position: relative;
}

.glass-container {
    background: var(--card);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 40px;
    padding: 12px;
    border: 1px solid var(--card-border);
    box-shadow: 0 40px 100px rgba(0,0,0,0.5);
    transform: perspective(1000px) rotateY(-8deg) rotateX(6deg);
    transition: transform 0.5s ease;
}

.glass-container:hover {
    transform: perspective(1000px) rotateY(-3deg) rotateX(2deg);
}

.hero-img {
    width: 100%;
    border-radius: 32px;
    display: block;
}

/* Targets */
.targets {
    padding: 120px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-title {
    font-size: 38px;
    font-weight: 900;
    margin-bottom: 16px;
    color: #FFFFFF;
}

.section-subtitle {
    color: var(--text-dim);
    font-size: 18px;
}

.target-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.target-card {
    background: var(--card);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 32px;
    border: 1px solid var(--card-border);
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.target-card:hover {
    transform: translateY(-8px);
    border-color: rgba(107, 70, 193, 0.3);
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}

.icon-box {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.shop .icon-box { background: rgba(107, 70, 193, 0.12); color: #A78BFA; border: 1px solid rgba(107, 70, 193, 0.2); }
.individual .icon-box { background: rgba(16, 185, 129, 0.12); color: var(--accent); border: 1px solid rgba(16, 185, 129, 0.2); }
.family .icon-box { background: rgba(245, 158, 11, 0.12); color: #FBBF24; border: 1px solid rgba(245, 158, 11, 0.2); }

.target-card h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 16px;
    color: #FFFFFF;
}

.target-card p {
    color: var(--text-dim);
    font-size: 15px;
    line-height: 1.6;
}

/* Features */
.features {
    padding: 120px 0;
    background: linear-gradient(180deg, rgba(22, 28, 45, 0.4) 0%, rgba(9, 13, 22, 0.95) 100%);
    border-top: 1px solid var(--card-border);
    border-bottom: 1px solid var(--card-border);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
}

.feature-item {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 24px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.02);
}

.feature-item i {
    color: var(--accent);
}

.feature-item h4 {
    font-size: 20px;
    font-weight: 700;
    color: #FFFFFF;
}

.feature-item p {
    color: var(--text-dim);
    font-size: 15px;
    line-height: 1.6;
}

/* Download Section */
.download-section {
    padding: 120px 0;
    text-align: center;
}

.download-card {
    background: linear-gradient(135deg, rgba(107, 70, 193, 0.15) 0%, rgba(22, 28, 45, 0.6) 100%);
    border: 1px solid rgba(107, 70, 193, 0.25);
    border-radius: 36px;
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.download-card h2 {
    font-size: 36px;
    font-weight: 900;
    color: #FFFFFF;
}

.download-card p {
    color: var(--text-dim);
    font-size: 18px;
    max-width: 500px;
}

.download-btns {
    margin-top: 12px;
}

/* Footer */
.footer {
    padding: 80px 0 40px;
    background: #06090F;
    border-top: 1px solid var(--card-border);
}

.footer-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
}

.footer-brand p {
    margin-top: 12px;
    color: var(--text-dim);
    max-width: 280px;
    font-size: 14px;
}

.footer-links {
    display: flex;
    gap: 80px;
}

.link-group h5 {
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #FFFFFF;
}

.link-group a {
    display: block;
    text-decoration: none;
    color: var(--text-dim);
    margin-bottom: 12px;
    font-size: 14px;
    transition: color 0.2s;
}

.link-group a:hover {
    color: #FFFFFF;
}

.footer-bottom {
    border-top: 1px solid var(--card-border);
    padding-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-dim);
    font-size: 14px;
}

.social {
    display: flex;
    gap: 20px;
}

.social a { 
    color: var(--text-dim);
    transition: color 0.2s;
}

.social a:hover {
    color: #FFFFFF;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero .container { flex-direction: column; text-align: center; gap: 40px; }
    .hero-title { font-size: 46px; }
    .hero-subtitle { margin-left: auto; margin-right: auto; }
    .hero-btns { justify-content: center; }
    .glass-container { transform: none; }
    .glass-container:hover { transform: none; }
    .target-grid { grid-template-columns: 1fr; gap: 24px; }
    .features-grid { grid-template-columns: 1fr; gap: 24px; }
}

@media (max-width: 640px) {
    .nav-links { display: none; }
    .hero-title { font-size: 34px; }
    .footer-top { flex-direction: column; gap: 40px; }
    .footer-links { gap: 40px; }
}
