/* ═══════════════════════════════════════════
   PumpScope — Global Styles
   Theme: #1df18d / #000 / #fff
═══════════════════════════════════════════ */

:root {
    --green: #1df18d;
    --green-dim: rgba(29, 241, 141, 0.12);
    --green-border: rgba(29, 241, 141, 0.25);
    --green-glow: rgba(29, 241, 141, 0.15);
    --black: #000;
    --white: #fff;
    --gray-50: #fafafa;
    --gray-100: #f5f5f5;
    --gray-200: #e5e5e5;
    --gray-400: #a3a3a3;
    --gray-600: #525252;
    --gray-800: #1a1a1a;
    --gray-900: #0a0a0a;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono: 'JetBrains Mono', 'SF Mono', monospace;
    --max-w: 1120px;
    --radius: 8px;
    --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.6;
    color: var(--white);
    background: var(--black);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

ul, ol {
    list-style: none;
}

/* ── Animated Background ── */
.bg-grid {
    position: fixed;
    inset: 0;
    background-image:
        linear-gradient(rgba(29, 241, 141, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(29, 241, 141, 0.03) 1px, transparent 1px);
    background-size: 80px 80px;
    pointer-events: none;
    z-index: 0;
}

.bg-glow {
    position: fixed;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(29, 241, 141, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
    animation: glow-pulse 6s ease-in-out infinite;
}

@keyframes glow-pulse {
    0%, 100% { opacity: 0.6; transform: translateX(-50%) scale(1); }
    50% { opacity: 1; transform: translateX(-50%) scale(1.1); }
}

/* ── Layout ── */
.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

.section {
    padding: 120px 0;
}

.section-sm {
    padding: 60px 0;
}

/* ── Typography ── */
h1, h2, h3, h4 {
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -0.03em;
}

h1 { font-size: clamp(40px, 6vw, 64px); }
h2 { font-size: clamp(30px, 4vw, 44px); }
h3 { font-size: 22px; }
h4 { font-size: 17px; }

.text-muted { color: var(--gray-400); }
.text-green { color: var(--green); }

.label {
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 14px;
    display: inline-block;
}

.subtitle {
    color: var(--gray-400);
    font-size: 18px;
    line-height: 1.7;
    max-width: 580px;
}

.highlight {
    color: var(--green);
    position: relative;
}

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius);
    font-family: var(--font);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition);
    border: 1px solid transparent;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--green);
    color: var(--black);
    border-color: var(--green);
    box-shadow: 0 0 20px rgba(29, 241, 141, 0.2);
}

.btn-primary:hover {
    box-shadow: 0 0 40px rgba(29, 241, 141, 0.4);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.15);
}

.btn-outline:hover {
    border-color: var(--green);
    color: var(--green);
    box-shadow: 0 0 20px rgba(29, 241, 141, 0.1);
}

/* ── Navigation ── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 24px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.nav-logo img {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    object-fit: cover;
}

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

.nav-links a {
    font-size: 14px;
    color: var(--gray-400);
    transition: color var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--green);
    transition: width var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--white);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-cta .btn {
    padding: 10px 20px;
    font-size: 13px;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    flex-direction: column;
    gap: 5px;
}

.menu-toggle span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--white);
    transition: all var(--transition);
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.98);
    z-index: 999;
    padding: 48px 24px;
    flex-direction: column;
    gap: 28px;
}

.mobile-nav.open {
    display: flex;
}

.mobile-nav a {
    font-size: 20px;
    color: var(--gray-400);
    transition: color var(--transition);
}

.mobile-nav a:hover {
    color: var(--green);
}

/* ── Hero ── */
.hero {
    padding: 180px 0 120px;
    position: relative;
}

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

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    margin-bottom: 20px;
}

.hero .subtitle {
    margin-bottom: 40px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 56px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-stat-value {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--white);
}

.hero-stat-value span {
    color: var(--green);
}

.hero-stat-label {
    font-size: 11px;
    color: var(--gray-600);
    font-family: var(--font-mono);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-top: 4px;
}

.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-logo-img {
    width: 320px;
    height: 320px;
    border-radius: 32px;
    object-fit: cover;
    border: 1px solid rgba(29, 241, 141, 0.2);
    box-shadow: 0 0 80px rgba(29, 241, 141, 0.15), 0 40px 80px rgba(0, 0, 0, 0.5);
    animation: float 6s ease-in-out infinite;
}

/* Hero Carousel */
.hero-carousel {
    position: relative;
    width: 280px;
    height: 280px;
}

.hero-card {
    position: absolute;
    width: 280px;
    height: 280px;
    border-radius: 24px;
    object-fit: cover;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: card-shuffle 9s ease-in-out infinite;
    opacity: 0;
    transform: scale(0.85) translateY(20px);
}

.hero-card-1 {
    border: 1px solid rgba(29, 241, 141, 0.3);
    animation-delay: 0s;
}

.hero-card-2 {
    border: 1px solid rgba(1, 114, 254, 0.3);
    animation-delay: 3s;
}

