:root {
    --p: #c800ff;
    --p2: #8b00cc;
    --p3: #e040ff;
    --bg: #04000a;
    --bg2: #080014;
    --surface: rgba(255, 255, 255, 0.03);
    --border: rgba(200, 0, 255, 0.18);
    --text: #ede0ff;
    --muted: #9080b0;
    --glow: 0 0 40px rgba(200, 0, 255, 0.35);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Rajdhani', sans-serif;
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    cursor: none;
}

#cursor {
    position: fixed;
    width: 10px;
    height: 10px;
    background: var(--p3);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.1s, width 0.2s, height 0.2s;
    mix-blend-mode: screen;
}

#cursor-ring {
    position: fixed;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(200, 0, 255, 0.6);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: all 0.15s ease;
}

body:has(a:hover) #cursor {
    width: 18px;
    height: 18px;
    background: #fff;
}

body:has(a:hover) #cursor-ring {
    width: 50px;
    height: 50px;
    border-color: var(--p3);
}

.grid-bg {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image: linear-gradient(rgba(200, 0, 255, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(200, 0, 255, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at 50% 0%, black 30%, transparent 80%);
}

.scanlines {
    position: fixed;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: repeating-linear-gradient(to bottom, transparent, transparent 3px, rgba(0, 0, 0, 0.08) 3px, rgba(0, 0, 0, 0.08) 4px);
    opacity: 0.4;
}

#canvas {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

h1 {
    font-family: 'Orbitron', monospace;
    font-size: clamp(2.8rem, 7vw, 6rem);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin-bottom: 10px;
}

h1 .line1 {
    color: #fff;
}

h1 .line2 {
    background: linear-gradient(90deg, var(--p), var(--p3), #ff80ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200%;
    animation: grad-move 4s ease-in-out infinite alternate;
}

h2 {
    font-family: 'Orbitron', monospace;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 700;
    letter-spacing: -0.01em;
    color: #fff;
}

h2 em {
    font-style: normal;
    color: var(--p3);
}

section {
    position: relative;
    z-index: 2;
}

.section-header {
    margin-bottom: 70px;
}

.section-tag {
    font-family: 'Space Mono', monospace;
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--p3);
    margin-bottom: 16px;
}

.section-tag::before {
    content: '// ';
    color: var(--muted);
}

.btn {
    font-family: 'Space Mono', monospace;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 14px 36px;
    border-radius: 2px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--p);
    color: #fff;
    box-shadow: 0 0 30px rgba(200, 0, 255, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.btn-primary:hover {
    background: var(--p3);
    box-shadow: 0 0 50px rgba(200, 0, 255, 0.8);
    transform: translateY(-2px);
}

.btn-ghost {
    background: transparent;
    color: var(--p3);
    border: 1px solid var(--border);
}

.btn-ghost:hover {
    border-color: var(--p3);
    background: rgba(200, 0, 255, 0.08);
    transform: translateY(-2px);
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 0 60px;
    border-bottom: 1px solid var(--border);
    background: rgba(4, 0, 10, 0.85);
    backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    transition: all 0.3s ease;
}

.logo {
    display: flex;
    align-items: center;
    gap: 14px;
    font-family: 'Orbitron', monospace;
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #fff;
}

.logo img {
    height: 38px;
    filter: drop-shadow(0 0 8px var(--p));
}

.logo span {
    color: var(--p3);
}

nav {
    display: flex;
    align-items: center;
    gap: 10px;
}

nav a {
    font-family: 'Space Mono', monospace;
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    color: var(--muted);
    text-decoration: none;
    padding: 8px 18px;
    border: 1px solid transparent;
    border-radius: 2px;
    transition: all 0.25s;
    text-transform: uppercase;
}

nav a:hover {
    color: var(--p3);
    border-color: var(--border);
    background: rgba(200, 0, 255, 0.07);
}

nav a.cta {
    background: var(--p);
    color: #fff;
    border-color: var(--p);
    font-weight: 700;
    box-shadow: 0 0 20px rgba(200, 0, 255, 0.4);
}

nav a.cta:hover {
    background: var(--p3);
    border-color: var(--p3);
    box-shadow: 0 0 35px rgba(200, 0, 255, 0.7);
    transform: translateY(-1px);
}

#hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 40px 80px;
    overflow: hidden;
}

.hero-inner {
    position: relative;
    max-width: 900px;
}

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Space Mono', monospace;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--p3);
    border: 1px solid var(--border);
    padding: 6px 18px;
    border-radius: 2px;
    margin-bottom: 40px;
    background: rgba(200, 0, 255, 0.06);
}

.hero-label::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--p3);
    animation: blink 1.2s step-end infinite;
}

.hero-sub {
    font-size: 1.3rem;
    color: var(--muted);
    font-weight: 300;
    letter-spacing: 0.04em;
    margin: 30px auto 50px;
    max-width: 560px;
    line-height: 1.8;
}

