:root {
  --black: #000000;
  --ink: #11131a;
  --deep: #151923;
  --slate: #527299;
  --gold: #e5c583;
  --champagne: #c8a261;
  --cyan: #9ce5e7;
  --mint: #7cd2d7;
  --periwinkle: #b4c6ec;
  --violet-blue: #9fb3e2;
  --lavender: #d2d6e5;
  --pearl: #f7f9ff;
  --white: #ffffff;
  --glow-blue: #cbe3f3;
  --text: #151823;
  --muted: #657086;
  --line: rgba(82, 114, 153, 0.18);
  --glass: rgba(255, 255, 255, 0.62);
  --dark-glass: rgba(6, 9, 16, 0.68);
  --shadow: 0 24px 80px rgba(38, 52, 82, 0.16);
  --dark-shadow: 0 26px 80px rgba(0, 0, 0, 0.34);
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 14% 4%, rgba(156, 229, 231, 0.52), transparent 26rem),
    radial-gradient(circle at 86% 10%, rgba(229, 197, 131, 0.55), transparent 24rem),
    linear-gradient(145deg, #f9fbff 0%, #eef4ff 45%, #fbf7ee 100%);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  min-height: 100vh;
  overflow-x: hidden;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(229, 197, 131, 0.8);
  outline-offset: 4px;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.site-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: -1;
}

.glow {
  position: absolute;
  width: 34rem;
  height: 34rem;
  border-radius: 50%;
  filter: blur(22px);
  opacity: 0.55;
}

.glow-gold {
  right: -12rem;
  top: -8rem;
  background: radial-gradient(circle, rgba(229, 197, 131, 0.72), transparent 65%);
}

.glow-cyan {
  left: -14rem;
  top: 18rem;
  background: radial-gradient(circle, rgba(156, 229, 231, 0.64), transparent 64%);
}

.glow-blue {
  right: 12rem;
  bottom: -18rem;
  background: radial-gradient(circle, rgba(180, 198, 236, 0.72), transparent 68%);
}

.noise {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.28) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.22) 1px, transparent 1px);
  background-size: 44px 44px;
}

.section-wrap {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}

.nav-shell {
  position: sticky;
  top: max(16px, env(safe-area-inset-top));
  z-index: 20;
  width: min(1120px, calc(100% - 48px));
  margin: 16px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 12px 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: 0;
}

.brand img {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12);
  object-fit: cover;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 12px;
  font-weight: 800;
  padding: 5px;
  border-radius: 999px;
  background: rgba(5, 7, 11, 0.86);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.nav-links a {
  padding: 9px 11px;
  border-radius: 999px;
  white-space: nowrap;
  transition:
    color 180ms ease,
    background 180ms ease;
}

.nav-links a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
}

.nav-cta,
.button {
  gap: 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 900;
  border: 1px solid transparent;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.nav-cta {
  flex: 0 0 auto;
}

.nav-cta {
  color: var(--black);
  background: linear-gradient(135deg, var(--gold), var(--cyan));
  box-shadow: 0 14px 34px rgba(200, 162, 97, 0.24);
}

.button:hover,
.nav-cta:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--black);
  background: linear-gradient(135deg, var(--gold), var(--champagne), var(--cyan));
  box-shadow: 0 18px 42px rgba(200, 162, 97, 0.28);
}

.button-secondary {
  color: var(--slate);
  background: rgba(255, 255, 255, 0.7);
  border-color: rgba(82, 114, 153, 0.22);
}

.button-store {
  color: var(--white);
  background: linear-gradient(135deg, #05070b, #253957);
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
}

.button-store.light {
  color: var(--black);
  background: rgba(255, 255, 255, 0.78);
  border-color: rgba(82, 114, 153, 0.18);
}

.store-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin: -10px 0 30px;
}

.store-row.center {
  justify-content: center;
  margin: 22px 0 0;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  min-width: 178px;
  min-height: 58px;
  padding: 9px 16px 9px 13px;
  border-radius: 16px;
  color: var(--white);
  background: #05070b;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.store-badge:hover {
  transform: translateY(-2px);
  border-color: rgba(229, 197, 131, 0.5);
  box-shadow: 0 24px 52px rgba(0, 0, 0, 0.24);
}

