/* ============================================
   HIMMET AKAR — DIGITAL CRAFTSMAN PORTFOLIO
   Premium Artistic & Interactive CSS
   ============================================ */

/* ── CSS Custom Properties ── */
:root {
    --deep-space: #0B0914;
    --deep-space-rgb: 11, 9, 20;
    --glass-surface: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.06);
    --glass-hover: rgba(255, 255, 255, 0.06);
    --electric-violet: #7C3AED;
    --electric-violet-rgb: 124, 58, 237;
    --cyber-teal: #06B6D4;
    --cyber-teal-rgb: 6, 182, 212;
    --platinum: #F8FAFC;
    --cashmere: #94A3B8;
    --cashmere-dim: #64748B;

    --font-display: 'Syne', sans-serif;
    --font-body: 'Inter', sans-serif;

    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

    --container-width: 1200px;
    --section-padding: 80px;
    --border-radius: 20px;
    --card-radius: 24px;
}

/* ── Reset & Base ── */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    scrollbar-width: thin;
    scrollbar-color: var(--electric-violet) var(--deep-space);
}

html::-webkit-scrollbar {
    width: 6px;
}
html::-webkit-scrollbar-track {
    background: var(--deep-space);
}
html::-webkit-scrollbar-thumb {
    background: var(--electric-violet);
    border-radius: 3px;
}

body {
    font-family: var(--font-body);
    background: var(--deep-space);
    color: var(--cashmere);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

input, textarea {
    font-family: inherit;
}

::selection {
    background: rgba(124, 58, 237, 0.3);
    color: var(--platinum);
}

/* ── Reduced Motion ── */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    .orb, .cursor-glow, .connector-particle,
    .hero-canvas, .ai-typing-indicator span,
    .ride-waveform span {
        display: none !important;
    }
}

/* ── Container ── */
.section-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* ── Ambient Background ── */
.ambient-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.35;
    will-change: transform;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(var(--electric-violet-rgb), 0.4), transparent 70%);
    top: -10%;
    left: -10%;
    animation: orbFloat1 20s ease-in-out infinite;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(var(--cyber-teal-rgb), 0.3), transparent 70%);
    bottom: 10%;
    right: -5%;
    animation: orbFloat2 25s ease-in-out infinite;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(var(--electric-violet-rgb), 0.2), transparent 70%);
    top: 50%;
    left: 40%;
    animation: orbFloat3 30s ease-in-out infinite;
}

@keyframes orbFloat1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(100px, 80px) scale(1.1); }
    66% { transform: translate(-50px, 120px) scale(0.9); }
}

@keyframes orbFloat2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-80px, -60px) scale(1.15); }
    66% { transform: translate(60px, -100px) scale(0.85); }
}

@keyframes orbFloat3 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(80px, -80px) scale(1.2); }
}

/* ── Cursor Glow (Desktop) ── */
.cursor-glow {
    position: fixed;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(var(--electric-violet-rgb), 0.08), transparent 70%);
    pointer-events: none;
    z-index: 1;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    will-change: transform;
}

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

/* ── Glass Card Utility ── */
.glass-card {
    background: var(--glass-surface);
    border: 1px solid var(--glass-border);
    border-radius: var(--card-radius);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: background 0.4s ease, border-color 0.4s ease, transform 0.4s var(--ease-out-expo);
}

.glass-card:hover {
    background: var(--glass-hover);
    border-color: rgba(255, 255, 255, 0.1);
}

/* ── Navigation ── */
.nav-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all 0.4s var(--ease-out-expo);
}

.nav-bar.scrolled {
    padding: 10px 0;
    background: rgba(var(--deep-space-rgb), 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
}

.nav-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 18px;
    color: var(--platinum);
    z-index: 1001;
}

.nav-logo-img {
    height: 36px;
    width: auto;
    object-fit: contain;
}

.footer-logo-img {
    height: 33px;
    width: auto;
    object-fit: contain;
    vertical-align: middle;
    margin-right: 8px;
    margin-top: -2px;
}

.logo-text {
    font-size: 13px;
    font-weight: 500;
    color: var(--platinum);
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 0.05em;
    font-family: var(--font-display);
}

.logo-text strong {
    font-weight: 800;
    color: var(--platinum);
}

.logo-tagline {
    font-size: 10px;
    color: var(--cashmere-dim);
    font-weight: 600;
}

@media (max-width: 767px) {
    .logo-tagline {
        display: none;
    }
}

.nav-links {
    display: none;
    gap: 36px;
}

.nav-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--cashmere);
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--electric-violet), var(--cyber-teal));
    border-radius: 1px;
    transition: width 0.3s var(--ease-out-expo);
}

.nav-link:hover {
    color: var(--platinum);
}

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

.nav-cta {
    display: none;
    padding: 10px 24px;
    font-size: 13px;
    font-weight: 600;
    color: var(--platinum);
    background: linear-gradient(135deg, var(--electric-violet), rgba(var(--cyber-teal-rgb), 0.8));
    border-radius: 50px;
    transition: all 0.3s var(--ease-out-expo);
    letter-spacing: 0.02em;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(var(--electric-violet-rgb), 0.4);
}

/* Hamburger */
.nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    z-index: 1001;
    padding: 8px;
    min-width: 48px;
    min-height: 48px;
    align-items: center;
    justify-content: center;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--platinum);
    border-radius: 1px;
    transition: all 0.3s var(--ease-out-expo);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.nav-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}
.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    background: rgba(var(--deep-space-rgb), 0.95);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s var(--ease-out-expo);
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.mobile-link {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 700;
    color: var(--platinum);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s var(--ease-out-expo);
}

.mobile-menu.active .mobile-link {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu.active .mobile-link:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.active .mobile-link:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu.active .mobile-link:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu.active .mobile-link:nth-child(4) { transition-delay: 0.25s; }

.mobile-link:hover {
    color: var(--electric-violet);
}

.mobile-menu-cta {
    margin-top: 20px;
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 600;
    color: var(--platinum);
    background: linear-gradient(135deg, var(--electric-violet), rgba(var(--cyber-teal-rgb), 0.8));
    border-radius: 50px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s var(--ease-out-expo);
}

.mobile-menu.active .mobile-menu-cta {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.3s;
}

/* ── Hero Section ── */
.hero {
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 140px 24px 80px;
    overflow: hidden;
}

.hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: var(--container-width);
    margin: 0 auto;
    width: 100%;
}

.hero-status {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    background: var(--glass-surface);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    margin-bottom: 32px;
    opacity: 0;
    transform: translateY(20px);
}

.status-dot {
    width: 8px;
    height: 8px;
    background: var(--cyber-teal);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
    box-shadow: 0 0 12px rgba(var(--cyber-teal-rgb), 0.6);
}

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

.status-text {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.12em;
    color: var(--cashmere);
    white-space: nowrap;
}

.hero-title {
    font-family: var(--font-display);
    font-weight: 800;
    line-height: 1.1;
    color: var(--platinum);
    margin-bottom: 28px;
}

.title-line {
    display: block;
    opacity: 0;
    transform: translateY(40px);
    position: relative;
}

.hero-title {
    font-size: clamp(36px, 8vw, 80px);
}

.hero-title em {
    font-style: italic;
    color: rgba(var(--electric-violet-rgb), 0.9);
}

.gradient-text {
    background: linear-gradient(135deg, var(--electric-violet), var(--cyber-teal));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-subtitle {
    font-size: clamp(15px, 2.5vw, 19px);
    max-width: 600px;
    line-height: 1.8;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(20px);
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(20px);
    width: 100%;
    max-width: 1050px;
    margin-top: 40px;
    position: relative;
    z-index: 15;
}

.hero-actions .btn {
    flex-shrink: 0;
}

.hero-actions .hero-search-bar-wrapper {
    flex: 1;
    min-width: 280px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s var(--ease-out-expo);
    min-height: 48px;
    letter-spacing: 0.02em;
}

.btn-glow {
    color: var(--platinum);
    background: linear-gradient(135deg, var(--electric-violet), rgba(var(--cyber-teal-rgb), 0.7));
    box-shadow: 0 4px 20px rgba(var(--electric-violet-rgb), 0.3);
    border: none;
}

.btn-glow:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 40px rgba(var(--electric-violet-rgb), 0.5);
}

