/* Swipe: Flags app page components */

.swipe-flags-page {
  padding-bottom: 96px;
  overflow-x: hidden;
}

.swipe-flags-hero {
  display: block;
  max-width: 760px;
  padding: 72px 0 64px;
}

.swipe-flags-hero-copy {
  max-width: none;
}

.swipe-flags-page .section-header,
.swipe-flags-page .feature-list {
  min-width: 0;
}

.swipe-flags-hero h1 {
  margin: 18px 0 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 24px 0 26px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 800;
  transition: transform 0.18s ease, opacity 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

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

.button-primary {
  background: var(--accent);
  color: #fff;
}

.button-secondary {
  border-color: var(--border);
  background: rgba(255,255,255,.045);
  color: var(--text);
}

.button-secondary:hover {
  border-color: rgba(255,255,255,.18);
}

.platform-badges,
.language-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.platform-badges li,
.language-badges li,
.status-badge {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255,255,255,.055);
  color: var(--muted);
  font-size: .9rem;
  font-weight: 700;
}

.status-badge {
  min-height: 48px;
  padding: 0 22px;
  color: var(--text);
}

.language-panel {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.privacy-panel {
  margin-top: 28px;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255,255,255,.045);
}

.privacy-panel p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.65;
}

.feature-list {
  margin: 24px 0 0;
  padding-left: 1.2rem;
  color: var(--muted);
  line-height: 1.75;
}

.feature-list li + li {
  margin-top: 10px;
}

.feature-list strong {
  color: var(--text);
}

@media (max-width: 980px) {
  .swipe-flags-hero {
    min-height: auto;
    padding: 42px 0 48px;
  }

  .swipe-flags-hero-copy {
    max-width: none;
  }

  .swipe-flags-page .section-header,
  .swipe-flags-page .section-copy {
    max-width: none;
  }

}

@media (max-width: 560px) {
  .swipe-flags-page h1 {
    font-size: clamp(2.8rem, 12vw, 3.2rem);
    letter-spacing: -.055em;
  }
}