.store-badge.apple {
  background: linear-gradient(135deg, #05070b, #151923);
}

.store-badge.google {
  background: linear-gradient(135deg, #05070b, #182438);
}

.store-badge span {
  display: grid;
  gap: 2px;
  line-height: 1;
}

.store-badge small {
  color: rgba(255, 255, 255, 0.74);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.store-badge strong {
  color: var(--white);
  font-size: 19px;
  font-weight: 900;
  letter-spacing: 0;
}

.store-badge.compact {
  min-width: 150px;
  min-height: 50px;
  padding: 8px 12px;
  border-radius: 14px;
}

.store-badge.compact strong {
  font-size: 15px;
}

.store-badge.compact small {
  font-size: 8px;
}

.store-mark {
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  border-radius: 6px;
}

.button-dark {
  color: var(--white);
  background: linear-gradient(135deg, #11151f, #293e61);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.2);
}

.menu-button {
  display: none;
}

.hero {
  min-height: calc(100vh - 86px);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 52px;
  align-items: center;
  padding: 60px 0 80px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--slate);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.pulse-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 8px rgba(124, 210, 215, 0.22);
}

.hero-logo-lockup {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
  padding: 10px 16px 10px 10px;
  border: 1px solid rgba(255, 255, 255, 0.66);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.64);
  box-shadow: 0 18px 44px rgba(38, 52, 82, 0.12);
  backdrop-filter: blur(18px);
}

.hero-logo-lockup img {
  width: 72px;
  height: 72px;
  border-radius: 22px;
  object-fit: cover;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.14);
}

.hero-logo-lockup span {
  display: block;
  color: var(--black);
  font-size: 24px;
  font-weight: 950;
  line-height: 1;
}

.hero-logo-lockup strong {
  display: block;
  margin-top: 5px;
  color: var(--slate);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 700px;
  margin-bottom: 24px;
  color: var(--black);
  font-size: clamp(52px, 7vw, 88px);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  color: var(--black);
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 24px;
  line-height: 1.1;
}

.hero-lede,
.section-heading p,
.copy-block p,
.admin-callout p,
.final-cta p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.hero-lede {
  max-width: 620px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 32px 0 20px;
}

.hero-actions.center {
  justify-content: center;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 680px;
}

.hero-metrics div,
.glass-card,
.trust-strip,
.proof-step,
.floating-card,
.admin-callout,
.final-cta {
  border: 1px solid rgba(255, 255, 255, 0.58);
  background: var(--glass);
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
}

.hero-metrics div {
  min-height: 104px;
  padding: 18px;
  border-radius: 22px;
}

.hero-metrics strong {
  display: block;
  margin-bottom: 8px;
  color: var(--black);
}

.hero-metrics span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.hero-visual {
  min-height: 650px;
  display: grid;
  place-items: center;
  justify-self: end;
}

.phone-stage {
  position: relative;
  width: min(500px, 100%);
  min-height: 660px;
  perspective: 1100px;
}

.orbital-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(82, 114, 153, 0.18);
}

.ring-one {
  width: 456px;
  height: 456px;
  left: 16px;
  top: 98px;
}

.ring-two {
  width: 620px;
  height: 620px;
  left: -64px;
  top: 20px;
  border-color: rgba(229, 197, 131, 0.25);
}

.phone {
  position: relative;
  z-index: 2;
  width: 354px;
  margin: 12px auto 0;
  padding: 12px;
  border-radius: 52px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.28), transparent 28%),
    linear-gradient(155deg, #020307, #1d2b43 54%, #05070b);
  box-shadow:
    0 46px 110px rgba(18, 24, 40, 0.42),
    inset 0 0 0 1px rgba(255, 255, 255, 0.16),
    inset 0 -16px 28px rgba(0, 0, 0, 0.32);
  transform: rotateX(2deg) rotateY(-5deg) rotateZ(1deg);
}

.phone::before {
  position: absolute;
  inset: 10px;
  z-index: -1;
  border-radius: 46px;
  background: linear-gradient(135deg, rgba(229, 197, 131, 0.38), rgba(156, 229, 231, 0.3));
  filter: blur(18px);
  opacity: 0.46;
  content: "";
}

.phone-status {
  display: flex;
  position: relative;
  z-index: 4;
  align-items: center;
  justify-content: center;
  height: 34px;
  padding: 0 18px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  font-weight: 900;
}

.phone-status > span {
  margin-right: auto;
}

.phone-status div {
  display: inline-flex;
  align-items: end;
  gap: 4px;
}

.phone-status div span {
  display: block;
  width: 4px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.22);
}

.phone-status div span:nth-child(1) {
  height: 8px;
}

.phone-status div span:nth-child(2) {
  height: 12px;
}

