:root {
  --bg: #ffffff;
  --text: #2e2d30;
  --muted: #666;
  --accent: #228cdd;
  --border: #e5e5e5;
  --panel: #ffffff;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: 'Istok Web', Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
}

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2 { font-family: 'Comfortaa', 'Istok Web', sans-serif; font-weight: 700; text-transform: lowercase; color: var(--text); margin: 0 0 8px; }

.container { max-width: 960px; margin: 0 auto; padding: 0 18px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(8px);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 18px;
  padding: 14px 0;
}

.brand { display: inline-flex; align-items: center; gap: 10px; color: var(--text); text-decoration: none; }
.brand__logo { width: 44px; height: 44px; }
.brand__text { display: flex; flex-direction: column; gap: 2px; }
.brand__name { font-family: 'Comfortaa', sans-serif; font-weight: 700; font-size: 1.1rem; text-transform: lowercase; }
.brand__tagline { font-size: 0.9rem; color: var(--muted); }

.nav { display: flex; gap: 16px; align-items: center; font-family: 'Comfortaa', sans-serif; text-transform: lowercase; }
.nav a { color: var(--text); padding: 6px 10px; border-radius: 8px; }
.nav a:hover { background: #f7f7f7; text-decoration: none; }

.nav-toggle { display: none; flex-direction: column; gap: 4px; width: 44px; height: 36px; justify-content: center; align-items: center; border: 1px solid var(--border); border-radius: 8px; background: #fff; }
.nav-toggle span { width: 20px; height: 2px; background: var(--text); }

main { padding: 32px 0 64px; }

.panel { padding: 48px 0; }

.panel--hero { text-align: center; padding-top: 80px; padding-bottom: 60px; }

.hero { display: flex; flex-direction: column; align-items: center; gap: 18px; }
.hero__logo { max-width: 240px; width: 100%; height: auto; }
.hero__name { margin: 0; font-size: 2rem; }
.hero__tagline { margin: 0; color: var(--muted); }

.artists { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 32px; margin-top: 24px; }
.artist { display: grid; place-items: center; padding: 8px; }
.artist img { max-width: 240px; width: 100%; height: auto; }

.video-frame { position: relative; width: 100%; aspect-ratio: 16 / 9; border-radius: 12px; overflow: hidden; background: #000; }
.video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* App page helpers */
.section { padding: 28px 0; }
.feature-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; color: var(--text); }
.feature-list li { padding-left: 22px; position: relative; text-indent: -4px; line-height: 1.5; }
.feature-list li::before { content: "—"; color: #000; margin-right: 10px; position: absolute; left: 0; top: 0; }
.feature-subline { display: block; padding-left: 26px; font-size: 0.9rem; color: #555; text-indent: 0; line-height: 1.4; }
.callouts { display: grid; gap: 14px; margin-top: 48px; margin-bottom: 32px; }
.callouts { display: grid; gap: 14px; margin-top: 64px; margin-bottom: 48px; }
.callouts p { margin: 0; color: var(--muted); }
.cta-row { display: flex; gap: 10px; flex-wrap: wrap; }
.cta-row { margin-top: 32px; margin-bottom: 8px; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 6px; padding: 10px 14px; border-radius: 10px; border: 1px solid var(--accent); background: var(--accent); color: #fff; font-weight: 600; text-decoration: none; }
.button:hover { text-decoration: none; filter: brightness(0.95); }
.button.ghost { background: #fff; color: var(--text); border-color: var(--border); }
.store-badge { display: inline-flex; align-items: center; padding: 0; border-radius: 12px; background: transparent; border: none; }
.store-badge .store-image { width: 160px; height: auto; display: block; }
.badge { display: inline-block; padding: 8px 12px; border-radius: 999px; border: 1px solid var(--border); background: #fff; color: var(--muted); }
.screenshots { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 14px; margin-top: 12px; margin-bottom: 40px; }
.screenshot { width: 100%; height: auto; border-radius: 16px; border: 1px solid var(--border); background: #f7f7f7; }

.footer { border-top: 1px solid var(--border); padding: 18px 0; }
.footer__links { display: flex; gap: 12px; }

@media (max-width: 640px) {
  .nav { display: none; width: 100%; flex-direction: column; align-items: flex-start; margin-top: 10px; }
  .nav.open { display: flex; }
  .nav-toggle { display: inline-flex; }
  .header__inner { align-items: flex-start; flex-wrap: wrap; gap: 8px; }
}
