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

:root {
    --bg-primary: #050816;
    --bg-secondary: #0a0e1f;
    --bg-card: #111827;
    --bg-card-hover: #1a2236;
    --purple: #6D5BFF;
    --purple-light: #7C4DFF;
    --cyan: #5EDCFF;
    --white: #FFFFFF;
    --text-muted: #8b92a8;
    --text-soft: #b4b9cc;
    --border: rgba(255, 255, 255, 0.08);
    --border-strong: rgba(109, 91, 255, 0.3);
    --gradient: linear-gradient(135deg, #7C4DFF 0%, #6D5BFF 50%, #5EDCFF 100%);
    --font: 'Poppins', sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }

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

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* CURSOR GLOW */
.cursor-glow {
    position: fixed;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(124, 77, 255, 0.15) 0%, transparent 70%);
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease;
    opacity: 0;
    mix-blend-mode: screen;
}

body:hover .cursor-glow { opacity: 1; }

/* NAVBAR */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 20px 0;
    background: rgba(5, 8, 22, 0.3);
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
    border-bottom: 1px solid transparent;
    transition: var(--transition);
}
.navbar.scrolled {
    padding: 14px 0;
    background: rgba(5, 8, 22, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}
.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}
.nav-logo {
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 3px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.nav-links { display: flex; list-style: none; gap: 2.5rem; }
.nav-links a {
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--text-soft);
    transition: var(--transition);
}
.nav-links a:hover { color: var(--white); }
.nav-btn {
    padding: 10px 24px;
    background: transparent;
    border: 1px solid var(--border-strong);
    color: var(--white);
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
}
.nav-btn:hover { background: var(--gradient); border-color: transparent; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--white); transition: var(--transition); }

/* HERO */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 120px 24px 80px;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }

/* Aurora */
.aurora {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    animation: aurora-float 20s ease-in-out infinite;
}
.aurora-1 {
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(124, 77, 255, 0.4) 0%, transparent 70%);
    top: -10%; left: -10%;
    animation-delay: 0s;
}
.aurora-2 {
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(94, 220, 255, 0.3) 0%, transparent 70%);
    bottom: -10%; right: -10%;
    animation-delay: -7s;
}
.aurora-3 {
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(176, 109, 255, 0.3) 0%, transparent 70%);
    top: 40%; left: 50%;
    transform: translateX(-50%);
    animation-delay: -14s;
}
@keyframes aurora-float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(50px, -30px) scale(1.1); }
    66% { transform: translate(-30px, 40px) scale(0.95); }
}

/* Mesh gradient */
.mesh-gradient {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(124, 77, 255, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(94, 220, 255, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 80%, rgba(176, 109, 255, 0.1) 0%, transparent 50%);
    animation: mesh-shift 15s ease-in-out infinite;
}
@keyframes mesh-shift {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Noise */
.noise-overlay {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    pointer-events: none;
}

/* Particle canvas */
#particleCanvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
}
.glow-1 {
    width: 600px; height: 600px;
    background: rgba(124, 77, 255, 0.25);
    top: 20%; left: 50%;
    transform: translateX(-50%);
    animation: glow-pulse 8s ease-in-out infinite;
}
.glow-2 {
    width: 500px; height: 500px;
    background: rgba(94, 220, 255, 0.15);
    bottom: 10%; right: 20%;
    animation: glow-pulse 10s ease-in-out infinite reverse;
}
.glow-3 {
    width: 400px; height: 400px;
    background: rgba(176, 109, 255, 0.15);
    top: 60%; left: 10%;
    animation: glow-pulse 12s ease-in-out infinite;
}
@keyframes glow-pulse {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.2); opacity: 1; }
}

