/* ═══════════════════════════════════════════════════════════════ */
/* TalentIsHere Landing Page — Design System                     */
/* Colors synced with mobile-app: Colors.ts                      */
/* ═══════════════════════════════════════════════════════════════ */

:root {
    /* ─── Brand Colors (from mobile app) ─── */
    --bg: #020617;
    --bg-surface: #0f172a;
    --primary: #f97316;
    --primary-light: #fb923c;
    --secondary: #10b981;
    --text: #f8fafc;
    --text-secondary: #94a3b8;
    --border: #1e293b;
    --error: #ef4444;

    /* ─── Extended Palette ─── */
    --blue: #3b82f6;
    --purple: #8b5cf6;
    --cyan: #06b6d4;
    --gold: #f59e0b;

    /* ─── Typography ─── */
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* ─── Layout ─── */
    --container: 1200px;
    --radius: 16px;
    --radius-sm: 10px;
}

/* ═══════════════════════════════════════════════════════════════ */
/* RESET & BASE                                                  */
/* ═══════════════════════════════════════════════════════════════ */

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

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

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

/* ─── Highlight text ─── */
.highlight {
    background: linear-gradient(135deg, var(--primary), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ═══════════════════════════════════════════════════════════════ */
/* NAVIGATION                                                    */
/* ═══════════════════════════════════════════════════════════════ */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all 0.3s ease;
    backdrop-filter: blur(0px);
}

.navbar.scrolled {
    padding: 10px 0;
    background: rgba(2, 6, 23, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(249, 115, 22, 0.1);
}

.nav-container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-logo-img {
    width: 44px;
    height: 44px;
    border-radius: 12px;
}

.nav-logo-text {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.logo-talent { color: var(--primary); }
.logo-is { color: var(--text); font-weight: 900; }
.logo-here { color: var(--gold); }

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
    position: relative;
    padding: 4px 0;
}

.nav-link:hover {
    color: var(--text);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--primary);
    color: #fff !important;
    padding: 10px 24px !important;
    border-radius: 50px;
    font-weight: 700;
}

.nav-cta::after { display: none; }

.nav-cta:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(249, 115, 22, 0.3);
}

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

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

/* ═══════════════════════════════════════════════════════════════ */
/* HERO SECTION                                                  */
/* ═══════════════════════════════════════════════════════════════ */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
}

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

.hero-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% 0%, rgba(249, 115, 22, 0.12) 0%, transparent 60%),
        radial-gradient(ellipse 60% 40% at 80% 50%, rgba(59, 130, 246, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse 40% 30% at 20% 80%, rgba(16, 185, 129, 0.06) 0%, transparent 50%);
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(249, 115, 22, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(249, 115, 22, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 70% 50%, black 0%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 70% 50%, black 0%, transparent 70%);
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: float 8s ease-in-out infinite;
}

.hero-orb-1 {
    width: 400px;
    height: 400px;
    background: rgba(249, 115, 22, 0.15);
    top: 10%;
    left: -5%;
    animation-delay: 0s;
}

.hero-orb-2 {
    width: 300px;
    height: 300px;
    background: rgba(59, 130, 246, 0.1);
    top: 60%;
    right: -5%;
    animation-delay: 3s;
}

.hero-orb-3 {
    width: 250px;
    height: 250px;
    background: rgba(16, 185, 129, 0.08);
    bottom: 10%;
    left: 30%;
    animation-delay: 5s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-30px) scale(1.05); }
}

.hero-container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 560px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(249, 115, 22, 0.12);
    border: 1px solid rgba(249, 115, 22, 0.2);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 28px;
    animation: fadeInUp 0.8s ease forwards;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-title {
    font-size: clamp(36px, 5vw, 60px);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease 0.1s forwards;
    opacity: 0;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 36px;
    animation: fadeInUp 0.8s ease 0.2s forwards;
    opacity: 0;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    animation: fadeInUp 0.8s ease 0.3s forwards;
    opacity: 0;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #fff;
    box-shadow: 0 4px 20px rgba(249, 115, 22, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 40px rgba(249, 115, 22, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--text);
    border: 2px solid var(--border);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-3px);
}

/* Trust bar */
.hero-trust {
    display: flex;
    align-items: center;
    gap: 14px;
    animation: fadeInUp 0.8s ease 0.4s forwards;
    opacity: 0;
}

.trust-avatars {
    display: flex;
}

.trust-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    border: 2px solid var(--bg);
    margin-left: -8px;
}

.trust-avatar:first-child { margin-left: 0; }

.trust-text {
    font-size: 14px;
    color: var(--text-secondary);
}

/* ─── Phone Mockup ─── */
.hero-visual {
    display: flex;
    justify-content: center;
    position: relative;
    animation: fadeInRight 1s ease 0.3s forwards;
    opacity: 0;
}

