:root {
    --bg-primary: #0a0a0f;
    --bg-secondary: #12121a;
    --bg-card: rgba(26, 26, 37, 0.6);
    --bg-card-solid: #1a1a25;
    --bg-card-hover: rgba(34, 34, 48, 0.8);
    --text-primary: #ffffff;
    --text-secondary: #a0a0b0;
    --text-muted: #6b6b7b;
    --accent-primary: #6366f1;
    --accent-secondary: #8b5cf6;
    --accent-pink: #ec4899;
    --accent-blue: #3b82f6;
    --accent-gradient: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #ec4899 100%);
    --accent-gradient-soft: linear-gradient(135deg, rgba(99, 102, 241, 0.2) 0%, rgba(139, 92, 246, 0.2) 50%, rgba(236, 72, 153, 0.2) 100%);
    --success: #10b981;
    --warning: #f59e0b;
    --error: #ef4444;
    --border-color: rgba(255, 255, 255, 0.1);
    --border-glow: rgba(99, 102, 241, 0.3);
    --glow-primary: rgba(99, 102, 241, 0.5);
    --glow-secondary: rgba(139, 92, 246, 0.4);
    --glow-pink: rgba(236, 72, 153, 0.4);
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}


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

html {
    scroll-behavior: smooth;
}

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

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}


.gradient-text {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Times New Roman', Times, serif;
}


.glass-card {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    position: relative;
    overflow: hidden;
}


.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: var(--accent-gradient-soft);
    border: 1px solid var(--border-glow);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.section-tag.light {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
}

.section-tag::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--accent-primary);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--glow-primary);
}


.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 15, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    height: 80px;
    display: flex;
    align-items: center;
    transition: var(--transition-normal);
}

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

.nav-left {
    flex: 1;
    display: flex;
    align-items: center;
}

.nav-center {
    flex: 2;
    display: flex;
    justify-content: center;
}

.nav-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 1.5rem;
}

.logo {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-img {
    height: 35px;
    width: auto;
    margin-top: -19px;
    margin-right: -18px;
    display: block;
}

.logo-text {
    font-size: 1.75rem;
    font-weight: 800;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
    font-family: 'Times New Roman', Times, serif;
    margin-top: 9px;
}

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

.nav-link {
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 0;
    position: relative;
    transition: var(--transition-normal);
    white-space: nowrap;
    text-decoration: none;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gradient);
    transition: var(--transition-normal);
    border-radius: 2px;
}

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

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

.nav-link.active {
    font-weight: 600;
}

.nav-link.active::after {
    background: var(--accent-gradient);
    box-shadow: 0 0 20px var(--glow-primary);
    height: 3px;
    border-radius: 3px;
}

.location-selector {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0.5rem 1rem;
    background: var(--bg-card);
    border-radius: 10px;
    border: 1px solid var(--border-color);
    cursor: pointer;
    transition: var(--transition-normal);
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.location-selector:hover {
    border-color: var(--accent-primary);
    box-shadow: 0 0 20px var(--glow-secondary);
    color: var(--text-primary);
}

.location-icon {
    color: var(--accent-primary);
    font-size: 0.9rem;
}

.location-dropdown {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-family: inherit;
    font-size: 0.9rem;
    cursor: pointer;
    outline: none;
}

.location-dropdown option {
    background: var(--bg-card-solid);
    color: var(--text-primary);
}


.profile-menu-wrapper {
    position: relative;
}

.profile-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
     background: linear-gradient(135deg, #8556f2, #6366f1);
    border: 2px solid rgba(139, 92, 246, 0.4);
    color: white;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.profile-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.6);
}