.hero-waves {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 40%;
    pointer-events: none;
}
.hero-waves svg { width: 100%; height: 100%; }
.wave { fill: none; stroke-width: 2; }
.wave-1 { stroke: rgba(124, 77, 255, 0.4); }
.wave-2 { stroke: rgba(94, 220, 255, 0.3); }

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
}
.hero-logo-wrap {
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
}
.hero-logo-glow {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 450px; height: 450px;
    background: radial-gradient(circle, rgba(124, 77, 255, 0.5) 0%, rgba(94, 220, 255, 0.2) 50%, transparent 70%);
    border-radius: 50%;
    filter: blur(30px);
    animation: pulse-glow 4s ease-in-out infinite;
}
@keyframes pulse-glow {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.7; }
    50% { transform: translate(-50%, -50%) scale(1.15); opacity: 1; }
}
.hero-logo {
    width: 350px; height: 350px;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 0 60px rgba(124, 77, 255, 0.7));
    animation: float 6s ease-in-out infinite, breathe 4s ease-in-out infinite;
}
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}
@keyframes breathe {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}
.hero-powered {
    font-size: 0.9rem;
    letter-spacing: 4px;
    color: var(--text-soft);
    margin-bottom: 1.5rem;
    font-weight: 500;
}
.hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
}
.hero-desc {
    font-size: 1.1rem;
    color: var(--text-soft);
    margin-bottom: 2.5rem;
    font-weight: 300;
}
.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}
.btn-google {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: var(--purple);
    color: var(--white);
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
}
.btn-google:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(124, 77, 255, 0.4);
}
.btn-google i { font-size: 1.3rem; }
.btn-google-blue { background: var(--cyan); color: var(--bg-primary); }
.btn-google-blue:hover { box-shadow: 0 12px 32px rgba(94, 220, 255, 0.4); }
.btn-google-purple { background: #b06dff; }
.btn-google-purple:hover { box-shadow: 0 12px 32px rgba(176, 109, 255, 0.4); }
.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: transparent;
    border: 1px solid var(--border-strong);
    color: var(--white);
    border-radius: 12px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
}
.btn-outline:hover {
    background: rgba(124, 77, 255, 0.1);
    border-color: var(--purple);
    transform: translateY(-3px);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px; left: 50%;
    transform: translateX(-50%);
    color: var(--text-muted);
    font-size: 1.2rem;
    animation: bounce 2s infinite;
    z-index: 1;
}
@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* PRODUCT SECTIONS */
.product-section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}
.section-bg-glow {
    position: absolute;
    top: 50%;
    width: 600px; height: 600px;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
    opacity: 0.4;
    animation: glow-pulse 8s ease-in-out infinite;
}
.product-finance { background: linear-gradient(180deg, var(--bg-primary) 0%, #0a0e2a 50%, var(--bg-primary) 100%); }
.product-finance .section-bg-glow { right: -200px; transform: translateY(-50%); background: rgba(124, 77, 255, 0.3); }
.product-health { background: linear-gradient(180deg, var(--bg-primary) 0%, #051525 50%, var(--bg-primary) 100%); }
.product-health .section-bg-glow { left: -200px; transform: translateY(-50%); background: rgba(94, 220, 255, 0.25); }
.product-shopping { background: linear-gradient(180deg, var(--bg-primary) 0%, #150a2a 50%, var(--bg-primary) 100%); }
.product-shopping .section-bg-glow { left: 50%; transform: translate(-50%, -50%); background: rgba(176, 109, 255, 0.25); }

.product-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}
.product-container.reverse { direction: rtl; }
.product-container.reverse > * { direction: ltr; }
.product-container.centered {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 3rem;
}
.product-label {
    display: inline-block;
    font-size: 0.8rem;
    letter-spacing: 3px;
    color: var(--purple);
    font-weight: 600;
    margin-bottom: 1rem;
}
.product-health .product-label { color: var(--cyan); }
.product-shopping .product-label { color: #b06dff; }
.product-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
}
.product-desc {
    font-size: 1.1rem;
    color: var(--text-soft);
    margin-bottom: 2rem;
    line-height: 1.7;
    max-width: 480px;
}
.product-desc.centered { max-width: 600px; margin-left: auto; margin-right: auto; }
.product-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }
.product-buttons-centered {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}
.product-text-full { text-align: center; }

/* PHONE MOCKUP */
.product-visual { display: flex; justify-content: center; }
.product-visual-centered {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem 0;
}
.center-glow {
    position: absolute;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(176, 109, 255, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
    animation: glow-pulse 6s ease-in-out infinite;
}
.phone-mockup {
    width: 320px; height: 660px;
    background: #1a1a1a;
    border-radius: 44px;
    padding: 14px;
    box-shadow: 
        0 0 0 2px #2a2a2a,
        0 40px 80px rgba(0, 0, 0, 0.5),
        0 0 100px rgba(124, 77, 255, 0.2);
    position: relative;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.6s ease;
    animation: phone-float 6s ease-in-out infinite;
}
.phone-mockup.large {
    width: 340px; height: 700px;
}
@keyframes phone-float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}
.phone-hover:hover {
    transform: translateY(-20px) scale(1.02);
    box-shadow: 
        0 0 0 2px #3a3a3a,
        0 60px 100px rgba(0, 0, 0, 0.6),
        0 0 120px rgba(124, 77, 255, 0.3);
}
.phone-mockup:hover {
    animation-play-state: paused;
}
.phone-notch {
    position: absolute;
    top: 14px; left: 50%;
    transform: translateX(-50%);
    width: 120px; height: 26px;
    background: #1a1a1a;
    border-radius: 0 0 18px 18px;
    z-index: 3;
}
.phone-screen {
    width: 100%; height: 100%;
    background: #0f0f1e;
    border-radius: 34px;
    overflow: hidden;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}
.app-screen {
    padding: 44px 16px 16px;
    height: 100%;
    display: flex;
    flex-direction: column;
    color: var(--white);
}
.app-status-bar {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.app-header-small {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 8px;
}
.app-balance {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 4px;
}
.app-balance-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}
.app-stats-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 20px;
}
.app-stat {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.app-stat-label { font-size: 0.7rem; color: var(--text-muted); }
.app-stat-value { font-size: 0.95rem; font-weight: 700; }
.app-stat-value.income { color: #10B981; }
.app-stat-value.expense { color: #EF4444; }
.app-section-title {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 12px;
    font-weight: 500;
}
.app-chart {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    height: 100px;
    padding: 12px 8px;
    background: rgba(255,255,255,0.03);
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.05);
    margin-bottom: 20px;
}
.chart-bar {
    flex: 1;
    background: var(--gradient);
    border-radius: 4px 4px 0 0;
    min-height: 15px;
    opacity: 0.8;
}
.app-transaction {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    background: rgba(255,255,255,0.03);
    border-radius: 10px;
    margin-bottom: 8px;
    font-size: 0.85rem;
}
.transaction-dot { width: 8px; height: 8px; border-radius: 50%; }
.transaction-dot.red { background: #EF4444; }
.transaction-dot.green { background: #10B981; }
.app-transaction span:nth-child(2) { flex: 1; }
.transaction-amount { font-weight: 600; font-size: 0.85rem; }
.transaction-amount.negative { color: #EF4444; }
.transaction-amount.positive { color: #10B981; }

.med-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    margin-bottom: 10px;
}
.med-check {
    width: 28px; height: 28px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.75rem;
}
.med-check.checked {
    background: var(--cyan);
    border-color: var(--cyan);
    color: var(--bg-primary);
}
.med-info { flex: 1; display: flex; flex-direction: column; gap: 2px; }
.med-name { font-size: 0.9rem; font-weight: 600; }
.med-time { font-size: 0.75rem; color: var(--text-muted); }
.med-status { font-size: 0.75rem; color: var(--text-muted); }
.med-item.upcoming { opacity: 0.6; }

.list-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    margin-bottom: 8px;
    font-size: 0.9rem;
}
.list-check {
    width: 22px; height: 22px;
    border-radius: 6px;
    border: 2px solid rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.7rem;
}
.list-check.checked {
    background: #b06dff;
    border-color: #b06dff;
    color: var(--white);
}
.list-name { flex: 1; font-weight: 500; }
.list-name.checked-text { text-decoration: line-through; opacity: 0.6; }
.list-qty { font-size: 0.8rem; color: var(--text-muted); }

/* COMING SOON */
.coming-soon-section {
    padding: 140px 0;
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
}
.coming-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.coming-glow {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 800px; height: 600px;
    background: radial-gradient(ellipse, rgba(124, 77, 255, 0.25) 0%, rgba(94, 220, 255, 0.1) 50%, transparent 70%);
    filter: blur(80px);
    animation: glow-pulse 8s ease-in-out infinite;
}
.coming-noise {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}
.coming-container {
    position: relative;
    z-index: 1;
}
.coming-massive-text {
    font-size: clamp(6rem, 15vw, 14rem);
    font-weight: 900;
    text-align: center;
    background: linear-gradient(180deg, rgba(124, 77, 255, 0.15) 0%, rgba(124, 77, 255, 0.05) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.04em;
    line-height: 1;
    margin-bottom: 2rem;
    position: relative;
}
.coming-massive-text::before {
    content: 'YAKINDA';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(124, 77, 255, 0.4) 0%, transparent 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: blur(40px);
    z-index: -1;
}
.coming-content {
    text-align: center;
}
.section-label-coming {
    display: block;
    font-size: 0.8rem;
    letter-spacing: 4px;
    color: var(--purple);
    font-weight: 600;
    margin-bottom: 1rem;
}
.section-desc-coming {
    color: var(--text-soft);
    font-size: 1.05rem;
    margin-bottom: 3rem;
}
.coming-logos {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}
.coming-logo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}
.coming-logo-icon {
    width: 80px; height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.1);
    transition: var(--transition);
}
.coming-logo-icon:hover {
    transform: translateY(-8px) scale(1.1);
}
.coming-logo-purple {
    background: rgba(124, 77, 255, 0.2);
    color: var(--purple-light);
    box-shadow: 0 0 40px rgba(124, 77, 255, 0.3);
}
.coming-logo-blue {
    background: rgba(94, 220, 255, 0.15);
    color: var(--cyan);
    box-shadow: 0 0 40px rgba(94, 220, 255, 0.3);
}
.coming-logo-pink {
    background: rgba(176, 109, 255, 0.2);
    color: #b06dff;
    box-shadow: 0 0 40px rgba(176, 109, 255, 0.3);
}
.coming-logo-name {
    font-size: 0.9rem;
    color: var(--text-soft);
    font-weight: 500;
}
.coming-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
}
.coming-card {
    background: rgba(17, 24, 39, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2rem;
    transition: var(--transition);
}
.coming-card:hover {
    border-color: var(--border-strong);
    transform: translateY(-4px);
}
.coming-card-purple { border-top: 2px solid rgba(124, 77, 255, 0.5); }
.coming-card-blue { border-top: 2px solid rgba(94, 220, 255, 0.5); }
.coming-card-pink { border-top: 2px solid rgba(176, 109, 255, 0.5); }
.coming-info h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 0.4rem; }
.coming-info p { font-size: 0.85rem; color: var(--text-soft); margin-bottom: 1rem; line-height: 1.5; }
.coming-tag { font-size: 0.75rem; color: var(--text-muted); font-weight: 500; }

/* WHY SECTION */
.why-section { padding: 120px 0; background: var(--bg-secondary); }
.section-label {
    display: block;
    text-align: center;
    font-size: 0.8rem;
    letter-spacing: 4px;
    color: var(--purple);
    font-weight: 600;
    margin-bottom: 1rem;
}
.section-title {
    text-align: center;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 4rem;
}
.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
}
.why-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2.5rem 1.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}
.why-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 1px;
    background: linear-gradient(135deg, transparent, transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.why-card:hover {
    transform: translateY(-12px);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.3),
        0 0 60px rgba(124, 77, 255, 0.2),
        inset 0 0 30px rgba(124, 77, 255, 0.05);
}
.why-card:hover::before {
    background: linear-gradient(135deg, var(--purple), var(--cyan));
}
.why-icon {
    width: 80px; height: 80px;
    margin: 0 auto 1.5rem;
    background: rgba(124, 77, 255, 0.1);
    border: 1px solid rgba(124, 77, 255, 0.25);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--purple-light);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.why-card:hover .why-icon {
    background: var(--gradient);
    color: var(--white);
    border-color: transparent;
    transform: scale(1.15) rotate(3deg);
    box-shadow: 0 15px 40px rgba(124, 77, 255, 0.5);
}
.why-card h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 0.75rem; }
.why-card p { font-size: 0.9rem; color: var(--text-soft); line-height: 1.6; }

/* MISSION */
.mission-section {
    padding: 120px 0;
    background: var(--bg-primary);
    text-align: center;
}
.mission-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    max-width: 800px;
    margin: 0 auto 1.5rem;
    line-height: 1.2;
}
.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.mission-desc {
    font-size: 1.1rem;
    color: var(--text-soft);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* CONTACT */
.contact-section { padding: 120px 0; background: var(--bg-secondary); }
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
}
.contact-info { display: flex; flex-direction: column; gap: 2rem; }
.contact-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-icon {
    width: 48px; height: 48px;
    background: rgba(124, 77, 255, 0.1);
    border: 1px solid rgba(124, 77, 255, 0.25);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--purple-light);
    font-size: 1.1rem;
    flex-shrink: 0;
}
.contact-item h4 { font-size: 1rem; font-weight: 600; margin-bottom: 0.25rem; }
.contact-item p { color: var(--text-soft); font-size: 0.95rem; }
.social-links { display: flex; gap: 0.75rem; margin-top: 1rem; }
.social-links a {
    width: 44px; height: 44px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-soft);
    font-size: 1.1rem;
    transition: var(--transition);
}
.social-links a:hover {
    background: var(--gradient);
    border-color: transparent;
    color: var(--white);
    transform: translateY(-3px);
}
.contact-form {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--text-soft);
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background: var(--bg-primary);
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--white);
    font-family: inherit;
    font-size: 0.95rem;
    transition: var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--purple);
}
.form-group select {
    cursor: pointer;
}
.form-group textarea { resize: vertical; min-height: 120px; }
.btn-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    background: var(--gradient);
    color: var(--white);
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    width: 100%;
}
.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(124, 77, 255, 0.4);
}

