/* ═══════════════════════════════════════════════════
   ResearchPro — Main Stylesheet
   Themes: dark | grey | light
   Navbar: position fixed — stays on screen always
═══════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;1,9..40,300&family=Space+Mono:wght@400;700&display=swap');

/* ── THEME TOKENS ───────────────────────────────── */
:root {
    --accent:  #00FFB2;
    --accent2: #FF3CAC;
    --accent3: #7B5EA7;
    --radius:  14px;
    --nav-h:   68px;
}

[data-theme="dark"] {
    --bg:      #080B0F;
    --bg2:     #0F1318;
    --bg3:     #161C24;
    --surface: #1A2130;
    --border:  rgba(255,255,255,0.07);
    --text:    #F0F4FF;
    --text2:   #8A95A8;
    --text3:   #4A5568;
    --card-bg: rgba(26,33,48,0.85);
    --nav-bg:  rgba(8,11,15,0.88);
    --glow:    rgba(0,255,178,0.18);
    --orb1:    rgba(0,255,178,0.12);
    --orb2:    rgba(255,60,172,0.10);
    --orb3:    rgba(123,94,167,0.12);
}

[data-theme="light"] {
    --bg:      #F7F9FC;
    --bg2:     #EDF0F5;
    --bg3:     #E2E8F0;
    --surface: #FFFFFF;
    --border:  rgba(0,0,0,0.09);
    --text:    #0D1117;
    --text2:   #4A5568;
    --text3:   #A0AEC0;
    --card-bg: rgba(255,255,255,0.92);
    --nav-bg:  rgba(247,249,252,0.92);
    --glow:    rgba(0,200,140,0.10);
    --orb1:    rgba(0,200,140,0.10);
    --orb2:    rgba(255,60,172,0.07);
    --orb3:    rgba(123,94,167,0.08);
}

[data-theme="grey"] {
    --bg:      #17171E;
    --bg2:     #1E1E28;
    --bg3:     #262633;
    --surface: #2C2C3C;
    --border:  rgba(255,255,255,0.06);
    --text:    #D4D4E8;
    --text2:   #7070A0;
    --text3:   #404060;
    --card-bg: rgba(44,44,60,0.88);
    --nav-bg:  rgba(23,23,30,0.9);
    --glow:    rgba(0,255,178,0.12);
    --orb1:    rgba(0,255,178,0.08);
    --orb2:    rgba(255,60,172,0.07);
    --orb3:    rgba(123,94,167,0.09);
}

/* ── RESET ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: 'DM Sans', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.65;
    transition: background 0.4s ease, color 0.4s ease;
    overflow-x: hidden;
}

/* Noise overlay */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9000;
    opacity: 0.35;
}

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 2px; }

/* ────────────────────────────────────────────────
   CURSOR GLOW
──────────────────────────────────────────────── */
.cursor-glow {
    position: fixed;
    width: 380px; height: 380px;
    border-radius: 50%;
    background: var(--glow);
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 0;
    filter: blur(80px);
    transition: left 0.08s ease, top 0.08s ease;
}

/* ────────────────────────────────────────────────
   NAVBAR
──────────────────────────────────────────────── */
#navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 8000;
    height: var(--nav-h);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2.5rem;
    background: var(--nav-bg);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--border);
    transition: background 0.4s ease, box-shadow 0.3s ease;
}
#navbar.scrolled {
    box-shadow: 0 4px 40px rgba(0,0,0,0.25);
    border-bottom-color: transparent;
}

