.elementor-15086 .elementor-element.elementor-element-cdcf216{--display:flex;}/* Start custom CSS for html, class: .elementor-element-fb87b05 *//* ============================================================
   T1594 ,  Search Victim-Owned Websites
   MITRE ATT&amp;CK Reconnaissance (TA0043)
   Accent: Lime Green (#84cc16) | Secondary: (#bef264)
   ============================================================ */

/* --- Reset &amp; Base --- */
html { scroll-behavior: smooth; }

body {
    background:
        radial-gradient(ellipse at 20% 50%, rgba(0,240,255,.04) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 50%, rgba(0,255,65,.03) 0%, transparent 60%),
        linear-gradient(180deg,#0a0e17 0%,#0d1525 50%,#0a0e17 100%);
    color: #c9d1d9;
    line-height: 1.75;
    font-size: 16px;
    overflow-x: hidden;
}

/* --- CSS Variables --- */
:root {
    --accent: #84cc16;
    --accent-sec: #bef264;
    --accent-dim: rgba(132,204,22,.15);
    --accent-glow: rgba(132,204,22,.4);
    --bg-card: rgba(15,20,35,.65);
    --bg-glass: rgba(20,28,50,.45);
    --border: rgba(132,204,22,.2);
    --text: #c9d1d9;
    --text-muted: #8b949e;
    --text-bright: #f0f6fc;
    --radius: 16px;
    --radius-sm: 10px;
    --red: #ef4444;
    --blue: #3b82f6;
    --amber: #f59e0b;
}

/* --- Typography --- */
h1, h2, h3, h4 { color: var(--text-bright); font-weight: 700; letter-spacing: -0.02em; }

a { color: var(--accent); text-decoration: none; transition: color .25s, text-shadow .25s; }
a:hover { color: var(--accent-sec); text-shadow: 0 0 12px var(--accent-glow); }
a:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 4px; }

/* --- Glass Card --- */
.glass {
    background: var(--bg-glass);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
}

/* --- Header (no separate bg) --- */
.header {
    text-align: center;
    padding: 3.5rem 1.5rem 2.5rem;
}

.badge-tactic {
    display: inline-block;
    background: var(--accent-dim);
    color: var(--accent);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: .35rem 1rem;
    border-radius: 100px;
    border: 1px solid var(--accent);
    margin-bottom: 1.2rem;
}

.header h1 {
    font-size: clamp(1.8rem, 4.5vw, 3rem);
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-sec) 60%, #fff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: .6rem;
}

.header .subtitle {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 720px;
    margin: 0 auto 1.5rem;
}

.technique-id {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: .5rem 1.2rem;
    font-size: .9rem;
    color: var(--text-muted);
}

.technique-id strong { color: var(--accent); font-weight: 700; }

/* --- Content Sections --- */
.section {
    max-width: 960px;
    margin: 2.5rem auto;
    padding: 0 1.5rem;
    animation: fadeSlideUp .7s ease-out both;
}

.section-tit {
    font-size: 1.55rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: .7rem;
    padding-bottom: .7rem;
    border-bottom: 2px solid var(--accent-dim);
}

.section-tit .tit-icon { font-size: 1.4rem; opacity: .85; }

.section-tit::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, var(--accent) 0%, transparent 100%);
    margin-left: .5rem;
}

/* ============================================================
   SECTION 1 ,  SIMULATION
   ============================================================ */
.sim-container {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    min-height: 480px;
}

/* Scan overlay grid */
.scan-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(132,204,22,.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(132,204,22,.03) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: 1;
    pointer-events: none;
    animation: gridPulse 4s ease-in-out infinite;
}

/* Website mockup */
.website-mockup {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 320px;
    min-height: 480px;
}

/* Left: Victim Website */
.victim-site {
    position: relative;
    padding: 1rem;
    border-right: 1px solid rgba(255,255,255,.05);
}

