/* ═══════════════════════════════════════════════════════════════
   VIDEOMIDIO — LANDING PAGE STYLES
   Neumorphic Design System v1.0 üzerine inşa
   © VideoMidio 2026
   ═══════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant:wght@300;400;500;600;700&family=Instrument+Serif:ital@0;1&family=MonteCarlo&family=Outfit:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600;1,700&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

/* ── CSS VARIABLES ───────────────────────────────────────────── */

:root {
    --eue-accent:         #06d6a0;
    --eue-accent-glow:    rgba(6,214,160,0.25);
    --eue-gradient-warm:  linear-gradient(135deg, #f59e0b, #ef4444, #ec4899);
}


/* ── RESET ───────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-font-smoothing: antialiased; }
body {
    font-family: var(--eue-font-body);
    background: var(--eue-bg);
    color: var(--eue-text-primary);
    line-height: 1.7;
    overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
img { max-width: 100%; display: block; }
button { border: none; cursor: pointer; font-family: inherit; }

/* ── CONTAINER ───────────────────────────────────────────────── */
.vm-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ── ANIMATIONS ──────────────────────────────────────────────── */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-40px); }
    to   { opacity: 1; transform: translateX(0); }
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-12px); }
}
@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 20px var(--eue-primary-glow); }
    50%      { box-shadow: 0 0 40px var(--eue-primary-glow), 0 0 60px var(--eue-accent-glow); }
}
@keyframes gradient-shift {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
@keyframes gradient-slide-rtl {
    0%   { background-position: 200% center; }
    100% { background-position: 0% center; }
}
@keyframes count-up {
    from { opacity: 0; transform: scale(0.5); }
    to   { opacity: 1; transform: scale(1); }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ═══════════════════════════════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════════════════════════════ */
.vm-navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 16px 0;
    transition: var(--eue-transition);
    background: transparent;
}
.vm-navbar.scrolled {
    background: var(--eue-overlay);
    backdrop-filter: blur(20px) saturate(1.4);
    -webkit-backdrop-filter: blur(20px) saturate(1.4);
    box-shadow: 0 4px 14px var(--eue-shadow-dark);
    padding: 10px 0;
}
.vm-navbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.vm-navbar__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--eue-font-display);
    font-weight: 800;
    font-size: 1.15rem;
    letter-spacing: -0.02em;
    color: var(--eue-text-primary);
    text-decoration: none;
}
.vm-navbar__logo-text {
    background: var(--eue-accent-gradient);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    animation: vmLogoShimmer 3s ease-in-out infinite;
}
@keyframes vmLogoShimmer {
    0%, 100% { background-position: 0% 50%; }
    50%      { background-position: 100% 50%; }
}
.vm-navbar__logo-img {
    width: 34px;
    height: 34px;
    object-fit: contain;
    border-radius: 8px;
    transition: transform 0.2s ease, filter 0.2s ease;
    filter: drop-shadow(0 2px 6px var(--eue-primary-glow));
}
.vm-navbar__logo:hover .vm-navbar__logo-img {
    transform: scale(1.08) rotate(-3deg);
    filter: drop-shadow(0 3px 12px var(--eue-primary-glow));
}
.vm-navbar__links {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* ── Beam Navigation System ────────────────────────────── */
.vm-nav-beam-wrap {
    position: relative;
    display: flex;
    align-items: center;
    gap: 28px;
    z-index: 1;
}

.vm-beam-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--eue-text-muted);
    transition: color 0.25s ease;
    position: relative;
    padding-bottom: 8px;
    cursor: pointer;
}
.vm-beam-link:hover { color: var(--eue-text-secondary); }
.vm-beam-link.active { color: var(--eue-primary); }

.vm-beam-indicator {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 3px;
    width: 36px;
    border-radius: 2px;
    background: var(--eue-primary);
    opacity: 0;
    transition: opacity 0.2s ease;
    pointer-events: none;
}
.vm-beam-indicator.visible {
    opacity: 1;
}

/* Beam Glow Effect */
.vm-beam-indicator::before {
    content: '';
    position: absolute;
    inset: -4px -8px;
    border-radius: 4px;
    background: var(--eue-primary);
    filter: blur(8px);
    opacity: 0.4;
}

/* Beam SVG Trail */
.vm-beam-indicator .beam-svg {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: block;
    overflow: visible;
    height: 5px;
    filter: blur(0.5px) 
           drop-shadow(2px 0px 8px rgba(99, 102, 241, 0.4)) 
           drop-shadow(1px 0px 2px rgba(99, 102, 241, 0.8)) 
           drop-shadow(0px 0px 3px rgba(153, 178, 255, 0.4));
    opacity: 0;
}

.vm-beam-indicator .beam-strike {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    padding: 16px 0;
    opacity: 0;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 15%, black 80%, transparent);
    mask-image: linear-gradient(to right, transparent 0%, black 15%, black 80%, transparent);
}
.vm-beam-indicator .beam-strike svg {
    display: block;
    overflow: visible;
    height: 10px;
}
.vm-beam-indicator .beam-strike svg g {
    fill: none;
    stroke: var(--eue-primary-light);
    stroke-width: 0.75;
    stroke-linecap: round;
}

/* Beam: Theme colors for glow */
.vm-beam-indicator .beam-svg {
    filter: blur(0.5px) 
           drop-shadow(2px 0px 8px var(--eue-primary-glow)) 
           drop-shadow(1px 0px 2px var(--eue-primary)) 
           drop-shadow(0px 0px 3px var(--eue-primary-glow));
}

.vm-navbar__links a:not(.vm-beam-link):not(.vm-navbar__cta) {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--eue-text-secondary);
    transition: var(--eue-transition);
    position: relative;
}
.vm-navbar__links a:not(.vm-beam-link):not(.vm-navbar__cta):hover { color: var(--eue-text-primary); }

.vm-navbar__cta {
    padding: 10px 24px;
    background: linear-gradient(145deg, var(--eue-convex-from), var(--eue-convex-to));
    color: var(--eue-primary);
    font-weight: 600;
    font-size: 0.875rem;
    border-radius: var(--eue-radius-md);
    transition: var(--eue-transition);
    box-shadow:
        4px 4px 10px var(--eue-shadow-dark),
        -4px -4px 10px var(--eue-shadow-light);
}
.vm-navbar__cta:hover {
    transform: translateY(-2px);
    box-shadow:
        2px 2px 5px var(--eue-shadow-dark),
        -2px -2px 5px var(--eue-shadow-light);
}

/* ── Animated Panel Button ─────────────────────────────────── */
.vm-panel-btn {
    --btn-w: 88px;
    --btn-h: 32px;
    width: var(--btn-w);
    height: var(--btn-h);
    border-radius: 8px;
    display: grid;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    background: var(--eue-surface);
    transition: transform 0.15s ease;
    user-select: none;
    text-decoration: none;
    flex-shrink: 0;
    box-shadow:
        3px 3px 8px var(--eue-shadow-dark),
        -3px -3px 8px var(--eue-shadow-light);
}
.vm-panel-btn:active { transform: scale(0.95); }
.vm-panel-btn__bg {
    --size: calc(max(var(--btn-w), var(--btn-h)) * 1.5);
    width: var(--size);
    height: var(--size);
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    filter: grayscale(1);
    animation: vmPanelBgSpin 12s linear infinite;
}
.vm-panel-btn__bg::before {
    content: "";
    width: 100%; height: 100%;
    display: block;
    background: repeating-conic-gradient(
        from 0deg at 50% 50%,
        var(--eue-primary) 0deg,
        var(--eue-primary) 12deg,
        transparent 12deg,
        transparent 24deg
    );
    opacity: 0.15;
    transition: opacity 0.2s ease;
    animation: vmPanelBgInner 3s linear infinite paused;
}
.vm-panel-btn:hover .vm-panel-btn__bg {
    animation-play-state: paused;
    filter: grayscale(0);
}
.vm-panel-btn:hover .vm-panel-btn__bg::before {
    animation-play-state: running;
    opacity: 0.5;
}
.vm-panel-btn__border {
    width: 100%; height: 100%;
    position: absolute; top: 0; left: 0;
    border-radius: 8px;
    box-shadow: inset 0 0 10px 0 var(--eue-primary-glow);
    opacity: 0;
    transition: opacity 0.2s ease;
}
.vm-panel-btn:hover .vm-panel-btn__border { opacity: 1; }
.vm-panel-btn__content {
    width: 100%; height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    position: absolute; top: 0; left: 0;
}
.vm-panel-btn__text {
    font-size: 12px;
    font-weight: 700;
    color: var(--eue-text-primary);
    font-family: var(--eue-font-display);
    transition: transform 0.2s ease;
    letter-spacing: 0.04em;
}
.vm-panel-btn:hover .vm-panel-btn__text {
    transform: skewX(-10deg);
    color: var(--eue-primary);
}
.vm-panel-btn__lines {
    width: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1px;
    transition: all 0.2s ease;
    opacity: 0;
    color: var(--eue-primary);
    overflow: hidden;
}
.vm-panel-btn:hover .vm-panel-btn__lines {
    opacity: 1;
    width: 22px;
}
.vm-panel-btn__lines svg { width: 30px; height: 3px; }
.vm-panel-btn__lines svg:nth-child(1) { transform: translateX(2px); }
.vm-panel-btn__lines svg:nth-child(3) { transform: translateX(-2px); }
.vm-panel-btn__lines line {
    animation: vmPanelLine 0.5s linear infinite;
}
.vm-panel-btn__lines svg:nth-child(1) line { animation-delay: 0.15s; }
.vm-panel-btn__lines svg:nth-child(2) line { animation-delay: 0.08s; }
@keyframes vmPanelBgSpin { to { transform: translate(-50%, -50%) rotate(360deg); } }
@keyframes vmPanelBgInner { to { transform: rotate(360deg); } }
@keyframes vmPanelLine { 0% { stroke-dashoffset: 0; } 100% { stroke-dashoffset: 60; } }
.vm-navbar__hamburger {
    display: none;
    flex-direction: column; gap: 5px;
    background: none; padding: 8px;
}
.vm-navbar__hamburger span {
    width: 24px; height: 2px;
    background: var(--eue-text-primary);
    border-radius: 2px;
    transition: var(--eue-transition);
}

/* ═══════════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════════ */
.vm-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}
.vm-hero__bg-glow {
    position: absolute;
    width: 600px; height: 600px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.3;
    pointer-events: none;
}
.vm-hero__bg-glow--1 {
    top: -200px; right: -100px;
    background: var(--eue-primary);
}
.vm-hero__bg-glow--2 {
    bottom: -200px; left: -150px;
    background: var(--eue-accent);
    opacity: 0.15;
}
.vm-hero__grid {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}
.vm-hero__content {
    position: relative; z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.vm-hero__text {
    animation: fadeInUp 1s ease;
}
.vm-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(99,102,241,0.1);
    border: 1px solid rgba(99,102,241,0.2);
    border-radius: var(--eue-radius-md);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--eue-primary-light);
    margin-bottom: 24px;
}
.vm-hero__badge-dot {
    width: 6px; height: 6px;
    background: var(--eue-accent);
    border-radius: 50%;
    animation: pulse-glow 2s infinite;
}
.vm-hero__title {
    font-family: var(--eue-font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
}
.vm-hero__title-sub {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 600;
    color: var(--eue-text-primary);
    display: inline-block;
    margin-top: 5px;
}
.vm-hero__title-gradient {
    background: var(--eue-gradient);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 4s ease infinite;
}
.vm-hero__title-gradient-rtl {
    background: var(--eue-gradient);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-slide-rtl 4s linear infinite;
}
.vm-hero__subtitle {
    font-size: 1.15rem;
    color: var(--eue-text-primary-secondary);
    max-width: 480px;
    margin-bottom: 36px;
    line-height: 1.8;
}
.vm-hero__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}
.vm-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: var(--eue-radius-md);
    transition: var(--eue-transition);
}
.vm-btn--primary {
    background: var(--eue-gradient);
    color: #fff;
    box-shadow: 0 4px 20px var(--eue-primary-glow);
}
.vm-btn--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px var(--eue-primary-glow);
}
.vm-btn--ghost {
    background: rgba(255,255,255,0.05);
    color: var(--eue-text-primary);
    border: 1px solid var(--eue-border);
}
.vm-btn--ghost:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.15);
}
.vm-hero__visual {
    animation: fadeInUp 1s ease 0.3s both;
    position: relative;
}

