﻿:root {
  --bg: #061018;
  --bg-2: #0a1b27;
  --ink: #ecf8ff;
  --ink-soft: #9db6c5;
  --line: rgba(143, 207, 230, 0.28);
  --accent: #1eb8d1;
  --card: rgba(9, 28, 40, 0.72);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 12%, rgba(30, 184, 209, 0.25) 0, transparent 34%),
    radial-gradient(circle at 88% 0%, rgba(104, 64, 255, 0.2) 0, transparent 30%),
    linear-gradient(145deg, var(--bg) 0%, var(--bg-2) 100%);
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 2;
  backdrop-filter: blur(8px);
  background: rgba(3, 13, 20, 0.74);
  border-bottom: 1px solid rgba(143, 207, 230, 0.18);
}

.topbar-brand {
  max-width: 1120px;
  margin: 0 auto;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 11px;
}

.logo-badge {
  width: 30px;
  height: 30px;
  border-radius: 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-family: "Anybody", sans-serif;
  color: #002530;
  background: linear-gradient(135deg, #52d7ec 0%, #1eb8d1 100%);
  box-shadow: 0 5px 16px rgba(30, 184, 209, 0.35);
}

.brand-title,
.brand-subtitle {
  margin: 0;
}

.brand-title {
  font-weight: 700;
  line-height: 1;
}

.brand-subtitle {
  margin-top: 2px;
  color: var(--ink-soft);
  font-size: 0.74rem;
}

.shell {
  max-width: 1120px;
  margin: 0 auto;
  padding: 42px 18px 64px;
}

.hero {
  margin-bottom: 28px;
}

.eyebrow {
  margin: 0;
  font-size: 0.77rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
}

h1 {
  margin: 10px 0 0;
  font-family: "Anybody", sans-serif;
  font-size: clamp(2rem, 5.3vw, 3.3rem);
  line-height: 1.02;
}

.subtitle {
  margin: 14px 0 0;
  max-width: 700px;
  color: var(--ink-soft);
}

.subtitle code {
  border: 1px solid var(--line);
  color: var(--ink);
  border-radius: 7px;
  padding: 2px 6px;
  background: rgba(255, 255, 255, 0.03);
}

.grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.card {
  border-radius: 16px;
  border: 1px solid var(--line);
  background: var(--card);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 10px 35px rgba(0, 0, 0, 0.28);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-height: 318px;
}

.shot-wrap {
  margin: 0;
  height: 168px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(143, 207, 230, 0.2);
  background: linear-gradient(140deg, rgba(29, 81, 111, 0.65), rgba(14, 29, 43, 0.95));
}

.shot {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.shot-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(to top, rgba(2, 12, 20, 0.42), rgba(2, 12, 20, 0.05) 50%, transparent),
    linear-gradient(to right, rgba(30, 184, 209, 0.14), transparent 42%);
}

.card-head,
.description,
.open-app {
  margin-left: 18px;
  margin-right: 18px;
}

.card-head {
  margin-top: 14px;
}

.title {
  margin: 0;
  font-size: 1.05rem;
  font-family: "Anybody", sans-serif;
}

.description {
  margin-top: 10px;
  margin-bottom: 14px;
  line-height: 1.45;
  color: var(--ink-soft);
  flex: 1;
}

.open-app {
  text-decoration: none;
  text-align: center;
  border-radius: 10px;
  padding: 11px 12px;
  margin-bottom: 18px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #ffffff;
  background: linear-gradient(135deg, #42d3ea 0%, #1eb8d1 100%);
  border: 1px solid rgba(66, 211, 234, 0.85);
  box-shadow: 0 8px 24px rgba(30, 184, 209, 0.35);
  transition: transform 120ms ease, filter 120ms ease;
}

.open-app:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
}

@media (max-width: 680px) {
  .shell {
    padding-top: 26px;
  }

  .card {
    min-height: 0;
  }

  .shot-wrap {
    height: 150px;
  }
}
