:root {
  --bg-1: #bbdefb;
  --bg-2: #e3f2fd;
  --bg-3: #eaf7ff;
  --card: #ffffff;
  --ink: #111827;
  --muted: #374151;
  --primary: #2563eb;
  --surface: rgba(255, 255, 255, 0.9);
  --shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  --radius: 12px;
  --maxw: 840px;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial,
    "Apple Color Emoji", "Segoe UI Emoji";
  color: var(--ink);
  background: linear-gradient(
    160deg,
    var(--bg-1) 0%,
    var(--bg-2) 50%,
    var(--bg-3) 100%
  );
  background-attachment: fixed;
}

.hero-banner {
  display: block;
  max-width: var(--maxw);
  width: calc(100% - 32px);
  margin: 24px auto 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  object-fit: cover;
}

.card {
  max-width: var(--maxw);
  margin: 24px auto 24px;
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 40px 32px 16px;
}

.title {
  margin: 0 0 12px;
  text-align: center;
  font-weight: 700;
  font-size: 24px;
  letter-spacing: 0.2px;
}

.subtitle {
  margin: 0 0 28px;
  text-align: center;
  color: var(--muted);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.45;
}

.hero-icon {
  display: block;
  width: 120px;
  height: 120px;
  margin: 12px auto 16px;
  object-fit: contain;
  border-radius: 24px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
  background: #f8fafc;
}

.badges,
.uneed {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.badges {
  margin: 24px 0 28px;
  gap: 16px;
  background: transparent;
  box-shadow: none;
}

.badge {
  display: inline-flex;
  width: 240px;
  height: 75px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 8px;
  background: #f1f5f9;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
  cursor: pointer;
  transform: scale(1);
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}

.badge img {
  display: block;
  width: 100%;
  height: auto;
}


.badge:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
}

.badge:first-child img {
  transform: scale(0.92); /* slightly reduce Apple */
}

.uneed {
  margin: 0 0 48px;
  text-align: center;
}

.uneed a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 320px;
  max-width: 80%;
}

.uneed img {
  display: block;
  width: 100%;
  height: auto;
}

.body {
  border-top: 1px solid rgba(0,0,0,0.05);
  padding-top: 20px;
  margin: 28px 0 16px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.body li {
  margin-bottom: 10px;
}

.links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 20px;
  font-size: 16px;
}

.link-btn {
  padding: 10px 14px;
  border-radius: 8px;
  color: white;
  background: var(--primary);
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.25);
  transition: transform 0.06s ease, box-shadow 0.12s ease;
}

.link-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(37, 99, 235, 0.28);
}

.link-ghost {
  padding: 8px 10px;
  border-radius: 8px;
  color: var(--primary);
  background: rgba(37, 99, 235, 0.08);
  text-decoration: none;
}

@media (max-width: 560px) {
  .card {
    margin: 16px;
    padding: 24px 18px;
  }

  .hero-banner {
    width: calc(100% - 24px);
    margin-top: 16px;
  }

  .hero-icon {
    width: 96px;
    height: 96px;
  }

  .badge {
    width: 150px;
    height: 48px;
  }

  .uneed {
    margin: 20px 0 32px;
  }
}

.lang-switch {
  max-width: var(--maxw);
  margin: 12px auto 0;
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  width: calc(100% - 32px);
}

.lang-switch button {
  background: rgba(255, 255, 255, 0.7);
  border: none;
  padding: 6px 10px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 12px;
  color: var(--ink);
  transition: background 0.15s ease;
}

.lang-switch button:hover {
  background: rgba(255, 255, 255, 1);
}

.lang-switch button.active {
  background: var(--primary);
  color: white;
}

.badges-social {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 7px;
  flex-wrap: wrap;
  margin: 64px 0 0;
  padding-right: 16px;
}

.social-label {
  font-family: "Inter";
  font-size: 18px;
  /* color: #64748b; */
  /* margin-right: 4px; */
  white-space: nowrap;
}

.badge-facebook,
.badge-substack {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: transparent;
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.12s ease,
    background 0.12s ease;
}

.badge-facebook:hover,
.badge-substack:hover {
  transform: translateY(-2px);
  background: transparent;
}

.badge-facebook img,
.badge-substack img {
  display: block;
  max-width: 26px;
  max-height: 26px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.tinylaunch {
  display: flex;
  justify-content: center;
  margin: 12px 0 24px;
}

.tinylaunch img {
  display: block;
}

.featured-badges {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px; /* space between badges */
  margin: 16px 0 24px;
}

.featured-badges img {
  height: 64px;     /* 👈 controls visual size */
  width: auto;
  object-fit: contain;
  display: block;
}

/* .screens {
  max-width: var(--maxw);
  margin: 32px auto 64px;
  text-align: center;
}

.screens h2 {
  margin-bottom: 20px;
  font-size: 22px;
}

.screens-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding: 8px 16px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.screens-track img {
  height: 420px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  flex-shrink: 0;
  scroll-snap-align: center;
}

.screens-track::-webkit-scrollbar {
  display: none;
} */