/* ── 3D Sphere Animation ──────────────────────────────────── */
.vm-hero__sphere-container {
    position: relative;
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
}
.vm-hero__sphere-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    max-width: 360px;
    margin: 0 auto;
    border-radius: 50%;
    overflow: hidden;
}
.vm-hero__sphere-glow {
    position: absolute;
    inset: -20%;
    border-radius: 50%;
    background: radial-gradient(circle, var(--eue-primary-glow) 0%, transparent 65%);
    opacity: 0.25;
    animation: spherePulse 4s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}
@keyframes spherePulse {
    0%, 100% { opacity: 0.15; transform: scale(1); }
    50% { opacity: 0.35; transform: scale(1.05); }
}
.vm-hero__sphere-iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 50%;
    position: relative;
    z-index: 1;
    pointer-events: auto;
    background: transparent;
}

/* ── Floating Badges ──────────────────────────────────────── */
.vm-floating-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    background: rgba(15, 15, 25, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    z-index: 10;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: default;
}
[data-theme="light"] .vm-floating-badge {
    background: rgba(255, 255, 255, 0.85);
    border-color: rgba(0, 0, 0, 0.06);
    box-shadow: 4px 4px 12px var(--eue-shadow-dark), -4px -4px 12px var(--eue-shadow-light);
}
.vm-floating-badge:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}
.vm-floating-badge i {
    font-size: 1.1rem;
    color: var(--eue-primary);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(99, 102, 241, 0.12);
    flex-shrink: 0;
}
.vm-badge-title {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--eue-text-primary);
    line-height: 1.2;
}
.vm-badge-sub {
    display: block;
    font-size: 0.65rem;
    font-weight: 500;
    color: var(--eue-text-muted);
    line-height: 1.3;
}

/* Badge positions */
.vm-badge-1 {
    top: 5%;
    right: -10%;
    animation: badgeFloat1 5s ease-in-out infinite;
}
.vm-badge-2 {
    top: 50%;
    left: -15%;
    transform: translateY(-50%);
    animation: badgeFloat2 6s ease-in-out infinite;
}
.vm-badge-3 {
    bottom: 8%;
    right: -5%;
    animation: badgeFloat3 5.5s ease-in-out infinite;
}

@keyframes badgeFloat1 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
@keyframes badgeFloat2 {
    0%, 100% { transform: translateY(-50%) translateX(0); }
    50% { transform: translateY(calc(-50% + 8px)) translateX(5px); }
}
@keyframes badgeFloat3 {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-8px) rotate(1deg); }
}

/* Responsive badges */
@media (max-width: 1024px) {
    .vm-hero__sphere-container { max-width: 360px; }
    .vm-hero__sphere-wrap { max-width: 300px; }
    .vm-badge-1 { right: -5%; }
    .vm-badge-2 { left: -10%; }
    .vm-badge-3 { right: 0; }
}
@media (max-width: 768px) {
    .vm-hero__sphere-container { max-width: 280px; }
    .vm-hero__sphere-wrap { max-width: 240px; }
    .vm-floating-badge { padding: 6px 10px; border-radius: 8px; font-size: 0.7rem; }
    .vm-floating-badge i { width: 22px; height: 22px; font-size: 0.75rem; border-radius: 6px; }
    .vm-badge-title { font-size: 0.6rem; }
    .vm-badge-sub { font-size: 0.5rem; }
    .vm-badge-1 { right: -2%; top: 5%; }
    .vm-badge-2 { left: -5%; }
    .vm-badge-3 { right: 0; bottom: 5%; }
}
@media (max-width: 480px) {
    .vm-floating-badge { display: none; }
    .vm-hero__sphere-container { max-width: 260px; }
    .vm-hero__sphere-wrap { max-width: 220px; }
}

/* ═══════════════════════════════════════════════════════════════
   STATS BAR
   ═══════════════════════════════════════════════════════════════ */
.vm-stats {
    padding: 60px 0;
    background: var(--eue-bg-alt);
}
.vm-stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    text-align: center;
}
.vm-stats__item {
    animation: count-up 0.8s ease both;
    padding: 24px 16px;
    border-radius: var(--eue-radius-lg);
    background: var(--eue-surface);
    transition: all 0.22s ease;
    box-shadow:
        var(--eue-shadow-offset) var(--eue-shadow-offset) var(--eue-shadow-blur) var(--eue-shadow-dark),
        calc(var(--eue-shadow-offset) * -1) calc(var(--eue-shadow-offset) * -1) var(--eue-shadow-blur) var(--eue-shadow-light);
}
.vm-stats__item:hover {
    transform: translateY(-4px);
    box-shadow:
        var(--eue-shadow-offset) var(--eue-shadow-offset) var(--eue-shadow-blur) var(--eue-shadow-dark),
        calc(var(--eue-shadow-offset) * -1) calc(var(--eue-shadow-offset) * -1) var(--eue-shadow-blur) var(--eue-shadow-light),
        0 0 25px var(--eue-primary-glow);
}
.vm-stats__number {
    font-family: var(--eue-font-display);
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--eue-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.vm-stats__label {
    font-size: 0.85rem;
    color: var(--eue-text-primary-muted);
    margin-top: 4px;
}

/* ═══════════════════════════════════════════════════════════════
   FEATURES
   ═══════════════════════════════════════════════════════════════ */
.vm-features {
    padding: 120px 0;
}
.vm-section__header {
    text-align: center;
    margin-bottom: 72px;
}
.vm-section__tag {
    display: inline-block;
    padding: 8px 18px;
    background: var(--eue-surface);
    border: none;
    border-radius: var(--eue-radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--eue-primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    box-shadow:
        inset 3px 3px 6px var(--eue-shadow-dark),
        inset -3px -3px 6px var(--eue-shadow-light);
    margin-bottom: 16px;
}
.vm-section__title {
    font-family: var(--eue-font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}
.vm-section__subtitle {
    font-size: 1.1rem;
    color: var(--eue-text-primary-secondary);
    max-width: 600px;
    margin: 0 auto;
}
.vm-features__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.vm-feature-card {
    background: var(--eue-surface);
    border: none;
    border-radius: var(--eue-radius-xl);
    padding: 36px 28px;
    transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow:
        var(--eue-shadow-offset) var(--eue-shadow-offset) var(--eue-shadow-blur) var(--eue-shadow-dark),
        calc(var(--eue-shadow-offset) * -1) calc(var(--eue-shadow-offset) * -1) var(--eue-shadow-blur) var(--eue-shadow-light);
}
.vm-feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1.5px;
    background: conic-gradient(
        from var(--vm-ring-deg) at 50% 50%,
        transparent 0deg,
        var(--eue-primary, #6366f1) 60deg,
        #8b5cf6 110deg,
        transparent 170deg,
        transparent 220deg,
        var(--eue-accent, #10b981) 280deg,
        #06b6d4 330deg,
        transparent 360deg
    );
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.45s ease;
    z-index: 2;
}
.vm-feature-card:hover {
    transform: translateY(-6px);
    box-shadow:
        var(--eue-shadow-offset) var(--eue-shadow-offset) var(--eue-shadow-blur) var(--eue-shadow-dark),
        calc(var(--eue-shadow-offset) * -1) calc(var(--eue-shadow-offset) * -1) var(--eue-shadow-blur) var(--eue-shadow-light),
        0 0 30px var(--eue-primary-glow),
        0 0 60px rgba(99, 102, 241, 0.08);
}
@media (hover: hover) and (pointer: fine) {
    .vm-feature-card:hover::before {
        opacity: 1;
        animation: vmRingDeg 5s linear infinite;
    }
}
@media (prefers-reduced-motion: reduce) {
    .vm-feature-card:hover::before { animation: none; opacity: 0; }
}
.vm-feature-card__icon {
    width: 52px; height: 52px;
    border-radius: 14px;
    background: linear-gradient(145deg, var(--eue-convex-from), var(--eue-convex-to));
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
    color: var(--eue-primary);
    transition: all 0.22s ease;
    box-shadow:
        var(--eue-shadow-offset) var(--eue-shadow-offset) var(--eue-shadow-blur) var(--eue-shadow-dark),
        calc(var(--eue-shadow-offset) * -1) calc(var(--eue-shadow-offset) * -1) var(--eue-shadow-blur) var(--eue-shadow-light);
}
.vm-feature-card:hover .vm-feature-card__icon {
    box-shadow:
        inset 3px 3px 6px var(--eue-shadow-dark),
        inset -3px -3px 6px var(--eue-shadow-light);
}
.vm-feature-card__title {
    font-family: var(--eue-font-display);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
}
.vm-feature-card__desc {
    font-size: 0.9rem;
    color: var(--eue-text-primary-secondary);
    line-height: 1.7;
}

/* ── Feature Tabs ─────────────────────────────────────────── */
.vm-features__tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 0 auto 48px;
    padding: 6px;
    background: var(--eue-surface);
    border: 1px solid var(--eue-border);
    border-radius: 999px;
    width: fit-content;
    max-width: 100%;
    flex-wrap: wrap;
    box-shadow: inset 2px 2px 6px var(--eue-shadow-dark), inset -2px -2px 6px var(--eue-shadow-light);
}
.vm-features__tab {
    padding: 10px 22px;
    background: transparent;
    border: none;
    border-radius: 999px;
    font-family: var(--eue-font-display);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--eue-text-muted);
    cursor: pointer;
    transition: var(--eue-transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.vm-features__tab:hover { color: var(--eue-text-primary); }
.vm-features__tab.active {
    background: var(--eue-gradient);
    color: #fff;
    box-shadow: 0 4px 14px var(--eue-primary-glow);
}
.vm-tab-pill {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 999px;
    background: rgba(255,255,255,0.18);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.vm-features__tab:not(.active) .vm-tab-pill {
    background: rgba(99,102,241,0.12);
    color: var(--eue-primary);
}
.vm-features__panel {
    display: none;
    animation: fadeInUp 0.5s ease;
}
.vm-features__panel.active { display: block; }
.vm-feature-card { position: relative; }
.vm-feature-card--soon {
    background: linear-gradient(135deg, var(--eue-surface), rgba(99,102,241,0.04));
}
.vm-feature-card__badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(99,102,241,0.12);
    color: var(--eue-primary);
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border: 1px solid rgba(99,102,241,0.2);
}

/* ── Audiences (Hedef Kitle) ──────────────────────────────── */
.vm-audiences { padding: 120px 0; background: var(--eue-bg-alt); }
.vm-audiences__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin-top: 48px;
}
.vm-audience-card {
    padding: 28px 24px;
    background: var(--eue-surface);
    border: none;
    border-radius: var(--eue-radius-xl);
    transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    gap: 10px;
    box-shadow:
        var(--eue-shadow-offset) var(--eue-shadow-offset) var(--eue-shadow-blur) var(--eue-shadow-dark),
        calc(var(--eue-shadow-offset) * -1) calc(var(--eue-shadow-offset) * -1) var(--eue-shadow-blur) var(--eue-shadow-light);
}
.vm-audience-card:hover {
    transform: translateY(-6px);
    box-shadow:
        var(--eue-shadow-offset) var(--eue-shadow-offset) var(--eue-shadow-blur) var(--eue-shadow-dark),
        calc(var(--eue-shadow-offset) * -1) calc(var(--eue-shadow-offset) * -1) var(--eue-shadow-blur) var(--eue-shadow-light),
        0 0 30px var(--eue-primary-glow),
        0 0 60px rgba(99, 102, 241, 0.08);
}
.vm-audience-card__icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(145deg, var(--eue-convex-from), var(--eue-convex-to));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--eue-primary);
    transition: all 0.22s ease;
    box-shadow:
        var(--eue-shadow-offset) var(--eue-shadow-offset) var(--eue-shadow-blur) var(--eue-shadow-dark),
        calc(var(--eue-shadow-offset) * -1) calc(var(--eue-shadow-offset) * -1) var(--eue-shadow-blur) var(--eue-shadow-light);
}
.vm-audience-card:hover .vm-audience-card__icon {
    box-shadow:
        inset 3px 3px 6px var(--eue-shadow-dark),
        inset -3px -3px 6px var(--eue-shadow-light);
}
.vm-audience-card__title {
    font-family: var(--eue-font-display);
    font-weight: 700;
    font-size: 1.02rem;
}
.vm-audience-card__pain,
.vm-audience-card__fix {
    font-size: 0.85rem;
    line-height: 1.65;
    color: var(--eue-text-primary-secondary);
}
.vm-audience-card__pain::before {
    content: "Sorun → ";
    font-weight: 700;
    color: #ef4444;
}
:lang(en) .vm-audience-card__pain::before {
    content: "Problem → ";
}
.vm-audience-card__fix::before {
    content: "Çözüm → ";
    font-weight: 700;
    color: var(--eue-primary);
}
:lang(en) .vm-audience-card__fix::before {
    content: "Solution → ";
}

/* ── Enterprise CTA (Pricing yerine) ──────────────────────── */
.vm-enterprise { padding: 120px 0; }
.vm-enterprise__inner {
    max-width: 900px;
    margin: 0 auto;
    background: var(--eue-surface);
    border: none;
    border-radius: var(--eue-radius-xl);
    padding: 60px 48px;
    position: relative;
    overflow: hidden;
    text-align: center;
    box-shadow:
        10px 10px 24px var(--eue-shadow-dark),
        -10px -10px 24px var(--eue-shadow-light),
        0 0 40px var(--eue-primary-glow);
}
.vm-enterprise__glow {
    position: absolute;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    filter: blur(110px);
    opacity: 0.18;
    pointer-events: none;
    background: var(--eue-primary);
    top: -180px;
    right: -120px;
}
.vm-enterprise__tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(99,102,241,0.1);
    border: 1px solid rgba(99,102,241,0.22);
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--eue-primary-light);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 18px;
}
.vm-enterprise__title {
    font-family: var(--eue-font-display);
    font-size: clamp(1.8rem, 3.4vw, 2.4rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 14px;
    position: relative;
    z-index: 1;
}
.vm-enterprise__subtitle {
    font-size: 1.05rem;
    color: var(--eue-text-primary-secondary);
    max-width: 600px;
    margin: 0 auto 32px;
    position: relative;
    z-index: 1;
}
.vm-enterprise__features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 14px;
    margin: 0 auto 36px;
    max-width: 720px;
    text-align: left;
    position: relative;
    z-index: 1;
}
.vm-enterprise__feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--eue-text-primary);
}
.vm-enterprise__feature::before {
    content: "✓";
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(99,102,241,0.14);
    color: var(--eue-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.8rem;
    flex-shrink: 0;
}
.vm-enterprise__actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}
.vm-enterprise__contact {
    margin-top: 24px;
    font-size: 0.85rem;
    color: var(--eue-text-muted);
    position: relative;
    z-index: 1;
}
.vm-enterprise__contact a {
    color: var(--eue-primary);
    font-weight: 600;
    text-decoration: none;
}
.vm-enterprise__contact a:hover { text-decoration: underline; }

