:root {
    --bg: #000000;
    --surface: #0a0a0a;
    --surface-bright: #141414;
    --primary: #ffffff;
    --primary-muted: rgba(255, 255, 255, 0.6);
    --accent: #c084fc;
    --accent-glow: rgba(192, 132, 252, 0.4);
    --border: rgba(255, 255, 255, 0.08);
    --glass: rgba(255, 255, 255, 0.03);
    --gradient: linear-gradient(135deg, #c084fc 0%, #818cf8 100%);
    --easing: cubic-bezier(0.76, 0, 0.24, 1);
}

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none;
    /* Hide default cursor for custom one */
}

html {
    scroll-behavior: smooth;
    background: var(--bg);
}

body {
    font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
    background-color: var(--bg);
    color: var(--primary);
    line-height: 1.5;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Custom Cursor */
.custom-cursor {
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 100000;
    mix-blend-mode: difference;
    will-change: transform;
}

/* Preloader */
.preloader {
    position: fixed;
    inset: 0;
    background: var(--bg);
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.06em;
}

.loader-text-wrap {
    height: 1.25em;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.loader-text {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.loader-text span {
    display: block;
    line-height: 1.25em;
    height: 1.25em;
    text-align: center;
}

/* Cinematic Grain */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3BaseFilter id='baseNoise'%3BfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/baseFilter%3E%3Crect width='100%25' height='100%25' filter='url(%23baseNoise)'/%3E%3C/svg%3E");
    opacity: 0.04;
    pointer-events: none;
    z-index: 9999;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 4rem;
}

/* Navbar */
#navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 0;
    z-index: 1000;
    background: #000000;
    border-bottom: 1px solid var(--border);
    transition: all 0.5s var(--easing);
}

#navbar.scrolled {
    padding: 1rem 0;
    background: #000000;
}

#navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.1em;
}

.logo-icon {
    width: 28px;
    height: 28px;
    color: var(--primary);
    transition: 0.3s var(--easing);
}

.logo:hover .logo-icon {
    color: var(--accent);
    filter: drop-shadow(0 0 8px var(--accent-glow));
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.navbar-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--primary);
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: 0.3s var(--easing);
}

.mobile-toggle:hover {
    background: var(--glass);
    color: var(--accent);
}

/* Mobile Menu Styles */
.mobile-menu {
    position: fixed;
    inset: 0;
    background: var(--bg);
    z-index: 2000;
    display: none;
    flex-direction: column;
    padding: 2rem;
    overflow-y: auto;
}

.mm-header {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 4rem;
}

.mm-close {
    background: none;
    border: none;
    color: var(--primary);
    cursor: pointer;
    padding: 12px;
    border-radius: 50%;
    transition: 0.3s var(--easing);
}

.mm-close:hover {
    background: var(--glass);
    color: var(--accent);
}

.mm-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    text-align: center;
}

.mm-links a {
    text-decoration: none;
    color: var(--primary);
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    transition: 0.3s var(--easing);
}

.mm-links a:hover {
    color: var(--accent);
    padding-left: 1rem;
}

/* Preloader Enhancements */
.preloader {
    position: fixed;
    inset: 0;
    background: var(--bg);
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.preloader-logo {
    width: 80px;
    height: 80px;
    color: var(--primary);
    stroke-dasharray: 400;
    stroke-dashoffset: 400;
    animation: drawLogo 2s forwards ease-in-out;
}

@keyframes drawLogo {
    to {
        stroke-dashoffset: 0;
    }
}

.loader-text-wrap {
    height: 1.25em;
    overflow: hidden;
    position: relative;
    width: 100vw;
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.06em;
}

/* Language Switcher */
.lang-switcher {
    display: flex;
    gap: 0.5rem;
    margin-left: 2rem;
}

.lang-btn {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--primary-muted);
    font-size: 0.65rem;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 4px;
    cursor: pointer;
    transition: 0.3s var(--easing);
}

.lang-btn.active {
    background: var(--primary);
    color: var(--bg);
    border-color: var(--primary);
}

.lang-btn:hover:not(.active) {
    border-color: var(--primary);
    color: var(--primary);
}