.btn-glass {
    color: var(--platinum);
    background: var(--glass-surface);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.btn-glass:hover {
    background: var(--glass-hover);
    border-color: rgba(var(--electric-violet-rgb), 0.4);
    transform: translateY(-3px);
}

/* ── Manifesto Section ── */
.manifesto {
    padding: var(--section-padding) 0;
    position: relative;
    z-index: 2;
}

.manifesto-badge {
    display: inline-block;
    margin-bottom: 24px;
}

.manifesto-badge span {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--electric-violet);
}

.manifesto-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 6vw, 64px);
    font-weight: 800;
    line-height: 1.15;
    color: var(--platinum);
    margin-bottom: 28px;
}

.reveal-line {
    display: block;
    opacity: 0;
    transform: translateY(30px);
}

.manifesto-body {
    font-size: clamp(16px, 2vw, 18px);
    max-width: 680px;
    line-height: 1.9;
    margin-bottom: 60px;
    opacity: 0;
    transform: translateY(20px);
}

.manifesto-pillars {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.pillar {
    padding: 32px 28px;
    opacity: 0;
    transform: translateY(30px);
}

.pillar-icon {
    margin-bottom: 20px;
}

.pillar h3 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--platinum);
    margin-bottom: 10px;
}

.pillar p {
    font-size: 14px;
    line-height: 1.7;
}

/* ── Section Headers ── */
.section-header {
    margin-bottom: 64px;
    text-align: center;
}

.section-badge {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--electric-violet);
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 800;
    color: var(--platinum);
    line-height: 1.15;
    margin-bottom: 16px;
}

.section-desc {
    font-size: clamp(15px, 2vw, 17px);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ── Showcase Section ── */
.showcase {
    padding: var(--section-padding) 0;
    position: relative;
    z-index: 2;
}

.showcase-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

.project-card {
    padding: 0;
    overflow: hidden;
    position: relative;
    opacity: 0;
    transform: translateY(40px);
    display: flex;
    flex-direction: column;
}

.project-number {
    position: absolute;
    top: 20px;
    right: 24px;
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    color: rgba(var(--electric-violet-rgb), 0.4);
    letter-spacing: 0.05em;
    z-index: 3;
}

.project-visual {
    padding: 40px 24px 24px;
    display: flex;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.project-visual::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center top, rgba(var(--electric-violet-rgb), 0.08) 0%, transparent 70%);
    pointer-events: none;
}

/* Phone Mockup */
.mockup-phone {
    width: 220px;
    height: 440px;
    background: rgba(var(--deep-space-rgb), 0.9);
    border-radius: 28px;
    border: 2px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
    position: relative;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.03),
        0 20px 60px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(var(--electric-violet-rgb), 0.1);
    transition: transform 0.5s var(--ease-out-expo);
}

.project-card:hover .mockup-phone {
    transform: translateY(-8px) scale(1.02);
}

.mockup-screen {
    width: 100%;
    height: 100%;
    padding: 16px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

/* PardonChef Mockup */
.pardonchef-screen {
    background: linear-gradient(180deg, #1a1215 0%, #0d0a0e 100%);
}

.mockup-header-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    margin-bottom: 16px;
}

.mockup-restaurant-name {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    color: var(--platinum);
}

.mockup-table {
    font-size: 10px;
    padding: 4px 10px;
    background: rgba(255, 107, 53, 0.15);
    color: #FF6B35;
    border-radius: 20px;
    font-weight: 600;
}

.mockup-menu-items {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mockup-menu-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: rgba(255,255,255,0.03);
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.04);
}

.menu-item-image {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    flex-shrink: 0;
    object-fit: cover;
    border: 1px solid rgba(255,255,255,0.06);
}

.menu-item-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.menu-item-name {
    font-size: 11px;
    font-weight: 600;
    color: var(--platinum);
}

.menu-item-price {
    font-size: 10px;
    color: var(--cashmere);
}

.menu-item-add {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: rgba(255,107,53,0.1);
    color: #FF6B35;
    font-size: 14px;
    font-weight: 600;
}

.mockup-order-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 14px;
    background: linear-gradient(135deg, #FF6B35, #E84855);
    border-radius: 14px;
    margin-top: auto;
    font-size: 11px;
    font-weight: 600;
    color: white;
}

.mockup-pay-btn {
    background: rgba(255,255,255,0.2);
    padding: 4px 12px;
    border-radius: 8px;
    font-size: 10px;
    transition: background 0.3s ease, transform 0.2s ease;
}

.mockup-pay-btn:active {
    transform: scale(0.95);
}

/* Interactive elements for PardonChef & Listing Master mockup states */
.pc-state, .lm-state {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 16px;
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.pc-state.active-state, .lm-state.active-state {
    opacity: 1;
    visibility: visible;
}

.mockup-pointer {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 20px;
    z-index: 100;
    pointer-events: none;
    transform: translate(0, 0);
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5));
    opacity: 0;
    will-change: transform, opacity;
}

/* ── PardonChef Interactive States ── */
#pc-state-checkout {
    background: linear-gradient(180deg, #16101c 0%, #0b0710 100%);
    justify-content: center;
}

.checkout-header {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    color: var(--platinum);
    margin-bottom: 20px;
    text-align: center;
}

.checkout-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.checkout-field {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.checkout-field label {
    font-size: 8px;
    color: var(--cashmere-dim);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.checkout-input-mock {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 10px;
    padding: 10px 12px;
    font-size: 11px;
    color: var(--cashmere);
    font-family: monospace;
    height: 36px;
    display: flex;
    align-items: center;
    letter-spacing: 0.05em;
}

.checkout-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.btn-checkout-submit {
    background: linear-gradient(135deg, #FF6B35, #E84855);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 12px;
    font-size: 11px;
    font-weight: 700;
    margin-top: 10px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.25);
    transition: transform 0.2s ease;
}

#pc-state-success {
    background: linear-gradient(180deg, #0d1e15 0%, #07100b 100%);
    justify-content: center;
    align-items: center;
    text-align: center;
}

.success-checkout-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #10B981, #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 16px;
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.3);
}

.success-checkout-title {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 700;
    color: var(--platinum);
    margin-bottom: 8px;
}

.success-checkout-text {
    font-size: 11px;
    color: var(--cashmere);
    line-height: 1.6;
    margin-bottom: 8px;
}

.success-subtext {
    font-size: 10px;
    color: #10B981;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.menu-item-name {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.menu-item-count {
    background: #FF6B35;
    color: white;
    font-size: 8px;
    font-weight: 700;
    padding: 1px 5px;
    border-radius: 8px;
    margin-left: 6px;
    display: none;
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.4);
}

.menu-item-count.visible {
    display: inline-block;
}

.menu-item-add.active {
    background: #FF6B35;
    color: white;
}

/* ── Listing Master Interactive States ── */
.listingmaster-screen {
    background: linear-gradient(180deg, #0e0b16 0%, #06040a 100%);
}

#lm-state-platforms {
    background: linear-gradient(180deg, #120e1a 0%, #0B0914 100%);
    justify-content: center;
}

.lm-header {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    color: var(--platinum);
    margin-bottom: 20px;
    text-align: center;
}

.platform-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.platform-btn {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px;
    padding: 14px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.platform-btn.active {
    background: rgba(124, 58, 237, 0.1);
    border-color: var(--electric-violet);
    box-shadow: 0 0 15px rgba(124, 58, 237, 0.25);
}

.platform-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
}

.platform-icon svg {
    width: 28px;
    height: 28px;
}

.platform-name {
    font-size: 9px;
    font-weight: 600;
    color: var(--cashmere);
}

.platform-btn.active .platform-name {
    color: var(--platinum);
}

#lm-state-dashboard {
    background: linear-gradient(180deg, #0a0d16 0%, #05070c 100%);
    padding: 0;
}

.lm-dash-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    background: rgba(0,0,0,0.2);
}

