/* PRISM GLOBAL THEME */
:root {
    --bg-color-dark: #05070a;
    --bg-color-card: #0d1117;
    --neon-green: #00ff41;
    --neon-green-glow: rgba(0, 255, 65, 0.4);
    --text-primary: #ffffff;
    --text-secondary: #8b949e;
    --border-color: #30363d;
    --red-alert: #ff4136;
    
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

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

body {
    background-color: var(--bg-color-dark);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3, h4, .nav-brand {
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: -0.03em;
}

.kicker {
    color: var(--neon-green);
    letter-spacing: 0.1em;
    font-size: 0.9rem;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

/* NAVBAR */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 1.5rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(5, 7, 10, 0.8);
    backdrop-filter: blur(12px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-logo {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    box-shadow: 0 0 10px var(--neon-green-glow);
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.75rem;
    font-family: 'Space Grotesk', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: color 0.2s ease;
    font-weight: 500;
}

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

.top-left-status {
    position: fixed;
    top: 6rem;
    left: 2rem;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    font-weight: 900;
    font-family: 'Space Grotesk', sans-serif;
    color: var(--text-secondary);
    letter-spacing: 2px;
    z-index: 2000;
    background: rgba(0,0,0,0.5);
    padding: 8px 16px;
    border-radius: 4px;
    border: 1px solid rgba(255, 65, 54, 0.2);
    backdrop-filter: blur(8px);
}

.pulse-red {
    width: 6px;
    height: 6px;
    background: var(--red-alert);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--red-alert);
    animation: pulse-red-anim 1.5s infinite alternate;
}

@keyframes pulse-red-anim {
    0% { opacity: 0.3; }
    100% { opacity: 1; }
}

.nav-status {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--neon-green);
    letter-spacing: 2px;
}

/* BUTTONS */
.cta-btn {
    background: transparent;
    color: var(--neon-green);
    border: 1px solid var(--neon-green);
    padding: 0.75rem 1.5rem;
    border-radius: 0px; /* Sharp corners for militaristic vibe */
    font-weight: 700;
    font-family: 'Space Grotesk', sans-serif;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.2s ease-in-out;
    box-shadow: 0 0 10px rgba(0, 255, 65, 0.05);
    cursor: pointer;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.cta-btn:hover {
    background: var(--neon-green);
    color: var(--bg-color-dark);
    box-shadow: 0 0 25px var(--neon-green-glow);
    transform: translateY(-2px);
}

.large-btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.massive-btn {
    padding: 1.25rem 3rem;
    font-size: 1.2rem;
    background: var(--neon-green);
    color: var(--bg-color-dark);
    box-shadow: 0 0 35px var(--neon-green-glow);
}

.massive-btn:hover {
    background: #fff;
    color: var(--bg-color-dark);
    box-shadow: 0 0 45px rgba(255, 255, 255, 0.5);
    border-color: #fff;
}

/* HERO SECTION */
.hero {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 0 6rem;
    padding-top: 13rem;
    padding-bottom: 6rem;
    position: relative;
    overflow: hidden;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    z-index: 2;
}

.status-indicator {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 255, 65, 0.05);
    border: 1px solid rgba(0, 255, 65, 0.2);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--neon-green);
    letter-spacing: 1px;
    margin-bottom: 2rem;
}

.pulse {
    width: 6px;
    height: 6px;
    background: var(--neon-green);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--neon-green);
    animation: pulse-anim 1.5s infinite alternate;
}

@keyframes pulse-anim {
    0% { opacity: 0.4; }
    100% { opacity: 1; }
}

