/* ========== RESET & BASE ========== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-primary: #050508;
    --bg-secondary: #0a0a10;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-bg-hover: rgba(255, 255, 255, 0.06);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-border-hover: rgba(255, 255, 255, 0.15);
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.6);
    --text-tertiary: rgba(255, 255, 255, 0.4);
    --gradient-1: #01B4EA;
    --gradient-2: #00FFB2;
    --gradient-3: #4d65ff;
    --nav-height: 72px;
    --section-padding: clamp(80px, 10vw, 140px);
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

/* ========== TYPOGRAPHY ========== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.section-label {
    font-family: 'Poppins', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gradient-1);
    margin-bottom: 16px;
    display: block;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: clamp(1rem, 1.2vw, 1.2rem);
    color: var(--text-secondary);
    max-width: 640px;
    line-height: 1.7;
}

.gradient-text {
    background: linear-gradient(90deg, var(--gradient-1), var(--gradient-2), var(--gradient-3), var(--gradient-1));
    background-size: 300% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: textShine 4s ease-in-out infinite alternate;
}

/* ========== LAYOUT ========== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.container-wide {
    max-width: 1400px;
}

section {
    padding: var(--section-padding) 0;
    position: relative;
}

/* ========== GLASS COMPONENTS ========== */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass:hover {
    background: var(--glass-bg-hover);
    border-color: var(--glass-border-hover);
}

/* ========== BUTTONS ========== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(90deg, var(--gradient-1), var(--gradient-2), var(--gradient-3), var(--gradient-1));
    background-size: 300% 100%;
    color: #050508;
    letter-spacing: 0.01em;
}

.btn-primary:hover {
    background-position: 100% 0;
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(1, 180, 234, 0.25);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(8px);
}

.btn-secondary:hover {
    border-color: var(--gradient-1);
    background: rgba(1, 180, 234, 0.08);
    transform: translateY(-2px);
}

/* ========== NAVIGATION ========== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--nav-height);
    display: flex;
    align-items: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav.scrolled, .nav.nav-solid {
    background: rgba(5, 5, 8, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

.nav-logo {
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
    list-style: none;
}

.nav-links a {
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color 0.3s ease;
    letter-spacing: 0.02em;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--text-primary);
}

.nav-links .btn {
    padding: 10px 24px;
    font-size: 0.8rem;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
    background: none;
    border: none;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}
.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ========== HERO ========== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: var(--nav-height);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: -40%;
    left: -20%;
    width: 140%;
    height: 140%;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(1, 180, 234, 0.12) 0%, transparent 55%),
        radial-gradient(ellipse at 80% 30%, rgba(0, 255, 178, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 80%, rgba(77, 101, 255, 0.1) 0%, transparent 55%);
    animation: meshMove 18s ease-in-out infinite alternate;
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: -30%;
    right: -30%;
    width: 120%;
    height: 120%;
    background:
        radial-gradient(ellipse at 70% 60%, rgba(1, 180, 234, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 30% 40%, rgba(0, 255, 178, 0.06) 0%, transparent 45%);
    animation: meshMove2 22s ease-in-out infinite alternate;
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    padding: 0 24px;
}

.hero-title {
    font-size: clamp(3rem, 7vw, 6rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
    line-height: 1.05;
}

.hero-subtitle {
    font-size: clamp(1rem, 1.3vw, 1.2rem);
    color: var(--text-secondary);
    max-width: 660px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-tertiary);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--gradient-1), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

/* ========== PAGE HERO (inner pages) ========== */
.page-hero {
    padding: calc(var(--nav-height) + 80px) 0 80px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.page-hero .hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.page-hero .container {
    position: relative;
    z-index: 1;
}

.page-hero .section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 16px;
}

.page-hero .section-subtitle {
    margin: 0 auto;
}

.breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.8rem;
    color: var(--text-tertiary);
    margin-bottom: 32px;
}

.breadcrumb a {
    color: var(--text-tertiary);
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--gradient-1);
}

.breadcrumb .sep {
    opacity: 0.4;
}

/* ========== STATS ========== */
.stats {
    padding: 60px 0;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    background: rgba(255, 255, 255, 0.01);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    text-align: center;
}

.stat-item {
    padding: 24px;
}

.stat-number {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 8px;
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 400;
}

/* ========== ABOUT ========== */
.about {
    position: relative;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-top: 24px;
}

.about-visual {
    position: relative;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
}

