*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #0a0d12;
  --bg-card: rgba(255, 255, 255, 0.05);
  --border: rgba(255, 255, 255, 0.09);
  --text: #f2efe8;
  --muted: rgba(242, 239, 232, 0.55);
  --accent: #e8a87c;
  --accent-2: #5eead4;
  --github: #f0f6fc;
  --paypal: #0070ba;
  --font-display: "Fraunces", Georgia, serif;
  --font-ui: "Outfit", system-ui, sans-serif;
  --radius: 1rem;
}

html { -webkit-font-smoothing: antialiased; scroll-behavior: smooth; }

body {
  font-family: var(--font-ui);
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
  min-height: 100dvh;
}

.bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 100% 60% at 50% -10%, #1e2a3d 0%, var(--bg) 50%);
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.4;
}

.orb--1 {
  width: 40vw;
  height: 40vw;
  max-width: 480px;
  max-height: 480px;
  background: #3d2a4f;
  top: -5%;
  left: -10%;
}

.orb--2 {
  width: 35vw;
  height: 35vw;
  max-width: 400px;
  max-height: 400px;
  background: #1a4a42;
  bottom: 10%;
  right: -5%;
}

.shell {
  position: relative;
  z-index: 1;
  max-width: 72rem;
  margin: 0 auto;
  padding: 2rem 1.25rem 4rem;
}

/* Games launch banner */
.games-banner {
  margin-bottom: 2rem;
  padding: 1.25rem 1.35rem;
  border-radius: var(--radius);
  border: 1px solid color-mix(in srgb, var(--accent-2) 35%, var(--border));
  background: linear-gradient(
    135deg,
    color-mix(in srgb, var(--accent) 12%, transparent),
    color-mix(in srgb, var(--accent-2) 8%, transparent)
  );
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25);
}

.games-banner-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
}

.games-banner-badge {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: var(--accent-2);
  color: var(--bg);
}

.games-banner-copy {
  flex: 1 1 16rem;
}

.games-banner-copy h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin-bottom: 0.35rem;
}

.games-banner-copy p {
  font-size: 0.92rem;
  color: var(--muted);
  max-width: 36rem;
}

.games-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.games-banner--apps {
  border-color: color-mix(in srgb, var(--accent) 35%, var(--border));
  background: linear-gradient(
    135deg,
    color-mix(in srgb, var(--accent) 10%, transparent),
    color-mix(in srgb, #6c5ce7 12%, transparent)
  );
}

/* Header */
.top-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--text);
}

.brand-mark {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.55rem;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--bg);
}

.brand-text { font-weight: 600; font-size: 0.95rem; }

.top-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 1rem;
  font-family: var(--font-ui);
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 999px;
  border: 1px solid var(--border);
  transition: transform 0.15s ease, opacity 0.15s ease;
}

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

.btn--github {
  color: var(--github);
  background: rgba(255, 255, 255, 0.06);
}

.btn--github:hover { background: rgba(255, 255, 255, 0.1); }

.btn--paypal {
  color: #fff;
  background: linear-gradient(135deg, #0070ba, #003087);
  border-color: transparent;
}

.btn--paypal:hover { opacity: 0.92; }

.btn--buy {
  color: var(--bg);
  background: linear-gradient(135deg, var(--accent), #d4956a);
  border-color: transparent;
  font-weight: 600;
  box-shadow: 0 4px 24px rgba(232, 168, 124, 0.35);
}

.btn--buy:hover {
  opacity: 0.95;
  box-shadow: 0 6px 28px rgba(232, 168, 124, 0.45);
}

.btn--lg {
  padding: 0.85rem 1.5rem;
  font-size: 1rem;
}

.btn--sm {
  padding: 0.45rem 0.75rem;
  font-size: 0.8rem;
}

/* Hero */
.hero {
  text-align: center;
  margin-bottom: 2.5rem;
}

.hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 7vw, 3.5rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 0.75rem;
}

.hero-lead {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 36rem;
  margin: 0 auto 1.5rem;
}

.progress-wrap {
  max-width: 22rem;
  margin: 0 auto 1.25rem;
}

.progress-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 0.4rem;
}

