@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200');

/* ═══════════════════════════════════════════════════════════════
   REDSPIRE CREATIVE — HIGH-ENERGY CREATIVE (2026 AWWWARDS STYLE)
   ═══════════════════════════════════════════════════════════════ */

:root {
    /* Pitch Black Canvas */
    --bg-primary: #000000;
    --bg-secondary: #0a0a0a;
    --bg-elevated: #141414;
    
    /* Neon Dopamine Accents */
    --neon-cyan: #00FFCC;
    --neon-pink: #FF00FF;
    --neon-green: #CCFF00;
    
    /* The primary accent will be Green for extreme energy */
    --accent: var(--neon-green); 
    --accent-hover: var(--neon-cyan);
    
    /* Text */
    --text-primary: #ffffff;
    --text-inverse: #000000;
    --text-muted: #888888;
    
    /* Geometry */
    --radius-sharp: 0px;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-full: 999px;
    
    /* Borders */
    --border-width: 2px;
    --border-color: #333333;
    --border-subtle: rgba(255, 255, 255, 0.08);
    
    /* High-speed Transitions */
    --transition-snap: 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* Bouncy, fast */
    
    /* Typography */
    --font-main: 'Outfit', sans-serif;
    --font-heading: 'Outfit', 'Arial Black', Arial, sans-serif;
    --font-body: 'Outfit', sans-serif;
    
    /* Shadows */
    --shadow-glow: 0 0 20px rgba(204, 255, 0, 0.15);
    
    /* Layout */
    --padding-x-desktop: 5%;
    
    /* Legacy */
    --primary: var(--neon-green);
}

/* ─── RESET ─── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: auto; /* GSAP handles smoothness */ }

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    line-height: 1.4;
    overflow-x: hidden;
    cursor: none; /* Custom dot cursor */
}

/* ─── CUSTOM CURSOR ─── */
.cursor-dot {
    position: fixed;
    top: 0; left: 0;
    width: 12px; height: 12px;
    background-color: var(--accent);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 10000;
    transition: background-color 0.2s, transform 0.1s;
}
.cursor-ring {
    position: fixed;
    top: 0; left: 0;
    width: 40px; height: 40px;
    border: 2px solid var(--accent);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9999;
    transition: width 0.2s, height 0.2s, border-color 0.2s;
}
body.hovering .cursor-dot { transform: translate(-50%, -50%) scale(0); }
body.hovering .cursor-ring { width: 80px; height: 80px; background-color: var(--accent); mix-blend-mode: exclusion; border-color: transparent; }

/* ─── TYPOGRAPHY ─── */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', 'Arial Black', Arial, sans-serif !important;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.1;
    letter-spacing: 1px;
}

.giant-text {
    font-family: 'Outfit', 'Arial Black', Arial, sans-serif !important;
    font-size: clamp(3rem, 9vw, 15rem);
    white-space: nowrap;
    text-align: center;
    letter-spacing: 2px !important;
    line-height: 1.1 !important;
}
.text-stroke {
    color: var(--bg-primary) !important;
    -webkit-text-stroke: 3px var(--text-primary) !important;
    stroke: var(--text-primary) !important;
    stroke-width: 3px !important;
    stroke-linejoin: round !important;
    stroke-linecap: round !important;
    paint-order: stroke fill !important;
    text-shadow: none !important;
}
.text-stroke:hover {
    color: var(--accent) !important;
    -webkit-text-stroke: 0px !important;
    stroke-width: 0px !important;
    transition: var(--transition-snap);
}

/* ─── ICONS ─── */
.material-symbols-outlined {
    font-variation-settings: 'wght' 700, 'GRAD' 200, 'opsz' 48; /* Thick, high-energy */
    display: inline-block;
    vertical-align: middle;
}

/* ─── BUTTONS (EXPLOSIVE) ─── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    font-weight: 800;
    font-size: 1.1rem;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: var(--radius-full);
    border: none;
    background: var(--bg-elevated);
    color: var(--text-primary);
    transition: var(--transition-snap);
    cursor: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--accent);
    color: var(--text-inverse);
}
.btn-primary:hover {
    transform: scale(1.05) rotate(-2deg);
    background: var(--neon-cyan);
    box-shadow: 0 0 30px var(--neon-cyan);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--text-primary);
}
.btn-outline:hover {
    border-color: var(--neon-pink);
    color: var(--neon-pink);
    transform: scale(1.05) rotate(2deg);
}

/* ─── HIGH-SPEED NAVIGATION ─── */
.nav-high-energy {
    position: fixed;
    top: 0; left: 0; right: 0;
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: transparent;
    transition: 0.3s;
}
.nav-high-energy.scrolled {
    background: rgba(0,0,0,0.9);
    backdrop-filter: blur(10px);
}

.logo-stamp {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: -0.05em;
    transition: var(--transition-snap);
}
.logo-stamp:hover { color: var(--neon-pink); transform: skewX(-10deg); }