/* FOOTER */
.footer { background: var(--bg-primary); }
.footer-top {
    position: relative;
    padding: 100px 24px;
    text-align: center;
    overflow: hidden;
    border-bottom: 1px solid var(--border);
}
.footer-bg { position: absolute; inset: 0; z-index: 0; }
.footer-glow {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 700px; height: 500px;
    background: radial-gradient(ellipse, rgba(124, 77, 255, 0.25) 0%, rgba(94, 220, 255, 0.1) 50%, transparent 70%);
    filter: blur(60px);
    animation: glow-pulse 8s ease-in-out infinite;
}
.footer-logo-wrap { position: relative; z-index: 1; }
.footer-logo {
    width: 200px; height: 200px;
    margin: 0 auto 1.5rem;
    filter: drop-shadow(0 0 50px rgba(124, 77, 255, 0.5));
    animation: float 6s ease-in-out infinite;
}
.footer-powered {
    font-size: 0.9rem;
    letter-spacing: 4px;
    color: var(--text-soft);
    margin-bottom: 1rem;
    font-weight: 500;
}
.footer-slogan {
    font-size: 1.1rem;
    color: var(--text-soft);
    line-height: 1.6;
    font-weight: 300;
}
.footer-bottom { padding: 40px 24px 30px; }
.footer-bottom-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border);
}
.footer-brand { display: flex; flex-direction: column; gap: 4px; }
.footer-brand-name {
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 3px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.footer-brand-sub { font-size: 0.7rem; letter-spacing: 2px; color: var(--text-muted); }
.footer-links { display: flex; gap: 2rem; }
.footer-links a { font-size: 0.9rem; color: var(--text-soft); transition: var(--transition); }
.footer-links a:hover { color: var(--white); }
.footer-social { display: flex; gap: 0.75rem; }
.footer-social a {
    width: 40px; height: 40px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-soft);
    font-size: 1rem;
    transition: var(--transition);
}
.footer-social a:hover {
    background: var(--gradient);
    border-color: transparent;
    color: var(--white);
    transform: translateY(-2px);
}
.footer-copy {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 1.5rem;
    text-align: center;
}
.footer-copy p {
    color: var(--text-muted);
    font-size: 0.85rem;
}

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