.profile-dropdown {
    position: absolute;
    top: 48px;
    right: 0;
    background: var(--bg-card-solid);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 8px;
    min-width: 180px;
    display: none;
    z-index: 9999;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.profile-dropdown .user-name {
    padding: 8px 12px;
    color: var(--text-secondary);
    font-size: 13px;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 6px;
}

.profile-dropdown button {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    padding: 9px 12px;
    border-radius: 8px;
    font-size: 14px;
    background: none;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
    text-align: left;
    color: var(--text-secondary);
    font-family: inherit;
}

.profile-dropdown button:hover {
    background: rgba(139, 92, 246, 0.15);
    color: var(--text-primary);
}

.profile-dropdown .logout-item {
    color: var(--error);
    border-top: 1px solid var(--border-color);
    padding-top: 10px;
    margin-top: 6px;
}

.profile-dropdown .logout-item:hover {
    background: rgba(239, 68, 68, 0.1);
    color: var(--error);
}

.login-nav-btn {
    background: linear-gradient(135deg, #8b5cf6, #6d28d9);
    border: none;
    color: white;
    padding: 8px 18px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Inter', sans-serif;
}

.login-nav-btn:hover {
    opacity: 0.9;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(139, 92, 246, 0.4);
}


.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1100;
}

.mobile-menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: rgba(255, 255, 255, 0.85);
    border-radius: 2px;
    transition: all 0.3s;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: rgba(10, 10, 15, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    z-index: 999;
    padding: 1.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.mobile-menu.open {
    display: block;
}

.mobile-nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-links li {
    margin-bottom: 4px;
}

.mobile-nav-links a {
    display: block;
    padding: 0.85rem 1rem;
    color: var(--text-secondary);
    text-decoration: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.2s;
}

.mobile-nav-links a:hover,
.mobile-nav-links a.active {
    background: rgba(139, 92, 246, 0.15);
    color: white;
}

.mobile-auth {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}


.policy-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(5, 5, 15, 0.78);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    z-index: 10001;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.policy-modal-overlay.open {
    display: flex;
}

.policy-modal {
    background: linear-gradient(145deg, rgba(22, 22, 35, 0.99), rgba(12, 12, 22, 0.99));
    border: 1px solid var(--border-color);
    border-radius: 20px;
    width: 100%;
    max-width: 560px;
    max-height: 88vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.04) inset,
                0 32px 80px rgba(0, 0, 0, 0.75),
                0 0 60px rgba(99, 102, 241, 0.1);
    animation: policySlideIn 0.35s cubic-bezier(0.34, 1.46, 0.64, 1);
    font-family: 'Inter', system-ui, sans-serif;
    overflow: hidden;
}

@keyframes policySlideIn {
    from { opacity: 0; transform: scale(0.9) translateY(24px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

.policy-modal-header {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 22px 24px 18px;
    border-bottom: 1px solid var(--border-color);
    flex-shrink: 0;
}

.policy-modal-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(99, 102, 241, 0.15);
    border: 1px solid var(--border-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-primary);
    font-size: 18px;
    flex-shrink: 0;
}

.policy-modal-title {
    flex: 1;
    font-size: 17px;
    font-weight: 700;
    color: #f0f0fa;
    letter-spacing: -0.3px;
}

.policy-modal-close {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    transition: all 0.2s;
    flex-shrink: 0;
}

.policy-modal-close:hover {
    background: rgba(255, 255, 255, 0.12);
    color: var(--text-secondary);
}

.policy-scroll-wrap {
    position: relative;
    flex: 1;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.policy-scroll-fade-top,
.policy-scroll-fade-bottom {
    pointer-events: none;
    position: absolute;
    left: 0;
    right: 0;
    height: 40px;
    z-index: 2;
}

.policy-scroll-fade-top {
    top: 0;
    background: linear-gradient(to bottom, rgba(12, 12, 22, 0.95), transparent);
}

.policy-scroll-fade-bottom {
    bottom: 0;
    background: linear-gradient(to top, rgba(12, 12, 22, 0.95), transparent);
}

.policy-modal-body {
    flex: 1;
    overflow-y: auto;
    padding: 24px;
    scrollbar-width: thin;
    scrollbar-color: rgba(99, 102, 241, 0.4) transparent;
}

.policy-modal-body::-webkit-scrollbar { width: 5px; }
.policy-modal-body::-webkit-scrollbar-track { background: transparent; }
.policy-modal-body::-webkit-scrollbar-thumb { background: rgba(99, 102, 241, 0.4); border-radius: 99px; }

.policy-last-updated {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 20px;
    letter-spacing: 0.3px;
}

.policy-modal-body h2 {
    font-size: 13px;
    font-weight: 700;
    color: #f0f0fa;
    margin: 20px 0 8px;
    letter-spacing: -0.1px;
}

.policy-modal-body h2:first-of-type { margin-top: 0; }

.policy-modal-body p {
    font-size: 13.5px;
    color: #8888aa;
    line-height: 1.7;
    margin-bottom: 4px;
}

.policy-modal-body ul {
    margin: 8px 0 8px 16px;
    padding: 0;
}

.policy-modal-body ul li {
    font-size: 13.5px;
    color: #8888aa;
    line-height: 1.7;
    margin-bottom: 4px;
}

.policy-section-divider {
    height: 1px;
    background: var(--border-color);
    margin: 16px 0;
}

.policy-modal-footer {
    padding: 16px 24px;
    border-top: 1px solid var(--border-color);
    flex-shrink: 0;
    display: flex;
    justify-content: flex-end;
}

.policy-modal-btn {
    padding: 11px 28px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    background: var(--accent-gradient);
    border: none;
    color: white;
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.4);
    font-family: 'Inter', system-ui, sans-serif;
    transition: all 0.2s;
}

.policy-modal-btn:hover {
    filter: brightness(1.15);
    transform: translateY(-1px);
    box-shadow: 0 6px 24px rgba(99, 102, 241, 0.55);
}


.about-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 120px 20px 80px;
    overflow: hidden;
    background: var(--bg-primary);
}

.hero-background {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
}

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

.orb-1 {
    width: 500px;
    height: 500px;
    background: var(--accent-primary);
    top: -150px;
    right: -100px;
    animation-delay: 0s;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: var(--accent-secondary);
    bottom: -100px;
    left: -100px;
    animation-delay: -3s;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: var(--accent-pink);
    top: 40%;
    left: 20%;
    animation-delay: -6s;
    opacity: 0.3;
}

.orb-4 {
    width: 250px;
    height: 250px;
    background: var(--accent-blue);
    top: 60%;
    right: 30%;
    animation-delay: -8s;
    opacity: 0.25;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -30px) scale(1.1); }
    50% { transform: translate(-20px, 20px) scale(0.9); }
    75% { transform: translate(20px, 10px) scale(1.05); }
}