.site-chrome {
    display: flex;
    align-items: center;
    gap: .5rem;
    padding: .5rem .8rem;
    background: rgba(10,14,23,.9);
    border-radius: 8px;
    margin-bottom: .8rem;
    border: 1px solid rgba(255,255,255,.06);
}

.site-dots { display: flex; gap: 5px; }
.site-dots span { width: 10px; height: 10px; border-radius: 50%; }
.site-dots .d-r { background: #ff5f57; }
.site-dots .d-y { background: #febc2e; }
.site-dots .d-g { background: #28c840; }

.site-url-bar {
    flex: 1;
    padding: .25rem .6rem;
    background: rgba(255,255,255,.05);
    border-radius: 4px;
    font-size: .7rem;
    color: var(--accent-sec);
    font-family: 'Courier New', monospace;
}

.site-content {
    position: relative;
    background: rgba(15,20,35,.9);
    border: 1px solid rgba(255,255,255,.05);
    border-radius: 8px;
    padding: .8rem;
    min-height: 340px;
    overflow: hidden;
}

/* Scan beam across the site */
.scan-beam {
    position: absolute;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent), var(--accent-sec), transparent);
    z-index: 10;
    box-shadow: 0 0 15px var(--accent-glow), 0 0 30px rgba(132,204,22,.2);
    animation: scanBeamDown 3s ease-in-out infinite;
}

/* Website header area */
.site-nav-bar {
    display: flex;
    align-items: center;
    gap: .8rem;
    padding-bottom: .6rem;
    border-bottom: 1px solid rgba(255,255,255,.06);
    margin-bottom: .8rem;
}

.site-logo-box {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    background: linear-gradient(135deg, #1e3a5f, #2563eb);
    animation: logoPulse 3s ease-in-out infinite;
}

.site-name { font-size: .82rem; color: var(--text-bright); font-weight: 600; }

.site-nav-links {
    display: flex;
    gap: .6rem;
    margin-left: auto;
}

.site-nav-links span {
    font-size: .65rem;
    color: var(--text-muted);
    padding: .2rem .5rem;
    border-radius: 4px;
    background: rgba(255,255,255,.03);
}

.site-nav-links .nav-active {
    color: var(--accent);
    background: var(--accent-dim);
    border: 1px solid rgba(132,204,22,.3);
    animation: navTabGlow 2s ease-in-out infinite;
}

/* Page sections being revealed */
.page-sections {
    display: flex;
    flex-direction: column;
    gap: .6rem;
}

.page-block {
    padding: .5rem;
    background: rgba(255,255,255,.02);
    border-radius: 6px;
    border-left: 3px solid transparent;
    opacity: 0;
    animation: pageBlockReveal .6s ease-out both;
}

.page-block:nth-child(1) { animation-delay: .5s; border-left-color: var(--accent); }
.page-block:nth-child(2) { animation-delay: 1.2s; border-left-color: var(--accent-sec); }
.page-block:nth-child(3) { animation-delay: 2s; border-left-color: #60a5fa; }
.page-block:nth-child(4) { animation-delay: 2.8s; border-left-color: #f59e0b; }

.pb-title {
    font-size: .72rem;
    font-weight: 700;
    color: var(--text-bright);
    margin-bottom: .3rem;
}

.pb-lines { display: flex; flex-direction: column; gap: 4px; }

.pb-line {
    height: 6px;
    border-radius: 3px;
    background: rgba(255,255,255,.06);
    animation: lineGrow .8s ease-out both;
}

.pb-line:nth-child(1) { width: 80%; animation-delay: .3s; }
.pb-line:nth-child(2) { width: 65%; animation-delay: .5s; }
.pb-line:nth-child(3) { width: 75%; animation-delay: .7s; }

/* Extraction highlights */
.extract-tag {
    position: absolute;
    padding: .15rem .5rem;
    background: rgba(132,204,22,.2);
    border: 1px solid var(--accent);
    border-radius: 4px;
    font-size: .6rem;
    color: var(--accent-sec);
    font-weight: 600;
    animation: tagPop 1s ease-out both;
    z-index: 8;
}

.extract-tag:nth-child(1) { top: 80px; right: 15px; animation-delay: 1s; }
.extract-tag:nth-child(2) { top: 140px; right: 25px; animation-delay: 1.8s; }
.extract-tag:nth-child(3) { top: 200px; right: 10px; animation-delay: 2.5s; }
.extract-tag:nth-child(4) { top: 260px; right: 20px; animation-delay: 3.2s; }

/* Right: Attacker Terminal */
.attacker-panel {
    background: rgba(8,12,20,.95);
    padding: 0;
    display: flex;
    flex-direction: column;
}

.terminal-header {
    display: flex;
    align-items: center;
    gap: .5rem;
    padding: .5rem .8rem;
    background: rgba(20,10,10,.8);
    border-bottom: 1px solid rgba(239,68,68,.2);
}

.terminal-header .t-icon { color: var(--red); font-size: .8rem; }
.terminal-header .t-title { font-size: .72rem; color: #f87171; font-weight: 600; font-family: 'Courier New', monospace; }

.terminal-body {
    flex: 1;
    padding: .6rem .8rem;
    font-family: 'Courier New', monospace;
    font-size: .68rem;
    overflow: hidden;
}

.term-line {
    margin-bottom: .4rem;
    opacity: 0;
    animation: termLineAppear .4s ease-out both;
    white-space: nowrap;
    overflow: hidden;
}

.term-line:nth-child(1) { animation-delay: .3s; }
.term-line:nth-child(2) { animation-delay: .8s; }
.term-line:nth-child(3) { animation-delay: 1.3s; }
.term-line:nth-child(4) { animation-delay: 1.8s; }
.term-line:nth-child(5) { animation-delay: 2.3s; }
.term-line:nth-child(6) { animation-delay: 2.8s; }
.term-line:nth-child(7) { animation-delay: 3.3s; }
.term-line:nth-child(8) { animation-delay: 3.8s; }
.term-line:nth-child(9) { animation-delay: 4.3s; }
.term-line:nth-child(10) { animation-delay: 4.8s; }
.term-line:nth-child(11) { animation-delay: 5.3s; }
.term-line:nth-child(12) { animation-delay: 5.8s; }

.t-prompt { color: #f87171; }
.t-cmd { color: var(--accent-sec); }
.t-out { color: var(--text-muted); }
.t-ok { color: var(--accent); }
.t-warn { color: #fbbf24; }
.t-file { color: #60a5fa; }

/* Discovery panel at bottom of terminal */
.discovery-panel {
    padding: .6rem .8rem;
    border-top: 1px solid rgba(132,204,22,.15);
    background: rgba(132,204,22,.05);
}

.disc-title {
    font-size: .62rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--accent);
    margin-bottom: .4rem;
}

.disc-items { display: flex; flex-direction: column; gap: .3rem; }

.disc-item {
    display: flex;
    align-items: center;
    gap: .4rem;
    font-size: .62rem;
    font-family: 'Courier New', monospace;
    opacity: 0;
    animation: discItemSlide .4s ease-out both;
}

.disc-item:nth-child(1) { animation-delay: 2s; }
.disc-item:nth-child(2) { animation-delay: 2.5s; }
.disc-item:nth-child(3) { animation-delay: 3s; }
.disc-item:nth-child(4) { animation-delay: 3.5s; }
.disc-item:nth-child(5) { animation-delay: 4s; }
.disc-item:nth-child(6) { animation-delay: 4.5s; }

.disc-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    animation: dotBlink 1.5s ease-in-out infinite;
}

.disc-name { color: var(--text); }
.disc-status { color: var(--accent); margin-left: auto; }

/* Data dashboard at bottom */
.data-dashboard {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 320px;
    height: 90px;
    background: rgba(8,12,20,.95);
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    padding: 0 1rem;
    gap: 1rem;
    z-index: 15;
}

.dash-stat {
    flex: 1;
    text-align: center;
    padding: .4rem;
    border-right: 1px solid rgba(255,255,255,.05);
}

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

.dash-val {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--accent);
    animation: statCountUp 3s ease-out both;
}

.dash-stat:nth-child(1) .dash-val { animation-delay: 1s; }
.dash-stat:nth-child(2) .dash-val { animation-delay: 1.5s; }
.dash-stat:nth-child(3) .dash-val { animation-delay: 2s; }
.dash-stat:nth-child(4) .dash-val { animation-delay: 2.5s; }

.dash-label {
    font-size: .6rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-top: 2px;
}

/* Scan lines overlay */
.scan-line-h {
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    opacity: .25;
    z-index: 12;
    pointer-events: none;
    animation: scanLineH 6s linear infinite;
}

.scan-line-v {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(180deg, transparent, var(--accent), transparent);
    opacity: .15;
    z-index: 12;
    pointer-events: none;
    animation: scanLineV 8s linear infinite;
}

/* Floating data particles */
.data-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--accent);
    opacity: 0;
    z-index: 11;
    pointer-events: none;
    animation: particleFloat 4s ease-in-out infinite;
}

.data-particle:nth-child(1) { left: 30%; animation-delay: .5s; }
.data-particle:nth-child(2) { left: 50%; animation-delay: 1s; }
.data-particle:nth-child(3) { left: 70%; animation-delay: 1.5s; }
.data-particle:nth-child(4) { left: 40%; animation-delay: 2s; }
.data-particle:nth-child(5) { left: 60%; animation-delay: 2.5s; }
.data-particle:nth-child(6) { left: 45%; animation-delay: 3s; }
.data-particle:nth-child(7) { left: 55%; animation-delay: 3.5s; }

/* ============================================================
   SECTION 2 ,  WHY IT MATTERS
   ============================================================ */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.stat-card {
    background: var(--bg-glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 1.3rem;
    text-align: center;
    transition: transform .3s, box-shadow .3s;
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(132,204,22,.12);
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--accent);
    display: block;
    line-height: 1.2;
    animation: statPulse 3s ease-in-out infinite;
}

.stat-label {
    font-size: .85rem;
    color: var(--text-muted);
    margin-top: .3rem;
}

.why-text {
    font-size: 1rem;
    line-height: 1.85;
    color: var(--text);
    margin-bottom: 1.5rem;
}

.why-text strong { color: var(--accent-sec); }

.resource-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: .8rem;
    margin-top: 1.5rem;
}

.resource-link {
    display: flex;
    align-items: center;
    gap: .7rem;
    padding: .9rem 1.1rem;
    background: var(--bg-glass);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text);
    transition: border-color .3s, background .3s;
}

.resource-link:hover {
    border-color: var(--accent);
    background: var(--accent-dim);
    text-shadow: none;
    color: var(--text-bright);
}

.resource-link .rl-icon { font-size: 1.3rem; flex-shrink: 0; color: var(--accent); }
.resource-link .rl-title { font-size: .88rem; font-weight: 600; color: var(--text-bright); }
.resource-link .rl-desc { font-size: .75rem; color: var(--text-muted); margin-top: 2px; }

/* ============================================================
   SECTION 3 ,  KEY TERMS &amp; CONCEPTS
   ============================================================ */
.analogy-box {
    background: linear-gradient(135deg, var(--accent-dim), rgba(132,204,22,.05));
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem 2rem;
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
}

.analogy-box::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -20%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--accent-dim) 0%, transparent 70%);
    animation: analogyGlow 4s ease-in-out infinite;
    pointer-events: none;
}