@media (max-width: 768px) {
    .vm-enterprise__inner { padding: 40px 24px; }
    .vm-features__tabs { flex-direction: row; overflow-x: auto; max-width: 100%; }
    .vm-features__tab { white-space: nowrap; padding: 8px 16px; font-size: 0.85rem; }
}


/* HOW — Center-mode step slider */
.vm-how {
    padding: 120px 0;
    background: var(--eue-bg-alt);
}
.vm-how__controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-top: 28px;
}
.vm-how__btn {
    width: 46px;
    height: 46px;
    border: none;
    border-radius: 50%;
    background: var(--eue-surface);
    color: var(--eue-text-primary);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0.3rem 0.3rem 0.7rem var(--eue-shadow-dark, rgba(0,0,0,0.12)),
        -0.2rem -0.2rem 0.6rem var(--eue-shadow-light, rgba(255,255,255,0.7));
    transition: color 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
}
.vm-how__btn:hover:not(:disabled) { color: var(--eue-primary); }
.vm-how__btn:active:not(:disabled) {
    box-shadow:
        inset 0.2rem 0.2rem 0.5rem var(--eue-shadow-dark, rgba(0,0,0,0.12)),
        inset -0.2rem -0.2rem 0.5rem var(--eue-shadow-light, rgba(255,255,255,0.7));
}
.vm-how__btn:disabled { opacity: 0.35; cursor: default; }

.vm-how__viewport {
    overflow: hidden;
    border-radius: 22px;
}
.vm-how__track {
    display: flex;
    gap: 18px;
    align-items: stretch;
    --vm-step-closed: 5.5rem;
    --vm-step-open: 30rem;
}
.vm-stepcard {
    position: relative;
    flex: 0 0 var(--vm-step-closed);
    height: 28rem;
    border-radius: 18px;
    overflow: hidden;
    cursor: pointer;
    transition: flex-basis 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 8px 20px rgba(15, 15, 35, 0.18);
}
.vm-stepcard[data-active] {
    flex-basis: var(--vm-step-open);
    transform: translateY(-4px);
    box-shadow: 0 22px 50px rgba(15, 15, 35, 0.35);
}
.vm-stepcard__bg { position: absolute; inset: 0; z-index: 1; }
.vm-stepcard__bg svg { width: 100%; height: 100%; display: block; }
.vm-stepcard__layer {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(180deg, rgba(7,9,13,0) 30%, rgba(7,9,13,0.88) 100%);
    transition: opacity 0.4s ease;
}
.vm-stepcard:not([data-active]) .vm-stepcard__layer {
    background: linear-gradient(180deg, rgba(7,9,13,0.55) 0%, rgba(7,9,13,0.85) 100%);
}
.vm-stepcard__content {
    position: absolute;
    inset: 0;
    z-index: 3;
    padding: 26px;
    display: flex;
    flex-direction: column;
    color: #fff;
}
.vm-stepcard__num {
    font-family: 'JetBrains Mono', ui-monospace, monospace;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    color: rgba(165, 180, 252, 0.85);
    margin-bottom: auto;
}
.vm-stepcard__title {
    font-family: var(--eue-font-display);
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.15;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    margin-top: 12px;
    align-self: flex-start;
    letter-spacing: 0.02em;
    transition: opacity 0.3s ease;
}
.vm-stepcard__desc,
.vm-stepcard__meta {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease 0.05s, transform 0.4s ease 0.05s;
    pointer-events: none;
    color: rgba(229, 231, 235, 0.92);
    font-size: 0.92rem;
    line-height: 1.6;
    margin-top: 12px;
}
.vm-stepcard__meta {
    font-family: 'JetBrains Mono', ui-monospace, monospace;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: rgba(165, 180, 252, 0.85);
    margin-top: 14px;
}
.vm-stepcard[data-active] .vm-stepcard__title {
    writing-mode: horizontal-tb;
    transform: none;
    font-size: clamp(1.6rem, 2.4vw, 2.1rem);
    margin-top: 4px;
    align-self: stretch;
    line-height: 1.1;
}
.vm-stepcard[data-active] .vm-stepcard__desc,
.vm-stepcard[data-active] .vm-stepcard__meta {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}
.vm-stepcard[data-active] .vm-stepcard__num {
    color: var(--eue-primary, #6366f1);
    font-size: 0.92rem;
    margin-bottom: 4px;
}
.vm-how__dots {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 0;
}
.vm-how__dot {
    width: 32px;
    height: 4px;
    border-radius: 2px;
    background: var(--eue-border);
    cursor: pointer;
    transition: background 0.3s ease, width 0.3s ease;
    border: none;
    padding: 0;
}
.vm-how__dot.is-active {
    background: var(--eue-primary);
    width: 56px;
}
@media (max-width: 900px) {
    .vm-how__track {
        flex-direction: column;
        --vm-step-closed: 5.5rem;
    }
    .vm-stepcard {
        flex-basis: var(--vm-step-closed);
        height: var(--vm-step-closed);
        width: 100%;
    }
    .vm-stepcard[data-active] {
        flex-basis: 22rem;
        height: 22rem;
    }
    .vm-stepcard__title {
        writing-mode: horizontal-tb;
        transform: none;
        text-align: left;
        align-self: stretch;
    }
    .vm-stepcard:not([data-active]) .vm-stepcard__content {
        padding: 18px 22px;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
    .vm-stepcard:not([data-active]) .vm-stepcard__num { margin-bottom: 0; }
    .vm-stepcard:not([data-active]) .vm-stepcard__title { margin: 0; font-size: 1rem; }
    .vm-how__head { align-items: flex-start; }
}

/* ═══════════════════════════════════════════════════════════════
   PLATFORMS
   ═══════════════════════════════════════════════════════════════ */
.vm-platforms {
    padding: 120px 0;
}
.vm-platforms__grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 48px;
}
.vm-platform-chip {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 28px;
    background: var(--eue-surface);
    border: none;
    border-radius: var(--eue-radius-xl);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.22s ease;
    box-shadow:
        var(--eue-shadow-offset) var(--eue-shadow-offset) var(--eue-shadow-blur) var(--eue-shadow-dark),
        calc(var(--eue-shadow-offset) * -1) calc(var(--eue-shadow-offset) * -1) var(--eue-shadow-blur) var(--eue-shadow-light);
}
.vm-platform-chip:hover {
    transform: translateY(-4px);
    box-shadow:
        var(--eue-shadow-offset) var(--eue-shadow-offset) var(--eue-shadow-blur) var(--eue-shadow-dark),
        calc(var(--eue-shadow-offset) * -1) calc(var(--eue-shadow-offset) * -1) var(--eue-shadow-blur) var(--eue-shadow-light),
        0 0 25px var(--eue-primary-glow);
}
.vm-platform-chip__icon {
    font-size: 1.5rem;
    color: var(--eue-primary);
}

/* ═══════════════════════════════════════════════════════════════
   CTA
   ═══════════════════════════════════════════════════════════════ */
.vm-cta {
    padding: 120px 0;
    background: var(--eue-bg-alt);
}
.vm-cta__inner {
    text-align: center;
    background: var(--eue-surface);
    border: 1px solid var(--eue-border);
    border-radius: var(--eue-radius-xl);
    padding: 80px 40px;
    position: relative;
    overflow: hidden;
}
.vm-cta__glow {
    position: absolute;
    width: 400px; height: 400px;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.15;
    pointer-events: none;
}
.vm-cta__glow--1 { top: -200px; left: -100px; background: var(--eue-primary); }
.vm-cta__glow--2 { bottom: -200px; right: -100px; background: var(--eue-accent); }
.vm-cta__title {
    font-family: var(--eue-font-display);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    margin-bottom: 16px;
    position: relative; z-index: 1;
}
.vm-cta__subtitle {
    font-size: 1.1rem;
    color: var(--eue-text-primary-secondary);
    margin-bottom: 40px;
    position: relative; z-index: 1;
}
.vm-cta__actions {
    display: flex; gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative; z-index: 1;
}

/* ═══════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════ */
.vm-footer {
    padding: 60px 0 30px;
    border-top: 1px solid var(--eue-border);
}
.vm-footer__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}
.vm-footer__brand {
    display: flex; align-items: center; gap: 10px;
    font-family: var(--eue-font-display);
    font-weight: 700;
    font-size: 1.2rem;
}
.vm-footer__brand-img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    border-radius: 6px;
    filter: drop-shadow(0 2px 6px var(--eue-primary-glow));
}
.vm-footer__links {
    display: flex; gap: 24px;
}
.vm-footer__links a {
    font-size: 0.85rem;
    color: var(--eue-text-primary-muted);
    transition: var(--eue-transition);
}
.vm-footer__links a:hover { color: var(--eue-text-primary); }