.phone-mockup {
    position: relative;
}

.phone-frame {
    width: 280px;
    height: 580px;
    background: var(--bg-surface);
    border-radius: 40px;
    border: 3px solid var(--border);
    padding: 12px;
    position: relative;
    overflow: hidden;
    box-shadow:
        0 0 0 1px rgba(249, 115, 22, 0.1),
        0 20px 80px rgba(0, 0, 0, 0.5),
        0 0 60px rgba(249, 115, 22, 0.1);
}

.phone-notch {
    width: 120px;
    height: 28px;
    background: var(--bg);
    border-radius: 0 0 20px 20px;
    margin: 0 auto 12px;
}

.phone-screen {
    padding: 8px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.feed-card {
    background: rgba(30, 41, 59, 0.6);
    border-radius: 14px;
    padding: 12px;
    border: 1px solid rgba(249, 115, 22, 0.08);
    animation: slideUp 0.6s ease forwards;
    opacity: 0;
}

.feed-card-1 { animation-delay: 0.8s; }
.feed-card-2 { animation-delay: 1.2s; }
.feed-card-3 { animation-delay: 1.6s; }

.feed-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.feed-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.feed-name {
    font-size: 12px;
    font-weight: 700;
    color: var(--text);
}

.feed-time {
    font-size: 10px;
    color: var(--text-secondary);
}

.feed-media {
    height: 100px;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.15), rgba(59, 130, 246, 0.1));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}

.feed-media-small {
    height: 70px;
}

.feed-play {
    width: 36px;
    height: 36px;
    background: rgba(249, 115, 22, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #fff;
}

.feed-actions {
    display: flex;
    gap: 14px;
    font-size: 11px;
    color: var(--text-secondary);
}

.feed-like { color: var(--primary); }

/* Floating badges */
.floating-badge {
    position: absolute;
    background: var(--bg-surface);
    border: 1px solid var(--border);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    animation: floatBadge 4s ease-in-out infinite;
    white-space: nowrap;
}

.floating-badge-1 {
    top: 60px;
    right: -50px;
    color: var(--primary);
    animation-delay: 0s;
}

.floating-badge-2 {
    bottom: 180px;
    left: -40px;
    color: var(--gold);
    animation-delay: 1.5s;
}

.floating-badge-3 {
    bottom: 60px;
    right: -30px;
    color: var(--secondary);
    animation-delay: 3s;
}

@keyframes floatBadge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Scroll indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: fadeInUp 1s ease 1.5s forwards;
    opacity: 0;
}

.scroll-mouse {
    width: 26px;
    height: 40px;
    border: 2px solid var(--text-secondary);
    border-radius: 13px;
    display: flex;
    justify-content: center;
    padding-top: 6px;
    opacity: 0.5;
}

.scroll-wheel {
    width: 4px;
    height: 10px;
    background: var(--primary);
    border-radius: 2px;
    animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {
    0% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(12px); }
}

/* ═══════════════════════════════════════════════════════════════ */
/* SECTION COMMON                                                */
/* ═══════════════════════════════════════════════════════════════ */

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

.section-badge {
    display: inline-block;
    background: rgba(249, 115, 22, 0.1);
    border: 1px solid rgba(249, 115, 22, 0.2);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 20px;
}

.section-title {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 17px;
    color: var(--text-secondary);
    max-width: 540px;
    margin: 0 auto;
}

/* ═══════════════════════════════════════════════════════════════ */
/* FEATURES                                                      */
/* ═══════════════════════════════════════════════════════════════ */

.features {
    padding: 120px 0;
    position: relative;
}

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

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--gold));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(249, 115, 22, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

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

.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.feature-desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════════ */
/* ROLES                                                         */
/* ═══════════════════════════════════════════════════════════════ */

.roles {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--bg) 0%, rgba(15, 23, 42, 0.5) 50%, var(--bg) 100%);
}

.roles-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.role-card {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px 24px;
    transition: all 0.4s ease;
    position: relative;
}

.role-card:hover {
    transform: translateY(-6px);
    border-color: rgba(249, 115, 22, 0.15);
}

.role-card-featured {
    border-color: rgba(249, 115, 22, 0.3);
    background: linear-gradient(180deg, rgba(249, 115, 22, 0.08), var(--bg-surface));
}

.role-featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary), var(--gold));
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 50px;
    white-space: nowrap;
}

.role-emoji {
    font-size: 40px;
    margin-bottom: 16px;
}

.role-title {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 10px;
}

.role-desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
}