.nav-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.9rem;
    letter-spacing: 0.04em;
    color: var(--text);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.35rem;
    transition: opacity 0.2s;
}
.nav-logo:hover { opacity: 0.85; }
.logo-accent { color: var(--accent); }
.logo-dot {
    width: 9px; height: 9px;
    background: var(--accent);
    border-radius: 50%;
    display: inline-block;
    animation: pulse-dot 2.2s ease infinite;
    flex-shrink: 0;
}
@keyframes pulse-dot {
    0%, 100% { transform: scale(1); opacity: 1; }
    50%       { transform: scale(1.5); opacity: 0.6; }
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    list-style: none;
}
.nav-link-item {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text2);
    text-decoration: none;
    letter-spacing: 0.02em;
    position: relative;
    transition: color 0.25s;
}
.nav-link-item::after {
    content: '';
    position: absolute;
    left: 0; bottom: -4px;
    width: 0; height: 2px;
    background: var(--accent);
    border-radius: 1px;
    transition: width 0.25s ease;
}
.nav-link-item:hover,
.nav-link-item.active { color: var(--text); }
.nav-link-item:hover::after,
.nav-link-item.active::after { width: 100%; }

.nav-right {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.theme-switcher {
    display: flex;
    align-items: center;
    gap: 2px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 50px;
    padding: 4px;
}
.theme-btn {
    width: 30px; height: 30px;
    border-radius: 50%;
    border: none;
    background: transparent;
    color: var(--text2);
    font-size: 0.75rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, color 0.2s;
}
.theme-btn.active,
.theme-btn:hover { background: var(--accent); color: #000; }

.btn-cta {
    font-size: 0.85rem;
    font-weight: 600;
    color: #000;
    background: var(--accent);
    text-decoration: none;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
    white-space: nowrap;
}
.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,255,178,0.35);
    opacity: 0.9;
}

.btn-cta-ghost {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text2);
    background: transparent;
    border: 1px solid var(--border);
    text-decoration: none;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    transition: border-color 0.2s, color 0.2s;
    white-space: nowrap;
}
.btn-cta-ghost:hover { border-color: var(--accent); color: var(--accent); }

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.hamburger span {
    display: block;
    width: 22px; height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all 0.3s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-drawer {
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--bg2);
    border-bottom: 1px solid var(--border);
    padding: 1.5rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 7999;
    transform: translateY(-110%);
    transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
}
.mobile-drawer.open { transform: translateY(0); }
.mob-link {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text2);
    text-decoration: none;
    padding: 0.4rem 0;
    transition: color 0.2s;
}
.mob-link:hover { color: var(--accent); }
.mob-cta { align-self: flex-start; margin-top: 0.5rem; }

/* ────────────────────────────────────────────────
   HERO
──────────────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 100vh;
    padding-top: calc(var(--nav-h) + 4rem);
    padding-bottom: 6rem;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    overflow: hidden;
    background: var(--bg);
}
.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(var(--border) 1px, transparent 1px),
        linear-gradient(90deg, var(--border) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.5;
    pointer-events: none;
}

.orb { position: absolute; border-radius: 50%; filter: blur(100px); pointer-events: none; }
.orb-1 { width: 500px; height: 500px; top: -100px; left: -100px; background: var(--orb1); }
.orb-2 { width: 400px; height: 400px; bottom: -80px; right: 10%; background: var(--orb2); }
.orb-3 { width: 300px; height: 300px; top: 50%; right: 35%; background: var(--orb3); }

.hero-inner {
    position: relative;
    z-index: 2;
    max-width: 620px;
    flex: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Space Mono', monospace;
    font-size: 0.72rem;
    color: var(--accent);
    border: 1px solid rgba(0,255,178,0.3);
    background: rgba(0,255,178,0.06);
    padding: 0.35rem 0.9rem;
    border-radius: 50px;
    margin-bottom: 1.8rem;
    letter-spacing: 0.05em;
}
.badge-dot {
    width: 7px; height: 7px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse-dot 1.8s ease infinite;
}

.hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3.2rem, 7vw, 6rem);
    line-height: 1.02;
    letter-spacing: 0.01em;
    color: var(--text);
    margin-bottom: 1.6rem;
}
.hero-title em { font-style: normal; color: var(--accent); }
.hero-title .line { display: block; }

.hero-sub {
    font-size: 1.05rem;
    color: var(--text2);
    max-width: 520px;
    margin-bottom: 2.2rem;
    font-weight: 300;
}

.reveal-line  { opacity: 0; transform: translateY(40px); animation: revealUp 0.75s ease forwards; }
.reveal-fade  { opacity: 0; animation: fadeIn 0.75s ease forwards; }
.reveal-card  { opacity: 0; transform: translateY(30px) scale(0.97); animation: revealCard 0.9s cubic-bezier(0.4,0,0.2,1) 0.6s forwards; }
.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.30s; }
.delay-3 { animation-delay: 0.45s; }
.delay-4 { animation-delay: 0.60s; }
.delay-5 { animation-delay: 0.75s; }
@keyframes revealUp   { to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn     { to { opacity: 1; } }
@keyframes revealCard { to { opacity: 1; transform: translateY(0) scale(1); } }

.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2rem; }

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--accent);
    color: #000;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 0.85rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    transition: transform 0.25s, box-shadow 0.25s;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(0,255,178,0.35); }
.btn-primary.btn-large { font-size: 1.05rem; padding: 1rem 2.5rem; }

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: var(--text2);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.85rem 1.8rem;
    border-radius: 50px;
    border: 1px solid var(--border);
    text-decoration: none;
    transition: border-color 0.25s, color 0.25s;
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

.hero-tags { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.tag {
    font-size: 0.78rem;
    font-family: 'Space Mono', monospace;
    color: var(--text3);
    background: var(--surface);
    border: 1px solid var(--border);
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}
.tag i { color: var(--accent); font-size: 0.7rem; }

/* ── HERO CARD ── */
.hero-card {
    position: relative;
    z-index: 2;
    flex-shrink: 0;
    width: 310px;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 24px 64px rgba(0,0,0,0.25), 0 0 0 1px var(--border);
    animation: float 5s ease-in-out infinite;
}
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }

