﻿/* 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: var(--ec-blue);
color: var(--ec-ivory);
}
/* Handwriting font for Iffinity */
.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; }
/* Product Cards - SHARP EDGES (No Border Radius) */
.banner-card {
background: linear-gradient(180deg, rgba(25, 37, 54, 0.4) 0%, rgba(25, 37, 54, 0.8) 100%);
backdrop-filter: blur(8px);
border: 1px solid rgba(151, 160, 163, 0.1);
border-radius: 1rem;
transition: all 0.4s ease;
contain: paint;
isolation: isolate;
}
.banner-card:hover {
background: linear-gradient(180deg, rgba(25, 37, 54, 0.2) 0%, rgba(25, 37, 54, 0.6) 100%);
border-color: rgba(151, 160, 163, 0.3);
}
/* 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.08) 0%, rgba(25, 37, 54, 0) 60%);
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.03) 1px, transparent 1px),
linear-gradient(to bottom, rgba(151, 160, 163, 0.03) 1px, transparent 1px);
mask-image: linear-gradient(to bottom, black 40%, transparent 100%);
will-change: transform, opacity;
}

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

.about-hero h1 {
font-size: 2.4rem;
line-height: 1.15;
}
}

/* 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; }