.phone-status div span:nth-child(3) {
  width: 18px;
  height: 8px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.28);
}

.phone-notch {
  position: absolute;
  z-index: 5;
  top: 15px;
  left: 50%;
  width: 96px;
  height: 25px;
  border-radius: 0 0 18px 18px;
  background: #05070b;
  transform: translateX(-50%);
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.08);
}

.app-preview {
  position: relative;
  min-height: 576px;
  padding: 20px;
  border-radius: 40px;
  background:
    radial-gradient(circle at 92% 8%, rgba(156, 229, 231, 0.42), transparent 10rem),
    radial-gradient(circle at 8% 20%, rgba(229, 197, 131, 0.34), transparent 9rem),
    linear-gradient(180deg, #fbfdff 0%, #edf4ff 42%, #151b28 43%, #07090f 100%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  overflow: hidden;
}

.app-preview::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.26) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.18) 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: 0.22;
  content: "";
}

.app-preview > * {
  position: relative;
  z-index: 1;
}

.preview-header,
.panel-top,
.mission-row,
.rank-list div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.preview-header span,
.preview-header small,
.mission-row small,
.floating-card span,
.floating-card small,
.panel-top span,
.mission-tile span,
.mission-tile small,
.level-row small,
.stat-tiles span,
.rank-list span,
.share-preview small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.preview-header strong {
  display: block;
  margin-top: 4px;
  font-size: 25px;
  line-height: 1;
}

.rank-pill {
  padding: 9px 12px;
  border-radius: 999px;
  color: var(--black);
  background: linear-gradient(135deg, var(--gold), var(--cyan));
  font-size: 12px;
  font-weight: 900;
}

.season-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 16px;
}

.season-chip-row span {
  padding: 8px 10px;
  border-radius: 999px;
  color: #31415f;
  background: rgba(255, 255, 255, 0.64);
  border: 1px solid rgba(255, 255, 255, 0.54);
  font-size: 10px;
  font-weight: 950;
}

.level-hero-card {
  display: grid;
  grid-template-columns: 1fr 86px;
  gap: 16px;
  align-items: center;
  margin-top: 14px;
  padding: 18px;
  border-radius: 26px;
  color: var(--white);
  background:
    radial-gradient(circle at right, rgba(156, 229, 231, 0.24), transparent 10rem),
    linear-gradient(135deg, #121925, #263d5e);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 22px 42px rgba(16, 23, 36, 0.22);
}

.level-hero-card small {
  color: rgba(255, 255, 255, 0.66);
  font-size: 11px;
  font-weight: 900;
}

.level-hero-card strong {
  display: block;
  margin: 5px 0 5px;
  font-size: 34px;
  line-height: 0.96;
}

.level-hero-card p {
  margin: 0;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
}

.level-progress-badge {
  display: grid;
  place-items: center;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background:
    radial-gradient(circle, #151b28 54%, transparent 55%),
    conic-gradient(var(--gold) 0 62%, rgba(255, 255, 255, 0.16) 62% 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.14);
}

.level-progress-badge span {
  display: block;
  color: var(--white);
  font-size: 20px;
  font-weight: 950;
  line-height: 1;
}

.level-progress-badge small {
  color: rgba(255, 255, 255, 0.58);
  font-size: 9px;
}

.preview-progress {
  height: 10px;
  margin: 12px 4px 0;
  border-radius: 999px;
  background: rgba(82, 114, 153, 0.16);
  overflow: hidden;
}

.preview-progress span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--gold), var(--cyan));
}

.proof-summary {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  padding: 12px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.58);
}

.proof-dot {
  width: 12px;
  height: 12px;
  flex: 0 0 12px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 7px rgba(124, 210, 215, 0.18);
}

.proof-summary strong,
.proof-summary small {
  display: block;
}

.proof-summary strong {
  color: var(--ink);
  font-size: 13px;
}

.proof-summary small {
  color: var(--muted);
  font-size: 10px;
  font-weight: 850;
}

.proof-summary b {
  margin-left: auto;
  padding: 7px 9px;
  border-radius: 999px;
  color: var(--black);
  background: rgba(229, 197, 131, 0.48);
  font-size: 10px;
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 14px;
}

.mini-grid div {
  padding: 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.7);
}

.mini-grid span {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}

.mini-grid strong {
  display: block;
  margin-top: 4px;
  font-size: 20px;
}

.mission-stack {
  display: grid;
  gap: 10px;
  margin-top: 26px;
}