.hcard-header { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.2rem; }
.hcard-avatar {
    width: 40px; height: 40px;
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 0.8rem; color: #000;
    flex-shrink: 0;
}
.hcard-name { font-weight: 600; font-size: 0.9rem; color: var(--text); }
.hcard-role { font-size: 0.72rem; color: var(--text2); }
.hcard-live {
    margin-left: auto;
    font-size: 0.62rem;
    font-family: 'Space Mono', monospace;
    background: rgba(0,255,178,0.15);
    color: var(--accent);
    border: 1px solid rgba(0,255,178,0.3);
    padding: 0.15rem 0.5rem;
    border-radius: 50px;
}
.hcard-label { font-size: 0.75rem; color: var(--text2); margin-bottom: 0.25rem; }
.hcard-score { font-family: 'Bebas Neue', sans-serif; font-size: 3.5rem; line-height: 1; color: var(--accent); margin-bottom: 0.6rem; }
.hcard-score span { font-size: 1.8rem; opacity: 0.7; }

.progress-bar-wrap { height: 6px; background: var(--surface); border-radius: 3px; overflow: hidden; margin-bottom: 1rem; }
.progress-bar-fill {
    height: 100%; width: 0;
    background: linear-gradient(90deg, var(--accent), var(--accent2));
    border-radius: 3px;
    transition: width 1.2s cubic-bezier(0.4,0,0.2,1);
}

