/* =====================
   CSS VARIABLES
   ===================== */

:root {
    --accent:        #685aff;
    --accent-dark:   #5b23ff;
    --accent-light:  #a89dff;
    --bg:            #111f35;
    --bg-card:       #152235;
    --bg-card-hover: #1a2d45;
    --text:          #e3e3e3;
    --text-dim:      #8b9bb4;
    --text-muted:    #3d5068;
    --border:        rgba(104, 90, 255, 0.15);
    --border-subtle: rgba(255, 255, 255, 0.07);
    --radius:        14px;
    --radius-sm:     8px;
    --radius-pill:   50rem;
    --font-display:  "Funnel Display", sans-serif;
    --font-mono:     "Quantico", monospace;
    --font-body:     "TASA Explorer", sans-serif;
}

/* =====================
   RESET
   ===================== */

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg);
    color: var(--text);
    font-family: var(--font-display);
    -webkit-font-smoothing: antialiased;
}

/* =====================
   LAYOUT
   ===================== */

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

.center-content {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* =====================
   SHARED KEYFRAMES
   ===================== */

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

@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@keyframes gradientShift {
    0%, 100% { background-position: 0%   50%; }
    50%       { background-position: 100% 50%; }
}

/* =====================
   SHARED COMPONENTS
   ===================== */

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--accent-light);
    margin-bottom: 16px;
}

.section-label::before {
    content: "";
    display: block;
    width: 20px;
    height: 1px;
    background: var(--accent);
    opacity: 0.6;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1px;
    color: #f2f2f2;
    margin-bottom: 16px;
}

.section-subtitle {
    font-family: var(--font-display);
    font-size: clamp(15px, 1.6vw, 18px);
    font-weight: 400;
    color: var(--text-dim);
    line-height: 1.7;
    max-width: 560px;
}

.gradient-text {
    background: linear-gradient(130deg, #c4bcff 0%, var(--accent) 45%, #3b82f6 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 5s ease-in-out infinite;
}