.dash-platform-tag {
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 700;
    color: #FF9F1C;
}

.dash-status {
    font-size: 8px;
    background: rgba(16, 185, 129, 0.15);
    color: #10B981;
    padding: 2px 6px;
    border-radius: 20px;
    font-weight: 700;
}

.lm-scroll-container {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.lm-scroll-content {
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    will-change: transform;
}

.lm-dash-section {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.section-subtitle {
    font-size: 8px;
    text-transform: uppercase;
    color: var(--cashmere-dim);
    font-weight: 700;
    letter-spacing: 0.05em;
}

.lm-product-item {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 10px;
    padding: 8px 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lm-product-item.active {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255,255,255,0.15);
}

.product-icon {
    font-size: 14px;
}

.product-icon-img {
    width: 24px;
    height: 24px;
    border-radius: 6px;
    object-fit: cover;
    flex-shrink: 0;
    border: 1px solid rgba(255,255,255,0.06);
}

.product-text {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.product-name {
    font-size: 10px;
    font-weight: 600;
    color: var(--platinum);
}

.product-status-tag {
    font-size: 7px;
    color: var(--cyber-teal);
    font-weight: 600;
}

.sales-chart {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    align-items: end;
    height: 70px;
    padding-top: 10px;
}

.chart-bar {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    height: 100%;
    justify-content: flex-end;
}

.chart-bar::before {
    content: '';
    width: 8px;
    height: var(--height);
    background: rgba(255,255,255,0.05);
    border-radius: 2px;
    transition: height 1s ease-in-out, background 0.3s ease;
}

.chart-bar.active::before {
    background: linear-gradient(180deg, var(--cyber-teal), var(--electric-violet));
    box-shadow: 0 0 8px rgba(6, 182, 212, 0.3);
}

.chart-bar span {
    font-size: 7px;
    color: var(--cashmere-dim);
}

#lm-state-detail {
    background: linear-gradient(180deg, #0c0816 0%, #06040b 100%);
    padding: 0;
}

.lm-detail-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    font-size: 11px;
    font-weight: 600;
    color: var(--platinum);
    background: rgba(0,0,0,0.2);
}

.detail-back-btn {
    color: var(--cashmere-dim);
    cursor: pointer;
}

.lm-detail-body {
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.detail-product-title {
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 700;
    color: var(--platinum);
}

.detail-ai-box {
    background: rgba(124, 58, 237, 0.04);
    border: 1px solid rgba(124, 58, 237, 0.15);
    border-radius: 10px;
    padding: 10px;
    min-height: 120px;
    display: flex;
    flex-direction: column;
}

.detail-ai-text {
    font-size: 9px;
    line-height: 1.5;
    color: var(--cashmere);
    margin: 0;
}

.mockup-ai-stats {
    display: flex;
    gap: 10px;
}

.ai-stat {
    flex: 1;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 10px;
    padding: 10px;
    text-align: center;
}

.ai-stat-val {
    display: block;
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 800;
    color: var(--electric-violet);
    margin-bottom: 2px;
}

.ai-stat-label {
    font-size: 8px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--cashmere-dim);
}

.mockup-ai-stats-grid {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* SütApp Mockup */
.sutapp-screen {
    background: linear-gradient(180deg, #0a1218 0%, #0B0914 100%);
}

.mockup-sync-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 12px;
    margin-bottom: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.sync-status {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 600;
}

.sync-status.online {
    color: #10B981;
}

.sync-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: currentColor;
    box-shadow: 0 0 8px currentColor;
}

.sync-date {
    font-size: 10px;
    color: var(--cashmere-dim);
}

.sutapp-gauge-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 12px 0;
}

.sutapp-liquid-wave {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 2px solid rgba(6, 182, 212, 0.25);
    background: rgba(6, 182, 212, 0.03);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 0 15px rgba(6, 182, 212, 0.1),
        inset 0 0 15px rgba(6, 182, 212, 0.1);
}

.sutapp-wave-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 30%, rgba(10, 18, 24, 0.4) 100%);
    z-index: 5;
    pointer-events: none;
}

.sutapp-liquid-level {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 40%;
    background: linear-gradient(180deg, #38BDF8 0%, #0284C7 100%);
    box-shadow: 0 0 20px rgba(56, 189, 248, 0.4);
    z-index: 2;
    transition: height 0.1s ease-out;
}

.sutapp-gauge-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 6;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-shadow: 0 2px 4px rgba(0,0,0,0.8);
}

.gauge-label {
    font-size: 7px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--cashmere-dim);
}

.gauge-value {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 800;
    color: var(--platinum);
    margin: 2px 0;
}

.gauge-temp {
    font-size: 8px;
    font-weight: 600;
    color: #38BDF8;
}

.sutapp-sync-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px;
    padding: 8px 10px;
    margin-bottom: 12px;
}

.sync-card-status {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 9px;
    font-weight: 700;
    color: var(--platinum);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding-bottom: 6px;
    margin-bottom: 6px;
}

.status-indicator-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    display: inline-block;
    transition: all 0.3s ease;
}

.status-indicator-dot.offline {
    background: #FF9F1C;
    box-shadow: 0 0 6px #FF9F1C;
}

.status-indicator-dot.online {
    background: #10B981;
    box-shadow: 0 0 6px #10B981;
}

.sync-data-list {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.sync-data-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.04);
    padding: 5px 8px;
    border-radius: 8px;
}

.item-icon {
    font-size: 11px;
}

.item-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.item-name {
    font-size: 8px;
    font-weight: 600;
    color: var(--platinum);
}

.item-desc {
    font-size: 7px;
    color: var(--cashmere-dim);
}

.item-check-badge {
    font-size: 7px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 8px;
    background: rgba(255, 159, 28, 0.12);
    color: #FF9F1C;
    transition: all 0.3s ease;
}

.item-check-badge.sync-completed {
    background: rgba(16, 185, 129, 0.12);
    color: #10B981;
}

.sutapp-bottom-bar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: auto;
}