.hero-card-3 {
    border: 1px solid rgba(254, 156, 3, 0.3);
    animation-delay: 6s;
}

@keyframes card-shuffle {
    0% {
        opacity: 0;
        transform: scale(0.85) translateY(20px) rotate(-3deg);
        z-index: 1;
    }
    5% {
        opacity: 1;
        transform: scale(1) translateY(0) rotate(0deg);
        z-index: 3;
    }
    30% {
        opacity: 1;
        transform: scale(1) translateY(0) rotate(0deg);
        z-index: 3;
    }
    35% {
        opacity: 0;
        transform: scale(0.85) translateY(-20px) rotate(3deg);
        z-index: 1;
    }
    100% {
        opacity: 0;
        transform: scale(0.85) translateY(20px) rotate(-3deg);
        z-index: 1;
    }
}

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

.hero-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(29, 241, 141, 0.1);
    animation: ring-spin 20s linear infinite;
}

.hero-ring-1 {
    width: 400px;
    height: 400px;
}

.hero-ring-2 {
    width: 500px;
    height: 500px;
    animation-direction: reverse;
    animation-duration: 30s;
}

@keyframes ring-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ── Cards ── */
.card {
    background: var(--gray-900);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 36px;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--green-border), transparent);
    opacity: 0;
    transition: opacity var(--transition);
}

.card:hover {
    border-color: var(--green-border);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 30px rgba(29, 241, 141, 0.05);
}

.card:hover::before {
    opacity: 1;
}

/* Bot color themes */
.card-green:hover { border-color: var(--green-border); }
.card-blue:hover { border-color: rgba(1, 114, 254, 0.3); box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 30px rgba(1, 114, 254, 0.08); }
.card-orange:hover { border-color: rgba(254, 156, 3, 0.3); box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 30px rgba(254, 156, 3, 0.08); }

.feature-icon-blue {
    background: rgba(1, 114, 254, 0.12);
    border-color: rgba(1, 114, 254, 0.25);
}
.feature-icon-blue svg { stroke: #0172fe; }
.card-blue:hover .feature-icon-blue { box-shadow: 0 0 20px rgba(1, 114, 254, 0.2); }

.feature-icon-orange {
    background: rgba(254, 156, 3, 0.12);
    border-color: rgba(254, 156, 3, 0.25);
}
.feature-icon-orange svg { stroke: #fe9c03; }
.card-orange:hover .feature-icon-orange { box-shadow: 0 0 20px rgba(254, 156, 3, 0.2); }

.btn-blue {
    border-color: rgba(1, 114, 254, 0.3);
    color: #0172fe;
}
.btn-blue:hover {
    border-color: #0172fe;
    box-shadow: 0 0 20px rgba(1, 114, 254, 0.15);
    color: #0172fe;
}

.btn-orange {
    border-color: rgba(254, 156, 3, 0.3);
    color: #fe9c03;
}
.btn-orange:hover {
    border-color: #fe9c03;
    box-shadow: 0 0 20px rgba(254, 156, 3, 0.15);
    color: #fe9c03;
}

/* ── Grid ── */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

/* ── Features ── */
.feature-card h4 {
    margin-bottom: 10px;
    color: var(--white);
}

.feature-card p {
    font-size: 14px;
    color: var(--gray-400);
    line-height: 1.7;
}

.feature-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--green-dim);
    border: 1px solid var(--green-border);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    transition: all var(--transition);
}

.card:hover .feature-icon {
    box-shadow: 0 0 20px var(--green-glow);
}

.feature-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--green);
}

/* ── Flow / Process ── */
.flow-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
    margin-top: 56px;
}

.flow-grid::before {
    content: '';
    position: absolute;
    top: 32px;
    left: 12.5%;
    right: 12.5%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--green), transparent);
    opacity: 0.3;
}

.flow-step {
    text-align: center;
    padding: 0 16px;
    position: relative;
}

.flow-num {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 1px solid var(--green-border);
    background: var(--gray-900);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-family: var(--font-mono);
    font-size: 14px;
    font-weight: 600;
    color: var(--green);
    position: relative;
    z-index: 1;
    transition: all var(--transition);
}

.flow-step:hover .flow-num {
    box-shadow: 0 0 30px var(--green-glow);
    border-color: var(--green);
}

.flow-step h4 {
    font-size: 15px;
    margin-bottom: 8px;
}

.flow-step p {
    font-size: 13px;
    color: var(--gray-400);
    line-height: 1.6;
}

/* ── Pricing ── */
.price-card {
    display: flex;
    flex-direction: column;
}

.price-card .price-tier {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gray-400);
    margin-bottom: 12px;
}

.price-card .price-amount {
    font-size: 44px;
    font-weight: 700;
    letter-spacing: -0.04em;
    margin-bottom: 4px;
}

.price-card .price-period {
    font-size: 13px;
    color: var(--gray-600);
    margin-bottom: 28px;
}

.price-card .price-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
    flex: 1;
}

.price-card .price-features li {
    font-size: 14px;
    color: var(--gray-400);
    display: flex;
    align-items: center;
    gap: 12px;
}