.progress-bar {
  height: 0.5rem;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  width: 2.2%;
  background: linear-gradient(90deg, #818cf8, var(--accent-2));
  border-radius: 999px;
  transition: width 0.4s ease;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.progress-wrap--hero {
  max-width: 28rem;
}

.progress-note {
  margin-top: 0.5rem;
  font-size: 0.75rem;
  color: var(--muted);
}

.progress-bar[style*="--progress-pct"] .progress-fill,
.progress-fill {
  width: var(--progress-pct, 2.2%);
}

/* About */
.about-panel {
  margin-bottom: 2rem;
  padding: 1.5rem 1.35rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-card);
  backdrop-filter: blur(12px);
}

.about-text {
  font-size: 1rem;
  max-width: 40rem;
  margin: 0 auto 0.65rem;
  text-align: center;
}

.about-text--muted {
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 0;
}

/* Newsletter */
.newsletter-panel {
  margin-bottom: 2rem;
}

.newsletter-inner {
  padding: 1.5rem 1.35rem;
  border-radius: var(--radius);
  border: 1px solid color-mix(in srgb, var(--accent-2) 30%, var(--border));
  background: linear-gradient(
    135deg,
    color-mix(in srgb, #6366f1 14%, transparent),
    color-mix(in srgb, var(--accent-2) 10%, transparent)
  );
  text-align: center;
}

.newsletter-form {
  max-width: 26rem;
  margin: 1rem auto 0;
  text-align: left;
}

.newsletter-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 0.35rem;
}

.newsletter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.newsletter-input {
  flex: 1 1 12rem;
  min-width: 0;
  padding: 0.65rem 0.85rem;
  font: inherit;
  color: var(--text);
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid var(--border);
  border-radius: 0.5rem;
}

.newsletter-input:focus {
  outline: 2px solid color-mix(in srgb, var(--accent-2) 50%, transparent);
  outline-offset: 2px;
}

.newsletter-fine {
  margin-top: 0.5rem;
  font-size: 0.8rem;
  color: var(--muted);
  min-height: 1.25rem;
}

.newsletter-fine.is-success {
  color: var(--accent-2);
}

/* Primary CTA */
.btn--primary {
  color: var(--bg);
  background: linear-gradient(135deg, #818cf8, #6366f1);
  border-color: transparent;
  font-weight: 600;
  box-shadow: 0 4px 20px rgba(99, 102, 241, 0.35);
}

.btn--primary:hover {
  opacity: 0.95;
  box-shadow: 0 6px 24px rgba(99, 102, 241, 0.45);
}

/* Site footer */
.site-footer {
  text-align: center;
  padding-top: 2rem;
  margin-top: 2rem;
  border-top: 1px solid var(--border);
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.75rem;
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  transition: border-color 0.15s, background 0.15s;
}

.footer-social-link:hover {
  border-color: color-mix(in srgb, var(--accent-2) 45%, var(--border));
  background: rgba(255, 255, 255, 0.08);
}

.footer-brand {
  font-weight: 600;
  margin-bottom: 0.35rem;
}

/* Featured strip */
.featured {
  margin-bottom: 2rem;
}

.featured-head {
  margin-bottom: 0.85rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.section-lead {
  font-size: 0.88rem;
  color: var(--muted);
}

.inline-cta {
  color: var(--accent-2);
  font-weight: 600;
  text-decoration: none;
}

.inline-cta:hover {
  text-decoration: underline;
}

.featured-scroll {
  display: flex;
  gap: 0.75rem;
  overflow-x: auto;
  padding-bottom: 0.35rem;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
}

.featured-scroll .card {
  flex: 0 0 min(18rem, 85vw);
  scroll-snap-align: start;
}

.card--compact h2 {
  font-size: 1.05rem;
}

.card--compact p {
  font-size: 0.8rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Search + filters */
.toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 1.25rem;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.filter {
  padding: 0.4rem 0.75rem;
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 999px;
  cursor: pointer;
  transition: color 0.15s, border-color 0.15s, background 0.15s;
}

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

.filter.is-active {
  color: var(--bg);
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  border-color: transparent;
}

.sort-wrap {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.sort-label {
  font-size: 0.78rem;
  color: var(--muted);
}

.sort-select {
  padding: 0.4rem 0.65rem;
  font-family: var(--font-ui);
  font-size: 0.78rem;
  color: var(--text);
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  cursor: pointer;
}

.sort-select:focus {
  outline: none;
  border-color: var(--accent);
}

.search {
  flex: 1 1 14rem;
  padding: 0.7rem 1rem;
  font-family: var(--font-ui);
  font-size: 0.95rem;
  color: var(--text);
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid var(--border);
  border-radius: 999px;
  outline: none;
}

.search:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(232, 168, 124, 0.2);
}

.search::placeholder { color: var(--muted); }

.count-pill {
  font-size: 0.8rem;
  color: var(--muted);
  padding: 0.4rem 0.85rem;
  border: 1px solid var(--border);
  border-radius: 999px;
}

/* Grid */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(16rem, 1fr));
  gap: 0.85rem;
}

.card {
  display: flex;
  flex-direction: column;
  padding: 1.1rem 1.15rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.card:hover {
  border-color: rgba(232, 168, 124, 0.45);
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(-2px);
}

.card.is-hidden { display: none; }

.card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.card-num {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--accent);
}

.badge {
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.2rem 0.5rem;
  border-radius: 0.35rem;
  background: rgba(94, 234, 212, 0.15);
  color: var(--accent-2);
  white-space: nowrap;
}

.badge--next { background: rgba(255, 255, 255, 0.08); color: var(--muted); }

.card h2 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.card p {
  font-size: 0.85rem;
  color: var(--muted);
  flex: 1;
}

.card-foot {
  margin-top: 0.75rem;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--accent-2);
}

/* Monetization */
.section-head {
  margin-bottom: 1rem;
}

.sponsors {
  margin-top: 2.5rem;
}

.sponsor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(14rem, 1fr));
  gap: 0.75rem;
}

