/* Cyberpunk Neon Style & Diagonal Cut Layout */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&family=Rajdhani:wght@400;600;700&display=swap');

:root {
    --cp-bg: #090a0f;
    --cp-panel: #12151f;
    --cp-cyan: #00f0ff;
    --cp-yellow: #fcee0a;
    --cp-pink: #ff003c;
    --cp-text: #e0e6ed;
    --cp-muted: #6b7280;
    --font-head: 'Orbitron', sans-serif;
    --font-body: 'Rajdhani', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--cp-bg);
    color: var(--cp-text);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    /* Grid Background */
    background-image: 
        linear-gradient(rgba(0, 240, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 240, 255, 0.05) 1px, transparent 1px);
    background-size: 30px 30px;
}

h1, h2, h3, h4 {
    font-family: var(--font-head);
    text-transform: uppercase;
    letter-spacing: 2px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Cyberpunk Buttons */
.btn-cyber {
    display: inline-block;
    padding: 15px 30px;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    color: var(--cp-bg);
    background: var(--cp-cyan);
    border: none;
    position: relative;
    cursor: pointer;
    clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
    transition: 0.2s;
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.4);
}
.btn-cyber::after {
    content: 'SYS.REQ';
    position: absolute;
    bottom: 2px; right: 5px;
    font-size: 0.5rem;
    color: rgba(0,0,0,0.5);
}
.btn-cyber:hover {
    background: var(--cp-yellow);
    box-shadow: 0 0 25px rgba(252, 238, 10, 0.6);
}
.btn-cyber.outline {
    background: transparent;
    color: var(--cp-cyan);
    border: 2px solid var(--cp-cyan);
    box-shadow: none;
}
.btn-cyber.outline:hover {
    background: var(--cp-cyan);
    color: var(--cp-bg);
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.4);
}
.btn-cyber.pink {
    background: var(--cp-pink);
    box-shadow: 0 0 15px rgba(255, 0, 60, 0.4);
}
.btn-cyber.pink:hover {
    background: var(--cp-white);
}

/* 1. Navigation */
.cp-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5vw;
    background: rgba(9, 10, 15, 0.9);
    border-bottom: 2px solid var(--cp-cyan);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}
.nav-brand {
    font-family: var(--font-head);
    font-size: 2rem;
    font-weight: 900;
    color: var(--cp-yellow);
    text-shadow: 2px 2px 0px var(--cp-pink);
}
.nav-links {
    display: flex;
    gap: 30px;
}
.nav-links a {
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    position: relative;
}
.nav-links a:hover, .nav-links a.active {
    color: var(--cp-cyan);
}
.nav-links a::before {
    content: '';
    position: absolute;
    bottom: -5px; left: 0;
    width: 0; height: 2px;
    background: var(--cp-cyan);
    transition: 0.3s;
}
.nav-links a:hover::before, .nav-links a.active::before {
    width: 100%;
}
.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* 2. Hero Section (Diagonal Cut) */
.cp-hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: 0 5vw;
    overflow: hidden;
}
.hero-bg-cut {
    position: absolute;
    top: 0; right: 0;
    width: 60%; height: 100%;
    background: var(--cp-panel);
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0 100%);
    z-index: -1;
    border-left: 4px solid var(--cp-pink);
}
.hero-content {
    flex: 1;
    max-width: 600px;
    padding: 60px 0;
}
.hero-content h1 {
    font-size: 4.5rem;
    line-height: 1;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 3px 3px 0 var(--cp-cyan), -2px -2px 0 var(--cp-pink);
}
.hero-content p {
    font-size: 1.5rem;
    color: var(--cp-muted);
    margin-bottom: 40px;
    border-left: 4px solid var(--cp-yellow);
    padding-left: 15px;
}
.hero-actions {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}
.trust-data {
    display: flex;
    gap: 20px;
    font-family: var(--font-head);
    font-size: 0.9rem;
    color: var(--cp-cyan);
}
.trust-data span {
    background: rgba(0, 240, 255, 0.1);
    padding: 5px 10px;
    border: 1px solid var(--cp-cyan);
}
.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.hero-visual img {
    max-width: 80%;
    clip-path: polygon(10% 0, 100% 0, 90% 100%, 0 100%);
    border: 2px solid var(--cp-yellow);
    box-shadow: 10px 10px 0 rgba(252, 238, 10, 0.2);
}

