/* ========== GPSFake Landing ========== */
:root {
    --bg: #0a0f1a;
    --bg2: #0f1628;
    --surface: #141c30;
    --border: rgba(0, 210, 190, 0.15);
    --teal: #00d2be;
    --teal-dark: #00a89a;
    --cyan: #00c8ff;
    --purple: #6c5ce7;
    --text: #eaf0f6;
    --text-muted: #7a8ba5;
    --gradient: linear-gradient(135deg, #00d2be, #00c8ff);
    --gradient-glow: linear-gradient(135deg, rgba(0,210,190,0.15), rgba(0,200,255,0.15));
    --font: 'Outfit', sans-serif;
    --mono: 'Space Mono', monospace;
    --radius: 14px;
    --radius-lg: 22px;
}
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; scroll-padding-top:80px; }
body { font-family:var(--font); background:var(--bg); color:var(--text); line-height:1.6; -webkit-font-smoothing:antialiased; overflow-x:hidden; }
a { color:inherit; text-decoration:none; }
img { max-width:100%; height:auto; display:block; }
.container { max-width:1100px; margin:0 auto; padding:0 24px; }

.gradient-text { background:var(--gradient); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; }

/* NAV */
.nav { position:fixed; top:0; left:0; right:0; z-index:1000; background:rgba(10,15,26,0.88); backdrop-filter:blur(20px); border-bottom:1px solid var(--border); }
.nav-inner { max-width:1100px; margin:0 auto; padding:0 24px; display:flex; align-items:center; justify-content:space-between; height:64px; }
.nav-logo { display:flex; align-items:center; gap:8px; font-size:20px; font-weight:800; }
.nav-logo span { background:var(--gradient); -webkit-background-clip:text; -webkit-text-fill-color:transparent; }
.nav-links { display:flex; align-items:center; gap:28px; }
.nav-links a { font-size:14px; font-weight:500; color:var(--text-muted); transition:color 0.3s; }
.nav-links a:hover { color:var(--text); }
.nav-cta { background:var(--gradient) !important; color:#000 !important; padding:8px 18px !important; border-radius:10px; font-weight:700 !important; }
.nav-toggle { display:none; background:none; border:none; cursor:pointer; padding:8px; }
.nav-toggle span { display:block; width:22px; height:2px; background:var(--text); margin:5px 0; border-radius:2px; }

/* HERO */
.hero { position:relative; min-height:100vh; display:flex; align-items:center; overflow:hidden; padding-top:80px; }
.hero-glow { position:absolute; top:-200px; right:-200px; width:600px; height:600px; background:radial-gradient(circle, rgba(0,210,190,0.12) 0%, transparent 70%); pointer-events:none; }
.hero-content { max-width:1100px; margin:0 auto; padding:0 24px; display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:center; width:100%; }
.hero-badge { display:inline-block; padding:6px 16px; border-radius:100px; background:var(--gradient-glow); border:1px solid var(--border); font-size:13px; font-weight:600; color:var(--teal); margin-bottom:20px; font-family:var(--mono); animation:fadeInDown 0.6s ease; }
.hero-left h1 { font-size:clamp(2.2rem,5vw,3.6rem); font-weight:900; line-height:1.08; letter-spacing:-0.03em; margin-bottom:18px; animation:fadeInUp 0.6s ease 0.1s both; }
.hero-desc { font-size:1.05rem; color:var(--text-muted); max-width:460px; margin-bottom:32px; line-height:1.7; animation:fadeInUp 0.6s ease 0.2s both; }
.hero-actions { display:flex; gap:14px; flex-wrap:wrap; animation:fadeInUp 0.6s ease 0.3s both; }
.hero-counter { display:flex; align-items:center; gap:12px; margin-top:28px; padding:14px 20px; background:var(--surface); border:1px solid var(--border); border-radius:var(--radius); width:fit-content; animation:fadeInUp 0.6s ease 0.4s both; }
.counter-icon { font-size:24px; }
.counter-num { font-family:var(--mono); font-size:28px; font-weight:700; color:var(--teal); }
.counter-label { font-size:13px; color:var(--text-muted); margin-left:6px; }

/* PHONE FRAME */
.hero-right { display:flex; justify-content:center; animation:fadeInUp 0.8s ease 0.3s both; }
.phone-frame {
    width:280px; border-radius:36px; overflow:hidden;
    border:3px solid rgba(255,255,255,0.1);
    box-shadow: 0 40px 100px rgba(0,210,190,0.15), 0 0 0 1px rgba(255,255,255,0.05);
    background:#000;
}
.phone-frame img { width:100%; height:auto; }

/* BUTTONS */
.btn { display:inline-flex; align-items:center; gap:10px; padding:14px 26px; border-radius:12px; font-weight:700; font-size:15px; transition:all 0.3s; cursor:pointer; border:none; }
.btn-download { background:var(--gradient); color:#000; box-shadow:0 4px 24px rgba(0,210,190,0.3); }
.btn-download:hover { transform:translateY(-3px); box-shadow:0 10px 36px rgba(0,210,190,0.45); }
.btn-outline { background:transparent; color:var(--text); border:1px solid var(--border); }
.btn-outline:hover { border-color:var(--teal); background:rgba(0,210,190,0.06); }
.btn-lg { font-size:18px; padding:18px 36px; }

/* SECTIONS */
.section { padding:100px 0; }
.section-dark { background:var(--bg2); }
.section-header { text-align:center; margin-bottom:56px; }
.section-header h2 { font-size:clamp(1.8rem,3.5vw,2.8rem); font-weight:800; letter-spacing:-0.02em; margin-bottom:12px; }
.tag { display:inline-block; font-size:12px; font-weight:700; text-transform:uppercase; letter-spacing:0.12em; color:var(--teal); margin-bottom:12px; font-family:var(--mono); }

/* FEATURES */
.features-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:20px; }
.feature-card { background:var(--surface); border:1px solid var(--border); border-radius:var(--radius); padding:28px; transition:all 0.3s; }
.feature-card:hover { transform:translateY(-6px); border-color:var(--teal); box-shadow:0 16px 48px rgba(0,210,190,0.1); }
.feature-icon { font-size:32px; margin-bottom:14px; }
.feature-card h3 { font-size:16px; font-weight:700; margin-bottom:8px; }
.feature-card p { font-size:13px; color:var(--text-muted); line-height:1.6; }

/* SCREENSHOTS */
.screenshots-scroll { display:flex; gap:20px; overflow-x:auto; padding-bottom:16px; scroll-snap-type:x mandatory; -webkit-overflow-scrolling:touch; }
.screenshots-scroll::-webkit-scrollbar { height:6px; }
.screenshots-scroll::-webkit-scrollbar-track { background:var(--surface); border-radius:10px; }
.screenshots-scroll::-webkit-scrollbar-thumb { background:var(--teal); border-radius:10px; }
.screenshot-item { flex:0 0 220px; scroll-snap-align:center; text-align:center; }
.screenshot-item img { width:220px; height:auto; border-radius:var(--radius-lg); border:2px solid var(--border); cursor:zoom-in; transition:transform 0.3s, border-color 0.3s; }
.screenshot-item img:hover { transform:scale(1.04); border-color:var(--teal); }
.screenshot-item span { display:block; margin-top:12px; font-size:13px; color:var(--text-muted); font-weight:500; }

/* STEPS */
.steps { display:flex; align-items:flex-start; justify-content:center; gap:0; max-width:800px; margin:0 auto; }
.step { flex:1; text-align:center; padding:0 20px; }
.step-num { width:48px; height:48px; border-radius:50%; background:var(--gradient); color:#000; font-weight:900; font-size:20px; display:flex; align-items:center; justify-content:center; margin:0 auto 16px; }
.step h3 { font-size:17px; font-weight:700; margin-bottom:8px; }
.step p { font-size:14px; color:var(--text-muted); }
.step-line { width:60px; height:2px; background:var(--border); margin-top:24px; flex-shrink:0; }

/* CTA */
.section-cta { text-align:center; background:var(--bg2); position:relative; overflow:hidden; }
.section-cta::before { content:''; position:absolute; top:-100px; left:50%; transform:translateX(-50%); width:500px; height:500px; background:radial-gradient(circle, rgba(0,210,190,0.08) 0%, transparent 70%); pointer-events:none; }
.cta-content { position:relative; z-index:2; }
.cta-content h2 { font-size:clamp(2rem,4vw,3rem); font-weight:900; margin-bottom:14px; }
.cta-content p { color:var(--text-muted); font-size:1.1rem; max-width:420px; margin:0 auto 32px; }
.cta-meta { display:flex; gap:24px; justify-content:center; flex-wrap:wrap; margin-top:28px; }
.cta-meta span { font-size:14px; color:var(--text-muted); font-weight:500; }

/* FOOTER */
.footer { padding:32px 0; border-top:1px solid var(--border); }
.footer-inner { display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:12px; font-size:13px; color:var(--text-muted); }
.footer-inner a:hover { color:var(--teal); }

/* LIGHTBOX */
.lightbox { position:fixed; inset:0; z-index:9999; background:rgba(0,0,0,0.92); backdrop-filter:blur(10px); display:none; align-items:center; justify-content:center; cursor:zoom-out; }
.lightbox.open { display:flex; animation:fadeIn 0.25s ease; }
.lightbox img { max-width:92vw; max-height:90vh; border-radius:16px; box-shadow:0 20px 80px rgba(0,0,0,0.6); object-fit:contain; }
.lightbox-close { position:absolute; top:20px; right:28px; background:none; border:none; color:#fff; font-size:36px; cursor:pointer; z-index:10; opacity:0.7; }
.lightbox-close:hover { opacity:1; }

/* REVEAL */
.reveal { opacity:0; transform:translateY(30px); transition:all 0.7s cubic-bezier(0.16,1,0.3,1); }
.reveal.visible { opacity:1; transform:translateY(0); }

/* TUTORIAL GRID */
.tutorial-grid {
    display:grid; grid-template-columns:repeat(3,1fr); gap:24px;
}
.tutorial-step {
    background:var(--surface); border:1px solid var(--border);
    border-radius:var(--radius-lg); padding:20px; text-align:center;
    transition:all 0.3s; position:relative;
}
.tutorial-step:hover { transform:translateY(-6px); border-color:var(--teal); box-shadow:0 16px 48px rgba(0,210,190,0.1); }
.tutorial-num {
    position:absolute; top:-12px; left:50%; transform:translateX(-50%);
    width:32px; height:32px; border-radius:50%; background:var(--gradient);
    color:#000; font-weight:900; font-size:14px;
    display:flex; align-items:center; justify-content:center;
}
.tutorial-step img {
    width:180px; height:auto; margin:16px auto 12px; border-radius:12px;
    border:1px solid var(--border); cursor:zoom-in; transition:transform 0.3s;
}
.tutorial-step img:hover { transform:scale(1.05); }
.tutorial-step p { font-size:13px; color:var(--text-muted); font-weight:500; }

/* DISCLAIMER */
.disclaimer { padding:60px 0 0; }
.disclaimer-box {
    display:flex; gap:20px; padding:28px 32px;
    background:rgba(255,255,255,0.03); border:1px solid rgba(255,255,255,0.08);
    border-radius:var(--radius-lg); text-align:left;
}
.disclaimer-icon { font-size:32px; flex-shrink:0; margin-top:2px; }
.disclaimer-content h4 { font-size:16px; font-weight:700; color:var(--text); margin-bottom:12px; }
.disclaimer-content p { font-size:13px; color:var(--text-muted); line-height:1.7; margin-bottom:10px; }
.disclaimer-content p strong { color:var(--text); }
.disclaimer-content ul { padding-left:20px; margin-bottom:12px; }
.disclaimer-content li { font-size:13px; color:var(--text-muted); line-height:1.8; list-style:disc; }
.disclaimer-final { font-style:italic; opacity:0.8; }

/* TRUST GRID */
.trust-grid {
    display:grid; grid-template-columns:repeat(6,1fr); gap:12px;
    max-width:700px; margin:32px auto 0;
}
.trust-badge {
    display:flex; flex-direction:column; align-items:center; gap:6px;
    padding:16px 8px; background:rgba(0,210,190,0.06);
    border:1px solid rgba(0,210,190,0.2); border-radius:var(--radius);
    transition:all 0.3s;
}
.trust-badge:hover { transform:translateY(-4px); border-color:var(--teal); box-shadow:0 8px 24px rgba(0,210,190,0.12); }
.trust-icon { font-size:28px; }
.trust-label { font-size:11px; font-weight:700; color:var(--teal); text-align:center; text-transform:uppercase; letter-spacing:0.04em; }

/* PROMISE BOX */
.promise-box {
    max-width:560px; margin:32px auto 36px;
    background:rgba(0,210,190,0.04); border:1px solid rgba(0,210,190,0.2);
    border-radius:var(--radius-lg); padding:28px 32px; text-align:left;
}
.promise-header { display:flex; align-items:center; gap:10px; margin-bottom:18px; }
.promise-shield { font-size:28px; }
.promise-header h3 { font-size:18px; font-weight:800; color:var(--teal); }
.promise-items { display:flex; flex-direction:column; gap:8px; }
.promise-item {
    font-size:14px; color:var(--text); font-weight:500;
    padding:6px 0; border-bottom:1px solid rgba(255,255,255,0.04);
}
.promise-item:last-child { border:none; }

/* SECURITY WARNING */
.security-warning {
    max-width:600px; margin:32px auto 0;
    background:rgba(255,40,40,0.06);
    border:2px solid #ff3232; border-radius:var(--radius);
    overflow:hidden; text-align:left;
    animation:warningPulse 3s ease-in-out infinite;
}
.warning-stripe {
    height:6px; background:repeating-linear-gradient(
        -45deg, #ff3232, #ff3232 10px, #ff6b00 10px, #ff6b00 20px
    );
}
.warning-body { padding:20px 24px; }
.warning-header { display:flex; align-items:center; gap:10px; margin-bottom:10px; }
.warning-header .warning-icon { font-size:24px; }
.warning-header strong { color:#ff3232; font-size:15px; letter-spacing:0.03em; }
.warning-body p { font-size:13px; color:var(--text-muted); line-height:1.7; }
.warning-body p strong { color:#ff6b6b; }
@keyframes warningPulse {
    0%, 100% { box-shadow:0 0 0 0 rgba(255,50,50,0); }
    50% { box-shadow:0 0 24px 6px rgba(255,50,50,0.12); }
}

/* ANIMATIONS */
@keyframes fadeInUp { from { opacity:0; transform:translateY(30px) } to { opacity:1; transform:translateY(0) } }
@keyframes fadeInDown { from { opacity:0; transform:translateY(-20px) } to { opacity:1; transform:translateY(0) } }
@keyframes fadeIn { from { opacity:0 } to { opacity:1 } }

/* RESPONSIVE */
@media (max-width:968px) {
    .hero-content { grid-template-columns:1fr; text-align:center; }
    .hero-desc { margin-left:auto; margin-right:auto; }
    .hero-actions { justify-content:center; }
    .hero-counter { margin-left:auto; margin-right:auto; }
    .features-grid { grid-template-columns:repeat(2,1fr); }
    .steps { flex-direction:column; align-items:center; gap:24px; }
    .step-line { width:2px; height:30px; }
    .trust-grid { grid-template-columns:repeat(3,1fr); }
    .tutorial-grid { grid-template-columns:repeat(2,1fr); }
    .nav-links { display:none; position:fixed; top:64px; left:0; right:0; background:var(--bg); padding:20px; flex-direction:column; gap:16px; border-bottom:1px solid var(--border); }
    .nav-links.open { display:flex; }
    .nav-toggle { display:block; }
}
@media (max-width:600px) {
    .features-grid { grid-template-columns:1fr; }
    .section { padding:64px 0; }
    .phone-frame { width:240px; }
    .trust-grid { grid-template-columns:repeat(2,1fr); }
    .tutorial-grid { grid-template-columns:1fr; }
    .promise-box { padding:20px; }
}
