/* ── Fonts ──────────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Space+Grotesk:wght@300;400;500;600;700&display=swap');

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

/* ── Base ───────────────────────────────────────────────────── */
:root {
  --bg:       #0f0f0f;
  --bg-card:  #141414;
  --bg-card2: #1a1a1a;
  --border:   #1e1e1e;
  --border2:  #2a2a2a;
  --text:     #ffffff;
  --muted:    #888888;
  --accent:   #6366f1;
  --accent-2: #a5b4fc;
  --green:    #22c55e;
  --radius:   16px;
}

html { scroll-behavior: smooth; }

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Header ─────────────────────────────────────────────────── */
.header {
  padding: 80px 0 64px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.logo-mark {
  width: 200px;
  height: 200px;
  margin-bottom: 16px;
  mix-blend-mode: screen;
}

.wordmark {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 48px;
  font-weight: 400;
  letter-spacing: 6px;
  line-height: 1;
  margin-bottom: 16px;
}

.wordmark-heibai {
  color: var(--text);
}

.wordmark-studio {
  color: var(--muted);
  letter-spacing: 10px;
}

.tagline {
  font-size: 18px;
  color: var(--muted);
  font-weight: 400;
}

/* ── Main ───────────────────────────────────────────────────── */
.main {
  flex: 1;
  padding: 64px 0;
}

.section-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--muted);
  margin-bottom: 28px;
}

/* ── Apps grid ──────────────────────────────────────────────── */
.apps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 16px;
}

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

/* ── App card ───────────────────────────────────────────────── */
.app-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: border-color 0.2s;
}

.app-card:hover {
  border-color: var(--border2);
}

.app-card--soon {
  opacity: 0.55;
}

/* ── App icon ───────────────────────────────────────────────── */
.app-icon {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1a1a1a;
}

.app-icon svg {
  width: 40px;
  height: 40px;
}

.app-icon--img {
  padding: 0;
  overflow: hidden;
}

.app-icon--img img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 14px;
}

/* ── App info ───────────────────────────────────────────────── */
.app-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.app-header {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.app-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
}

.app-badge {
  font-size: 11px;
  font-weight: 600;
  color: var(--green);
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.25);
  border-radius: 6px;
  padding: 2px 8px;
}

.app-badge--soon {
  color: var(--muted);
  background: rgba(136, 136, 136, 0.1);
  border-color: rgba(136, 136, 136, 0.2);
}

.app-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
}

/* ── Play Store button ──────────────────────────────────────── */
.play-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--text);
  color: #000;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 10px;
  padding: 9px 16px;
  margin-top: 4px;
  align-self: flex-start;
  transition: opacity 0.15s;
}

.play-btn:hover {
  opacity: 0.88;
}

/* ── Footer ─────────────────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--border);
  padding: 32px 0;
}

.footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy {
  font-size: 13px;
  color: var(--muted);
}

.footer-email {
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.15s;
}

.footer-email:hover {
  color: var(--text);
}
