@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700;800;900&display=swap');

:root {
    --accent-purple: #a100ff;
    --accent-blue: #0041f0;
    --accent-red: #ff003c;
    --bg-black: #000000;
    --bg-dark-grey: #121212;
    --bg-grey: #f4f4f4;
    --text-white: #ffffff;
    --text-black: #000000;
    --text-grey: #a0a0a0;
    
    --font-primary: 'Inter', sans-serif;
    
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 6rem;
    --space-xxl: 8rem;
    
    --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-fast: all 0.2s ease;
    --transition-slow: all 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

img, video {
    max-width: 100%;
    height: auto;
}

h1, h2, h3, h4, h5, h6, p, span, a {
    overflow-wrap: break-word;
    word-wrap: break-word;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: var(--font-primary);
    background-color: var(--bg-black);
    color: var(--text-white);
    line-height: 1.5;
    overflow-x: hidden;
    width: 100%;
    -webkit-font-smoothing: antialiased;
}

/* Selection color */
::selection {
    background: var(--accent-purple);
    color: var(--text-white);
}

/* Custom Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-black); }
::-webkit-scrollbar-thumb { background: var(--accent-purple); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #c040ff; }

/* Typography */
h1, h2, h3, h4 {
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.text-display-hero {
    font-size: clamp(3rem, 8vw, 7rem);
    text-transform: uppercase;
}

.text-display-section {
    font-size: clamp(2rem, 5vw, 4rem);
}

.accent-text { color: var(--accent-purple); }

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 8%;
}

.section { padding: var(--space-xl) 0; }
.section-lg { padding: var(--space-xxl) 0; }

/* Buttons & Links */
a { text-decoration: none; color: inherit; transition: var(--transition); }

.btn {
    display: inline-flex;
    align-items: center;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.75rem 1.5rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transition: var(--transition-slow);
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--accent-purple);
    color: var(--text-white);
}

.btn-primary:hover {
    background: var(--text-white);
    color: var(--text-black);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(161, 0, 255, 0.3);
}

.link-arrow {
    font-weight: 700;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
    position: relative;
}

.link-arrow::after {
    content: '>';
    color: var(--accent-purple);
    font-weight: 900;
    transition: var(--transition);
}

.link-arrow:hover {
    color: var(--accent-purple);
    gap: 0.8rem;
}

.link-arrow:hover::after {
    transform: translateX(5px);
}

/* --- NAVBAR --- */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0,0,0,0.9);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 1000;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(0,0,0,0.98);
    padding: 1rem 0;
    box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    transition: var(--transition);
}

.logo span { color: var(--accent-purple); }

.logo:hover { transform: scale(1.05); }

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
}

.nav-links a {
    position: relative;
    padding-bottom: 4px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-purple);
    transition: var(--transition);
}

.nav-links a:hover { color: var(--accent-purple); }
.nav-links a:hover::after { width: 100%; }

/* --- HERO --- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    position: relative;
}

.hero-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--space-lg);
    align-items: center;
}

.hero-subtext {
    font-size: 1.2rem;
    color: var(--text-grey);
    margin-bottom: var(--space-md);
}

/* Typing cursor effect on hero title */
.hero h1 .accent-text {
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { text-shadow: 0 0 10px rgba(161, 0, 255, 0.5); }
    50% { text-shadow: 0 0 30px rgba(161, 0, 255, 0.9), 0 0 60px rgba(161, 0, 255, 0.4); }
}

/* --- CARDS --- */
.grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.card {
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    transition: border-color 0.4s ease, box-shadow 0.4s ease;
    cursor: pointer;
    overflow: hidden;
    will-change: transform;
}

.card:hover {
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 30px rgba(0,0,0,0.5);
}

.card-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.card:hover .card-image {
    transform: scale(1.05);
}

.card-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.card-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    color: var(--text-grey);
    transition: var(--transition);
}

.card:hover .card-label {
    color: var(--accent-purple);
}

.card-title {
    font-size: 1.5rem;
    font-weight: 700;
    transition: var(--transition);
}

/* --- QUOTE SECTION --- */
.quote-section {
    background: var(--bg-black);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
}

