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

.logo-link {
    text-decoration: none;
    color: inherit;
}

:root {
    --primary-color: #1db857;
    --primary-hover: #17a047;
    --dark-bg: #0a0a0a;
    --darker-bg: #050505;
    --card-bg: #121212;
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --border-color: #252525;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
    background-color: #000000;
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 900px;
    background: linear-gradient(180deg, 
        #1db857 0%,
        #17a047 12%,
        #158f43 20%,
        #12783a 28%,
        #0f6532 38%,
        #0c5229 48%,
        #093f20 58%,
        #062c17 68%,
        #041a0e 78%,
        #020d07 88%,
        #000000 100%
    );
    clip-path: ellipse(100% 100% at 50% 0%);
    z-index: 0;
    pointer-events: none;
    animation: gradientPulse 8s ease-in-out infinite alternate;
}

@keyframes gradientPulse {
    0% {
        opacity: 0.9;
    }
    100% {
        opacity: 1;
    }
}

#cursorCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
}

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

.navbar {
    position: fixed;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1200px;
    z-index: 1000;
    padding: 0 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.navbar.scrolled {
    max-width: 850px;
    padding: 0 12px;
}
.nav-pill {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 32px;
    background: rgba(18, 18, 18, 0.45);
    backdrop-filter: blur(12px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
    animation: slideDown 0.6s ease both;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.navbar.scrolled .nav-pill {
    padding: 10px 24px;
}

@keyframes slideDown {
    from { transform: translateY(-120%); opacity: 0; }
    to   { transform: translateY(0); opacity: 1; }
}

.logo-img {
    height: 32px;
    width: 32px;
    border-radius: 50%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.logo-link:hover .logo-img {
    transform: rotate(360deg);
}

.logo-text {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 0.5px;
    margin-left: 10px;
}

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

.nav-links a {
    position: relative;
    font-weight: 500;
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.3s;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s;
}

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

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

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    background: rgba(18, 18, 18, 0.95);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 0.8rem 0;
    min-width: 220px;
    max-width: 280px;
    max-height: 70vh;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
    z-index: 1001;
    margin-top: 8px;
}

.dropdown:last-of-type .dropdown-menu {
    left: auto;
    right: 0;
    transform: translateX(0) translateY(-10px);
}

.dropdown:first-of-type .dropdown-menu {
    left: 0;
    transform: translateX(0) translateY(-10px);
}

.dropdown-menu::-webkit-scrollbar {
    width: 6px;
}

.dropdown-menu::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
}

.dropdown-menu::-webkit-scrollbar-thumb {
    background: rgba(29, 184, 87, 0.5);
    border-radius: 3px;
}

.dropdown-menu::-webkit-scrollbar-thumb:hover {
    background: rgba(29, 184, 87, 0.7);
}

.dropdown:hover .dropdown-menu,
.dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown:last-of-type:hover .dropdown-menu,
.dropdown:last-of-type.active .dropdown-menu {
    transform: translateX(0) translateY(0);
}

.dropdown:first-of-type:hover .dropdown-menu,
.dropdown:first-of-type.active .dropdown-menu {
    transform: translateX(0) translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 0.8rem 1.2rem;
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.2s, background 0.2s;
    font-size: 0.95rem;
    font-weight: 400;
}

.dropdown-menu a::after {
    display: none;
}

.dropdown-menu a:hover {
    color: var(--primary-color);
    background: rgba(29, 184, 87, 0.1);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    background: transparent;
    border: none;
    padding: 8px;
    z-index: 1001;
    position: relative;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* HERO SECTION */
.about-hero {
    padding: 150px 0 80px;
    text-align: center;
    background: transparent;
    position: relative;
    z-index: 1;
}

.about-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, #2dd475 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeInUp 0.8s ease;
}

.about-hero-subtitle {
    font-size: 1.3rem;
    color: #ffffff;
    animation: fadeInUp 1s ease;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

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

/* WHAT IS PROMY */
.what-is-promy {
    padding: 80px 0;
    position: relative;
    z-index: 1;
}

.content-split {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 5rem;
    align-items: center;
}

.content-left h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.content-left .lead {
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.content-left p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.feature-highlights {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.highlight-item svg {
    stroke-width: 3;
    color: var(--primary-color);
    flex-shrink: 0;
}

.highlight-item span {
    color: var(--text-primary);
    font-weight: 500;
}

.stats-showcase {
    display: grid;
    gap: 1.5rem;
}

.stat-box {
    background: transparent;
    border: 1px solid rgba(29, 184, 87, 0.2);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-box:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(29, 184, 87, 0.2);
}

.stat-value {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* WHY PROMY */
.why-promy {
    padding: 80px 0;
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

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

.feature-card {
    background: transparent;
    border: 1px solid rgba(29, 184, 87, 0.2);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
    text-align: center;
}

.feature-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(29, 184, 87, 0.2);
}

.feature-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--primary-color);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon svg {
    stroke: #1db857;
    transform: scale(1.1);
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--text-primary);
}

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

/* TEAM SECTION */
.team-section {
    padding: 80px 0;
    position: relative;
    z-index: 1;
}

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

.team-card {
    background: transparent;
    border: 1px solid rgba(29, 184, 87, 0.2);
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.team-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(29, 184, 87, 0.2);
}

.team-avatar {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
}

.team-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 3px solid var(--primary-color);
}

.team-badge {
    position: absolute;
    bottom: -5px;
    right: -5px;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.team-badge.ceo {
    background: linear-gradient(135deg, #1db857 0%, #17a047 100%);
    color: white;
}

.team-badge.cto {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
}

.team-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.team-role {
    color: var(--primary-color);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.team-desc {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* CTA SECTION */
.cta-section {
    padding: 80px 0;
    position: relative;
    z-index: 1;
}

.cta-content {
    background: transparent;
    border: 1px solid rgba(29, 184, 87, 0.3);
    border-radius: 20px;
    padding: 4rem 3rem;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.cta-content p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    padding: 0.9rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.cta-btn.primary {
    background: linear-gradient(135deg, #1db857 0%, #17a047 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(29, 184, 87, 0.3);
}

.cta-btn.primary:hover {
    box-shadow: 0 8px 25px rgba(29, 184, 87, 0.5);
    transform: translateY(-2px);
}

.cta-btn.secondary {
    background: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.cta-btn.secondary:hover {
    background: rgba(29, 184, 87, 0.1);
    transform: translateY(-2px);
}

/* RESPONSIVE */
@media (max-width: 1100px) {
    .navbar {
        max-width: 95%;
    }
    .nav-links {
        gap: 0.4rem;
    }
    .nav-links a {
        font-size: 0.9rem;
    }
    .dropdown-menu {
        max-height: 60vh;
        max-width: 260px;
    }
}

@media (max-width: 1024px) {
    .content-split {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

@media (max-width: 900px) {
    .navbar {
        max-width: 90%;
    }
    .dropdown-menu {
        min-width: 200px;
        max-width: 240px;
        font-size: 0.9rem;
        max-height: 55vh;
    }
    .dropdown-menu a {
        padding: 0.7rem 1rem;
    }
}

@media (max-width: 820px) {
    .dropdown-menu {
        max-height: 50vh;
        min-width: 180px;
        max-width: 220px;
    }
    .dropdown-menu a {
        padding: 0.65rem 0.9rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    .navbar {
        top: 12px;
        left: 12px;
        right: 12px;
        transform: none;
        max-width: none;
    }

    .nav-pill {
        border-radius: 16px;
        padding: 10px 16px;
    }

    .nav-links {
        position: absolute;
        top: calc(100% + 10px);
        left: 0;
        right: 0;
        flex-direction: column;
        gap: 1.2rem;
        padding: 1.2rem;
        background: rgba(18, 18, 18, 0.85);
        backdrop-filter: blur(12px);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 16px;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-10px);
        transition: opacity 0.3s, transform 0.3s;
    }

    .nav-links.active {
        opacity: 1;
        pointer-events: all;
        transform: translateY(0);
    }

    .hamburger {
        display: flex;
    }

    .dropdown-menu {
        position: static;
        opacity: 0;
        visibility: hidden;
        max-height: 0;
        overflow: hidden;
        transform: none;
        background: transparent;
        border: none;
        backdrop-filter: none;
        padding: 0;
        margin: 0;
        transition: max-height 0.3s, opacity 0.3s, visibility 0.3s;
    }

    .dropdown.active .dropdown-menu {
        opacity: 1;
        visibility: visible;
        max-height: 500px;
        background: rgba(30, 30, 30, 0.8);
        border: 1px solid rgba(255, 255, 255, 0.06);
        border-radius: 8px;
        padding: 0.6rem 0;
        margin-top: 0.6rem;
        margin-left: 1rem;
    }

    .about-hero-title {
        font-size: 2.5rem;
    }

    .about-hero-subtitle {
        font-size: 1.1rem;
    }

    .content-left h2 {
        font-size: 2rem;
    }

    .content-left .lead {
        font-size: 1.1rem;
    }

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

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

    .cta-content {
        padding: 3rem 2rem;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

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