/* ── Footer VS Karşılaştırma Linkleri ───────────────────── */
.vm-footer__vs-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 12px 0 4px;
    border-top: 1px solid var(--eue-shadow-dark, rgba(0,0,0,.06));
    margin-top: 8px;
}
.vm-footer__vs-links a {
    font-size: 0.78rem;
    color: var(--eue-text-primary-muted);
    opacity: 0.7;
    transition: var(--eue-transition);
    letter-spacing: 0.02em;
}
.vm-footer__vs-links a:hover {
    color: var(--eue-text-primary);
    opacity: 1;
}

/* ── Platform Chip Brand Renkleri ────────────────────────── */
.vm-platform-chip__icon i.fa-google-drive { color: #4285F4; }
.vm-platform-chip__icon i.fa-youtube { color: #FF0000; }
.vm-platform-chip__icon i.fa-vimeo-v { color: #1AB7EA; }
.vm-platform-chip__icon i.fa-video { color: #6366f1; }
.vm-platform-chip__icon i.fa-server { color: #94a3b8; }
.vm-platform-chip__icon i.fa-telegram-plane { color: #0088cc; }

/* ── Sosyal İkon Circle Effect ───────────────────────────── */
.vm-footer__social {
    display: flex;
    justify-content: center;
    gap: 28px;
    padding: 32px 0 24px;
    border-top: 1px solid var(--eue-border);
    margin-top: 28px;
}
.vm-social-icon {
    position: relative;
    width: 64px; height: 64px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--eue-text-muted);
    transition: all 0.5s ease;
    cursor: pointer;
    text-decoration: none;
}
.vm-social-icon svg {
    position: absolute; top: 0; left: 0;
}
.vm-social-icon svg circle {
    stroke-dasharray: 150;
    transition: all 0.6s ease;
}
.vm-social-icon i {
    position: relative; z-index: 2;
    transition: all 0.4s ease;
}
/* Mail hover */
.vm-social-icon:first-child:hover {
    background: #e11d48;
    box-shadow: 0 0 24px rgba(225, 29, 72, 0.5);
    color: #fff;
}
/* WhatsApp hover */
.vm-social-icon:last-child:hover {
    background: #25d366;
    box-shadow: 0 0 24px rgba(37, 211, 102, 0.5);
    color: #fff;
}
.vm-social-icon:hover svg circle {
    stroke-dasharray: 220;
    stroke: currentColor;
}

/* ── Footer Tabs (Telif / Referanslar) ───────────────────── */
.vm-footer__bottom {
    padding-top: 20px;
    padding-bottom: 80px;
}
.vm-footer__tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 16px;
}
.vm-footer-tab {
    background: transparent;
    border: 1px solid var(--eue-border);
    color: var(--eue-text-muted);
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-family: var(--eue-font-body);
    cursor: pointer;
    transition: all 0.3s ease;
}
.vm-footer-tab:hover {
    color: var(--eue-text-primary);
    border-color: var(--eue-primary);
}
.vm-footer-tab.active {
    background: var(--eue-primary);
    color: #fff;
    border-color: var(--eue-primary);
    box-shadow: 0 2px 12px var(--eue-primary-glow);
}
.vm-footer__tab-content {
    text-align: center;
    font-size: 0.8rem;
    color: var(--eue-text-muted);
    animation: fadeInUp 0.3s ease;
}
.vm-references-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}
.vm-ref-item {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 500;
    background: var(--eue-surface);
    color: var(--eue-text-secondary);
    border: 1px solid var(--eue-border);
    transition: all 0.3s ease;
}
.vm-ref-item:hover {
    border-color: var(--eue-primary);
    color: var(--eue-primary);
    box-shadow: 0 2px 12px var(--eue-primary-glow);
}

/* ═══════════════════════════════════════════════════════════════
   SR-ONLY — Screen Reader / Crawler Only (görsel olarak gizli)
   ═══════════════════════════════════════════════════════════════ */
.vm-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ═══════════════════════════════════════════════════════════════
   ENTITY DEFINITION — Legacy (artık sr-only ile gizli)
   ═══════════════════════════════════════════════════════════════ */
.vm-entity {
    padding: 40px 0 20px;
}
.vm-entity__inner {
    max-width: 760px;
    margin: 0 auto;
    padding: 28px 36px;
    border-radius: var(--eue-radius-lg);
    text-align: center;
}
.vm-entity__text {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--eue-text-secondary);
}
.vm-entity__text strong {
    color: var(--eue-text-primary);
    font-weight: 700;
}
.vm-entity__text em {
    color: var(--eue-primary);
    font-style: normal;
    font-weight: 600;
}
.vm-entity__tagline {
    margin-top: 16px;
    font-family: var(--eue-font-display);
    font-size: 1.05rem;
    font-weight: 600;
    font-style: italic;
    color: var(--eue-primary);
    opacity: 0.85;
}

/* ═══════════════════════════════════════════════════════════════
   FAQ — Accordion Style
   ═══════════════════════════════════════════════════════════════ */
.vm-faq {
    padding: 80px 0 60px;
}
.vm-faq__list {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.vm-faq__item {
    padding: 18px 24px;
    border-radius: var(--eue-radius-md);
    cursor: pointer;
    transition: var(--eue-transition);
}
.vm-faq__item summary {
    font-family: var(--eue-font-display);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--eue-text-primary);
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    user-select: none;
}
.vm-faq__item summary::after {
    content: "+";
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--eue-primary);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 16px;
}
.vm-faq__item[open] summary::after {
    content: "−";
    transform: rotate(180deg);
}
.vm-faq__item summary::-webkit-details-marker {
    display: none;
}
.vm-faq__item p {
    margin-top: 14px;
    font-size: 0.88rem;
    line-height: 1.7;
    color: var(--eue-text-secondary);
}
.vm-faq__item[open] {
    box-shadow: inset 0 0 0 1px var(--eue-primary), 0 4px 16px var(--eue-primary-glow);
}

/* ═══════════════════════════════════════════════════════════════
   FOOTER TAGLINE
   ═══════════════════════════════════════════════════════════════ */
.vm-footer__tagline {
    text-align: center;
    padding: 20px 0 80px;
    border-top: 1px solid var(--eue-border);
    margin-top: 16px;
}
.vm-footer__tagline p {
    font-family: var(--eue-font-display);
    font-size: 0.95rem;
    font-style: italic;
    color: var(--eue-text-secondary);
    margin-bottom: 6px;
}
.vm-footer__tagline small {
    font-size: 0.72rem;
    color: var(--eue-text-muted);
    letter-spacing: 0.02em;
}

/* ═══════════════════════════════════════════════════════════════
   VERSUS COMPARISON
   ═══════════════════════════════════════════════════════════════ */
.vm-versus {
    padding: 80px 0 60px;
}
.vm-versus__tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}
.vm-versus__tab {
    padding: 10px 24px;
    border-radius: var(--eue-radius-lg);
    background: var(--eue-surface);
    border: 1px solid var(--eue-border);
    color: var(--eue-text-muted);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--eue-transition);
    font-family: var(--eue-font-display);
}
.vm-versus__tab:hover {
    color: var(--eue-text-primary);
    border-color: var(--eue-primary);
}
.vm-versus__tab.active {
    background: var(--eue-primary);
    color: #fff;
    border-color: var(--eue-primary);
    box-shadow: 0 4px 16px var(--eue-primary-glow);
}
.vm-versus__panel {
    display: none;
}
.vm-versus__panel.active {
    display: block;
}
.vm-versus__card {
    max-width: 800px;
    margin: 0 auto;
    padding: 32px;
    border-radius: var(--eue-radius-xl);
}
.vm-versus__table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.88rem;
}
.vm-versus__table thead th {
    padding: 14px 16px;
    text-align: left;
    color: var(--eue-text-muted);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    border-bottom: 2px solid var(--eue-border);
}
.vm-versus__table thead th:nth-child(2),
.vm-versus__table thead th:nth-child(3) {
    text-align: center;
}
.vm-vs-hero-col {
    color: var(--eue-primary) !important;
    font-weight: 700 !important;
}
.vm-versus__table tbody td {
    padding: 12px 16px;
    border-bottom: 1px solid var(--eue-border);
    color: var(--eue-text-secondary);
}
.vm-versus__table tbody td:nth-child(2),
.vm-versus__table tbody td:nth-child(3) {
    text-align: center;
}
.vm-versus__table tbody tr:last-child td {
    border-bottom: none;
}
.vm-versus__summary {
    margin-top: 24px;
    font-size: 0.88rem;
    color: var(--eue-text-secondary);
    line-height: 1.7;
    text-align: center;
}
.vm-versus__summary strong {
    color: var(--eue-primary);
}
@media (max-width: 600px) {
    .vm-versus__card { padding: 16px; }
    .vm-versus__table { font-size: 0.78rem; }
    .vm-versus__table thead th,
    .vm-versus__table tbody td { padding: 10px 8px; }
    .vm-versus__tab { padding: 8px 16px; font-size: 0.78rem; }
}

/* ═══════════════════════════════════════════════════════════════
   REFERANSLARIMIZ — Logo Slider
   ═══════════════════════════════════════════════════════════════ */
