:root {
  --bg: #000000;
  --surface: #1c1c1e;
  --surface-soft: #2c2c2e;
  --text: #f5f5f7;
  --muted: #98989f;
  --accent: #0a84ff;
  --accent-strong: #409cff;
  --border: #38383a;
  --radius-lg: 20px;
  --radius-md: 14px;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: -apple-system, "SF Pro Display", "Helvetica Neue", sans-serif;
  color: var(--text);
  background: radial-gradient(circle at top right, #0d1f3c, transparent 45%), var(--bg);
  line-height: 1.5;
}

.hero {
  max-width: 1080px;
  margin: 28px auto 0;
  padding: 44px 24px;
}

.hero__badge {
  display: inline-block;
  background: linear-gradient(135deg, #BF40A6, #2626D9);
  color: #fff;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

h1 {
  font-size: clamp(2rem, 3.5vw, 3.5rem);
  line-height: 1.1;
  margin: 14px 0;
  max-width: 14ch;
}

.hero p {
  max-width: 60ch;
  color: var(--muted);
  margin-bottom: 22px;
}

.hero__cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  border-radius: 999px;
  padding: 10px 16px;
  text-decoration: none;
  font-weight: 700;
  transition: transform 120ms ease, opacity 120ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn--primary {
  color: #fff;
  background: linear-gradient(135deg, var(--accent), #409cff);
}

.btn--secondary {
  color: var(--accent-strong);
  border: 1px solid #2c4a7c;
  background: var(--surface);
}

.section {
  max-width: 1080px;
  margin: 0 auto;
  padding: 10px 24px 28px;
}

.section h2 {
  font-size: 1.7rem;
  margin-bottom: 14px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  align-items: start;
}

.feature {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.card {
  background: #21292b;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 18px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.card figure {
  margin: 14px -18px -18px;
  border-radius: 0;
  overflow: hidden;
  outline: none;
  border: none;
  background: none;
  box-shadow: none;
}

.card figure img {
  width: 75%;
  max-width: 240px;
  display: block;
  margin: 0 auto;
}

.card h3 {
  margin-top: 0;
  margin-bottom: 8px;
}

.card p {
  margin: 0;
  color: var(--muted);
}

.shot-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

figure {
  margin: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  overflow: hidden;
}

figure img {
  width: 100%;
  display: block;
}

figcaption {
  text-align: center;
  padding: 10px;
  color: var(--muted);
  font-size: 0.95rem;
}

.privacy {
  background: #21292b;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 18px 24px;
  margin-top: 16px;
  margin-bottom: 34px;
  box-shadow: var(--shadow);
}

.privacy h3 {
  margin-bottom: 6px;
}

.privacy p {
  margin-top: 0;
  color: var(--muted);
}

.footer {
  border-top: 1px solid var(--border);
  padding: 20px 24px 28px;
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
}

.footer a {
  color: var(--accent-strong);
  text-decoration: none;
}

.privacy a {
  color: var(--accent-strong);
  text-decoration: none;
}

@media (max-width: 920px) {
  .card-grid,
  .shot-grid,
  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .hero {
    margin-top: 8px;
    padding-top: 30px;
  }

  .card-grid,
  .shot-grid,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .footer {
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
  }
}