.hero-content-wrapper {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid var(--border-glow);
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-primary);
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease;
}

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

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.2); }
}

.hero-title {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -2px;
    animation: fadeInUp 0.8s ease 0.1s both;
}

.hero-subtitle {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    color: var(--text-secondary);
    font-weight: 500;
    margin-bottom: 16px;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.8;
    animation: fadeInUp 0.8s ease 0.3s both;
}

.hero-cta {
    animation: fadeInUp 0.8s ease 0.4s both;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 36px;
    background: var(--accent-gradient);
    color: white;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.btn-glow {
    animation: glowPulse 2s ease-in-out infinite;
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.4);
}

@keyframes glowPulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(99, 102, 241, 0.4); }
    50% { box-shadow: 0 8px 40px rgba(99, 102, 241, 0.8), 0 0 60px rgba(139, 92, 246, 0.4); }
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.2) 100%);
    opacity: 0;
    transition: var(--transition-normal);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(99, 102, 241, 0.6);
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-primary i {
    transition: var(--transition-normal);
}

.btn-primary:hover i {
    transform: translateX(4px);
}


.floating-elements {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.float-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    backdrop-filter: blur(10px);
    animation: floatCard 6s ease-in-out infinite;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.float-card i {
    color: var(--accent-primary);
    font-size: 1.1rem;
}

.card-1 {
    top: 20%;
    left: 5%;
    animation-delay: 0s;
}

.card-2 {
    top: 30%;
    right: 5%;
    animation-delay: -2s;
}

.card-3 {
    bottom: 25%;
    left: 10%;
    animation-delay: -4s;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
}

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


.our-story {
    padding: 100px 0;
    position: relative;
}

.story-card {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 60px;
    min-height: 500px;
}

.story-glow {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: var(--accent-primary);
    border-radius: 50%;
    filter: blur(150px);
    opacity: 0.15;
    pointer-events: none;
}

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

.story-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.2;
}

.story-text {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}

.story-text p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.8;
}


