:root {
  --bg: #0b0e14;
  --card: rgba(255, 255, 255, 0.06);
  --card2: rgba(255, 255, 255, 0.08);
  --text: rgba(255, 255, 255, 0.92);
  --muted: rgba(255, 255, 255, 0.68);
  --line: rgba(255, 255, 255, 0.14);

  --radius: 18px;
  --shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
}

.container {
  width: min(1060px, calc(100% - 40px));
  margin: 0 auto;
}

.bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}

.blob {
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 999px;
  filter: blur(42px);
  opacity: 0.55;
}

.b1 {
  left: -140px;
  top: -120px;
  background: radial-gradient(circle at 30% 30%, #4dd7ff, transparent 55%),
    radial-gradient(circle at 70% 70%, #7c5cff, transparent 55%);
}

.b2 {
  right: -180px;
  bottom: -160px;
  background: radial-gradient(circle at 30% 30%, #ffcc4d, transparent 55%),
    radial-gradient(circle at 70% 70%, #ff4d8d, transparent 55%);
}

.grain {
  position: absolute;
  inset: 0;
  opacity: 0.08;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
}

.header {
  padding: 28px 0 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brandMark {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(77, 215, 255, 0.9), rgba(255, 204, 77, 0.9));
  box-shadow: var(--shadow);
}

.brandTitle {
  font-weight: 700;
  letter-spacing: -0.02em;
}

.brandSubtitle {
  margin-top: 2px;
  color: var(--muted);
  font-size: 13px;
}

.nav {
  display: flex;
  gap: 14px;
}

.navLink {
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
  padding: 10px 12px;
  border-radius: 12px;
  transition: background 160ms ease, color 160ms ease;
}

.navLink:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
}

.hero {
  padding: 34px 0 18px;
}

.heroTitle {
  margin: 0;
  font-size: clamp(30px, 3.4vw, 46px);
  letter-spacing: -0.03em;
}

.heroText {
  margin: 12px 0 0;
  max-width: 720px;
  color: var(--muted);
  line-height: 1.6;
}

.apps {
  padding: 18px 0 54px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.appCard {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, var(--card), rgba(255, 255, 255, 0.03));
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
}

.appTop {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.appIdentity {
  display: flex;
  gap: 14px;
  align-items: center;
}

.appLogo {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  object-fit: cover;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.appName {
  font-weight: 700;
  letter-spacing: -0.02em;
  font-size: 18px;
}

.appMeta {
  margin-top: 3px;
  color: var(--muted);
  font-size: 13px;
}

.appDesc {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.6;
}

.chips {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.82);
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
}

.storeRow {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.storeLabel {
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.storeButton {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: linear-gradient(180deg, var(--card2), rgba(255, 255, 255, 0.05));
  text-decoration: none;
  color: var(--text);
  transition: transform 120ms ease, background 160ms ease, border-color 160ms ease;
}

.storeButton:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.26);
}

.storeIcon {
  width: 22px;
  height: 22px;
  display: block;
}

.storeText {
  font-weight: 600;
  font-size: 14px;
}

.footer {
  padding: 22px 0 28px;
}

.footerLine {
  height: 1px;
  background: rgba(255, 255, 255, 0.14);
  margin-bottom: 14px;
}

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