/* 3. Metrics (Glitch Blocks) */
.cp-metrics {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 60px 5vw;
    background: var(--cp-panel);
    border-top: 2px solid var(--cp-pink);
    border-bottom: 2px solid var(--cp-pink);
}
.metric-glitch {
    padding: 30px;
    background: rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.1);
    position: relative;
    transition: 0.3s;
}
.metric-glitch:hover {
    border-color: var(--cp-cyan);
    transform: scale(1.05);
}
.metric-glitch::before {
    content: ''; position: absolute; top: -2px; left: -2px; width: 10px; height: 10px; border-top: 2px solid var(--cp-cyan); border-left: 2px solid var(--cp-cyan);
}
.metric-glitch::after {
    content: ''; position: absolute; bottom: -2px; right: -2px; width: 10px; height: 10px; border-bottom: 2px solid var(--cp-cyan); border-right: 2px solid var(--cp-cyan);
}
.m-val { font-family: var(--font-head); font-size: 3.5rem; color: var(--cp-yellow); line-height: 1; margin-bottom: 10px; }
.m-lbl { font-size: 1.1rem; font-weight: 700; color: var(--cp-text); text-transform: uppercase; }

/* 4. Features (Angled Cards) */
.cp-features {
    padding: 100px 5vw;
}
.section-title {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 60px;
    text-align: center;
    text-shadow: 0 0 10px var(--cp-cyan);
}
.feat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}
.feat-card {
    background: var(--cp-panel);
    padding: 40px;
    clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
    border-left: 4px solid var(--cp-cyan);
    position: relative;
}
.feat-card:hover { background: rgba(0, 240, 255, 0.05); }
.feat-card img {
    margin-bottom: 30px;
    border-bottom: 2px solid var(--cp-pink);
    padding-bottom: 10px;
}
.feat-card h3 { font-size: 1.8rem; color: var(--cp-yellow); margin-bottom: 15px; }
.feat-card p { font-size: 1.1rem; color: var(--cp-muted); }

/* 5. Nodes (Hexagon Map) */
.cp-nodes {
    padding: 100px 5vw;
    background: var(--cp-panel);
    border-top: 2px dashed var(--cp-cyan);
    text-align: center;
}
.node-hex-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 60px;
}
.node-hex {
    width: 180px;
    height: 200px;
    background: rgba(0, 240, 255, 0.1);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 2px solid var(--cp-cyan);
    transition: 0.3s;
}
.node-hex:hover {
    background: var(--cp-cyan);
    color: var(--cp-bg);
    transform: translateY(-10px);
}
.node-hex h4 { font-size: 1.5rem; margin-bottom: 5px; }
.node-hex span { font-family: var(--font-body); font-weight: 700; }

/* 6. Reviews (Terminal UI) */
.cp-reviews {
    padding: 100px 5vw;
}
.review-terminal {
    max-width: 1000px;
    margin: 0 auto;
    background: #000;
    border: 1px solid var(--cp-cyan);
    padding: 40px;
    position: relative;
}
.review-terminal::before {
    content: 'USER_FEEDBACK.EXE';
    position: absolute;
    top: -12px; left: 20px;
    background: var(--cp-bg);
    padding: 0 10px;
    color: var(--cp-cyan);
    font-family: var(--font-head);
}
.rev-item {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px dashed rgba(255,255,255,0.2);
}
.rev-item:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }
.rev-stars { color: var(--cp-pink); font-size: 1.5rem; margin-bottom: 15px; }
.rev-text { font-size: 1.2rem; color: var(--cp-text); margin-bottom: 15px; font-family: monospace; }
.rev-text::before { content: '> '; color: var(--cp-yellow); }
.rev-user { color: var(--cp-cyan); font-weight: 700; }

/* 7. Pricing (Neon Cards) */
.cp-pricing {
    padding: 100px 5vw;
    background: var(--cp-panel);
}
.price-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}
.price-card {
    background: var(--cp-bg);
    border: 2px solid rgba(255,255,255,0.1);
    padding: 50px 30px;
    display: flex;
    flex-direction: column;
    position: relative;
}
.price-card.recommended {
    border-color: var(--cp-pink);
    box-shadow: 0 0 30px rgba(255, 0, 60, 0.2);
    transform: scale(1.05);
    z-index: 10;
}
.price-card.recommended::before {
    content: 'RECOMMENDED';
    position: absolute;
    top: 0; right: 0;
    background: var(--cp-pink);
    color: #fff;
    padding: 5px 15px;
    font-family: var(--font-head);
    font-size: 0.8rem;
}
.p-name { font-size: 1.8rem; color: var(--cp-cyan); margin-bottom: 15px; }
.p-val { font-size: 4rem; color: #fff; line-height: 1; margin-bottom: 30px; font-family: var(--font-head); }
.p-val span { font-size: 1.2rem; color: var(--cp-muted); }
.p-list { list-style: none; margin-bottom: 40px; flex: 1; }
.p-list li { padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.1); font-size: 1.1rem; }
.p-list li::before { content: '[+]'; color: var(--cp-yellow); margin-right: 10px; font-family: monospace; }

