/* ==========================================================================
   AMPLIFIED FUNNELS - "SCALING INFRASTRUCTURE" CSS V3
   ========================================================================== */

:root {
    --bg-color: #030303; 
    --card-bg: #0d0d12; 
    --text-main: #ffffff;
    --text-muted: #94a3b8;
    --text-darker: #40404a; 
    
    --primary-blue: #0062ff;
    --primary-pink: #ff0080;
    
    --text-gradient: linear-gradient(180deg, #ffffff 40%, #c1c1cb 100%);
    --font-stack: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    
    --cubic-out: cubic-bezier(0.16, 1, 0.3, 1);
    --animation-speed: 0.8s;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: var(--font-stack);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 4rem 2rem;
    overflow-x: hidden;
    position: relative;
    -webkit-font-smoothing: antialiased;
}

/* Background Grids & Gradients */
body::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    background-position: center;
    z-index: 1;
    pointer-events: none;
    opacity: 0.5;
}

.ambient-glow-wrapper {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    filter: blur(120px);
    opacity: 0.8;
}

.glow {
    position: absolute;
    border-radius: 50%;
    mix-blend-mode: color-dodge;
}

.glow-1 {
    width: 60vw;
    height: 60vh;
    top: -15%;
    left: -10%;
    background: radial-gradient(circle, rgba(0, 98, 255, 0.18) 0%, transparent 70%);
}

.glow-2 {
    width: 45vw;
    height: 45vh;
    bottom: -10%;
    right: -10%;
    background: radial-gradient(circle, rgba(255, 0, 128, 0.12) 0%, transparent 70%);
}

/* Container Parent Setup */
.container {
    max-width: 680px; 
    width: 100%;
    text-align: center;
    z-index: 10;
    opacity: 0;
    transform: translateY(20px);
    animation: containerEntry var(--animation-speed) var(--cubic-out) forwards;
    animation-delay: 0.1s;
}

@keyframes containerEntry {
    to { opacity: 1; transform: translateY(0); }
}

.logo-wrapper {
    margin-bottom: 2.5rem;
    animation: logoPulse 5s ease-in-out infinite;
}

.logo {
    width: 110px;
    height: auto;
    object-fit: contain;
}

@keyframes logoPulse {
    0%, 100% { filter: drop-shadow(0 4px 10px rgba(0, 98, 255, 0.1)); }
    50% { filter: drop-shadow(0 4px 25px rgba(0, 98, 255, 0.25)); }
}

