/* INTEL HERO - THE WOMAN THEY COULDN'T TAME */
/* Sophisticated Intelligence Theme with Black & White Aesthetic */

/* Remove any potential white lines */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.intel-hero * {
    border: none !important;
    outline: none !important;
}

.intel-hero {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, #000000 0%, #0a0a0a 25%, #1a1a1a 50%, #0a0a0a 75%, #000000 100%);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    overflow: hidden;
    color: #ffffff;
    padding-top: 120px;
    border: none;
    outline: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

/* Animated Background Grid Pattern */
.intel-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(rgba(255, 255, 255, 0.01) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.01) 1px, transparent 1px);
    background-size: 60px 60px, 60px 60px, 30px 30px, 30px 30px;
    animation: intelligenceGrid 60s linear infinite;
    z-index: 1;
}

@keyframes intelligenceGrid {
    0% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(30px, 30px) rotate(180deg); }
    100% { transform: translate(0, 0) rotate(360deg); }
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.floating-element {
    position: absolute;
    color: rgba(255, 255, 255, 0.1);
    font-size: clamp(1rem, 2vw, 2rem);
    animation: floatIntel 8s ease-in-out infinite;
}

.floating-element:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-element:nth-child(2) {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.floating-element:nth-child(3) {
    bottom: 30%;
    left: 20%;
    animation-delay: 4s;
}

.floating-element:nth-child(4) {
    top: 40%;
    right: 25%;
    animation-delay: 6s;
}

.floating-element:nth-child(5) {
    bottom: 20%;
    right: 10%;
    animation-delay: 1s;
}

@keyframes floatIntel {
    0%, 100% { 
        transform: translateY(0px) scale(1);
        opacity: 0.1;
    }
    50% { 
        transform: translateY(-20px) scale(1.1);
        opacity: 0.2;
    }
}

/* Main Container */
.intel-container {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1200px;
    padding: 1rem 2rem;
    width: 100%;
}

/* Intel Badge */
.intel-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: #ffffff;
    margin-bottom: 2rem;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { 
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    }
    50% { 
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
    }
}

/* Title Section */
.intel-title-section {
    margin-bottom: 2rem;
}

.intel-title {
    font-size: clamp(2rem, 8vw, 5rem);
    font-weight: 900;
    letter-spacing: -2px;
    line-height: 1;
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.title-line-1 {
    color: #ffffff;
    animation: slideInLeft 1s ease-out 0.2s both;
}

.title-line-2 {
    color: #cccccc;
    animation: slideInRight 1s ease-out 0.4s both;
}

.title-line-3 {
    color: #ffffff;
    font-size: 1.2em;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    animation: slideInLeft 1s ease-out 0.6s both;
}

@keyframes slideInLeft {
    from {
        transform: translateX(-100px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

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

/* Subtitle */
.intel-subtitle {
    font-size: clamp(1rem, 3vw, 1.2rem);
    font-weight: 300;
    color: #999999;
    letter-spacing: 3px;
    text-transform: uppercase;
    animation: fadeInUp 1s ease-out 0.8s both;
}

/* Action Buttons */
.intel-actions {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.intel-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 1s ease-out 1.4s both;
}

.intel-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
    z-index: 0;
}

.intel-btn:hover::before {
    width: 300px;
    height: 300px;
}

.intel-btn > * {
    position: relative;
    z-index: 1;
}

.intel-btn.primary {
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    color: #000000;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.intel-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.intel-btn.secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.intel-btn.secondary:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.6);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
}

/* Section Divider */
.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 2rem;
    background: linear-gradient(90deg, #000000 0%, #2a2a2a 50%, #000000 100%);
    margin: 0;
    border: none;
    position: relative;
}

.section-divider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.02) 25%, 
        transparent 50%, 
        rgba(255, 255, 255, 0.02) 75%, 
        transparent 100%);
    z-index: 1;
}

.section-divider > * {
    position: relative;
    z-index: 2;
}

.divider-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #444444 50%, transparent 100%);
    max-width: 200px;
}

.divider-icon {
    margin: 0 2rem;
    font-size: 1.5rem;
    color: #ffffff;
    animation: rotate 8s linear infinite;
}

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

/* Content Section */
.intel-content {
    padding: 4rem 0;
    background: #000000;
    color: #ffffff;
    text-align: center;
    margin: 0;
    border: none;
}

.intel-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.intel-content p {
    font-size: 1.1rem;
    color: #cccccc;
}

/* Animation Keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .intel-hero {
        padding-top: 100px;
        padding: 1rem;
    }
    
    .intel-container {
        padding: 1rem;
    }
    
    .intel-actions {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .intel-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .floating-element {
        font-size: 1rem;
    }
}

/* WARFARE CONTENT SECTIONS */

/* Warfare Content Base */
.warfare-content {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    color: #ffffff;
    padding: 3rem 0;
    position: relative;
}