/* RESPONSIVE */
@media (max-width: 1024px) {
    .product-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .product-container.reverse { direction: ltr; }
    .product-desc { max-width: 100%; }
    .coming-cards { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-bottom-container {
        flex-direction: column;
        text-align: center;
    }
    .footer-links { justify-content: center; }
}

@media (max-width: 768px) {
    .nav-links, .nav-btn { display: none; }
    .nav-toggle { display: flex; }
    .nav-links.active {
        display: flex;
        position: absolute;
        top: 100%; left: 0; right: 0;
        flex-direction: column;
        background: rgba(5, 8, 22, 0.98);
        backdrop-filter: blur(20px);
        padding: 2rem;
        border-bottom: 1px solid var(--border);
        gap: 1.5rem;
    }
    .hero-logo { width: 260px; height: 260px; }
    .hero-logo-glow { width: 360px; height: 360px; }
    .product-section { padding: 80px 0; }
    .phone-mockup { width: 260px; height: 540px; }
    .phone-mockup.large { width: 280px; height: 580px; }
    .why-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .footer-links { flex-direction: column; gap: 1rem; }
    .coming-logos { gap: 1.5rem; }
    .coming-logo-icon { width: 64px; height: 64px; font-size: 1.5rem; }
    .cursor-glow { display: none; }
}

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: var(--border-strong); border-radius: 5px; }
::-webkit-scrollbar-thumb:hover { background: var(--purple); }
/* App Screenshot */
.app-screenshot {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 26px;
}