.quote-image {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    display: block;
    border-radius: 4px;
}

.quote-text {
    font-size: 1.5rem;
    font-weight: 300;
    line-height: 1.4;
    position: relative;
    padding-left: 2rem;
    border-left: 3px solid var(--accent-purple);
}

/* --- VALUE SECTION --- */
.value-section { text-align: center; }

.value-section h2 {
    background: linear-gradient(135deg, var(--text-white), var(--accent-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* --- AWARDS --- */
.awards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 2rem;
}

.award-block {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 2.5rem 2rem;
    position: relative;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

.award-block::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 3px;
    opacity: 0.8;
}

.award-block.blue::after { background: var(--accent-blue); }
.award-block.red::after { background: var(--accent-red); }
.award-block.purple::after { background: var(--accent-purple); }

.award-icon {
    margin-bottom: 1.5rem;
    color: var(--text-white);
}

.award-block h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.award-block p {
    color: var(--text-grey);
    font-size: 1rem;
    line-height: 1.5;
}

.award-block:hover {
    transform: translateY(-5px);
    border-color: rgba(255,255,255,0.15);
    background: rgba(255,255,255,0.05);
}

/* --- IMAGE BANNER --- */
.banner-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
}

.banner-image {
    height: 400px;
    background-size: cover;
    background-position: center;
    transition: var(--transition-slow);
    overflow: hidden;
    position: relative;
}

.banner-image:hover {
    transform: scale(1.01);
}

.banner-content {
    height: 400px;
    background: var(--bg-dark-grey);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem;
    transition: var(--transition);
}

.banner-content:hover {
    background: #1a1a1a;
}

/* --- FOOTER --- */
.footer {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: var(--space-xl) 0 var(--space-md);
}

.footer-huge-text {
    font-size: clamp(3rem, 10vw, 8rem);
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: -0.05em;
    text-transform: uppercase;
    color: var(--text-white);
    opacity: 0.9;
    margin-bottom: var(--space-xl);
    word-wrap: break-word;
    background: linear-gradient(180deg, rgba(255,255,255,0.95), rgba(255,255,255,0.3));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
    font-size: 0.85rem;
    color: var(--text-grey);
}

.footer-grid ul { list-style: none; }
.footer-grid li { margin-bottom: 0.5rem; }

.footer-grid a {
    position: relative;
    display: inline-block;
}

.footer-grid a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent-purple);
    transition: var(--transition);
}

.footer-grid a:hover {
    color: var(--text-white);
}

.footer-grid a:hover::after {
    width: 100%;
}

/* --- PAGE LOAD ANIMATION --- */
@keyframes page-reveal {
    from { opacity: 0; }
    to { opacity: 1; }
}

body {
    animation: page-reveal 0.6s ease forwards;
}

/* --- RESPONSIVE --- */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

@media (max-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr; }
    .quote-section { grid-template-columns: 1fr; }
    .awards-grid { grid-template-columns: 1fr; }
    .banner-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    :root {
        --space-md: 1.5rem;
        --space-lg: 2rem;
        --space-xl: 3rem;
        --space-xxl: 4rem;
    }
    
    .container {
        padding: 0 5%;
    }
    
    .nav-links { display: none; }
    .footer-grid { grid-template-columns: 1fr; }
    .grid-4 { grid-template-columns: 1fr; }
    .grid-2 { grid-template-columns: 1fr; }
    
    .hero { padding-top: 72px; min-height: 80vh; }
    .text-display-hero { font-size: clamp(2rem, 10vw, 3rem); word-wrap: break-word; }
    .hero-subtext { font-size: 1rem; }
    
    .text-display-section { font-size: 2.2rem; }
    .value-section p { font-size: 1rem !important; }
    
    .quote-text { font-size: 1.2rem; padding-left: 1rem; }
    .quote-section > div { padding: 0 !important; }
    
    .award-block { height: auto; padding: 2rem; }
    
    .banner-image { height: 250px; }
    .banner-content { height: auto; min-height: 250px; padding: 2rem; }
    
    .footer-huge-text { font-size: clamp(2.5rem, 12vw, 3.5rem); line-height: 0.95; word-wrap: break-word; }
}