.nav-links a {
    text-decoration: none;
    color: var(--primary);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 600;
    opacity: 0.4;
    transition: 0.4s var(--easing);
}

.nav-links a:hover,
.nav-links a:focus {
    opacity: 1;
    outline: none;
}

.nav-links a:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 4px;
    border-radius: 4px;
}

/* Hero */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero h1 {
    font-size: 10vw;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 2rem;
}

.hero p {
    font-size: 1.25rem;
    color: var(--primary-muted);
    max-width: 600px;
    margin-bottom: 3.5rem;
    font-weight: 300;
}

.btn-primary {
    background: var(--primary);
    color: var(--bg);
    text-decoration: none;
    padding: 1.25rem 3rem;
    border-radius: 100px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: 0.5s var(--easing);
}

.btn-primary:hover,
.btn-primary:focus {
    transform: scale(1.05);
    background: var(--accent);
    color: var(--primary);
    outline: none;
}

.btn-primary:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 4px;
}

/* Work List */
.apps-section {
    padding: 10rem 0;
    position: relative;
}

.apps-list {
    display: flex;
    flex-direction: column;
}

.app-item {
    border-top: 1px solid var(--border);
    padding: 4rem 0;
    display: grid;
    grid-template-columns: 80px 1fr auto;
    align-items: center;
    transition: background 0.4s var(--easing), padding-left 0.4s var(--easing);
    position: relative;
    overflow: hidden;
}

.app-item:last-child {
    border-bottom: 1px solid var(--border);
}

.app-item:hover {
    padding-left: 2rem;
    background: var(--surface);
}

.app-meta {
    font-family: monospace;
    font-size: 0.9rem;
    opacity: 0.3;
}

.app-item h3 {
    font-size: 5vw;
    font-weight: 700;
    letter-spacing: -0.03em;
}

.app-tags {
    display: flex;
    gap: 2rem;
    transition: 0.4s var(--easing);
}

.app-item:hover .app-tags {
    opacity: 0;
    transform: translateX(20px);
}

.app-tags span {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    opacity: 0.5;
}

/* Hover Background Reveal */
.app-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.8s var(--easing), transform 0.8s var(--easing);
    z-index: -1;
    pointer-events: none;
    transform: scale(1.1);
}

.app-item:hover .app-bg {
    opacity: 0.15;
    /* Even more subtle to keep text readable */
    transform: scale(1);
}

.app-details-overlay {
    position: absolute;
    right: 4rem;
    max-width: 350px;
    text-align: right;
    opacity: 0;
    transform: translateX(30px);
    transition: 0.6s var(--easing);
}

.app-item:hover .app-details-overlay {
    opacity: 1;
    transform: translateX(0);
}

.app-details-overlay p {
    font-size: 0.9rem;
    color: var(--primary-muted);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.app-mini-stats {
    display: flex;
    justify-content: flex-end;
    gap: 2.5rem;
}

.mini-stat {
    display: flex;
    flex-direction: column;
}

.mini-stat span {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.mini-stat label {
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.5;
}

.app-download-links {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    margin-top: 2rem;
}

.store-btn {
    text-decoration: none;
    color: var(--primary);
    background: var(--glass);
    border: 1px solid var(--border);
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: 0.3s var(--easing);
    pointer-events: auto;
    /* Re-enable pointer events for buttons */
}

.store-btn:hover {
    background: var(--primary);
    color: var(--bg);
    border-color: var(--primary);
}

.store-btn i {
    width: 14px;
    height: 14px;
}

/* Stats */
.stats-section {
    padding: 10rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4rem;
}

.stat-number {
    font-size: 4rem;
    font-weight: 800;
    display: block;
    letter-spacing: -0.05em;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2rem;
    color: var(--primary-muted);
}

/* About */
.about-section {
    padding: 15rem 0;
}

.about-text h2 {
    font-size: 5vw;
    line-height: 1;
    letter-spacing: -0.04em;
    margin-bottom: 3rem;
}

.about-text p {
    font-size: 1.5rem;
    color: var(--primary-muted);
    max-width: 800px;
    font-weight: 300;
    margin-bottom: 6rem;
}

.vision-mission-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6rem;
}

.vm-item {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.vm-tag {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--accent);
    font-weight: 800;
}

.vm-item h3 {
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.6;
    color: var(--primary);
}

/* Section Titles & Tags */
.section-title {
    margin-bottom: 4rem;
}

.tag {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: monospace;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--accent);
    margin-bottom: 2rem;
    background: rgba(192, 132, 252, 0.05);
    padding: 8px 16px;
    border-radius: 4px;
    border-left: 2px solid var(--accent);
}