.price-card .price-features li::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--green);
    flex-shrink: 0;
}

.price-card.featured {
    border-color: var(--green-border);
    box-shadow: 0 0 40px rgba(29, 241, 141, 0.08);
}

.price-card.featured::before {
    opacity: 1;
}

.price-badge {
    position: absolute;
    top: -1px;
    right: 24px;
    background: var(--green);
    color: var(--black);
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 0 0 6px 6px;
}

/* ── About ── */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text h2 { margin-bottom: 20px; }
.about-text p {
    color: var(--gray-400);
    margin-bottom: 16px;
    line-height: 1.8;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 28px;
    counter-reset: step;
}

.process-step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    counter-increment: step;
}

.process-step::before {
    content: counter(step, decimal-leading-zero);
    font-family: var(--font-mono);
    font-size: 13px;
    color: var(--green);
    background: var(--green-dim);
    border: 1px solid var(--green-border);
    padding: 8px 12px;
    border-radius: 6px;
    flex-shrink: 0;
    margin-top: 2px;
}

.process-step-content h4 { margin-bottom: 6px; }
.process-step-content p {
    font-size: 14px;
    color: var(--gray-400);
    line-height: 1.7;
}

/* ── Contact ── */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contact-info h2 { margin-bottom: 16px; }
.contact-info p {
    color: var(--gray-400);
    margin-bottom: 36px;
    line-height: 1.7;
}

.contact-channels {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-channel {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 22px;
    background: var(--gray-900);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius);
    transition: all var(--transition);
}

.contact-channel:hover {
    border-color: var(--green-border);
    transform: translateX(4px);
}

.contact-channel-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: var(--green-dim);
    border: 1px solid var(--green-border);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-channel-icon svg {
    width: 18px;
    height: 18px;
    stroke: var(--green);
}

.contact-channel-text span {
    font-size: 14px;
    font-weight: 500;
    display: block;
}

.contact-channel-text small {
    font-size: 12px;
    color: var(--gray-600);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: var(--gray-400);
    margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    background: var(--gray-900);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius);
    padding: 14px 16px;
    font-family: var(--font);
    font-size: 14px;
    color: var(--white);
    transition: border-color var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--green-border);
    box-shadow: 0 0 16px rgba(29, 241, 141, 0.08);
}

.form-group textarea {
    resize: vertical;
    min-height: 130px;
}

/* ── Footer ── */
.footer {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 72px 0 36px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 56px;
}

.footer-brand .nav-logo {
    margin-bottom: 14px;
}

.footer-brand p {
    color: var(--gray-600);
    font-size: 14px;
    max-width: 280px;
    line-height: 1.7;
}

.footer-col h4 {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 18px;
    color: var(--white);
}

.footer-col a {
    display: block;
    font-size: 13px;
    color: var(--gray-600);
    padding: 5px 0;
    transition: color var(--transition);
}

.footer-col a:hover {
    color: var(--green);
}

.footer-bottom {
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-bottom p {
    font-size: 12px;
    color: var(--gray-600);
}

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

.footer-bottom-links a {
    font-size: 12px;
    color: var(--gray-600);
    transition: color var(--transition);
}

.footer-bottom-links a:hover {
    color: var(--green);
}

/* ── Divider ── */
.divider {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    margin: 0;
}

/* ── Page header ── */
.page-header {
    padding: 160px 0 72px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.page-header h1 { margin-bottom: 14px; }

/* ── Live pulse indicator ── */
.pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green);
    display: inline-block;
    animation: pulse 2s ease-in-out infinite;
    box-shadow: 0 0 8px var(--green);
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

/* ── Scroll animations ── */
[data-reveal] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-reveal].visible {
    opacity: 1;
    transform: translateY(0);
}

[data-reveal-delay="1"] { transition-delay: 0.1s; }
[data-reveal-delay="2"] { transition-delay: 0.2s; }
[data-reveal-delay="3"] { transition-delay: 0.3s; }

/* ── Responsive ── */
@media (max-width: 900px) {
    .nav-links, .nav-cta { display: none; }
    .menu-toggle { display: flex; }
    .hero-grid { grid-template-columns: 1fr; gap: 48px; }
    .hero-visual { order: -1; }
    .hero-logo-img { width: 200px; height: 200px; }
    .hero-carousel { width: 200px; height: 200px; }
    .hero-card { width: 200px; height: 200px; border-radius: 20px; }
    .hero-ring-1 { width: 260px; height: 260px; }
    .hero-ring-2 { width: 320px; height: 320px; }
    .hero-stats { grid-template-columns: repeat(2, 1fr); }
    .grid-3, .grid-4 { grid-template-columns: 1fr; }
    .grid-2 { grid-template-columns: 1fr; }
    .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 48px; }
    .flow-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
    .flow-grid::before { display: none; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .section { padding: 80px 0; }
}

@media (max-width: 600px) {
    .hero { padding: 130px 0 80px; }
    .hero-stats { grid-template-columns: 1fr 1fr; gap: 16px; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; justify-content: center; }
    .flow-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}
