/* ═══════════════════════════════════════════
   TOKENS — DARK (warm amber atelier)
═══════════════════════════════════════════ */
:root {
    --bg-primary:    #0e0c09;
    --bg-secondary:  #141108;
    --bg-card:       #1b1812;
    --bg-card-hover: #221e17;
    --bg-glass:      rgba(20, 17, 8, 0.88);
    --bg-modal:      rgba(0, 0, 0, 0.92);
    --text-primary:  #f0ece2;
    --text-secondary:#8c7e6c;
    --text-muted:    #56503f;
    --accent-primary:   #c98b14;
    --accent-secondary: #de6438;
    --accent-tertiary:  #5b9f72;
    --accent-warning:   #c98b14;
    --gradient-primary:   linear-gradient(135deg, #d49518 0%, #e0703a 100%);
    --gradient-secondary: linear-gradient(135deg, #de6438 0%, #c03470 100%);
    --border-color: rgba(220, 192, 130, 0.07);
    --border-glow:  rgba(201, 139, 20, 0.28);
    --shadow-sm:   0 2px 10px rgba(0,0,0,0.4);
    --shadow-md:   0 8px 32px  rgba(0,0,0,0.5);
    --shadow-lg:   0 20px 64px rgba(0,0,0,0.6);
    --shadow-glow: 0 0 48px    rgba(201,139,20,0.1);
    --radius-sm: 7px;
    --radius-md: 12px;
    --radius-lg: 18px;
    --radius-xl: 24px;
    --transition-fast:   0.2s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-spring: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    --font-display: 'Fraunces', Georgia, serif;
    --font-family:  'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ═══════════════════════════════════════════
   LIGHT MODE — warm parchment
═══════════════════════════════════════════ */
body.light-mode {
    --bg-primary:    #faf7ef;
    --bg-secondary:  #f3efe4;
    --bg-card:       #fffefb;
    --bg-card-hover: #f6f1e6;
    --bg-glass:      rgba(252, 249, 241, 0.92);
    --bg-modal:      rgba(0, 0, 0, 0.5);
    --text-primary:  #1c1810;
    --text-secondary:#5c5040;
    --text-muted:    #8c7d68;
    --border-color:  rgba(80, 60, 10, 0.08);
    --border-glow:   rgba(201, 139, 20, 0.25);
    --shadow-sm:   0 2px 10px rgba(60, 40, 0, 0.07);
    --shadow-md:   0 8px 32px  rgba(60, 40, 0, 0.1);
    --shadow-lg:   0 20px 64px rgba(60, 40, 0, 0.14);
    --shadow-glow: 0 0 48px    rgba(201, 139, 20, 0.08);
}
body.light-mode .noise-overlay { opacity: 0.01; }

/* ═══════════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════════ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    max-width: 100%;
    overflow-x: hidden;
}

body {
    font-family: var(--font-family);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    max-width: 100%;
    position: relative;
    transition: background-color var(--transition-smooth), color var(--transition-smooth);
    -webkit-tap-highlight-color: rgba(201, 139, 20, 0.1);
    touch-action: manipulation;
}

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

button, a, input, select, textarea {
    min-height: 44px;
    -webkit-tap-highlight-color: transparent;
}

@supports (-webkit-touch-callout: none) {
    body { -webkit-overflow-scrolling: touch; }
}

/* ═══════════════════════════════════════════
   PAGE ANIMATION
═══════════════════════════════════════════ */
.page-content {
    position: relative; z-index: 2;
    animation: fadeInPage 0.5s cubic-bezier(0.16, 1, 0.3, 1) both;
}

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

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

/* ═══════════════════════════════════════════
   BACKGROUND — ambient radial + grain
═══════════════════════════════════════════ */
.bg-effects {
    position: fixed; inset: 0;
    pointer-events: none; z-index: 0;
}
.bg-effects .orb { display: none; }

.bg-effects::before {
    content: '';
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 80% 55% at 50% -8%,  rgba(201,139,20,0.08) 0%, transparent 65%),
        radial-gradient(ellipse 50% 35% at 88% 92%,  rgba(222,100,56,0.05) 0%, transparent 60%),
        radial-gradient(ellipse 40% 25% at 8%  80%,  rgba(91,159,114,0.04) 0%, transparent 55%);
}

body.light-mode .bg-effects::before {
    background:
        radial-gradient(ellipse 80% 55% at 50% -8%,  rgba(201,139,20,0.05) 0%, transparent 65%),
        radial-gradient(ellipse 50% 35% at 88% 92%,  rgba(222,100,56,0.03) 0%, transparent 60%);
}

.noise-overlay {
    position: fixed; inset: 0; pointer-events: none; z-index: 1; opacity: 0.022;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-repeat: repeat; background-size: 256px 256px;
}

/* ═══════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════ */
.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: rgba(14, 12, 9, 0.84);
    backdrop-filter: blur(24px) saturate(1.4);
    -webkit-backdrop-filter: blur(24px) saturate(1.4);
    border-bottom: 1px solid rgba(220, 192, 130, 0.06);
    transition: background 0.3s ease, box-shadow 0.3s ease;
}
body.light-mode .navbar {
    background: rgba(252, 249, 241, 0.9);
    border-bottom: 1px solid rgba(80, 60, 10, 0.07);
}
.navbar.scrolled { background: rgba(14,12,9,0.97); box-shadow: 0 1px 28px rgba(0,0,0,0.28); }
body.light-mode .navbar.scrolled { background: rgba(252,249,241,0.98); box-shadow: 0 1px 28px rgba(60,40,0,0.08); }

.navbar-inner {
    max-width: 1200px; margin: 0 auto; padding: 0 24px;
    display: flex; align-items: center; justify-content: space-between; height: 60px;
}

.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--text-primary); flex-shrink: 0; }
.logo-icon {
    width: 34px; height: 34px;
    background: #ffffff;
    border-radius: 9px;
    overflow: hidden;
    flex-shrink: 0;
}
.logo-icon img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center 35%;
    display: block;
    transform: scale(1.8);
    transform-origin: center 35%;
}
.logo-text {
    font-family: var(--font-display);
    font-size: 17px; font-weight: 700; font-style: italic;
    letter-spacing: -0.4px;
    color: var(--text-primary);
}