.bottom-stat {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 8px;
    padding: 6px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.stat-lbl {
    font-size: 7px;
    color: var(--cashmere-dim);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.stat-val {
    font-size: 11px;
    font-weight: 700;
    color: var(--platinum);
}

/* Rideshare Mockup */
.rideshare-screen {
    background: linear-gradient(180deg, #0f0a14 0%, #0B0914 100%);
    padding: 0;
}

.rs-state {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 16px;
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.rs-state.active-state {
    opacity: 1;
    visibility: visible;
}

#rs-state-search {
    background: linear-gradient(180deg, #160a11 0%, #0b0710 100%);
    justify-content: center;
}

.rs-header {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    color: var(--platinum);
    margin-bottom: 20px;
    text-align: center;
}

.rs-search-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.rs-field {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px;
    padding: 10px 14px;
    height: 38px;
}

.rs-field-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.rs-field-dot.from { background: #06B6D4; }
.rs-field-dot.to { background: #EC4899; }

.rs-input-mock {
    font-size: 11px;
    color: var(--cashmere-dim);
    font-weight: 500;
}

.btn-find-ride {
    background: linear-gradient(135deg, #EC4899, var(--electric-violet));
    color: white;
    border: none;
    border-radius: 12px;
    padding: 12px;
    font-size: 11px;
    font-weight: 700;
    cursor: pointer;
    margin-top: 10px;
    box-shadow: 0 4px 15px rgba(236, 72, 153, 0.25);
    transition: transform 0.2s ease;
}

#rs-state-request {
    background: linear-gradient(180deg, #110810 0%, #060408 100%);
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.radar-container {
    position: relative;
    width: 100px;
    height: 100px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.radar-ring {
    position: absolute;
    border: 1px solid rgba(236, 72, 153, 0.2);
    border-radius: 50%;
    animation: radarWave 2s linear infinite;
}

.radar-ring:nth-child(1) { width: 40px; height: 40px; animation-delay: 0s; }
.radar-ring:nth-child(2) { width: 70px; height: 70px; animation-delay: 0.6s; }
.radar-ring:nth-child(3) { width: 100px; height: 100px; animation-delay: 1.2s; }

@keyframes radarWave {
    0% { transform: scale(0.8); opacity: 1; }
    100% { transform: scale(1.6); opacity: 0; }
}

.rs-request-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    padding: 16px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.5);
    text-align: center;
    z-index: 10;
}

.req-title {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    color: var(--platinum);
}

.req-details {
    display: flex;
    justify-content: space-around;
    font-size: 10px;
    color: var(--cashmere);
    background: rgba(0,0,0,0.25);
    padding: 8px;
    border-radius: 8px;
}

.btn-accept-ride {
    background: linear-gradient(135deg, #06B6D4, #10B981);
    color: white;
    border: none;
    border-radius: 10px;
    padding: 10px;
    font-size: 11px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(6, 182, 212, 0.25);
}

#rs-state-navigation {
    padding: 0;
}

.mockup-map-bg {
    flex: 1;
    position: relative;
    background: rgba(var(--deep-space-rgb), 0.5);
    overflow: hidden;
}

.map-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 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: 30px 30px;
}

.map-pin {
    position: absolute;
    z-index: 2;
    transform: translate(-50%, -50%);
}

.car-emoji {
    font-size: 16px;
    display: block;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
}

.map-route-line-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.mockup-ride-card {
    padding: 14px 16px;
    background: rgba(var(--deep-space-rgb), 0.95);
    border-top: 1px solid rgba(255,255,255,0.06);
}

.ride-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.ride-dest {
    font-size: 12px;
    font-weight: 600;
    color: var(--platinum);
}

.ride-time {
    font-size: 10px;
    color: #EC4899;
    font-weight: 600;
}

.ride-driver-info {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.04);
    padding: 6px 10px;
    border-radius: 8px;
    margin-bottom: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.driver-avatar {
    font-size: 14px;
}

.driver-details {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.driver-name {
    font-size: 9px;
    font-weight: 600;
    color: var(--platinum);
}

.driver-car {
    font-size: 8px;
    color: var(--cashmere-dim);
}

.ride-status-label {
    display: block;
    text-align: center;
    font-size: 8px;
    color: #EC4899;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.project-info {
    padding: 28px 24px 32px;
}

.project-tag {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--electric-violet);
    margin-bottom: 8px;
    display: block;
}

.project-title {
    font-family: var(--font-display);
    font-size: clamp(24px, 4vw, 32px);
    font-weight: 800;
    color: var(--platinum);
    margin-bottom: 12px;
}

.project-desc {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.project-techs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tech-pill {
    font-size: 11px;
    font-weight: 500;
    padding: 5px 14px;
    background: rgba(var(--electric-violet-rgb), 0.08);
    border: 1px solid rgba(var(--electric-violet-rgb), 0.15);
    border-radius: 20px;
    color: var(--cashmere);
}

/* ── Interactive Canvas Section ── */
.canvas-section {
    padding: var(--section-padding) 0;
    position: relative;
    z-index: 2;
}

.canvas-flow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.canvas-node {
    padding: 32px 28px;
    text-align: center;
    width: 100%;
    max-width: 320px;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    cursor: pointer;
}

.canvas-node:hover .node-glow {
    opacity: 1;
}

.node-icon {
    margin-bottom: 16px;
    display: flex;
    justify-content: center;
}

.canvas-node h4 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--platinum);
    margin-bottom: 8px;
}

.canvas-node p {
    font-size: 13px;
    line-height: 1.7;
}

.node-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200px;
    height: 200px;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(var(--electric-violet-rgb), 0.15), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.canvas-connector {
    width: 2px;
    height: 60px;
    position: relative;
    display: flex;
    justify-content: center;
}

.connector-line {
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, rgba(var(--electric-violet-rgb), 0.3), rgba(var(--cyber-teal-rgb), 0.3));
    border-radius: 1px;
}

.connector-particle {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--electric-violet);
    box-shadow: 0 0 12px rgba(var(--electric-violet-rgb), 0.6);
    animation: particleFlow 2s ease-in-out infinite;
}

@keyframes particleFlow {
    0% { top: 0; opacity: 0; }
    20% { opacity: 1; }
    80% { opacity: 1; }
    100% { top: 100%; opacity: 0; }
}

/* ── Metrics Section ── */
.metrics {
    padding: var(--section-padding) 0;
    position: relative;
    z-index: 2;
}

.metrics-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.metric-card {
    padding: 28px 20px;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
}

.metric-value {
    font-family: var(--font-display);
    font-size: clamp(36px, 6vw, 56px);
    font-weight: 800;
    background: linear-gradient(135deg, var(--electric-violet), var(--cyber-teal));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.metric-suffix {
    font-family: var(--font-display);
    font-size: clamp(20px, 3vw, 28px);
    font-weight: 700;
    color: var(--cyber-teal);
}

.metric-label {
    display: block;
    font-size: 12px;
    color: var(--cashmere);
    margin-top: 8px;
    margin-bottom: 14px;
}

.metric-bar {
    height: 4px;
    background: rgba(255,255,255,0.05);
    border-radius: 2px;
    overflow: hidden;
}

.metric-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--electric-violet), var(--cyber-teal));
    border-radius: 2px;
    width: 0;
    transition: width 1.5s var(--ease-out-expo);
}

/* ── AI Architect Section ── */
.ai-architect {
    padding: var(--section-padding) 0;
    position: relative;
    z-index: 2;
    background: linear-gradient(180deg, transparent, rgba(11, 9, 20, 0.6) 50%, transparent);
}

.ai-architect-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: clamp(20px, 4vw, 40px);
    display: flex;
    flex-direction: column;
    gap: 30px;
    border: 1px solid var(--glass-border);
}

/* Terminal Shell */
.terminal-shell {
    background: #09090B;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

.terminal-header {
    background: #121217;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.terminal-dots {
    display: flex;
    gap: 8px;
    margin-right: 20px;
}

.terminal-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.terminal-dots .red { background: #FF5F56; }
.terminal-dots .yellow { background: #FFBD2E; }
.terminal-dots .green { background: #27C93F; }

.terminal-title {
    font-family: var(--font-mono, monospace);
    font-size: 12px;
    color: var(--platinum);
    opacity: 0.5;
    letter-spacing: 0.05em;
}

.terminal-body {
    padding: 24px;
    font-family: var(--font-mono, monospace);
    font-size: 14px;
    color: var(--platinum);
    line-height: 1.6;
}

.term-prompt {
    color: var(--cyber-teal);
    font-weight: 700;
}

.text-dim {
    color: var(--platinum);
    opacity: 0.5;
}

.terminal-welcome {
    margin-bottom: 20px;
}

.prompt-suggestions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
}

.suggestion-chip {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--platinum);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.suggestion-chip:hover {
    background: rgba(6, 182, 212, 0.08);
    border-color: var(--cyber-teal);
    color: var(--cyber-teal);
    box-shadow: 0 0 10px rgba(6, 182, 212, 0.15);
}

.terminal-input-row {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 20px;
}

.terminal-textarea {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: var(--platinum);
    font-family: var(--font-mono, monospace);
    font-size: 14px;
    resize: none;
    line-height: 1.6;
    padding: 0;
}

.terminal-textarea::placeholder {
    color: var(--platinum);
    opacity: 0.3;
}

.terminal-actions {
    display: flex;
    justify-content: flex-end;
}

.terminal-logs {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: none;
    max-height: 150px;
    overflow-y: auto;
    font-size: 12px;
    color: var(--platinum);
    opacity: 0.8;
}

.terminal-log-line {
    margin-bottom: 6px;
}

.terminal-log-line.success {
    color: #10B981;
}

/* Blueprint Dashboard */
.blueprint-dashboard {
    display: none;
    border-top: 1px dashed rgba(255, 255, 255, 0.15);
    padding-top: 30px;
    opacity: 0;
}

.blueprint-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media (max-width: 768px) {
    .blueprint-grid {
        grid-template-columns: 1fr;
    }
}

.blueprint-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 24px;
    height: auto;
    margin-bottom: 20px;
}

.blueprint-card-title {
    font-family: var(--font-display);
    font-size: 12px;
    letter-spacing: 0.1em;
    color: var(--platinum);
    opacity: 0.5;
    margin-bottom: 16px;
    border-left: 2px solid var(--electric-violet);
    padding-left: 8px;
}

.architecture-type-badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 4px;
    background: rgba(124, 58, 237, 0.1);
    border: 1px solid rgba(124, 58, 237, 0.3);
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    color: var(--electric-violet);
    text-shadow: 0 0 10px rgba(124, 58, 237, 0.2);
    margin-bottom: 12px;
}

.architecture-desc {
    font-size: 13px;
    color: var(--platinum);
    opacity: 0.8;
    line-height: 1.6;
}

.tech-stack-container {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tech-chip {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--platinum);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-family: var(--font-mono, monospace);
    transition: all 0.3s ease;
}

.tech-chip:hover {
    border-color: var(--cyber-teal);
    color: var(--cyber-teal);
    background: rgba(6, 182, 212, 0.05);
    box-shadow: 0 0 10px rgba(6, 182, 212, 0.1);
}

/* Roadmap Styles */
.roadmap-card {
    display: flex;
    flex-direction: column;
    height: auto;
}

.roadmap-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    padding-left: 20px;
    border-left: 1px dashed rgba(255, 255, 255, 0.15);
    margin-left: 10px;
    margin-top: 10px;
}