.story-visual {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.orbit-container {
    position: relative;
    width: 300px;
    height: 300px;
}

.orbit-ring {
    position: absolute;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.ring-1 {
    width: 100%;
    height: 100%;
    animation: orbitRotate 20s linear infinite;
}

.ring-2 {
    width: 70%;
    height: 70%;
    animation: orbitRotate 15s linear infinite reverse;
}

.ring-3 {
    width: 40%;
    height: 40%;
    animation: orbitRotate 10s linear infinite;
}

@keyframes orbitRotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.orbit-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: var(--accent-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    box-shadow: 0 0 40px var(--glow-primary);
    animation: centerPulse 3s ease-in-out infinite;
}

@keyframes centerPulse {
    0%, 100% { box-shadow: 0 0 40px var(--glow-primary); }
    50% { box-shadow: 0 0 60px var(--glow-primary), 0 0 80px var(--glow-secondary); }
}

.orbit-node {
    position: absolute;
    width: 50px;
    height: 50px;
    background: var(--bg-card-solid);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-primary);
    font-size: 1.2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.node-1 {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    animation: nodeFloat 4s ease-in-out infinite;
}

.node-2 {
    bottom: 15%;
    right: 0;
    animation: nodeFloat 4s ease-in-out infinite 1s;
}

.node-3 {
    bottom: 15%;
    left: 0;
    animation: nodeFloat 4s ease-in-out infinite 2s;
}

.node-4 {
    top: 30%;
    right: -10px;
    animation: nodeFloat 4s ease-in-out infinite 3s;
}

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



.who-we-are {
    padding: 100px 0;
    background: var(--bg-secondary);
}

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

.section-header .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-top: 16px;
}

.team-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 60px;
    max-width: 800px;
    margin: 0 auto;
}

.team-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, var(--glow-secondary), transparent 70%);
    opacity: 0.5;
    pointer-events: none;
}

.team-avatar {
    position: relative;
    margin-bottom: 30px;
}

.avatar-ring {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    padding: 4px;
    background: var(--accent-gradient);
    position: relative;
    z-index: 1;
}

.avatar-inner {
    width: 100%;
    height: 100%;
    background: var(--bg-card-solid);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.avatar-text {
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.avatar-pulse {
    position: absolute;
    inset: -10px;
    border: 2px solid var(--accent-primary);
    border-radius: 50%;
    opacity: 0;
    animation: avatarPulse 2s ease-out infinite;
}

@keyframes avatarPulse {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(1.2); opacity: 0; }
}

.team-name {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.team-description {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 600px;
    margin-bottom: 16px;
}

.team-description.secondary {
    color: var(--text-muted);
    font-size: 1rem;
}

.team-values {
    display: flex;
    gap: 16px;
    margin-top: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.value-tag {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid var(--border-glow);
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: var(--transition-normal);
}

.value-tag:hover {
    background: rgba(99, 102, 241, 0.2);
    border-color: var(--accent-primary);
    color: var(--text-primary);
    transform: translateY(-2px);
}

.value-tag i {
    color: var(--accent-primary);
}


.vision {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.vision-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.vision-content {
    text-align: left;
}

.vision-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
}

.vision-text {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 16px;
}

.vision-text.secondary {
    color: var(--text-muted);
    font-size: 1rem;
}


.vision-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.vision-orb {
    position: relative;
    width: 250px;
    height: 250px;
}

.orb-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: var(--accent-gradient);
    border-radius: 50%;
    box-shadow: 0 0 60px var(--glow-primary);
    animation: corePulse 3s ease-in-out infinite;
}

@keyframes corePulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.1); }
}

.orb-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    animation: ringExpand 4s ease-out infinite;
}

.ring-a {
    width: 120px;
    height: 120px;
    animation-delay: 0s;
}

.ring-b {
    width: 180px;
    height: 180px;
    animation-delay: 1s;
}

.ring-c {
    width: 240px;
    height: 240px;
    animation-delay: 2s;
}

@keyframes ringExpand {
    0% { transform: translate(-50%, -50%) scale(0.8); opacity: 1; }
    100% { transform: translate(-50%, -50%) scale(1.2); opacity: 0; }
}

.orb-particles {
    position: absolute;
    inset: 0;
}

.orb-particles span {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--accent-primary);
    border-radius: 50%;
    animation: particleOrbit 8s linear infinite;
}

.orb-particles span:nth-child(1) { top: 20%; left: 20%; animation-delay: 0s; }
.orb-particles span:nth-child(2) { top: 80%; left: 30%; animation-delay: -1s; }
.orb-particles span:nth-child(3) { top: 30%; right: 20%; animation-delay: -2s; }
.orb-particles span:nth-child(4) { bottom: 20%; right: 40%; animation-delay: -3s; }
.orb-particles span:nth-child(5) { top: 50%; left: 10%; animation-delay: -4s; }
.orb-particles span:nth-child(6) { bottom: 30%; left: 30%; animation-delay: -5s; }