.nav-links {
    display: flex;
    gap: 30px;
}
.nav-links a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 800;
    font-size: 1.1rem;
    text-transform: uppercase;
    transition: var(--transition-snap);
    position: relative;
}
.nav-links a::after {
    content: ''; position: absolute; bottom: -5px; left: 0; width: 100%; height: 3px; background: var(--accent);
    transform: scaleX(0); transform-origin: right; transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.nav-links a:hover { color: var(--accent); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); transform-origin: left; }
.nav-links a.active { color: var(--accent); }

/* ─── GRID LAYOUTS ─── */
.container { max-width: 1600px; margin: 0 auto; padding: 0 5%; }
.section-padding { padding: 150px 0; }

/* ─── FOOTER ─── */
footer {
    padding: 100px 5% 40px;
    background: var(--bg-elevated);
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 80px;
}
.footer-logo {
    font-size: 4rem;
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 20px;
    letter-spacing: -0.05em;
}
footer h4 { margin-bottom: 20px; font-size: 1.2rem; color: var(--accent); }
footer ul { list-style: none; }
footer ul li { margin-bottom: 10px; }
footer ul li a {
    color: var(--text-primary);
    font-weight: 600;
    text-decoration: none;
    font-size: 1.1rem;
    transition: var(--transition-snap);
    text-transform: uppercase;
}
footer ul li a:hover { color: var(--neon-cyan); padding-left: 10px; }
.footer-bottom {
    display: flex;
    justify-content: space-between;
    border-top: 2px solid #333;
    padding-top: 30px;
    font-weight: 600;
}

@media (max-width: 968px) {
    .nav-links { display: none; } /* Would normally add a mobile menu here */
    .footer-grid { grid-template-columns: 1fr; }
}


/* ─── FIXED GLASSMORPHISM HEADER ─── */
.nav-high-energy {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    z-index: 10000;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(204, 255, 0, 0.2);
    transition: var(--transition-snap);
}

.nav-links {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-links a {
    color: var(--text-primary);
    text-decoration: none;
    font-family: 'Outfit', 'Arial Black', Arial, sans-serif !important;
    font-weight: 800;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    padding-bottom: 5px;
    transition: var(--transition-snap);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--accent);
    transition: width 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a.active {
    color: var(--accent);
}

/* Push down content from the fixed header */
.page-header {
    padding-top: 180px !important; 
    padding-bottom: 50px;
    padding-left: 5%;
    padding-right: 5%;
}

.hero-kinetic {
    padding-top: 120px !important;
}

@media (max-width: 768px) {
    .nav-links { display: none; } /* Could add a hamburger menu later if needed */
}


/* ─── HIGH-ENERGY PRICING CARDS ─── */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 20px 5% 100px;
    max-width: 1400px;
    margin: 0 auto;
}

.pricing-card-light {
    background: var(--bg-elevated);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    padding: 50px 40px;
    position: relative;
    transition: var(--transition-snap);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.pricing-card-light:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.pricing-card-light.pro {
    border-color: var(--accent);
    box-shadow: 0 0 20px rgba(204, 255, 0, 0.15);
}

.pricing-card-light.pro:hover {
    box-shadow: 0 10px 40px rgba(204, 255, 0, 0.25);
}

.most-popular-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: black;
    font-weight: 900;
    font-size: 0.85rem;
    padding: 8px 20px;
    border-radius: 0 0 var(--radius-sm) var(--radius-sm);
    display: flex;
    align-items: center;
    gap: 5px;
}

.pricing-top-split {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.pricing-icon-wrap {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.pricing-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.pricing-icon .material-symbols-outlined {
    font-size: 2rem;
    color: var(--accent);
}

.pricing-card-light.pro .pricing-icon {
    background: var(--accent);
}

.pricing-card-light.pro .pricing-icon .material-symbols-outlined {
    color: black;
}

.pricing-title-wrap h3 {
    font-size: 1.8rem;
    color: var(--text-primary);
    margin-bottom: 5px;
}

.pricing-subtitle {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.4;
}

.pricing-price-box {
    margin-bottom: 40px;
}

.pricing-price-light {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--text-primary);
    display: flex;
    align-items: flex-end;
    gap: 5px;
}

.pricing-period {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.pricing-features-light {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

.pricing-features-light li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-muted);
    margin-bottom: 15px;
    font-size: 1.05rem;
}

.pricing-features-light li .material-symbols-outlined {
    color: var(--accent);
    font-size: 1.4rem;
}

.pricing-btn {
    display: block;
    text-align: center;
    padding: 18px;
    border-radius: var(--radius-md);
    font-weight: 800;
    font-size: 1.1rem;
    text-decoration: none;
    text-transform: uppercase;
    transition: var(--transition-snap);
    margin-top: auto;
}

.pricing-btn-outline {
    border: 2px solid rgba(255,255,255,0.2);
    color: var(--text-primary);
}

.pricing-btn-outline:hover {
    border-color: var(--text-primary);
    background: var(--text-primary);
    color: black;
}

.pricing-btn-solid {
    background: var(--accent);
    color: black;
    border: 2px solid var(--accent);
}

.pricing-btn-solid:hover {
    background: transparent;
    color: var(--accent);
}

@media (max-width: 1024px) {
    .pricing-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .pricing-grid { grid-template-columns: 1fr; }
}


/* ─── HIGH-ENERGY SERVICES TABS & CARDS ─── */
.services-tabs-he {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 50px;
    justify-content: center;
}
.tab-btn-he {
    background: var(--bg-elevated);
    border: 1px solid var(--border-subtle);
    color: var(--text-muted);
    padding: 12px 24px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition-snap);
}
.tab-btn-he:hover {
    color: var(--text-primary);
    border-color: rgba(255,255,255,0.2);
}
.tab-btn-he.active {
    background: var(--accent);
    color: var(--bg-primary);
    border-color: var(--accent);
    box-shadow: var(--shadow-glow);
}

