.elementor-14889 .elementor-element.elementor-element-1ccc16f{--display:flex;}/* Start custom CSS for html, class: .elementor-element-f00f3b9 *//* ============================================
           CSS CUSTOM PROPERTIES &amp; RESET
           ============================================ */
        :root {
            --bg-primary: #0a0a0f;
            --bg-secondary: #12121a;
            --bg-card: rgba(230, 57, 70, 0.04);
            --bg-card-hover: rgba(230, 57, 70, 0.08);
            --accent: #e63946;
            --accent-light: #ff6b6b;
            --accent-dim: rgba(230, 57, 70, 0.3);
            --accent-glow: rgba(230, 57, 70, 0.15);
            --text-primary: #f0f0f5;
            --text-secondary: #a0a0b8;
            --text-muted: #6a6a80;
            --border: rgba(230, 57, 70, 0.15);
            --border-light: rgba(255, 255, 255, 0.06);
            --glass-bg: rgba(18, 18, 26, 0.7);
            --glass-border: rgba(230, 57, 70, 0.12);
            --success: #10b981;
            --warning: #f59e0b;
            --danger: #ef4444;
            --info: #3b82f6;
            --radius: 16px;
            --radius-sm: 10px;
            --shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
            --shadow-accent: 0 0 40px rgba(230, 57, 70, 0.15);
        }

        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }

        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: var(--text-primary);
            line-height: 1.7;
            overflow-x: hidden;
        }

        a {
            color: var(--accent-light);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        a:hover {
            color: var(--accent);
            text-decoration: underline;
        }

        /* ============================================
           ANIMATED BACKGROUND
           ============================================ */
        .bg-grid {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image:
                linear-gradient(rgba(230, 57, 70, 0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(230, 57, 70, 0.03) 1px, transparent 1px);
            background-size: 60px 60px;
            z-index: 0;
            animation: gridShift 20s linear infinite;
        }

        @keyframes gridShift {
            0% { transform: translate(0, 0); }
            100% { transform: translate(60px, 60px); }
        }

        .bg-glow {
            position: fixed;
            width: 600px;
            height: 600px;
            border-radius: 50%;
            filter: blur(150px);
            opacity: 0.08;
            z-index: 0;
            pointer-events: none;
        }

        .bg-glow-1 {
            top: -200px;
            right: -200px;
            background: var(--accent);
            animation: glowPulse1 8s ease-in-out infinite;
        }

        .bg-glow-2 {
            bottom: -300px;
            left: -200px;
            background: var(--accent-light);
            animation: glowPulse2 10s ease-in-out infinite;
        }

        @keyframes glowPulse1 {
            0%, 100% { opacity: 0.06; transform: scale(1); }
            50% { opacity: 0.12; transform: scale(1.2); }
        }

        @keyframes glowPulse2 {
            0%, 100% { opacity: 0.05; transform: scale(1); }
            50% { opacity: 0.1; transform: scale(1.15); }
        }

        /* ============================================
           LAYOUT CONTAINER
           ============================================ */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
            position: relative;
            z-index: 1;
        }

        /* ============================================
           HERO SECTION
           ============================================ */
        .hero {
            padding: 80px 0 60px;
            text-align: center;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 50px;
            padding: 8px 20px;
            font-size: 0.85rem;
            color: var(--accent-light);
            margin-bottom: 28px;
            animation: badgeFadeIn 1s ease-out;
        }

        @keyframes badgeFadeIn {
            0% { opacity: 0; transform: translateY(-20px); }
            100% { opacity: 1; transform: translateY(0); }
        }

        .hero h1 {
            font-size: clamp(2rem, 5vw, 3.5rem);
            font-weight: 800;
            line-height: 1.15;
            margin-bottom: 20px;
            animation: heroTitle 1.2s ease-out;
        }

        .hero h1 .highlight {
            background: linear-gradient(135deg, var(--accent), var(--accent-light));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        @keyframes heroTitle {
            0% { opacity: 0; transform: translateY(30px); }
            100% { opacity: 1; transform: translateY(0); }
        }

        .hero-subtitle {
            font-size: 1.15rem;
            color: var(--text-secondary);
            max-width: 700px;
            margin: 0 auto 36px;
            animation: heroSub 1.4s ease-out;
        }

        @keyframes heroSub {
            0% { opacity: 0; transform: translateY(20px); }
            100% { opacity: 1; transform: translateY(0); }
        }

        .hero-meta {
            display: flex;
            justify-content: center;
            gap: 32px;
            flex-wrap: wrap;
            animation: heroMeta 1.6s ease-out;
        }

        @keyframes heroMeta {
            0% { opacity: 0; }
            100% { opacity: 1; }
        }

        .meta-item {
            display: flex;
            align-items: center;
            gap: 8px;
            color: var(--text-muted);
            font-size: 0.9rem;
        }

        .meta-item .dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--accent);
            animation: dotBlink 2s ease-in-out infinite;
        }

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

        /* ============================================
           GLASS CARD
           ============================================ */
        .glass-card {
            background: var(--glass-bg);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border: 1px solid var(--glass-border);
            border-radius: var(--radius);
            padding: 36px;
            margin-bottom: 40px;
            transition: all 0.4s ease;
        }

        .glass-card:hover {
            border-color: rgba(230, 57, 70, 0.25);
            box-shadow: var(--shadow-accent);
        }

        .section-label {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--accent);
            margin-bottom: 16px;
        }

        .section-label::before {
            content: '';
            display: inline-block;
            width: 20px;
            height: 2px;
            background: var(--accent);
        }

        .section-title1 {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 20px;
            line-height: 1.3;
        }

        .section-title1 .icon {
            margin-right: 10px;
        }

        /* ============================================
           SECTION 1: SIMULATION
           ============================================ */
        .simulation-container {
            background: var(--bg-secondary);
            border-radius: var(--radius);
            border: 1px solid var(--border);
            padding: 32px;
            margin: 24px 0;
            overflow: hidden;
            position: relative;
        }

        /* Email inbox mockup */
        .email-inbox {
            background: rgba(10, 10, 15, 0.9);
            border-radius: 12px;
            border: 1px solid var(--border-light);
            max-width: 520px;
            margin: 0 auto;
            overflow: hidden;
            animation: inboxAppear 1s ease-out 0.5s both;
        }

        @keyframes inboxAppear {
            0% { opacity: 0; transform: scale(0.9); }
            100% { opacity: 1; transform: scale(1); }
        }

        .inbox-header {
            background: rgba(230, 57, 70, 0.08);
            border-bottom: 1px solid var(--border);
            padding: 14px 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

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

        .inbox-badge {
            background: var(--accent);
            color: white;
            font-size: 0.7rem;
            font-weight: 700;
            padding: 3px 10px;
            border-radius: 20px;
            animation: badgePulse 1.5s ease-in-out infinite;
        }

        @keyframes badgePulse {
            0%, 100% { transform: scale(1); box-shadow: 0 0 6px rgba(230, 57, 70, 0.4); }
            50% { transform: scale(1.1); box-shadow: 0 0 16px rgba(230, 57, 70, 0.7); }
        }

        .email-list {
            padding: 8px;
        }

        /* Incoming email notification */
        .email-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 14px 16px;
            border-radius: 8px;
            transition: all 0.3s ease;
            position: relative;
        }

        .email-item.incoming {
            animation: emailSlideIn 1s ease-out 2s both;
            background: rgba(230, 57, 70, 0.06);
            border: 1px solid rgba(230, 57, 70, 0.15);
        }

        @keyframes emailSlideIn {
            0% { opacity: 0; transform: translateX(-40px); max-height: 0; padding: 0; }
            60% { max-height: 100px; }
            100% { opacity: 1; transform: translateX(0); max-height: 100px; padding: 14px 16px; }
        }

        .email-item.safe {
            opacity: 0.4;
        }

        .email-avatar {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.8rem;
            font-weight: 700;
            flex-shrink: 0;
        }

        .email-avatar.danger {
            background: rgba(230, 57, 70, 0.15);
            color: var(--accent);
            animation: avatarWarn 2s ease-in-out infinite;
        }

        @keyframes avatarWarn {
            0%, 100% { box-shadow: 0 0 0 rgba(230, 57, 70, 0); }
            50% { box-shadow: 0 0 12px rgba(230, 57, 70, 0.5); }
        }

        .email-avatar.neutral {
            background: rgba(255, 255, 255, 0.05);
            color: var(--text-muted);
        }

        .email-content {
            flex: 1;
            min-width: 0;
        }

        .email-sender {
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--text-primary);
        }

        .email-subject {
            font-size: 0.78rem;
            color: var(--text-secondary);
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .email-attachment-icon {
            width: 32px;
            height: 32px;
            border-radius: 6px;
            background: rgba(230, 57, 70, 0.1);
            border: 1px solid rgba(230, 57, 70, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.7rem;
            font-weight: 700;
            color: var(--accent);
            animation: attachmentBounce 2s ease-in-out infinite;
            flex-shrink: 0;
        }

        @keyframes attachmentBounce {
            0%, 100% { transform: translateY(0); }
            25% { transform: translateY(-3px); }
            75% { transform: translateY(1px); }
        }

        .email-time {
            font-size: 0.7rem;
            color: var(--text-muted);
            flex-shrink: 0;
        }

        /* Attack flow diagram */
        .attack-flow {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0;
            margin: 32px auto 0;
            max-width: 700px;
            flex-wrap: wrap;
        }

        .flow-node {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            padding: 16px;
            text-align: center;
            animation: nodeReveal 0.6s ease-out both;
        }

        .flow-node:nth-child(1) { animation-delay: 4s; }
        .flow-node:nth-child(3) { animation-delay: 5s; }
        .flow-node:nth-child(5) { animation-delay: 6s; }
        .flow-node:nth-child(7) { animation-delay: 7s; }
        .flow-node:nth-child(9) { animation-delay: 8s; }

        @keyframes nodeReveal {
            0% { opacity: 0; transform: scale(0.5); }
            100% { opacity: 1; transform: scale(1); }
        }

        .flow-icon {
            width: 56px;
            height: 56px;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
        }

        .flow-icon.email-icon { background: rgba(230, 57, 70, 0.1); border: 1px solid rgba(230, 57, 70, 0.25); }
        .flow-icon.open-icon { background: rgba(245, 158, 11, 0.1); border: 1px solid rgba(245, 158, 11, 0.25); }
        .flow-icon.form-icon { background: rgba(239, 68, 68, 0.1); border: 1px solid rgba(239, 68, 68, 0.25); }
        .flow-icon.type-icon { background: rgba(168, 85, 247, 0.1); border: 1px solid rgba(168, 85, 247, 0.25); }
        .flow-icon.stolen-icon { background: rgba(230, 57, 70, 0.15); border: 1px solid rgba(230, 57, 70, 0.4); animation: stolenPulse 1.5s ease-in-out infinite; }

        @keyframes stolenPulse {
            0%, 100% { box-shadow: 0 0 10px rgba(230, 57, 70, 0.2); }
            50% { box-shadow: 0 0 25px rgba(230, 57, 70, 0.5); }
        }

        .flow-label {
            font-size: 0.72rem;
            color: var(--text-secondary);
            max-width: 80px;
        }

        .flow-arrow {
            color: var(--accent-dim);
            font-size: 1.2rem;
            padding: 0 4px;
            animation: arrowPulse 1.5s ease-in-out infinite;
        }

        .flow-arrow:nth-child(2) { animation-delay: 4.5s; }
        .flow-arrow:nth-child(4) { animation-delay: 5.5s; }
        .flow-arrow:nth-child(6) { animation-delay: 6.5s; }
        .flow-arrow:nth-child(8) { animation-delay: 7.5s; }

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

        /* Document unfold animation */
        .document-unfold {
            max-width: 400px;
            margin: 28px auto 0;
            position: relative;
        }

        .fake-document {
            background: rgba(20, 20, 30, 0.95);
            border: 1px solid var(--border);
            border-radius: 10px;
            padding: 24px;
            animation: docUnfold 1.5s ease-out 5s both;
            transform-origin: top center;
            position: relative;
            overflow: hidden;
        }

        @keyframes docUnfold {
            0% { opacity: 0; transform: scaleY(0) rotateX(40deg); max-height: 0; }
            40% { opacity: 0.5; transform: scaleY(0.6) rotateX(15deg); max-height: 200px; }
            100% { opacity: 1; transform: scaleY(1) rotateX(0deg); max-height: 400px; }
        }

        .doc-header-fake {
            font-size: 0.85rem;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 16px;
            padding-bottom: 12px;
            border-bottom: 1px solid var(--border-light);
            animation: docContentFade 1s ease-out 6s both;
        }

        @keyframes docContentFade {
            0% { opacity: 0; transform: translateY(10px); }
            100% { opacity: 1; transform: translateY(0); }
        }

        .doc-line {
            height: 8px;
            background: rgba(255, 255, 255, 0.04);
            border-radius: 4px;
            margin-bottom: 10px;
            animation: lineExpand 0.8s ease-out both;
        }

        .doc-line:nth-child(2) { width: 90%; animation-delay: 6.2s; }
        .doc-line:nth-child(3) { width: 75%; animation-delay: 6.4s; }
        .doc-line:nth-child(4) { width: 85%; animation-delay: 6.6s; }
        .doc-line:nth-child(5) { width: 60%; animation-delay: 6.8s; }

        @keyframes lineExpand {
            0% { width: 0; opacity: 0; }
            100% { opacity: 1; }
        }

        /* Fake login form overlay */
        .fake-form-overlay {
            position: absolute;
            bottom: 12px;
            left: 12px;
            right: 12px;
            background: rgba(10, 10, 15, 0.97);
            border: 1px solid var(--accent);
            border-radius: 8px;
            padding: 18px;
            animation: formAppear 0.8s ease-out 7s both;
            box-shadow: 0 0 20px rgba(230, 57, 70, 0.3);
        }

        @keyframes formAppear {
            0% { opacity: 0; transform: translateY(20px) scale(0.9); }
            100% { opacity: 1; transform: translateY(0) scale(1); }
        }

        .form-title {
            font-size: 0.78rem;
            font-weight: 600;
            color: var(--accent-light);
            margin-bottom: 12px;
            text-align: center;
        }

        .form-field-fake {
            height: 28px;
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid var(--border);
            border-radius: 5px;
            margin-bottom: 8px;
            position: relative;
            overflow: hidden;
        }

        .typing-cursor {
            display: inline-block;
            width: 2px;
            height: 14px;
            background: var(--accent);
            animation: cursorBlink 0.6s step-end infinite;
            position: absolute;
            top: 7px;
        }

        .form-field-fake .typing-cursor:nth-child(1) {
            left: 20px;
            animation: cursorType1 3s ease-out 7.5s both;
        }

        .form-field-fake .typing-cursor:nth-child(2) {
            left: 15px;
            animation: cursorType2 3s ease-out 8.5s both;
        }

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

        @keyframes cursorType1 {
            0% { left: 0; opacity: 0; }
            10% { opacity: 1; }
            80% { left: 80%; opacity: 1; }
            100% { left: 85%; opacity: 0; }
        }

        @keyframes cursorType2 {
            0% { left: 0; opacity: 0; }
            10% { opacity: 1; }
            80% { left: 75%; opacity: 1; }
            100% { left: 80%; opacity: 0; }
        }

        .form-btn-fake {
            height: 30px;
            background: var(--accent);
            border-radius: 5px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.72rem;
            font-weight: 600;
            color: white;
            animation: btnAppear 0.5s ease-out 9s both;
        }

        @keyframes btnAppear {
            0% { opacity: 0; transform: scale(0.8); }
            100% { opacity: 1; transform: scale(1); }
        }

        /* Data extraction flow */
        .data-extraction {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 16px;
            margin-top: 24px;
            animation: extractionReveal 1s ease-out 9.5s both;
        }

        @keyframes extractionReveal {
            0% { opacity: 0; transform: translateY(20px); }
            100% { opacity: 1; transform: translateY(0); }
        }

        .data-packet {
            display: flex;
            align-items: center;
            gap: 6px;
            padding: 8px 14px;
            background: rgba(230, 57, 70, 0.08);
            border: 1px solid rgba(230, 57, 70, 0.2);
            border-radius: 8px;
            font-size: 0.7rem;
            color: var(--accent-light);
            font-family: 'Courier New', monospace;
        }

        .data-packet:nth-child(1) { animation: packetMove1 2s ease-in-out infinite; }
        .data-packet:nth-child(3) { animation: packetMove2 2s ease-in-out infinite 0.3s; }

        @keyframes packetMove1 {
            0%, 100% { transform: translateX(0); opacity: 0.5; }
            50% { transform: translateX(8px); opacity: 1; }
        }

        @keyframes packetMove2 {
            0%, 100% { transform: translateX(0); opacity: 0.5; }
            50% { transform: translateX(8px); opacity: 1; }
        }

        .attacker-icon {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: rgba(230, 57, 70, 0.12);
            border: 2px solid var(--accent);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            animation: attackerGlow 1.5s ease-in-out infinite;
        }

        @keyframes attackerGlow {
            0%, 100% { box-shadow: 0 0 10px rgba(230, 57, 70, 0.2); }
            50% { box-shadow: 0 0 30px rgba(230, 57, 70, 0.6); }
        }

        /* Shield crack animation */
        .shield-crack {
            display: flex;
            align-items: center;
            justify-content: center;
            margin-top: 20px;
            animation: shieldAppear 0.8s ease-out 10s both;
        }

        @keyframes shieldAppear {
            0% { opacity: 0; transform: scale(0.5); }
            100% { opacity: 1; transform: scale(1); }
        }

        .shield {
            width: 60px;
            height: 70px;
            position: relative;
            animation: shieldCrack 2s ease-in-out 10.5s both;
        }

        .shield-body {
            width: 100%;
            height: 100%;
            background: rgba(230, 57, 70, 0.1);
            border: 2px solid var(--accent);
            clip-path: polygon(50% 0%, 100% 25%, 100% 65%, 50% 100%, 0% 65%, 0% 25%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
            position: relative;
            overflow: hidden;
        }

        .shield-crack-line {
            position: absolute;
            width: 2px;
            background: var(--accent);
            animation: crackLine 1s ease-out 11s both;
        }

        .shield-crack-line:nth-child(1) {
            height: 30px;
            top: 20%;
            left: 48%;
            transform: rotate(-15deg);
        }

        .shield-crack-line:nth-child(2) {
            height: 20px;
            top: 30%;
            left: 52%;
            transform: rotate(20deg);
        }

        .shield-crack-line:nth-child(3) {
            height: 25px;
            top: 40%;
            left: 45%;
            transform: rotate(-30deg);
        }

        @keyframes shieldCrack {
            0%, 40% { filter: brightness(1); }
            100% { filter: brightness(1.5) drop-shadow(0 0 10px rgba(230, 57, 70, 0.6)); }
        }

        @keyframes crackLine {
            0% { height: 0; opacity: 0; }
            100% { opacity: 1; }
        }

        .warning-text {
            color: var(--accent);
            font-weight: 700;
            font-size: 0.9rem;
            margin-left: 16px;
            animation: warningFlash 1s ease-in-out infinite;
        }

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

        /* Lock breaking */
        .lock-break {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            margin-top: 12px;
            animation: lockAppear 0.8s ease-out 10.5s both;
        }

        @keyframes lockAppear {
            0% { opacity: 0; }
            100% { opacity: 1; }
        }

        .lock-icon-broken {
            font-size: 1.5rem;
            animation: lockShatter 1.5s ease-in-out infinite;
        }

        @keyframes lockShatter {
            0%, 100% { transform: rotate(0deg); filter: hue-rotate(0deg); }
            25% { transform: rotate(-8deg); }
            75% { transform: rotate(8deg); }
        }

        .lock-status {
            font-size: 0.78rem;
            color: var(--accent-light);
            font-family: 'Courier New', monospace;
        }

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

        .stat-card {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: var(--radius-sm);
            padding: 24px;
            text-align: center;
            transition: all 0.3s ease;
            animation: statFadeIn 0.6s ease-out both;
        }

        .stat-card:nth-child(1) { animation-delay: 0.1s; }
        .stat-card:nth-child(2) { animation-delay: 0.2s; }
        .stat-card:nth-child(3) { animation-delay: 0.3s; }
        .stat-card:nth-child(4) { animation-delay: 0.4s; }

        @keyframes statFadeIn {
            0% { opacity: 0; transform: translateY(20px); }
            100% { opacity: 1; transform: translateY(0); }
        }

        .stat-card:hover {
            background: var(--bg-card-hover);
            border-color: var(--accent-dim);
            transform: translateY(-4px);
        }

        .stat-number {
            font-size: 2.2rem;
            font-weight: 800;
            color: var(--accent);
            line-height: 1.2;
        }

        .stat-label {
            font-size: 0.85rem;
            color: var(--text-secondary);
            margin-top: 8px;
        }

        .why-text {
            font-size: 1rem;
            color: var(--text-secondary);
            line-height: 1.8;
            margin: 16px 0;
        }

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

        .external-links {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-top: 20px;
        }

        .ext-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 10px 18px;
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: var(--radius-sm);
            color: var(--accent-light);
            font-size: 0.85rem;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .ext-link:hover {
            background: var(--bg-card-hover);
            border-color: var(--accent-dim);
            text-decoration: none;
            transform: translateY(-2px);
            box-shadow: 0 4px 16px rgba(230, 57, 70, 0.15);
        }

        .ext-link .arrow {
            transition: transform 0.3s ease;
        }

        .ext-link:hover .arrow {
            transform: translateX(4px);
        }

        /* ============================================
           SECTION 3: KEY TERMS
           ============================================ */
        .terms-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            margin: 24px 0;
        }

        .term-card {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: var(--radius-sm);
            padding: 24px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .term-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background: linear-gradient(180deg, var(--accent), var(--accent-light));
            opacity: 0;
            transition: opacity 0.3s ease;
        }

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

        .term-card:hover {
            border-color: var(--accent-dim);
            background: var(--bg-card-hover);
        }

        .term-name {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 10px;
        }

        .term-definition {
            font-size: 0.9rem;
            color: var(--text-secondary);
            margin-bottom: 12px;
            line-height: 1.7;
        }

        .term-analogy {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            padding: 12px;
            background: rgba(230, 57, 70, 0.05);
            border-radius: 8px;
            font-size: 0.82rem;
            color: var(--text-muted);
            font-style: italic;
        }

        .term-analogy .analogy-icon {
            font-size: 1rem;
            flex-shrink: 0;
        }

        /* ============================================
           SECTION 4: REAL-WORLD SCENARIO
           ============================================ */
        .scenario-wrapper {
            position: relative;
        }

        .scenario-timeline {
            position: relative;
            padding-left: 32px;
        }

        .scenario-timeline::before {
            content: '';
            position: absolute;
            left: 12px;
            top: 0;
            bottom: 0;
            width: 2px;
            background: linear-gradient(180deg, var(--accent), var(--accent-dim), transparent);
        }

        .timeline-item {
            position: relative;
            margin-bottom: 28px;
            animation: timelineFadeIn 0.6s ease-out both;
        }

        .timeline-item:nth-child(1) { animation-delay: 0.1s; }
        .timeline-item:nth-child(2) { animation-delay: 0.2s; }
        .timeline-item:nth-child(3) { animation-delay: 0.3s; }
        .timeline-item:nth-child(4) { animation-delay: 0.4s; }
        .timeline-item:nth-child(5) { animation-delay: 0.5s; }
        .timeline-item:nth-child(6) { animation-delay: 0.6s; }

        @keyframes timelineFadeIn {
            0% { opacity: 0; transform: translateX(-20px); }
            100% { opacity: 1; transform: translateX(0); }
        }

        .timeline-dot {
            position: absolute;
            left: -28px;
            top: 4px;
            width: 16px;
            height: 16px;
            border-radius: 50%;
            background: var(--bg-primary);
            border: 3px solid var(--accent);
        }

        .timeline-dot.safe {
            border-color: var(--success);
        }

        .timeline-dot.danger {
            border-color: var(--danger);
            animation: dotDanger 1.5s ease-in-out infinite;
        }

        @keyframes dotDanger {
            0%, 100% { box-shadow: 0 0 0 rgba(239, 68, 68, 0); }
            50% { box-shadow: 0 0 10px rgba(239, 68, 68, 0.5); }
        }

        .timeline-label {
            font-size: 0.72rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--accent);
            margin-bottom: 4px;
        }

        .timeline-content {
            font-size: 0.95rem;
            color: var(--text-secondary);
            line-height: 1.8;
        }

        .before-after {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-top: 28px;
        }

        .ba-card {
            padding: 24px;
            border-radius: var(--radius-sm);
            border: 1px solid;
        }

        .ba-card.before {
            background: rgba(245, 158, 11, 0.04);
            border-color: rgba(245, 158, 11, 0.2);
        }

        .ba-card.after {
            background: rgba(16, 185, 129, 0.04);
            border-color: rgba(16, 185, 129, 0.2);
        }

        .ba-title {
            font-size: 0.8rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 12px;
        }

        .ba-card.before .ba-title { color: var(--warning); }
        .ba-card.after .ba-title { color: var(--success); }

        .ba-list {
            list-style: none;
        }

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

        .ba-list li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 13px;
            width: 8px;
            height: 8px;
            border-radius: 2px;
        }

        .ba-card.before .ba-list li::before { background: var(--warning); }
        .ba-card.after .ba-list li::before { background: var(--success); }

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

        .step-item {
            counter-increment: step;
            display: flex;
            gap: 20px;
            margin-bottom: 32px;
            padding: 24px;
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: var(--radius-sm);
            transition: all 0.3s ease;
        }

        .step-item:hover {
            border-color: var(--accent-dim);
            background: var(--bg-card-hover);
        }

        .step-number {
            width: 48px;
            height: 48px;
            border-radius: 12px;
            background: linear-gradient(135deg, var(--accent), var(--accent-light));
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            font-weight: 800;
            flex-shrink: 0;
        }

        .step-content {
            flex: 1;
        }

        .step-title {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 8px;
        }

        .step-description {
            font-size: 0.9rem;
            color: var(--text-secondary);
            margin-bottom: 12px;
            line-height: 1.7;
        }

        .step-bullets {
            list-style: none;
            margin-bottom: 12px;
        }

        .step-bullets li {
            font-size: 0.85rem;
            color: var(--text-muted);
            padding: 4px 0;
            padding-left: 18px;
            position: relative;
        }

        .step-bullets li::before {
            content: '▸';
            position: absolute;
            left: 0;
            color: var(--accent);
        }

        .step-protection {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 6px 14px;
            background: rgba(16, 185, 129, 0.08);
            border: 1px solid rgba(16, 185, 129, 0.2);
            border-radius: 20px;
            font-size: 0.78rem;
            color: var(--success);
            font-weight: 600;
        }

        .step-links {
            margin-top: 10px;
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
        }

        .step-link {
            font-size: 0.78rem;
            padding: 4px 10px;
            background: rgba(230, 57, 70, 0.06);
            border: 1px solid var(--border);
            border-radius: 4px;
            color: var(--accent-light);
        }

        /* ============================================
           SECTION 6: MISTAKES &amp; BEST PRACTICES
           ============================================ */
        .mistakes-practices {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
        }

        .mistakes-col, .practices-col {
            padding: 24px;
            border-radius: var(--radius-sm);
            border: 1px solid;
        }

        .mistakes-col {
            background: rgba(239, 68, 68, 0.03);
            border-color: rgba(239, 68, 68, 0.15);
        }

        .practices-col {
            background: rgba(16, 185, 129, 0.03);
            border-color: rgba(16, 185, 129, 0.15);
        }

        .col-title {
            font-size: 1rem;
            font-weight: 700;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .mistakes-col .col-title { color: var(--danger); }
        .practices-col .col-title { color: var(--success); }

        .item-list {
            list-style: none;
        }

        .item-list li {
            padding: 12px 0;
            border-bottom: 1px solid var(--border-light);
            font-size: 0.9rem;
            color: var(--text-secondary);
            line-height: 1.6;
        }

        .item-list li:last-child {
            border-bottom: none;
        }

        .item-list li strong {
            display: block;
            margin-bottom: 4px;
        }

        .mistakes-col .item-list li strong { color: var(--danger); }
        .practices-col .item-list li strong { color: var(--success); }

        /* ============================================
           SECTION 7: RED TEAM vs BLUE TEAM
           ============================================ */
        .team-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
        }

        .team-card {
            padding: 28px;
            border-radius: var(--radius-sm);
            border: 1px solid;
            position: relative;
            overflow: hidden;
        }

        .team-card.red {
            background: linear-gradient(135deg, rgba(230, 57, 70, 0.06), rgba(230, 57, 70, 0.02));
            border-color: rgba(230, 57, 70, 0.2);
        }

        .team-card.blue {
            background: linear-gradient(135deg, rgba(59, 130, 246, 0.06), rgba(59, 130, 246, 0.02));
            border-color: rgba(59, 130, 246, 0.2);
        }

        .team-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 16px;
        }

        .team-card.red .team-badge {
            background: rgba(230, 57, 70, 0.12);
            color: var(--accent);
        }

        .team-card.blue .team-badge {
            background: rgba(59, 130, 246, 0.12);
            color: var(--info);
        }

        .team-title {
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 16px;
        }

        .team-card.red .team-title { color: var(--accent-light); }
        .team-card.blue .team-title { color: #93c5fd; }

        .team-strategies {
            list-style: none;
        }

        .team-strategies li {
            padding: 10px 0;
            padding-left: 24px;
            position: relative;
            font-size: 0.88rem;
            color: var(--text-secondary);
            line-height: 1.6;
            border-bottom: 1px solid var(--border-light);
        }

        .team-strategies li:last-child { border-bottom: none; }

        .team-card.red .team-strategies li::before {
            content: '⚔';
            position: absolute;
            left: 0;
        }

        .team-card.blue .team-strategies li::before {
            content: '🛡';
            position: absolute;
            left: 0;
        }

        /* ============================================
           SECTION 8: THREAT HUNTER'S EYE
           ============================================ */
        .hunter-section {
            position: relative;
        }

        .hunter-intro {
            font-size: 1rem;
            color: var(--text-secondary);
            line-height: 1.8;
            margin-bottom: 24px;
        }

        .indicators-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 16px;
            margin-bottom: 24px;
        }

        .indicator-card {
            padding: 20px;
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: var(--radius-sm);
            transition: all 0.3s ease;
        }

        .indicator-card:hover {
            border-color: var(--accent-dim);
            background: var(--bg-card-hover);
        }

        .indicator-title {
            font-size: 0.95rem;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .indicator-desc {
            font-size: 0.85rem;
            color: var(--text-secondary);
            line-height: 1.6;
        }

        .severity-tag {
            display: inline-block;
            padding: 2px 8px;
            border-radius: 4px;
            font-size: 0.68rem;
            font-weight: 700;
            text-transform: uppercase;
        }

        .severity-high { background: rgba(239, 68, 68, 0.15); color: var(--danger); }
        .severity-medium { background: rgba(245, 158, 11, 0.15); color: var(--warning); }
        .severity-low { background: rgba(59, 130, 246, 0.15); color: var(--info); }

        .hunter-note {
            padding: 20px;
            background: rgba(230, 57, 70, 0.04);
            border-left: 4px solid var(--accent);
            border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
            font-size: 0.88rem;
            color: var(--text-secondary);
            line-height: 1.7;
        }

        .hunter-note strong {
            color: var(--accent-light);
        }

        /* ============================================
           SECTION 9: CALL TO ACTION
           ============================================ */
        .cta-section {
            text-align: center;
            padding: 48px 24px;
            background: linear-gradient(135deg, rgba(230, 57, 70, 0.06), rgba(255, 107, 107, 0.03));
            border: 1px solid var(--border);
            border-radius: var(--radius);
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(230, 57, 70, 0.05) 0%, transparent 60%);
            animation: ctaGlow 6s ease-in-out infinite;
        }

        @keyframes ctaGlow {
            0%, 100% { transform: scale(1); opacity: 0.5; }
            50% { transform: scale(1.1); opacity: 1; }
        }

        .cta-title {
            font-size: 1.6rem;
            font-weight: 700;
            margin-bottom: 16px;
            position: relative;
        }

        .cta-text {
            font-size: 1rem;
            color: var(--text-secondary);
            max-width: 600px;
            margin: 0 auto 28px;
            line-height: 1.7;
            position: relative;
        }

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

        .cta-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 14px 28px;
            border-radius: var(--radius-sm);
            font-size: 0.9rem;
            font-weight: 600;
            transition: all 0.3s ease;
            border: 1px solid;
        }

        .cta-btn.primary {
            background: var(--accent);
            border-color: var(--accent);
            color: white;
        }

        .cta-btn.primary:hover {
            background: var(--accent-light);
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(230, 57, 70, 0.3);
            text-decoration: none;
        }

        .cta-btn.secondary {
            background: transparent;
            border-color: var(--border);
            color: var(--text-secondary);
        }

        .cta-btn.secondary:hover {
            border-color: var(--accent-dim);
            color: var(--accent-light);
            background: var(--bg-card);
            text-decoration: none;
            transform: translateY(-2px);
        }

        /* ============================================
           SIBLING NAVIGATION
           ============================================ */
        .sibling-nav {
            margin: 48px 0;
            padding: 32px;
            background: var(--glass-bg);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border: 1px solid var(--glass-border);
            border-radius: var(--radius);
        }

        .sibling-title {
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--text-muted);
            margin-bottom: 20px;
        }

        .sibling-links {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
        }

        .sibling-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 10px 18px;
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: var(--radius-sm);
            color: var(--text-secondary);
            font-size: 0.82rem;
            transition: all 0.3s ease;
        }

        .sibling-link:hover {
            border-color: var(--accent-dim);
            color: var(--accent-light);
            background: var(--bg-card-hover);
            text-decoration: none;
            transform: translateY(-2px);
        }

        .sibling-link .sibling-code {
            font-family: 'Courier New', monospace;
            font-size: 0.72rem;
            color: var(--accent);
            background: rgba(230, 57, 70, 0.1);
            padding: 2px 6px;
            border-radius: 3px;
        }

        /* ============================================
           CROSS-LINKS SECTION
           ============================================ */
        .cross-links {
            margin: 32px 0;
            padding: 24px;
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: var(--radius-sm);
        }

        .cross-title {
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--text-muted);
            margin-bottom: 16px;
        }

        .cross-list {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .cross-item {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 8px 14px;
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid var(--border-light);
            border-radius: 6px;
            color: var(--text-secondary);
            font-size: 0.8rem;
            transition: all 0.3s ease;
        }

        .cross-item:hover {
            border-color: var(--accent-dim);
            color: var(--accent-light);
            text-decoration: none;
            background: var(--bg-card-hover);
        }

        /* ============================================
           WARNING BANNER
           ============================================ */
        .warning-banner {
            padding: 14px 20px;
            background: rgba(230, 57, 70, 0.08);
            border: 1px solid rgba(230, 57, 70, 0.2);
            border-radius: var(--radius-sm);
            margin-bottom: 32px;
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 0.85rem;
            color: var(--accent-light);
            animation: warningSlide 0.8s ease-out;
        }

        @keyframes warningSlide {
            0% { opacity: 0; transform: translateY(-10px); }
            100% { opacity: 1; transform: translateY(0); }
        }

        .warning-banner .icon {
            font-size: 1.2rem;
            flex-shrink: 0;
            animation: warningIconSpin 3s linear infinite;
        }

        @keyframes warningIconSpin {
            0%, 80%, 100% { transform: rotate(0deg); }
            90% { transform: rotate(10deg); }
            95% { transform: rotate(-10deg); }
        }

        /* ============================================
           FILE TYPE ICONS
           ============================================ */
        .file-types {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            margin: 16px 0;
        }

        .file-type-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 6px 12px;
            border-radius: 6px;
            font-size: 0.75rem;
            font-weight: 600;
            font-family: 'Courier New', monospace;
            animation: fileTypeFloat 3s ease-in-out infinite;
        }

        .file-type-badge:nth-child(1) { background: rgba(239, 68, 68, 0.1); color: #f87171; animation-delay: 0s; }
        .file-type-badge:nth-child(2) { background: rgba(59, 130, 246, 0.1); color: #60a5fa; animation-delay: 0.3s; }
        .file-type-badge:nth-child(3) { background: rgba(16, 185, 129, 0.1); color: #34d399; animation-delay: 0.6s; }
        .file-type-badge:nth-child(4) { background: rgba(245, 158, 11, 0.1); color: #fbbf24; animation-delay: 0.9s; }
        .file-type-badge:nth-child(5) { background: rgba(168, 85, 247, 0.1); color: #c084fc; animation-delay: 1.2s; }
        .file-type-badge:nth-child(6) { background: rgba(236, 72, 153, 0.1); color: #f472b6; animation-delay: 1.5s; }

        @keyframes fileTypeFloat {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-3px); }
        }

        /* ============================================
           RESPONSIVE DESIGN
           ============================================ */
        @media (max-width: 768px) {
            .nav-inner {
                flex-direction: column;
                align-items: flex-start;
            }

            .nav-links {
                gap: 8px;
            }

            .nav-links a {
                font-size: 0.78rem;
                padding: 5px 10px;
            }

            .hero {
                padding: 48px 0 40px;
            }

            .hero-meta {
                gap: 16px;
            }

            .glass-card {
                padding: 20px;
            }

            .mistakes-practices,
            .team-grid,
            .before-after {
                grid-template-columns: 1fr;
            }

            .attack-flow {
                flex-direction: column;
                gap: 12px;
            }

            .flow-arrow {
                transform: rotate(90deg);
            }

            .simulation-container {
                padding: 16px;
            }

            .email-inbox {
                max-width: 100%;
            }

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

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

            .step-item {
                flex-direction: column;
                gap: 12px;
            }

            .cta-actions {
                flex-direction: column;
                align-items: center;
            }
        }

        @media (max-width: 480px) {
            html { font-size: 14px; }

            .container { padding: 0 12px; }

            .hero h1 { font-size: 1.8rem; }

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

            .sibling-links { flex-direction: column; }

            .cross-list { flex-direction: column; }
        }

        /* ============================================
           ADDITIONAL ANIMATIONS
           ============================================ */
        @keyframes scanLine {
            0% { top: 0; opacity: 1; }
            50% { opacity: 0.5; }
            100% { top: 100%; opacity: 0; }
        }

        .scan-line-effect {
            position: absolute;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--accent), transparent);
            animation: scanLine 3s linear infinite;
            pointer-events: none;
        }

        @keyframes pulseRing {
            0% { transform: scale(0.8); opacity: 0.8; }
            100% { transform: scale(2); opacity: 0; }
        }

        .pulse-ring {
            position: absolute;
            width: 40px;
            height: 40px;
            border: 2px solid var(--accent);
            border-radius: 50%;
            animation: pulseRing 2s ease-out infinite;
        }

        @keyframes floatUpDown {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-8px); }
        }

        @keyframes shimmer {
            0% { background-position: -200% center; }
            100% { background-position: 200% center; }
        }

        .shimmer-text {
            background: linear-gradient(90deg, var(--text-primary), var(--accent-light), var(--text-primary));
            background-size: 200% auto;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: shimmer 4s linear infinite;
        }

        @keyframes borderRotate {
            0% { border-color: rgba(230, 57, 70, 0.15); }
            25% { border-color: rgba(255, 107, 107, 0.3); }
            50% { border-color: rgba(230, 57, 70, 0.15); }
            75% { border-color: rgba(255, 107, 107, 0.3); }
            100% { border-color: rgba(230, 57, 70, 0.15); }
        }

        @keyframes fadeInUp {
            0% { opacity: 0; transform: translateY(30px); }
            100% { opacity: 1; transform: translateY(0); }
        }

        @keyframes scaleIn {
            0% { opacity: 0; transform: scale(0.8); }
            100% { opacity: 1; transform: scale(1); }
        }

        @keyframes colorShift {
            0%, 100% { color: var(--accent); }
            50% { color: var(--accent-light); }
        }

        @keyframes slideInRight {
            0% { opacity: 0; transform: translateX(40px); }
            100% { opacity: 1; transform: translateX(0); }
        }

        @keyframes breathe {
            0%, 100% { transform: scale(1); opacity: 0.7; }
            50% { transform: scale(1.05); opacity: 1; }
        }

        .breathe {
            animation: breathe 4s ease-in-out infinite;
        }

        /* ============================================
           SECTION SPACERS
           ============================================ */
        .section-spacer {
            height: 20px;
        }

        /* ============================================
           PRINT STYLES
           ============================================ */
        @media print {
            .bg-grid, .bg-glow { display: none; }
            nav { position: static; }
            .glass-card { background: white; color: black; border: 1px solid #ccc; }
            * { animation: none !important; }
        }/* End custom CSS */