.nav-center { display: flex; align-items: center; gap: 2px; }
.nav-link {
    text-decoration: none; color: var(--text-muted); font-size: 13px; font-weight: 500;
    padding: 8px 13px; border-radius: 6px;
    transition: color 0.2s, background 0.2s;
    letter-spacing: 0.01em;
}
.nav-link:hover { color: var(--text-primary); background: rgba(201,139,20,0.07); }
.nav-link.active { color: var(--accent-primary); font-weight: 600; }
.nav-link[target="_blank"] { color: var(--accent-primary); }
.nav-link[target="_blank"]::after { content: ' ↗'; font-size: 9px; opacity: 0.65; vertical-align: super; }

.nav-actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.theme-toggle {
    background: rgba(220,192,130,0.06); border: 1px solid rgba(220,192,130,0.11);
    cursor: pointer; display: flex; align-items: center; justify-content: center;
    width: 34px; height: 34px; min-height: unset; border-radius: 7px; transition: background 0.2s; padding: 0;
    color: var(--text-secondary);
}
body.light-mode .theme-toggle { background: rgba(80,60,10,0.05); border-color: rgba(80,60,10,0.1); color: var(--text-secondary); }
.theme-toggle:hover { background: rgba(201,139,20,0.1); color: var(--text-primary); }
.theme-icon { font-size: 16px; line-height: 1; }

.mobile-menu-btn {
    display: none; background: none; border: 1px solid rgba(220,192,130,0.1);
    cursor: pointer; width: 34px; height: 34px; border-radius: 7px; padding: 0;
    align-items: center; justify-content: center; transition: background 0.2s;
}
body.light-mode .mobile-menu-btn { border-color: rgba(80,60,10,0.1); }
.mobile-menu-btn:hover { background: rgba(201,139,20,0.08); }
.hamburger { display: flex; flex-direction: column; gap: 4px; width: 16px; }
.hamburger span { display: block; height: 1.5px; width: 100%; background: var(--text-primary); border-radius: 1px; transition: transform 0.3s ease, opacity 0.3s ease; }
.mobile-menu-btn.open .hamburger span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.mobile-menu-btn.open .hamburger span:nth-child(2) { opacity: 0; }
.mobile-menu-btn.open .hamburger span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

/* ═══════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════ */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 13px 26px; border-radius: 7px;
    font-size: 14px; font-weight: 600; text-decoration: none;
    cursor: pointer; border: none; transition: var(--transition-smooth);
    font-family: var(--font-family); letter-spacing: 0.01em;
}
.btn-primary {
    background: var(--gradient-primary); color: #0e0c09; font-weight: 700;
    box-shadow: 0 4px 20px rgba(201,139,20,0.22), inset 0 1px 0 rgba(255,255,255,0.1);
}
.btn-primary:hover { box-shadow: 0 8px 32px rgba(201,139,20,0.38); transform: translateY(-2px); }
.btn-primary:active { transform: translateY(0) scale(0.98) !important; box-shadow: 0 2px 8px rgba(201,139,20,0.15); }
.btn-primary:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.btn-primary .btn-loading { display: none; }
.btn-primary:disabled .btn-loading { display: inline; }
.btn-secondary { background: transparent; color: var(--text-primary); border: 1px solid var(--border-color); }
.btn-secondary:hover { border-color: var(--border-glow); background: rgba(201,139,20,0.05); transform: translateY(-2px); }
.btn-secondary:active { transform: translateY(0) scale(0.98) !important; }
.btn-ghost { background: transparent; color: var(--text-secondary); padding: 13px 18px; }
.btn-ghost:hover { color: var(--text-primary); }
.btn-ghost:active { transform: scale(0.97) !important; }