.sponsor-card {
  display: flex;
  flex-direction: column;
  padding: 1.1rem;
  background: var(--bg-card);
  border: 1px dashed var(--border);
  border-radius: var(--radius);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s, transform 0.2s;
}

.sponsor-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}

.sponsor-card--open {
  border-style: dashed;
  opacity: 0.92;
}

.sponsor-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.35rem;
}

.sponsor-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
}

.sponsor-card p {
  font-size: 0.82rem;
  color: var(--muted);
  flex: 1;
}

.sponsor-cta {
  margin-top: 0.75rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent-2);
}

.trust-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1.25rem;
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
  font-size: 0.88rem;
  color: var(--muted);
}

.trust-bar--hero {
  margin-top: 0.5rem;
}

.trust-num {
  font-weight: 700;
  color: var(--accent);
}

.pricing {
  margin-top: 2.5rem;
}

.pricing--primary {
  margin-top: 2rem;
  padding: 2rem 1.5rem;
  background: linear-gradient(165deg, rgba(232, 168, 124, 0.12) 0%, var(--bg-card) 45%);
  border: 1px solid rgba(232, 168, 124, 0.35);
  border-radius: calc(var(--radius) + 0.25rem);
}

.pricing-hero {
  text-align: center;
  margin-bottom: 1.75rem;
}

.pricing-eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 0.5rem;
}

.pricing-lead {
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

.pricing-jump-cta {
  margin-top: 0.5rem;
}

.price-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.55rem;
  margin-bottom: 0.5rem;
  border-radius: 0.35rem;
  background: rgba(232, 168, 124, 0.25);
  color: var(--accent);
}

.price-actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: auto;
}

.price-cta,
.price-cta-secondary {
  width: 100%;
  justify-content: center;
  text-align: center;
}

.lead-capture {
  margin-top: 2rem;
  padding: 1.5rem;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.lead-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: 0.35rem;
}