@keyframes particleOrbit {
    0%, 100% { transform: translate(0, 0); opacity: 1; }
    50% { transform: translate(20px, -20px); opacity: 0.5; }
}



.connect {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-top: 16px;
}

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

.connect-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px;
    text-decoration: none;
    color: inherit;
    transition: var(--transition-bounce);
    position: relative;
    overflow: hidden;
}

.connect-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.05) 100%);
    opacity: 0;
    transition: var(--transition-normal);
}

.connect-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-primary);
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.2);
}

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

.connect-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    transition: var(--transition-normal);
}

.connect-card.telegram .connect-icon {
    background: rgba(0, 136, 204, 0.15);
    color: #08c;
    border: 1px solid rgba(0, 136, 204, 0.3);
}

.connect-card.instagram .connect-icon {
    background: linear-gradient(135deg, rgba(225, 48, 108, 0.15), rgba(88, 81, 219, 0.15));
    color: #e1306c;
    border: 1px solid rgba(225, 48, 108, 0.3);
}

.connect-card.email .connect-icon {
    background: rgba(99, 102, 241, 0.15);
    color: var(--accent-primary);
    border: 1px solid var(--border-glow);
}

.connect-card:hover .connect-icon {
    transform: scale(1.1) rotate(5deg);
}

.connect-info {
    flex: 1;
}

.connect-info h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 6px;
    transition: var(--transition-normal);
}

.connect-card:hover .connect-info h3 {
    color: var(--accent-primary);
}

.connect-info p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.connect-arrow {
    color: var(--text-muted);
    transition: var(--transition-normal);
}

.connect-card:hover .connect-arrow {
    color: var(--accent-primary);
    transform: translateX(5px);
}

.connect-glow {
    position: absolute;
    width: 150px;
    height: 150px;
    background: var(--accent-primary);
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: var(--transition-normal);
    pointer-events: none;
}

.connect-card:hover .connect-glow {
    opacity: 0.15;
}


.feedback {
    padding: 100px 0;
}

.feedback-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    padding: 60px;
    align-items: start;
}

.feedback-glow {
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: var(--accent-secondary);
    border-radius: 50%;
    filter: blur(150px);
    opacity: 0.1;
    pointer-events: none;
}

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

.feedback-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.2;
}

.feedback-subtitle {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
}

.feedback-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: relative;
    z-index: 1;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-group.full {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    padding-left: 4px;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper i {
    position: absolute;
    left: 16px;
    color: var(--text-muted);
    font-size: 1rem;
    transition: var(--transition-normal);
}

.input-wrapper input,
.input-wrapper textarea {
    width: 100%;
    padding: 14px 16px 14px 48px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    color: var(--text-primary);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition-normal);
    outline: none;
}

.input-wrapper textarea {
    padding-top: 14px;
    resize: vertical;
    min-height: 120px;
}

.input-wrapper input:focus,
.input-wrapper textarea:focus {
    border-color: var(--accent-primary);
    background: rgba(99, 102, 241, 0.05);
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.1);
}

.input-wrapper input:focus + i,
.input-wrapper textarea:focus + i {
    color: var(--accent-primary);
}

.input-wrapper input::placeholder,
.input-wrapper textarea::placeholder {
    color: var(--text-muted);
}

.textarea-wrapper i {
    top: 16px;
}

.submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 32px;
    background: var(--accent-gradient);
    color: white;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: var(--transition-normal);
    margin-top: 8px;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(99, 102, 241, 0.4);
}

.submit-btn i {
    transition: var(--transition-normal);
}

.submit-btn:hover i {
    transform: translateX(4px) translateY(-2px);
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: 0.5s;
}

.submit-btn:hover .btn-shine {
    left: 100%;
}


.closing {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.closing-content {
    text-align: center;
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.closing-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: var(--accent-gradient);
    border-radius: 50%;
    filter: blur(200px);
    opacity: 0.15;
    pointer-events: none;
}

.closing-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.closing-line {
    width: 60px;
    height: 4px;
    background: var(--accent-gradient);
    margin: 0 auto 40px;
    border-radius: 2px;
    position: relative;
    z-index: 1;
}

.closing-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 36px;
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    font-weight: 600;
    font-size: 1rem;
    border-radius: 12px;
    text-decoration: none;
    transition: var(--transition-normal);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.closing-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--accent-gradient);
    opacity: 0;
    transition: var(--transition-normal);
    z-index: -1;
}