.vm-references {
    padding: 80px 0 60px;
    background: var(--eue-bg-alt);
}
.vm-references .vm-container {
    max-width: 1100px;
}
/* Neumorphic card wrapping the slider — matches EUE copyright style */
.vm-logo-slider-card {
    background: var(--eue-surface);
    border-radius: var(--eue-radius-xl);
    padding: 0;
    overflow: hidden;
    margin-top: 40px;
    box-shadow:
        var(--eue-shadow-offset) var(--eue-shadow-offset) var(--eue-shadow-blur) var(--eue-shadow-dark),
        calc(var(--eue-shadow-offset) * -1) calc(var(--eue-shadow-offset) * -1) var(--eue-shadow-blur) var(--eue-shadow-light);
    transition: all 0.22s ease;
}
.vm-logo-slider-card:hover {
    box-shadow:
        var(--eue-shadow-offset) var(--eue-shadow-offset) var(--eue-shadow-blur) var(--eue-shadow-dark),
        calc(var(--eue-shadow-offset) * -1) calc(var(--eue-shadow-offset) * -1) var(--eue-shadow-blur) var(--eue-shadow-light),
        0 0 30px var(--eue-primary-glow);
}
.vm-logo-slider-wrap {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    padding: 36px 0;
}
/* Kenar fade efekti */
.vm-logo-slider-wrap::before,
.vm-logo-slider-wrap::after {
    content: "";
    position: absolute;
    top: 0; bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
}
.vm-logo-slider-wrap::before {
    left: 0;
    background: linear-gradient(to right, var(--eue-surface), transparent);
}
.vm-logo-slider-wrap::after {
    right: 0;
    background: linear-gradient(to left, var(--eue-surface), transparent);
}
.vm-logo-slider {
    display: inline-block;
    animation: vm-slide 80s linear infinite;
}
.vm-logo-slider:hover {
    animation-play-state: paused;
}
.vm-logos {
    display: inline-flex;
    align-items: center;
}
.vm-logos a {
    display: inline-block;
    padding: 0 32px;
    flex-shrink: 0;
}
.vm-logos img {
    max-width: 150px;
    height: 60px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.5;
    transition: all 0.3s ease;
}
.vm-logos img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.15);
}
[data-theme="dark"] .vm-logos img,
[data-theme="reading"] .vm-logos img {
    filter: grayscale(100%) brightness(1.4);
    opacity: 0.4;
}
[data-theme="dark"] .vm-logos img:hover,
[data-theme="reading"] .vm-logos img:hover {
    filter: grayscale(0%) brightness(1);
    opacity: 1;
}
@keyframes vm-slide {
    from { transform: translate3d(0, 0, 0); }
    to { transform: translate3d(-50%, 0, 0); }
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .vm-hero__content { grid-template-columns: 1fr; text-align: center; }
    .vm-hero__subtitle { margin-left: auto; margin-right: auto; }
    .vm-hero__actions { justify-content: center; }
    .vm-hero__visual { max-width: 500px; margin: 0 auto; }
    .vm-features__grid { grid-template-columns: repeat(2, 1fr); }
    .vm-how__steps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .vm-navbar__links { display: none; }
    .vm-navbar__hamburger { display: flex; }
    .vm-stats__grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .vm-features__grid { grid-template-columns: 1fr; }
    .vm-how__steps { grid-template-columns: 1fr; }
    .vm-hero { padding: 100px 0 60px; min-height: auto; }
    .vm-hero__title { font-size: 2.2rem; }
    .vm-cta__inner { padding: 48px 24px; }
    .vm-navbar__logo-text { font-size: 1rem; }
    .vm-navbar__logo-img { width: 28px; height: 28px; }
}
@media (max-width: 480px) {
    .vm-hero__actions { flex-direction: column; align-items: stretch; }
    .vm-btn { justify-content: center; }
    .vm-stats__number { font-size: 2rem; }
    .vm-platforms__grid { flex-direction: column; align-items: stretch; }
}

/* ── SETTINGS MODAL ─────────────────────────────────────────── */
.vm-settings-toggle {
    position: fixed;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--eue-surface);
    box-shadow: 4px 4px 10px var(--eue-shadow-dark), -4px -4px 10px var(--eue-shadow-light);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    transition: var(--eue-transition);
    color: var(--eue-text-primary);
}
.vm-settings-toggle:hover {
    transform: translateY(-50%) rotate(15deg);
}

.vm-settings-modal {
    position: fixed;
    top: 50%;
    right: 80px;
    transform: translateY(-50%) translateX(20px);
    width: 300px;
    max-width: calc(100vw - 32px);
    background: var(--eue-surface);
    border: 1px solid var(--eue-border);
    border-radius: var(--eue-radius-lg);
    box-shadow: 10px 10px 30px rgba(0,0,0,0.2);
    padding: 24px;
    z-index: 998;
    opacity: 0;
    pointer-events: none;
    transition: var(--eue-transition);
}
.vm-settings-modal.active {
    opacity: 1;
    pointer-events: all;
    transform: translateY(-50%) translateX(0);
}

.vm-settings-group {
    margin-bottom: 20px;
}
.vm-settings-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--eue-text-muted);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.vm-theme-selector {
    display: flex;
    gap: 8px;
}
.vm-theme-btn, .vm-color-btn {
    flex: 1;
    padding: 8px 0;
    text-align: center;
    border-radius: var(--eue-radius-sm);
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    background: var(--eue-surface);
    border: 1px solid var(--eue-border);
    color: var(--eue-text-primary);
    transition: var(--eue-transition);
}
.vm-theme-btn.active, .vm-color-btn.active {
    box-shadow: inset 2px 2px 5px var(--eue-shadow-dark), inset -2px -2px 5px var(--eue-shadow-light);
    border-color: var(--eue-primary);
}