.hero-title {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.neon-text {
    color: var(--neon-green);
    text-shadow: 0 0 30px var(--neon-green-glow);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
}

.trust-badge {
    margin-top: 3rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
}

.hero-graphic {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-img {
    width: 320px;
    max-width: 100%;
    border-radius: 36px; /* High radius to mimic physical phone corners */
    box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 60px var(--neon-green-glow);
    border: 6px solid #000; /* Subtle bezel effect */
    outline: 1px solid rgba(255, 255, 255, 0.1);
}

.float-anim {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

/* BACKGROUND GLOWS */
.glow-orb {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0,255,65,0.15) 0%, rgba(5,7,10,0) 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    pointer-events: none;
}

/* FEATURE SECTIONS */
.feature-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8rem 6rem;
    gap: 4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.feature-text {
    flex: 1;
    max-width: 500px;
}

.feature-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.feature-text p {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.feature-visual {
    flex: 1;
    display: flex;
    justify-content: center;
}

.feature-img {
    width: 300px;
    max-width: 100%;
    border-radius: 36px;
    border: 6px solid #000; /* Subtle bezel effect */
    outline: 1px solid rgba(255,255,255,0.05);
    box-shadow: 0 10px 40px rgba(0,255,65,0.1);
    transition: transform 0.3s ease;
}

.feature-img:hover {
    transform: scale(1.02);
}

.side-by-side-phones {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
}

.side-by-side-phones .feature-img {
    width: 250px; /* Scaled down slightly to fit both gracefully */
}

@media (max-width: 1200px) {
    .side-by-side-phones {
        flex-direction: column;
        gap: 30px;
    }
    .side-by-side-phones .feature-img {
        width: 300px;
    }
}

.reverse-shadow {
    box-shadow: 0 10px 40px rgba(255,65,54,0.1);
}

/* FINAL CTA */
.final-cta {
    position: relative;
    padding: 10rem 2rem;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.final-cta .orb {
    position: absolute;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0,255,65,0.1) 0%, rgba(5,7,10,0) 50%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.final-cta h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.final-cta p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
}

/* FOOTER */
.site-footer {
    background: var(--bg-color-card);
    padding: 4rem 6rem;
    border-top: 1px solid var(--border-color);
}

.footer-grid {
    display: flex;
    justify-content: space-between;
}

.footer-brand h3 {
    margin-bottom: 0.5rem;
}

.footer-brand p {
    color: var(--text-secondary);
}

.footer-links h4 {
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.footer-links a {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.2s;
}

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

/* RESPONSIVE */
@media (max-width: 1200px) {
    .nav-links { display: none; }
}

@media (max-width: 900px) {
    .navbar { padding: 1rem 2rem; }
    .hero { flex-direction: column; padding: 8rem 2rem 4rem; text-align: center; }
    .hero-content { margin-bottom: 4rem; }
    .hero-title { font-size: 3rem; }
    .feature-section { flex-direction: column; padding: 4rem 2rem; text-align: center; }
    .left-orient { flex-direction: column-reverse; }
    .footer-grid { flex-direction: column; gap: 2rem; }
}

/* SCROLL ANIMATION UTILS */
.scale-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.scale-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* LORE SECTION (CLASSIFIED DOSSIER) */
.lore-section {
    padding: 4rem 6rem 6rem 6rem;
    text-align: center;
    background: linear-gradient(180deg, rgba(255,65,54,0.03) 0%, rgba(5,7,10,0) 100%);
}

/* THREAT VECTORS (EMERGENCY BRIEFING) */
.threat-vectors {
    padding: 6rem 6rem 2rem 6rem;
    background: #05070a;
    position: relative;
    overflow: hidden;
}

/* HORIZONTAL TARGET ARRAY */
.target-array {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin: 1.5rem 0 2.5rem 0;
}
.target-array img {
    width: 65px;
    height: 65px;
    border-radius: 14px;
    box-shadow: 0 0 20px rgba(255, 65, 54, 0.4);
}
.target-array img:hover {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(255, 65, 54, 0.8);
    transition: all 0.3s ease;
}

.vector-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}
.vector-header h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}
.vector-header p {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.7;
}
.vector-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}
.vector-card {
    background: transparent;
    border: 1px solid rgba(255, 65, 54, 0.2);
    border-left: 3px solid var(--red-alert);
    padding: 2.5rem;
    position: relative;
    transition: transform 0.3s ease;
}
.vector-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 65, 54, 0.05);
}
.vector-header-tag {
    font-family: monospace;
    color: var(--red-alert);
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}
.vector-card h3 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 1.35rem;
}
.vector-card p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
}