.live-dot {
    width: 8px;
    height: 8px;
    background: #ff3333;
    border-radius: 50%;
    box-shadow: 0 0 12px #ff3333;
    animation: pulseRed 1.8s infinite;
}

@keyframes pulseRed {
    0% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.4;
        transform: scale(1.3);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.section-title h2 {
    font-size: 5vw;
    line-height: 1.1;
    letter-spacing: -0.04em;
    font-weight: 800;
}

/* Global Map Section */
.map-section {
    padding: 15rem 0;
    overflow: hidden;
}

.map-container {
    position: relative;
    background: #050505;
    border: 1px solid var(--border);
    border-radius: 40px;
    height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.5);
}

/* Grid Overlay for Tech Look */
.map-container::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(var(--border) 1px, transparent 1px),
        linear-gradient(90deg, var(--border) 1px, transparent 1px);
    background-size: 40px 40px;
    background-position: center;
    opacity: 0.3;
    z-index: 1;
    pointer-events: none;
}

/* Scanning Beam Effect */
.map-container::after {
    content: '';
    position: absolute;
    top: -50%;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(192, 132, 252, 0.05), transparent);
    animation: scan 8s linear infinite;
    z-index: 2;
    pointer-events: none;
}

@keyframes scan {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(200%);
    }
}

.map-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.25;
    filter: brightness(0.6) contrast(1.4) grayscale(1);
    z-index: 0;
}

.map-pulses {
    position: absolute;
    inset: 4rem;
    pointer-events: none;
    z-index: 10;
}

.map-pulse {
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 15px var(--accent);
    transition: transform 0.3s var(--easing);
    pointer-events: auto;
}

.map-pulse:hover {
    transform: scale(1.5);
    background: #fff;
    cursor: crosshair;
}

.map-pulse::after {
    content: '';
    position: absolute;
    inset: -6px;
    border: 1px solid var(--accent);
    border-radius: 50%;
    animation: mapPulse 2.5s infinite;
}

.map-pulse.primary {
    width: 14px;
    height: 14px;
    background: #fff;
    box-shadow: 0 0 25px var(--accent);
}

.map-label {
    position: absolute;
    top: 20px;
    left: 20px;
    font-family: monospace;
    font-size: 0.65rem;
    color: var(--accent);
    background: rgba(0, 0, 0, 0.7);
    padding: 2px 6px;
    border-radius: 4px;
    white-space: nowrap;
    opacity: 0.8;
    letter-spacing: 0.1em;
    pointer-events: none;
    border: 1px solid rgba(192, 132, 252, 0.3);
    z-index: 11;
}

@keyframes mapPulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(4);
        opacity: 0;
    }
}

.map-overlay-text {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    max-width: 320px;
    z-index: 5;
    padding: 1.2rem 1.8rem;
    background: rgba(5, 5, 5, 0.85);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid var(--border);
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: monospace;
    font-size: 0.7rem;
    color: #4ade80;
    margin-bottom: 1rem;
    letter-spacing: 0.2em;
}

.pulse-green {
    width: 8px;
    height: 8px;
    background: #4ade80;
    border-radius: 50%;
    animation: pulseGlow 1.5s infinite;
}

@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(74, 222, 128, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(74, 222, 128, 0);
    }
}

.map-overlay-text p {
    font-size: 1rem;
    line-height: 1.5;
    font-weight: 300;
    margin: 0;
    opacity: 0.8;
}