/* 8. FAQ & Footer */
.cp-faq {
    padding: 100px 5vw;
}
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}
.faq-box {
    background: var(--cp-panel);
    border-left: 4px solid var(--cp-yellow);
    padding: 30px;
    margin-bottom: 20px;
}
.faq-q { font-size: 1.5rem; color: #fff; margin-bottom: 10px; font-family: var(--font-head); }
.faq-a { color: var(--cp-muted); font-size: 1.1rem; }

.cp-footer {
    padding: 60px 5vw;
    background: #000;
    border-top: 2px solid var(--cp-cyan);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.f-brand { font-family: var(--font-head); font-size: 2rem; color: var(--cp-yellow); }
.f-links { display: flex; gap: 30px; }
.f-links a { font-weight: 700; text-transform: uppercase; color: var(--cp-muted); }
.f-links a:hover { color: var(--cp-cyan); }
.f-copy { color: rgba(255,255,255,0.3); font-size: 0.9rem; margin-top: 20px; }

/* Subpages */
.sub-hero {
    padding: 120px 5vw;
    text-align: center;
    background: var(--cp-panel);
    border-bottom: 2px solid var(--cp-pink);
}
.sub-hero h1 { font-size: 4rem; color: #fff; margin-bottom: 20px; text-shadow: 2px 2px 0 var(--cp-pink); }
.sub-hero p { font-size: 1.5rem; color: var(--cp-cyan); }

.dl-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    padding: 100px 5vw;
    max-width: 1000px;
    margin: 0 auto;
}
.dl-card {
    background: var(--cp-panel);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 50px;
    display: flex;
    align-items: center;
    gap: 30px;
    clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
}
.dl-card:hover { border-color: var(--cp-cyan); }
.dl-icon { font-size: 4rem; color: var(--cp-yellow); }
.dl-info h3 { font-size: 2rem; margin-bottom: 10px; color: #fff; }
.dl-info p { color: var(--cp-muted); margin-bottom: 20px; }

.help-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 50px;
    padding: 100px 5vw;
    max-width: 1200px;
    margin: 0 auto;
}
.help-nav {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.help-nav a {
    padding: 15px 20px;
    background: var(--cp-panel);
    color: var(--cp-muted);
    font-weight: 700;
    text-transform: uppercase;
    border-left: 4px solid transparent;
}
.help-nav a.active, .help-nav a:hover {
    background: rgba(0, 240, 255, 0.1);
    color: var(--cp-cyan);
    border-color: var(--cp-cyan);
}
.help-content {
    background: var(--cp-panel);
    padding: 60px;
    border: 1px solid rgba(255,255,255,0.1);
}
.help-sec { margin-bottom: 60px; }
.help-sec h2 { font-size: 2.5rem; color: var(--cp-yellow); margin-bottom: 30px; border-bottom: 1px dashed rgba(255,255,255,0.2); padding-bottom: 10px; }
.help-sec h3 { font-size: 1.5rem; color: #fff; margin-bottom: 15px; }
.help-sec p, .help-sec li { font-size: 1.1rem; color: var(--cp-text); margin-bottom: 15px; }
.help-sec ul { padding-left: 20px; }

/* Responsive */
@media (max-width: 1024px) {
    .cp-hero { flex-direction: column; text-align: center; }
    .hero-bg-cut { width: 100%; height: 50%; top: auto; bottom: 0; clip-path: polygon(0 20%, 100% 0, 100% 100%, 0 100%); border-left: none; border-top: 4px solid var(--cp-pink); }
    .hero-content p { border-left: none; border-bottom: 4px solid var(--cp-yellow); padding-left: 0; padding-bottom: 15px; }
    .hero-actions, .trust-data { justify-content: center; }
    .cp-metrics { grid-template-columns: repeat(2, 1fr); }
    .feat-grid { grid-template-columns: 1fr; }
    .price-grid { grid-template-columns: 1fr; }
    .price-card.recommended { transform: none; }
    .dl-grid { grid-template-columns: 1fr; }
    .help-layout { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .cp-nav { flex-direction: column; gap: 15px; }
    .nav-links { flex-wrap: wrap; justify-content: center; }
    .hero-content h1 { font-size: 3rem; }
    .cp-metrics { grid-template-columns: 1fr; }
    .cp-footer { flex-direction: column; text-align: center; gap: 30px; }
}