.role-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.role-features li {
    font-size: 13px;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ═══════════════════════════════════════════════════════════════ */
/* HOW IT WORKS                                                  */
/* ═══════════════════════════════════════════════════════════════ */

.how-it-works {
    padding: 120px 0;
}

.steps-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 700px;
    margin: 0 auto;
}

.step-card {
    display: flex;
    gap: 28px;
    position: relative;
    padding-bottom: 48px;
}

.step-number {
    font-size: 48px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    min-width: 80px;
    text-align: center;
}

.step-content {
    flex: 1;
}

.step-title {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 8px;
}

.step-desc {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.step-line {
    position: absolute;
    left: 40px;
    top: 64px;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--primary), transparent);
    opacity: 0.3;
}

/* ═══════════════════════════════════════════════════════════════ */
/* STATS                                                         */
/* ═══════════════════════════════════════════════════════════════ */

.stats {
    padding: 80px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.stat-card {
    text-align: center;
    padding: 40px 20px;
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--gold));
}

.stat-number {
    font-size: 48px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline;
}

.stat-suffix {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary);
    display: inline;
}

.stat-label {
    font-size: 14px;
    color: var(--text-secondary);
    margin-top: 8px;
    font-weight: 600;
}

/* ═══════════════════════════════════════════════════════════════ */
/* CTA / DOWNLOAD                                                */
/* ═══════════════════════════════════════════════════════════════ */

.cta-section {
    padding: 120px 0 80px;
}

.cta-card {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.1), rgba(59, 130, 246, 0.05));
    border: 1px solid rgba(249, 115, 22, 0.2);
    border-radius: 28px;
    padding: 80px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-bg-orbs {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.cta-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.15;
}

.cta-orb-1 {
    width: 400px;
    height: 400px;
    background: var(--primary);
    top: -100px;
    right: -100px;
}

.cta-orb-2 {
    width: 300px;
    height: 300px;
    background: var(--blue);
    bottom: -100px;
    left: -100px;
}

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

.cta-title {
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 900;
    letter-spacing: -1.5px;
    margin-bottom: 20px;
}

.cta-subtitle {
    font-size: 17px;
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

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

.store-btn {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 28px;
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: 14px;
    transition: all 0.3s ease;
}

.store-btn:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.store-btn svg {
    flex-shrink: 0;
}

.store-btn small {
    display: block;
    font-size: 11px;
    color: var(--text-secondary);
    text-align: left;
}

.store-btn strong {
    display: block;
    font-size: 16px;
    font-weight: 700;
    text-align: left;
}

/* ═══════════════════════════════════════════════════════════════ */
/* FOOTER                                                        */
/* ═══════════════════════════════════════════════════════════════ */

.footer {
    padding: 80px 0 40px;
    border-top: 1px solid var(--border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.footer-logo-img {
    width: 40px;
    height: 40px;
    border-radius: 10px;
}

.footer-desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 300px;
}

.footer-heading {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    color: var(--text);
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link {
    font-size: 14px;
    color: var(--text-secondary);
}

.footer-link:hover {
    color: var(--primary);
}

.footer-address {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 13px;
    color: var(--text-secondary);
}

.footer-made {
    font-size: 12px !important;
}

/* ═══════════════════════════════════════════════════════════════ */
/* ANIMATIONS                                                    */
/* ═══════════════════════════════════════════════════════════════ */

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

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

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

/* Scroll-triggered animation */
[data-aos] {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.6s ease;
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

[data-aos="fade-right"] {
    transform: translateX(-40px);
}

[data-aos="fade-right"].aos-animate {
    transform: translateX(0);
}

[data-aos="zoom-in"] {
    transform: scale(0.9);
}

[data-aos="zoom-in"].aos-animate {
    transform: scale(1);
}

/* ═══════════════════════════════════════════════════════════════ */
/* RESPONSIVE                                                    */
/* ═══════════════════════════════════════════════════════════════ */

@media (max-width: 1024px) {
    .roles-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(2, 6, 23, 0.97);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 28px;
        z-index: 999;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links .nav-link {
        font-size: 20px;
    }

    .nav-toggle {
        display: flex;
        z-index: 1001;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 48px;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-trust {
        justify-content: center;
    }

    .hero-visual {
        display: none;
    }

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

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

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .cta-card {
        padding: 48px 24px;
    }

    .step-card {
        flex-direction: column;
        gap: 12px;
    }

    .step-number {
        text-align: left;
        font-size: 36px;
    }

    .step-line {
        display: none;
    }
}

@media (max-width: 480px) {
    .btn {
        padding: 14px 24px;
        font-size: 14px;
    }

    .hero-title {
        letter-spacing: -1px;
    }

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

    .stat-card {
        padding: 24px 12px;
    }

    .stat-number {
        font-size: 36px;
    }
}