/* Responsive Map Adjustments */
@media (max-width: 968px) {
    .map-container {
        height: auto;
        display: flex;
        flex-direction: column;
        background: transparent;
        border: none;
        box-shadow: none;
        overflow: visible;
        margin: 0;
    }

    .map-img {
        position: relative;
        height: 350px;
        border-radius: 24px;
        opacity: 0.4;
        border: 1px solid var(--border);
        object-fit: cover;
    }

    .map-pulses {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 350px;
        inset: 0;
        z-index: 10;
    }

    .map-pulse {
        width: 8px;
        height: 8px;
    }

    .map-pulse.primary {
        width: 10px;
        height: 10px;
    }

    .map-label {
        display: none;
    }

    .map-overlay-text {
        position: relative;
        bottom: auto;
        left: auto;
        max-width: 100%;
        width: 100%;
        margin-top: 1.5rem;
        padding: 1.5rem;
        background: var(--surface);
        border: 1px solid var(--border);
        backdrop-filter: none;
        border-radius: 20px;
        z-index: 5;
    }
}

/* Founder Section Styles */
.founder-wrap {
    display: grid;
    grid-template-columns: 450px 1fr;
    gap: 5rem;
    align-items: center;
    background: var(--surface);
    padding: 4rem;
    border-radius: 40px;
    border: 1px solid var(--border);
    transition: transform 0.8s var(--easing);
}

.founder-img {
    aspect-ratio: 1/1;
    border-radius: 30px;
    overflow: hidden;
}

.founder-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(1);
    transition: 1.2s var(--easing);
}

.founder-wrap:hover .founder-img img {
    filter: grayscale(0);
    transform: scale(1.05);
}

.founder-label {
    font-size: 0.7rem;
    color: var(--accent);
    letter-spacing: 0.2em;
    font-weight: 800;
    display: block;
    margin-bottom: 1rem;
}

.founder-info h4 {
    font-size: 3rem;
    margin-bottom: 2rem;
}

.founder-info p {
    font-size: 1.1rem;
    color: var(--primary-muted);
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.founder-expertise {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.founder-expertise span {
    padding: 8px 16px;
    background: var(--glass);
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* Mobilde Alta Geçsin */
@media (max-width: 968px) {
    .founder-wrap {
        grid-template-columns: 1fr;
        padding: 2rem;
        gap: 2rem;
    }

    .founder-info h4 {
        font-size: 2rem;
    }
}

/* Contact */
.contact-section {
    padding: 10rem 0 20rem;
    text-align: center;
}

.contact-wrap h2 {
    font-size: 8vw;
    line-height: 0.9;
    letter-spacing: -0.05em;
    margin-bottom: 3rem;
}

.email-link {
    font-size: 2rem;
    color: var(--primary);
    text-decoration: none;
    font-weight: 700;
    position: relative;
    padding-bottom: 10px;
}

.email-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s var(--easing);
}

.email-link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* Footer */
footer {
    padding: 6rem 0 3rem;
    border-top: 1px solid var(--border);
    margin-top: 8rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
}

.footer-bottom p {
    color: var(--primary);
    opacity: 0.6;
    font-weight: 400;
}

.socials {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.social-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    opacity: 0.7;
    transition: all 0.3s var(--easing);
    position: relative;
}

.social-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width 0.3s var(--easing);
}

.social-link:hover {
    opacity: 1;
    color: var(--accent);
}

.social-link:hover::after {
    width: 100%;
}

.social-links {
    display: flex;
    gap: 2rem;
}

.social-links a {
    color: var(--primary);
    text-decoration: none;
}

/* Responsive */
@media (max-width: 968px) {
    .container {
        padding: 0 2rem;
    }

    .hero h1 {
        font-size: 15vw;
    }

    .hero p {
        font-size: 1rem;
    }

    .app-item {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 3rem 0;
    }

    .app-meta {
        display: none;
    }

    .app-item h3 {
        font-size: 10vw;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .stat-label {
        font-size: 0.65rem;
        letter-spacing: 0.15rem;
    }

    .about-text h2 {
        font-size: 10vw;
    }

    .about-text p {
        font-size: 1.1rem;
    }

    .vision-mission-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .nav-links {
        display: none;
    }

    /* Hamburger Menu Icon (for future implementation) */
    .mobile-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .custom-cursor {
        display: none;
    }

    * {
        cursor: auto !important;
    }

    .app-details-overlay {
        position: static;
        max-width: 100%;
        text-align: center;
        transform: translateY(10px);
        margin-top: 1rem;
        opacity: 1;
        /* Visible by default on mobile for better UX */
    }

    .app-item:hover .app-details-overlay {
        transform: translateY(0);
    }

    .app-mini-stats {
        justify-content: center;
    }

    .app-download-links {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .socials {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
    }

    footer {
        padding: 4rem 0 2rem;
        margin-top: 4rem;
    }

    .section-title h2 {
        font-size: 10vw;
    }

    .contact-wrap h2 {
        font-size: 12vw;
    }

    .email-link {
        font-size: 1.5rem;
    }
}

.reveal {
    opacity: 1;
    /* GSAP will handle animations, but let's keep them visible by default if JS fails */
}

/* Coming Soon Toast */
.coming-soon-toast {
    position: fixed;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: var(--bg);
    padding: 12px 30px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    z-index: 1000000;
    pointer-events: none;
    box-shadow: 0 10px 30px rgba(192, 132, 252, 0.4);
}

/* Promo Popup Styles */
.promo-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

.promo-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.promo-content {
    background: linear-gradient(180deg, rgba(30, 30, 35, 0.8) 0%, rgba(15, 15, 20, 0.95) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 32px;
    padding: 4rem 3rem;
    max-width: 460px;
    width: 90%;
    position: relative;
    text-align: center;
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.8), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transform: translateY(40px) scale(0.95);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
}

.promo-glow {
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.3) 0%, rgba(0, 0, 0, 0) 70%);
    pointer-events: none;
    z-index: 0;
}

.promo-overlay.active .promo-content {
    transform: translateY(0) scale(1);
}

.promo-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.promo-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    transform: rotate(90deg);
}

