
:root {
  color-scheme: dark;
  --bg: #08090b;
  --panel: rgba(18, 20, 24, 0.88);
  --panel-2: #121419;
  --text: #ffffff;
  --muted: #a7adb7;
  --soft: #6f7681;
  --accent: #dfff3f;
  --border: rgba(255,255,255,.10);
  --shadow: 0 28px 90px rgba(0,0,0,.42);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(circle at 20% 0%, rgba(223,255,63,.12), transparent 28%),
    radial-gradient(circle at 100% 100%, rgba(71,118,255,.10), transparent 25%),
    var(--bg);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
a { color: inherit; }
.shell {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}
.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
}
.brand {
  font-weight: 850;
  letter-spacing: -0.03em;
  text-decoration: none;
}
.brand span { color: var(--accent); }
.back {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
}
.hero {
  padding: 74px 0 46px;
  text-align: center;
}
.eyebrow {
  display: inline-flex;
  padding: 7px 11px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .1em;
}
h1 {
  margin: 18px auto 14px;
  max-width: 840px;
  font-size: clamp(44px, 8vw, 86px);
  line-height: .98;
  letter-spacing: -.055em;
}
.hero p {
  margin: 0 auto;
  max-width: 690px;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.55;
}
.grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 28px 0 80px;
}
.app-card {
  display: flex;
  flex-direction: column;
  min-height: 300px;
  padding: 26px;
  border: 1px solid var(--border);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.012));
  box-shadow: var(--shadow);
}
.app-icon, .single-icon {
  display: grid;
  place-items: center;
  background: var(--accent);
  color: #0a0b0d;
  font-weight: 950;
  overflow: hidden;
}
.app-icon img, .single-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
  display: block;
}
.app-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  font-size: 26px;
}
.single-icon {
  width: 92px;
  height: 92px;
  margin: 0 auto 24px;
  border-radius: 26px;
  font-size: 44px;
}
.app-card h2 {
  margin: 20px 0 8px;
  font-size: 28px;
  letter-spacing: -.035em;
}
.app-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}
.links {
  display: flex;
  gap: 10px;
  margin-top: auto;
  padding-top: 26px;
  flex-wrap: wrap;
}
.button {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 13px 16px;
  border-radius: 15px;
  text-decoration: none;
  font-weight: 780;
  background: #fff;
  color: #0b0c0e;
  transition: transform .15s ease, opacity .15s ease;
}
.button:hover { transform: translateY(-2px); }
.button.secondary {
  color: #fff;
  background: transparent;
  border: 1px solid var(--border);
}
.store-badge {
  display: inline-flex;
  line-height: 0;
  align-items: center;
  transition: transform .18s ease, opacity .18s ease;
}
.store-badge img { height: 52px; }
.store-badge:hover { transform: translateY(-2px); opacity: .85; }
@media (max-width: 480px) { .store-badge img { height: 46px; } }
.smart-link {
  margin-top: 13px;
  color: var(--soft);
  font-size: 13px;
  text-decoration: none;
}
.single-wrap {
  min-height: calc(100vh - 90px);
  display: grid;
  place-items: center;
  padding: 32px 0 72px;
}
.single-card {
  width: min(100%, 540px);
  padding: 40px 32px;
  text-align: center;
  border: 1px solid var(--border);
  border-radius: 30px;
  background: var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}
.single-card h1 {
  margin: 0 0 12px;
  font-size: clamp(40px, 10vw, 62px);
}
.single-card .intro {
  max-width: 420px;
  margin: 0 auto 14px;
  font-size: 20px;
  line-height: 1.45;
}
.single-card .desc {
  max-width: 430px;
  margin: 0 auto 28px;
  color: var(--muted);
  line-height: 1.55;
}
.single-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}
.status {
  min-height: 20px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 13px;
}
.footer {
  padding: 24px 0 40px;
  color: var(--soft);
  font-size: 13px;
  text-align: center;
}
@media (max-width: 760px) {
  .grid { grid-template-columns: 1fr; }
  .hero { padding-top: 42px; }
  .links { grid-template-columns: 1fr; }
  .app-card { min-height: 340px; }
}