.app-screenshot-large {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 34px;
}

/* App Detail Page */
.app-hero {
    min-height: 100vh;
    padding: 140px 0 80px;
    position: relative;
    display: flex;
    align-items: center;
}

.app-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.app-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(124, 77, 255, 0.15);
    border: 1px solid rgba(124, 77, 255, 0.3);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--purple-light);
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

.app-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.app-subtitle {
    font-size: 1.2rem;
    color: var(--text-soft);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.app-hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.btn-large {
    padding: 16px 32px;
    font-size: 1rem;
}

.btn-xlarge {
    padding: 20px 40px;
    font-size: 1.1rem;
}

.btn-text {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.btn-small {
    font-size: 0.75rem;
    font-weight: 500;
    opacity: 0.9;
}

.btn-large-text {
    font-size: 1.2rem;
    font-weight: 700;
}

.app-hero-visual {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

/* App Features */
.app-features {
    padding: 120px 0;
    background: var(--bg-secondary);
}

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

.feature-card-large {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: var(--transition);
}

.feature-card-large:hover {
    transform: translateY(-8px);
    border-color: var(--border-strong);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 40px rgba(124, 77, 255, 0.15);
}

.feature-icon-large {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: rgba(124, 77, 255, 0.1);
    border: 1px solid rgba(124, 77, 255, 0.25);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--purple-light);
}

.feature-card-large h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.feature-card-large p {
    color: var(--text-soft);
    line-height: 1.7;
}

/* App Download */
.app-download {
    padding: 120px 0;
    background: var(--bg-primary);
    text-align: center;
}

.download-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.download-content p {
    font-size: 1.1rem;
    color: var(--text-soft);
    margin-bottom: 2.5rem;
}

/* Footer Simple */
.footer-simple {
    text-align: center;
    padding: 2rem 0;
    border-top: 1px solid var(--border);
}

.footer-simple a {
    color: var(--purple-light);
    margin-top: 0.5rem;
    display: inline-block;
}

/* Coming Soon Apps Grid */
.coming-apps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 4rem auto 0;
}

.coming-app-item {
    background: rgba(17, 24, 39, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: var(--transition);
}

.coming-app-item:hover {
    transform: translateY(-8px);
    border-color: var(--border-strong);
}

.coming-app-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    background: rgba(124, 77, 255, 0.15);
    border: 1px solid rgba(124, 77, 255, 0.3);
}

.coming-app-icon img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    border-radius: 12px;
}