.promo-body {
    position: relative;
    z-index: 1;
}

.promo-icon-wrap {
    width: 80px;
    height: 80px;
    border-radius: 24px;
    background: linear-gradient(135deg, #1e3a8a 0%, #0f172a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    box-shadow: 0 15px 30px rgba(30, 58, 138, 0.4), inset 0 2px 0 rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.promo-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    background: rgba(251, 191, 36, 0.1);
    padding: 6px 14px;
    border-radius: 100px;
}

.live-pulse {
    width: 8px;
    height: 8px;
    background-color: var(--accent);
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 10px var(--accent);
    animation: pulse-op 2s infinite;
}

@keyframes pulse-op {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
        box-shadow: 0 0 2px var(--accent);
    }

    100% {
        opacity: 1;
    }
}

.promo-title {
    font-size: 2.4rem;
    font-weight: 800;
    margin-bottom: 0.2rem;
    letter-spacing: -0.03em;
    color: #fff;
}

.promo-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
    margin-bottom: 2rem;
}

.promo-desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.promo-actions {
    display: flex;
    justify-content: center;
}

.promo-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    background: #fff;
    color: #000;
    text-decoration: none;
    padding: 1.25rem 2rem;
    border-radius: 16px;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    border: none;
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.15);
}

.promo-btn:hover {
    background: var(--accent);
    color: #000;
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 35px rgba(251, 191, 36, 0.3);
}

.promo-btn i {
    transition: transform 0.4s ease;
}

.promo-btn:hover i {
    transform: translateX(5px);
}

/* Decision Roulette (Cark) Page Styles */
.hero-cark {
    min-height: 100vh;
    padding-top: 120px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-cark-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-cark-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-cark-image img {
    width: 100%;
    max-width: 600px;
    filter: drop-shadow(0 0 50px var(--accent-glow));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(2deg);
    }
}

.magic-box {
    margin-top: 3rem;
    padding: 2.5rem;
    background: rgba(192, 132, 252, 0.05);
    border: 1px solid var(--accent);
    border-radius: 24px;
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
    animation: glowPulse 2s infinite alternate;
}

@keyframes glowPulse {
    from {
        box-shadow: 0 0 20px rgba(192, 132, 252, 0.1);
    }

    to {
        box-shadow: 0 0 40px rgba(192, 132, 252, 0.3);
    }
}

.magic-box h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--accent);
}

.magic-box p {
    color: var(--primary-muted);
    margin-bottom: 2rem;
}