.hero-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.stats-strip {
    display: flex;
    gap: 0;
    justify-content: center;
    margin-top: 80px;
    border: 1px solid var(--border);
    border-radius: 4px;
    overflow: hidden;
}

.stat {
    flex: 1;
    padding: 24px 30px;
    text-align: center;
    border-right: 1px solid var(--border);
    background: var(--surface);
}

.stat:last-child {
    border-right: none;
}

.stat-val {
    font-family: 'Orbitron', monospace;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--p3);
    text-shadow: 0 0 20px rgba(200, 0, 255, 0.6);
}

.stat-label {
    font-family: 'Space Mono', monospace;
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--muted);
    margin-top: 4px;
}

#usecases {
    padding: 120px 60px;
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1px;
}

.uc-card {
    background: var(--surface);
    border: 1px solid var(--border);
    padding: 50px 40px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
}

.uc-card.visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.uc-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--p), transparent);
    transform: scaleX(0);
    transition: transform 0.4s;
}

.uc-card:hover::before {
    transform: scaleX(1);
}

.uc-card:hover {
    background: rgba(200, 0, 255, 0.05);
    border-color: rgba(200, 0, 255, 0.4);
}

.uc-num {
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    font-weight: 900;
    color: rgba(200, 0, 255, 0.12);
    line-height: 1;
    margin-bottom: 20px;
}

.uc-card h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.05em;
    margin-bottom: 18px;
}

.uc-card ul {
    list-style: none;
}

.uc-card ul li {
    font-size: 1rem;
    color: var(--muted);
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 300;
    letter-spacing: 0.02em;
}

.uc-card ul li::before {
    content: '›';
    color: var(--p3);
    font-size: 1.2rem;
}

#specs {
    padding: 120px 60px;
    background: linear-gradient(to bottom, transparent, rgba(200, 0, 255, 0.03), transparent);
}

.specs-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.spec-terminal {
    background: #000;
    border: 1px solid var(--border);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 0 60px rgba(200, 0, 255, 0.15);
}

.terminal-bar {
    background: rgba(200, 0, 255, 0.1);
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid var(--border);
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.d1 { background: #ff5f57; }
.d2 { background: #febc2e; }
.d3 { background: #28c840; }

.terminal-title {
    font-family: 'Space Mono', monospace;
    font-size: 0.65rem;
    color: var(--muted);
    margin-left: auto;
}

.terminal-body {
    padding: 30px;
    font-family: 'Space Mono', monospace;
    font-size: 0.8rem;
    line-height: 2;
}

.t-comment { color: #555; }
.t-key { color: var(--p3); }
.t-val { color: #80ffb0; }
.t-str { color: #ffb060; }
.t-prompt { color: var(--p); }

.t-line {
    display: block;
    margin: 2px 0;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.spec-item.visible {
    opacity: 1;
    transform: translateX(0);
}

.spec-item-name {
    font-family: 'Space Mono', monospace;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--muted);
}

.spec-item-val {
    font-family: 'Orbitron', monospace;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
}

.spec-item-val span {
    color: var(--p3);
    font-size: 0.75rem;
    margin-left: 4px;
}

.spec-bar {
    height: 3px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 2px;
    margin-top: 8px;
    overflow: hidden;
}

.spec-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--p2), var(--p3));
    width: 0;
    transition: width 1.5s ease;
    border-radius: 2px;
}

#plan {
    padding: 120px 60px;
}

.plan-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.plan-box {
    border: 1px solid var(--border);
    background: var(--surface);
    padding: 50px 40px;
    border-radius: 4px;
    opacity: 0;
    transform: translateY(20px);
}

.plan-box.visible {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.7s ease;
}

.plan-box.featured {
    border-color: rgba(200, 0, 255, 0.5);
    background: rgba(200, 0, 255, 0.06);
    box-shadow: 0 0 50px rgba(200, 0, 255, 0.15);
    grid-column: 1 / -1;
}

.plan-tag {
    font-family: 'Space Mono', monospace;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--p3);
    margin-bottom: 20px;
}

.plan-name {
    font-family: 'Orbitron', monospace;
    font-size: 1.8rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 8px;
}

.plan-price {
    font-family: 'Orbitron', monospace;
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(90deg, var(--p), var(--p3));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 8px;
}

.plan-price-note {
    font-size: 0.9rem;
    color: var(--muted);
    letter-spacing: 0.05em;
    margin-bottom: 40px;
}

.plan-features {
    list-style: none;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 1rem;
    color: var(--muted);
    font-weight: 300;
    letter-spacing: 0.02em;
}

.plan-features li::before {
    content: '✓';
    color: var(--p3);
    font-weight: 700;
    font-size: 0.85rem;
    flex-shrink: 0;
}

#about {
    padding: 120px 60px;
    border-top: 1px solid var(--border);
}

.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.about-text p {
    font-size: 1.15rem;
    color: var(--muted);
    line-height: 1.9;
    font-weight: 300;
    margin-bottom: 20px;
}

.about-text p strong {
    color: var(--p3);
    font-weight: 600;
}

.about-graphic {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 300px;
}

.hex-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(200, 0, 255, 0.2);
    animation: ring-spin linear infinite;
}