.coming-app-purple { background: rgba(124, 77, 255, 0.2); color: var(--purple-light); }
.coming-app-pink { background: rgba(176, 109, 255, 0.2); color: #b06dff; }
.coming-app-orange { background: rgba(255, 159, 67, 0.2); color: #ff9f43; }
.coming-app-blue { background: rgba(94, 220, 255, 0.15); color: var(--cyan); }
.coming-app-green { background: rgba(16, 185, 129, 0.2); color: #10B981; }
.coming-app-cyan { background: rgba(6, 182, 212, 0.2); color: #06B6D4; }

.coming-app-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.coming-app-item p {
    font-size: 0.9rem;
    color: var(--text-soft);
}

/* Responsive */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .coming-apps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
    .coming-apps-grid {
        grid-template-columns: 1fr;
    }
    .app-hero-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* ===========================
   Splash Video Preloader – GÜNCELLENDİ
   Almendra Font, Eski Efektler Kaldırıldı
=========================== */

#preloader{
    position:fixed;
    inset:0;
    background:#050816;
    display:flex;
    justify-content:center;
    align-items:center;
    z-index:999999;
    transition:opacity .8s ease, visibility .8s ease;
}

#preloader.hide{
    opacity:0;
    visibility:hidden;
    pointer-events:none;
}

#preloader video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.5s ease;
}

#preloader.playing video {
    opacity: 1;
}

