/* ═══════════════════════════════════════════════════
   CYBERSECURITY PORTFOLIO — GLOBAL STYLES
   Theme: #0a0a0a base, #00ff9f neon green accents
   ═══════════════════════════════════════════════════ */

/* ─── CSS Custom Properties ─── */
:root {
    --bg-primary: #0a0a0a;
    --bg-secondary: #0f0f0f;
    --bg-card: #111111;
    --bg-card-hover: #161616;
    --bg-glass: rgba(0, 255, 159, 0.03);
    --border-color: rgba(0, 255, 159, 0.12);
    --border-glow: rgba(0, 255, 159, 0.3);

    --green: #00ff9f;
    --green-dim: #00cc7f;
    --green-glow: rgba(0, 255, 159, 0.4);
    --green-subtle: rgba(0, 255, 159, 0.08);

    --red: #ff4444;
    --yellow: #ffcc00;
    --orange: #ff6b35;
    --cyan: #00d4ff;
    --purple: #a855f7;

    --text-primary: #e0e0e0;
    --text-secondary: #888888;
    --text-muted: #555555;

    --font-mono: 'JetBrains Mono', 'Share Tech Mono', 'Courier New', monospace;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    --container-width: 1200px;
    --section-padding: 120px 0;
    --radius: 8px;
    --radius-lg: 16px;

    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── Reset & Base ─── */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: var(--green-dim);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--green);
}

/* ─── Utility ─── */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

.highlight {
    color: var(--green);
    font-weight: 600;
}

.section {
    padding: var(--section-padding);
    position: relative;
}

/* ─── Scanline Overlay ─── */
.scanline-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    background: repeating-linear-gradient(0deg,
            transparent,
            transparent 2px,
            rgba(0, 255, 159, 0.015) 2px,
            rgba(0, 255, 159, 0.015) 4px);
}

/* ─── Matrix Rain Canvas ─── */
#matrix-rain {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.04;
    pointer-events: none;
}

/* ═══════════════════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════════════════ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    padding: 10px 0;
}

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

.nav-logo {
    text-decoration: none;
    font-family: var(--font-mono);
    font-size: 1.3rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 2px;
}

.logo-bracket {
    color: var(--text-muted);
}

.logo-text {
    color: var(--green);
}

.logo-cursor {
    color: var(--green);
    animation: cursor-blink 1s step-end infinite;
}

@keyframes cursor-blink {

    0%,
    50% {
        opacity: 1;
    }

    51%,
    100% {
        opacity: 0;
    }
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 8px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-family: var(--font-mono);
    font-size: 0.85rem;
    padding: 8px 16px;
    border-radius: var(--radius);
    transition: var(--transition);
    position: relative;
}

.nav-links a:hover {
    color: var(--green);
    background: var(--green-subtle);
}

.nav-links a.nav-cta {
    background: var(--green);
    color: var(--bg-primary);
    font-weight: 600;
}

.nav-links a.nav-cta:hover {
    background: #00e68a;
    box-shadow: 0 0 20px var(--green-glow);
}

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

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--green);
    transition: var(--transition);
    border-radius: 1px;
}

/* ═══════════════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════════════ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 120px 24px 80px;
}

.hero-bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 255, 159, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 159, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: grid-move 20s linear infinite;
}

@keyframes grid-move {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(60px, 60px);
    }
}

.hero-content {
    text-align: center;
    max-width: 900px;
    z-index: 1;
}

/* Terminal in Hero */
.hero-terminal {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 40px;
    text-align: left;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 0 40px rgba(0, 255, 159, 0.05);
}

.terminal-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid var(--border-color);
}

.terminal-dots {
    display: flex;
    gap: 6px;
}

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

.dot.red {
    background: var(--red);
}

.dot.yellow {
    background: var(--yellow);
}

.dot.green {
    background: var(--green);
}

.terminal-title {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--text-muted);
}

.terminal-body {
    padding: 20px;
    min-height: 48px;
}

.terminal-line {
    font-family: var(--font-mono);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.prompt {
    color: var(--green);
    font-family: var(--font-mono);
    white-space: nowrap;
}

#typed-text {
    color: var(--text-primary);
}