.roadmap-step {
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.roadmap-step:hover {
    border-color: var(--cyber-teal);
    background: rgba(6, 182, 212, 0.03);
    box-shadow: 0 0 15px rgba(6, 182, 212, 0.05);
}

.roadmap-step::before {
    content: '';
    position: absolute;
    left: -26px;
    top: 22px;
    width: 10px;
    height: 10px;
    background: var(--electric-violet);
    border: 2px solid #09090b;
    border-radius: 50%;
    box-shadow: 0 0 8px var(--electric-violet);
    transition: all 0.3s ease;
}

.roadmap-step:hover::before {
    background: var(--cyber-teal);
    box-shadow: 0 0 10px var(--cyber-teal);
}

.roadmap-step-header {
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.roadmap-step-title-group {
    flex: 1;
    padding-right: 15px;
}

.roadmap-step-toggle-btn {
    width: 24px;
    height: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--cyber-teal);
    transition: transform 0.3s ease;
}

.roadmap-chevron {
    width: 20px;
    height: 20px;
    transform: rotate(-90deg);
    transition: transform 0.3s ease;
}

.roadmap-step.active .roadmap-chevron {
    transform: rotate(0deg);
}

.roadmap-step-content {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
}

.roadmap-step.active .roadmap-step-content {
    max-height: 250px;
    opacity: 1;
}

.roadmap-step-phase {
    font-family: var(--font-mono, monospace);
    font-size: 10px;
    color: var(--cyber-teal);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
}

.roadmap-step-title {
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0px;
}

.roadmap-step-desc {
    padding: 0 20px 16px 20px;
    font-size: 11px;
    color: var(--platinum);
    opacity: 0.7;
    line-height: 1.5;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    padding-top: 12px;
}

.blueprint-cta-row {
    margin-top: 20px;
    display: flex;
    justify-content: center;
}

.btn-wide {
    width: 100%;
    justify-content: center;
    padding: 16px 32px;
}

/* ── Contact Section ── */
.contact {
    padding: var(--section-padding) 0;
    position: relative;
    z-index: 2;
}

.contact-wrapper {
    padding: 40px 24px;
    max-width: 640px;
    margin: 0 auto;
}

.contact-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
    animation: fadeInUp 0.5s var(--ease-out-expo);
}

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

.form-label {
    display: block;
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 600;
    color: var(--platinum);
    margin-bottom: 20px;
    text-align: center;
}

.project-type-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 28px;
}

.type-option {
    padding: 20px 16px;
    text-align: center;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    transition: all 0.3s var(--ease-out-expo);
}

.type-option input {
    display: none;
}

.type-option .type-icon {
    color: var(--cashmere);
    transition: color 0.3s ease;
}

.type-option span {
    font-size: 12px;
    font-weight: 500;
    color: var(--cashmere);
    transition: color 0.3s ease;
}

.type-option:hover,
.type-option.selected {
    border-color: rgba(var(--electric-violet-rgb), 0.5);
    background: rgba(var(--electric-violet-rgb), 0.06);
}

.type-option:hover .type-icon,
.type-option.selected .type-icon {
    color: var(--electric-violet);
}

.type-option:hover span,
.type-option.selected span {
    color: var(--platinum);
}

.form-next {
    width: 100%;
    justify-content: center;
}

.form-group {
    margin-bottom: 20px;
}

.form-group .form-label {
    font-size: 13px;
    text-align: left;
    margin-bottom: 8px;
}

.form-input {
    width: 100%;
    padding: 14px 18px;
    font-size: 14px;
    color: var(--platinum);
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--glass-border);
    border-radius: 14px;
    outline: none;
    transition: all 0.3s ease;
}

.form-input::placeholder {
    color: var(--cashmere-dim);
}

.form-input:focus {
    border-color: rgba(var(--electric-violet-rgb), 0.5);
    box-shadow: 0 0 0 3px rgba(var(--electric-violet-rgb), 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 100px;
}

.form-actions {
    display: flex;
    gap: 12px;
}

.form-actions .btn {
    flex: 1;
    justify-content: center;
}

.form-back {
    flex: 0 !important;
    min-width: auto;
}

/* Success State */
.success-content {
    text-align: center;
    padding: 40px 0;
}

.success-icon {
    font-size: 48px;
    color: var(--electric-violet);
    margin-bottom: 20px;
    display: block;
    animation: successPulse 2s ease-in-out infinite;
}

@keyframes successPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.success-content h3 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    color: var(--platinum);
    margin-bottom: 12px;
}

.success-content p {
    font-size: 14px;
    line-height: 1.7;
}

/* ── Footer ── */
.footer {
    padding: 60px 0 30px;
    border-top: 1px solid var(--glass-border);
    position: relative;
    z-index: 2;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-bottom: 40px;
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--platinum);
}

.footer-tagline {
    margin-top: 12px;
    font-size: 14px;
    line-height: 1.7;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--cashmere);
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--electric-violet);
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-top: 24px;
    border-top: 1px solid var(--glass-border);
    font-size: 13px;
    color: var(--cashmere-dim);
}

.footer-craft {
    color: var(--cashmere-dim);
    font-size: 12px;
}

/* ── Mobile Sticky CTA ── */
.mobile-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 900;
    padding: 12px 16px;
    padding-bottom: max(12px, env(safe-area-inset-bottom));
    background: rgba(var(--deep-space-rgb), 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid var(--glass-border);
    transform: translateY(100%);
    transition: transform 0.4s var(--ease-out-expo);
}

.mobile-cta.visible {
    transform: translateY(0);
}

.mobile-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px;
    font-size: 15px;
    font-weight: 600;
    color: var(--platinum);
    background: linear-gradient(135deg, var(--electric-violet), rgba(var(--cyber-teal-rgb), 0.7));
    border-radius: 14px;
    box-shadow: 0 4px 20px rgba(var(--electric-violet-rgb), 0.3);
    transition: all 0.3s ease;
    min-height: 48px;
}

.mobile-cta-btn:active {
    transform: scale(0.98);
}

/* ============================================
   RESPONSIVE — TABLET (768px+)
   ============================================ */
