:root {
    --bg-dark: #060b13;
    --cyber-cyan: #00f2fe;
    --cyber-pink: #ff00de;
    --cyber-purple: #8033e0;
    --text-white: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.05);
}

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

body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    font-family: 'Outfit', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

.cyber-theme {
    position: relative;
}

.background-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 242, 254, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 242, 254, 0.05) 1px, transparent 1px);
    background-size: 30px 30px;
    z-index: -1;
    pointer-events: none;
}

.background-scanline {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(0, 242, 254, 0.03) 50%, transparent);
    background-size: 100% 4px;
    z-index: 100;
    pointer-events: none;
    animation: scanline 10s linear infinite;
}

@keyframes scanline {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(100%); }
}

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

/* Typography & Glitch */
h1, h2, h3 {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
}

.glitch {
    position: relative;
    font-size: 4rem;
    text-transform: uppercase;
    color: var(--cyber-cyan);
    text-shadow: 0 0 10px var(--cyber-cyan);
}

.glitch::before, .glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-dark);
}

.glitch::before {
    left: 2px;
    text-shadow: -2px 0 var(--cyber-pink);
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim 5s infinite linear alternate-reverse;
}

.glitch::after {
    left: -2px;
    text-shadow: -2px 0 var(--cyber-cyan);
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim2 5s infinite linear alternate-reverse;
}

@keyframes glitch-anim {
    0% { clip: rect(10px, 9999px, 85px, 0); }
    100% { clip: rect(81px, 9999px, 92px, 0); }
}

@keyframes glitch-anim2 {
    0% { clip: rect(50px, 9999px, 60px, 0); }
    100% { clip: rect(20px, 9999px, 30px, 0); }
}

/* Calculator Style */
.hack-calculator {
    margin-top: 2rem;
    padding: 2rem;
    border: 1px solid var(--cyber-cyan);
    box-shadow: 0 0 20px rgba(0, 242, 254, 0.2);
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.5);
}

.hack-calculator h3 {
    color: var(--cyber-cyan);
    font-family: 'JetBrains Mono', monospace;
    margin-bottom: 1rem;
}

.calc-input-group {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

input[type="number"] {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 242, 254, 0.3);
    color: white;
    padding: 10px;
    border-radius: 5px;
    flex: 1;
    font-size: 1.2rem;
}

/* Buttons */
.btn {
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 700;
    transition: all 0.3s ease;
    display: inline-block;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: linear-gradient(45deg, var(--cyber-cyan), var(--cyber-purple));
    color: white;
}

.btn-glow:hover {
    box-shadow: 0 0 30px var(--cyber-cyan);
    transform: translateY(-2px);
}

.btn-neon {
    background: transparent;
    border: 2px solid var(--cyber-pink);
    color: var(--cyber-pink);
}

.btn-neon:hover {
    background: var(--cyber-pink);
    color: white;
    box-shadow: 0 0 20px var(--cyber-pink);
}

/* Cards & Grid */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.package-card {
    padding: 2rem;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.package-card:hover {
    border-color: var(--cyber-cyan);
    transform: scale(1.05);
}

.level {
    font-family: 'JetBrains Mono', monospace;
    color: var(--cyber-cyan);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding-top: 50px;
}

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

.image-frame {
    position: relative;
    border: 2px solid var(--cyber-cyan);
    padding: 10px;
    border-radius: 20px;
}

.image-frame img {
    width: 100%;
    border-radius: 15px;
    display: block;
}

.frame-glow {
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 1px solid var(--cyber-cyan);
    border-radius: 22px;
    z-index: -1;
    opacity: 0.5;
    animation: pulse 2s infinite ease-in-out;
}

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

.pricing {
    padding: 100px 0;
}

.main-hacker-card {
    background: linear-gradient(135deg, rgba(0, 242, 254, 0.1), rgba(128, 51, 224, 0.1));
    border: 2px solid var(--cyber-pink);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.new-price {
    font-size: 4rem;
    color: var(--cyber-cyan);
}

.hack-result-box {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(0, 242, 254, 0.1);
    border-radius: 8px;
    border-left: 4px solid var(--cyber-cyan);
}

#potential-score {
    font-size: 2rem;
    font-weight: 800;
    color: var(--cyber-cyan);
}

/* Animations Helper */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

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

.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.problem-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.problem-card .icon {
    color: var(--cyber-pink);
    font-family: 'JetBrains Mono', monospace;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.hacker-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.hacker-form input, .hacker-form textarea {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 242, 254, 0.3);
    color: white;
    padding: 15px;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
}

.hacker-form textarea {
    min-height: 120px;
    resize: vertical;
}

.waitlist {
    padding: 100px 0;
}

@media (max-width: 968px) {
    .hero-content { grid-template-columns: 1fr; text-align: center; }
    .packages-grid, .problem-grid { grid-template-columns: 1fr; }
    .glitch { font-size: 2.5rem; }
    .hero-image { order: -1; }
    .calc-input-group { flex-direction: column; }
}