.vm-color-btn {
    height: 36px;
    border-radius: var(--eue-radius-full);
    flex: none;
    width: 36px;
    position: relative;
}
.vm-color-btn[data-accent-val="indigo"] { background: linear-gradient(135deg, #4f46e5, #6366f1, #818cf8, #a78bfa); }
.vm-color-btn[data-accent-val="emerald"] { background: linear-gradient(135deg, #047857, #059669, #10b981, #34d399, #6ee7b7); }
.vm-color-btn[data-accent-val="rose"] { background: linear-gradient(135deg, #be185d, #db2777, #ec4899, #f472b6, #f9a8d4); }
.vm-color-btn[data-accent-val="amber"] { background: linear-gradient(135deg, #b45309, #d97706, #f59e0b, #fbbf24, #fde68a); }

.vm-color-btn.active {
    box-shadow: 0 0 0 3px var(--eue-surface), 0 0 0 5px var(--eue-primary);
}

.vm-color-label {
    position: absolute;
    bottom: -18px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.6rem;
    font-weight: 700;
    color: var(--eue-text-muted);
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}
.vm-color-btn.active .vm-color-label {
    color: var(--eue-primary);
}

.vm-color-selector {
    display: flex;
    gap: 16px;
    padding-bottom: 18px;
}

.vm-font-select {
    width: 100%;
    padding: 10px;
    border-radius: var(--eue-radius-md);
    background: var(--eue-surface);
    color: var(--eue-text-primary);
    border: 1px solid var(--eue-border);
    outline: none;
    font-family: inherit;
    box-shadow: inset 2px 2px 5px var(--eue-shadow-dark), inset -2px -2px 5px var(--eue-shadow-light);
}

/* ── PREMIUM BUTTONS ─────────────────────────────────────────── */
.btn-glass {
    padding: 14px 32px;
    border: none;
    border-radius: var(--eue-radius-lg);
    background: var(--eue-surface);
    color: var(--eue-text-secondary);
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow:
        5px 5px 12px var(--eue-shadow-dark),
        -5px -5px 12px var(--eue-shadow-light);
    cursor: pointer;
}
.btn-glass:hover {
    transform: translateY(-2px);
    box-shadow:
        2px 2px 5px var(--eue-shadow-dark),
        -2px -2px 5px var(--eue-shadow-light);
    color: var(--eue-primary);
}

.btn-neon {
    padding: 14px 32px;
    border: none;
    border-radius: var(--eue-radius-lg);
    background: linear-gradient(145deg, var(--eue-convex-from), var(--eue-convex-to));
    color: var(--eue-primary);
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow:
        6px 6px 14px var(--eue-shadow-dark),
        -6px -6px 14px var(--eue-shadow-light);
}
.btn-neon::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transition: left 0.5s ease;
}
.btn-neon:hover {
    box-shadow:
        3px 3px 6px var(--eue-shadow-dark),
        -3px -3px 6px var(--eue-shadow-light);
    transform: translateY(-2px);
}
.btn-neon:hover::before {
    left: 100%;
}

/* ═══════════════════════════════════════════════════════════════
   MAC DOCK — TeknikX Tarzı (Uyarlanmış)
   ═══════════════════════════════════════════════════════════════ */

@property --gradient-angle { syntax: "<angle>"; inherits: false; initial-value: 0deg; }
@keyframes spin-border { 0% { --gradient-angle: 0deg; } 100% { --gradient-angle: 360deg; } }

.mac-dock {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    padding: 0.6rem 1.2rem;
    background: rgba(20, 20, 35, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.05);
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
    border-radius: 2.5rem;
    z-index: 9999;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}
[data-theme="light"] .mac-dock {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(0,0,0,0.06);
    box-shadow: 4px 4px 16px var(--eue-shadow-dark), -4px -4px 16px var(--eue-shadow-light);
}
.dock-close {
    position: absolute;
    right: 8px;
    top: 8px;
    width: 20px;
    height: 20px;
    background: #ef4444;
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.5;
    transition: 0.3s;
    z-index: 10000;
}
.mac-dock:hover .dock-close { opacity: 1; }
.mac-dock ul {
    display: flex;
    margin: 0;
    padding: 0;
    list-style: none;
    align-items: center;
    gap: 0.8rem;
}
.mac-dock-item {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform-origin: bottom center;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    color: var(--eue-primary);
    font-size: 1.3rem;
    position: relative;
    box-shadow: inset 0 1px 2px rgba(255,255,255,0.1), 0 4px 12px rgba(0,0,0,0.2);
    border: 1px solid rgba(255,255,255,0.06);
}
[data-theme="light"] .mac-dock-item {
    background: rgba(0,0,0,0.04);
    box-shadow: 2px 2px 6px var(--eue-shadow-dark), -2px -2px 6px var(--eue-shadow-light);
    border-color: rgba(0,0,0,0.04);
}
.mac-dock-item::after {
    content: "";
    position: absolute;
    inset: -2px;
    padding: 2px;
    background: conic-gradient(from var(--gradient-angle), rgba(99,102,241,0.05) 0deg, rgba(99,102,241,0.05) 60deg, var(--eue-primary) 120deg, rgba(99,102,241,0.05) 180deg, rgba(99,102,241,0.05) 240deg, var(--eue-primary) 300deg, rgba(99,102,241,0.05) 360deg);
    border-radius: 14px;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
    animation: spin-border 4s linear infinite;
    z-index: -1;
}
.dock-link {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    color: inherit; text-decoration: none;
}
.mac-dock-item::before {
    content: attr(data-tooltip);
    position: absolute;
    top: -40px;
    background: var(--eue-surface);
    color: var(--eue-text-primary);
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    border: 1px solid var(--eue-border);
    pointer-events: none;
    opacity: 0;
    transform: translateY(10px);
    transition: 0.2s;
    white-space: nowrap;
}
.mac-dock-item:hover::before { opacity: 1; transform: translateY(0); }
.mac-dock-item:hover {
    transform: scale(1.5) translateY(-8px);
    z-index: 5;
    background: var(--eue-primary);
    color: #fff;
    box-shadow: 0 0 20px var(--eue-primary-glow), 0 8px 25px rgba(0,0,0,0.3);
}
.mac-dock-item:has(+ .mac-dock-item:hover),
.mac-dock-item:hover + .mac-dock-item {
    transform: scale(1.2) translateY(-3px);
}
.mac-dock-item:has(+ .mac-dock-item + .mac-dock-item:hover),
.mac-dock-item:hover + .mac-dock-item + .mac-dock-item {
    transform: scale(1.08) translateY(-1px);
}
.dock-divider {
    width: 2px; height: 32px;
    background: linear-gradient(180deg, transparent, rgba(255,255,255,0.15), transparent);
    margin: 0 0.3rem; border-radius: 2px;
    list-style: none; flex-shrink: 0;
}
[data-theme="light"] .dock-divider {
    background: linear-gradient(180deg, transparent, rgba(0,0,0,0.12), transparent);
}
.dock-login-item {
    background: rgba(99, 102, 241, 0.12) !important;
    border: 1px solid rgba(99, 102, 241, 0.25) !important;
}
.dock-login-item:hover {
    background: var(--eue-primary) !important;
    box-shadow: 0 0 25px var(--eue-primary-glow), 0 0 50px rgba(99,102,241,0.2), 0 8px 25px rgba(0,0,0,0.3) !important;
}
.dock-pulse {
    position: absolute; top: -2px; right: -2px;
    width: 10px; height: 10px;
    background: #22c55e; border-radius: 50%;
    border: 2px solid rgba(20,20,35,0.85);
    animation: dockPulse 2s ease-in-out infinite;
    z-index: 10;
}
@keyframes dockPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.6); }
    50% { box-shadow: 0 0 0 6px rgba(34, 197, 94, 0); }
}
@media (max-width: 768px) {
    .mac-dock { padding: 0.5rem 0.8rem; }
    .mac-dock ul { gap: 0.4rem; }
    .mac-dock-item { width: 42px; height: 42px; border-radius: 12px; font-size: 1.1rem; }
    .mac-dock-item:hover { transform: scale(1.3) translateY(-5px); }
    .mac-dock-item::before { display: none; }
    .dock-close { top: -5px; right: -5px; opacity: 1; }
}

/* ═══════════════════════════════════════════════════════════════
   CARD HOVER LIGHT SWEEP EFFECT
   ═══════════════════════════════════════════════════════════════ */
.vm-feature-card, .vm-how__step, .vm-platform-card { position: relative; overflow: hidden; z-index: 1; }
.vm-feature-card::after, .vm-how__step::after, .vm-platform-card::after {
    content: "";
    position: absolute; z-index: -1;
    width: 720px; height: 1px;
    border: 10px solid rgba(255, 255, 255, 0.5);
    filter: blur(49px);
    transform: rotate(-52deg) translate(-300px, -500px);
    pointer-events: none;
}
@keyframes move-gradient {
    0% { transform: rotate(-52deg) translate(-300px, -500px); }
    100% { transform: rotate(-52deg) translate(-300px, 500px); }
}
@media (hover: hover) and (pointer: fine) {
    .vm-feature-card:hover::after, .vm-how__step:hover::after, .vm-platform-card:hover::after {
        animation: move-gradient 0.6s linear;
    }
}

/* ═══════════════════════════════════════════════════════════════
   TYPEWRITER / TEXT REVEAL ANIMATION
   ═══════════════════════════════════════════════════════════════ */
.vm-hero__title-gradient {
    display: inline-block;
    background-size: 200% auto;
    animation: shimmer 3s linear infinite;
}
@keyframes shimmer {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}
.vm-typewriter-target {
    opacity: 0;
    animation: typeReveal 1.2s ease 0.8s forwards;
}
@keyframes typeReveal {
    0% { opacity: 0; transform: translateY(12px); filter: blur(4px); }
    100% { opacity: 1; transform: translateY(0); filter: blur(0); }
}
.vm-hero__badge { animation: fadeInUp 0.8s ease 0.2s both; }
.vm-hero__title { animation: fadeInUp 0.8s ease 0.4s both; }
.vm-hero__actions { animation: fadeInUp 0.8s ease 1s both; }


.vm-pipeline-3d {
    position: relative;
    padding: 110px 0;
    background: var(--eue-bg-alt);
    overflow: hidden;
}
.vm-pipeline-3d__header {
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
    position: relative;
    z-index: 2;
}
.vm-pipeline-3d__tag {
    background: rgba(99,102,241,0.12);
    border: 1px solid rgba(99,102,241,0.22);
    color: var(--eue-primary-light, #818cf8);
}
.vm-pipeline-3d__title {
    font-family: var(--eue-font-display);
    font-size: clamp(1.8rem, 3.6vw, 2.6rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--eue-text-primary);
    margin: 14px 0 12px;
}
.vm-pipeline-3d__subtitle {
    font-size: 1.02rem;
    color: var(--eue-text-primary-secondary);
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.7;
}

.vm-pipeline-3d__bezel {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    padding: 14px;
    border-radius: 28px;
    background: var(--eue-surface);
    box-shadow:
        0.7rem 0.7rem 1.8rem var(--eue-shadow-dark, rgba(15,18,30,0.18)),
        -0.4rem -0.4rem 1.2rem var(--eue-shadow-light, rgba(255,255,255,0.7));
    isolation: isolate;
}
.vm-pipeline-3d__ring {
    position: absolute;
    inset: 0;
    border-radius: 28px;
    padding: 2px;
    background: conic-gradient(
        from 0deg,
        transparent 0deg,
        var(--eue-primary, #6366f1) 50deg,
        transparent 130deg,
        transparent 230deg,
        var(--eue-accent, #10b981) 310deg,
        transparent 360deg
    );
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    animation: vmPipelineRing 9s linear infinite;
    pointer-events: none;
    z-index: 1;
    opacity: 0.75;
}
@keyframes vmPipelineRing {
    to { transform: rotate(360deg); }
}
.vm-pipeline-3d__frame {
    position: relative;
    width: 100%;
    height: clamp(420px, 60vh, 640px);
    border-radius: 18px;
    overflow: hidden;
    background: #050510;
    z-index: 2;
}
.vm-pipeline-3d__iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
    background: #050510;
}
.vm-pipeline-3d__gradient {
    position: absolute;
    left: 0; right: 0;
    height: 60px;
    pointer-events: none;
    z-index: 3;
}
.vm-pipeline-3d__gradient--top {
    top: 0;
    background: linear-gradient(to bottom, #050510 0%, transparent 100%);
}
.vm-pipeline-3d__gradient--bottom {
    bottom: 0;
    background: linear-gradient(to top, #050510 0%, transparent 100%);
}
.vm-pipeline-3d__corner {
    position: absolute;
    width: 28px;
    height: 28px;
    pointer-events: none;
    z-index: 4;
    border-color: var(--eue-primary, #6366f1);
    opacity: 0.7;
}
.vm-pipeline-3d__corner--tl { top: 12px; left: 12px; border-top: 2px solid; border-left: 2px solid; border-top-left-radius: 6px; }
.vm-pipeline-3d__corner--tr { top: 12px; right: 12px; border-top: 2px solid; border-right: 2px solid; border-top-right-radius: 6px; }
.vm-pipeline-3d__corner--bl { bottom: 12px; left: 12px; border-bottom: 2px solid; border-left: 2px solid; border-bottom-left-radius: 6px; }
.vm-pipeline-3d__corner--br { bottom: 12px; right: 12px; border-bottom: 2px solid; border-right: 2px solid; border-bottom-right-radius: 6px; }

@media (prefers-reduced-motion: reduce) {
    .vm-pipeline-3d__ring { animation: none; opacity: 0.4; }
}
@media (max-width: 768px) {
    .vm-pipeline-3d { padding: 70px 0; }
    .vm-pipeline-3d__bezel { padding: 10px; border-radius: 20px; margin: 0 16px; }
    .vm-pipeline-3d__ring { border-radius: 20px; }
    .vm-pipeline-3d__frame { height: 360px; border-radius: 12px; }
    .vm-pipeline-3d__corner { width: 22px; height: 22px; }
}

/* ═══════════════════════════════════════════════════════════════
   NOTIFY / EARLY ACCESS CARD — Conic gradient ring (compositor-only)
   ═══════════════════════════════════════════════════════════════ */
.vm-notify {
    padding: 100px 0 120px;
}
.vm-notify__card {
    position: relative;
    max-width: 720px;
    margin: 0 auto;
    aspect-ratio: 19 / 12;
    border-radius: 22px;
    overflow: hidden;
    isolation: isolate;
}
/* Animated conic ring — pure compositor transform (cheap) */
.vm-notify__ring {
    position: absolute;
    inset: -50%;
    background: conic-gradient(
        from 0deg at 50% 50%,
        var(--eue-surface), var(--eue-surface),
        var(--eue-primary, #6366f1),
        var(--eue-surface), var(--eue-surface),
        var(--eue-primary, #6366f1),
        var(--eue-surface)
    );
    animation: vmNotifySpin 5s linear infinite;
    z-index: 0;
    will-change: transform;
}
@keyframes vmNotifySpin {
    to { transform: rotate(360deg); }
}
.vm-notify__card:hover .vm-notify__ring {
    animation-play-state: paused;
}
.vm-notify__inner {
    position: absolute;
    inset: 2px;
    border-radius: 20px;
    background: var(--eue-surface);
    color: var(--eue-text-primary);
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 36px 28px;
    gap: 14px;
}

.vm-notify__eyebrow {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--eue-primary-light, #818cf8);
}
.vm-notify__title {
    font-family: var(--eue-font-display);
    font-size: clamp(1.4rem, 2.6vw, 2rem);
    font-weight: 700;
    letter-spacing: -0.01em;
    color: var(--eue-text-primary);
    margin: 0;
    line-height: 1.18;
    max-width: 520px;
}
.vm-notify__desc {
    font-size: clamp(0.95rem, 1.4vw, 1.1rem);
    color: var(--eue-primary-light, #a5b4fc);
    margin: 0;
}
.vm-notify__desc span {
    color: var(--eue-text-primary);
}
.vm-notify__form {
    width: 100%;
    max-width: 460px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0;
    margin-top: 6px;
}
.vm-notify__form input[type="email"] {
    padding: 12px 14px;
    font-size: 0.95rem;
    border: 2px solid rgba(99,102,241,0.45);
    border-right: none;
    border-radius: 8px 0 0 8px;
    background: transparent;
    color: #a5b4fc;
    outline: none;
    font-family: inherit;
    transition: border-color 0.25s ease, color 0.25s ease;
}
.vm-notify__form input[type="email"]::placeholder {
    color: rgba(165,180,252,0.55);
}
.vm-notify__form input[type="email"]:hover,
.vm-notify__form input[type="email"]:focus {
    border-color: var(--eue-primary, #6366f1);
    color: #fff;
}
.vm-notify__form button {
    padding: 12px 22px;
    font-size: 0.92rem;
    font-weight: 700;
    border: 2px solid var(--eue-primary, #6366f1);
    border-radius: 0 8px 8px 0;
    background: rgba(99,102,241,0.5);
    color: #fff;
    cursor: pointer;
    font-family: inherit;
    transition: background 0.25s ease;
    white-space: nowrap;
}
.vm-notify__form button:hover {
    background: var(--eue-primary, #6366f1);
}
.vm-notify__note {
    grid-column: 1 / -1;
    font-size: 0.78rem;
    color: var(--eue-text-muted);
    margin: 14px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: color 0.25s ease;
}
.vm-notify__note svg {
    opacity: 0.5;
    color: var(--eue-primary, #6366f1);
    transition: opacity 0.25s ease;
    flex-shrink: 0;
}
.vm-notify__note span {
    opacity: 0.4;
    transition: opacity 0.25s ease;
}
.vm-notify__form:focus-within .vm-notify__note,
.vm-notify__form:hover .vm-notify__note {
    color: var(--eue-primary-light, #a5b4fc);
}
.vm-notify__form:focus-within .vm-notify__note svg,
.vm-notify__form:hover .vm-notify__note svg,
.vm-notify__form:focus-within .vm-notify__note span,
.vm-notify__form:hover .vm-notify__note span {
    opacity: 1;
}
.vm-notify__success {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: #34d399;
    animation: fadeInUp 0.5s ease;
}
.vm-notify__success p {
    color: var(--eue-text-primary);
    margin: 0;
    font-size: 0.98rem;
}

@media (max-width: 640px) {
    .vm-notify { padding: 64px 0 80px; }
    .vm-notify__card { aspect-ratio: auto; min-height: 380px; }
    .vm-notify__inner { padding: 28px 18px; }
    .vm-notify__form { grid-template-columns: 1fr; }
    .vm-notify__form input[type="email"] {
        border-right: 2px solid rgba(99,102,241,0.45);
        border-radius: 8px 8px 0 0;
    }
    .vm-notify__form button { border-radius: 0 0 8px 8px; }
}

/* Respect prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
    .vm-notify__ring { animation: none; }
}

/* Notify form: invalid state (wins over :hover/:focus) */
.vm-notify__form input[type="email"].is-invalid,
.vm-notify__form input[type="email"].is-invalid:hover,
.vm-notify__form input[type="email"].is-invalid:focus {
    border-color: #ef4444;
    color: #fca5a5;
}

@property --vm-ring-deg {
    syntax: '<angle>';
    inherits: false;
    initial-value: 0deg;
}
.vm-neon-ring {
    position: relative;
}
.vm-neon-ring::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1.5px;
    background: conic-gradient(
        from var(--vm-ring-deg) at 50% 50%,
        transparent 0deg,
        var(--eue-primary, #6366f1) 70deg,
        transparent 140deg,
        transparent 220deg,
        var(--eue-primary, #6366f1) 290deg,
        transparent 360deg
    );
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.45s ease;
    z-index: 2;
}
@keyframes vmRingDeg {
    to { --vm-ring-deg: 360deg; }
}
@media (hover: hover) and (pointer: fine) {
    .vm-neon-ring:hover::before {
        opacity: 1;
        animation: vmRingDeg 4.5s linear infinite;
    }
}
.vm-neon-ring--always::before {
    opacity: 0.85;
    animation: vmRingDeg 7s linear infinite;
}
@media (prefers-reduced-motion: reduce) {
    .vm-neon-ring::before,
    .vm-neon-ring--always::before { animation: none; opacity: 0; }
}


.vm-enterprise__inner.vm-neon-ring--always::before {
    padding: 1.6px;
    background: conic-gradient(
        from var(--vm-ring-deg) at 50% 50%,
        var(--eue-surface) 0deg,
        var(--eue-primary, #6366f1) 60deg,
        var(--eue-surface) 130deg,
        var(--eue-surface) 230deg,
        var(--eue-accent, #10b981) 300deg,
        var(--eue-surface) 360deg
    );
}

.btn-neon:active,
.btn-glass:active,
.vm-navbar__cta:active {
    transform: translateY(0);
    box-shadow:
        inset 0.25rem 0.25rem 0.6rem var(--eue-shadow-dark, rgba(0,0,0,0.12)),
        inset -0.25rem -0.25rem 0.6rem var(--eue-shadow-light, rgba(255,255,255,0.7));
}

.animate-on-scroll {
    opacity: 0;
    transform: none;
    transition: opacity 0.55s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.animate-on-scroll.visible {
    opacity: 1;
    transform: none;
}

.vm-clock-widget {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 22px 14px 14px;
    border-radius: 999px;
    background: var(--eue-surface);
    box-shadow:
        0.4rem 0.4rem 1rem var(--eue-shadow-dark, rgba(0,0,0,0.12)),
        -0.3rem -0.3rem 0.8rem var(--eue-shadow-light, rgba(255,255,255,0.7));
    width: fit-content;
    margin: 0 auto 28px;
    font-family: var(--eue-font-display);
}
.vm-clock-face {
    position: relative;
    width: 48px; height: 48px;
    border-radius: 50%;
    box-shadow:
        inset 0.15rem 0.15rem 0.35rem var(--eue-shadow-dark, rgba(0,0,0,0.12)),
        inset -0.15rem -0.15rem 0.35rem var(--eue-shadow-light, rgba(255,255,255,0.7));
    flex-shrink: 0;
}
.vm-clock-face::after {
    content: '';
    position: absolute;
    inset: 30%;
    border-radius: 50%;
    box-shadow:
        inset 1px 1px 1px var(--eue-shadow-dark, rgba(0,0,0,0.08)),
        inset -1px -1px 1px var(--eue-shadow-light, rgba(255,255,255,0.7));
}
.vm-clock-hand {
    position: absolute;
    left: 50%;
    bottom: 50%;
    transform-origin: 50% 100%;
    border-radius: 2px;
    z-index: 3;
}
.vm-clock-hand--h {
    width: 2.2px; height: 12px;
    margin-left: -1.1px;
    background: var(--eue-text-muted);
}
.vm-clock-hand--m {
    width: 2px; height: 17px;
    margin-left: -1px;
    background: var(--eue-text-secondary);
}
.vm-clock-hand--s {
    width: 1.4px; height: 19px;
    margin-left: -0.7px;
    background: var(--eue-primary);
}
.vm-clock-dot {
    position: absolute;
    left: 50%; top: 50%;
    width: 4px; height: 4px;
    margin: -2px 0 0 -2px;
    border-radius: 50%;
    background: var(--eue-primary);
    z-index: 4;
}
.vm-clock-meta {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}
.vm-clock-meta__live {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--eue-text-muted);
}
.vm-clock-meta__live::before {
    content: '';
    width: 6px; height: 6px;
    border-radius: 50%;
    background: #10b981;
    box-shadow: 0 0 8px #10b981;
    animation: vmClockPulse 1.6s ease-in-out infinite;
}
@keyframes vmClockPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.85); }
}
.vm-clock-meta__label {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--eue-text-primary);
    margin-top: 2px;
}
.vm-clock-meta__time {
    font-family: 'JetBrains Mono', ui-monospace, monospace;
    font-size: 0.74rem;
    color: var(--eue-text-secondary);
    margin-top: 1px;
    letter-spacing: 0.04em;
    font-variant-numeric: tabular-nums;
}
@media (max-width: 640px) {
    .vm-clock-widget { padding: 10px 18px 10px 10px; gap: 10px; }
    .vm-clock-face { width: 40px; height: 40px; }
    .vm-clock-hand--h { height: 10px; }
    .vm-clock-hand--m { height: 14px; }
    .vm-clock-hand--s { height: 16px; }
}

.vm-matrix-rain {
    position: absolute;
    inset: 2px;
    border-radius: calc(var(--eue-radius-xl) - 2px);
    width: calc(100% - 4px);
    height: calc(100% - 4px);
    pointer-events: none;
    z-index: 0;
    opacity: 0.55;
    mix-blend-mode: screen;
}
.vm-enterprise__inner > *:not(.vm-matrix-rain):not(.vm-enterprise__glow) { position: relative; z-index: 2; }
@media (prefers-reduced-motion: reduce) {
    .vm-matrix-rain { display: none; }
}

@media (max-width: 480px) {
    .vm-floating-badge { padding: 6px 10px; }
    .vm-badge-title { font-size: 0.6rem; }
    .vm-badge-sub { font-size: 0.5rem; }
    .vm-badge-1 { top: -6%; right: 0; }
    .vm-badge-2 { left: 0; }
    .vm-badge-3 { right: 0; bottom: -6%; }
    .vm-clock-widget { flex-direction: row; padding: 10px 14px 10px 10px; }
    .vm-clock-meta__label { font-size: 0.74rem; }
    .vm-clock-meta__time { font-size: 0.68rem; }
    .vm-stats__number { font-size: 1.7rem; }
    .vm-enterprise__inner { padding: 32px 18px; }
    .vm-enterprise__features { gap: 10px; }
    .vm-section__title { font-size: clamp(1.5rem, 6vw, 2rem); }
}
@media (max-width: 640px) {
    .vm-footer__social { gap: 18px; }
    .vm-social-icon { width: 52px; height: 52px; }
    .vm-social-icon svg { height: 52px; width: 52px; }
    .vm-pipeline-3d__frame { height: 340px; }
    .vm-features__tabs { gap: 4px; }
    .vm-features__tab { padding: 8px 12px; font-size: 0.78rem; }
    .vm-tab-pill { padding: 1px 6px; font-size: 0.58rem; }
    .vm-audiences__grid { gap: 14px; }
}
@media (max-width: 380px) {
    .vm-floating-badge i { display: none; }
    .vm-floating-badge { padding: 6px 8px; }
    .vm-how__controls { gap: 10px; }
    .vm-how__btn { width: 40px; height: 40px; }
}

.vm-hero__sphere-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    max-width: 380px;
    margin: 0 auto;
    isolation: isolate;
}
.vm-hero__sphere-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: conic-gradient(
        from 0deg,
        #6366f1 0deg,
        #818cf8 30deg,
        #a78bfa 60deg,
        #c084fc 90deg,
        #e879f9 120deg,
        #ec4899 150deg,
        #f43f5e 180deg,
        #f59e0b 210deg,
        #10b981 240deg,
        #06b6d4 270deg,
        #3b82f6 300deg,
        #8b5cf6 330deg,
        #6366f1 360deg
    );
    animation:
        vmSphereSpin 4s linear infinite,
        vmSphereColorShift 6s ease-in-out infinite alternate,
        vmSpherePulse 3s ease-in-out infinite;
    z-index: 0;
    will-change: transform, filter;
}
/* Outer glow layer — counter-rotating blurred copy */
.vm-hero__sphere-ring::before {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    background: inherit;
    filter: blur(12px) saturate(1.8);
    opacity: 0.55;
    animation: vmSphereSpinReverse 5s linear infinite;
    z-index: -1;
    pointer-events: none;
}
/* Inner shimmer layer */
.vm-hero__sphere-ring::after {
    content: '';
    position: absolute;
    inset: 2px;
    border-radius: 50%;
    background: conic-gradient(
        from 180deg,
        transparent 0deg,
        rgba(255,255,255,0.25) 40deg,
        transparent 80deg,
        transparent 180deg,
        rgba(255,255,255,0.2) 220deg,
        transparent 260deg
    );
    animation: vmSphereSpinReverse 2.5s linear infinite;
    z-index: 1;
    pointer-events: none;
}
@keyframes vmSphereColorShift {
    0%   { filter: hue-rotate(0deg)   saturate(1.3) brightness(1.1); }
    20%  { filter: hue-rotate(60deg)  saturate(1.5) brightness(1.15); }
    40%  { filter: hue-rotate(120deg) saturate(1.7) brightness(1.2); }
    60%  { filter: hue-rotate(200deg) saturate(1.8) brightness(1.25); }
    80%  { filter: hue-rotate(280deg) saturate(1.6) brightness(1.15); }
    100% { filter: hue-rotate(360deg) saturate(1.3) brightness(1.1); }
}
@keyframes vmSpherePulse {
    0%, 100% { box-shadow: 0 0 20px rgba(99,102,241,0.3), 0 0 60px rgba(99,102,241,0.1); }
    50%      { box-shadow: 0 0 35px rgba(139,92,246,0.5), 0 0 90px rgba(236,72,153,0.2); }
}
@keyframes vmSphereSpinReverse {
    to { transform: rotate(-360deg); }
}
.vm-hero__sphere-slit {
    position: absolute;
    background: rgba(255, 255, 255, 0.55);
    border-radius: 3px;
    top: 50%;
    left: 50%;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.4);
}
.vm-hero__sphere-slit--1 {
    width: 5px;
    height: 36%;
    transform-origin: center;
    transform: translate(-50%, -85%) rotate(22deg);
}
.vm-hero__sphere-slit--2 {
    width: 5px;
    height: 24%;
    transform: translate(60%, 10%) rotate(-40deg);
}
.vm-hero__sphere-slit--3 {
    width: 5px;
    height: 24%;
    transform: translate(-160%, 20%) rotate(50deg);
}
.vm-hero__sphere-mask {
    position: absolute;
    inset: 11px;
    border-radius: 50%;
    background: var(--eue-bg, #edf2f7);
    z-index: 1;
}
.vm-hero__sphere-frame .vm-hero__sphere-wrap {
    position: absolute;
    inset: 18px;
    z-index: 2;
    margin: 0;
    max-width: none;
    width: auto;
    height: auto;
    aspect-ratio: auto;
}
@keyframes vmSphereSpin {
    to { transform: rotate(360deg); }
}
@media (prefers-reduced-motion: reduce) {
    .vm-hero__sphere-ring { animation: none; }
    .vm-hero__sphere-ring::before,
    .vm-hero__sphere-ring::after { animation: none; }
}

.vm-lang {
    position: relative;
    display: inline-flex;
}
.vm-lang__current {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px 8px 8px;
    background: var(--eue-surface);
    border: 1px solid var(--eue-border);
    border-radius: 999px;
    font-family: inherit;
    font-weight: 600;
    font-size: 0.82rem;
    color: var(--eue-text-primary);
    cursor: pointer;
    transition: border-color 0.25s ease, transform 0.25s ease;
}
.vm-lang__current:hover { border-color: var(--eue-primary); }
.vm-lang__flag {
    width: 22px;
    height: 15px;
    border-radius: 3px;
    overflow: hidden;
    flex-shrink: 0;
    display: inline-flex;
    box-shadow: 0 0 0 1px rgba(0,0,0,0.06);
}
.vm-lang__flag svg {
    width: 100%;
    height: 100%;
    display: block;
}
.vm-lang__code {
    letter-spacing: 0.06em;
    font-variant-numeric: tabular-nums;
}
.vm-lang__caret {
    transition: transform 0.25s ease;
    color: var(--eue-text-muted);
}
.vm-lang.is-open .vm-lang__caret { transform: rotate(180deg); }
.vm-lang__menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 160px;
    background: var(--eue-surface);
    border: 1px solid var(--eue-border);
    border-radius: 12px;
    padding: 6px;
    box-shadow:
        0.4rem 0.4rem 1rem var(--eue-shadow-dark, rgba(0,0,0,0.15)),
        -0.2rem -0.2rem 0.6rem var(--eue-shadow-light, rgba(255,255,255,0.7));
    display: flex;
    flex-direction: column;
    gap: 2px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px);
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 100;
}
.vm-lang.is-open .vm-lang__menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}
.vm-lang__option {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 8px 12px;
    background: transparent;
    border: none;
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.86rem;
    color: var(--eue-text-primary);
    cursor: pointer;
    text-align: left;
    transition: background 0.2s ease;
}
.vm-lang__option:hover { background: rgba(99, 102, 241, 0.08); }
.vm-lang__option[aria-selected="true"] {
    background: rgba(99, 102, 241, 0.12);
    color: var(--eue-primary);
}
@media (max-width: 768px) {
    .vm-lang { order: 2; }
    .vm-lang__code { display: none; }
    .vm-lang__current { padding: 8px 8px 8px 6px; gap: 4px; }
}



[data-theme="light"] .vm-matrix-rain,
[data-theme="reading"] .vm-matrix-rain { display: none; }



[data-theme="light"] .vm-pipeline-3d,
[data-theme="reading"] .vm-pipeline-3d {
    border-top: 1px solid rgba(99,102,241,0.25);
    border-bottom: 1px solid rgba(99,102,241,0.25);
    box-shadow: 0 0 0 1px rgba(99,102,241,0.06) inset;
}

[data-theme="light"] .vm-stepcard,
[data-theme="reading"] .vm-stepcard {
    box-shadow:
        0.5rem 0.5rem 1.2rem var(--eue-shadow-dark, rgba(0,0,0,0.18)),
        -0.3rem -0.3rem 0.9rem var(--eue-shadow-light, rgba(255,255,255,0.8));
}
[data-theme="light"] .vm-stepcard[data-active],
[data-theme="reading"] .vm-stepcard[data-active] {
    box-shadow:
        0.7rem 0.7rem 1.8rem var(--eue-shadow-dark, rgba(0,0,0,0.22)),
        -0.4rem -0.4rem 1.2rem var(--eue-shadow-light, rgba(255,255,255,0.85));
}

[data-theme="light"] .vm-clock-meta__time,
[data-theme="reading"] .vm-clock-meta__time { color: var(--eue-text-secondary); }

body {
    transition: opacity 0.22s ease;
}
body.vm-page-leaving {
    opacity: 0;
    pointer-events: none;
}
@media (prefers-reduced-motion: reduce) {
    body { transition: none; }
    body.vm-page-leaving { opacity: 1; }
}

/* ═══════════════════════════════════════════════════════════════
   THEME-SPECIFIC CARD HOVER EFFECTS
   Light / Dark / Reading — her modda belirgin, benzersiz efektler
   ═══════════════════════════════════════════════════════════════ */

/* ── LIGHT MODE ────────────────────────────────────────────── */
[data-theme="light"] .vm-feature-card:hover {
    transform: translateY(-6px);
    border-color: rgba(99,102,241,0.35);
    background: linear-gradient(135deg, #f0f0ff 0%, var(--eue-surface) 100%);
    box-shadow:
        0 8px 32px rgba(99,102,241,0.12),
        0 2px 8px rgba(99,102,241,0.08),
        inset 0 1px 0 rgba(255,255,255,0.9);
}
[data-theme="light"] .vm-feature-card:hover .vm-feature-card__icon {
    background: rgba(99,102,241,0.18);
    box-shadow: 0 0 16px rgba(99,102,241,0.15);
}
[data-theme="light"] .vm-audience-card:hover {
    transform: translateY(-6px);
    border-color: rgba(99,102,241,0.3);
    background: linear-gradient(160deg, #eef0ff 0%, var(--eue-surface) 100%);
    box-shadow:
        0 12px 36px rgba(99,102,241,0.1),
        0 2px 6px rgba(99,102,241,0.06),
        inset 0 1px 0 rgba(255,255,255,0.95);
}
[data-theme="light"] .vm-audience-card:hover .vm-audience-card__icon {
    background: rgba(99,102,241,0.2);
    transform: scale(1.08);
    transition: all 0.3s ease;
}
[data-theme="light"] .vm-platform-chip:hover {
    transform: translateY(-3px) scale(1.03);
    border-color: rgba(99,102,241,0.3);
    background: linear-gradient(135deg, #ededff 0%, var(--eue-surface) 100%);
    box-shadow:
        0 8px 24px rgba(99,102,241,0.1),
        0 1px 4px rgba(99,102,241,0.06);
}
[data-theme="light"] .vm-platform-chip:hover .vm-platform-chip__icon {
    color: var(--eue-primary);
    transform: scale(1.15);
    transition: all 0.3s ease;
}
/* Light neon ring — softer, visible indigo sweep */
[data-theme="light"] .vm-neon-ring::before {
    background: conic-gradient(
        from var(--vm-ring-deg) at 50% 50%,
        transparent 0deg,
        rgba(99,102,241,0.5) 70deg,
        transparent 140deg,
        transparent 220deg,
        rgba(99,102,241,0.5) 290deg,
        transparent 360deg
    );
}
/* Light sweep — darker beam for visibility on light bg */
[data-theme="light"] .vm-feature-card::after,
[data-theme="light"] .vm-how__step::after,
[data-theme="light"] .vm-platform-card::after {
    border-color: rgba(99,102,241,0.25);
    filter: blur(40px);
}

/* ── DARK MODE ─────────────────────────────────────────────── */
[data-theme="dark"] .vm-feature-card:hover {
    transform: translateY(-6px);
    border-color: rgba(129,140,248,0.4);
    background: linear-gradient(135deg, rgba(99,102,241,0.08) 0%, var(--eue-surface) 100%);
    box-shadow:
        0 0 24px rgba(99,102,241,0.2),
        0 20px 50px rgba(0,0,0,0.4),
        inset 0 1px 0 rgba(129,140,248,0.1);
}
[data-theme="dark"] .vm-feature-card:hover .vm-feature-card__icon {
    background: rgba(99,102,241,0.25);
    box-shadow: 0 0 20px rgba(99,102,241,0.3);
}
[data-theme="dark"] .vm-audience-card:hover {
    transform: translateY(-6px);
    border-color: rgba(129,140,248,0.35);
    background: linear-gradient(160deg, rgba(99,102,241,0.06) 0%, var(--eue-surface) 100%);
    box-shadow:
        0 0 20px rgba(99,102,241,0.15),
        0 16px 40px rgba(0,0,0,0.45),
        inset 0 1px 0 rgba(129,140,248,0.08);
}
[data-theme="dark"] .vm-audience-card:hover .vm-audience-card__icon {
    background: rgba(99,102,241,0.3);
    box-shadow: 0 0 18px rgba(99,102,241,0.25);
    transform: scale(1.08);
    transition: all 0.3s ease;
}
[data-theme="dark"] .vm-platform-chip:hover {
    transform: translateY(-3px) scale(1.03);
    border-color: rgba(129,140,248,0.35);
    background: linear-gradient(135deg, rgba(99,102,241,0.1) 0%, var(--eue-surface) 100%);
    box-shadow:
        0 0 16px rgba(99,102,241,0.18),
        0 12px 30px rgba(0,0,0,0.5);
}
[data-theme="dark"] .vm-platform-chip:hover .vm-platform-chip__icon {
    color: #a5b4fc;
    text-shadow: 0 0 12px rgba(99,102,241,0.5);
    transform: scale(1.15);
    transition: all 0.3s ease;
}

/* ── READING MODE ──────────────────────────────────────────── */
[data-theme="reading"] .vm-feature-card:hover {
    transform: translateY(-6px);
    border-color: rgba(244,143,177,0.35);
    background: linear-gradient(135deg, rgba(244,143,177,0.06) 0%, var(--eue-surface) 100%);
    box-shadow:
        0 0 20px rgba(244,143,177,0.12),
        0 16px 40px rgba(0,0,0,0.35),
        inset 0 1px 0 rgba(244,143,177,0.08);
}
[data-theme="reading"] .vm-feature-card:hover .vm-feature-card__icon {
    background: rgba(244,143,177,0.18);
    box-shadow: 0 0 14px rgba(244,143,177,0.2);
}
[data-theme="reading"] .vm-audience-card:hover {
    transform: translateY(-6px);
    border-color: rgba(244,143,177,0.3);
    background: linear-gradient(160deg, rgba(244,143,177,0.05) 0%, var(--eue-surface) 100%);
    box-shadow:
        0 0 16px rgba(244,143,177,0.1),
        0 14px 36px rgba(0,0,0,0.35),
        inset 0 1px 0 rgba(244,143,177,0.06);
}
[data-theme="reading"] .vm-audience-card:hover .vm-audience-card__icon {
    background: rgba(244,143,177,0.22);
    box-shadow: 0 0 14px rgba(244,143,177,0.18);
    transform: scale(1.08);
    transition: all 0.3s ease;
}
[data-theme="reading"] .vm-platform-chip:hover {
    transform: translateY(-3px) scale(1.03);
    border-color: rgba(244,143,177,0.3);
    background: linear-gradient(135deg, rgba(244,143,177,0.07) 0%, var(--eue-surface) 100%);
    box-shadow:
        0 0 14px rgba(244,143,177,0.1),
        0 10px 28px rgba(0,0,0,0.35);
}
[data-theme="reading"] .vm-platform-chip:hover .vm-platform-chip__icon {
    color: #f48fb1;
    text-shadow: 0 0 10px rgba(244,143,177,0.4);
    transform: scale(1.15);
    transition: all 0.3s ease;
}
/* Reading neon ring — warm rose sweep */
[data-theme="reading"] .vm-neon-ring::before {
    background: conic-gradient(
        from var(--vm-ring-deg) at 50% 50%,
        transparent 0deg,
        rgba(244,143,177,0.6) 70deg,
        transparent 140deg,
        transparent 220deg,
        rgba(255,183,77,0.5) 290deg,
        transparent 360deg
    );
}
/* Reading sweep — warm amber beam */
[data-theme="reading"] .vm-feature-card::after,
[data-theme="reading"] .vm-how__step::after,
[data-theme="reading"] .vm-platform-card::after {
    border-color: rgba(244,143,177,0.3);
}

/* ── FAQ CARD HOVER — tema bazlı ──────────────────────────── */
[data-theme="light"] .vm-faq__item:hover {
    border-color: rgba(99,102,241,0.2);
    box-shadow: 0 6px 20px rgba(99,102,241,0.08);
}
[data-theme="dark"] .vm-faq__item:hover {
    border-color: rgba(129,140,248,0.25);
    box-shadow: 0 0 14px rgba(99,102,241,0.12), 0 8px 24px rgba(0,0,0,0.35);
}
[data-theme="reading"] .vm-faq__item:hover {
    border-color: rgba(244,143,177,0.22);
    box-shadow: 0 0 12px rgba(244,143,177,0.08), 0 8px 24px rgba(0,0,0,0.3);
}