@media (min-width: 768px) {
    :root {
        --section-padding: 90px;
    }

    .manifesto-pillars {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }

    .showcase-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .project-info {
        padding: 32px 24px;
    }

    .project-visual {
        padding: 40px 24px 24px;
    }

    .canvas-flow {
        flex-direction: row;
        justify-content: center;
        gap: 0;
    }

    .canvas-connector {
        width: 60px;
        height: 2px;
        flex-direction: row;
    }

    .connector-line {
        width: 100%;
        height: 2px;
        background: linear-gradient(90deg, rgba(var(--electric-violet-rgb), 0.3), rgba(var(--cyber-teal-rgb), 0.3));
    }

    .connector-particle {
        animation-name: particleFlowH;
    }

    @keyframes particleFlowH {
        0% { left: 0; opacity: 0; }
        20% { opacity: 1; }
        80% { opacity: 1; }
        100% { left: 100%; opacity: 0; }
    }

    .metrics-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }

    .contact-wrapper {
        padding: 56px 48px;
    }

    .footer-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

/* ============================================
   RESPONSIVE — DESKTOP (1024px+)
   ============================================ */
@media (min-width: 1024px) {
    :root {
        --section-padding: 100px;
    }

    .nav-links {
        display: flex;
    }

    .nav-cta {
        display: inline-flex;
    }

    .nav-toggle {
        display: none;
    }

    .mobile-cta {
        display: none;
    }

    .hero {
        padding: 100px 24px 60px;
    }

    .hero-content {
        padding-left: 40px;
    }

    .project-info {
        padding: 40px 32px;
    }

    .project-visual {
        padding: 48px 32px 32px;
    }



    .canvas-node {
        max-width: 240px;
    }

    .canvas-connector {
        width: 80px;
    }

    .contact-wrapper {
        max-width: 1040px;
        display: grid;
        grid-template-columns: 1.1fr 0.9fr;
        gap: 64px;
        align-items: center;
        padding: 56px;
    }

    .contact-header {
        text-align: left;
        margin-bottom: 0;
    }

    .contact-header .section-title {
        margin-bottom: 20px;
    }

    .contact-header .section-desc {
        margin-left: 0;
        margin-right: 0;
    }

    .form-label {
        text-align: left;
    }
}

/* ============================================
   RESPONSIVE — LARGE DESKTOP (1440px+)
   ============================================ */
@media (min-width: 1440px) {
    :root {
        --container-width: 1320px;
    }
}

/* ── 3D Tilt Support ── */
.tilt-card {
    transform-style: preserve-3d;
    perspective: 1000px;
}

.tilt-card > * {
    transform: translateZ(20px);
}

/* ── Loading animation ── */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--deep-space);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader-spinner {
    width: 40px;
    height: 40px;
    border: 2px solid var(--glass-border);
    border-top-color: var(--electric-violet);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ============================================
   RESPONSIVE — LARGE DESKTOP (1100px+)
   ============================================ */
@media (min-width: 1100px) {
    .showcase-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
    
    .project-card {
        flex-direction: row;
        align-items: stretch;
        min-height: 480px;
    }
    
    /* Odd products: Info left (order 1), Visual right (order 2) */
    .project-card:nth-child(odd) .project-info {
        flex: 1.1;
        order: 1;
        padding: 40px 32px;
        border-right: 1px solid var(--glass-border);
        border-left: none;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    .project-card:nth-child(odd) .project-visual {
        flex: 0.9;
        order: 2;
        border-top: none;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 32px;
    }
    
    /* Even products: Visual left (order 1), Info right (order 2) */
    .project-card:nth-child(even) .project-info {
        flex: 1.1;
        order: 2;
        padding: 40px 32px;
        border-left: 1px solid var(--glass-border);
        border-right: none;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    .project-card:nth-child(even) .project-visual {
        flex: 0.9;
        order: 1;
        border-top: none;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 32px;
    }
}

/* ── Showcase CTA Row ── */
.showcase-cta-row {
    margin-top: 48px;
    position: relative;
    width: 100%;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.showcase-cta-link {
    display: block;
    width: 100%;
    text-decoration: none;
}

.cta-row-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 24px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    border-radius: 100px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s var(--ease-out-expo);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

.cta-row-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(var(--electric-violet-rgb), 0.15), rgba(var(--cyber-teal-rgb), 0.15), transparent);
    transition: all 0.6s ease;
    z-index: 1;
}

.cta-row-icon {
    color: var(--cyber-teal);
    font-size: 14px;
    animation: rotatePulse 4s linear infinite;
    display: inline-block;
}

.cta-row-text {
    font-size: 13px;
    color: var(--cashmere);
    letter-spacing: 0.02em;
    z-index: 2;
    text-align: center;
}

.cta-row-text strong {
    color: var(--platinum);
    margin-left: 4px;
    transition: color 0.3s ease;
}

.cta-row-glow-line {
    position: absolute;
    bottom: 0;
    left: 15%;
    right: 15%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--electric-violet), var(--cyber-teal), transparent);
    opacity: 0.5;
    transition: all 0.4s ease;
}

/* Hover States */
.cta-row-content:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(var(--electric-violet-rgb), 0.4);
    transform: translateY(-2px);
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(var(--electric-violet-rgb), 0.1);
}

.cta-row-content:hover::before {
    left: 100%;
    transition: all 1.2s ease-in-out;
}

.cta-row-content:hover .cta-row-text strong {
    color: var(--electric-violet);
}

.cta-row-content:hover .cta-row-glow-line {
    left: 0;
    right: 0;
    opacity: 1;
    height: 2px;
    box-shadow: 0 0 10px var(--cyber-teal);
}

@keyframes rotatePulse {
    0% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.2); filter: drop-shadow(0 0 8px var(--cyber-teal)); }
    100% { transform: rotate(360deg) scale(1); }
}

/* ── Avatar Music Section ── */
.avatar-music-section {
    padding: 80px 0;
    position: relative;
    z-index: 2;
    background: linear-gradient(180deg, var(--deep-space), rgba(11, 9, 20, 0.95));
}

.avatar-music-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.music-visualizer-circle {
    position: relative;
    width: 160px;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Avatar Containers */
.avatar-container {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    z-index: 5;
    border: 3px solid rgba(var(--electric-violet-rgb), 0.6);
    cursor: pointer;
    box-shadow: 0 0 20px rgba(var(--electric-violet-rgb), 0.2);
    transition: all 0.4s var(--ease-spring);
    animation: imageBassPulse 1.8s infinite ease-in-out;
}

.avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
    transform: scale(3.8);
    transform-origin: center 32%;
}

.avatar-container:hover {
    border-color: var(--cyber-teal);
    box-shadow: 0 0 35px rgba(var(--cyber-teal-rgb), 0.5);
    animation: imageBassPulseHover 0.8s infinite ease-in-out;
}

/* Info Badge below waves */
.avatar-music-info {
    margin-top: 36px;
    z-index: 10;
}

.avatar-music-badge {
    display: inline-block;
    padding: 8px 24px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    color: var(--platinum);
    letter-spacing: 0.05em;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.music-visualizer-circle:hover + .avatar-music-info .avatar-music-badge {
    border-color: var(--cyber-teal);
    box-shadow: 0 0 15px rgba(var(--cyber-teal-rgb), 0.25);
    color: var(--cyber-teal);
    background: rgba(var(--cyber-teal-rgb), 0.05);
}

/* Bass Pulse Effect */
.avatar-bass-pulse {
    position: absolute;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: transparent;
    border: 2px solid var(--electric-violet);
    z-index: 1;
    pointer-events: none;
    animation: bassPulse 1.6s cubic-bezier(0.215, 0.610, 0.355, 1) infinite;
    opacity: 0;
}

.avatar-bass-pulse::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 50%;
    border: 2px solid var(--cyber-teal);
    animation: bassPulse 1.6s cubic-bezier(0.215, 0.610, 0.355, 1) infinite;
    animation-delay: 0.8s;
}

@keyframes bassPulse {
    0% { transform: scale(0.95); opacity: 0.8; border-color: var(--electric-violet); }
    50% { border-color: var(--cyber-teal); }
    100% { transform: scale(1.35); opacity: 0; }
}

/* ── STYLE 1: Vinyl Groove & Radial Waveform ── */
.style-vinyl-waveform {
    width: 180px;
    height: 180px;
}