.hcard-milestones { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1rem; }
.milestone {
    display: flex; align-items: center; gap: 0.5rem;
    font-size: 0.78rem; color: var(--text2);
    background: var(--surface); border: 1px solid var(--border);
    border-radius: 8px; padding: 0.4rem 0.7rem;
}
.milestone i { font-size: 0.85rem; flex-shrink: 0; }
.milestone.done   i { color: var(--accent); }
.milestone.active i { color: #FFD700; }
.milestone.pending i { color: var(--text3); }
.ms-status { margin-left: auto; font-size: 0.68rem; font-family: 'Space Mono', monospace; opacity: 0.7; }

.hcard-path { font-size: 0.78rem; color: var(--text2); display: flex; align-items: center; gap: 0.4rem; }
.hcard-path i { color: var(--accent); }

.scroll-hint {
    position: absolute;
    bottom: 2.5rem; left: 50%;
    transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 0.4rem;
    font-size: 0.7rem; font-family: 'Space Mono', monospace;
    color: var(--text3); letter-spacing: 0.1em;
    animation: fadeIn 1s ease 1.5s forwards; opacity: 0; z-index: 2;
}
.scroll-line {
    width: 1px; height: 40px;
    background: linear-gradient(to bottom, var(--accent), transparent);
    animation: scrollPulse 1.8s ease infinite;
}
@keyframes scrollPulse { 0%, 100% { opacity: 0.4; transform: scaleY(1); } 50% { opacity: 1; transform: scaleY(1.2); } }

/* ────────────────────────────────────────────────
   MARQUEE
──────────────────────────────────────────────── */
.marquee-wrap {
    background: var(--bg2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
    padding: 1rem 0;
    position: relative;
    z-index: 1;
}
.marquee-track {
    display: flex; align-items: center; gap: 2.5rem;
    white-space: nowrap;
    animation: marquee 28s linear infinite;
}
.marquee-track span { font-family: 'Space Mono', monospace; font-size: 0.8rem; letter-spacing: 0.08em; color: var(--text2); text-transform: uppercase; }
.marquee-track .mdot { color: var(--accent); font-size: 0.7rem; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ────────────────────────────────────────────────
   SECTIONS (shared)
──────────────────────────────────────────────── */
.section { padding: 5rem 2.5rem; background: var(--bg); }
.section-inner { max-width: 1200px; margin: 0 auto; }

.section-eyebrow {
    font-family: 'Space Mono', monospace;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    color: var(--accent);
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}
.section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.4rem, 5vw, 4rem);
    line-height: 1.05;
    color: var(--text);
    margin-bottom: 1.8rem;
}
.section-title em { font-style: normal; color: var(--accent); }
.section-header { max-width: 580px; }

.section-sub {
    font-size: 1rem;
    color: var(--text2);
    margin-top: -1rem;
    margin-bottom: 2rem;
}

/* ────────────────────────────────────────────────
   FEATURES
──────────────────────────────────────────────── */
.features-section { background: var(--bg2); }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }

.feat-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: relative; overflow: hidden;
    opacity: 0; transform: translateY(30px);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.feat-card.in-view {
    opacity: 1; transform: translateY(0);
    transition: opacity 0.6s ease, transform 0.6s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.feat-card:hover { transform: translateY(-6px); border-color: rgba(0,255,178,0.25); box-shadow: 0 16px 48px rgba(0,0,0,0.2), 0 0 0 1px rgba(0,255,178,0.1); }
.feat-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--accent), var(--accent2)); opacity: 0; transition: opacity 0.3s; }
.feat-card:hover::before { opacity: 1; }

.feat-big  { grid-column: span 2; }
.feat-wide { grid-column: span 2; }

.feat-icon-wrap {
    width: 48px; height: 48px;
    background: rgba(0,255,178,0.1);
    border: 1px solid rgba(0,255,178,0.2);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem; color: var(--accent);
    margin-bottom: 1.2rem;
    transition: background 0.3s, transform 0.3s;
}
.feat-card:hover .feat-icon-wrap { background: rgba(0,255,178,0.18); transform: scale(1.05) rotate(-4deg); }
.feat-card h3 { font-size: 1.1rem; font-weight: 600; color: var(--text); margin-bottom: 0.7rem; }
.feat-card p  { font-size: 0.9rem; color: var(--text2); line-height: 1.65; }

.feat-tag {
    display: inline-block;
    margin-top: 1.2rem;
    font-size: 0.7rem;
    font-family: 'Space Mono', monospace;
    color: var(--accent);
    background: rgba(0,255,178,0.08);
    border: 1px solid rgba(0,255,178,0.25);
    padding: 0.2rem 0.7rem;
    border-radius: 50px;
}

