:root {
    --primary-gradient: linear-gradient(135deg, #FF9400 0%, #FF1A69 50%, #7622FF 100%);
    --secondary-gradient: linear-gradient(135deg, #00C6FF 0%, #0072FF 100%);
    --orange-gradient: linear-gradient(135deg, #FF9400 0%, #FF5C00 100%);
    --purple-gradient: linear-gradient(135deg, #7622FF 0%, #4C00FF 100%);
    --pink-gradient: linear-gradient(135deg, #FF1A69 0%, #D40055 100%);
    --blue-gradient: linear-gradient(135deg, #0095FF 0%, #0066FF 100%);
    
    --text-main: #1d1d1f;
    --text-muted: #515154;
    --bg-light: #ffffff;
    --bg-alt: #f4f7fa;
    --white: #ffffff;
    --black: #000000;
}

html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Metropolis", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

body {
    background-color: var(--bg-light);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Navbar */
.navbar {
    height: 80px;
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    font-weight: 900;
    font-size: 26px;
    color: var(--text-main);
}

.logo-text {
    /* Existing styles if any */
}

/* Feature Item Link */
.feature-item-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 36px;
}

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

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

.btn-outline {
    padding: 10px 28px;
    border: 2px solid var(--text-main);
    border-radius: 50px;
    text-decoration: none;
    color: var(--text-main);
    font-weight: 700;
    transition: all 0.3s;
    font-size: 14px;
}

.btn-outline:hover {
    background: var(--text-main);
    color: var(--white);
}

/* Hero Section */
.hero {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.hero-bg-glow {
    position: absolute;
    top: -200px;
    right: -200px;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(255, 148, 0, 0.2) 0%, rgba(118, 34, 255, 0.08) 50%, transparent 70%);
    filter: blur(100px);
    z-index: -1;
}

.hero .container {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    align-items: center;
    gap: 80px;
}

.hero-content h1 {
    font-size: 64px;
    line-height: 1.1;
    margin-bottom: 28px;
    font-weight: 900;
    letter-spacing: -1px;
}

.hero-content h1 span {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: 22px;
    color: var(--text-muted);
    margin-bottom: 48px;
    max-width: 520px;
}

.btn-primary {
    display: inline-block;
    padding: 20px 52px;
    background: var(--primary-gradient);
    color: var(--white);
    text-decoration: none;
    font-weight: 800;
    font-size: 20px;
    border-radius: 50px;
    box-shadow: 0 15px 35px rgba(255, 92, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 45px rgba(255, 92, 0, 0.4);
}

.btn-subtext {
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 16px;
    font-weight: 500;
}

/* Browser Mockup */
.browser-mockup {
    background: white;
    border-radius: 16px;
    box-shadow: 0 40px 80px rgba(0,0,0,0.12);
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.06);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.5s;
}

.browser-mockup:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.mockup-header {
    background: #f1f1f4;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.dots {
    display: flex;
    gap: 8px;
}

.dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #e0e0e6;
}

.address-bar {
    background: white;
    flex-grow: 1;
    border-radius: 8px;
    padding: 6px 16px;
    font-size: 13px;
    color: #666;
    font-weight: 500;
}

.mockup-body {
    height: 340px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #fff 0%, #f4f5f8 100%);
}

.privacy-shield-anim {
    font-size: 100px;
    color: #FF1A69;
    position: relative;
    filter: drop-shadow(0 10px 20px rgba(255, 26, 105, 0.2));
}

.pulse-rings span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border: 2px solid #FF1A69;
    border-radius: 50%;
    animation: pulse 4s infinite;
    opacity: 0;
}

.pulse-rings span:nth-child(2) { animation-delay: 1.3s; }
.pulse-rings span:nth-child(3) { animation-delay: 2.6s; }

@keyframes pulse {
    0% { width: 100px; height: 100px; opacity: 0.6; }
    100% { width: 260px; height: 260px; opacity: 0; }
}

.stats-cards {
    position: absolute;
    bottom: 30px;
    display: flex;
    gap: 24px;
}

.stat-card {
    background: rgba(255,255,255,0.95);
    padding: 12px 24px;
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid rgba(0,0,0,0.03);
}

.stat-num {
    font-weight: 900;
    color: #7622FF;
    font-size: 18px;
}

.stat-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #888;
    font-weight: 700;
}

/* Features Grid */
.features-grid {
    padding: 120px 0;
    background: var(--bg-alt);
}

.section-title {
    text-align: center;
    margin-bottom: 80px;
}

.section-title h2 {
    font-size: 44px;
    font-weight: 900;
    letter-spacing: -0.5px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 48px;
}

.feature-item {
    background: white;
    padding: 48px;
    border-radius: 32px;
    transition: all 0.4s;
    border: 1px solid rgba(0,0,0,0.03);
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}

.feature-item:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.08);
}

.feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: white;
    margin-bottom: 32px;
}