.vinyl-groove {
    position: absolute;
    width: 154px;
    height: 154px;
    border-radius: 50%;
    background: radial-gradient(circle, transparent 50%, rgba(255,255,255,0.02) 51%, rgba(0,0,0,0.5) 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.6);
    z-index: 1;
    pointer-events: none;
}

.wavy-inner-track {
    position: absolute;
    width: 122px;
    height: 122px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.7);
    z-index: 3;
    pointer-events: none;
    animation: trackWobble 4s infinite alternate ease-in-out;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.25);
}

@keyframes trackWobble {
    0% { border-radius: 50% 48% 52% 49% / 49% 51% 48% 52%; transform: scale(0.98); }
    50% { border-radius: 47% 53% 48% 52% / 52% 48% 53% 47%; transform: scale(1.05); }
    100% { border-radius: 50% 48% 52% 49% / 49% 51% 48% 52%; transform: scale(0.98); }
}

.vinyl-bars-container {
    z-index: 2;
}

.bar-style-vinyl {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 2.5px;
    height: 10px;
    background: linear-gradient(to top, var(--electric-violet), var(--cyber-teal));
    border-radius: 1px;
    transform-origin: center bottom;
    opacity: 0.95;
    transition: height 0.08s ease;
}

@keyframes bouncePlay {
    from { transform: scale(1); }
    to { transform: scale(1.2); }
}

@keyframes imageBassPulse {
    0%, 100% { transform: scale(1); }
    15% { transform: scale(1.015); }
    30% { transform: scale(1.002); }
    45% { transform: scale(1.025); }
    70% { transform: scale(0.992); }
}

@keyframes imageBassPulseHover {
    0%, 100% { transform: scale(1.04) translate(0, 0) rotate(0deg); }
    20% { transform: scale(1.05) translate(-0.5px, 0.5px) rotate(0.2deg); }
    40% { transform: scale(1.03) translate(0.5px, -0.2px) rotate(-0.2deg); }
    60% { transform: scale(1.055) translate(-0.2px, -0.5px) rotate(0.15deg); }
    80% { transform: scale(1.035) translate(0.5px, 0.2px) rotate(0deg); }
}

/* ── Hero Search Bar & Console Additions ── */
.hero-search-area {
    width: 100%;
    max-width: 900px;
    margin-top: 30px;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 15;
}

.hero-search-bar-wrapper {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 6px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    transition: all 0.3s var(--ease-out-expo);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.hero-search-bar-wrapper:focus-within {
    border-color: var(--cyber-teal);
    box-shadow: 0 0 30px rgba(6, 182, 212, 0.25);
    background: rgba(255, 255, 255, 0.04);
}

#hero-search-input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: var(--platinum);
    padding: 12px 24px;
    font-size: 15px;
    width: 100%;
}

#hero-search-input::placeholder {
    color: var(--cashmere);
    opacity: 0.5;
}

#hero-search-btn {
    padding: 10px 28px;
    min-height: auto;
    white-space: nowrap;
}

/* Ensure the duplicated console looks nice and matches width */
.hero-ai-console {
    max-width: 900px !important;
}

.hero-ai-console .terminal-shell {
    border: 1px solid var(--glass-border);
    background: rgba(11, 9, 20, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 16px;
    overflow: hidden;
}

/* Adjust roadmap accordion in hero console for tighter spaces */
.hero-ai-console .blueprint-grid {
    gap: 20px;
}

/* ============================================
   RESPONSIVE — MOBILE (576px or below)
   ============================================ */
@media (max-width: 576px) {
    /* Hero Actions & Search Bar */
    .hero-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        margin-top: 24px;
    }
    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }
    .hero-actions .hero-search-bar-wrapper {
        min-width: 100%;
        border-radius: 20px;
        flex-direction: column;
        gap: 8px;
        padding: 12px;
    }
    #hero-search-input {
        padding: 8px 12px;
        text-align: center;
    }
    #hero-search-btn {
        width: 100%;
        justify-content: center;
        padding: 12px;
    }

    /* Metrics Section Grid */
    .metrics-grid {
        grid-template-columns: 1fr;
    }

    /* Contact Form Project Type Selection Grid */
    .project-type-grid {
        grid-template-columns: 1fr;
    }

    /* Contact Form Action Buttons */
    .form-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
    }
    .form-actions .btn {
        flex: none !important;
        width: 100% !important;
    }
}

/* ============================================
   ZAMAN TÜNELİ (TIME TUNNEL) PAGE STYLING
   ============================================ */
.timeline-page {
    background: var(--deep-space);
}

.timeline-main-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 120px 24px 80px;
    position: relative;
    z-index: 2;
}

/* ── Top Promo Banner (Matching image design) ── */
.top-promo-banner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    padding: 14px 28px;
    border-radius: 100px;
    background: rgba(11, 9, 20, 0.85);
    border: 1px solid rgba(124, 58, 237, 0.25);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), inset 0 0 20px rgba(124, 58, 237, 0.05);
    margin-bottom: 50px;
    position: relative;
    overflow: hidden;
}

.top-promo-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(6, 182, 212, 0.1), transparent);
    animation: bannerShimmer 6s infinite linear;
}

@keyframes bannerShimmer {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: 100%; }
}

.promo-banner-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.promo-star-icon {
    font-size: 16px;
    color: var(--cyber-teal);
    animation: starPulse 2.5s infinite ease-in-out;
    text-shadow: 0 0 10px var(--cyber-teal);
}

@keyframes starPulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.3); }
}

.promo-text {
    font-size: 13px;
    font-weight: 500;
    color: var(--platinum);
    letter-spacing: 0.02em;
}

.promo-link {
    color: var(--platinum);
    font-weight: 700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.promo-link:hover {
    color: var(--cyber-teal);
    text-shadow: 0 0 8px rgba(6, 182, 212, 0.3);
}

.promo-banner-right {
    display: flex;
    align-items: center;
}

.promo-search-bar {
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    padding: 3px 3px 3px 16px;
    min-width: 320px;
    transition: all 0.3s ease;
}

.promo-search-bar:focus-within {
    border-color: var(--cyber-teal);
    box-shadow: 0 0 15px rgba(6, 182, 212, 0.2);
}

.promo-search-bar input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: #fff;
    font-size: 12px;
    padding: 6px 0;
}

.promo-search-bar input::placeholder {
    color: var(--cashmere-dim);
}

.promo-search-bar .btn-glow {
    padding: 6px 18px;
    min-height: auto;
    font-size: 11px;
    border-radius: 50px;
}

/* ── Main Timeline Layout Grid ── */
.timeline-grid-layout {
    display: grid;
    grid-template-columns: 240px 1fr 240px;
    gap: 32px;
    align-items: start;
}

/* ── Ad Sidebars (Graphic Designer Touch) ── */
.ad-sidebar {
    position: sticky;
    top: 100px;
}

.ad-card-wrapper {
    padding: 32px 20px;
    text-align: center;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    transition: all 0.4s var(--ease-out-expo);
}

.ad-card-wrapper:hover {
    transform: translateY(-5px);
}

.ad-glowing-violet {
    border: 1px solid rgba(124, 58, 237, 0.25);
    background: linear-gradient(180deg, rgba(124, 58, 237, 0.02) 0%, rgba(11, 9, 20, 0.95) 100%);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), inset 0 0 20px rgba(124, 58, 237, 0.1);
}

.ad-glowing-violet:hover {
    border-color: var(--electric-violet);
    box-shadow: 0 20px 45px rgba(124, 58, 237, 0.25);
}

.ad-glowing-teal {
    border: 1px solid rgba(6, 182, 212, 0.25);
    background: linear-gradient(180deg, rgba(6, 182, 212, 0.02) 0%, rgba(11, 9, 20, 0.95) 100%);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), inset 0 0 20px rgba(6, 182, 212, 0.1);
}

.ad-glowing-teal:hover {
    border-color: var(--cyber-teal);
    box-shadow: 0 20px 45px rgba(6, 182, 212, 0.25);
}

.ad-graphic-element {
    width: 60px;
    height: 60px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}

