﻿/* Color Variables */
:root {
--ec-blue: #192536;
--ec-gray: #97a0a3;
--ec-ivory: #FEF9F3;
--ec-purple: #7e22ce;
--ec-purple-dark: #3b0764;
}
body {
font-family: 'Manrope', sans-serif;
background-color: #0f1621; /* Darker base background */
color: var(--ec-ivory);
}
/* Handwriting font for specific accents */
.font-script {
font-family: 'Caveat', cursive;
}
/* Custom Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #111a26; }
::-webkit-scrollbar-thumb { background: #334052; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #97a0a3; }
/* Custom Inputs & Form Elements */
.custom-input {
background: rgba(254, 249, 243, 0.08); /* Increased opacity */
border: 1px solid rgba(151, 160, 163, 0.3);
color: #FEF9F3;
border-radius: 1rem;
transition: all 0.2s ease;
}
.custom-input:focus {
outline: none;
border-color: rgba(254, 249, 243, 0.6);
background: rgba(254, 249, 243, 0.12);
}
.custom-checkbox:checked + div {
background-color: #FEF9F3;
border-color: #FEF9F3;
}
.custom-checkbox:checked + div svg {
color: #192536;
}
/* Card Styles */
.career-card {
/* Significantly increased opacity for better contrast */
background: linear-gradient(180deg, rgba(25, 37, 54, 0.85) 0%, rgba(20, 30, 45, 0.95) 100%);
backdrop-filter: blur(12px);
border: 1px solid rgba(151, 160, 163, 0.15);
border-radius: 1rem;
transition: all 0.3s ease;
}
.career-card:hover {
background: linear-gradient(180deg, rgba(30, 45, 65, 0.9) 0%, rgba(25, 37, 54, 0.95) 100%);
border-color: rgba(151, 160, 163, 0.4);
transform: translateY(-2px);
}
/* Step Number Styling */
.step-number {
font-family: 'Manrope', sans-serif;
-webkit-text-stroke: 1px rgba(254, 249, 243, 0.3);
color: transparent;
}
/* Ambient Background Glows */
.ambient-glow {
position: absolute;
width: 100%;
height: 100vh;
background: radial-gradient(circle at 50% 0%, rgba(151, 160, 163, 0.05) 0%, rgba(15, 22, 33, 0.8) 80%);
top: 0;
pointer-events: none;
z-index: 0;
will-change: transform, opacity;
}
/* Grid Pattern */
.grid-pattern {
background-size: 60px 60px;
background-image: linear-gradient(to right, rgba(151, 160, 163, 0.05) 1px, transparent 1px),
linear-gradient(to bottom, rgba(151, 160, 163, 0.05) 1px, transparent 1px);
mask-image: linear-gradient(to bottom, black 40%, transparent 100%);
will-change: transform, opacity;
}

@media (max-width: 767px) {
.careers-hero {
padding-top: 8.5rem;
padding-bottom: 4rem;
}

.careers-hero h1 {
font-size: 2.45rem;
line-height: 1.14;
}
}

.process-mobile {
display: none;
}

@media (max-width: 767px) {
.process-desktop {
display: none;
}

.process-mobile {
display: block;
max-width: 26rem;
margin: 0 auto;
}

.process-mobile-top {
display: flex;
align-items: center;
justify-content: space-between;
margin-bottom: 1rem;
}

.process-mobile-phase {
color: #fef9f3;
font-size: 0.84rem;
font-weight: 700;
letter-spacing: 0.08em;
text-transform: uppercase;
}

.process-mobile-controls {
display: flex;
gap: 0.4rem;
}

.process-mobile-btn {
display: inline-flex;
align-items: center;
justify-content: center;
width: 2rem;
height: 2rem;
padding: 0;
border: 1px solid rgba(254, 249, 243, 0.22);
border-radius: 9999px;
background: rgba(25, 37, 54, 0.8);
color: #fef9f3;
}

.process-mobile-btn:disabled {
opacity: 0.35;
cursor: default;
}

.process-mobile-panels {
padding: 1rem;
border: 1px solid rgba(254, 249, 243, 0.1);
border-radius: 1rem;
background: rgba(17, 26, 38, 0.65);
}

.process-phase-panel {
display: none;
}

.process-phase-panel.is-active {
display: block;
}

.process-phase-grid {
position: relative;
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
gap: 0.9rem;
}

.process-phase-grid::before {
content: "";
position: absolute;
left: 25%;
right: 25%;
top: 1.45rem;
height: 1px;
background: linear-gradient(to right, transparent, rgba(254, 249, 243, 0.28), transparent);
}

.process-phase-grid-single {
grid-template-columns: 1fr;
max-width: 9rem;
margin: 0 auto;
}

.process-phase-grid-single::before {
display: none;
}

.process-mini-step {
display: flex;
flex-direction: column;
align-items: center;
gap: 0.55rem;
}

.process-mini-icon {
position: relative;
z-index: 1;
display: inline-flex;
align-items: center;
justify-content: center;
width: 2.9rem;
height: 2.9rem;
border: 1px solid rgba(254, 249, 243, 0.2);
border-radius: 9999px;
background: #111a26;
color: #fef9f3;
box-shadow: 0 0 15px rgba(255, 255, 255, 0.05);
}

.process-mini-label {
color: #fef9f3;
font-size: 0.82rem;
font-weight: 600;
letter-spacing: 0.02em;
}

.process-mobile-dots {
display: flex;
justify-content: center;
gap: 0.35rem;
margin-top: 0.85rem;
}

.process-dot {
width: 0.42rem;
height: 0.42rem;
border-radius: 9999px;
background: rgba(151, 160, 163, 0.35);
}

.process-dot.is-active {
background: #fef9f3;
}
}
/* ANIMATION STYLES */
.reveal {
opacity: 0;
transform: translateY(30px);
transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
will-change: transform, opacity;
}
.reveal.active {
opacity: 1;
transform: translateY(0);
}
.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }
.delay-400 { transition-delay: 0.4s; }
.delay-500 { transition-delay: 0.5s; }