.lead-sub {
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 1rem;
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  text-align: left;
}

.lead-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.lead-label {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--muted);
}

.lead-input {
  padding: 0.65rem 0.85rem;
  font-family: var(--font-ui);
  font-size: 0.95rem;
  color: var(--text);
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border);
  border-radius: 0.55rem;
}

.lead-input:focus {
  outline: none;
  border-color: var(--accent);
}

.lead-textarea {
  resize: vertical;
  min-height: 4.5rem;
}

.lead-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.25rem;
}

.lead-fine {
  margin-top: 0.85rem;
  font-size: 0.78rem;
  color: var(--muted);
  text-align: center;
}

.lead-fine a {
  color: var(--accent-2);
}

.pricing-proof {
  margin-top: 1.25rem;
  font-size: 0.85rem;
  color: var(--muted);
  text-align: center;
}

.pricing-proof a {
  color: var(--accent-2);
}

.support--compact {
  padding: 1.5rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(15rem, 1fr));
  gap: 0.85rem;
}

.price-card {
  display: flex;
  flex-direction: column;
  padding: 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.price-card--highlight {
  border-color: rgba(232, 168, 124, 0.55);
  box-shadow: 0 0 0 1px rgba(232, 168, 124, 0.2);
}

.price-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: 0.35rem;
}

.price {
  margin-bottom: 0.85rem;
}

.price-amount {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--accent);
}

.price-period {
  font-size: 0.8rem;
  color: var(--muted);
}

.price-features {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
  flex: 1;
}

.price-features li {
  font-size: 0.82rem;
  color: var(--muted);
  padding: 0.3rem 0;
  border-bottom: 1px solid var(--border);
}

.price-features li:last-child {
  border-bottom: none;
}

.price-cta {
  width: 100%;
  justify-content: center;
  text-align: center;
}

.pricing-note {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--muted);
  text-align: center;
}

.pricing-note a {
  color: var(--accent-2);
}

/* Support band */
.support {
  margin-top: 2.5rem;
  padding: 2rem;
  text-align: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.support .section-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 0.35rem;
}

.support .section-lead {
  color: var(--muted);
  font-size: 0.95rem;
  max-width: 28rem;
  margin: 0 auto 1.25rem;
}

.tip-tiers {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.tip-tier {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  border-radius: 999px;
  text-decoration: none;
  transition: background 0.15s, border-color 0.15s;
}

.tip-tier:hover {
  border-color: var(--accent);
  background: rgba(232, 168, 124, 0.12);
}

.tip-tier--custom {
  color: var(--accent-2);
}

.support-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.btn--ghost {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.footer {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  text-align: center;
  font-size: 0.8rem;
  color: var(--muted);
}

.footer-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
  margin-bottom: 1rem;
}

.footer-trust {
  font-size: 0.82rem;
  color: var(--accent);
  margin-bottom: 0.75rem;
  font-weight: 500;
}

.footer-meta a {
  color: var(--muted);
  text-decoration: none;
}

.footer-meta a:hover {
  color: var(--accent-2);
}

.sticky-cta {
  position: fixed;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 50;
  padding: 0.7rem 1.25rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--bg);
  text-decoration: none;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  border-radius: 999px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
  white-space: nowrap;
}

.sticky-cta:hover {
  opacity: 0.95;
}

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

@media (max-width: 640px) {
  .lead-row { grid-template-columns: 1fr; }
  .top-actions { width: 100%; }
  .top-actions .btn--buy { flex: 1; justify-content: center; }
  .newsletter-row { flex-direction: column; }
  .newsletter-row .btn { width: 100%; justify-content: center; }
  .hero-cta .btn { flex: 1 1 auto; min-width: 10rem; }
}

@media (max-width: 480px) {
  .top-bar { flex-direction: column; align-items: stretch; }
  .shell { padding-bottom: 5rem; }
}

@media (prefers-reduced-motion: reduce) {
  .card, .btn { transition: none; }
  html { scroll-behavior: auto; }
}