/* ═══════════════════════════════════════════
   HERO
═══════════════════════════════════════════ */
.hero {
    padding: 160px 24px 80px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero.hero-split {
    max-width: 1280px; text-align: left;
    display: grid; grid-template-columns: 3fr 2fr;
    gap: 80px; align-items: center;
    padding: 144px 24px 80px;
}
.hero-split .hero-content { display: flex; flex-direction: column; }
.hero-split .hero-content h1     { animation: fadeInUp 0.7s cubic-bezier(0.16,1,0.3,1) 0.1s  both; }
.hero-split .hero-content p      { margin: 0 0 40px; animation: fadeInUp 0.7s cubic-bezier(0.16,1,0.3,1) 0.25s both; }
.hero-split .hero-actions        { justify-content: flex-start; animation: fadeInUp 0.7s cubic-bezier(0.16,1,0.3,1) 0.35s both; }
.hero-split .hero-stats          {
    display: flex; flex-direction: column; gap: 12px;
    animation: fadeInUp 0.7s cubic-bezier(0.16,1,0.3,1) 0.2s both;
}
.hero-split .stat-item {
    background: var(--bg-card); border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    padding: 18px 22px; text-align: left;
    display: flex; align-items: center; gap: 18px;
    transition: var(--transition-fast);
}
.hero-split .stat-item:hover { border-color: var(--border-glow); transform: translateX(4px); }
.hero-split .stat-number {
    font-family: var(--font-display);
    font-size: 34px; font-weight: 800; font-style: italic;
    line-height: 1; flex-shrink: 0;
    color: var(--accent-primary);
}
.hero-split .stat-label { font-size: 13px; color: var(--text-secondary); font-weight: 500; line-height: 1.4; }

.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 5px 13px 5px 8px;
    background: rgba(201,139,20,0.08); border: 1px solid rgba(201,139,20,0.16);
    border-radius: 5px; font-size: 11px; font-weight: 600; color: var(--accent-primary);
    margin-bottom: 28px; animation: fadeInUp 0.6s ease 0.05s both;
    letter-spacing: 0.08em; text-transform: uppercase;
}
.hero-badge .dot {
    width: 6px; height: 6px; background: var(--accent-primary); border-radius: 50%;
    animation: pulse-dot 2.4s ease-in-out infinite;
}
@keyframes pulse-dot {
    0%,100% { opacity: 1; transform: scale(1); }
    50%      { opacity: 0.35; transform: scale(0.65); }
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(40px, 5vw, 68px);
    font-weight: 800; font-style: italic;
    line-height: 1.05; letter-spacing: -2.5px;
    margin-bottom: 24px;
    animation: fadeInUp 0.7s ease 0.15s both;
    font-variation-settings: 'opsz' 144;
}
.hero h1 .gradient-text {
    background: none;
    -webkit-background-clip: unset;
    background-clip: unset;
    -webkit-text-fill-color: var(--accent-primary);
    color: var(--accent-primary);
    font-style: italic;
}
.hero p {
    font-size: 17px; color: var(--text-secondary);
    max-width: 600px; margin: 0 auto 40px;
    line-height: 1.75; font-weight: 400;
    animation: fadeInUp 0.7s ease 0.25s both;
}
.hero-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; animation: fadeInUp 0.7s ease 0.35s both; }

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ═══════════════════════════════════════════
   STATS BAR
═══════════════════════════════════════════ */
.stats-bar { max-width: 800px; margin: 0 auto 80px; padding: 0 24px; display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.stat-item { text-align: center; padding: 24px; background: var(--bg-card); border-radius: var(--radius-md); border: 1px solid var(--border-color); }
.stat-number {
    font-family: var(--font-display);
    font-size: 34px; font-weight: 800; font-style: italic;
    color: var(--accent-primary);
}
.stat-label { font-size: 13px; color: var(--text-muted); margin-top: 4px; font-weight: 500; }

/* ═══════════════════════════════════════════
   SECTION / APPS GRID
═══════════════════════════════════════════ */
.section-container { max-width: 1280px; margin: 0 auto; padding: 0 24px 120px; }
.section-header { text-align: left; margin-bottom: 48px; }
.section-header h2 {
    font-family: var(--font-display);
    font-size: 38px; font-weight: 800; font-style: italic;
    letter-spacing: -1.5px; margin-bottom: 10px; line-height: 1.1;
}
.section-header p { font-size: 15px; color: var(--text-secondary); max-width: 500px; }

.apps-grid {
    display: grid; grid-template-columns: repeat(2,1fr); gap: 20px;
    counter-reset: app-counter;
}

#homeAppsGrid .app-card:first-child {
    grid-column: span 1;
}

.app-card {
    background: var(--bg-card); border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    padding: 28px; cursor: pointer;
    transition: var(--transition-smooth);
    position: relative; overflow: hidden;
    animation: cardReveal 0.5s cubic-bezier(0.16,1,0.3,1) both;
    counter-increment: app-counter;
    --mouse-x: 50%; --mouse-y: 50%;
}
/* Ghost number removed */
.app-card::before { content: none; }

/* Spotlight radial on hover */
.app-card::after {
    content: ''; position: absolute; inset: 0; border-radius: inherit;
    background: radial-gradient(300px circle at var(--mouse-x) var(--mouse-y), rgba(201,139,20,0.08), transparent 65%);
    opacity: 0; transition: opacity 0.4s; pointer-events: none; z-index: 0;
}
.app-card:hover::after { opacity: 1; }

.app-card:nth-child(1) { animation-delay:   0ms; }
.app-card:nth-child(2) { animation-delay:  80ms; }
.app-card:nth-child(3) { animation-delay: 160ms; }
.app-card:nth-child(4) { animation-delay: 240ms; }
@keyframes cardReveal {
    from { opacity: 0; transform: translateY(12px); }
    to   { opacity: 1; transform: translateY(0); }
}
.app-card:hover { transform: translateY(-5px); border-color: var(--border-glow); box-shadow: var(--shadow-glow), var(--shadow-md); }
.app-card:active { transform: translateY(-2px) scale(0.99); }

.app-card-header { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 18px; position: relative; z-index: 1; }
.app-icon { width: 64px; height: 64px; border-radius: 18px; display: flex; align-items: center; justify-content: center; font-size: 28px; flex-shrink: 0; box-shadow: var(--shadow-sm); }
.app-icon img { border-radius: 18px !important; }
.app-card-info { flex: 1; min-width: 0; }
.app-card-info h3 { font-size: 17px; font-weight: 700; margin-bottom: 3px; letter-spacing: -0.3px; }
.app-card-info .app-category { font-size: 10.5px; color: var(--text-muted); font-weight: 500; text-transform: uppercase; letter-spacing: 0.9px; }
.app-card-body { position: relative; z-index: 1; }
.app-card-body p { font-size: 14px; color: var(--text-secondary); line-height: 1.65; margin-bottom: 18px; }
.app-card-footer { display: flex; align-items: center; justify-content: space-between; position: relative; z-index: 1; }
.app-rating { display: flex; align-items: center; gap: 5px; font-size: 12px; color: var(--accent-primary); font-weight: 600; }
.app-platform { display: flex; gap: 5px; }
.platform-badge {
    padding: 3px 9px; border-radius: 5px; font-size: 10.5px; font-weight: 600; letter-spacing: 0.04em;
    background: rgba(201,139,20,0.1); color: var(--accent-primary); border: 1px solid rgba(201,139,20,0.18);
}
.platform-badge.android { background: rgba(222,100,56,0.1); color: var(--accent-secondary); border-color: rgba(222,100,56,0.15); }