/* HORROR STORY CALLOUTS */
.horror-story-callout {
    margin-top: 3rem;
    padding: 1.5rem;
    background: rgba(0,0,0,0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-left: 2px solid var(--neon-green);
    position: relative;
    border-radius: 0px;
}
.horror-tag {
    font-family: monospace;
    color: var(--neon-green);
    font-size: 0.75rem;
    display: block;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}
.horror-story-callout p {
    font-size: 0.95rem !important;
    font-style: italic;
    color: #ccc !important;
}

.classified-dossier {
    max-width: 800px;
    margin: 0 auto;
    background: #090b0f;
    border: 1px solid var(--border-color);
    border-left: 3px solid var(--red-alert);
    border-radius: 8px;
    padding: 3rem;
    text-align: left;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    position: relative;
    overflow: hidden;
}

.dossier-header {
    display: flex;
    justify-content: space-between;
    font-family: monospace;
    font-size: 0.85rem;
    margin-bottom: 2rem;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding-bottom: 1rem;
}

.glow-text {
    text-shadow: 0 0 10px var(--red-alert);
}

.dossier-title {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
}

.dossier-body p {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.terminal-quote {
    font-family: monospace;
    background: rgba(0,0,0,0.8);
    padding: 1.5rem;
    border-radius: 4px;
    color: var(--neon-green);
    margin: 2rem 0;
    line-height: 1.8;
    border-left: 2px solid var(--neon-green);
    font-size: 1.1rem;
}

.red-alert-text {
    color: var(--red-alert) !important;
}

/* APP STORE BADGE */
.app-store-badge-link {
    display: inline-block;
    transition: transform 0.2s ease, opacity 0.2s ease;
    position: relative;
    opacity: 0.9;
}

.app-store-badge-link:hover {
    transform: scale(1.05);
    opacity: 1;
}

.coming-soon-badge {
    position: absolute;
    top: -12px;
    right: -15px;
    background: var(--red-alert);
    color: #fff;
    font-size: 0.70rem;
    font-family: monospace;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 4px;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(255, 65, 54, 0.4);
    z-index: 10;
    transform: rotate(6deg);
    pointer-events: none;
    border: 1px solid rgba(255,255,255,0.2);
}

.massive-badge-overlay {
    top: -5px;
    right: 5px;
    font-size: 0.85rem;
    padding: 6px 12px;
}
.app-store-badge {
    height: 50px;
    width: auto;
}
.massive-badge {
    height: 70px;
}

/* ISR BACKGROUND DIVIDER */
.isr-divider {
    width: 100%;
    height: 60vh;
    background-image: linear-gradient(rgba(5,7,10,0.85), rgba(5,7,10,0.85)), url('images/isr-drone.png');
    background-size: cover;
    background-position: center;
    background-attachment: scroll; /* Fix for iOS rendering bugs */
    position: relative;
    border-top: 1px solid rgba(0, 255, 65, 0.2);
    border-bottom: 1px solid rgba(0, 255, 65, 0.2);
    box-shadow: inset 0 0 100px rgba(0,0,0,0.9);
}

.isr-overlay {
    position: absolute;
    bottom: 2rem;
    right: 4rem;
    color: var(--neon-green);
    font-family: monospace;
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(0,0,0,0.8);
    padding: 10px 20px;
    border: 1px solid rgba(0, 255, 65, 0.3);
}

.crosshair-icon {
    font-size: 2rem;
    animation: rotate-radar 4s linear infinite;
}

@keyframes rotate-radar {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* REVIEWS SECTION - DEFENSE CONTRACTOR AESTHETIC */
.reviews-section {
    padding: 8rem 6rem;
    background: var(--bg-color-dark);
}
.text-center { text-align: center; }
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}
.review-card {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.05);
    border-top: 2px solid var(--neon-green);
    padding: 3rem 2rem;
    border-radius: 0px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.8);
    transition: all 0.3s ease;
    position: relative;
}
.review-card::after {
    content: '';
    position: absolute;
    bottom: -1px;
    right: -1px;
    width: 20px;
    height: 20px;
    border-bottom: 2px solid rgba(255,255,255,0.3);
    border-right: 2px solid rgba(255,255,255,0.3);
}
.review-card:hover { 
    transform: translateY(-5px); 
    background: rgba(0,255,65,0.02);
    border-color: rgba(255,255,255,0.1); 
    border-top: 2px solid var(--neon-green);
}
.review-stars { 
    color: var(--neon-green); 
    margin-bottom: 2rem; 
    font-size: 1rem; 
    letter-spacing: 8px; 
    opacity: 0.8;
}
.review-text { 
    font-size: 1.15rem; 
    line-height: 1.7; 
    margin-bottom: 2.5rem; 
    color: #fff; 
    font-family: "Space Grotesk", sans-serif;
}
.review-author { 
    font-size: 0.8rem; 
    color: var(--text-secondary); 
    display: flex; 
    flex-direction: column; 
    gap: 8px; 
    font-family: monospace; 
    text-transform: uppercase;
}
.author-badge { 
    color: rgba(0,255,65,0.8); 
    font-weight: bold; 
}

