﻿*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --midnight: #0A0E1A;
    --midnight2: #10162A;
    --midnight3: #161D35;
    --gold: #C9A84C;
    --gold-light: #E2C97E;
    --gold-dim: rgba(201, 168, 76, 0.15);
    --ivory: #F0EBE1;
    --ivory-dim: rgba(240, 235, 225, 0.6);
    --violet: #6B5B8C;
    --violet-light: #9B87C2;
    --green: #3DAA6E;
    --text-main: #EDE9E0;
    --text-muted: #8A8FAA;
    --border: rgba(201, 168, 76, 0.18);
    --card-bg: rgba(22, 29, 53, 0.7);
    --radius: 16px;
    --radius-sm: 10px;
  }

  html { scroll-behavior: smooth; }

  body {
    background: var(--midnight);
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
  }

  .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

  /* ─── NAV ─── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 18px 48px;
    background: rgba(10, 14, 26, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: padding 0.3s;
  }
  .nav-logo {
    display: flex; align-items: center; gap: 10px;
    text-decoration: none; color: var(--ivory);
  }
  .nav-logo-icon {
    width: 36px; height: 36px; border-radius: 10px;
    background: linear-gradient(135deg, var(--gold), var(--violet));
    display: flex; align-items: center; justify-content: center;
    font-size: 18px;
  }
  .nav-logo span {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem; font-weight: 600; letter-spacing: 0.02em;
  }
  .nav-links {
    display: flex; align-items: center; gap: 32px; list-style: none;
  }
  .nav-links a {
    color: var(--text-muted); text-decoration: none;
    font-size: 0.88rem; font-weight: 500; letter-spacing: 0.04em;
    text-transform: uppercase; transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--gold); }
  .nav-cta {
    background: var(--gold); color: var(--midnight) !important;
    padding: 8px 20px; border-radius: 50px;
    font-weight: 600 !important; transition: background 0.2s, transform 0.2s !important;
  }
  .nav-cta:hover { background: var(--gold-light) !important; transform: translateY(-1px); }
  .language-switcher {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 10px;
    border: 1px solid var(--border);
    border-radius: 50px;
    background: rgba(22, 29, 53, 0.9);
    color: var(--gold);
  }
  .language-switcher-icon { line-height: 1; }
  .language-switcher select {
    min-width: 78px;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--ivory);
    font: inherit;
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
  }
  .language-switcher option {
    background: var(--midnight2);
    color: var(--ivory);
  }

  /* ─── HERO ─── */
  .hero {
    min-height: 100vh;
    display: grid; grid-template-columns: 1fr 1fr;
    align-items: center; gap: 60px;
    padding: 120px 80px 80px;
    position: relative; overflow: hidden;
  }
  .hero::before {
    content: '';
    position: absolute; inset: 0;
    background:
      radial-gradient(ellipse 60% 50% at 65% 50%, rgba(107, 91, 140, 0.22) 0%, transparent 70%),
      radial-gradient(ellipse 40% 60% at 20% 80%, rgba(201, 168, 76, 0.1) 0%, transparent 60%);
    pointer-events: none;
  }

  /* grid dots */
  .hero::after {
    content: '';
    position: absolute; inset: 0;
    background-image: radial-gradient(circle, rgba(201,168,76,0.08) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
  }

  .hero-text { position: relative; z-index: 2; }
  .hero-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--gold-dim); border: 1px solid var(--border);
    color: var(--gold); font-size: 0.78rem; font-weight: 600;
    letter-spacing: 0.1em; text-transform: uppercase;
    padding: 6px 16px; border-radius: 50px; margin-bottom: 28px;
  }
  .hero-eyebrow::before { content: '♪'; }

  .hero-headline {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 5vw, 5rem);
    font-weight: 700; line-height: 1.05;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
  }
  .hero-headline em {
    font-style: italic; color: var(--gold);
    display: block;
  }

  .hero-sub {
    font-size: 1.08rem; color: var(--ivory-dim);
    line-height: 1.75; max-width: 440px; margin-bottom: 44px;
  }

  .hero-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
  .btn-primary {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--gold); color: var(--midnight);
    padding: 14px 28px; border-radius: 50px;
    font-weight: 700; font-size: 0.95rem; text-decoration: none;
    transition: all 0.25s; white-space: nowrap;
    box-shadow: 0 8px 32px rgba(201, 168, 76, 0.3);
  }
  .btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 12px 40px rgba(201, 168, 76, 0.4); }
  .btn-primary svg { width: 20px; height: 20px; }

  .btn-ghost {
    display: inline-flex; align-items: center; gap: 10px;
    color: var(--text-main); border: 1px solid var(--border);
    padding: 14px 28px; border-radius: 50px;
    font-weight: 500; font-size: 0.95rem; text-decoration: none;
    transition: all 0.25s; white-space: nowrap;
  }
  .btn-ghost:hover { border-color: var(--gold); color: var(--gold); background: var(--gold-dim); }

  .hero-stats {
    display: flex; gap: 40px; margin-top: 56px;
    padding-top: 40px; border-top: 1px solid var(--border);
  }
  .stat-item { }
  .stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem; font-weight: 700; color: var(--gold);
    line-height: 1;
  }
  .stat-label { font-size: 0.78rem; color: var(--text-muted); letter-spacing: 0.06em; text-transform: uppercase; margin-top: 4px; }

  /* ─── PHONE MOCKUP ─── */
  .hero-visual { position: relative; z-index: 2; display: flex; justify-content: center; align-items: center; }

  .phone-wrap {
    position: relative;
    width: 280px;
    animation: float 6s ease-in-out infinite;
  }

  @keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-16px); }
  }

  .phone-shell {
    width: 280px; height: 560px;
    background: linear-gradient(145deg, #1C2340, #0D1226);
    border-radius: 40px;
    border: 2px solid rgba(201, 168, 76, 0.3);
    box-shadow:
      0 40px 80px rgba(0,0,0,0.5),
      0 0 0 1px rgba(255,255,255,0.04),
      inset 0 0 40px rgba(107, 91, 140, 0.15);
    overflow: hidden;
    position: relative;
  }

  .phone-notch {
    width: 90px; height: 28px;
    background: var(--midnight);
    border-radius: 0 0 18px 18px;
    margin: 0 auto; position: relative; z-index: 10;
  }

  .phone-screen {
    position: absolute; inset: 0;
    padding: 36px 18px 18px;
    display: flex; flex-direction: column; gap: 12px;
    overflow: hidden;
  }

  .phone-status {
    display: flex; justify-content: space-between; align-items: center;
    font-size: 0.6rem; color: var(--text-muted);
    padding: 0 4px;
  }

  .phone-topbar {
    display: flex; align-items: center; gap: 8px;
    padding: 8px 12px;
    background: rgba(201, 168, 76, 0.1);
    border-radius: 12px;
    border: 1px solid var(--border);
  }
  .phone-topbar-icon { font-size: 14px; }
  .phone-topbar-title { font-size: 0.7rem; font-weight: 700; color: var(--gold); flex: 1; }
  .phone-topbar-badge { font-size: 0.55rem; background: var(--gold); color: var(--midnight); padding: 2px 6px; border-radius: 20px; font-weight: 700; }

  .phone-search {
    display: flex; align-items: center; gap: 6px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px; padding: 8px 12px;
  }
  .phone-search span { font-size: 0.62rem; color: var(--text-muted); }

  .song-cards { display: flex; flex-direction: column; gap: 8px; flex: 1; overflow: hidden; }
  .song-card {
    display: flex; align-items: center; gap: 10px;
    background: var(--card-bg);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 10px; padding: 10px 12px;
    animation: slideInCard 0.5s ease both;
  }
  .song-card:nth-child(1) { animation-delay: 0.1s; }
  .song-card:nth-child(2) { animation-delay: 0.2s; }
  .song-card:nth-child(3) { animation-delay: 0.3s; }
  .song-card:nth-child(4) { animation-delay: 0.4s; }
  .song-card:nth-child(5) { animation-delay: 0.5s; }

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

  .song-card-num {
    font-size: 0.55rem; color: var(--gold); font-weight: 700;
    background: var(--gold-dim); padding: 3px 6px; border-radius: 4px;
    font-family: 'Cormorant Garamond', serif; min-width: 28px; text-align: center;
  }
  .song-card-info { flex: 1; min-width: 0; }
  .song-card-title { font-size: 0.68rem; font-weight: 600; color: var(--text-main); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .song-card-meta { font-size: 0.55rem; color: var(--text-muted); margin-top: 2px; }
  .song-card-star { font-size: 12px; color: var(--gold); opacity: 0.6; }
  .song-card.starred .song-card-star { opacity: 1; }

  .phone-tabs {
    display: flex; justify-content: space-around;
    padding: 10px 0 4px;
    border-top: 1px solid rgba(255,255,255,0.06);
  }
  .phone-tab { display: flex; flex-direction: column; align-items: center; gap: 3px; }
  .phone-tab-icon { font-size: 14px; }
  .phone-tab-label { font-size: 0.45rem; color: var(--text-muted); }
  .phone-tab.active .phone-tab-label { color: var(--gold); }
  .phone-tab.active .phone-tab-icon { filter: sepia(1) saturate(3) hue-rotate(-10deg); }

  /* floating tags */
  .float-tag {
    position: absolute;
    background: var(--card-bg);
    border: 1px solid var(--border);
    backdrop-filter: blur(12px);
    border-radius: 12px;
    padding: 10px 14px;
    white-space: nowrap;
    animation: float 5s ease-in-out infinite;
  }
  .float-tag.tag-left {
    left: -90px; top: 30%;
    animation-delay: 1s;
    animation-duration: 7s;
  }
  .float-tag.tag-right {
    right: -80px; top: 55%;
    animation-delay: 2s;
    animation-duration: 6s;
  }
  .float-tag .ft-label { font-size: 0.6rem; color: var(--text-muted); margin-bottom: 2px; }
  .float-tag .ft-value { font-size: 0.8rem; font-weight: 700; color: var(--gold); }
  .float-tag .ft-icon { font-size: 18px; margin-bottom: 2px; }

  /* ─── CATEGORIES ─── */
  .categories {
    padding: 80px 80px 0;
  }
  .section-label {
    font-size: 0.75rem; font-weight: 600; color: var(--gold);
    letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 12px;
  }
  .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 700; line-height: 1.2; margin-bottom: 48px;
  }

  .cat-pills {
    display: flex; flex-wrap: wrap; gap: 12px;
  }
  .cat-pill {
    display: flex; align-items: center; gap: 10px;
    padding: 14px 24px; border-radius: 50px;
    border: 1px solid var(--border);
    background: var(--card-bg);
    cursor: pointer; transition: all 0.25s;
    text-decoration: none; color: var(--text-main);
  }
  .cat-pill:hover, .cat-pill.active {
    border-color: var(--gold);
    background: var(--gold-dim);
    color: var(--gold);
    transform: translateY(-2px);
  }
  .cat-pill-icon { font-size: 1.2rem; }
  .cat-pill-name { font-size: 0.9rem; font-weight: 500; }
  .cat-pill-count {
    font-size: 0.72rem; color: var(--text-muted);
    background: rgba(255,255,255,0.06);
    padding: 2px 8px; border-radius: 20px;
  }

  /* ─── FEATURES ─── */
  .features { padding: 100px 80px; }

  .features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 16px;
    margin-top: 48px;
  }

  .feat-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    transition: border-color 0.3s, transform 0.3s;
    position: relative; overflow: hidden;
  }
  .feat-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0; transition: opacity 0.3s;
  }
  .feat-card:hover { border-color: rgba(201, 168, 76, 0.4); transform: translateY(-4px); }
  .feat-card:hover::before { opacity: 1; }

  .feat-card.wide { grid-column: span 2; }
  .feat-card.tall { grid-row: span 2; }

  .feat-icon {
    width: 52px; height: 52px; border-radius: 14px;
    background: var(--gold-dim);
    display: flex; align-items: center; justify-content: center;
    font-size: 24px; margin-bottom: 20px;
    border: 1px solid var(--border);
  }
  .feat-icon.violet { background: rgba(107, 91, 140, 0.2); border-color: rgba(107, 91, 140, 0.3); }
  .feat-icon.green { background: rgba(61, 170, 110, 0.15); border-color: rgba(61, 170, 110, 0.3); }

  .feat-title {
    font-size: 1.05rem; font-weight: 600; margin-bottom: 10px; color: var(--ivory);
  }
  .feat-desc { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; }

  .feat-tag {
    display: inline-block; margin-top: 16px;
    font-size: 0.72rem; font-weight: 600; color: var(--green);
    background: rgba(61, 170, 110, 0.12); border: 1px solid rgba(61, 170, 110, 0.25);
    padding: 3px 10px; border-radius: 20px;
  }
  .feat-tag.gold { color: var(--gold); background: var(--gold-dim); border-color: var(--border); }
  .feat-tag.violet { color: var(--violet-light); background: rgba(107, 91, 140, 0.15); border-color: rgba(107, 91, 140, 0.25); }

  .offline-storage {
    margin-top: 28px;
    padding: 20px;
    background: rgba(255,255,255,0.03);
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.06);
  }
  .storage-heading {
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
  }
  .storage-items { display: flex; flex-direction: column; gap: 8px; }
  .storage-row { display: flex; justify-content: space-between; font-size: 0.75rem; }
  .storage-name { color: var(--ivory); }
  .storage-state.synced { color: var(--gold); }
  .storage-state.healthy { color: var(--green); }
  .storage-track {
    height: 4px;
    border-radius: 2px;
    background: rgba(255,255,255,0.08);
    overflow: hidden;
  }
  .storage-fill { height: 100%; border-radius: 2px; }
  .storage-fill.full {
    width: 100%;
    background: linear-gradient(90deg, var(--gold), var(--green));
  }
  .storage-fill.search-index { width: 88%; background: var(--green); }
  .storage-note { margin-top: 14px; font-size: 0.7rem; color: var(--text-muted); }

  /* language demo in card */
  .lang-demo {
    margin-top: 20px;
    display: flex; flex-direction: column; gap: 8px;
  }
  .lang-row {
    display: flex; align-items: center; gap: 12px;
    background: rgba(255,255,255,0.04);
    border-radius: 8px; padding: 10px 14px;
    border: 1px solid rgba(255,255,255,0.06);
  }
  .lang-flag { font-size: 18px; }
  .lang-text { font-size: 0.82rem; color: var(--text-main); }
  .lang-badge { font-size: 0.65rem; color: var(--gold); background: var(--gold-dim); padding: 2px 8px; border-radius: 10px; margin-left: auto; }

  /* theme palette */
  .theme-dots { display: flex; gap: 8px; margin-top: 16px; }
  .theme-dot {
    width: 28px; height: 28px; border-radius: 50%;
    cursor: pointer; transition: transform 0.2s;
    border: 2px solid rgba(255,255,255,0.1);
  }
  .theme-dot:hover { transform: scale(1.2); }
  .theme-dots.theme-preview { margin-top: 20px; }
  .theme-dot.ocean { background: linear-gradient(135deg, #1565C0, #42A5F5); }
  .theme-dot.sunset { background: linear-gradient(135deg, #C62828, #FF8F00); }
  .theme-dot.emerald { background: linear-gradient(135deg, #2E7D32, #A5D6A7); }
  .theme-dot.violet-theme { background: linear-gradient(135deg, #4A148C, #CE93D8); }
  .theme-dot.amber { background: linear-gradient(135deg, #E65100, #FFCC02); }
  .theme-dot.rose { background: linear-gradient(135deg, #880E4F, #F48FB1); }
  .theme-dot.slate { background: linear-gradient(135deg, #263238, #78909C); }
  .theme-hint { font-size: 0.75rem; color: var(--text-muted); margin-top: 12px; }

  /* sync viz */
  .sync-anim { display: flex; align-items: center; gap: 8px; margin-top: 16px; }
  .sync-bar {
    height: 4px; border-radius: 2px; background: var(--gold);
    transition: width 1.5s ease;
    animation: sync-pulse 2.5s ease-in-out infinite;
  }
  @keyframes sync-pulse {
    0%, 100% { opacity: 0.4; width: 30%; }
    50% { opacity: 1; width: 90%; }
  }
  .sync-label { font-size: 0.65rem; color: var(--green); }
  .sync-anim.sync-panel { flex-direction: column; align-items: flex-start; gap: 6px; }
  .sync-progress-label { font-size: 0.7rem; color: var(--text-muted); }
  .sync-track {
    width: 100%;
    height: 4px;
    border-radius: 2px;
    background: rgba(255,255,255,0.06);
    overflow: hidden;
  }

  .artist-profile-content { display: flex; flex-direction: column; gap: 16px; }
  .section-label.profile-title { margin-bottom: 8px; }
  .profile-description { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; }
  .profile-links { display: flex; gap: 10px; flex-wrap: wrap; }
  .profile-link {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text-muted);
    font-size: 0.82rem;
    transition: all 0.2s;
  }
  .profile-link:hover { border-color: var(--gold); color: var(--gold); }

  .nav-logo-icon.footer-logo-icon { width: 32px; height: 32px; font-size: 15px; }

  /* ─── SCREENSHOTS SECTION ─── */
  .screenshots { padding: 0 80px 100px; }

  .screens-track {
    display: flex; gap: 24px; margin-top: 48px;
    overflow-x: auto; padding-bottom: 16px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--border) transparent;
  }

  .screen-item {
    scroll-snap-align: start;
    flex: 0 0 220px;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--card-bg);
    transition: transform 0.3s;
    position: relative;
  }
  .screen-item:hover { transform: translateY(-8px) scale(1.02); }

  .screen-placeholder {
    height: 400px;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 12px;
    background: linear-gradient(145deg, var(--midnight2), var(--midnight3));
    padding: 24px;
    text-align: center;
  }
  .screen-placeholder-icon { font-size: 2.5rem; }
  .screen-placeholder-name { font-size: 0.8rem; font-weight: 600; color: var(--gold); }
  .screen-placeholder-desc { font-size: 0.7rem; color: var(--text-muted); line-height: 1.5; }

  .screen-img { width: 100%; height: 400px; object-fit: cover; display: block; }
  .screen-label { padding: 14px; font-size: 0.8rem; font-weight: 500; color: var(--text-muted); text-align: center; }

  /* ─── LANGUAGES ─── */
  .lang-section { padding: 0 80px 100px; }

  .lang-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 48px; }

  .lang-card {
    background: var(--card-bg); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 36px;
  }
  .lang-card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem; font-weight: 700; color: var(--gold);
    margin-bottom: 8px;
  }
  .lang-card-sub { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 24px; }
  .lang-card-tags { display: flex; flex-wrap: wrap; gap: 8px; }
  .lang-chip {
    font-size: 0.78rem; padding: 6px 14px; border-radius: 20px;
    background: rgba(201, 168, 76, 0.1); border: 1px solid var(--border);
    color: var(--ivory);
  }

  /* ─── CTA ─── */
  .cta-section {
    margin: 0 80px 80px;
    background: linear-gradient(135deg, var(--midnight3) 0%, rgba(107, 91, 140, 0.3) 100%);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 80px 80px;
    text-align: center;
    position: relative; overflow: hidden;
  }
  .cta-section::before {
    content: '♪';
    position: absolute; top: -20px; left: 40px;
    font-size: 12rem; color: rgba(201, 168, 76, 0.04);
    font-family: 'Cormorant Garamond', serif;
    pointer-events: none;
  }
  .cta-section::after {
    content: '♫';
    position: absolute; bottom: -30px; right: 60px;
    font-size: 10rem; color: rgba(201, 168, 76, 0.04);
    font-family: 'Cormorant Garamond', serif;
    pointer-events: none;
  }
  .cta-eyebrow {
    display: inline-block; font-size: 0.75rem; font-weight: 600;
    color: var(--gold); letter-spacing: 0.1em; text-transform: uppercase;
    margin-bottom: 20px;
  }
  .cta-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 700;
    line-height: 1.1; margin-bottom: 20px;
  }
  .cta-sub { font-size: 1rem; color: var(--ivory-dim); max-width: 500px; margin: 0 auto 40px; }
  .cta-actions { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }

  .btn-playstore {
    display: inline-flex; align-items: center; gap: 12px;
    background: white; color: #000;
    padding: 14px 28px; border-radius: 12px;
    font-weight: 700; font-size: 0.95rem; text-decoration: none;
    transition: all 0.25s;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  }
  .btn-playstore:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(0,0,0,0.4); }
  .btn-playstore-inner { display: flex; flex-direction: column; }
  .btn-playstore-small { font-size: 0.65rem; font-weight: 400; opacity: 0.7; }
  .btn-playstore-big { font-size: 1rem; font-weight: 700; line-height: 1; }

  /* ─── FOOTER ─── */
  footer {
    padding: 60px 80px 40px;
    border-top: 1px solid var(--border);
  }
  .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
  .footer-brand-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
  .footer-brand-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem; font-weight: 600;
  }
  .footer-brand-desc { font-size: 0.85rem; color: var(--text-muted); line-height: 1.7; max-width: 260px; margin-bottom: 20px; }
  .footer-socials { display: flex; gap: 10px; }
  .social-btn {
    width: 36px; height: 36px; border-radius: 8px;
    background: var(--card-bg); border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    font-size: 16px; text-decoration: none;
    transition: all 0.2s;
  }
  .social-btn:hover { border-color: var(--gold); background: var(--gold-dim); }
  .footer-col h4 { font-size: 0.78rem; font-weight: 600; color: var(--gold); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 16px; }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
  .footer-col a { color: var(--text-muted); text-decoration: none; font-size: 0.88rem; transition: color 0.2s; }
  .footer-col a:hover { color: var(--gold); }
  .footer-bottom {
    display: flex; align-items: center; justify-content: space-between;
    padding-top: 24px; border-top: 1px solid var(--border);
    font-size: 0.8rem; color: var(--text-muted);
  }
  .footer-heart { color: #e05252; }

  /* ─── SCROLL REVEAL ─── */
  .reveal {
    opacity: 0; transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .reveal.visible { opacity: 1; transform: translateY(0); }

  /* ─── RESPONSIVE ─── */
  @media (max-width: 1024px) {
    .hero { grid-template-columns: 1fr; padding: 120px 48px 80px; gap: 60px; }
    .hero-visual { order: -1; }
    .float-tag { display: none; }
    .features-grid { grid-template-columns: 1fr 1fr; }
    .feat-card.wide { grid-column: span 2; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    nav { padding: 16px 32px; }
    .categories, .features, .screenshots, .lang-section, .lang-grid { padding-left: 48px; padding-right: 48px; }
    .cta-section { margin: 0 48px 80px; padding: 60px 48px; }
    footer { padding: 60px 48px 40px; }
  }

  @media (max-width: 768px) {
    nav { padding: 14px 20px; }
    .nav-links { display: none; }
    .language-switcher { padding: 5px 8px; }
    .language-switcher select { min-width: 72px; }
    .hero { padding: 100px 24px 60px; }
    .hero-stats { gap: 24px; }
    .categories, .features, .screenshots, .lang-section { padding: 60px 24px 0; }
    .features { padding: 60px 24px; }
    .screenshots { padding: 0 24px 60px; }
    .lang-section { padding: 0 24px 60px; }
    .features-grid { grid-template-columns: 1fr; }
    .feat-card.wide { grid-column: span 1; }
    .lang-grid { grid-template-columns: 1fr; }
    .cta-section { margin: 0 24px 60px; padding: 48px 28px; }
    footer { padding: 48px 24px 32px; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  }

  /* ─── TICKER ─── */
  .ticker-wrap {
    overflow: hidden; border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 14px 0; background: var(--midnight2);
  }
  .ticker {
    display: flex; gap: 0;
    animation: ticker-scroll 28s linear infinite;
    width: max-content;
  }
  .ticker-item {
    display: flex; align-items: center; gap: 12px;
    font-size: 0.78rem; color: var(--text-muted);
    padding: 0 32px; white-space: nowrap;
  }
  .ticker-item span { color: var(--gold); }
  .ticker-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--gold); opacity: 0.4; }
  @keyframes ticker-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }
