/* ═══════════════════════════════════════════════════════════════
   Streamora V2 — Premium Digital Landing Page
   Separate from style-3d.css — used only by index2.php
   ═══════════════════════════════════════════════════════════════ */

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

:root {
    --bg-deep: #020617;
    --bg: #060b18;
    --surface: rgba(8, 15, 35, 0.75);
    --surface-solid: #0a1128;
    --surface-elevated: rgba(15, 25, 50, 0.6);
    --border: rgba(14, 165, 233, 0.12);
    --border-hover: rgba(14, 165, 233, 0.35);

    --text: #e8edf5;
    --text-secondary: #8899b4;
    --text-tertiary: #4a5e7a;

    --primary: #0ea5e9;
    --primary-light: #38bdf8;
    --primary-bright: #7dd3fc;
    --primary-glow: rgba(14, 165, 233, 0.15);
    --primary-glow-strong: rgba(14, 165, 233, 0.35);
    --primary-neon: rgba(14, 165, 233, 0.5);

    --violet: #8b5cf6;
    --violet-glow: rgba(139, 92, 246, 0.15);

    --emerald: #10b981;
    --emerald-glow: rgba(16, 185, 129, 0.15);

    --amber: #f59e0b;
    --amber-glow: rgba(245, 158, 11, 0.15);

    --rose: #f43f5e;
    --rose-glow: rgba(244, 63, 94, 0.15);

    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 20px;
    --radius-pill: 100px;

    --font-display: 'Orbitron', sans-serif;
    --font-body: 'Exo 2', sans-serif;
    --font-mono: 'Share Tech Mono', 'Fira Code', monospace;

    --shadow-sm: 0 2px 8px rgba(0,0,0,0.4);
    --shadow-md: 0 8px 32px rgba(0,0,0,0.5);
    --shadow-lg: 0 16px 64px rgba(0,0,0,0.6);
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    background: var(--bg-deep);
    color: var(--text);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

::selection { background: var(--primary); color: white; }


/* ── Grid overlay for digital feel ── */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background:
        linear-gradient(rgba(14,165,233,0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(14,165,233,0.015) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 0;
}

/* Scan-line texture */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0,0,0,0.03) 2px,
        rgba(0,0,0,0.03) 4px
    );
    pointer-events: none;
    z-index: 0;
}

/* 3D Canvas */
#scene-canvas {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 0;
    pointer-events: none;
}

.page-wrapper { position: relative; z-index: 1; }

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


/* ═══════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════ */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 0 32px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.navbar.scrolled {
    background: rgba(2, 6, 23, 0.85);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(14, 165, 233, 0.1);
    box-shadow: 0 0 30px rgba(14,165,233,0.04);
}

.navbar-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: white;
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 20px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.navbar-brand svg {
    width: 32px; height: 32px;
    filter: drop-shadow(0 0 12px var(--primary-glow-strong));
}

.navbar-nav { display: flex; align-items: center; gap: 2px; }

.navbar-nav a {
    color: var(--text-secondary);
    text-decoration: none;
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 600;
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    transition: all 0.25s ease;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.navbar-nav a:hover {
    color: var(--primary-light);
    background: rgba(14, 165, 233, 0.06);
    text-shadow: 0 0 12px var(--primary-glow);
}

.navbar-cta {
    background: var(--primary) !important;
    color: white !important;
    padding: 10px 22px !important;
    border-radius: var(--radius-sm) !important;
    font-weight: 700 !important;
    box-shadow: 0 0 24px var(--primary-glow), inset 0 1px 0 rgba(255,255,255,0.15);
    transition: all 0.3s ease !important;
}

.navbar-cta:hover {
    background: #0284c7 !important;
    box-shadow: 0 0 40px var(--primary-glow-strong), inset 0 1px 0 rgba(255,255,255,0.2) !important;
    transform: translateY(-1px) !important;
}


/* ═══════════════════════════════════════
   HERO
   ═══════════════════════════════════════ */
.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 130px 32px 80px;
    position: relative;
}

/* Ambient neon orbs */
.hero::before {
    content: '';
    position: absolute;
    top: 5%;
    left: 15%;
    width: 550px; height: 550px;
    background: radial-gradient(circle, rgba(14,165,233,0.12) 0%, transparent 65%);
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    animation: float-orb 14s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 15%;
    right: 10%;
    width: 450px; height: 450px;
    background: radial-gradient(circle, rgba(139,92,246,0.1) 0%, transparent 65%);
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    animation: float-orb 18s ease-in-out infinite reverse;
}

@keyframes float-orb {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33%      { transform: translate(30px, -25px) scale(1.06); }
    66%      { transform: translate(-25px, 18px) scale(0.94); }
}

.hero-content { position: relative; z-index: 2; max-width: 920px; }

/* Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(14, 165, 233, 0.06);
    border: 1px solid rgba(14, 165, 233, 0.2);
    border-radius: var(--radius-pill);
    padding: 8px 22px 8px 12px;
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 600;
    color: var(--primary-light);
    margin-bottom: 36px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.hero-badge-pulse {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: var(--emerald);
    position: relative;
    box-shadow: 0 0 8px rgba(16,185,129,0.5);
}

.hero-badge-pulse::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: var(--emerald);
    animation: badge-ping 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes badge-ping {
    0%        { opacity: 0.7; transform: scale(1); }
    75%, 100% { opacity: 0;   transform: scale(2.4); }
}

/* Heading */
.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(32px, 5vw, 58px);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: 0.02em;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.hero h1 .line-1 {
    display: block;
    background: linear-gradient(180deg, #ffffff 30%, #64748b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 30px rgba(14,165,233,0.1));
}

.hero h1 .line-2 {
    display: block;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-bright) 40%, var(--violet) 80%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 300% 300%;
    animation: gradient-shift 6s ease infinite;
    filter: drop-shadow(0 0 20px var(--primary-glow));
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50%      { background-position: 100% 50%; }
}

.hero-description {
    font-size: clamp(15px, 1.8vw, 18px);
    color: var(--text-secondary);
    max-width: 720px;
    margin: 0 auto 44px;
    line-height: 1.8;
    letter-spacing: 0.01em;
}

.hero-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }


/* ── Buttons ── */
.btn-v2 {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: var(--radius-sm);
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.btn-v2 svg { width: 18px; height: 18px; flex-shrink: 0; }

.btn-v2-primary {
    background: linear-gradient(135deg, var(--primary) 0%, #0284c7 100%);
    color: white;
    box-shadow: 0 0 30px var(--primary-glow), 0 4px 20px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.15);
}
.btn-v2-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 50px var(--primary-glow-strong), 0 8px 30px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.2);
}

.btn-v2-emerald {
    background: linear-gradient(135deg, var(--emerald) 0%, #059669 100%);
    color: white;
    box-shadow: 0 0 24px var(--emerald-glow), 0 4px 20px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.15);
}
.btn-v2-emerald:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 40px rgba(16,185,129,0.35), 0 8px 30px rgba(0,0,0,0.4);
}

.btn-v2-ghost {
    background: rgba(14,165,233,0.04);
    color: var(--text);
    border: 1px solid var(--border);
    backdrop-filter: blur(8px);
}
.btn-v2-ghost:hover {
    background: rgba(14,165,233,0.08);
    border-color: var(--border-hover);
    transform: translateY(-3px);
    box-shadow: 0 0 20px var(--primary-glow);
}


/* ── Install Terminal ── */
.install-section { margin-top: 56px; }

.install-terminal {
    max-width: 720px;
    margin: 0 auto;
    background: rgba(6, 11, 24, 0.9);
    border: 1px solid rgba(14, 165, 233, 0.15);
    border-radius: var(--radius);
    overflow: hidden;
    backdrop-filter: blur(16px);
    box-shadow: var(--shadow-lg), 0 0 60px rgba(14,165,233,0.04), inset 0 1px 0 rgba(14,165,233,0.06);
}