/* FAQ SECTION */
.faq-section {
    padding: 8rem 6rem;
    background: #05070a;
    border-top: 1px solid rgba(255,255,255,0.03);
}
/* FAQ ACCORDION */
.faq-accordion {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 0px;
    transition: all 0.3s ease;
    overflow: hidden;
}

.faq-item[open] {
    border-color: rgba(0, 255, 65, 0.3);
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.05);
}

.faq-item summary {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    list-style: none; /* Hide default triangle */
}

.faq-item summary::-webkit-details-marker {
    display: none; /* Hide default triangle in WebKit */
}

.faq-item summary h3 {
    font-size: 1.15rem;
    margin: 0;
    color: #fff;
    transition: color 0.3s ease;
}

.faq-item:hover summary h3 {
    color: var(--neon-green);
}

.faq-icon {
    color: var(--neon-green);
    font-size: 1.5rem;
    font-family: monospace;
    font-weight: bold;
    transition: transform 0.3s ease, color 0.3s ease;
}

.faq-item[open] .faq-icon {
    transform: rotate(45deg); /* Turns the + into an red crosshair x */
    color: var(--red-alert);
}

.faq-answer {
    padding: 0 2rem 2rem 2rem;
    animation: sweep-down 0.4s ease-out forwards;
}

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

.faq-answer p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-top: 1rem;
    border-top: 1px dashed rgba(255,255,255,0.05);
    padding-top: 1.5rem;
}

/* CONCLUSION SECTION */
.conclusion-section {
    padding: 8rem 6rem;
    background: #05070a;
    border-top: 1px solid rgba(255,255,255,0.03);
    text-align: center;
}
.conclusion-content {
    max-width: 850px;
    margin: 3rem auto 0 auto;
}
.conclusion-content p {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
}
.conclusion-content strong {
    color: #fff;
    font-weight: 600;
}

/* STICKY NOTE CTA */
.sticky-note {
    background: #FFFA86;
    color: #111;
    padding: 1.5rem 1.5rem;
    border-radius: 2px 2px 20px 2px;
    box-shadow: 5px 8px 15px rgba(0, 0, 0, 0.6);
    width: 380px;
    max-width: 90vw;
    font-family: 'Space Grotesk', sans-serif;
    transform: rotate(3deg);
    margin: 4rem auto 0 auto;
    text-align: left;
    position: relative;
    border: 1px solid rgba(0,0,0,0.1);
}
.sticky-note::before {
    content: '';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%) rotate(-1deg);
    width: 100px;
    height: 25px;
    background: rgba(255, 255, 255, 0.4);
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}
.sticky-note h4 {
    margin-bottom: 0.5rem;
    color: #d32f2f;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 1px;
}
.sticky-note p {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 0.5rem;
    color: #222;
}