/* Coming-soon cards */
.app-card.coming-soon { cursor: default; }
.app-card.coming-soon:hover {
    transform: none !important;
    border-color: var(--border-color) !important;
    box-shadow: none !important;
}
.app-card.coming-soon::after { display: none; }
.app-card.coming-soon .app-card-header,
.app-card.coming-soon .app-card-body,
.app-card.coming-soon .app-card-footer { opacity: 0.45; }

.app-card-soon {
    position: absolute; inset: 0; z-index: 4; border-radius: inherit;
    display: flex; align-items: center; justify-content: center;
    background: rgba(14, 12, 9, 0.55);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}
body.light-mode .app-card-soon { background: rgba(250, 247, 239, 0.6); }

.app-card-soon-label {
    background: var(--bg-card);
    border: 1px solid var(--border-glow);
    color: var(--accent-primary);
    font-size: 11px; font-weight: 700;
    padding: 7px 16px; border-radius: 6px;
    letter-spacing: 0.1em; text-transform: uppercase;
    box-shadow: 0 4px 16px rgba(0,0,0,0.3);
    min-height: unset;
}

/* Disabled store button */
.btn.btn-soon { opacity: 0.5; cursor: default; pointer-events: none; }

/* ═══════════════════════════════════════════
   MODAL
═══════════════════════════════════════════ */
.modal-overlay {
    position: fixed; inset: 0; background: var(--bg-modal);
    backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    z-index: 2000; display: flex; align-items: center; justify-content: center;
    padding: 24px; opacity: 0; visibility: hidden; transition: var(--transition-smooth);
}
.modal-overlay.active { opacity: 1; visibility: visible; }
.modal {
    background: var(--bg-secondary); border-radius: var(--radius-xl); border: 1px solid var(--border-color);
    max-width: 720px; width: 100%; max-height: 90vh; overflow-y: auto;
    transform: scale(0.93) translateY(24px); transition: var(--transition-spring); box-shadow: var(--shadow-lg);
}
.modal-overlay.active .modal { transform: scale(1) translateY(0); }
.modal::-webkit-scrollbar { width: 5px; }
.modal::-webkit-scrollbar-track { background: transparent; }
.modal::-webkit-scrollbar-thumb { background: var(--border-color); border-radius: 3px; }

.modal-hero {
    position: relative; padding: 48px 40px 32px;
    background: linear-gradient(135deg, rgba(201,139,20,0.06) 0%, rgba(222,100,56,0.03) 100%);
    border-bottom: 1px solid var(--border-color);
}
.modal-close {
    position: absolute; top: 16px; right: 16px; width: 34px; height: 34px; min-height: unset;
    border-radius: 7px; background: rgba(220,192,130,0.06); border: 1px solid var(--border-color);
    color: var(--text-secondary); cursor: pointer;
    display: flex; align-items: center; justify-content: center; transition: var(--transition-fast);
}
.modal-close:hover { background: rgba(220,192,130,0.12); color: var(--text-primary); }
.modal-app-header { display: flex; align-items: center; gap: 20px; justify-content: space-between; }
#modalHeaderAction { margin-left: auto; flex-shrink: 0; }
.btn-store-header { padding: 10px 18px; font-size: 13px; gap: 6px; min-height: unset; }
.modal-app-icon { width: 80px; height: 80px; border-radius: 20px; display: flex; align-items: center; justify-content: center; font-size: 36px; box-shadow: var(--shadow-md); }
.modal-app-title h2 {
    font-family: var(--font-display);
    font-size: 27px; font-weight: 800; font-style: italic;
    letter-spacing: -0.5px; margin-bottom: 4px;
}
.modal-app-title .modal-category { font-size: 11px; color: var(--text-muted); font-weight: 500; text-transform: uppercase; letter-spacing: 0.7px; }
.modal-body { padding: 32px 40px 40px; }
.modal-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; margin-bottom: 32px; }
.modal-stat { text-align: center; padding: 16px; background: var(--bg-card); border-radius: var(--radius-sm); border: 1px solid var(--border-color); }
.modal-stat .val { font-family: var(--font-display); font-size: 21px; font-weight: 700; font-style: italic; color: var(--text-primary); }
.modal-stat .lbl { font-size: 10px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.8px; margin-top: 4px; }
.modal-section { margin-bottom: 28px; }
.modal-section h3 { font-size: 11px; font-weight: 600; margin-bottom: 12px; text-transform: uppercase; letter-spacing: 0.9px; color: var(--text-muted); }
.modal-section p, .modal-section li { font-size: 14px; color: var(--text-secondary); line-height: 1.7; }
.modal-section ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.modal-section ul li::before { content: '→'; margin-right: 10px; color: var(--accent-primary); font-weight: 600; }
.modal-actions { display: flex; gap: 12px; margin-top: 32px; }