/* UPGRADED RADAR STATUS STYLING */
.status-radar-bar {
    width: 100%;
    max-width: 440px;
    margin: 0 auto 2.5rem auto;
    background: linear-gradient(90deg, rgba(255, 0, 85, 0.04), rgba(0, 98, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 0.65rem 1.2rem;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 1rem;
    backdrop-filter: blur(8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), inset 0 1px 1px rgba(255, 255, 255, 0.1);
}

.radar-ping {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 8px;
    height: 8px;
    flex-shrink: 0;
}

.ping-dot {
    width: 8px;
    height: 8px;
    background-color: var(--primary-pink);
    border-radius: 50%;
    z-index: 2;
    box-shadow: 0 0 10px var(--primary-pink);
}

.ping-wave {
    position: absolute;
    width: 24px;
    height: 24px;
    background: radial-gradient(circle, rgba(255, 0, 128, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
    animation: radarPulse 2s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

@keyframes radarPulse {
    0% { transform: scale(0.5); opacity: 1; }
    100% { transform: scale(2.2); opacity: 0; }
}

.status-ticker-wrapper {
    overflow: hidden;
    width: 100%;
    mask-image: linear-gradient(90deg, transparent 0%, #000 15%, #000 85%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 15%, #000 85%, transparent 100%);
}

.status-ticker-track {
    display: flex;
    gap: 2rem;
    white-space: nowrap;
    width: max-content;
    animation: endlessMarquee 15s linear infinite;
}

.status-ticker-track span {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--text-main);
    opacity: 0.8;
}

@keyframes endlessMarquee {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-50%, 0, 0); }
}

/* Main Typography Headers */
h1 {
    font-size: 3.2rem;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.04em;
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateX(-15px);
    animation: headlineEntry var(--animation-speed) var(--cubic-out) forwards;
    animation-delay: 0.3s;
}

@keyframes headlineEntry {
    to { opacity: 1; transform: translateX(0); }
}

h1 .text-gradient-light {
    background: var(--text-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

h1 .text-pink {
    color: var(--primary-pink);
}

.description {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    animation: elementFade var(--animation-speed) var(--cubic-out) forwards;
    animation-delay: 0.5s;
}

/* "ABOUT US" PREMIUM STACK */
.about-section {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, transparent 100%);
    border: 1px solid rgba(255, 255, 255, 0.04);
    padding: 2rem;
    border-radius: 16px;
    margin-bottom: 3.5rem;
    text-align: left;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: translateY(15px);
    animation: containerEntry var(--animation-speed) var(--cubic-out) forwards;
    animation-delay: 0.6s;
}

.about-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.about-title {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.25em;
    color: var(--primary-blue);
    white-space: nowrap;
}

.about-line {
    height: 1px;
    flex-grow: 1;
    background: linear-gradient(90deg, rgba(0, 98, 255, 0.2), transparent);
}

.about-section .about-header .about-line:last-child {
    background: linear-gradient(-90deg, rgba(0, 98, 255, 0.2), transparent);
}

.about-text {
    color: #e2e8f0;
    font-size: 0.95rem;
    line-height: 1.65;
    font-weight: 400;
}

/* Pre-Contact Intent Selection Block */
.intent-container {
    margin-bottom: 1.5rem;
    text-align: center;
}

.intent-label {
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    color: var(--primary-pink);
    margin-bottom: 0.4rem;
}

.intent-subtext {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Contact Cards Channels grid */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-bottom: 4rem;
}

@media (max-width: 576px) {
    .contact-grid { grid-template-columns: 1fr; }
    h1 { font-size: 2.2rem; }
}

.contact-card {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 1.75rem 1.5rem;
    text-decoration: none;
    color: var(--text-main);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    will-change: transform, border-color;
    transition: transform 0.4s var(--cubic-out), border-color 0.4s var(--cubic-out);
}

.contact-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 98, 255, 0.25);
}

.contact-card.email-card:hover {
    border-color: rgba(255, 0, 128, 0.25);
}

.card-meta {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--text-darker);
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.card-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.card-value {
    font-size: 1.05rem;
    font-weight: 600;
    word-break: break-all;
    position: relative;
    z-index: 2;
}

/* PREMIUM FAQ MATRIX STYLING */
.faq-section {
    text-align: left;
    margin-bottom: 4rem;
    width: 100%;
}

.faq-section .about-header {
    margin-bottom: 2rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.01);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s var(--cubic-out);
}

.faq-trigger {
    width: 100%;
    background: none;
    border: none;
    padding: 1.5rem 0.5rem;
    color: var(--text-main);
    font-family: var(--font-stack);
    font-size: 1rem;
    font-weight: 600;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    outline: none;
}

.faq-trigger span {
    transition: color 0.3s ease;
}

.faq-trigger:hover span {
    color: var(--primary-blue);
}

.faq-item.active .faq-trigger span {
    color: var(--primary-pink);
}

.faq-icon {
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--text-muted);
    transition: transform 0.3s var(--cubic-out);
}

.faq-panel {
    max-height: 0;
    overflow: hidden;
    will-change: max-height;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-panel p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    padding: 0 0.5rem 1.5rem 0.5rem;
}

.faq-item.active .faq-panel {
    max-height: 200px; /* Provides fluid slide transition */
}

@keyframes elementFade {
    to { opacity: 1; }
}

.footer-note {
    font-size: 0.75rem;
    color: var(--text-darker);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0;
    animation: elementFade var(--animation-speed) var(--cubic-out) forwards;
    animation-delay: 1s;
}