:root {
  --bg: #050914;
  --paper: rgba(15, 23, 42, .78);
  --paper-strong: rgba(19, 30, 54, .92);
  --text: #eaf2ff;
  --muted: #9fb0c7;
  --cyan: #00d5ff;
  --blue: #367cff;
  --violet: #8b5cf6;
  --border: rgba(255,255,255,.12);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  background:
    radial-gradient(circle at 15% 10%, rgba(0,213,255,.18), transparent 28%),
    radial-gradient(circle at 85% 22%, rgba(139,92,246,.2), transparent 32%),
    var(--bg);
  color: var(--text);
}
a { color: inherit; text-decoration: none; }
.topbar {
  position: sticky; top: 0; z-index: 20;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px clamp(18px, 4vw, 56px);
  background: rgba(5,9,20,.72);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
}
.brand { display: flex; align-items: center; gap: 10px; font-weight: 900; letter-spacing: .4px; }
.brand-dot { width: 14px; height: 14px; border-radius: 50%; background: linear-gradient(135deg, var(--cyan), var(--violet)); box-shadow: 0 0 22px var(--cyan); }
nav { display: flex; gap: 18px; color: var(--muted); font-weight: 700; }
nav a:hover { color: white; }
.container { width: min(1180px, calc(100% - 36px)); margin: 0 auto; }
.hero { min-height: 720px; position: relative; overflow: hidden; display: flex; align-items: center; }
.hero-bg::before, .hero-bg::after { content: ''; position: absolute; border-radius: 999px; filter: blur(12px); opacity: .55; }
.hero-bg::before { width: 520px; height: 520px; right: 6%; top: 16%; background: radial-gradient(circle, rgba(0,213,255,.34), transparent 62%); animation: drift 8s ease-in-out infinite; }
.hero-bg::after { width: 380px; height: 380px; left: 12%; bottom: 4%; background: radial-gradient(circle, rgba(139,92,246,.28), transparent 60%); animation: drift 10s ease-in-out infinite reverse; }
.hero-inner { display: grid; grid-template-columns: 1.15fr .85fr; gap: 48px; align-items: center; position: relative; z-index: 1; }
.eyebrow { color: var(--cyan); font-weight: 800; text-transform: uppercase; letter-spacing: .16em; font-size: 13px; }
h1 { font-size: clamp(56px, 10vw, 116px); line-height: .9; margin: 20px 0; letter-spacing: -0.08em; }
h2 { font-size: clamp(32px, 4vw, 54px); margin: 0; letter-spacing: -0.04em; }
h3 { margin: 0; font-size: 26px; }
.lead { color: #cdd8ea; font-size: clamp(20px, 2.4vw, 28px); line-height: 1.35; max-width: 780px; }
.actions, .card-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 44px; padding: 0 18px; border-radius: 999px; border: 1px solid var(--border); background: rgba(255,255,255,.05); font-weight: 800; transition: .22s ease; }
.btn:hover { transform: translateY(-2px); background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.24); }
.btn.primary { background: linear-gradient(135deg, var(--cyan), var(--blue)); color: #00111d; border: 0; box-shadow: 0 14px 44px rgba(0,213,255,.22); }
.btn.small { min-height: 36px; padding: 0 14px; font-size: 14px; }
.hero-card, .app-card, .team-card, .panel, .empty { border: 1px solid var(--border); background: var(--paper); backdrop-filter: blur(18px); box-shadow: 0 24px 90px rgba(0,0,0,.28); border-radius: 28px; }
.hero-card { padding: 28px; min-height: 280px; position: relative; overflow: hidden; }
.terminal-line { color: #bdcbe0; font-family: ui-monospace, SFMono-Regular, Consolas, monospace; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,.07); }
.terminal-line.cyan { color: var(--cyan); }
.pulse { position: absolute; right: 34px; bottom: 34px; width: 70px; height: 70px; border-radius: 50%; background: radial-gradient(circle, var(--cyan), transparent 62%); animation: pulse 1.7s ease-in-out infinite; }
.section { padding: 86px 0; }
.section-head { margin-bottom: 34px; }
.grid { display: grid; gap: 24px; }
.apps-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.app-card { overflow: hidden; transition: .25s ease; }
.app-card:hover { transform: translateY(-4px); border-color: rgba(0,213,255,.32); }
.cover { width: 100%; height: 240px; object-fit: cover; display: block; background: #0b1220; }
.app-content { padding: 26px; }
.app-content p, .team-card p { color: var(--muted); line-height: 1.6; }
.chip-row { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.chip { display: inline-flex; align-items: center; min-height: 28px; padding: 0 12px; border-radius: 999px; background: rgba(0,213,255,.12); color: #9beeff; font-size: 13px; font-weight: 800; }
.chip.muted { background: rgba(255,255,255,.07); color: #dbe7f7; }
.release-box { margin-top: 18px; padding: 16px; border-radius: 18px; border: 1px solid rgba(255,255,255,.1); background: rgba(0,0,0,.18); }
.release-top { display: flex; justify-content: space-between; gap: 12px; color: white; }
.release-top span { color: var(--cyan); font-weight: 900; }
.release-top.big { font-size: 22px; margin-bottom: 20px; }
pre { white-space: pre-wrap; word-break: break-word; font-family: Inter, Arial, sans-serif; color: #c6d3e6; line-height: 1.55; }
.team-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.team-card { padding: 24px; }
.team-card img { width: 82px; height: 82px; object-fit: cover; border-radius: 22px; margin-bottom: 16px; }
.role { color: var(--cyan) !important; font-weight: 800; }
.footer { padding: 34px; text-align: center; color: var(--muted); border-top: 1px solid var(--border); }
.page { padding: 54px 0 90px; }
.back { color: var(--cyan); font-weight: 800; }
.detail-hero { margin-top: 28px; display: grid; grid-template-columns: 1fr 220px; gap: 30px; align-items: center; }
.detail-logo { width: 220px; height: 220px; object-fit: cover; border-radius: 46px; border: 1px solid var(--border); box-shadow: 0 24px 80px rgba(0,0,0,.3); }
.panel { padding: 30px; margin-top: 28px; }
.release-body { padding: 18px; border-radius: 18px; background: rgba(0,0,0,.2); border: 1px solid rgba(255,255,255,.08); }
.screenshots { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 18px; }
.screenshots figure { margin: 0; }
.screenshots img { width: 100%; border-radius: 22px; border: 1px solid var(--border); }
.screenshots figcaption { color: var(--muted); margin-top: 8px; }
.privacy-text { font-family: Inter, Arial, sans-serif; }
.empty { padding: 24px; color: var(--muted); }
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.float-card { animation: float 5s ease-in-out infinite; }
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-14px)} }
@keyframes pulse { 0%,100%{opacity:.35; transform:scale(.9)} 50%{opacity:1; transform:scale(1.08)} }
@keyframes drift { 0%,100%{transform:translate(0,0)} 50%{transform:translate(-30px,22px)} }
@media (max-width: 860px) {
  .hero-inner, .apps-grid, .team-grid, .detail-hero, .screenshots { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding: 70px 0; }
  nav { display: none; }
}