.ad-pulse-circle {
    animation: adPulse 3s infinite linear;
}

@keyframes adPulse {
    0% { transform: rotate(0deg) scale(1); opacity: 0.7; }
    50% { transform: rotate(180deg) scale(1.1); opacity: 1; }
    100% { transform: rotate(360deg) scale(1); opacity: 0.7; }
}

.ad-sparkle {
    position: absolute;
    font-size: 16px;
    color: var(--cyber-teal);
    animation: adSparklePulse 2s infinite ease-in-out;
}

@keyframes adSparklePulse {
    0%, 100% { opacity: 0.3; transform: scale(0.8); }
    50% { opacity: 1; transform: scale(1.2); }
}

.ad-title-text {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 800;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
}

@keyframes textGlowViolet {
    0%, 100% { text-shadow: 0 0 10px rgba(124, 58, 237, 0.4), 0 0 20px rgba(124, 58, 237, 0.2); }
    50% { text-shadow: 0 0 20px rgba(124, 58, 237, 0.8), 0 0 30px rgba(124, 58, 237, 0.4), 0 0 40px rgba(124, 58, 237, 0.2); }
}

@keyframes textGlowTeal {
    0%, 100% { text-shadow: 0 0 10px rgba(6, 182, 212, 0.4), 0 0 20px rgba(6, 182, 212, 0.2); }
    50% { text-shadow: 0 0 20px rgba(6, 182, 212, 0.8), 0 0 30px rgba(6, 182, 212, 0.4), 0 0 40px rgba(6, 182, 212, 0.2); }
}

.text-glow-violet {
    color: var(--platinum);
    animation: textGlowViolet 3s infinite ease-in-out;
}

.text-glow-teal {
    color: var(--platinum);
    animation: textGlowTeal 3s infinite ease-in-out;
}

.ad-desc-text {
    font-size: 12px;
    line-height: 1.6;
    color: var(--cashmere);
    opacity: 0.8;
}

.ad-action-btn {
    width: 100%;
    justify-content: center;
    padding: 8px 16px !important;
    min-height: auto !important;
    font-size: 12px !important;
    margin-top: 8px;
}

/* ── Timeline Center Feed ── */
.timeline-feed-column {
    min-height: 500px;
}

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

.timeline-tree {
    position: relative;
    padding: 20px 0;
}

.timeline-tree-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--electric-violet) 0%, var(--cyber-teal) 100%);
    transform: translateX(-50%);
    opacity: 0.2;
}

.timeline-node {
    position: relative;
    width: 50%;
    padding: 10px 0;
    box-sizing: border-box;
}

.node-left {
    left: 0;
    padding-right: 40px;
    padding-left: 0;
}

.node-right {
    left: 50%;
    padding-left: 40px;
    padding-right: 0;
}

.timeline-dot {
    position: absolute;
    top: 32px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--electric-violet);
    border: 3px solid var(--deep-space);
    box-shadow: 0 0 10px var(--electric-violet);
    z-index: 5;
    transition: all 0.3s ease;
}

.node-left .timeline-dot {
    right: -6px;
    left: auto;
}

.node-right .timeline-dot {
    left: -6px;
    right: auto;
}

.timeline-node:hover .timeline-dot {
    background: var(--cyber-teal);
    box-shadow: 0 0 12px var(--cyber-teal);
    transform: scale(1.2);
}

.timeline-card {
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border-radius: var(--card-radius);
    transition: all 0.4s var(--ease-out-expo);
}

.timeline-card-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
    border-bottom: 1px solid var(--glass-border);
}

.timeline-card-info {
    padding: 20px;
}

.timeline-card-date {
    display: block;
    font-size: 11px;
    color: var(--cyber-teal);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}

.timeline-card-title {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    color: var(--platinum);
    line-height: 1.4;
    margin-bottom: 10px;
}

.timeline-card-summary {
    font-size: 12px;
    line-height: 1.7;
    color: var(--cashmere);
    opacity: 0.8;
}

/* ── Post Reader Modal ── */
.post-reader-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.modal-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(11, 9, 20, 0.7);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

.modal-window {
    position: relative;
    max-width: 800px;
    width: 90%;
    max-height: 85vh;
    background: rgba(11, 9, 20, 0.95);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0,0,0,0.6);
    z-index: 10002;
}

.modal-close-btn {
    position: absolute;
    top: 20px;
    right: 24px;
    font-size: 32px;
    color: var(--cashmere);
    background: none;
    border: none;
    cursor: pointer;
    z-index: 10005;
    transition: color 0.3s ease;
}

.modal-close-btn:hover {
    color: var(--electric-violet);
}

.modal-scroll-content {
    overflow-y: auto;
    flex: 1;
    padding-right: 15px;
    scrollbar-width: thin;
    scrollbar-color: var(--electric-violet) var(--deep-space);
}

.modal-scroll-content::-webkit-scrollbar {
    width: 6px;
}
.modal-scroll-content::-webkit-scrollbar-track {
    background: transparent;
}
.modal-scroll-content::-webkit-scrollbar-thumb {
    background: var(--electric-violet);
    border-radius: 3px;
}

.modal-header-block {
    margin-bottom: 28px;
}

.modal-date {
    font-size: 12px;
    color: var(--cyber-teal);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: block;
    margin-bottom: 10px;
}

.modal-title {
    font-family: var(--font-display);
    font-size: clamp(22px, 4vw, 36px);
    font-weight: 800;
    color: var(--platinum);
    line-height: 1.25;
    margin-bottom: 24px;
}

.modal-thumbnail-wrapper {
    width: 100%;
    max-height: 380px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    margin-bottom: 20px;
}

.modal-thumbnail-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-body-content {
    font-size: 15px;
    line-height: 1.8;
    color: var(--cashmere);
}

.modal-body-content p {
    margin-bottom: 16px;
}

.modal-body-content h2, 
.modal-body-content h3, 
.modal-body-content h4 {
    font-family: var(--font-display);
    color: var(--platinum);
    margin-top: 24px;
    margin-bottom: 12px;
}

.modal-body-content a {
    color: var(--cyber-teal);
    text-decoration: underline;
}

.modal-body-content blockquote {
    border-left: 3px solid var(--electric-violet);
    padding-left: 20px;
    margin: 20px 0;
    font-style: italic;
    color: var(--platinum);
}

/* Responsive Embeds */
.responsive-video-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 12px;
    overflow: hidden;
    margin: 24px 0;
    border: 1px solid var(--glass-border);
}

.responsive-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* ============================================
   RESPONSIVE — TIMELINE SPECIFIC OVERRIDES
   ============================================ */
@media (max-width: 1024px) {
    .timeline-grid-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .ad-sidebar {
        position: static;
        width: 100%;
    }

    .ad-card-wrapper {
        flex-direction: row;
        text-align: left;
        padding: 24px;
        align-items: center;
        gap: 24px;
    }

    .ad-sidebar-left .ad-card-wrapper {
        order: 1;
    }

    .ad-sidebar-right .ad-card-wrapper {
        order: 2;
    }

    .ad-action-btn {
        width: auto;
        margin-top: 0;
    }

}

@media (max-width: 768px) {
    .top-promo-banner {
        border-radius: 24px;
        flex-direction: column;
        align-items: stretch;
        padding: 20px;
    }

    .promo-search-bar {
        min-width: 100%;
        margin-top: 8px;
    }

    .timeline-tree-line {
        left: 20px;
        transform: none;
    }

    .timeline-node {
        width: 100%;
        padding-left: 45px;
        padding-right: 0;
    }

    .node-left, .node-right {
        left: 0 !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        text-align: left !important;
    }

    .node-left .timeline-dot, 
    .node-right .timeline-dot {
        left: 14px !important;
        right: auto !important;
    }
}

@media (max-width: 576px) {
    .ad-card-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    
    .timeline-card-image {
        height: 160px;
    }
    
    .ad-action-btn {
        width: 100%;
    }

    .modal-window {
        padding: 24px 16px;
        width: 95%;
        max-height: 90vh;
    }
}