.splash-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    background: rgba(5, 8, 22, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: opacity 0.6s ease;
}

#preloader.playing .splash-overlay {
    opacity: 0;
    pointer-events: none;
}

.splash-btn-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    text-align: center;
}

/* =====================
   YENİ SPLASH BUTON
   Almendra Font – Sade, Partiküllü
   Eski efektler (ışık hüzmesi, neon parıltı, pulse) KALDIRILDI
   Sadece ripple efekti kaldı
===================== */
.splash-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 24px 56px;
    background: rgba(255, 255, 255, 0.02);
    border: 1.5px solid rgba(124, 77, 255, 0.25);
    border-radius: 100px;
    color: var(--white);
    font-family: 'Almendra', serif;
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 8px;
    cursor: pointer;
    position: relative;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 0 40px rgba(124, 77, 255, 0.03);
    z-index: 2;
    text-shadow: 0 0 20px rgba(124, 77, 255, 0.1);
    user-select: none;
}

/* Hover – sadece hafif büyüme ve renk değişimi (partiküller canvas'te) */
.splash-btn:hover {
    transform: scale(1.04);
    border-color: rgba(124, 77, 255, 0.5);
    color: #fff;
    text-shadow: 0 0 40px rgba(124, 77, 255, 0.3);
    box-shadow: 0 0 60px rgba(124, 77, 255, 0.1);
}

/* Tıklama – küçülme */
.splash-btn:active {
    transform: scale(0.94);
    transition-duration: 0.08s;
}

/* Ripple efekti (kalıyor) */
.splash-btn .ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    transform: scale(0);
    animation: rippleAnim 0.8s ease-out forwards;
    pointer-events: none;
    z-index: 5;
}

@keyframes rippleAnim {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

.splash-hint {
    font-size: 0.8rem;
    letter-spacing: 3px;
    color: var(--text-soft);
    font-weight: 300;
    opacity: 0.8;
    animation: hint-fade 2s ease-in-out infinite;
    margin-top: 1rem;
}

@keyframes hint-fade {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

@media (max-width: 768px) {
    .splash-btn {
        padding: 18px 36px;
        font-size: 1rem;
        letter-spacing: 5px;
    }
    .splash-hint {
        font-size: 0.7rem;
    }
}
.form-message{
    margin-top:16px;
    padding:14px 18px;
    border-radius:12px;
    font-size:15px;
    font-weight:500;
    display:none;
    animation:fadeIn .3s ease;
}

.form-message.success{
    display:block;
    color:#d1fae5;
    background:rgba(34,197,94,.15);
    border:1px solid rgba(34,197,94,.35);
}

.form-message.error{
    display:block;
    color:#fecaca;
    background:rgba(239,68,68,.15);
    border:1px solid rgba(239,68,68,.35);
}

@keyframes fadeIn{
    from{
        opacity:0;
        transform:translateY(-8px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}