.hex-ring:nth-child(1) {
    width: 260px;
    height: 260px;
    animation-duration: 20s;
}

.hex-ring:nth-child(2) {
    width: 180px;
    height: 180px;
    animation-duration: 14s;
    animation-direction: reverse;
    border-color: rgba(200, 0, 255, 0.35);
}

.hex-ring:nth-child(3) {
    width: 100px;
    height: 100px;
    animation-duration: 8s;
    border-color: rgba(200, 0, 255, 0.6);
}

.hex-core {
    width: 50px;
    height: 50px;
    background: var(--p);
    border-radius: 50%;
    z-index: 1;
    box-shadow: 0 0 40px rgba(200, 0, 255, 0.9), 0 0 80px rgba(200, 0, 255, 0.5);
    animation: core-pulse 3s ease-in-out infinite;
}

.hex-ring::before {
    content: '';
    position: absolute;
    top: -3px;
    left: 50%;
    width: 6px;
    height: 6px;
    background: var(--p3);
    border-radius: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 10px var(--p3);
}

#cta {
    padding: 140px 60px;
    text-align: center;
    background: radial-gradient(ellipse at 50% 0%, rgba(200, 0, 255, 0.12) 0%, transparent 70%);
    border-top: 1px solid var(--border);
}

#cta h2 {
    margin-bottom: 20px;
}

#cta p {
    font-size: 1.15rem;
    color: var(--muted);
    margin-bottom: 50px;
    font-weight: 300;
}

.cta-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

footer {
    padding: 60px;
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    background: rgba(0, 0, 0, 0.4);
}

.foot-logo {
    font-family: 'Orbitron', monospace;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
}

.foot-logo img {
    height: 28px;
    filter: drop-shadow(0 0 6px var(--p));
}

.foot-links {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.foot-links a {
    font-family: 'Space Mono', monospace;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--muted);
    text-decoration: none;
    transition: color 0.2s;
}

.foot-links a:hover {
    color: var(--p3);
}

.foot-copy {
    font-family: 'Space Mono', monospace;
    font-size: 0.6rem;
    color: #3a2a4a;
    letter-spacing: 0.1em;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

@keyframes grad-move {
    0% { background-position: 0%; }
    100% { background-position: 100%; }
}

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

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

@media (max-width: 900px) {
    header {
        padding: 20px 24px;
        height: auto;
        flex-direction: column;
        gap: 20px;
    }
    
    nav {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
    }
    
    nav a {
        display: inline-block;
        font-size: 0.7rem;
        padding: 6px 12px;
    }

    #usecases, #specs, #plan, #about, #cta {
        padding: 80px 24px;
    }

    .specs-layout, .plan-grid, .about-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .plan-box.featured {
        grid-column: auto;
    }

    footer {
        padding: 40px 24px;
        flex-direction: column;
        text-align: center;
    }
    
    .foot-links {
        justify-content: center;
        gap: 20px;
    }

    .stats-strip {
        flex-direction: column;
    }

    .stat {
        border-right: none;
        border-bottom: 1px solid var(--border);
    }
}

/* UPDATED: 15/03/2026 */
#blog {
    padding: 120px 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.blog-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin-top: 50px;
}

.blog-card {
    display: flex;
    flex-direction: column;
    gap: 16px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 36px 32px;
    text-decoration: none;
    color: var(--text);
    transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
    position: relative;
    overflow: hidden;
}

a.blog-card:hover {
    border-color: var(--p);
    box-shadow: var(--glow);
    transform: translateY(-4px);
}

.blog-card-cta {
    background: linear-gradient(135deg, rgba(200,0,255,0.07) 0%, var(--surface) 100%);
}

.blog-card-tag {
    font-family: 'Space Mono', monospace;
    font-size: 0.72rem;
    color: var(--p3);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.blog-card-title {
    font-family: 'Orbitron', monospace;
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.4;
}

.blog-card-excerpt {
    color: var(--muted);
    font-size: 0.97rem;
    font-weight: 300;
    line-height: 1.7;
    flex: 1;
}

.blog-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.82rem;
    color: var(--muted);
    font-family: 'Space Mono', monospace;
}

.blog-read-more {
    color: var(--p3);
}

@media (max-width: 768px) {
    #blog {
        padding: 80px 24px;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }
}