/* ────────────────────────────────────────────────
   STATS
──────────────────────────────────────────────── */
.stats-section {
    background: var(--bg);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 3.5rem 2.5rem;
}
.stats-grid { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.stat-item {
    text-align: center; flex: 1; min-width: 140px;
    opacity: 0; transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}
.stat-item.in-view { opacity: 1; transform: translateY(0); }
.stat-row { display: flex; align-items: flex-end; justify-content: center; }
.stat-number { font-family: 'Bebas Neue', sans-serif; font-size: clamp(3rem, 6vw, 4.5rem); line-height: 1; color: var(--accent); }
.stat-suffix { font-family: 'Bebas Neue', sans-serif; font-size: clamp(2rem, 4vw, 3rem); color: var(--accent); padding-bottom: 4px; }
.stat-label  { font-size: 0.82rem; color: var(--text2); margin-top: 0.4rem; letter-spacing: 0.03em; }
.stat-divider { width: 1px; height: 80px; background: var(--border); flex-shrink: 0; }

/* ────────────────────────────────────────────────
   HOW IT WORKS
──────────────────────────────────────────────── */
.about-section { background: var(--bg2); }
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-left .section-title { margin-bottom: 2rem; }

.steps { display: flex; flex-direction: column; gap: 1.5rem; margin-bottom: 2rem; }
.step {
    display: flex; gap: 1.2rem; align-items: flex-start;
    opacity: 0; transform: translateX(-20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}
.step.in-view { opacity: 1; transform: translateX(0); }
.step-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.2rem; line-height: 1;
    color: var(--accent); opacity: 0.4;
    flex-shrink: 0; width: 42px;
    transition: opacity 0.3s;
}
.step:hover .step-num { opacity: 1; }
.step-body h4 { font-size: 1rem; font-weight: 600; color: var(--text); margin-bottom: 0.3rem; }
.step-body p  { font-size: 0.88rem; color: var(--text2); }

.about-visual { position: relative; width: 100%; height: 420px; display: flex; align-items: center; justify-content: center; }
.av-orb  { position: absolute; width: 260px; height: 260px; background: radial-gradient(circle, rgba(0,255,178,0.12), transparent 70%); border-radius: 50%; }
.av-ring { position: absolute; width: 300px; height: 300px; border: 1px dashed rgba(0,255,178,0.2); border-radius: 50%; animation: spin-slow 20s linear infinite; }
@keyframes spin-slow { from { transform: rotate(0); } to { transform: rotate(360deg); } }
.av-logo-center {
    position: absolute;
    width: 72px; height: 72px;
    background: var(--surface);
    border: 2px solid rgba(0,255,178,0.3);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem; color: var(--accent); z-index: 2;
}
.av-card {
    position: absolute;
    background: var(--card-bg); border: 1px solid var(--border); border-radius: 12px;
    padding: 0.8rem 1.1rem; display: flex; align-items: center; gap: 0.7rem;
    font-size: 0.8rem; color: var(--text2);
    backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    white-space: nowrap; z-index: 3;
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
    opacity: 0; transform: scale(0.9);
    transition: opacity 0.5s ease, transform 0.5s ease;
}
.av-card.in-view { opacity: 1; transform: scale(1); }
.av-card i  { color: var(--accent); font-size: 1rem; }
.av-card-1  { top: 20px; right: 10px; }
.av-card-2  { bottom: 90px; left: 0; }
.av-card-3  { bottom: 20px; right: 30px; }

/* ────────────────────────────────────────────────
   PRICING
──────────────────────────────────────────────── */
.pricing-section { background: var(--bg); }

.pricing-header-wrap {
    text-align: center;
    max-width: 100%;
    margin-bottom: 0;
}
.pricing-header-wrap .section-eyebrow { margin-bottom: 0.5rem; }
.pricing-header-wrap .section-title   { margin-bottom: 0.3rem; }
.pricing-header-wrap .section-sub     { margin-top: 0.2rem; margin-bottom: 0; }
#pricingLocationBadge                 { margin-top: 1rem; margin-bottom: 0; }

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 2rem;
    align-items: start;
}

/* ── Pricing card ── */
.pricing-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.25rem 1.3rem;
    position: relative;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}