.orange-gradient { background: var(--orange-gradient); }
.purple-gradient { background: var(--purple-gradient); }
.pink-gradient { background: var(--pink-gradient); }
.blue-gradient { background: var(--blue-gradient); }

.feature-item h3 {
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: 800;
}

.feature-item p {
    color: var(--text-muted);
    font-size: 17px;
}

/* Privacy Focus */
.privacy-focus {
    position: relative;
    padding-bottom: 120px;
}

.wave-divider {
    width: 100%;
    line-height: 0;
    transform: rotate(180deg);
    margin-bottom: 60px;
}

.privacy-flex {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    align-items: center;
    gap: 100px;
    padding: 60px 0;
}

.privacy-image {
    display: flex;
    justify-content: center;
}

.glass-card {
    width: 320px;
    height: 440px;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(25px);
    border-radius: 40px;
    border: 1px solid rgba(255,255,255,0.3);
    box-shadow: 0 50px 100px rgba(0,0,0,0.15);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 140px;
    color: #FF5C00;
    position: relative;
    overflow: hidden;
}

.scan-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, transparent, #FF5C00, transparent);
    box-shadow: 0 0 25px #FF5C00;
    animation: scan 5s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes scan {
    0% { top: -10%; }
    50% { top: 110%; }
    100% { top: -10%; }
}

.badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255, 92, 0, 0.1);
    color: #FF5C00;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 800;
    margin-bottom: 20px;
}

.privacy-text h2 {
    font-size: 48px;
    margin-bottom: 28px;
    line-height: 1.1;
    font-weight: 900;
}

.check-list {
    list-style: none;
    margin: 40px 0;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
    font-weight: 600;
    font-size: 18px;
}

.check-list i {
    color: #00C6FF;
    font-size: 20px;
}

.text-link {
    color: #7622FF;
    text-decoration: none;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
}

/* Cross Platform */
.cross-platform {
    padding: 120px 0;
    text-align: center;
    background: #0c0c0e;
    color: white;
}

.cross-platform h2 {
    font-size: 44px;
    font-weight: 900;
    margin-bottom: 20px;
}

.cross-platform p {
    font-size: 20px;
    opacity: 0.8;
}

.store-btns {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 50px;
}

.store-btn {
    background: #1a1a1c;
    padding: 14px 32px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    gap: 16px;
    cursor: pointer;
    transition: all 0.3s;
    border: 1px solid #2d2d30;
}

.store-btn:hover {
    background: #252528;
    transform: translateY(-3px);
    border-color: #444;
}

.store-btn i { font-size: 36px; }
.btn-text { text-align: left; line-height: 1.2; }
.btn-text span { display: block; font-size: 13px; opacity: 0.6; font-weight: 600; }

/* Footer */
.footer {
    padding: 100px 0 50px;
    border-top: 1px solid #eee;
    background: #fdfdfd;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2.5fr 1fr 1fr 1fr;
    gap: 80px;
    margin-bottom: 80px;
}

.footer-brand .logo { margin-bottom: 24px; }
.footer-brand p {
    margin-top: 24px;
    color: var(--text-muted);
    font-size: 17px;
    max-width: 300px;
}

.footer-links h4 {
    margin-bottom: 28px;
    font-size: 18px;
    font-weight: 800;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 14px;
}

