:root {
  --bg: #0b0d12;
  --panel: #14171f;
  --panel-2: #1b1f2a;
  --border: #262b38;
  --text: #e7e9ee;
  --muted: #9aa3b2;
  --accent: #6c8cff;
  --accent-2: #a06cff;
  --radius: 14px;
  --maxw: 860px;
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background:
    radial-gradient(1200px 600px at 50% -10%, rgba(108,140,255,0.15), transparent 60%),
    var(--bg);
  color: var(--text);
  font: 16px/1.6 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
header {
  padding: 72px 0 40px;
  text-align: center;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  font-size: 14px;
  color: var(--muted);
}

.brand .dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
}

header h1 {
  margin: 18px 0 8px;
  font-size: clamp(32px, 6vw, 52px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #fff, #b9c2ff 70%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

header p.lede {
  margin: 0 auto;
  max-width: 560px;
  color: var(--muted);
  font-size: 18px;
}

/* Nav */
nav {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 28px;
}
nav a {
  padding: 8px 16px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--text);
  font-size: 14px;
}
nav a:hover { background: var(--panel-2); text-decoration: none; }

/* Sections */
section { padding: 28px 0; }
section h2 {
  font-size: 22px;
  letter-spacing: -0.01em;
  margin: 0 0 18px;
}

/* App cards */
.apps { display: grid; gap: 16px; }
.app {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.app .icon {
  width: 64px; height: 64px;
  border-radius: 15px;
  flex: 0 0 auto;
  object-fit: cover;
  background: var(--panel-2);
  border: 1px solid var(--border);
}
.app h3 { margin: 2px 0 4px; font-size: 18px; }
.app p { margin: 0; color: var(--muted); font-size: 15px; }
.app .platforms {
  margin-top: 10px;
  display: flex; gap: 6px; flex-wrap: wrap;
}
.app .platforms span {
  font-size: 12px;
  color: var(--muted);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 2px 8px;
}
.app .meta {
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 13px;
}
.app .meta .year { color: var(--muted); }
.app .meta .store {
  font-weight: 600;
  color: var(--accent);
}
.app .meta .soon-badge {
  color: var(--accent-2);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 2px 10px;
  font-weight: 600;
}
.app .icon.soon {
  display: grid;
  place-items: center;
  font-size: 30px;
  object-fit: initial;
  background: linear-gradient(135deg, #ff7a4a, #d7263d);
}
.app.upcoming { opacity: 0.92; }

/* FAQ */
.faq details {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 4px 18px;
  margin-bottom: 10px;
}
.faq summary {
  cursor: pointer;
  padding: 14px 0;
  font-weight: 600;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  float: right;
  color: var(--muted);
  font-weight: 400;
  font-size: 20px;
  line-height: 1;
}
.faq details[open] summary::after { content: "\2013"; }
.faq details p { margin: 0 0 16px; color: var(--muted); }

/* Support box */
.support {
  text-align: center;
  background: linear-gradient(135deg, var(--panel-2), var(--panel));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 24px;
}
.support .email {
  display: inline-block;
  margin-top: 8px;
  font-size: 20px;
  font-weight: 600;
}

/* Footer */
footer {
  padding: 48px 0 64px;
  text-align: center;
  color: var(--muted);
  font-size: 14px;
}
footer a { color: var(--muted); }