.pricing-card.in-view {
    opacity: 1; transform: translateY(0);
    transition: opacity 0.6s ease, transform 0.6s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.pricing-card:hover { transform: translateY(-5px); border-color: rgba(0,255,178,0.2); box-shadow: 0 14px 40px rgba(0,0,0,0.2); }
.pricing-featured {
    border-color: rgba(0,255,178,0.35);
    background: var(--surface);
    box-shadow: 0 0 0 1px rgba(0,255,178,0.2), 0 20px 60px rgba(0,0,0,0.25);
}

.pricing-popular {
    position: absolute;
    top: -13px; left: 50%;
    transform: translateX(-50%);
    font-size: 0.66rem;
    font-family: 'Space Mono', monospace;
    font-weight: 700;
    color: #000;
    background: var(--accent);
    padding: 0.2rem 0.85rem;
    border-radius: 50px;
    white-space: nowrap;
    letter-spacing: 0.05em;
}
.pricing-tag-green  { background: var(--accent);  color: #000; }
.pricing-tag-purple { background: var(--accent3); color: #fff; }

.pricing-icon {
    width: 36px; height: 36px;
    background: rgba(0,255,178,0.1);
    border: 1px solid rgba(0,255,178,0.2);
    border-radius: 9px;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.9rem; color: var(--accent);
    margin-bottom: 0.75rem;
}

.plan-name { font-size: 0.92rem; font-weight: 600; color: var(--text); margin-bottom: 0.4rem; }

.plan-price { display: flex; align-items: baseline; gap: 0.15rem; margin-bottom: 0.85rem; }
.currency   { font-size: 1rem; color: var(--text2); padding-bottom: 3px; }
.amount     { font-family: 'Bebas Neue', sans-serif; font-size: 2rem; line-height: 1; color: var(--text); }
.amount-text { font-family: 'Bebas Neue', sans-serif; font-size: 2rem; line-height: 1; color: var(--accent); margin-bottom: 0.85rem; display: block; }
.period     { font-size: 0.76rem; color: var(--text3); }

.plan-features { list-style: none; display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1rem; }
.plan-features li { font-size: 0.8rem; color: var(--text2); display: flex; align-items: center; gap: 0.45rem; }
.plan-features li i { color: var(--accent); font-size: 0.72rem; flex-shrink: 0; }

.plan-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    text-align: center;
    font-size: 0.82rem;
    font-weight: 600;
    text-decoration: none;
    padding: 0.6rem 1rem;
    border-radius: 50px;
    border: 1px solid var(--border);
    color: var(--text2);
    background: transparent;
    transition: border-color 0.25s, color 0.25s, background 0.25s, box-shadow 0.25s, transform 0.25s;
}
.plan-btn:hover { border-color: var(--accent); color: var(--accent); }
.plan-btn-featured { background: var(--accent); color: #000; border-color: var(--accent); }
.plan-btn-featured:hover { box-shadow: 0 8px 24px rgba(0,255,178,0.35); color: #000; transform: translateY(-2px); }

/* ── Locale pricing banner ── */
.pricing-locale-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.9rem;
    padding: 1rem 1.5rem;
    border-radius: 14px;
    background: linear-gradient(120deg, rgba(0,100,50,0.28) 0%, rgba(180,0,0,0.18) 100%);
    border: 1px solid rgba(0,255,178,0.18);
    position: relative;
    overflow: hidden;
}
.pricing-locale-banner::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(120deg, rgba(0,255,178,0.04), transparent);
    pointer-events: none;
}
.pricing-locale-global {
    background: linear-gradient(120deg, rgba(0,80,180,0.2) 0%, rgba(0,255,178,0.08) 100%);
    border-color: rgba(0,180,255,0.2);
}
.plb-left { display: flex; align-items: center; gap: 0.85rem; flex-shrink: 0; position: relative; }
.plb-flag { font-size: 2rem; line-height: 1; filter: drop-shadow(0 2px 6px rgba(0,0,0,0.3)); }
.plb-text { display: flex; flex-direction: column; gap: 2px; }
.plb-text strong { font-size: 0.95rem; font-weight: 700; color: var(--text); letter-spacing: 0.01em; }
.plb-text span   { font-size: 0.8rem; color: var(--text2); }
.plb-text em     { font-style: normal; color: var(--accent); font-weight: 600; }
.plb-right { display: flex; align-items: center; flex-wrap: wrap; gap: 0.5rem; position: relative; }
.plb-pill {
    display: inline-flex; align-items: center; gap: 0.35rem;
    font-size: 0.72rem; font-family: 'Space Mono', monospace;
    color: var(--text2);
    background: rgba(255,255,255,0.06);
    border: 1px solid var(--border);
    padding: 0.28rem 0.7rem;
    border-radius: 50px;
    white-space: nowrap;
}
.plb-pill i { color: var(--accent); font-size: 0.65rem; }

/* ────────────────────────────────────────────────
   ABOUT US
──────────────────────────────────────────────── */
.about-us-section { background: var(--bg2); }
.about-us-grid    { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.2rem; }

.au-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: relative; overflow: hidden;
    opacity: 0; transform: translateY(24px);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.au-card.in-view {
    opacity: 1; transform: translateY(0);
    transition: opacity 0.6s ease, transform 0.6s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.au-card:hover { transform: translateY(-5px); border-color: rgba(0,255,178,0.2); box-shadow: 0 12px 40px rgba(0,0,0,0.18); }
.au-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--accent), var(--accent2)); opacity: 0; transition: opacity 0.3s; }
.au-card:hover::before { opacity: 1; }