/* ═══════════════════════════════════════════
   SCREENSHOTS & LIGHTBOX
═══════════════════════════════════════════ */
.modal-screenshots { position: relative; margin: 0 -20px; }
.screenshots-container {
    display: flex; gap: 16px; overflow-x: auto; padding: 20px 20px 24px;
    scroll-snap-type: x mandatory; scroll-behavior: smooth; -webkit-overflow-scrolling: touch;
}
.screenshots-container::-webkit-scrollbar { height: 4px; }
.screenshots-container::-webkit-scrollbar-track { background: var(--bg-card); border-radius: 2px; }
.screenshots-container::-webkit-scrollbar-thumb { background: var(--accent-primary); border-radius: 2px; }
.screenshot-nav {
    position: absolute; top: 50%; transform: translateY(-50%); z-index: 10;
    width: 38px; height: 38px; min-height: unset; border-radius: 50%; background: rgba(0,0,0,0.7);
    backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.1); color: white;
    display: flex; align-items: center; justify-content: center; cursor: pointer;
    transition: var(--transition-fast); opacity: 0;
}
.modal-screenshots:hover .screenshot-nav { opacity: 1; }
.screenshot-nav:hover { background: var(--accent-primary); color: #0e0c09; transform: translateY(-50%) scale(1.1); }
.screenshot-nav.prev { left: 10px; }
.screenshot-nav.next { right: 10px; }
.screenshot-counter { text-align: center; margin-top: 10px; font-size: 12px; color: var(--text-muted); font-weight: 500; }
.screenshot-placeholder { width: 180px; height: 320px; border-radius: 18px; flex-shrink: 0; scroll-snap-align: center; display: flex; align-items: center; justify-content: center; font-size: 13px; color: var(--text-muted); font-weight: 500; border: 1px dashed var(--border-color); background: var(--bg-card); }
.screenshot-wrapper { position: relative; scroll-snap-align: center; flex-shrink: 0; }
.screenshot-image {
    width: 180px; height: 390px; border-radius: 18px; object-fit: cover;
    box-shadow: 0 8px 32px rgba(0,0,0,0.45), 0 2px 8px rgba(0,0,0,0.2);
    transition: all 0.4s cubic-bezier(0.34,1.56,0.64,1); cursor: pointer;
    border: 1px solid rgba(255,255,255,0.04);
}
.screenshot-image:hover { transform: translateY(-8px) scale(1.02); box-shadow: 0 16px 48px rgba(201,139,20,0.2), 0 8px 16px rgba(0,0,0,0.4); border-color: rgba(201,139,20,0.25); }
.screenshot-wrapper::before { content: ''; position: absolute; inset: -2px; background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary)); border-radius: 18px; opacity: 0; transition: var(--transition-smooth); z-index: -1; filter: blur(18px); }
.screenshot-wrapper:hover::before { opacity: 0.3; }

.lightbox-overlay { position: fixed; inset: 0; background: #000; z-index: 3000; display: none; align-items: center; justify-content: center; padding: 24px; }
.lightbox-overlay.active { display: flex; }
.lightbox-content { max-width: 90vw; max-height: 90vh; position: relative; }
.lightbox-image { max-width: 100%; max-height: 90vh; border-radius: 22px; box-shadow: 0 24px 64px rgba(0,0,0,0.8); transition: opacity 0.15s ease; }
.lightbox-close { position: fixed; top: 20px; right: 20px; width: 44px; height: 44px; min-height: unset; border-radius: 10px; background: rgba(255,255,255,0.18); border: 1px solid rgba(255,255,255,0.4); color: white; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: var(--transition-fast); z-index: 10; }
.lightbox-close:hover { background: rgba(255,255,255,0.32); border-color: rgba(255,255,255,0.65); transform: scale(1.08); }
.lightbox-nav { position: absolute; top: 50%; transform: translateY(-50%); width: 48px; height: 48px; min-height: unset; border-radius: 50%; background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.3); color: white; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: var(--transition-fast); }
.lightbox-nav:hover { background: var(--accent-primary); color: #0e0c09; transform: translateY(-50%) scale(1.12); }
.lightbox-nav.prev { left: -70px; }
.lightbox-nav.next { right: -70px; }
.lightbox-counter { position: absolute; bottom: -40px; left: 50%; transform: translateX(-50%); color: white; font-size: 13px; font-weight: 600; background: rgba(255,255,255,0.08); padding: 7px 18px; border-radius: 6px; backdrop-filter: blur(10px); }

/* ═══════════════════════════════════════════
   SUPPORT PAGE
═══════════════════════════════════════════ */
.support-hero { padding: 140px 24px 60px; text-align: center; max-width: 700px; margin: 0 auto; }
.support-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(32px,5vw,54px); font-weight: 800; font-style: italic;
    letter-spacing: -1.5px; margin-bottom: 16px;
    font-variation-settings: 'opsz' 144;
}
.support-hero p { font-size: 17px; color: var(--text-secondary); line-height: 1.75; }
.support-grid { max-width: 1100px; margin: 0 auto; padding: 0 24px 80px; display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.support-card { background: var(--bg-card); border-radius: var(--radius-lg); border: 1px solid var(--border-color); padding: 36px; transition: var(--transition-smooth); }
.support-card:hover { border-color: var(--border-glow); box-shadow: var(--shadow-glow); }
.support-card-icon { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 20px; background: rgba(201,139,20,0.09); border: 1px solid rgba(201,139,20,0.15); }
.support-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.support-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.7; margin-bottom: 20px; }
.support-card a.support-link { display: inline-flex; align-items: center; gap: 6px; color: var(--accent-primary); font-size: 14px; font-weight: 600; text-decoration: none; transition: var(--transition-fast); }
.support-card a.support-link:hover { gap: 10px; }