.warfare-content:nth-of-type(even) {
    background: linear-gradient(135deg, #111111 0%, #222222 50%, #111111 100%);
}

.warfare-content:nth-of-type(odd) {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #000000 100%);
}

.warfare-content .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Opening Statement */
.opening-statement {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 2rem;
    line-height: 1.2;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

/* Content Blocks */
.content-block {
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

.content-block p {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #cccccc;
}

.strategy-highlight {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border-left: 4px solid #ffffff;
    padding: 1.5rem 2rem;
    margin: 1.5rem 0;
    font-style: italic;
    font-weight: 500;
    color: #ffffff !important;
    border-radius: 0 10px 10px 0;
}

/* Section Titles */
.section-title {
    text-align: center;
    margin-bottom: 2.5rem;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -2px;
}

.title-accent {
    color: #999999;
    display: block;
    font-size: 0.7em;
    letter-spacing: 3px;
    margin-bottom: 0.5rem;
}

.title-main {
    color: #ffffff;
    display: block;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.2);
}

.featured-title .title-main {
    background: linear-gradient(135deg, #ffffff 0%, #cccccc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.revolution-title .title-main {
    color: #ffffff;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
}

/* Tactical Points */
.tactical-points {
    display: grid;
    gap: 1rem;
    margin: 2rem 0;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.tactical-points .point {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    padding-left: 2rem;
}

.tactical-points .point:last-child {
    border-bottom: none;
}

.tactical-points .point::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #ffffff;
    font-weight: 900;
}

/* Methodology Section */
.methodology-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #333333 25%, #1a1a1a 50%, #333333 75%, #1a1a1a 100%) !important;
    position: relative;
}

.methodology-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 30%, rgba(255, 68, 68, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 70% 70%, rgba(255, 68, 68, 0.03) 0%, transparent 50%);
    z-index: 1;
}

.methodology-section .container {
    position: relative;
    z-index: 2;
}

.methodology-intro {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    font-weight: 600;
    text-align: center;
    color: #ffffff !important;
    margin-bottom: 2.5rem;
}

/* Warfare Insights */
.warfare-insights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2.5rem 0;
}

.insight {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(4px);
}

.insight:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.06) 100%);
}

.insight.special {
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.05);
}

.insight.special:hover {
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.2);
}

.insight i {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 1rem;
    display: block;
}

.insight.special i {
    color: #ffffff;
}

.insight p {
    color: #cccccc !important;
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
}

.victory-statement {
    font-size: clamp(1.3rem, 3vw, 1.6rem);
    font-weight: 700;
    text-align: center;
    color: #ffffff !important;
    margin-top: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Revolution Section */
.revolution-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #333333 25%, #1a1a1a 50%, #333333 75%, #1a1a1a 100%) !important;
    position: relative;
}

.revolution-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 40% 60%, rgba(255, 255, 255, 0.03) 0%, transparent 60%),
                radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.02) 0%, transparent 40%);
    z-index: 1;
}

.revolution-section .container {
    position: relative;
    z-index: 2;
}

.revolution-declaration {
    font-size: clamp(1.2rem, 3vw, 1.4rem);
    font-weight: 600;
    text-align: center;
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin: 2rem 0;
}

/* Revolution Principles */
.revolution-principles {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.principle {
    background: rgba(255, 255, 255, 0.02);
    border-left: 4px solid #ffffff;
    padding: 1.5rem 2rem;
    border-radius: 0 10px 10px 0;
    font-size: 1.2rem;
    line-height: 1.6;
    color: #cccccc;
}

.principle strong {
    color: #ffffff;
}

.call-to-action {
    font-size: clamp(1.2rem, 3vw, 1.4rem);
    font-weight: 600;
    text-align: center;
    color: #ffffff !important;
    margin: 2rem 0 1.5rem 0;
}

/* Arsenal Button */
.arsenal-button {
    text-align: center;
    margin: 2rem 0;
}

.intel-btn.arsenal {
    background: linear-gradient(135deg, #ffffff 0%, #cccccc 100%);
    color: #000000;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
    border: none;
    font-size: 1.1rem;
    padding: 1.2rem 2.5rem;
    font-weight: 700;
}

.intel-btn.arsenal:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.4);
    background: linear-gradient(135deg, #ffffff 0%, #eeeeee 100%);
}

/* Author Section */
.author-section {
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 50%, #2a2a2a 100%);
    padding: 2.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.author-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.01) 25%, 
        transparent 50%, 
        rgba(255, 255, 255, 0.01) 75%, 
        transparent 100%);
    z-index: 1;
}

.author-section .container {
    position: relative;
    z-index: 2;
}

.author-info {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.author-info h3 {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.author-info p {
    font-size: 1.1rem;
    color: #999999;
    font-style: italic;
}

/* Mobile Responsiveness for Warfare Content */
@media (max-width: 768px) {
    .warfare-content {
        padding: 2rem 0;
    }
    
    .warfare-content .container {
        padding: 0 1rem;
    }
    
    .tactical-points {
        padding: 1rem;
    }
    
    .warfare-insights {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .insight {
        padding: 1rem;
    }
    
    .revolution-principles {
        gap: 1rem;
    }
    
    .principle {
        padding: 1rem 1.5rem;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .strategy-highlight,
    .revolution-declaration,
    .victory-statement {
        padding: 1rem;
    }
    
    .tactical-points .point {
        font-size: 1.1rem;
        padding: 0.6rem 0;
        padding-left: 1.5rem;
    }
}