.cursor-blink {
    color: var(--green);
    animation: cursor-blink 0.7s step-end infinite;
    font-size: 1rem;
}

/* Hero Title */
.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.hero-name {
    color: var(--green);
    position: relative;
    display: inline-block;
}

/* Glitch Effect */
.glitch {
    position: relative;
}

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

.glitch::before {
    color: var(--cyan);
    animation: glitch-1 3s infinite linear alternate-reverse;
    clip-path: polygon(0 0, 100% 0, 100% 35%, 0 35%);
}

.glitch::after {
    color: var(--red);
    animation: glitch-2 3s infinite linear alternate-reverse;
    clip-path: polygon(0 65%, 100% 65%, 100% 100%, 0 100%);
}

@keyframes glitch-1 {

    0%,
    90% {
        transform: translate(0);
    }

    91% {
        transform: translate(-3px, -1px);
    }

    92% {
        transform: translate(3px, 1px);
    }

    93% {
        transform: translate(-2px, 0px);
    }

    94%,
    100% {
        transform: translate(0);
    }
}

@keyframes glitch-2 {

    0%,
    90% {
        transform: translate(0);
    }

    91% {
        transform: translate(3px, 1px);
    }

    92% {
        transform: translate(-3px, -1px);
    }

    93% {
        transform: translate(2px, 0px);
    }

    94%,
    100% {
        transform: translate(0);
    }
}

.hero-subtitle {
    font-family: var(--font-mono);
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: var(--text-secondary);
    margin-bottom: 12px;
    letter-spacing: 0.05em;
}

.separator {
    color: var(--text-muted);
    margin: 0 8px;
}

.hero-tagline {
    font-size: 1.1rem;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 40px;
}

/* Hero CTAs */
.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-mono);
    font-size: 0.9rem;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: var(--radius);
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-icon {
    font-size: 1.1rem;
    transition: transform var(--transition);
}

.btn:hover .btn-icon {
    transform: translateX(3px);
}

.btn-primary {
    background: var(--green);
    color: var(--bg-primary);
}

.btn-primary:hover {
    background: #00e68a;
    box-shadow: 0 0 30px var(--green-glow);
    transform: translateY(-2px);
}

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

.btn-secondary:hover {
    background: var(--green-subtle);
    box-shadow: 0 0 20px rgba(0, 255, 159, 0.15);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
}

.btn-outline:hover {
    color: var(--green);
    border-color: var(--green);
    transform: translateY(-2px);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 48px;
    justify-content: center;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-num {
    font-family: var(--font-mono);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--green);
    display: inline;
}

.stat-plus {
    font-family: var(--font-mono);
    font-size: 2rem;
    color: var(--green);
}

.stat-label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-family: var(--font-mono);
    margin-top: 4px;
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--text-muted);
    font-family: var(--font-mono);
    font-size: 0.75rem;
    animation: float 2s ease-in-out infinite;
}

.scroll-arrow {
    width: 16px;
    height: 16px;
    border-right: 2px solid var(--green);
    border-bottom: 2px solid var(--green);
    transform: rotate(45deg);
    margin: 8px auto 0;
}

@keyframes float {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(8px);
    }
}

/* ═══════════════════════════════════════════════════
   SECTION TITLE
   ═══════════════════════════════════════════════════ */
.section-title {
    font-family: var(--font-mono);
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--text-primary);
    margin-bottom: 60px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-num {
    color: var(--green);
    font-size: 1rem;
    font-weight: 400;
}

.section-title::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, var(--border-color), transparent);
    margin-left: 20px;
}

/* ═══════════════════════════════════════════════════
   ABOUT SECTION
   ═══════════════════════════════════════════════════ */
.about-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-terminal-line {
    font-family: var(--font-mono);
    font-size: 0.9rem;
    color: var(--green);
    margin-bottom: 24px;
    padding: 8px 12px;
    background: var(--bg-card);
    border-radius: var(--radius);
    border-left: 3px solid var(--green);
}

.about-prompt {
    margin-right: 8px;
    color: var(--green);
}

.about-lead {
    font-size: 1.15rem;
    font-weight: 500;
    margin-bottom: 20px;
    line-height: 1.8;
}

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

.about-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 32px;
}