.mission-row {
  padding: 12px;
  border-radius: 18px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.mission-row strong,
.mission-row b {
  color: var(--white);
}

.mission-row small {
  color: rgba(255, 255, 255, 0.64);
}

.mission-icon {
  display: grid;
  place-items: center;
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  border-radius: 14px;
  color: var(--black);
  background: linear-gradient(135deg, var(--gold), var(--cyan));
  font-size: 12px;
  font-weight: 950;
}

.mission-row.locked {
  opacity: 0.72;
}

.phone-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 9px;
  margin-top: 16px;
  padding: 10px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
}

.phone-tabs span {
  height: 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
}

.phone-tabs .active {
  background: linear-gradient(90deg, var(--gold), var(--cyan));
}

.floating-card {
  position: absolute;
  z-index: 3;
  min-width: 154px;
  padding: 16px 18px;
  border-radius: 24px;
  background:
    radial-gradient(circle at top right, rgba(156, 229, 231, 0.2), transparent 9rem),
    rgba(255, 255, 255, 0.7);
  box-shadow: 0 24px 58px rgba(38, 52, 82, 0.18);
}

.floating-card strong {
  display: block;
  margin: 4px 0;
  font-size: 24px;
}

.proof-card {
  right: -10px;
  bottom: 118px;
  transform: rotate(3deg);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  padding: 14px;
  border-radius: 28px;
}

.trust-strip span {
  padding: 16px;
  border-radius: 18px;
  text-align: center;
  color: #31415f;
  background: rgba(255, 255, 255, 0.54);
  font-size: 13px;
  font-weight: 900;
}

.screen-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.screen-card {
  display: flex;
  min-height: 520px;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
}

.screen-card.dark {
  color: var(--white);
  background:
    radial-gradient(circle at 80% 0%, rgba(156, 229, 231, 0.18), transparent 13rem),
    linear-gradient(145deg, rgba(5, 7, 11, 0.88), rgba(30, 45, 68, 0.86));
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: var(--dark-shadow);
}

.screen-card h3 {
  margin: 0;
  font-size: 21px;
}

.screen-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.62;
}

.screen-card.dark p {
  color: rgba(255, 255, 255, 0.68);
}

.screen-phone {
  min-height: 330px;
  padding: 14px;
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(156, 229, 231, 0.28), transparent 9rem),
    linear-gradient(180deg, #fbfdff, #eef4ff);
  border: 8px solid #080b12;
  box-shadow: 0 24px 55px rgba(14, 20, 34, 0.22);
  overflow: hidden;
}

.screen-card.dark .screen-phone {
  background:
    radial-gradient(circle at 22% 0%, rgba(229, 197, 131, 0.22), transparent 10rem),
    linear-gradient(180deg, #151b29, #07080d);
}

.screen-top,
.rank-row,
.screen-mission {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.screen-top {
  margin-bottom: 18px;
}

.screen-top span {
  width: 48px;
  height: 6px;
  border-radius: 99px;
  background: rgba(82, 114, 153, 0.2);
}

.screen-top b {
  color: inherit;
  font-size: 13px;
}

.screen-balance {
  padding: 18px;
  border-radius: 24px;
  color: var(--white);
  background:
    radial-gradient(circle at right, rgba(156, 229, 231, 0.24), transparent 10rem),
    linear-gradient(135deg, #101522, #263c5d);
}

.screen-balance small,
.screen-balance span {
  display: block;
  color: rgba(255, 255, 255, 0.68);
  font-weight: 800;
}

.screen-balance strong {
  display: block;
  margin: 8px 0;
  font-size: 54px;
  line-height: 0.9;
}

.screen-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  margin-top: 14px;
  padding: 16px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.68);
}

.screen-grid span,
.screen-mission small,
.rank-row span {
  color: var(--muted);
  font-weight: 800;
}

.capture-lens {
  width: 132px;
  height: 132px;
  margin: 30px auto 22px;
  border-radius: 44px;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.86) 0 18%, transparent 19%),
    conic-gradient(from 140deg, var(--gold), var(--cyan), var(--violet-blue), var(--gold));
  box-shadow: 0 26px 48px rgba(0, 0, 0, 0.28);
}

.capture-button {
  width: 76px;
  height: 76px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--cyan));
  box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.12);
}

.mini-capture small {
  display: block;
  text-align: center;
  color: rgba(255, 255, 255, 0.66);
  font-weight: 900;
}