.au-card-big  { grid-column: span 2; }
.au-card-wide { grid-column: span 2; }

.au-icon {
    width: 48px; height: 48px;
    background: rgba(0,255,178,0.1);
    border: 1px solid rgba(0,255,178,0.2);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem; color: var(--accent);
    margin-bottom: 1.2rem;
}
.au-card h3 { font-size: 1.1rem; font-weight: 600; color: var(--text); margin-bottom: 0.8rem; }
.au-card p  { font-size: 0.9rem; color: var(--text2); line-height: 1.7; }

.au-stat-row {
    display: flex; gap: 2rem;
    margin-top: 1.5rem; padding-top: 1.2rem;
    border-top: 1px solid var(--border);
    flex-wrap: wrap;
}
.au-stat { display: flex; flex-direction: column; gap: 3px; }
.au-stat-val { font-family: 'Bebas Neue', sans-serif; font-size: 2rem; line-height: 1; color: var(--accent); }
.au-stat-lbl { font-size: 0.75rem; color: var(--text2); }

.au-list { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; margin-top: 0.5rem; }
.au-list li { display: flex; align-items: flex-start; gap: 0.7rem; font-size: 0.88rem; color: var(--text2); }
.au-list li i { color: var(--accent); font-size: 0.82rem; flex-shrink: 0; margin-top: 3px; }
.au-list li strong { color: var(--text); }

.au-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1rem; }
.au-tag {
    font-size: 0.72rem; font-family: 'Space Mono', monospace;
    color: var(--accent);
    background: rgba(0,255,178,0.07);
    border: 1px solid rgba(0,255,178,0.2);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
}

.au-why-grid  { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.2rem; margin-top: 1rem; }
.au-why-item  { display: flex; gap: 0.9rem; align-items: flex-start; }
.au-why-icon  { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.au-why-item strong { display: block; font-size: 0.9rem; color: var(--text); margin-bottom: 4px; }
.au-why-item p      { font-size: 0.82rem; color: var(--text2); line-height: 1.5; margin: 0; }

/* ────────────────────────────────────────────────
   CTA BANNER
──────────────────────────────────────────────── */
.cta-section {
    position: relative; overflow: hidden;
    background: var(--bg2);
    border-top: 1px solid var(--border);
    padding: 5rem 2.5rem;
    text-align: center;
}
.cta-inner { position: relative; z-index: 2; max-width: 680px; margin: 0 auto; }
.cta-inner h2 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(2.8rem, 6vw, 4.5rem); line-height: 1.05; color: var(--text); margin-bottom: 1.2rem; }
.cta-inner h2 em { font-style: normal; color: var(--accent); }
.cta-inner p { font-size: 1rem; color: var(--text2); margin-bottom: 2.5rem; }
.cta-btns    { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; }
.cta-orb     { position: absolute; border-radius: 50%; filter: blur(100px); pointer-events: none; }
.cta-orb-1   { width: 400px; height: 400px; top: -100px; left: -80px; background: var(--orb1); }
.cta-orb-2   { width: 350px; height: 350px; bottom: -80px; right: -60px; background: var(--orb2); }