.highlight-card {
    padding: 24px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    transition: var(--transition);
}

.highlight-card:hover {
    border-color: var(--border-glow);
    background: var(--bg-card-hover);
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 255, 159, 0.08);
}

.highlight-icon {
    font-size: 1.8rem;
    margin-bottom: 12px;
    display: block;
}

.highlight-card h3 {
    font-family: var(--font-mono);
    font-size: 0.95rem;
    color: var(--green);
    margin-bottom: 8px;
}

.highlight-card p {
    font-size: 0.82rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Info Card */
.info-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.info-header {
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid var(--border-color);
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--text-muted);
}

.info-prompt {
    color: var(--green);
}

.info-body {
    padding: 20px;
}

.info-line {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    padding: 6px 0;
    display: flex;
    gap: 12px;
}

.info-key {
    color: var(--cyan);
    min-width: 120px;
}

.info-val {
    color: var(--text-primary);
}

.info-val.available {
    color: var(--green);
    animation: pulse-green 2s infinite;
}

@keyframes pulse-green {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.cert-badges {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.cert-badge {
    padding: 8px 20px;
    background: var(--green-subtle);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--green);
    font-weight: 600;
    transition: var(--transition);
}

.cert-badge:hover {
    border-color: var(--green);
    box-shadow: 0 0 15px rgba(0, 255, 159, 0.2);
}

/* ═══════════════════════════════════════════════════
   SKILLS SECTION
   ═══════════════════════════════════════════════════ */
.skills-terminal {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    padding: 32px;
}

.skill-category {
    padding: 20px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
}

.skill-cat-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.cat-icon {
    font-size: 1.3rem;
}

.skill-cat-header h3 {
    font-family: var(--font-mono);
    font-size: 0.95rem;
    color: var(--green);
}

.skill-row {
    margin-bottom: 14px;
}

.skill-name {
    font-family: var(--font-mono);
    font-size: 0.78rem;
    color: var(--text-secondary);
    margin-bottom: 6px;
    display: block;
}

.skill-bar {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
    overflow: hidden;
}

.skill-fill {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--green), var(--cyan));
    border-radius: 3px;
    transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 8px var(--green-glow);
}

/* Skill Tags (replacing bars) */
.skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.skill-tag {
    padding: 8px 18px;
    background: rgba(0, 255, 159, 0.06);
    border: 1px solid var(--border-color);
    border-radius: 100px;
    font-family: var(--font-mono);
    font-size: 0.78rem;
    color: var(--text-secondary);
    transition: var(--transition);
    cursor: default;
}

.skill-tag:hover {
    color: var(--green);
    border-color: var(--green);
    background: rgba(0, 255, 159, 0.1);
    box-shadow: 0 0 12px rgba(0, 255, 159, 0.15);
    transform: translateY(-2px);
}

/* ═══════════════════════════════════════════════════
   EXPERIENCE / TIMELINE
   ═══════════════════════════════════════════════════ */
.timeline {
    position: relative;
    padding-left: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--green), var(--border-color));
}

.timeline-item {
    position: relative;
    margin-bottom: 48px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-marker {
    position: absolute;
    left: -40px;
    top: 6px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--bg-primary);
    border: 3px solid var(--green);
    z-index: 1;
    box-shadow: 0 0 10px var(--green-glow);
}

.timeline-item:first-child .timeline-marker {
    background: var(--green);
    animation: pulse-marker 2s infinite;
}

@keyframes pulse-marker {

    0%,
    100% {
        box-shadow: 0 0 10px var(--green-glow);
    }

    50% {
        box-shadow: 0 0 25px var(--green-glow);
    }
}

.timeline-content {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 28px;
    transition: var(--transition);
}

.timeline-content:hover {
    border-color: var(--border-glow);
    box-shadow: 0 4px 20px rgba(0, 255, 159, 0.06);
}

.timeline-date {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--green);
    margin-bottom: 8px;
}