.screen-level {
  padding: 18px;
  border-radius: 24px;
  color: var(--white);
  background:
    radial-gradient(circle at right, rgba(229, 197, 131, 0.28), transparent 8rem),
    #111722;
}

.screen-level strong {
  display: block;
  font-size: 58px;
  line-height: 0.92;
}

.screen-level span {
  color: rgba(255, 255, 255, 0.68);
  font-weight: 800;
}

.screen-mission,
.rank-row {
  margin-top: 12px;
  padding: 13px;
  border-radius: 18px;
  background: rgba(82, 114, 153, 0.08);
}

.screen-mission.premium {
  background: linear-gradient(135deg, rgba(229, 197, 131, 0.34), rgba(156, 229, 231, 0.25));
}

.podium {
  display: grid;
  grid-template-columns: 0.85fr 1fr 0.85fr;
  gap: 8px;
  align-items: end;
  min-height: 120px;
  margin: 22px 0;
}

.podium span,
.podium strong {
  display: grid;
  place-items: center;
  border-radius: 22px 22px 14px 14px;
  color: var(--black);
  background: linear-gradient(135deg, var(--gold), var(--cyan));
  font-size: 26px;
  font-weight: 950;
}

.podium span {
  height: 82px;
  opacity: 0.78;
}

.podium strong {
  height: 118px;
}

.section {
  padding: 110px 0;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 34px;
}

.section-heading h2,
.section-heading p,
.copy-block h2,
.copy-block p {
  text-wrap: balance;
}

.section-heading.light h2,
.section-heading.light p,
.section-heading.light .eyebrow {
  color: var(--white);
}

.section-heading.light p {
  color: rgba(255, 255, 255, 0.72);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.glass-card {
  border-radius: var(--radius);
}

.feature-card {
  min-height: 310px;
  padding: 28px;
}

.feature-card p,
.proof-step p,
.reward-card p {
  color: var(--muted);
  line-height: 1.68;
}

.card-number {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 52px;
  border-radius: 20px;
  color: var(--black);
  background: linear-gradient(135deg, var(--gold), var(--cyan));
  font-weight: 950;
}

.dark-card {
  color: var(--white);
  background:
    radial-gradient(circle at top right, rgba(156, 229, 231, 0.2), transparent 13rem),
    var(--dark-glass);
  box-shadow: var(--dark-shadow);
}

.dark-card h3,
.dark-card .card-number {
  color: var(--white);
}

.dark-card .card-number {
  background: rgba(255, 255, 255, 0.12);
}

.dark-card p {
  color: rgba(255, 255, 255, 0.72);
}

.competition {
  padding: 112px 0;
  background:
    radial-gradient(circle at 18% 18%, rgba(156, 229, 231, 0.2), transparent 28rem),
    radial-gradient(circle at 80% 10%, rgba(229, 197, 131, 0.18), transparent 24rem),
    linear-gradient(145deg, #05070b, #151b29 58%, #0a0c12);
}

.dashboard-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 18px;
}

.live-panel,
.rank-board,
.missions-panel {
  padding: 24px;
}

.dark-panel {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
}

.panel-top {
  margin-bottom: 22px;
}

.panel-top b {
  color: var(--champagne);
}

.level-row {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 20px;
  align-items: end;
}

.level-row strong {
  display: block;
  margin-top: 4px;
  font-size: 76px;
  line-height: 0.9;
}

.progress-track {
  height: 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  overflow: hidden;
}

.progress-track span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--gold), var(--cyan));
}

.stat-tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 30px;
}

.stat-tiles div {
  padding: 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.1);
}

.stat-tiles b {
  display: block;
  margin-top: 6px;
  color: var(--white);
  font-size: 20px;
}

.rank-board,
.missions-panel {
  background: rgba(255, 255, 255, 0.82);
}

.rank-board {
  grid-row: span 2;
}

.rank-list {
  display: grid;
  gap: 12px;
}

.rank-list div {
  padding: 15px;
  border-radius: 18px;
  background: rgba(82, 114, 153, 0.08);
}

.rank-list b {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 12px;
  background: var(--white);
}

.rank-list strong {
  margin-left: auto;
}

.rank-list .active {
  background: linear-gradient(135deg, rgba(229, 197, 131, 0.45), rgba(156, 229, 231, 0.38));
}

.missions-panel {
  display: grid;
  gap: 12px;
}

.mission-tile {
  padding: 16px;
  border-radius: 20px;
  background: rgba(82, 114, 153, 0.08);
}

.mission-tile strong {
  display: block;
  margin: 8px 0;
}