.closing-btn:hover {
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(99, 102, 241, 0.3);
}

.closing-btn:hover::before {
    opacity: 1;
}

.closing-btn:hover {
    color: white;
}

.closing-btn i {
    transition: var(--transition-normal);
}

.closing-btn:hover i {
    transform: translateX(4px);
}


.footer {
    padding: 60px 0 30px;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    text-align: left;
    gap: 16px;
    margin-bottom: 20px;
}
.footer-logo {
    font-size: 1.5rem;
    font-weight: 800;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 8px;
    font-family: 'Times New Roman', Times, serif;
}

.footer-tagline {
    color: var(--text-secondary);
    max-width: 280px;
    font-size: 0.9rem;
    line-height: 1.5;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 44px;
    height: 44px;
    background: var(--bg-card);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 1.1rem;
    transition: var(--transition-normal);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--accent-gradient);
    opacity: 0;
    transition: var(--transition-normal);
}

.social-link:hover {
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3);
}

.social-link:hover::before {
    opacity: 1;
}

.social-link i {
    position: relative;
    z-index: 1;
    transition: var(--transition-normal);
}

.social-link:hover i {
    color: white;
}

.footer-policy-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 20px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 20px;
}

.footer-policy-link {
    color: var(--text-muted);
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.2s ease;
    position: relative;
}

.footer-policy-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent-primary);
    transition: width 0.2s ease;
}

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

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

.footer-dot {
    color: var(--text-muted);
    font-size: 0.6rem;
    opacity: 0.5;
}

.footer-bottom {
    text-align: center;
}

.copyright {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.footer-glow {
    position: absolute;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 200px;
    background: var(--accent-primary);
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.05;
    pointer-events: none;
}


.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}


@media (max-width: 1024px) {
    .story-card {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .story-visual {
        order: -1;
        height: 300px;
    }
    
    .vision-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
    
    .vision-content {
        text-align: center;
    }
    
    .feedback-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .feedback-content {
        text-align: center;
    }
    
    .float-card {
        display: none;
    }
}

@media (max-width: 768px) {
    .navbar {
        height: 70px;
    }
    
    .nav-center,
    .nav-right {
        display: none !important;
    }
    
    .mobile-menu-toggle {
        display: flex !important;
    }
    
    .mobile-menu {
        top: 70px;
    }
    
    .about-hero {
        padding: 100px 20px 60px;
        min-height: auto;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .story-card,
    .team-card,
    .feedback-wrapper {
        padding: 40px 24px;
    }
    
    .connect-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .footer-tagline {
        max-width: 100%;
    }
    
    .policy-modal {
        max-height: 92vh;
        border-radius: 16px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .story-title,
    .section-header .section-title,
    .vision-title,
    .feedback-title {
        font-size: 1.75rem;
    }
    
    .orbit-container {
        transform: scale(0.8);
    }
    
    .team-values {
        flex-direction: column;
        align-items: center;
    }
    
    .value-tag {
        width: 100%;
        justify-content: center;
    }
}


@keyframes shimmer {
    0% { background-position: -1000px 0; }
    100% { background-position: 1000px 0; }
}


::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: var(--bg-card-solid);
    border-radius: 4px;
    border: 2px solid var(--bg-primary);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-primary);
}


::selection {
    background: var(--accent-primary);
    color: white;
}


*:focus-visible {
    outline: 2px solid var(--accent-primary);
    outline-offset: 2px;
}


.mobile-welcome {
    color: var(--text-secondary);
    font-size: 13px;
    margin-bottom: 8px;
}

.mobile-logout-btn {
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: var(--error);
    padding: 10px 16px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    font-family: inherit;
}

.mobile-logout-btn:hover {
    background: rgba(239, 68, 68, 0.25);
}

.mobile-login-btn {
    display: block;
    text-align: center;
    background: linear-gradient(135deg, #8b5cf6, #6d28d9);
    color: white;
    padding: 12px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.mobile-login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
}
.footer-logo-img {
    height: 28px;
    width: auto;
    margin-top: -38px;
    margin-right: -16px;
    display: block;
}