.magic-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: var(--accent);
    color: #000;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: 0.3s var(--easing);
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.magic-btn:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.fallback-link {
    display: block;
    margin-top: 1.5rem;
    color: var(--primary-muted);
    font-size: 0.9rem;
    text-decoration: none;
    transition: 0.3s;
}

.fallback-link:hover {
    color: var(--primary);
}

.how-it-works {
    padding: 10rem 0;
    background: var(--surface);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}

.step-card {
    padding: 3rem;
    background: var(--glass);
    border: 1px solid var(--border);
    border-radius: 32px;
    transition: 0.4s var(--easing);
}

.step-card:hover {
    background: var(--surface-bright);
    transform: translateY(-10px);
}

.step-num {
    font-size: 4rem;
    font-weight: 800;
    opacity: 0.1;
    line-height: 1;
    margin-bottom: 1rem;
}

.step-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.step-card p {
    color: var(--primary-muted);
    line-height: 1.6;
}

@media (max-width: 992px) {
    .hero-cark-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-cark-image {
        order: -1;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   CARK PAGE — NEW FEATURE SECTIONS
   ========================================= */

/* Hero Wheel Canvas */
.hero-cark-image {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.wheel-wrap {
    position: relative;
    display: inline-block;
}

.wheel-pointer {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 14px solid transparent;
    border-right: 14px solid transparent;
    border-top: 28px solid var(--accent);
    filter: drop-shadow(0 0 8px var(--accent));
    z-index: 2;
}

.spin-btn {
    background: var(--gradient);
    color: #fff;
    border: none;
    padding: 0.9rem 2.5rem;
    border-radius: 100px;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: 0.3s var(--easing);
    box-shadow: 0 8px 30px rgba(192, 132, 252, 0.4);
}

.spin-btn:hover {
    transform: scale(1.06);
    filter: brightness(1.15);
}

.spin-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.spin-result {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--accent);
    min-height: 2rem;
    text-align: center;
    transition: 0.4s;
}

/* Deep Link Preview Card */
.preview-card {
    margin-top: 2.5rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(192, 132, 252, 0.08), rgba(129, 140, 248, 0.08));
    border: 1px solid rgba(192, 132, 252, 0.4);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.preview-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(192, 132, 252, 0.06) 0%, transparent 60%);
    pointer-events: none;
}

.preview-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(192, 132, 252, 0.15);
    border: 1px solid rgba(192, 132, 252, 0.3);
    border-radius: 100px;
    padding: 4px 14px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--accent);
    margin-bottom: 1rem;
}

.preview-badge .dot {
    width: 7px;
    height: 7px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulseRed 1.5s infinite;
}

.preview-title {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.preview-items {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1rem 0 1.5rem;
}

.preview-item-pill {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: 5px 14px;
    font-size: 0.8rem;
    color: var(--primary-muted);
}

.preview-item-pill.overflow {
    color: var(--accent);
}

/* Social Proof Strip */
.proof-strip {
    padding: 3rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--surface);
}

.proof-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.proof-item span {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.4rem;
}

.proof-item label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--primary-muted);
}

/* Features Grid */
.features-section {
    padding: 10rem 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.feature-card {
    padding: 2.5rem;
    background: var(--glass);
    border: 1px solid var(--border);
    border-radius: 28px;
    transition: 0.4s var(--easing);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient);
    opacity: 0;
    transition: 0.4s var(--easing);
}

.feature-card:hover {
    border-color: rgba(192, 132, 252, 0.4);
    transform: translateY(-8px);
}

.feature-card:hover::before {
    opacity: 0.04;
}

.feature-icon {
    width: 52px;
    height: 52px;
    background: rgba(192, 132, 252, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--accent);
}

.feature-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.feature-card p {
    color: var(--primary-muted);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* Comparison Table */
.comparison-section {
    padding: 8rem 0;
    background: var(--surface);
}

.comparison-wrap {
    overflow-x: auto;
    margin-top: 3rem;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.comparison-table th,
.comparison-table td {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--border);
    text-align: center;
    font-size: 0.9rem;
}

.comparison-table thead th {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--primary-muted);
    font-weight: 700;
}

.comparison-table thead th.highlight-col {
    color: var(--accent);
    background: rgba(192, 132, 252, 0.05);
    border-radius: 12px 12px 0 0;
}