.mission-tile.premium {
  background: linear-gradient(135deg, rgba(229, 197, 131, 0.34), rgba(180, 198, 236, 0.34));
}

.compare-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.compare-card {
  min-height: 360px;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 32px;
  background:
    radial-gradient(circle at 90% 8%, rgba(156, 229, 231, 0.28), transparent 13rem),
    rgba(255, 255, 255, 0.66);
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
}

.compare-card.dark {
  color: var(--white);
  background:
    radial-gradient(circle at 90% 8%, rgba(229, 197, 131, 0.2), transparent 13rem),
    linear-gradient(145deg, #05070b, #1b2b44);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: var(--dark-shadow);
}

.compare-card span {
  display: inline-flex;
  margin-bottom: 48px;
  padding: 9px 13px;
  border-radius: 999px;
  color: var(--black);
  background: rgba(229, 197, 131, 0.52);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.compare-card.dark span {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
}

.compare-card ul {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.62;
}

.compare-card.dark ul {
  color: rgba(255, 255, 255, 0.72);
}

.proof-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.proof-step {
  min-height: 260px;
  padding: 24px;
  border-radius: 28px;
}

.proof-step span {
  display: inline-flex;
  margin-bottom: 56px;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--black);
  background: rgba(229, 197, 131, 0.52);
  font-size: 12px;
  font-weight: 950;
}

.split-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 44px;
  align-items: center;
}

.reward-card {
  padding: 34px;
}

.reward-path {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin-bottom: 32px;
}

.reward-path span {
  height: 16px;
  border-radius: 999px;
  background: rgba(82, 114, 153, 0.14);
}

.reward-path .done {
  background: var(--champagne);
}

.reward-path .current {
  background: linear-gradient(90deg, var(--gold), var(--cyan));
  box-shadow: 0 0 0 8px rgba(156, 229, 231, 0.16);
}

.share-preview {
  margin-top: 28px;
  padding: 20px;
  border-radius: 22px;
  color: var(--white);
  background:
    radial-gradient(circle at right, rgba(156, 229, 231, 0.24), transparent 12rem),
    linear-gradient(135deg, #101522, #263c5d);
}

.share-preview strong {
  display: block;
  margin-bottom: 4px;
}

.share-preview small {
  color: rgba(255, 255, 255, 0.68);
}

.share-section {
  padding-top: 0;
}

.share-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 34px;
  background:
    radial-gradient(circle at 88% 10%, rgba(156, 229, 231, 0.26), transparent 13rem),
    rgba(255, 255, 255, 0.62);
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
}

.share-panel h2 {
  margin: 12px 0 12px;
  font-size: clamp(30px, 4vw, 52px);
}

.share-panel p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.72;
}

.admin-callout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 100px;
  padding: 34px;
  border-radius: 32px;
}

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

.faq-item {
  padding: 22px 24px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.66);
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
}

.faq-item summary {
  cursor: pointer;
  color: var(--black);
  font-size: 17px;
  font-weight: 950;
}

.faq-item p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.admin-callout h2 {
  margin-bottom: 12px;
  font-size: clamp(30px, 4vw, 48px);
}

.admin-callout p {
  max-width: 720px;
  margin-bottom: 0;
}

.legal-preview {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1fr);
  gap: 22px;
  align-items: stretch;
  margin-bottom: 90px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
}

.legal-preview-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 10px 6px;
}

.legal-preview-copy h2 {
  margin: 14px 0 12px;
  font-size: clamp(30px, 3.8vw, 48px);
}

.legal-preview-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.legal-preview-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.legal-action-card {
  display: flex;
  min-height: 230px;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.66);
  border-radius: 26px;
  background:
    radial-gradient(circle at 88% 12%, rgba(156, 229, 231, 0.32), transparent 10rem),
    rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 44px rgba(38, 52, 82, 0.12);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.legal-action-card:hover {
  transform: translateY(-3px);
  border-color: rgba(200, 162, 97, 0.5);
  box-shadow: 0 24px 58px rgba(38, 52, 82, 0.18);
}

.legal-action-card span {
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--black);
  background: rgba(229, 197, 131, 0.5);
  font-size: 12px;
  font-weight: 950;
}

.legal-action-card strong {
  display: block;
  color: var(--black);
  font-size: 26px;
  line-height: 1.08;
}

.legal-action-card small {
  color: var(--muted);
  line-height: 1.58;
  font-size: 13px;
  font-weight: 750;
}