.footer-links a {
    text-decoration: none;
    color: var(--text-muted);
    transition: color 0.3s;
    font-weight: 500;
}

.footer-links a:hover {
    color: #FF1A69;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid #eee;
    color: #999;
    font-size: 15px;
    font-weight: 500;
}

.social-links {
    display: flex;
    gap: 24px;
    font-size: 22px;
}

.social-links a { color: #999; transition: color 0.3s; }
.social-links a:hover { color: var(--text-main); }

/* Animations */
.fade-in {
    animation: fadeIn 1.2s ease forwards;
}

.fade-in-delay {
    opacity: 0;
    animation: fadeIn 1.2s ease 0.4s forwards;
}

.fade-in-delay-2 {
    opacity: 0;
    animation: fadeIn 1.2s ease 0.8s forwards;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 1024px) {
    .hero .container { grid-template-columns: 1fr; text-align: center; gap: 60px; }
    .hero-content p { margin: 0 auto 48px; }
    .browser-mockup { transform: none; max-width: 600px; margin: 0 auto; }
    .browser-mockup:hover { transform: scale(1.02); }
    .privacy-flex { grid-template-columns: 1fr; gap: 60px; text-align: center; }
    .check-list { display: inline-block; text-align: left; }
    .text-link { justify-content: center; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

/* Performance Showcase */
.performance-showcase {
    padding: 100px 0;
}

.performance-flex {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 80px;
}

.performance-text h2 {
    font-size: 40px;
    margin-bottom: 24px;
    font-weight: 900;
}

.perf-stats {
    margin-top: 40px;
}

.perf-stat-item {
    margin-bottom: 20px;
}

.stat-bar {
    height: 12px;
    background: #eee;
    border-radius: 50px;
    margin-bottom: 8px;
    overflow: hidden;
}

.stat-fill {
    height: 100%;
    background: var(--primary-gradient);
    border-radius: 50px;
}

.stat-fill.muted {
    background: #ccc;
}

.perf-stat-item span {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-muted);
}

.performance-visual {
    display: flex;
    justify-content: center;
}

.rocket-container {
    font-size: 120px;
    color: #FF5C00;
    position: relative;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* Addons Showcase */
.addons-showcase {
    padding: 100px 0;
    background: #fff;
}

.addons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.addon-card {
    padding: 30px;
    background: var(--bg-alt);
    border-radius: 24px;
    text-align: center;
    transition: all 0.3s;
}

.addon-card:hover {
    background: white;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    transform: translateY(-5px);
}

.addon-card img {
    width: 64px;
    height: 64px;
    margin-bottom: 20px;
}

.addon-card h4 {
    margin-bottom: 12px;
    font-size: 18px;
}

.addon-card p {
    font-size: 14px;
    color: var(--text-muted);
}

/* Mission Statement */
.mission-statement {
    padding: 100px 0;
    background: var(--primary-gradient);
    color: white;
    text-align: center;
}

.mission-content h2 {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 24px;
}

.mission-content p {
    font-size: 20px;
    max-width: 800px;
    margin: 0 auto 40px;
    opacity: 0.9;
}

.btn-outline-white {
    display: inline-block;
    padding: 16px 40px;
    border: 2px solid white;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s;
}

.btn-outline-white:hover {
    background: white;
    color: #FF5C00;
}

/* Explore Deep Dive */
.explore-deep-dive {
    padding: 100px 0;
    background: #fdfdfd;
}

.explore-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.explore-card {
    background: white;
    padding: 40px;
    border-radius: 30px;
    text-decoration: none;
    color: var(--text-main);
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
}

.explore-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(255, 92, 0, 0.1);
    border-color: rgba(255, 92, 0, 0.2);
}

.explore-icon {
    font-size: 40px;
    margin-bottom: 24px;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.explore-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    font-weight: 800;
}

.explore-card p {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 24px;
    flex-grow: 1;
}

.explore-link {
    font-weight: 700;
    color: #FF5C00;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

@media (max-width: 992px) {
    .performance-flex { grid-template-columns: 1fr; text-align: center; }
    .performance-visual { order: -1; }
}