.support-form-section { max-width: 720px; margin: 0 auto; padding: 0 24px 120px; }
.support-form-wrapper { background: var(--bg-card); border-radius: var(--radius-xl); border: 1px solid var(--border-color); padding: 48px; }
.support-form-wrapper h2 {
    font-family: var(--font-display);
    font-size: 26px; font-weight: 800; font-style: italic;
    letter-spacing: -0.5px; margin-bottom: 8px;
}
.support-form-wrapper > p { font-size: 15px; color: var(--text-secondary); margin-bottom: 32px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group.full-width { grid-column: 1 / -1; }
.form-group label { font-size: 11px; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.7px; }
.form-group input, .form-group select, .form-group textarea { background: var(--bg-secondary); border: 1px solid var(--border-color); border-radius: var(--radius-sm); padding: 13px 15px; color: var(--text-primary); font-size: 14px; font-family: var(--font-family); transition: var(--transition-fast); outline: none; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--accent-primary); box-shadow: 0 0 0 3px rgba(201,139,20,0.1); }
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--text-muted); }
.form-group textarea { min-height: 140px; resize: vertical; }
.form-group select option { background: var(--bg-secondary); color: var(--text-primary); }
.form-submit { margin-top: 28px; display: flex; align-items: center; justify-content: space-between; }
.form-submit .privacy-note { font-size: 12px; color: var(--text-muted); max-width: 300px; }
.form-success { display: none; text-align: center; padding: 40px 20px; }
.form-success.show { display: block; animation: fadeInUp 0.5s ease; }
.form-success .success-icon { width: 64px; height: 64px; border-radius: 50%; background: rgba(201,139,20,0.1); border: 2px solid var(--accent-secondary); display: flex; align-items: center; justify-content: center; font-size: 28px; margin: 0 auto 20px; }
.form-success h3 { font-size: 22px; font-weight: 700; margin-bottom: 8px; }
.form-success p { color: var(--text-secondary); font-size: 15px; }