.timeline-role {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.timeline-company {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.timeline-details {
    list-style: none;
    margin-bottom: 16px;
}

.timeline-details li {
    position: relative;
    padding-left: 20px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 8px;
    line-height: 1.6;
}

.timeline-details li::before {
    content: '▹';
    position: absolute;
    left: 0;
    color: var(--green);
}

.timeline-tags,
.project-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.tag {
    padding: 4px 12px;
    background: var(--green-subtle);
    border: 1px solid var(--border-color);
    border-radius: 100px;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    color: var(--green);
}

/* ═══════════════════════════════════════════════════
   SERVICES SECTION
   ═══════════════════════════════════════════════════ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

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

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-glow);
    box-shadow: 0 20px 60px rgba(0, 255, 159, 0.08);
}

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

.service-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 4px 12px;
    background: var(--green);
    color: var(--bg-primary);
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 100px;
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: block;
}

.service-card h3 {
    font-family: var(--font-mono);
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.service-desc {
    color: var(--text-secondary);
    font-size: 0.88rem;
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-features {
    list-style: none;
    margin-bottom: 20px;
}

.service-features li {
    padding: 6px 0;
    font-size: 0.85rem;
    color: var(--text-secondary);
    padding-left: 20px;
    position: relative;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--green);
    font-weight: bold;
}

.service-for {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 24px;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
}

.service-cta {
    width: 100%;
    justify-content: center;
    font-size: 0.85rem;
}

/* ═══════════════════════════════════════════════════
   SHOP SECTION
   ═══════════════════════════════════════════════════ */
.shop-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

.shop-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 36px;
    transition: var(--transition);
    position: relative;
}

.shop-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-glow);
    box-shadow: 0 16px 50px rgba(0, 255, 159, 0.08);
}

.shop-badge {
    position: absolute;
    top: -12px;
    left: 24px;
    padding: 4px 16px;
    background: var(--orange);
    color: #fff;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 700;
    border-radius: 100px;
}

.shop-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
    display: block;
}

.shop-card h3 {
    font-family: var(--font-mono);
    font-size: 1.15rem;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.shop-card>p {
    color: var(--text-secondary);
    font-size: 0.88rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.shop-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 20px;
}

.price {
    font-family: var(--font-mono);
    font-size: 2rem;
    font-weight: 700;
    color: var(--green);
}

.price-note {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.shop-includes {
    list-style: none;
    margin-bottom: 24px;
}

.shop-includes li {
    padding: 6px 0;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* ═══════════════════════════════════════════════════
   PROJECTS SECTION
   ═══════════════════════════════════════════════════ */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 32px;
}

.project-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 36px;
    transition: var(--transition);
}

.project-card:hover {
    border-color: var(--border-glow);
    box-shadow: 0 8px 30px rgba(0, 255, 159, 0.06);
}

.project-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.project-icon {
    font-size: 1.8rem;
}

.project-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--green-subtle);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    color: var(--green);
    text-decoration: none;
    font-size: 1.2rem;
    transition: var(--transition);
}

.project-link:hover {
    background: var(--green);
    color: var(--bg-primary);
}

.project-card h3 {
    font-family: var(--font-mono);
    font-size: 1.3rem;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.project-subtitle {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.project-flow {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 16px;
    align-items: start;
    margin-bottom: 24px;
    padding: 20px;
    background: var(--bg-secondary);
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.flow-step {
    text-align: left;
}

.flow-label {
    display: block;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    color: var(--green);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
}

.flow-step p {
    font-size: 0.82rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.flow-arrow {
    color: var(--green);
    font-family: var(--font-mono);
    font-size: 1.2rem;
    align-self: center;
    opacity: 0.5;
}

/* ═══════════════════════════════════════════════════
   REPORTS SECTION
   ═══════════════════════════════════════════════════ */
.reports-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.report-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 28px;
    transition: var(--transition);
}

.report-card:hover {
    border-color: var(--border-glow);
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 255, 159, 0.06);
}

.report-severity {
    display: inline-block;
    padding: 3px 12px;
    border-radius: 100px;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: 0.05em;
}

.report-severity.critical {
    background: rgba(255, 68, 68, 0.15);
    color: var(--red);
    border: 1px solid rgba(255, 68, 68, 0.3);
}

.report-severity.high {
    background: rgba(255, 107, 53, 0.15);
    color: var(--orange);
    border: 1px solid rgba(255, 107, 53, 0.3);
}

.report-severity.medium {
    background: rgba(255, 204, 0, 0.15);
    color: var(--yellow);
    border: 1px solid rgba(255, 204, 0, 0.3);
}

.report-card h3 {
    font-family: var(--font-mono);
    font-size: 1rem;
    color: var(--text-primary);
    margin-bottom: 12px;
    line-height: 1.4;
}

.report-card>p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.7;
    margin-bottom: 16px;
}

.report-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.report-impact,
.report-type {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    color: var(--text-muted);
}

.report-link {
    color: var(--green);
    text-decoration: none;
    font-family: var(--font-mono);
    font-size: 0.85rem;
    transition: var(--transition);
}

.report-link:hover {
    text-shadow: 0 0 10px var(--green-glow);
}

/* ═══════════════════════════════════════════════════
   SOCIAL PROOF SECTION
   ═══════════════════════════════════════════════════ */
.proof-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.proof-stat {
    text-align: center;
    padding: 32px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    transition: var(--transition);
}

.proof-stat:hover {
    border-color: var(--border-glow);
    box-shadow: 0 0 30px rgba(0, 255, 159, 0.08);
}

.proof-stat-num {
    font-family: var(--font-mono);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--green);
    display: inline;
}