.comparison-table td.highlight-col {
    background: rgba(192, 132, 252, 0.04);
}

.comparison-table td:first-child {
    text-align: left;
    color: var(--primary-muted);
}

.check {
    color: #4ade80;
    font-size: 1.1rem;
}

.cross {
    color: #f87171;
    font-size: 1.1rem;
}

/* Share Section */
.share-section {
    padding: 8rem 0;
    text-align: center;
}

.share-section h2 {
    font-size: 3rem;
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
}

.share-section p {
    color: var(--primary-muted);
    margin-bottom: 3rem;
}

.share-btns {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0.9rem 2rem;
    border-radius: 100px;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    transition: 0.3s var(--easing);
    border: 1px solid var(--border);
    color: var(--primary);
    background: var(--glass);
}

.share-btn:hover {
    transform: translateY(-4px);
}

.share-btn.whatsapp:hover {
    background: #25D366;
    border-color: #25D366;
    color: #fff;
}

.share-btn.telegram:hover {
    background: #229ED9;
    border-color: #229ED9;
    color: #fff;
}

.share-btn.twitter:hover {
    background: #1d9bf0;
    border-color: #1d9bf0;
    color: #fff;
}

.share-btn.copy-link:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #000;
}

/* Cark FAQ */
.cark-faq {
    padding: 10rem 0;
}

.cark-faq-list {
    margin-top: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cark-faq-item {
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}

.cark-faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.75rem 0;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.05rem;
    transition: 0.3s;
    gap: 1rem;
}

.cark-faq-question:hover {
    color: var(--accent);
}

.cark-faq-question .faq-arrow {
    width: 24px;
    height: 24px;
    color: var(--primary-muted);
    transition: transform 0.3s var(--easing);
    flex-shrink: 0;
}

.cark-faq-item.open .faq-arrow {
    transform: rotate(180deg);
    color: var(--accent);
}

.cark-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--easing), padding 0.3s;
    color: var(--primary-muted);
    line-height: 1.7;
    font-size: 0.95rem;
}

.cark-faq-item.open .cark-faq-answer {
    max-height: 200px;
    padding-bottom: 1.5rem;
}

/* Email Capture */
.email-capture {
    padding: 8rem 0;
    background: var(--surface);
    text-align: center;
}

.email-capture h2 {
    font-size: 2.5rem;
    letter-spacing: -0.03em;
    margin-bottom: 0.75rem;
}

.email-capture p {
    color: var(--primary-muted);
    margin-bottom: 2.5rem;
}

.email-form {
    display: flex;
    gap: 1rem;
    justify-content: center;
    max-width: 500px;
    margin: 0 auto;
}

.email-form input[type="email"] {
    flex: 1;
    background: var(--glass);
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: 0.9rem 1.75rem;
    color: var(--primary);
    font-size: 0.95rem;
    font-family: inherit;
    outline: none;
    transition: 0.3s;
}

.email-form input[type="email"]:focus {
    border-color: var(--accent);
}

.email-form button {
    background: var(--accent);
    color: #000;
    border: none;
    border-radius: 100px;
    padding: 0.9rem 2rem;
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: 0.3s var(--easing);
    white-space: nowrap;
}

.email-form button:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.email-success-msg {
    color: #4ade80;
    font-size: 0.9rem;
    margin-top: 1rem;
    display: none;
}

/* Store Badges */
.store-badges {
    display: flex;
    gap: 1rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

.store-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--surface-bright);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 600;
    transition: 0.3s var(--easing);
}

.store-badge:hover {
    border-color: var(--accent);
    background: rgba(192, 132, 252, 0.08);
}

.store-badge .badge-sub {
    display: block;
    font-size: 0.65rem;
    font-weight: 400;
    color: var(--primary-muted);
    margin-bottom: 1px;
}

.store-badge .badge-name {
    font-size: 1rem;
    font-weight: 800;
}

.store-badge.soon {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

/* Responsive — new sections */
@media (max-width: 768px) {
    .proof-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .email-form {
        flex-direction: column;
    }

    .share-btns {
        flex-direction: column;
        align-items: center;
    }

    .store-badges {
        justify-content: center;
    }
}