.terminal-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 18px;
    background: rgba(10, 17, 40, 0.8);
    border-bottom: 1px solid rgba(14, 165, 233, 0.08);
}

.terminal-dot { width: 12px; height: 12px; border-radius: 50%; }
.terminal-dot-red    { background: #ef4444; box-shadow: 0 0 6px rgba(239,68,68,0.3); }
.terminal-dot-yellow { background: #eab308; box-shadow: 0 0 6px rgba(234,179,8,0.3); }
.terminal-dot-green  { background: #22c55e; box-shadow: 0 0 6px rgba(34,197,94,0.3); }

.terminal-title {
    font-family: var(--font-mono);
    font-size: 12px;
    color: #d1d5db;
    margin-left: 8px;
    letter-spacing: 0.04em;
}

.terminal-body {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 20px;
    font-family: var(--font-mono);
    font-size: 14px;
}

.terminal-prompt {
    color: var(--primary);
    user-select: none;
    flex-shrink: 0;
    font-weight: 500;
    text-shadow: 0 0 8px var(--primary-glow);
}

.terminal-cmd {
    color: var(--primary-bright);
    flex: 1;
    user-select: all;
    white-space: nowrap;
    overflow-x: auto;
}

.terminal-copy {
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 6px;
    padding: 8px 18px;
    font-family: var(--font-display);
    font-size: 10px;
    font-weight: 700;
    cursor: pointer;
    flex-shrink: 0;
    transition: all 0.2s;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.terminal-copy:hover { background: #0284c7; box-shadow: 0 0 16px var(--primary-glow); }
.terminal-copy.copied { background: var(--emerald); }

.terminal-note {
    padding: 10px 20px 14px;
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--text-tertiary);
    text-align: center;
    border-top: 1px solid rgba(14,165,233,0.06);
    letter-spacing: 0.02em;
}


/* ── Dashboard Preview ── */
.dashboard-showcase { margin-top: 72px; perspective: 1200px; }

.dashboard-frame {
    max-width: 1000px;
    margin: 0 auto;
    background: var(--surface-solid);
    border: 1px solid rgba(14, 165, 233, 0.12);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow:
        var(--shadow-lg),
        0 0 80px rgba(14,165,233,0.05),
        0 0 0 1px rgba(14,165,233,0.04);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s ease;
    transform: rotateX(5deg) scale(0.95);
    transform-origin: center top;
}

.dashboard-frame:hover {
    transform: rotateX(0deg) scale(1);
    box-shadow:
        var(--shadow-lg),
        0 0 120px rgba(14,165,233,0.08),
        0 0 0 1px rgba(14,165,233,0.1);
}

.dashboard-titlebar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 20px;
    background: rgba(6, 11, 24, 0.95);
    border-bottom: 1px solid rgba(14, 165, 233, 0.08);
}

.dashboard-titlebar-text {
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 500;
    color: var(--text-tertiary);
    margin-left: 8px;
    letter-spacing: 0.04em;
}

.dashboard-frame img { display: block; width: 100%; height: auto; }


/* ═══════════════════════════════════════
   SECTIONS — shared
   ═══════════════════════════════════════ */
.section-v2 { padding: 120px 0; position: relative; }

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

.section-label {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 10px;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 16px;
    padding: 6px 18px;
    background: rgba(14, 165, 233, 0.06);
    border-radius: var(--radius-pill);
    border: 1px solid rgba(14,165,233,0.14);
    text-shadow: 0 0 10px var(--primary-glow);
}

.section-header-v2 h2 {
    font-family: var(--font-display);
    font-size: clamp(26px, 4.5vw, 44px);
    font-weight: 900;
    letter-spacing: 0.03em;
    line-height: 1.15;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.section-header-v2 p {
    font-size: 16px;
    color: var(--text-secondary);
    max-width: 620px;
    margin: 0 auto;
    line-height: 1.7;
}


/* ═══════════════════════════════════════
   DIGITAL CARD — shared base
   ═══════════════════════════════════════ */
.digi-card {
    background: rgba(10, 17, 40, 0.9);
    border: 1px solid rgba(14, 165, 233, 0.15);
    border-radius: var(--radius);
    backdrop-filter: blur(12px);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(14, 165, 233, 0.04);
}

/* Top edge neon line */
.digi-card::after {
    content: '';
    position: absolute;
    top: 0; left: 10%; right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-glow-strong), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.digi-card:hover {
    border-color: rgba(14, 165, 233, 0.35);
    box-shadow:
        0 0 40px rgba(14,165,233,0.06),
        0 20px 60px rgba(0,0,0,0.35),
        inset 0 1px 0 rgba(14,165,233,0.08);
    transform: translateY(-8px);
}

.digi-card:hover::after { opacity: 1; }


/* ═══════════════════════════════════════
   FEATURES
   ═══════════════════════════════════════ */
.features-v2 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }

.feature-v2 {
    padding: 32px;
    background: rgba(10, 17, 40, 0.92);
    border: 1px solid rgba(14, 165, 233, 0.15);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(14, 165, 233, 0.04);
}

.feature-v2-icon {
    width: 54px; height: 54px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
    position: relative;
}

/* Icon background glow */
.feature-v2-icon::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 14px;
    filter: blur(20px);
    opacity: 0.4;
    z-index: -1;
}

.fi-v2-drm      { background: rgba(244,63,94,0.1);  color: #fb7185; border: 1px solid rgba(244,63,94,0.15); }
.fi-v2-drm::after      { background: var(--rose-glow); }
.fi-v2-provider  { background: rgba(59,130,246,0.1);  color: #60a5fa; border: 1px solid rgba(59,130,246,0.15); }
.fi-v2-provider::after  { background: rgba(59,130,246,0.2); }
.fi-v2-remux     { background: rgba(16,185,129,0.1);  color: #34d399; border: 1px solid rgba(16,185,129,0.15); }
.fi-v2-remux::after     { background: var(--emerald-glow); }
.fi-v2-admin     { background: rgba(139,92,246,0.1);  color: #a78bfa; border: 1px solid rgba(139,92,246,0.15); }
.fi-v2-admin::after     { background: var(--violet-glow); }
.fi-v2-convert   { background: rgba(245,158,11,0.1);  color: #fbbf24; border: 1px solid rgba(245,158,11,0.15); }
.fi-v2-convert::after   { background: var(--amber-glow); }
.fi-v2-keys      { background: rgba(14,165,233,0.1);  color: var(--primary-light); border: 1px solid rgba(14,165,233,0.15); }
.fi-v2-keys::after      { background: var(--primary-glow); }

.feature-v2 h3 {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.feature-v2 p { font-size: 14px; color: var(--text-secondary); line-height: 1.7; }


/* ═══════════════════════════════════════
   ARCHITECTURE / HIGHLIGHTS
   ═══════════════════════════════════════ */
.highlights-v2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.highlight-v2 {
    padding: 36px;
    background: rgba(10, 17, 40, 0.92);
    border: 1px solid rgba(14, 165, 233, 0.15);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(14, 165, 233, 0.04);
}

.highlight-v2::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
}

.highlight-v2.hl-pipeline::before   { background: linear-gradient(90deg, transparent, var(--primary), var(--emerald), transparent); }
.highlight-v2.hl-reliability::before { background: linear-gradient(90deg, transparent, var(--violet), var(--amber), transparent); }

.highlight-v2 h3 {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 18px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.hl-list-v2 { list-style: none; }

.hl-list-v2 li {
    font-size: 14px;
    color: var(--text-secondary);
    padding: 8px 0;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.55;
}

.hl-check-v2 {
    color: var(--emerald);
    flex-shrink: 0;
    font-size: 14px;
    margin-top: 2px;
    font-weight: 700;
    text-shadow: 0 0 6px var(--emerald-glow);
}


/* ═══════════════════════════════════════
   PROTOCOLS
   ═══════════════════════════════════════ */
.protocols-v2 { text-align: center; padding: 72px 0; }

.protocols-v2 h2 {
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 700;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 28px;
}

.protocol-tags-v2 { display: flex; justify-content: center; flex-wrap: wrap; gap: 10px; }

.protocol-tag-v2 {
    background: rgba(10, 17, 40, 0.9);
    border: 1px solid rgba(14, 165, 233, 0.15);
    border-radius: var(--radius-sm);
    padding: 12px 22px;
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 600;
    color: var(--text-secondary);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
}

.protocol-tag-v2:hover {
    border-color: var(--border-hover);
    color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 0 20px var(--primary-glow), 0 8px 24px rgba(0,0,0,0.3);
    text-shadow: 0 0 8px var(--primary-glow);
}

.protocols-note {
    color: var(--text-tertiary);
    font-size: 13px;
    margin-top: 24px;
    max-width: 620px;
    margin-left: auto; margin-right: auto;
    line-height: 1.65;
}


/* ═══════════════════════════════════════
   SCRIPTS
   ═══════════════════════════════════════ */
.script-notice-v2 {
    max-width: 820px;
    margin: 0 auto 48px;
    background: rgba(10, 17, 40, 0.85);
    border: 1px solid rgba(14, 165, 233, 0.15);
    border-radius: var(--radius);
    padding: 24px 32px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.3);
}

.script-notice-v2-title {
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 700;
    color: var(--primary-light);
    margin-bottom: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-shadow: 0 0 8px var(--primary-glow);
}

.script-notice-v2-body { font-size: 13.5px; color: var(--text-secondary); line-height: 1.8; }
.script-notice-v2-body ul { list-style: none; margin-top: 10px; }

.script-notice-v2-body li {
    padding-left: 20px;
    position: relative;
    margin-bottom: 5px;
}

.script-notice-v2-body li::before {
    content: '';
    position: absolute;
    left: 0; top: 9px;
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 0 6px var(--primary-glow);
}

.scripts-v2 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }

.script-v2 {
    padding: 28px;
    display: flex;
    flex-direction: column;
    background: rgba(10, 17, 40, 0.92);
    border: 1px solid rgba(14, 165, 233, 0.18);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(14, 165, 233, 0.06);
}

.script-v2:hover {
    border-color: rgba(14, 165, 233, 0.4);
    transform: translateY(-6px);
    box-shadow: 0 16px 50px rgba(14, 165, 233, 0.1), 0 0 30px rgba(14, 165, 233, 0.04), inset 0 1px 0 rgba(14, 165, 233, 0.1);
}

.script-v2-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
}

.script-v2-name {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.script-v2-price {
    flex-shrink: 0;
    padding: 4px 14px;
    border-radius: var(--radius-pill);
    font-family: var(--font-display);
    font-size: 10px;
    font-weight: 700;
    white-space: nowrap;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.script-v2-price.free { background: var(--emerald-glow); color: #34d399; border: 1px solid rgba(16,185,129,0.15); }
.script-v2-price.paid { background: rgba(14,165,233,0.1); color: var(--primary-light); border: 1px solid rgba(14,165,233,0.15); }

.script-v2-desc {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.65;
    flex: 1;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.script-v2-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px; }

.script-v2-tag {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 5px;
    padding: 4px 10px;
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--text-tertiary);
    letter-spacing: 0.02em;
}

.script-v2-tag.geo     { color: #fbbf24; border-color: rgba(245,158,11,0.15); background: rgba(245,158,11,0.04); }
.script-v2-tag.updated { color: var(--primary-light); border-color: rgba(14,165,233,0.15); background: rgba(14,165,233,0.04); }

.script-v2-btn {
    display: block;
    text-align: center;
    padding: 12px;
    border-radius: var(--radius-sm);
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.25s ease;
    margin-top: auto;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.script-v2-btn.buy {
    background: linear-gradient(135deg, var(--primary), #0284c7);
    color: white;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.1);
}
.script-v2-btn.buy:hover { box-shadow: 0 0 20px var(--primary-glow), inset 0 1px 0 rgba(255,255,255,0.15); }

.script-v2-btn.free-btn {
    background: var(--emerald-glow);
    color: #34d399;
    border: 1px solid rgba(16,185,129,0.15);
}

.script-v2-btn.soon {
    background: rgba(15, 25, 50, 0.6);
    color: var(--text-tertiary);
    cursor: default;
}


/* ═══════════════════════════════════════
   PRICING
   ═══════════════════════════════════════ */
.packages-v2 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }

.package-v2 {
    padding: 32px;
    text-align: center;
    background: rgba(10, 17, 40, 0.92);
    border: 1px solid rgba(14, 165, 233, 0.15);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(14, 165, 233, 0.04);
}

.package-v2.popular {
    border-color: var(--primary) !important;
    box-shadow: 0 0 50px var(--primary-glow), inset 0 0 30px rgba(14,165,233,0.03) !important;
}

.package-v2.popular::before {
    content: 'Most Popular';
    position: absolute;
    top: 5px; left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary), #0284c7);
    color: white;
    font-family: var(--font-display);
    font-size: 9px;
    font-weight: 700;
    padding: 5px 18px;
    border-radius: var(--radius-pill);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    white-space: nowrap;
    box-shadow: 0 0 16px var(--primary-glow);
}

.pkg-v2-type {
    font-family: var(--font-display);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 12px;
}

.pkg-type-v2-standard  { color: var(--primary-light); text-shadow: 0 0 8px var(--primary-glow); }
.pkg-type-v2-premium   { color: #fbbf24; text-shadow: 0 0 8px var(--amber-glow); }
.pkg-type-v2-unlimited { color: #34d399; text-shadow: 0 0 8px var(--emerald-glow); }

.pkg-v2-name {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 900;
    margin-bottom: 6px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.pkg-v2-desc { font-size: 13px; color: var(--text-secondary); margin-bottom: 20px; line-height: 1.5; }

.pkg-v2-price {
    font-family: var(--font-display);
    font-size: 34px;
    font-weight: 900;
    margin-bottom: 4px;
    letter-spacing: 0.01em;
}

.pkg-v2-duration {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--text-tertiary);
    margin-bottom: 20px;
    letter-spacing: 0.04em;
}

.pkg-v2-details { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-bottom: 24px; }

.pkg-v2-detail {
    background: rgba(14,165,233,0.04);
    border: 1px solid rgba(14,165,233,0.08);
    border-radius: 6px;
    padding: 6px 14px;
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--text-secondary);
    letter-spacing: 0.02em;
}

.pkg-v2-detail strong { color: white; font-weight: 700; }

.pkg-v2-btn {
    display: block;
    padding: 14px;
    border-radius: var(--radius-sm);
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, var(--primary), #0284c7);
    color: white;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.1);
}
.pkg-v2-btn:hover {
    box-shadow: 0 0 24px var(--primary-glow), inset 0 1px 0 rgba(255,255,255,0.15);
    transform: translateY(-2px);
}
.pkg-v2-btn.contact {
    background: rgba(15, 25, 50, 0.6);
    color: var(--text-tertiary);
    cursor: default;
    box-shadow: none;
}


/* ═══════════════════════════════════════
   FAQ
   ═══════════════════════════════════════ */
.faq-v2 {
    max-width: 820px;
    margin: 0 auto;
    background: rgba(10, 17, 40, 0.9);
    border: 1px solid rgba(14, 165, 233, 0.15);
    border-radius: var(--radius);
    overflow: hidden;
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

.faq-v2-item { border-bottom: 1px solid rgba(14,165,233,0.06); }
.faq-v2-item:last-child { border-bottom: none; }

.faq-v2-question {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 600;
    padding: 22px 28px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text);
    transition: all 0.2s ease;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.faq-v2-question:hover {
    color: var(--primary-light);
    text-shadow: 0 0 10px var(--primary-glow);
}

.faq-v2-arrow {
    font-size: 12px;
    color: var(--text-tertiary);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-v2-item.open .faq-v2-arrow { transform: rotate(180deg); color: var(--primary); }

.faq-v2-answer {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.75;
    padding: 0 28px 22px;
    display: none;
}

.faq-v2-item.open .faq-v2-answer { display: block; }


/* ═══════════════════════════════════════
   CTA
   ═══════════════════════════════════════ */
.cta-v2 { text-align: center; padding: 120px 0; }

.cta-v2-card {
    background: rgba(10, 17, 40, 0.9);
    border: 1px solid rgba(14,165,233,0.18);
    border-radius: var(--radius-lg);
    padding: 80px 48px;
    position: relative;
    overflow: hidden;
}

/* Animated corner glow */
.cta-v2-card::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle at 30% 50%, rgba(14,165,233,0.04) 0%, transparent 50%);
    animation: cta-rotate 25s linear infinite;
    pointer-events: none;
}

.cta-v2-card::after {
    content: '';
    position: absolute;
    top: 0; left: 15%; right: 15%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-glow-strong), transparent);
}

@keyframes cta-rotate { to { transform: rotate(360deg); } }

.cta-v2-card h2 {
    font-family: var(--font-display);
    font-size: clamp(22px, 3.5vw, 36px);
    font-weight: 900;
    margin-bottom: 16px;
    position: relative;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.cta-v2-card p {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 36px;
    max-width: 520px;
    margin-left: auto; margin-right: auto;
    position: relative;
    line-height: 1.7;
}

.cta-v2-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; }


/* ═══════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════ */
.footer-v2 { border-top: 1px solid rgba(14,165,233,0.08); padding: 36px 0; text-align: center; }
.footer-v2 p { font-size: 12px; color: var(--text-tertiary); font-family: var(--font-mono); letter-spacing: 0.02em; }
.footer-v2 a { color: var(--text-secondary); text-decoration: none; transition: color 0.2s; }
.footer-v2 a:hover { color: var(--primary-light); text-shadow: 0 0 8px var(--primary-glow); }


/* ═══════════════════════════════════════
   SCROLL REVEAL ANIMATION
   ═══════════════════════════════════════ */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible { opacity: 1; transform: translateY(0); }

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* Hero stagger */
.hero-stagger-1 { animation: hero-in 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.15s both; }
.hero-stagger-2 { animation: hero-in 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.3s  both; }
.hero-stagger-3 { animation: hero-in 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.45s both; }
.hero-stagger-4 { animation: hero-in 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.6s  both; }
.hero-stagger-5 { animation: hero-in 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.75s both; }
.hero-stagger-6 { animation: hero-in 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.9s  both; }

@keyframes hero-in {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
}


/* ═══════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════ */
@media (max-width: 1024px) {
    .packages-v2 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
    .features-v2  { grid-template-columns: repeat(2, 1fr); }
    .highlights-v2 { grid-template-columns: 1fr; }
    .scripts-v2   { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
    .features-v2,
    .scripts-v2,
    .packages-v2 { grid-template-columns: 1fr; }

    .navbar-nav .nav-link-text { display: none; }

    .hero { padding: 110px 20px 50px; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .btn-v2 { width: 100%; max-width: 320px; justify-content: center; }

    .terminal-body { font-size: 12px; }

    .cta-v2-card { padding: 48px 24px; }
    .section-v2 { padding: 80px 0; }
    .container { padding: 0 20px; }
    .script-notice-v2 { padding: 20px 24px; }
}