.proof-stat-plus {
    font-family: var(--font-mono);
    font-size: 1.5rem;
    color: var(--green);
    display: inline;
}

.proof-stat-label {
    display: block;
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-top: 8px;
    font-family: var(--font-mono);
}

/* Testimonials */
.testimonials {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: var(--transition);
}

.testimonial-card:hover {
    border-color: var(--border-glow);
}

.testimonial-quote {
    color: var(--text-secondary);
    font-size: 0.92rem;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 20px;
    position: relative;
    padding-left: 20px;
    border-left: 3px solid var(--green);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    background: var(--green-subtle);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--green);
    font-weight: 700;
}

.testimonial-name {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-primary);
}

.testimonial-role {
    font-size: 0.78rem;
    color: var(--text-muted);
    font-family: var(--font-mono);
}

/* Platforms */
.proof-platforms {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.platform-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    transition: var(--transition);
}

.platform-badge:hover {
    border-color: var(--border-glow);
}

.platform-icon {
    font-size: 1.3rem;
}

.platform-name {
    font-family: var(--font-mono);
    font-size: 0.82rem;
    color: var(--text-primary);
}

.platform-status {
    font-size: 0.72rem;
    color: var(--green);
    font-family: var(--font-mono);
    margin-left: auto;
}

/* ═══════════════════════════════════════════════════
   FAKE TERMINAL
   ═══════════════════════════════════════════════════ */
.fake-terminal {
    max-width: 700px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 0 40px rgba(0, 255, 159, 0.05);
}

.terminal-output {
    padding: 20px;
    max-height: 300px;
    overflow-y: auto;
    font-family: var(--font-mono);
    font-size: 0.85rem;
}

.terminal-output .terminal-line {
    margin-bottom: 4px;
    color: var(--text-secondary);
}

.terminal-green {
    color: var(--green);
}

.terminal-input-line {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    border-top: 1px solid var(--border-color);
    background: rgba(255, 255, 255, 0.02);
}

.terminal-input {
    flex: 1;
    background: none;
    border: none;
    outline: none;
    color: var(--text-primary);
    font-family: var(--font-mono);
    font-size: 0.85rem;
    caret-color: var(--green);
}

.terminal-input::placeholder {
    color: var(--text-muted);
}

/* ═══════════════════════════════════════════════════
   CONTACT SECTION
   ═══════════════════════════════════════════════════ */
.contact-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-top: -40px;
    margin-bottom: 48px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 48px;
    align-items: start;
}

.contact-form {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 36px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    color: var(--text-primary);
    font-family: var(--font-mono);
    font-size: 0.85rem;
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--green);
    box-shadow: 0 0 15px rgba(0, 255, 159, 0.1);
}

.form-group select {
    cursor: pointer;
}

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

.form-submit {
    width: 100%;
    justify-content: center;
    padding: 16px;
    font-size: 0.95rem;
}

.contact-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 32px;
    margin-bottom: 20px;
}