/* ═══════════════════════════════════════════
   FAQ
═══════════════════════════════════════════ */
.faq-section { max-width: 720px; margin: 0 auto; padding: 0 24px 80px; }
.faq-section h2 {
    font-family: var(--font-display);
    font-size: 32px; font-weight: 800; font-style: italic;
    text-align: center; margin-bottom: 36px; letter-spacing: -0.5px;
}
.faq-item { background: var(--bg-card); border-radius: var(--radius-md); border: 1px solid var(--border-color); margin-bottom: 10px; overflow: hidden; transition: var(--transition-fast); }
.faq-item:hover { border-color: var(--border-glow); }
.faq-question { width: 100%; background: none; border: none; padding: 20px 24px; display: flex; align-items: center; justify-content: space-between; cursor: pointer; color: var(--text-primary); font-size: 15px; font-weight: 600; font-family: var(--font-family); text-align: left; }
.faq-question .faq-chevron { transition: var(--transition-fast); font-size: 18px; color: var(--text-muted); }
.faq-item.open .faq-question .faq-chevron { transform: rotate(180deg); color: var(--accent-primary); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-answer-inner { padding: 0 24px 20px; font-size: 14px; color: var(--text-secondary); line-height: 1.7; }

/* ═══════════════════════════════════════════
   LEGAL PAGES
═══════════════════════════════════════════ */
.legal-content { background: var(--bg-card); border-radius: var(--radius-lg); border: 1px solid var(--border-color); padding: 48px; box-shadow: var(--shadow-sm); }
.legal-intro { padding: 24px; background: rgba(201,139,20,0.04); border-left: 3px solid var(--accent-primary); border-radius: var(--radius-sm); margin-bottom: 40px; }
.legal-intro p { font-size: 15px; line-height: 1.7; color: var(--text-secondary); margin: 0; }
.legal-section { margin-bottom: 40px; }
.legal-section h2 { font-size: 22px; font-weight: 700; color: var(--text-primary); margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid var(--border-color); }
.legal-section h3 { font-size: 17px; font-weight: 600; color: var(--text-primary); margin-top: 24px; margin-bottom: 12px; }
.legal-section p { font-size: 14px; line-height: 1.8; color: var(--text-secondary); margin-bottom: 16px; }
.legal-section ul { margin: 16px 0; padding-left: 24px; }
.legal-section li { font-size: 14px; line-height: 1.8; color: var(--text-secondary); margin-bottom: 10px; }
.legal-section li strong { color: var(--text-primary); font-weight: 600; }
.legal-section a { color: var(--accent-primary); }
.legal-footer { margin-top: 48px; padding: 24px; background: var(--bg-secondary); border-radius: var(--radius-md); border: 1px solid var(--border-color); text-align: center; }
.legal-footer p { font-size: 15px; line-height: 1.7; color: var(--text-primary); margin: 0; }

/* ═══════════════════════════════════════════
   ABOUT PAGE
═══════════════════════════════════════════ */
.about-hero { text-align: center; padding: 120px 24px 60px; }
.about-hero h1 {
    font-family: var(--font-display);
    font-size: 56px; font-weight: 800; font-style: italic;
    line-height: 1.05; margin-bottom: 16px; letter-spacing: -2px;
    font-variation-settings: 'opsz' 144;
}
.about-hero p { font-size: 18px; color: var(--text-secondary); max-width: 700px; margin: 0 auto; }
.about-content { max-width: 900px; margin: 0 auto; padding: 0 24px 80px; }
.about-section { background: var(--bg-card); border-radius: var(--radius-lg); border: 1px solid var(--border-color); padding: 40px; margin-bottom: 24px; box-shadow: var(--shadow-sm); }
.about-section h2 { font-size: 26px; font-weight: 700; color: var(--text-primary); margin-bottom: 20px; display: flex; align-items: center; gap: 12px; }
.about-section h2 .icon { display: inline-flex; align-items: center; }
.about-section p { font-size: 15px; line-height: 1.8; color: var(--text-secondary); margin-bottom: 16px; }
.about-section p:last-child { margin-bottom: 0; }
.about-stats { display: grid; grid-template-columns: repeat(auto-fit,minmax(200px,1fr)); gap: 20px; margin-top: 28px; }
.about-stat-card { background: var(--bg-secondary); border: 1px solid var(--border-color); border-radius: var(--radius-md); padding: 28px 24px; text-align: center; }
.about-stat-number {
    font-family: var(--font-display); font-size: 36px; font-weight: 800; font-style: italic;
    color: var(--accent-primary); margin-bottom: 8px;
}
.about-stat-label { font-size: 14px; color: var(--text-muted); font-weight: 500; }
.timeline { position: relative; padding-left: 32px; margin-top: 24px; }
.timeline::before { content: ''; position: absolute; left: 0; top: 8px; bottom: 8px; width: 1px; background: var(--border-color); }
.timeline-item { position: relative; margin-bottom: 32px; }
.timeline-item::before { content: ''; position: absolute; left: -37px; top: 5px; width: 10px; height: 10px; background: var(--accent-primary); border-radius: 50%; box-shadow: 0 0 0 4px var(--bg-card); }
.timeline-date { font-size: 11px; font-weight: 600; color: var(--accent-primary); margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.6px; }
.timeline-title { font-size: 16px; font-weight: 600; color: var(--text-primary); margin-bottom: 6px; }
.timeline-desc { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }
.values-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(240px,1fr)); gap: 20px; margin-top: 24px; }
.value-card { background: var(--bg-secondary); border: 1px solid var(--border-color); border-radius: var(--radius-md); padding: 24px; }
.value-icon { display: flex; align-items: center; margin-bottom: 12px; }
.value-title { font-size: 16px; font-weight: 600; color: var(--text-primary); margin-bottom: 8px; }
.value-desc { font-size: 13px; color: var(--text-secondary); line-height: 1.6; }
.team-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(200px,1fr)); gap: 20px; margin-top: 24px; }
.team-card { background: var(--bg-secondary); border: 1px solid var(--border-color); border-radius: var(--radius-md); padding: 24px; text-align: center; }
.team-avatar { width: 80px; height: 80px; background: var(--gradient-primary); border-radius: 50%; margin: 0 auto 16px; display: flex; align-items: center; justify-content: center; font-size: 32px; }
.team-name { font-size: 16px; font-weight: 600; color: var(--text-primary); margin-bottom: 4px; }
.team-role { font-size: 13px; color: var(--text-muted); }

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
.footer { position: relative; z-index: 2; border-top: 1px solid var(--border-color); padding: 44px 24px; }
.footer-inner { max-width: 1280px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.footer-left { font-size: 13px; color: var(--text-muted); }
.footer-links { display: flex; gap: 24px; list-style: none; }
.footer-links a { font-size: 13px; color: var(--text-muted); text-decoration: none; transition: var(--transition-fast); }
.footer-links a:hover { color: var(--text-primary); }

/* ═══════════════════════════════════════════
   HERO APP BENTO
═══════════════════════════════════════════ */
.hero-bento { margin: 0 auto 24px; align-self: center; }
.hero-carousel-track {
    position: relative; width: 180px; height: 180px; margin: 0 auto 16px;
    filter: drop-shadow(0 22px 52px rgba(0,0,0,0.62)) drop-shadow(0 4px 16px rgba(201,139,20,0.12));
}
.hero-carousel-item {
    position: absolute; inset: 0;
    border-radius: 28px; overflow: hidden; cursor: pointer;
    opacity: 0; transform: scale(0.78) translateY(10px);
    transition: opacity 0.55s cubic-bezier(0.16,1,0.3,1), transform 0.55s cubic-bezier(0.16,1,0.3,1);
    pointer-events: none; will-change: transform, opacity;
}
.hero-carousel-item.active  { opacity: 1; transform: scale(1) translateY(0); pointer-events: auto; }
.hero-carousel-item.leaving { opacity: 0; transform: scale(0.88) translateY(-8px); transition: opacity 0.35s ease, transform 0.35s ease; }
.hero-carousel-item img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ═══════════════════════════════════════════
   KINETIC MARQUEE STRIP
═══════════════════════════════════════════ */
.marquee-strip {
    overflow: hidden;
    border-top: 1px solid var(--border-color); border-bottom: 1px solid var(--border-color);
    padding: 13px 0; margin: 0 0 80px; position: relative; z-index: 2;
    -webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
    mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}
.marquee-track {
    display: flex; gap: 28px; width: max-content;
    animation: marqueeScroll 32s linear infinite;
    align-items: center; font-size: 10px; font-weight: 600;
    color: var(--text-muted); letter-spacing: 2px; text-transform: uppercase;
}
.marquee-dot { width: 3px; height: 3px; border-radius: 50%; background: var(--accent-primary); flex-shrink: 0; opacity: 0.4; }
@keyframes marqueeScroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════════
   THEME ICON
═══════════════════════════════════════════ */
.theme-icon { display: flex; align-items: center; justify-content: center; width: 16px; height: 16px; }
.theme-icon svg { display: block; }

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 1366px) and (min-width: 1025px) {
    .hero h1 { font-size: 58px; }
    .section-container { padding-left: 32px; padding-right: 32px; }
    .apps-grid { gap: 22px; }
    .hero.hero-split { gap: 60px; }
}
@media (max-width: 1024px) and (min-width: 769px) {
    .navbar-inner { padding: 0 20px; }
    .hero { padding: 140px 32px 60px; }
    .hero h1 { font-size: 50px; }
    .hero p { font-size: 16px; }
    .apps-grid { grid-template-columns: repeat(2,1fr); gap: 18px; }
    .section-container { padding-left: 32px; padding-right: 32px; }
    .support-grid { grid-template-columns: repeat(2,1fr); }
    .modal-stats { grid-template-columns: repeat(2,1fr); }
    .form-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
    .navbar-inner { height: 54px; padding: 0 16px; }
    .logo-icon { width: 30px; height: 30px; font-size: 16px; border-radius: 8px; }
    .logo-text { font-size: 16px; }
    .mobile-menu-btn { display: flex; }
    .nav-center {
        position: fixed; top: 54px; left: 0; right: 0; flex-direction: column;
        background: rgba(14,12,9,0.97); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
        padding: 12px 16px; gap: 4px; border-bottom: 1px solid rgba(220,192,130,0.06);
        transform: translateY(-100%); opacity: 0; pointer-events: none;
        transition: transform 0.3s ease, opacity 0.3s ease; z-index: 99;
    }
    body.light-mode .nav-center { background: rgba(252,249,241,0.97); border-bottom: 1px solid rgba(80,60,10,0.07); }
    .nav-center.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
    .nav-center .nav-link { width: 100%; text-align: center; padding: 13px; font-size: 15px; border-radius: 8px; }
    .hero { padding: 88px 20px 56px; }
    .hero h1 { font-size: 40px; letter-spacing: -1.5px; margin-bottom: 18px; }
    .hero p { font-size: 16px; margin-bottom: 28px; }
    .hero-actions { flex-direction: column; width: 100%; max-width: 300px; margin: 0 auto; }
    .hero-actions .btn { width: 100%; justify-content: center; }
    .hero-badge { font-size: 11px; }
    .stats-bar { grid-template-columns: 1fr; gap: 14px; margin-bottom: 60px; padding: 0 20px; }
    .hero.hero-split { grid-template-columns: 1fr; gap: 28px; padding: 88px 20px 56px; text-align: left; }
    .hero-split .hero-actions { flex-direction: column; width: 100%; max-width: 300px; margin: 0; }
    .hero-split .hero-actions .btn { width: 100%; justify-content: center; }
    .hero-split .hero-stats { flex-direction: row; flex-wrap: wrap; gap: 10px; }
    .hero-split .stat-item { flex: 1; min-width: calc(50% - 5px); padding: 14px; flex-direction: column; gap: 6px; align-items: flex-start; }
    .hero-split .stat-number { font-size: 28px; }
    .section-container { padding: 0 20px 80px; }
    .section-header { margin-bottom: 36px; }
    .section-header h2 { font-size: 30px; }
    .apps-grid { grid-template-columns: 1fr; gap: 14px; }
    #homeAppsGrid .app-card:first-child { grid-column: 1; }
    .app-card { padding: 22px; }
    .app-icon { width: 56px; height: 56px; font-size: 24px; border-radius: 14px; }
    .app-card-info h3 { font-size: 16px; }
    .support-grid { grid-template-columns: 1fr; gap: 16px; }
    .support-card { padding: 24px; }
    .form-grid { grid-template-columns: 1fr; gap: 14px; }
    .form-group.full-width { grid-column: 1; }
    .support-form-wrapper { padding: 24px; border-radius: var(--radius-md); }
    .form-submit { flex-direction: column; gap: 16px; align-items: flex-start; }
    .form-submit .btn { width: 100%; justify-content: center; }
    .privacy-note { font-size: 12px; text-align: center; width: 100%; }
    .modal-hero, .modal-body { padding-left: 20px; padding-right: 20px; }
    .modal-hero { padding-top: 28px; padding-bottom: 28px; }
    .modal-stats { grid-template-columns: 1fr; gap: 12px; }
    .modal-actions { flex-direction: column; gap: 12px; }
    .modal-actions .btn { width: 100%; justify-content: center; }
    .screenshot-image { width: 155px; height: 336px; }
    .screenshot-nav { display: none !important; }
    .screenshots-container { padding: 16px 16px 20px; gap: 12px; }
    .lightbox-nav { width: 42px; height: 42px; }
    .lightbox-nav.prev { left: 8px; }
    .lightbox-nav.next { right: 8px; }
    .lightbox-close { top: 12px; right: 12px; }
    .lightbox-image { max-height: 75vh; max-width: 90vw; }
    .lightbox-counter { position: static; margin-top: 14px; transform: none; }
    .footer-inner { flex-direction: column; text-align: center; gap: 16px; }
    .footer-links { flex-wrap: wrap; justify-content: center; gap: 14px; }
    .legal-content { padding: 24px; }
    .about-hero { padding: 88px 20px 40px; }
    .about-hero h1 { font-size: 36px; }
    .about-section { padding: 28px 20px; }
    .about-stats { grid-template-columns: 1fr; }
    .timeline { padding-left: 24px; }
    .values-grid, .team-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
    .navbar-inner { height: 50px; padding: 0 14px; }
    .logo-text { font-size: 15px; }
    .nav-center { top: 50px; }
    .hero { padding: 78px 18px 48px; }
    .hero h1 { font-size: 34px; letter-spacing: -1px; }
    .hero p { font-size: 15px; }
    .section-header h2 { font-size: 26px; }
    .app-card { padding: 18px; }
    .app-icon { width: 50px; height: 50px; font-size: 22px; }
    .btn { padding: 12px 22px; font-size: 14px; }
    .legal-content { padding: 20px; }
    .legal-intro { padding: 16px; }
    .legal-section h2 { font-size: 18px; }
    .about-hero h1 { font-size: 30px; }
    .about-section { padding: 22px 18px; }
    .about-stat-number { font-size: 32px; }
}
@media (max-height: 500px) and (orientation: landscape) {
    .hero { padding-top: 88px; padding-bottom: 36px; }
    .hero h1 { font-size: 30px; margin-bottom: 14px; }
    .hero p { font-size: 14px; margin-bottom: 20px; }
    .navbar-inner { height: 50px; }
    .nav-center { top: 50px; }
}
@media (min-width: 1024px) and (max-width: 1366px) {
    .apps-grid { grid-template-columns: repeat(2,1fr); gap: 22px; }
    .support-grid { grid-template-columns: repeat(2,1fr); }
}
@media (prefers-reduced-motion: reduce) {
    * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
    .marquee-track { animation: none; }
}