.analogy-box .analogy-icon {
    font-size: 2rem;
    margin-bottom: .6rem;
    display: block;
}

.analogy-box p {
    font-size: .95rem;
    color: var(--text);
    line-height: 1.8;
    position: relative;
}

.analogy-box p em {
    color: var(--accent-sec);
    font-style: normal;
    font-weight: 600;
}

.terms-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin-top: 1rem;
}

.terms-table thead th {
    background: var(--accent-dim);
    color: var(--accent);
    font-size: .8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    padding: .7rem 1rem;
    text-align: left;
    border-bottom: 2px solid var(--accent);
}

.terms-table thead th:first-child { border-radius: var(--radius-sm) 0 0 0; }
.terms-table thead th:last-child { border-radius: 0 var(--radius-sm) 0 0; }

.terms-table tbody td {
    padding: .8rem 1rem;
    border-bottom: 1px solid rgba(255,255,255,.04);
    font-size: .9rem;
    vertical-align: top;
}

.terms-table tbody tr:hover td { background: rgba(132,204,22,.05); }

.terms-table .term-name {
    font-weight: 700;
    color: var(--accent-sec);
    white-space: nowrap;
}

/* ============================================================
   SECTION 4 ,  REAL-WORLD SCENARIO
   ============================================================ */
.scenario-card {
    background: var(--bg-glass);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}