.legal-action-card.dark {
  background:
    radial-gradient(circle at 88% 10%, rgba(156, 229, 231, 0.18), transparent 11rem),
    linear-gradient(135deg, #05070b, #1b2b44);
  border-color: rgba(255, 255, 255, 0.16);
}

.legal-action-card.dark span {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
}

.legal-action-card.dark strong {
  color: var(--white);
}

.legal-action-card.dark small {
  color: rgba(255, 255, 255, 0.68);
}

.legal-action-card.slim {
  min-height: 170px;
  background:
    radial-gradient(circle at 88% 12%, rgba(180, 198, 236, 0.24), transparent 9rem),
    rgba(255, 255, 255, 0.64);
}

.legal-action-card.slim strong {
  font-size: 21px;
}

.final-cta {
  margin-bottom: 90px;
  padding: 54px 24px;
  border-radius: 36px;
  text-align: center;
}

.final-cta img {
  width: 76px;
  height: 76px;
  margin: 0 auto 22px;
  border-radius: 24px;
  object-fit: cover;
}

.final-cta p {
  max-width: 620px;
  margin: 0 auto;
}

.footer {
  padding: 64px 0 34px;
  color: rgba(255, 255, 255, 0.74);
  background:
    radial-gradient(circle at 12% 0%, rgba(156, 229, 231, 0.12), transparent 22rem),
    radial-gradient(circle at 92% 10%, rgba(229, 197, 131, 0.12), transparent 22rem),
    #05070b;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1.45fr) repeat(3, minmax(150px, 0.65fr));
  gap: 36px;
  align-items: start;
}

.footer-brand-block p {
  max-width: 420px;
  margin: 18px 0 22px;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.7;
}

.footer-store-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-column {
  display: grid;
  gap: 12px;
  font-size: 13px;
  font-weight: 800;
}

.footer-column h3 {
  margin: 0 0 6px;
  color: var(--white);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-column a {
  color: rgba(255, 255, 255, 0.68);
  transition: color 180ms ease;
}

.footer-column a:hover {
  color: var(--white);
}

.whatsapp-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.whatsapp-link img {
  width: 20px;
  height: 20px;
  border-radius: 50%;
}

.footer .brand span {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.46);
  font-size: 12px;
  font-weight: 700;
}

.legal-main {
  padding: 70px 0 110px;
}

.legal-hero {
  margin-bottom: 28px;
  padding: 42px;
  border-radius: 34px;
}

.legal-hero h1 {
  margin-bottom: 14px;
  font-size: clamp(42px, 6vw, 76px);
}

.legal-hero p {
  max-width: 760px;
  color: var(--muted);
  line-height: 1.72;
}

.legal-grid {
  display: grid;
  gap: 16px;
}

.legal-card {
  padding: 28px;
}

.legal-card h2 {
  margin-bottom: 12px;
  font-size: clamp(24px, 3vw, 34px);
}

.legal-card p,
.legal-card li {
  color: var(--muted);
  line-height: 1.72;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.contact-card {
  padding: 28px;
}

.contact-card a {
  color: var(--slate);
  font-weight: 900;
  text-decoration: underline;
}

.form-card {
  padding: 30px;
}

.waitlist-form {
  display: grid;
  gap: 14px;
}

.waitlist-form::after {
  display: none;
  padding: 12px 14px;
  border-radius: 14px;
  color: #7a1f18;
  background: rgba(255, 226, 220, 0.82);
  font-size: 13px;
  font-weight: 900;
  content: attr(data-error);
}

.waitlist-form[data-error]::after {
  display: block;
}

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

.field {
  display: grid;
  gap: 8px;
}

.field label {
  color: var(--ink);
  font-size: 13px;
  font-weight: 950;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 50px;
  padding: 13px 14px;
  border: 1px solid rgba(82, 114, 153, 0.18);
  border-radius: 16px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.78);
  font: inherit;
  font-weight: 750;
  outline: none;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.field textarea {
  min-height: 116px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(200, 162, 97, 0.62);
  box-shadow: 0 0 0 4px rgba(229, 197, 131, 0.2);
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

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

.article-card,
.share-template-card {
  min-height: 260px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.66);
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
}

.article-card span,
.share-template-card span {
  display: inline-flex;
  margin-bottom: 42px;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--black);
  background: rgba(229, 197, 131, 0.52);
  font-size: 12px;
  font-weight: 950;
}

.article-card p,
.share-template-card p {
  color: var(--muted);
  line-height: 1.65;
}

.share-template-card.dark {
  color: var(--white);
  background:
    radial-gradient(circle at top right, rgba(156, 229, 231, 0.18), transparent 12rem),
    linear-gradient(145deg, #05070b, #1b2b44);
  border-color: rgba(255, 255, 255, 0.14);
}

.share-template-card.dark p {
  color: rgba(255, 255, 255, 0.68);
}

.share-template-card.dark span {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
}

.network-status {
  position: fixed;
  left: 50%;
  bottom: max(18px, env(safe-area-inset-bottom));
  z-index: 60;
  max-width: min(92vw, 520px);
  padding: 12px 16px;
  border-radius: 999px;
  color: var(--white);
  background: rgba(5, 7, 11, 0.9);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
  font-size: 13px;
  font-weight: 900;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 18px);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.network-status.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

.network-status.is-online {
  color: var(--black);
  background: linear-gradient(135deg, var(--gold), var(--cyan));
}

.network-status.is-offline {
  background: #111722;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 620ms ease,
    transform 620ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-links.mobile-open {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 10px);
    display: grid;
    gap: 4px;
    padding: 12px;
    color: var(--text);
    border: 1px solid rgba(255, 255, 255, 0.62);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
  }

  .nav-links.mobile-open a {
    padding: 13px 14px;
    border-radius: 14px;
  }

  .nav-links.mobile-open a:hover {
    background: rgba(82, 114, 153, 0.08);
  }

  .menu-button {
    display: grid;
    gap: 5px;
    width: 42px;
    height: 42px;
    place-content: center;
    border: 0;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.8);
  }

  .menu-button span {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: var(--ink);
  }

  .hero,
  .split-section,
  .dashboard-grid,
  .contact-grid,
  .legal-preview,
  .compare-grid,
  .share-panel {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 30px;
    padding-top: 44px;
  }

  .hero-visual {
    min-height: 600px;
    justify-self: center;
  }

  .feature-grid,
  .proof-flow,
  .screen-gallery,
  .article-grid,
  .share-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .rank-board {
    grid-row: auto;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand-block {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .section-wrap,
  .nav-shell {
    width: min(100% - 28px, 1120px);
  }

  .hero {
    min-height: auto;
    padding-bottom: 54px;
  }

  h1 {
    font-size: clamp(44px, 13vw, 64px);
  }

  .hero-logo-lockup {
    width: 100%;
    max-width: 320px;
  }

  .hero-logo-lockup img {
    width: 62px;
    height: 62px;
    border-radius: 20px;
  }

  .hero-metrics,
  .feature-grid,
  .proof-flow,
  .trust-strip,
  .stat-tiles,
  .screen-gallery,
  .faq-grid,
  .form-grid,
  .article-grid,
  .share-card-grid {
    grid-template-columns: 1fr;
  }

  .screen-card {
    min-height: auto;
  }

  .screen-phone {
    min-height: 300px;
  }

  .phone-stage {
    min-height: 590px;
  }

  .phone {
    width: min(322px, 100%);
    transform: none;
  }

  .app-preview {
    min-height: 540px;
    padding: 16px;
    border-radius: 36px;
  }

  .level-hero-card {
    grid-template-columns: 1fr 72px;
    padding: 15px;
  }

  .level-hero-card strong {
    font-size: 29px;
  }

  .level-progress-badge {
    width: 68px;
    height: 68px;
  }

  .mission-stack {
    margin-top: 18px;
  }

  .floating-card {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: calc(100% - 28px);
    margin: 12px auto 0;
    transform: none;
  }

  .ring-one,
  .ring-two {
    display: none;
  }

  .level-row {
    grid-template-columns: 1fr;
  }

  .admin-callout {
    align-items: flex-start;
    flex-direction: column;
  }

  .store-row {
    align-items: stretch;
  }

  .legal-preview {
    padding: 20px;
  }

  .legal-preview-actions {
    grid-template-columns: 1fr;
  }

  .legal-action-card {
    min-height: 190px;
  }

  .store-badge {
    width: 100%;
    max-width: 260px;
  }

  .footer-grid,
  .footer-bottom {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .section {
    padding: 78px 0;
  }

  .share-panel,
  .admin-callout,
  .form-card,
  .legal-card,
  .contact-card {
    padding: 22px;
  }

  .compare-card {
    min-height: auto;
    padding: 24px;
  }

  .compare-card span {
    margin-bottom: 26px;
  }

  .article-card,
  .share-template-card {
    min-height: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
    animation-duration: 1ms !important;
  }
}