/* ────────────────────────────────────────────────
   FOOTER
──────────────────────────────────────────────── */
.footer { background: var(--bg2); border-top: 1px solid var(--border); padding: 4rem 2.5rem 1.5rem; }
.footer-inner {
    max-width: 1200px; margin: 0 auto;
    display: flex; justify-content: space-between; gap: 3rem; flex-wrap: wrap;
    padding-bottom: 3rem; border-bottom: 1px solid var(--border); margin-bottom: 1.5rem;
}
.footer-brand p { font-size: 0.85rem; color: var(--text2); max-width: 280px; margin-top: 0.8rem; line-height: 1.6; }
.footer-links   { display: flex; gap: 3rem; flex-wrap: wrap; }
.fl-group       { display: flex; flex-direction: column; gap: 0.7rem; }
.fl-title       { font-size: 0.75rem; font-family: 'Space Mono', monospace; color: var(--text3); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.3rem; }
.fl-group a     { font-size: 0.87rem; color: var(--text2); text-decoration: none; transition: color 0.2s; }
.fl-group a:hover { color: var(--accent); }
.footer-bottom {
    max-width: 1200px; margin: 0 auto;
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 0.5rem;
    font-size: 0.78rem; color: var(--text3);
}
.footer-love i { color: var(--accent2); }

/* ────────────────────────────────────────────────
   RESPONSIVE
──────────────────────────────────────────────── */

/* 5-column pricing on large screens */
@media (min-width: 1024px) {
    #pricingGrid { grid-template-columns: repeat(5, 1fr); }
}

@media (max-width: 1023px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .feat-big, .feat-wide { grid-column: span 2; }
    .about-inner { grid-template-columns: 1fr; }
    .about-visual { height: 340px; }
}
@media (max-width: 1023px) and (min-width: 640px) {
    #pricingGrid { grid-template-columns: repeat(3, 1fr); max-width: 100%; }
}
@media (max-width: 639px) {
    #pricingGrid { grid-template-columns: 1fr; max-width: 360px; margin-left: auto; margin-right: auto; }
}

@media (max-width: 768px) {
    #navbar { padding: 0 1.2rem; }
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .btn-cta-ghost { display: none; }

    .hero { flex-direction: column; padding-top: calc(var(--nav-h) + 2rem); text-align: center; align-items: center; }
    .hero-inner { max-width: 100%; }
    .hero-actions, .hero-tags { justify-content: center; }
    .hero-card { width: 100%; max-width: 320px; }
    .scroll-hint { display: none; }

    .features-grid { grid-template-columns: 1fr; }
    .feat-big, .feat-wide { grid-column: span 1; }

    .stats-grid { flex-direction: column; }
    .stat-divider { width: 80px; height: 1px; }

    .section      { padding: 3.5rem 1.2rem; }
    .cta-section  { padding: 3.5rem 1.2rem; }
    .footer       { padding: 3rem 1.2rem 1.5rem; }
    .footer-inner { flex-direction: column; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .cta-btns     { flex-direction: column; align-items: center; }

    .about-us-grid { grid-template-columns: 1fr; }
    .au-card-big, .au-card-wide { grid-column: span 1; }
    .au-why-grid  { grid-template-columns: 1fr; }
    .au-stat-row  { gap: 1.2rem; }

    .pricing-locale-banner { flex-direction: column; align-items: flex-start; padding: 0.9rem 1.1rem; }
    .plb-right { gap: 0.4rem; }
    .plb-pill  { font-size: 0.68rem; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 2.8rem; }
    .btn-cta { display: none; }
    .about-visual { height: 280px; }
    .av-card-1, .av-card-2, .av-card-3 { font-size: 0.72rem; padding: 0.6rem 0.85rem; }
}