.about-visual-inner {
    position: absolute;
    inset: 0;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.about-visual-inner::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(1, 180, 234, 0.12) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 50%, rgba(0, 255, 178, 0.08) 0%, transparent 60%);
    animation: meshMove 12s ease-in-out infinite alternate;
}

.about-visual-text {
    position: relative;
    z-index: 1;
    font-family: 'Poppins', sans-serif;
    font-size: 6rem;
    font-weight: 800;
    opacity: 0.06;
    letter-spacing: 0.05em;
    user-select: none;
}

/* ========== TIMELINE ========== */
.timeline-section {
    position: relative;
    overflow: hidden;
}

.timeline-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--glass-border), transparent);
}

.timeline-header {
    text-align: center;
    margin-bottom: 80px;
}

.timeline-header .section-subtitle {
    margin: 0 auto;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(to bottom, var(--gradient-1), var(--gradient-2), var(--gradient-3));
    transform: translateX(-50%);
    opacity: 0.3;
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 48px;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row-reverse;
    text-align: right;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: 48px;
    margin-left: 0;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: 48px;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 24px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gradient-1), var(--gradient-2));
    transform: translateX(-50%);
    z-index: 2;
    box-shadow: 0 0 20px rgba(1, 180, 234, 0.4);
}

.timeline-content {
    width: calc(50% - 24px);
    padding: 28px;
}

.timeline-year {
    font-family: 'Poppins', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
    display: inline-block;
}

.timeline-content h3 {
    font-size: 1.15rem;
    margin-bottom: 12px;
    font-weight: 600;
}

.timeline-content p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ========== TEAM ========== */
.team-section {
    position: relative;
}

.team-header {
    text-align: center;
    margin-bottom: 64px;
}

.team-header .section-subtitle {
    margin: 0 auto;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

.team-card {
    padding: 40px 32px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gradient-1), var(--gradient-2));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.team-card:hover::before {
    opacity: 1;
}

.team-initials {
    font-family: 'Poppins', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1;
}

.team-name {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.team-title {
    font-size: 0.85rem;
    color: var(--gradient-1);
    font-weight: 500;
    margin-bottom: 20px;
    letter-spacing: 0.05em;
}

.team-bio {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
}

.team-link {
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.team-link:hover {
    gap: 12px;
}

/* ========== CAREERS CTA ========== */
.careers-cta {
    position: relative;
    overflow: hidden;
}

.careers-cta-inner {
    padding: 80px 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.careers-cta-inner::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(1, 180, 234, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 50%, rgba(0, 255, 178, 0.06) 0%, transparent 60%);
    animation: meshMove 15s ease-in-out infinite alternate;
}

.careers-cta-content {
    position: relative;
    z-index: 1;
}

.careers-cta-content .section-title {
    margin-bottom: 16px;
}

.careers-cta-content .section-subtitle {
    margin: 0 auto 36px;
}

/* ========== CONTACT ========== */
.contact-section {
    position: relative;
}

.contact-header {
    text-align: center;
    margin-bottom: 64px;
}

.contact-header .section-subtitle {
    margin: 0 auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.contact-card {
    padding: 36px 28px;
    text-align: center;
}

.contact-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 20px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(1, 180, 234, 0.15), rgba(0, 255, 178, 0.08));
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--gradient-1);
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.contact-card h3 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 12px;
    letter-spacing: 0.02em;
}

.contact-card p, .contact-card a {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.contact-card a:hover {
    color: var(--gradient-1);
}

/* ========== FOOTER ========== */
.footer {
    padding: 48px 0;
    border-top: 1px solid var(--glass-border);
    background: rgba(0, 0, 0, 0.3);
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
}

.footer-logo {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: 0.15em;
}

.footer-links {
    display: flex;
    gap: 32px;
    list-style: none;
}

.footer-links a {
    font-size: 0.8rem;
    color: var(--text-tertiary);
    transition: color 0.3s ease;
    font-weight: 400;
}

.footer-links a:hover {
    color: var(--text-primary);
}

.footer-copy {
    font-size: 0.75rem;
    color: var(--text-tertiary);
    width: 100%;
    text-align: center;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.04);
}

/* ========== VALUES GRID (Careers) ========== */
.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.value-card {
    padding: 36px 32px;
    position: relative;
    overflow: hidden;
}

.value-card .value-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 20px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(1, 180, 234, 0.12), rgba(0, 255, 178, 0.06));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

.value-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.value-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ========== BENEFITS ========== */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.benefit-item {
    padding: 32px 24px;
    text-align: center;
}