.scenario-header {
    background: linear-gradient(135deg, var(--accent-dim), rgba(132,204,22,.05));
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.scenario-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--accent-dim);
    border: 2px solid var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    animation: avatarBreath 3s ease-in-out infinite;
}

.scenario-header h3 { font-size: 1.15rem; }
.scenario-header .scenario-role { font-size: .85rem; color: var(--accent-sec); }

.scenario-body { padding: 2rem; }

.scenario-phase { margin-bottom: 1.5rem; }

.scenario-phase .phase-label {
    display: inline-block;
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    padding: .25rem .7rem;
    border-radius: 100px;
    margin-bottom: .6rem;
}

.phase-before { background: rgba(34,197,94,.15); color: #4ade80; }
.phase-attack { background: rgba(132,204,22,.15); color: var(--accent); }
.phase-after { background: rgba(239,68,68,.15); color: #f87171; }

.scenario-phase p { font-size: .95rem; color: var(--text); line-height: 1.8; }

.scenario-timeline {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.timeline-item {
    flex: 1;
    min-width: 140px;
    padding: .8rem;
    background: rgba(255,255,255,.03);
    border-radius: var(--radius-sm);
    border-left: 3px solid var(--accent);
    animation: timelinePulse 3s ease-in-out infinite;
}

.timeline-item:nth-child(2) { animation-delay: .5s; border-left-color: var(--accent-sec); }
.timeline-item:nth-child(3) { animation-delay: 1s; border-left-color: #fbbf24; }
.timeline-item:nth-child(4) { animation-delay: 1.5s; border-left-color: #f87171; }

.timeline-item .tl-day { font-size: .72rem; color: var(--accent); font-weight: 700; }
.timeline-item .tl-event { font-size: .82rem; color: var(--text); margin-top: 3px; }

/* ============================================================
   SECTION 5 ,  STEP-BY-STEP GUIDE
   ============================================================ */
.steps-list { counter-reset: step; list-style: none; }

.step-item {
    counter-increment: step;
    position: relative;
    padding: 1.2rem 1.2rem 1.2rem 4.2rem;
    margin-bottom: 1rem;
    background: var(--bg-glass);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    transition: border-color .3s;
    animation: fadeSlideUp .5s ease-out both;
}

.step-item:hover { border-color: var(--accent); }

.step-item::before {
    content: counter(step);
    position: absolute;
    left: 1rem;
    top: 1.2rem;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--accent);
    color: #0a0e17;
    font-size: .85rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-item h4 { font-size: 1rem; color: var(--text-bright); margin-bottom: .4rem; }
.step-item p { font-size: .9rem; color: var(--text); }

.step-sub { list-style: none; padding-left: 0; margin-top: .5rem; }

.step-sub li {
    position: relative;
    padding-left: 1.2rem;
    font-size: .85rem;
    color: var(--text-muted);
    margin-bottom: .25rem;
}

.step-sub li::before {
    content: '\f054';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--accent);
    font-size: .6rem;
    top: 4px;
}

.protection-tag {
    display: inline-block;
    font-size: .68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    padding: .15rem .55rem;
    border-radius: 100px;
    margin-right: .4rem;
    margin-top: .3rem;
}

.tag-prevent { background: rgba(34,197,94,.15); color: #4ade80; border: 1px solid rgba(34,197,94,.3); }
.tag-detect { background: rgba(59,130,246,.15); color: #60a5fa; border: 1px solid rgba(59,130,246,.3); }
.tag-respond { background: rgba(251,191,36,.15); color: #fbbf24; border: 1px solid rgba(251,191,36,.3); }
.tag-monitor { background: rgba(168,85,247,.15); color: #c084fc; border: 1px solid rgba(168,85,247,.3); }

/* ============================================================
   SECTION 6 ,  COMMON MISTAKES &amp; BEST PRACTICES
   ============================================================ */
.compare-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.mistakes-col, .best-col {
    background: var(--bg-glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
}

.mistakes-col { border-color: rgba(239,68,68,.25); }
.best-col { border-color: rgba(34,197,94,.25); }

.col-heading {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    padding-bottom: .6rem;
    border-bottom: 1px solid rgba(255,255,255,.06);
}

.col-heading.bad { color: #f87171; }
.col-heading.good { color: #4ade80; }

.compare-item {
    padding: .7rem;
    margin-bottom: .6rem;
    border-radius: 8px;
    font-size: .88rem;
    color: var(--text);
    line-height: 1.6;
}

.compare-item.bad-item { background: rgba(239,68,68,.06); border-left: 3px solid rgba(239,68,68,.4); }
.compare-item.good-item { background: rgba(34,197,94,.06); border-left: 3px solid rgba(34,197,94,.4); }

.compare-item strong { color: var(--text-bright); }

/* ============================================================
   SECTION 7 ,  RED TEAM vs BLUE TEAM VIEW
   ============================================================ */
.vs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.team-card {
    background: var(--bg-glass);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-radius: var(--radius);
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
}

.team-card.red { border: 1px solid rgba(239,68,68,.25); }
.team-card.blue { border: 1px solid rgba(59,130,246,.25); }

.team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
}

.team-card.red::before { background: linear-gradient(90deg, #ef4444, #f97316); }
.team-card.blue::before { background: linear-gradient(90deg, #3b82f6, #06b6d4); }

.team-label {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.team-label.red-label { color: #f87171; }
.team-label.blue-label { color: #60a5fa; }

.tactic-list { list-style: none; padding: 0; }

.tactic-list li {
    padding: .6rem .8rem;
    margin-bottom: .5rem;
    border-radius: 8px;
    font-size: .88rem;
    color: var(--text);
    line-height: 1.6;
    display: flex;
    align-items: flex-start;
    gap: .5rem;
}

.tactic-list .tac-icon { flex-shrink: 0; font-size: .9rem; margin-top: 2px; }
.tactic-list li.red-tac { background: rgba(239,68,68,.06); border-left: 3px solid rgba(239,68,68,.3); }
.tactic-list li.blue-tac { background: rgba(59,130,246,.06); border-left: 3px solid rgba(59,130,246,.3); }

/* ============================================================
   SECTION 8 ,  THREAT HUNTER'S EYE
   ============================================================ */
.hunter-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.hunter-card {
    background: var(--bg-glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 1.3rem;
    transition: border-color .3s;
}

.hunter-card:hover { border-color: var(--accent); }

.hunter-card .hc-label {
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--accent);
    margin-bottom: .5rem;
}

.hunter-card h4 { font-size: .95rem; margin-bottom: .4rem; }
.hunter-card p { font-size: .88rem; color: var(--text); line-height: 1.7; }

.hunter-query {
    background: rgba(10,14,23,.8);
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 6px;
    padding: .5rem .8rem;
    margin-top: .6rem;
    font-family: 'Courier New', monospace;
    font-size: .78rem;
    color: var(--accent-sec);
    overflow-x: auto;
}

/* ============================================================
   SECTION 9 ,  CALL-TO-ACTION
   ============================================================ */
.cta-box {
    background: linear-gradient(135deg, var(--accent-dim), rgba(132,204,22,.08));
    border: 2px solid var(--accent);
    border-radius: var(--radius);
    padding: 2.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, var(--accent-dim) 0%, transparent 50%);
    animation: ctaGlow 4s ease-in-out infinite;
    pointer-events: none;
}

.cta-box h3 {
    font-size: 1.5rem;
    color: var(--text-bright);
    margin-bottom: .8rem;
    position: relative;
}

.cta-box p {
    font-size: 1rem;
    color: var(--text);
    max-width: 600px;
    margin: 0 auto 1.5rem;
    position: relative;
    line-height: 1.8;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .75rem 1.8rem;
    border-radius: 100px;
    font-size: .92rem;
    font-weight: 600;
    transition: transform .3s, box-shadow .3s;
}

.cta-btn:hover { transform: translateY(-2px); text-shadow: none; }

.cta-btn.primary {
    background: var(--accent);
    color: #0a0e17;
    box-shadow: 0 4px 20px rgba(132,204,22,.3);
}

.cta-btn.primary:hover { box-shadow: 0 6px 30px rgba(132,204,22,.5); }

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

.cta-btn.secondary:hover { background: var(--accent-dim); }

/* Cross-Links Panel */
.cross-links {
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--bg-glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.cross-links h4 {
    font-size: .95rem;
    color: var(--accent-sec);
    margin-bottom: .8rem;
}

.cross-links-grid {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
}

.cross-link-tag {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .4rem .9rem;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 100px;
    font-size: .82rem;
    color: var(--text);
    transition: border-color .3s, color .3s;
}

.cross-link-tag:hover {
    border-color: var(--accent);
    color: var(--accent-sec);
    text-shadow: none;
}

/* ============================================================
   KEYFRAME ANIMATIONS (25+)
   ============================================================ */

/* 1. Fade + Slide Up */
@keyframes fadeSlideUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

/* 2. Scan Beam Down */
@keyframes scanBeamDown {
    0% { top: 0; opacity: 0; }
    5% { opacity: 1; }
    95% { opacity: 1; }
    100% { top: 100%; opacity: 0; }
}

/* 3. Grid Pulse */
@keyframes gridPulse {
    0%, 100% { opacity: .6; }
    50% { opacity: 1; }
}

/* 4. Logo Pulse */
@keyframes logoPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(132,204,22,.4); }
    50% { box-shadow: 0 0 0 8px rgba(132,204,22,0); }
}

/* 5. Nav Tab Glow */
@keyframes navTabGlow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(132,204,22,.3); }
    50% { box-shadow: 0 0 8px 2px rgba(132,204,22,.2); }
}

/* 6. Page Block Reveal */
@keyframes pageBlockReveal {
    from { opacity: 0; transform: translateX(-15px); }
    to { opacity: 1; transform: translateX(0); }
}

/* 7. Line Grow */
@keyframes lineGrow {
    from { width: 0; opacity: 0; }
    to { opacity: 1; }
}

/* 8. Tag Pop */
@keyframes tagPop {
    0% { opacity: 0; transform: scale(.7) translateX(10px); }
    60% { transform: scale(1.1) translateX(-2px); }
    100% { opacity: 1; transform: scale(1) translateX(0); }
}

/* 9. Terminal Line Appear */
@keyframes termLineAppear {
    from { opacity: 0; transform: translateY(5px); }
    to { opacity: 1; transform: translateY(0); }
}

/* 10. Discovery Item Slide */
@keyframes discItemSlide {
    from { opacity: 0; transform: translateX(-10px); }
    to { opacity: 1; transform: translateX(0); }
}

/* 11. Dot Blink */
@keyframes dotBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: .3; }
}

/* 12. Stat Count Up (visual pulse) */
@keyframes statCountUp {
    0% { opacity: 0; transform: scale(.8); }
    50% { transform: scale(1.08); }
    100% { opacity: 1; transform: scale(1); }
}

/* 13. Scan Line Horizontal */
@keyframes scanLineH {
    0% { top: 0; }
    100% { top: 100%; }
}

/* 14. Scan Line Vertical */
@keyframes scanLineV {
    0% { left: 0; }
    100% { left: 100%; }
}

/* 15. Particle Float */
@keyframes particleFloat {
    0% { opacity: 0; bottom: 20%; }
    20% { opacity: .8; }
    80% { opacity: .6; }
    100% { opacity: 0; bottom: 85%; }
}

/* 16. Avatar Breath */
@keyframes avatarBreath {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* 17. Timeline Pulse */
@keyframes timelinePulse {
    0%, 100% { opacity: 1; }
    50% { opacity: .75; }
}

/* 18. CTA Glow */
@keyframes ctaGlow {
    0%, 100% { transform: scale(1); opacity: .5; }
    50% { transform: scale(1.1); opacity: .8; }
}

/* 19. Stat Pulse */
@keyframes statPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.04); }
}

/* 20. Analogy Glow */
@keyframes analogyGlow {
    0%, 100% { opacity: .4; transform: scale(1); }
    50% { opacity: .7; transform: scale(1.15); }
}

/* 21. Float Y */
@keyframes floatY {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* 22. Rotate 360 */
@keyframes rotate360 {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* 23. Ping Ring */
@keyframes pingRing {
    0% { transform: scale(.8); opacity: .6; }
    100% { transform: scale(2.2); opacity: 0; }
}

/* 24. Shimmer */
@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* 25. Border Glow */
@keyframes borderGlow {
    0%, 100% { border-color: rgba(132,204,22,.2); }
    50% { border-color: rgba(132,204,22,.6); }
}

/* 26. Typing Cursor Blink */
@keyframes typeCursorBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/* 27. Gradient Shift */
@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* 28. Extract Pulse */
@keyframes extractPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(132,204,22,.3); }
    50% { box-shadow: 0 0 10px 3px rgba(132,204,22,.15); }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 968px) {
    .website-mockup { grid-template-columns: 1fr; }
    .data-dashboard { right: 0; }
    .attacker-panel { border-top: 1px solid rgba(255,255,255,.05); }
}

@media (max-width: 768px) {
    header { padding: 2.5rem 1rem 1.5rem; }
    .section { padding: 0 1rem; }
    .glass { padding: 1.2rem; }
    .compare-grid,
    .vs-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .sim-container { min-height: 360px; }
    .scenario-timeline { flex-direction: column; }
    .cta-box { padding: 1.5rem; }
    .terms-table { font-size: .82rem; }
    .terms-table thead th,
    .terms-table tbody td { padding: .5rem .6rem; }
    .resource-links { grid-template-columns: 1fr; }
    .data-dashboard { display: none; }
    .extract-tag { display: none; }
}

@media (max-width: 480px) {
    header h1 { font-size: 1.5rem; }
    .stats-grid { grid-template-columns: 1fr; }
    .step-item { padding-left: 3.5rem; }
    .step-item::before { width: 26px; height: 26px; font-size: .75rem; left: .6rem; }
    .section-tit { font-size: 1.25rem; }
    .cta-actions { flex-direction: column; align-items: center; }
    .cross-links-grid { flex-direction: column; }
    .sim-container { min-height: 300px; }
    .site-nav-links { display: none; }
}

/* --- Accessibility --- */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* --- Utility --- */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    border: 0;
}

.text-accent { color: var(--accent); }
.text-accent-sec { color: var(--accent-sec); }
.mb-1 { margin-bottom: .5rem; }
.mb-2 { margin-bottom: 1rem; }
.mt-2 { margin-top: 1rem; }/* End custom CSS */