.svc-card-he {
    background: var(--bg-elevated);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: var(--transition-snap);
    position: relative;
    overflow: hidden;
}
.svc-card-he::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, transparent, rgba(200, 255, 0, 0.05));
    opacity: 0; transition: var(--transition-snap);
}
.svc-card-he:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
}
.svc-card-he:hover::before { opacity: 1; }

.svc-card-icon-he {
    width: 50px; height: 50px;
    background: rgba(200, 255, 0, 0.1);
    border: 1px solid rgba(200, 255, 0, 0.2);
    border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    transition: var(--transition-snap);
}
.svc-card-he:hover .svc-card-icon-he {
    background: var(--accent);
}
.svc-card-icon-he i {
    font-size: 1.4rem; color: var(--accent);
    transition: var(--transition-snap);
}
.svc-card-he:hover .svc-card-icon-he i {
    color: var(--bg-primary);
}

.svc-card-title-he {
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.cta-band-he {
    padding: 100px 5%;
    background: linear-gradient(to bottom, transparent, rgba(200, 255, 0, 0.05));
    border-top: 1px solid rgba(200, 255, 0, 0.1);
    text-align: center;
}

/* ─── SERVICES TAB PANELS ─── */
.tab-panel { display: none; animation: fadeIn 0.4s ease-in-out; }
.tab-panel.active { display: block; }

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ─── PROCESS TABS (HOME PAGE) ─── */
.process-tabs-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    margin-top: 60px;
    min-height: 400px;
}
.process-tabs-nav {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.process-tab-btn {
    background: transparent;
    border: var(--border-width) solid var(--border-color);
    color: var(--text-primary);
    padding: 20px 30px;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    text-transform: uppercase;
    text-align: left;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: var(--transition-snap);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.process-tab-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 0;
}
.process-tab-btn * { position: relative; z-index: 1; }
.process-tab-btn:hover::before, .process-tab-btn.active::before { transform: scaleX(1); }
.process-tab-btn.active { color: var(--text-inverse); border-color: var(--accent); }
.process-tab-btn:hover { color: var(--text-inverse); }

.process-tabs-content {
    background: var(--bg-elevated);
    border: var(--border-width) solid var(--border-color);
    padding: 50px;
    position: relative;
    overflow: hidden;
}
.process-tab-panel {
    display: none;
    position: absolute;
    inset: 50px;
}
.process-tab-panel.active { display: flex; flex-direction: column; }
.process-tab-panel h3 {
    font-size: 3rem;
    color: var(--neon-cyan);
    margin-bottom: 20px;
    text-transform: uppercase;
}
.process-tab-panel p {
    font-size: 1.2rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 600px;
}
.process-tab-img {
    flex-grow: 1;
    background-color: rgba(255, 255, 255, 0.02);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px dashed var(--border-color);
}
.process-tab-img span { font-size: 4rem; color: rgba(255,255,255,0.1); }

@media (max-width: 968px) {
    .process-tabs-container { grid-template-columns: 1fr; }
    .process-tabs-nav { flex-direction: row; flex-wrap: wrap; }
    .process-tab-btn { flex: 1 1 calc(50% - 10px); padding: 15px; font-size: 1.1rem; }
    .process-tabs-content { min-height: 500px; padding: 30px; }
    .process-tab-panel { inset: 30px; }
}

/* ─── SCROLLING MARQUEE (HOME PAGE) ─── */
.marquee-wrapper {
    width: 100%;
    overflow: hidden;
    background: var(--accent);
    padding: 20px 0;
    margin: 60px 0;
    transform: rotate(-2deg);
    position: relative;
    z-index: 5;
    box-shadow: 0 0 30px rgba(255, 51, 102, 0.4);
}
.marquee-content {
    display: flex;
    white-space: nowrap;
    animation: scrollMarquee 20s linear infinite;
    gap: 40px;
}
.marquee-content span {
    font-size: 3rem;
    font-family: var(--font-heading);
    font-weight: 900;
    color: var(--bg-primary);
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 40px;
}
.marquee-content span i {
    color: var(--text-inverse);
    font-style: normal;
}
@keyframes scrollMarquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@media (max-width: 768px) {
    .marquee-content span { font-size: 2rem; }
}