.benefit-item .benefit-icon {
    font-size: 1.8rem;
    margin-bottom: 16px;
}

.benefit-item h3 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.benefit-item p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ========== POSITIONS ========== */
.positions-empty {
    text-align: center;
    padding: 60px 24px;
}

.positions-empty p {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 24px;
}

/* ========== PROFILE PAGE ========== */
.profile-hero {
    padding: calc(var(--nav-height) + 60px) 0 60px;
    position: relative;
    overflow: hidden;
}

.profile-hero .hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.profile-hero .container {
    position: relative;
    z-index: 1;
}

.profile-header {
    display: flex;
    align-items: center;
    gap: 48px;
}

.profile-initials-large {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(5rem, 10vw, 8rem);
    font-weight: 800;
    line-height: 1;
    flex-shrink: 0;
}

.profile-info h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 8px;
}

.profile-role {
    font-size: 1rem;
    color: var(--gradient-1);
    font-weight: 500;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}

.profile-tagline {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 500px;
}

.profile-body {
    padding: var(--section-padding) 0;
}

.profile-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 64px;
    align-items: start;
}

.profile-main h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    margin-top: 48px;
}

.profile-main h2:first-child {
    margin-top: 0;
}

.profile-main p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 16px;
}

.profile-sidebar .sidebar-card {
    padding: 32px;
    margin-bottom: 24px;
}

.sidebar-card h3 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 16px;
    letter-spacing: 0.05em;
}

.sidebar-card ul {
    list-style: none;
    padding: 0;
}

.sidebar-card li {
    font-size: 0.9rem;
    color: var(--text-secondary);
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    line-height: 1.5;
}

.sidebar-card li:last-child {
    border-bottom: none;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-tertiary);
    transition: all 0.3s ease;
    margin-bottom: 32px;
}

.back-link:hover {
    color: var(--gradient-1);
    gap: 12px;
}

/* ========== TECHNOLOGY PAGE ========== */
.tech-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.tech-card {
    padding: 40px 32px;
    position: relative;
    overflow: hidden;
}

.tech-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gradient-1), var(--gradient-2));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.tech-card:hover::after {
    opacity: 1;
}

.tech-card .tech-number {
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 20px;
    opacity: 0.15;
}

.tech-card h3 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.tech-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.approach-item {
    padding: 32px 24px;
    text-align: center;
}

.approach-item .approach-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 20px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(1, 180, 234, 0.12), rgba(0, 255, 178, 0.06));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.approach-item h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.approach-item p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ========== REVEAL ANIMATIONS ========== */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ========== KEYFRAMES ========== */
@keyframes textShine {
    0% { background-position: 0% 50%; }
    100% { background-position: 100% 50%; }
}

@keyframes meshMove {
    0% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(3%, -2%) scale(1.02); }
    66% { transform: translate(-2%, 3%) scale(0.98); }
    100% { transform: translate(1%, -1%) scale(1.01); }
}

@keyframes meshMove2 {
    0% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-3%, 2%) rotate(3deg); }
    100% { transform: translate(2%, -3%) rotate(-2deg); }
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(1.2); }
}

/* ========== MOBILE MENU ========== */
.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(5, 5, 8, 0.95);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.mobile-menu.open {
    display: flex;
    opacity: 1;
    pointer-events: all;
}

.mobile-menu a {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

.mobile-menu a:hover {
    color: var(--text-primary);
}

/* ========== SECTION DIVIDER ========== */
.section-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--glass-border), transparent);
    border: none;
    margin: 0;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-visual {
        height: 280px;
    }

    .profile-content {
        grid-template-columns: 1fr;
    }

    .profile-header {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .stat-item {
        padding: 20px;
        border-bottom: 1px solid var(--glass-border);
    }

    .stat-item:last-child {
        border-bottom: none;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-dot {
        left: 20px;
    }

    .timeline-item,
    .timeline-item:nth-child(odd) {
        flex-direction: column;
        padding-left: 48px;
        text-align: left;
    }

    .timeline-content,
    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        width: 100%;
        margin: 0;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .careers-cta-inner {
        padding: 60px 24px;
    }

    .hero-title {
        font-size: clamp(2.4rem, 10vw, 3.5rem);
    }

    .footer-inner {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }

    .values-grid,
    .tech-grid {
        grid-template-columns: 1fr;
    }

    .benefits-grid,
    .approach-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-cta {
        flex-direction: column;
        width: 100%;
    }

    .hero-cta .btn {
        width: 100%;
        justify-content: center;
    }
}