.contact-card h3 {
    font-family: var(--font-mono);
    font-size: 1rem;
    color: var(--text-primary);
    margin-bottom: 24px;
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text-secondary);
    padding: 12px 16px;
    border-radius: var(--radius);
    transition: var(--transition);
    font-size: 0.88rem;
}

.contact-link:hover {
    background: var(--green-subtle);
    color: var(--green);
}

.link-icon {
    font-size: 1.2rem;
}

.availability-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px 24px;
    background: rgba(0, 255, 159, 0.05);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    font-family: var(--font-mono);
    font-size: 0.82rem;
    color: var(--green);
}

.avail-dot {
    width: 10px;
    height: 10px;
    background: var(--green);
    border-radius: 50%;
    animation: pulse-marker 2s infinite;
    flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════
   LIVE HACKING FEED
   ═══════════════════════════════════════════════════ */
.hacking-feed {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 100;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 8px 16px;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    max-width: 350px;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0.8;
    transition: var(--transition);
}

.hacking-feed:hover {
    opacity: 1;
}

.feed-label {
    color: var(--red);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    flex-shrink: 0;
}

.feed-label::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--red);
    border-radius: 50%;
    animation: pulse-red 1.5s infinite;
}

@keyframes pulse-red {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

.feed-content {
    color: var(--text-muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ═══════════════════════════════════════════════════
   VISITOR COUNTER
   ═══════════════════════════════════════════════════ */
.visitor-counter {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 100;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 8px 16px;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--text-muted);
    opacity: 0.8;
    display: flex;
    align-items: center;
    gap: 8px;
}

.counter-label {
    color: var(--text-muted);
}

.counter-num {
    color: var(--green);
    font-weight: 600;
}

/* ═══════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════ */
.footer {
    padding: 60px 0 30px;
    border-top: 1px solid var(--border-color);
    background: var(--bg-secondary);
}

.footer-content {
    text-align: center;
}

.footer-logo {
    font-family: var(--font-mono);
    font-size: 1.3rem;
    margin-bottom: 16px;
}

.footer-text {
    color: var(--text-muted);
    font-size: 0.88rem;
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    gap: 24px;
    justify-content: center;
    margin-bottom: 24px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-family: var(--font-mono);
    font-size: 0.82rem;
    transition: var(--transition);
}

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

.footer-copy {
    color: var(--text-muted);
    font-size: 0.78rem;
}

.easter-egg-hint {
    cursor: help;
    transition: var(--transition);
}

.easter-egg-hint:hover {
    filter: brightness(1.5);
}

/* ═══════════════════════════════════════════════════
   SCROLL REVEAL ANIMATIONS
   ═══════════════════════════════════════════════════ */
.reveal-item {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-item.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE DESIGN — MOBILE FIRST
   ═══════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-highlights {
        grid-template-columns: repeat(3, 1fr);
    }

    .skills-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .proof-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .proof-platforms {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

    .project-flow {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .flow-arrow {
        display: none;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 80px 0;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        right: 0;
        width: 280px;
        height: 100vh;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 80px 32px 32px;
        gap: 4px;
        border-left: 1px solid var(--border-color);
    }

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

    .nav-links a {
        padding: 14px 16px;
        width: 100%;
        font-size: 0.95rem;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .hero {
        padding: 100px 20px 60px;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-stats {
        gap: 24px;
    }

    .stat-num {
        font-size: 1.8rem;
    }

    .about-highlights {
        grid-template-columns: 1fr;
    }

    .skills-grid {
        grid-template-columns: 1fr;
        padding: 20px;
        gap: 20px;
    }

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

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

    .proof-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .proof-platforms {
        grid-template-columns: 1fr;
    }

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

    .section-title {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .section-title::after {
        display: none;
    }

    .hacking-feed {
        max-width: 250px;
    }

    .info-line {
        flex-direction: column;
        gap: 2px;
    }

    .info-key {
        min-width: unset;
    }
}

@media (max-width: 480px) {
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .hero-cta .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-stats {
        flex-direction: column;
        gap: 16px;
    }

    .hacking-feed {
        display: none;
    }

    .cert-badges {
        justify-content: center;
    }

    .platform-badge {
        flex-wrap: wrap;
    }

    .platform-status {
        margin-left: 0;
        width: 100%;
    }
}