:root {
  --bg: #050505;
  --bg-soft: #080808;
  --card: #111111;
  --card-2: #151515;
  --line: rgba(255, 255, 255, 0.1);
  --text: #ffffff;
  --muted: #a1a1aa;
  --red: #ff1028;
  --red-glow: #ff0033;
  --radius: 8px;
  --shadow: 0 22px 70px rgba(255, 0, 51, 0.14);
}

* { box-sizing: border-box; }

html,
body {
  overflow-x: hidden;
  min-height: 100%;
}

body {
  margin: 0;
  font-family: Poppins, Arial, sans-serif;
  background:
    linear-gradient(115deg, rgba(255, 16, 40, 0.08), transparent 34rem),
    radial-gradient(circle at 75% 8%, rgba(255, 0, 51, 0.28), transparent 30rem),
    radial-gradient(circle at 50% 100%, rgba(255, 16, 40, 0.22), transparent 34rem),
    var(--bg);
  color: var(--text);
  letter-spacing: 0;
}

body {
  min-height: 100vh;
}

body:before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    repeating-linear-gradient(118deg, transparent 0 42px, rgba(255, 16, 40, 0.045) 43px 44px, transparent 45px 96px),
    radial-gradient(ellipse at 50% 108%, rgba(255, 0, 51, 0.38), transparent 42%);
  mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 88%, transparent);
}

body.section-panel-comercio,
body.section-dashboard {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .018), transparent 280px),
    #070708;
}

body.section-panel-comercio:before,
body.section-dashboard:before {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, .018) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity: .22;
  mask-image: linear-gradient(to bottom, #000, transparent 72%);
}

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

p { color: var(--muted); line-height: 1.65; }

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #0b0b0b;
  color: var(--text);
  padding: 0 14px;
  font: inherit;
}

textarea {
  min-height: 110px;
  padding-top: 12px;
  resize: vertical;
}

label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.site-shell {
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  margin: 0 auto;
}

main {
  flex: 1 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  width: 100%;
  margin: 0;
  padding: 0;
  background: rgba(5, 5, 5, 0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

.topbar-inner {
  width: min(1180px, calc(100% - 28px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 76px;
  padding: 12px 0;
}

main,
.footer {
  width: min(1180px, calc(100% - 28px));
  margin-left: auto;
  margin-right: auto;
}

.brand,
.nav,
.topbar-actions,
.hero-actions,
.detail-meta,
.card-footer,
.muted-row,
.footer-links {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 900;
  white-space: nowrap;
}

.brand-logo {
  display: block;
  width: 148px;
  height: auto;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: var(--red);
  box-shadow: 0 0 28px rgba(255, 16, 40, 0.55);
}

.nav {
  gap: 22px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.nav a:hover,
.text-link:hover { color: var(--red); }

.topbar-actions,
.hero-actions { gap: 10px; }

.mobile-menu-toggle,
.mobile-menu-panel {
  display: none;
}

.primary-btn,
.ghost-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 0 18px;
  font-weight: 900;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.primary-btn {
  background: var(--red);
  color: #fff;
  box-shadow: 0 10px 36px rgba(255, 0, 51, 0.28);
}

.primary-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 44px rgba(255, 0, 51, 0.42);
}

.ghost-btn {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--line);
  color: #fff;
}

.ghost-btn:hover {
  border-color: rgba(255, 16, 40, 0.55);
  box-shadow: 0 0 24px rgba(255, 16, 40, 0.14);
}

.big {
  min-height: 60px;
  padding: 0 28px;
  font-size: 17px;
}

.hero,
.detail-hero,
.auth-layout {
  min-height: calc(100vh - 96px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  align-items: center;
  gap: 46px;
  padding: 54px 0 70px;
}

.hero h1,
.page-hero h1,
.detail-copy h1,
.auth-layout h1 {
  margin: 0;
  font-size: clamp(52px, 9vw, 124px);
  line-height: .86;
  font-weight: 900;
  max-width: 820px;
}

.home-hero {
  position: relative;
}

.home-hero:after {
  content: "";
  position: absolute;
  right: 4%;
  bottom: 4%;
  width: min(620px, 80vw);
  height: 180px;
  z-index: -1;
  background: radial-gradient(ellipse, rgba(255, 0, 51, 0.4), transparent 68%);
  filter: blur(22px);
}

.hero p,
.page-hero p,
.detail-copy p,
.auth-layout p {
  max-width: 620px;
  font-size: 18px;
}

.eyebrow {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hero-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
  color: var(--muted);
}

.hero-metrics span {
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
}

.hero-metrics strong { color: #fff; }

.hero-visual,
.detail-media,
.map-stage {
  position: relative;
  min-height: 460px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 16, 40, 0.15), rgba(255, 255, 255, 0.02)),
    #0a0a0a;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.campaign-visual {
  min-height: 540px;
  border-color: rgba(255, 16, 40, 0.26);
  background:
    radial-gradient(circle at 52% 48%, rgba(255, 0, 51, 0.28), transparent 31%),
    radial-gradient(circle at 50% 112%, rgba(255, 0, 51, 0.46), transparent 36%),
    linear-gradient(145deg, rgba(255, 16, 40, 0.12), rgba(255, 255, 255, 0.015)),
    #050505;
}

.visual-lines {
  position: absolute;
  inset: -20% -35%;
  opacity: .55;
  background:
    repeating-radial-gradient(ellipse at center, transparent 0 34px, rgba(255, 16, 40, 0.34) 35px 36px, transparent 37px 76px);
  transform: rotate(-18deg);
}

.hero-visual:after,
.detail-media:after,
.map-stage:after {
  content: "";
  position: absolute;
  inset: auto -20% -32% -20%;
  height: 45%;
  background: radial-gradient(circle, rgba(255, 0, 51, 0.44), transparent 62%);
  filter: blur(8px);
}

.ticket-shape {
  position: absolute;
  display: block;
  width: 190px;
  height: 118px;
  border: 3px solid var(--red);
  border-radius: 18px;
  transform: rotate(-12deg);
  box-shadow: 0 0 44px rgba(255, 16, 40, 0.45);
}

.hero-ticket span {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .18em;
}

.ticket-shape:before,
.ticket-shape:after {
  content: "";
  position: absolute;
  top: 41px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #0a0a0a;
  border: 3px solid var(--red);
}

.ticket-shape:before { left: -18px; }
.ticket-shape:after { right: -18px; }
.hero-ticket {
  top: 31%;
  left: 19%;
  width: min(360px, 72%);
  height: 220px;
  border-width: 4px;
  border-radius: 28px;
  transform: rotate(-10deg);
  background: linear-gradient(135deg, rgba(255, 16, 40, 0.95), rgba(122, 0, 18, 0.72));
  box-shadow:
    0 0 42px rgba(255, 16, 40, 0.9),
    0 0 120px rgba(255, 16, 40, 0.38);
}
.ticket-shape.small { inset: 34px auto auto 30px; width: 128px; height: 82px; }

.hero-ticket:before,
.hero-ticket:after {
  top: 82px;
  width: 46px;
  height: 46px;
  background: #050505;
}

.hero-orbit {
  position: absolute;
  border: 1px solid rgba(255, 16, 40, 0.42);
  border-radius: 999px;
  filter: drop-shadow(0 0 18px rgba(255, 16, 40, .36));
}

.orbit-one {
  inset: 66px 40px auto auto;
  width: 150px;
  height: 150px;
}

.orbit-two {
  left: 42px;
  bottom: 52px;
  width: 230px;
  height: 72px;
  transform: rotate(-14deg);
}

.floating-card {
  position: absolute;
  display: grid;
  gap: 8px;
  width: 210px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(17, 17, 17, 0.88);
  box-shadow: var(--shadow);
}

.floating-card.one { right: 28px; top: 60px; }
.floating-card.two { left: 28px; bottom: 62px; }
.floating-card small { color: var(--muted); }

.section,
.page-hero,
.filters-bar,
.map-layout,
.stats-grid {
  padding: 52px 0;
}

.campaign-statement {
  position: relative;
  padding: 84px 0;
  border-top: 1px solid rgba(255, 16, 40, 0.16);
  border-bottom: 1px solid rgba(255, 16, 40, 0.16);
}

.campaign-statement:before {
  content: "";
  position: absolute;
  inset: 24px -10% auto;
  height: 190px;
  z-index: -1;
  background: radial-gradient(ellipse, rgba(255, 16, 40, .2), transparent 62%);
  filter: blur(20px);
}

.campaign-statement h2 {
  max-width: 980px;
  margin: 0;
  font-size: clamp(44px, 8vw, 104px);
  line-height: .9;
  letter-spacing: 0;
}

.campaign-statement p {
  max-width: 580px;
  margin: 20px 0 0;
  font-size: clamp(18px, 2.4vw, 28px);
}

.compact-hero {
  min-height: auto;
  padding-top: 64px;
}

.compact-hero h1 { font-size: clamp(38px, 6vw, 72px); }

.section-head,
.split-section {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.section h2,
.panel h2,
.auth-card h2 {
  margin: 0 0 18px;
  font-size: clamp(26px, 4vw, 42px);
  line-height: 1;
}

.benefit-grid,
.commerce-grid,
.category-grid,
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.benefit-grid.compact { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.benefit-card,
.commerce-card,
.panel,
.auth-card,
.stat-card,
.coupon-row,
.simple-row {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.015)), var(--card);
}

.benefit-card,
.commerce-card {
  overflow: hidden;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.benefit-card:hover,
.commerce-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 16, 40, .45);
  box-shadow: var(--shadow);
}

.benefit-media {
  position: relative;
  display: block;
  min-height: 190px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background:
    radial-gradient(circle at 70% 30%, rgba(255, 16, 40, 0.52), transparent 42%),
    repeating-linear-gradient(130deg, transparent 0 30px, rgba(255, 16, 40, .12) 31px 32px, transparent 33px 68px),
    linear-gradient(145deg, #171717, #080808);
}

.benefit-media:after {
  content: "";
  position: absolute;
  inset: auto -15% -22% -15%;
  height: 55%;
  background: radial-gradient(ellipse, rgba(255, 0, 51, .52), transparent 66%);
  filter: blur(10px);
}

.benefit-body,
.commerce-card,
.panel,
.auth-card {
  padding: 20px;
}

.benefit-body h3,
.commerce-card h2,
.coupon-row h3 {
  margin: 12px 0 8px;
  font-size: 24px;
  line-height: 1.15;
}

.commerce-name {
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.benefit-body p,
.commerce-card p {
  display: -webkit-box;
  min-height: 52px;
  margin: 0 0 18px;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.muted-row,
.card-footer,
.detail-meta {
  justify-content: space-between;
  gap: 14px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  width: fit-content;
  border: 1px solid rgba(255, 16, 40, .45);
  border-radius: 999px;
  padding: 0 10px;
  background: rgba(255, 16, 40, .1);
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.benefit-media > .badge:not(.badge-type) {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
}

.badge-hot {
  background: var(--red);
  box-shadow: 0 0 24px rgba(255, 16, 40, .36);
}

.badge-type {
  position: absolute;
  right: 14px;
  bottom: 14px;
}

.text-link {
  color: #fff;
  font-weight: 900;
}

.obtain-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  border: 1px solid rgba(255, 16, 40, .54);
  border-radius: 8px;
  padding: 0 14px;
  background: rgba(255, 16, 40, .1);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 0 22px rgba(255, 16, 40, .12);
}

.category-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.category-grid.large { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.category-section {
  display: grid;
  gap: 28px;
}

.category-section h2 {
  font-size: clamp(42px, 7vw, 84px);
}

.home-categories {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.category-pill {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 132px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    radial-gradient(circle at 85% 15%, rgba(255, 16, 40, .18), transparent 38%),
    var(--card);
  font-size: clamp(20px, 2.5vw, 30px);
  font-weight: 900;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.category-pill span {
  color: var(--red);
  font-size: 32px;
}

.category-pill:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 16, 40, .58);
  box-shadow: 0 0 42px rgba(255, 16, 40, .18);
}

.filters-bar form,
.form-row {
  display: grid;
  gap: 12px;
}

.filters-bar form {
  grid-template-columns: 1.7fr 1fr 1fr 1fr auto;
}

.detail-hero { grid-template-columns: minmax(300px, .85fr) 1fr; }
.detail-copy { display: grid; gap: 18px; }
.detail-copy h1 { font-size: clamp(38px, 6vw, 76px); }

.coupon-code {
  width: fit-content;
  min-width: 240px;
  padding: 18px;
  border: 1px solid rgba(255, 16, 40, .48);
  border-radius: 8px;
  background: rgba(255, 16, 40, .09);
}

.coupon-code span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.coupon-code strong {
  display: block;
  margin-top: 6px;
  font-size: 30px;
}

.two-col,
.auth-layout {
  grid-template-columns: minmax(0, 1fr) minmax(300px, .8fr);
}

.two-col {
  display: grid;
  gap: 28px;
  align-items: start;
}

.auth-card,
.form-panel {
  display: grid;
  gap: 16px;
}

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

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

.coupon-row,
.simple-row,
.stat-card {
  padding: 16px;
}

.coupon-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.coupon-row strong {
  color: var(--red);
  font-size: 20px;
}

.simple-row {
  display: grid;
  gap: 6px;
}

.simple-row span,
.stat-card span,
.empty,
.muted {
  color: var(--muted);
}

.stat-card strong {
  display: block;
  margin-top: 8px;
  font-size: 42px;
}

.map-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 20px;
}

.map-stage {
  display: grid;
  place-items: center;
  align-content: center;
  text-align: center;
}

.map-stage strong {
  font-size: clamp(42px, 7vw, 84px);
}

.map-stage span {
  color: var(--muted);
  max-width: 480px;
}

.map-list {
  display: grid;
  gap: 12px;
  align-content: start;
}

.map-item {
  display: grid;
  gap: 6px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--card);
}

.flash {
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 8px;
  font-weight: 800;
}

.flash-success { background: rgba(41, 206, 121, .14); border: 1px solid rgba(41, 206, 121, .35); }
.flash-error { background: rgba(255, 16, 40, .14); border: 1px solid rgba(255, 16, 40, .42); }

.footer {
  display: grid;
  grid-template-columns: minmax(220px, 1.2fr) repeat(4, minmax(140px, 1fr));
  gap: 28px;
  padding: 44px 0 34px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.footer p { margin: 8px 0 0; }
.footer-column {
  display: grid;
  gap: 10px;
  align-content: start;
}

.footer-column strong {
  color: #fff;
  font-size: 13px;
}

.footer-column a {
  color: rgba(255,255,255,.56);
  font-size: 13px;
}

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

.footer-links { gap: 18px; }
.footer-logo {
  display: block;
  width: 156px;
  height: auto;
}

@media (max-width: 940px) {
  .nav { display: none; }
  .hero,
  .detail-hero,
  .auth-layout,
  .two-col,
  .map-layout {
    grid-template-columns: 1fr;
  }
  .hero { min-height: auto; }
  .hero-visual,
  .detail-media { min-height: 360px; }
  .benefit-grid,
  .benefit-grid.compact,
  .commerce-grid,
  .category-grid,
  .home-categories,
  .category-grid.large,
  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .filters-bar form { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 620px) {
  .site-shell { width: min(100% - 22px, 1180px); }
  .hide-sm { display: none; }
  .topbar { min-height: 68px; }
  .brand-logo { width: 116px; }
  .hero,
  .detail-hero,
  .auth-layout { padding: 34px 0 46px; }
  .hero h1,
  .page-hero h1,
  .detail-copy h1,
  .auth-layout h1 { font-size: 52px; }
  .hero-actions,
  .section-head,
  .split-section,
  .footer,
  .coupon-row {
    align-items: stretch;
    flex-direction: column;
  }
  .hero-actions a,
  .hero-actions button { width: 100%; }
  .benefit-grid,
  .benefit-grid.compact,
  .commerce-grid,
  .category-grid,
  .home-categories,
  .category-grid.large,
  .stats-grid,
  .filters-bar form,
  .form-row {
    grid-template-columns: 1fr;
  }
  .hero-ticket { left: 12%; width: 220px; height: 138px; }
  .campaign-visual { min-height: 320px; }
  .hero-ticket { top: 30%; left: 12%; width: 250px; height: 150px; }
  .hero-ticket:before,
  .hero-ticket:after { top: 52px; }
  .campaign-statement { padding: 62px 0; }
  .campaign-statement h2 { font-size: 46px; }
  .category-pill { min-height: 96px; }
  .floating-card { width: 180px; }
  .floating-card.one { right: 14px; top: 32px; }
  .floating-card.two { left: 14px; bottom: 42px; }
}

/* Premium product landing refinements */
body {
  font-family: Poppins, Arial, sans-serif;
  font-weight: 400;
  background:
    radial-gradient(circle at 88% 18%, rgba(255, 16, 40, 0.105), transparent 28rem),
    radial-gradient(ellipse at 54% -8%, rgba(255, 255, 255, 0.055), transparent 38rem),
    radial-gradient(ellipse at 50% 112%, rgba(255, 0, 51, 0.095), transparent 42rem),
    linear-gradient(180deg, #060606 0%, #030303 54%, #080202 100%);
}

body:before {
  background:
    radial-gradient(circle at 68% 24%, rgba(255, 16, 40, 0.07), transparent 24rem),
    radial-gradient(ellipse at 20% 72%, rgba(255, 16, 40, 0.045), transparent 32rem);
  mask-image: none;
}

body:after {
  content: "";
  position: fixed;
  inset: -20% -12%;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 26%, rgba(255, 16, 40, .045), transparent 20rem),
    radial-gradient(circle at 82% 58%, rgba(255, 16, 40, .06), transparent 24rem),
    radial-gradient(circle at 45% 88%, rgba(255, 255, 255, .025), transparent 28rem);
  animation: ambient-shift 18s ease-in-out infinite alternate;
}

p {
  font-weight: 400;
  line-height: 1.7;
}

.site-shell {
  width: min(1160px, calc(100% - 40px));
}

.topbar {
  min-height: 82px;
  border-bottom-color: rgba(255, 255, 255, 0.07);
  background: rgba(5, 5, 5, 0.68);
}

.brand {
  font-weight: 700;
  letter-spacing: 0;
}

.brand-logo {
  width: 154px;
  filter: drop-shadow(0 0 22px rgba(255, 16, 40, .12));
}

.brand-mark {
  width: 32px;
  height: 32px;
  font-weight: 800;
  border-radius: 9px;
  background: linear-gradient(135deg, #ff2038, #cc001f);
}

.nav,
.topbar-actions,
.muted-row,
.card-footer,
label {
  font-weight: 500;
}

.primary-btn,
.ghost-btn,
.obtain-btn,
.text-link {
  font-weight: 600;
}

.primary-btn,
.ghost-btn {
  border-radius: 10px;
}

.primary-btn {
  background: linear-gradient(135deg, #ff2038, #e60023);
}

.ghost-btn {
  background: rgba(255, 255, 255, 0.035);
}

.big {
  min-height: 52px;
  padding: 0 22px;
  font-size: 15px;
}

.home-hero {
  min-height: min(820px, calc(100vh - 82px));
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.72fr);
  gap: clamp(48px, 7vw, 96px);
  padding: clamp(74px, 8vw, 104px) 0 clamp(86px, 10vw, 128px);
}

.home-hero:after {
  right: -12%;
  bottom: 18%;
  width: min(760px, 86vw);
  height: 360px;
  opacity: .42;
  filter: blur(56px);
}

.hero h1,
.page-hero h1,
.auth-layout h1 {
  font-size: clamp(58px, 6.8vw, 96px);
  line-height: .92;
  font-weight: 800;
  letter-spacing: 0;
}

.detail-copy h1 {
  font-weight: 800;
}

.hero p,
.page-hero p,
.detail-copy p,
.auth-layout p {
  max-width: 500px;
  font-size: clamp(20px, 1.8vw, 24px);
  line-height: 1.28;
  font-weight: 500;
  color: rgba(255, 255, 255, .66);
}

.eyebrow {
  margin-bottom: 22px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .12em;
}

.hero-actions {
  gap: 12px;
  margin-top: 34px;
}

.hero-metrics {
  display: none;
}

.campaign-visual {
  min-height: 460px;
  border: 0;
  overflow: visible;
  background: transparent;
  box-shadow: none;
}

.opportunity-orbit {
  --orbit-x: 0px;
  --orbit-y: 0px;
  min-height: 560px;
  transform-style: preserve-3d;
  perspective: 1000px;
}

.campaign-visual:before {
  content: "";
  position: absolute;
  inset: 10% -16% 6% -18%;
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 16, 40, .24), transparent 28%),
    radial-gradient(ellipse at center, rgba(255, 16, 40, .09), transparent 62%);
  filter: blur(32px);
}

.campaign-visual:after {
  inset: 52% -8% auto 8%;
  height: 180px;
  background: radial-gradient(ellipse, rgba(255, 16, 40, .22), transparent 68%);
  filter: blur(48px);
}

.orbit-glow {
  position: absolute;
  inset: 8% -14% 4% -12%;
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 16, 40, .28), transparent 22%),
    radial-gradient(ellipse at center, rgba(255, 16, 40, .13), transparent 60%);
  filter: blur(28px);
  transform: translate3d(calc(var(--orbit-x) * -.25), calc(var(--orbit-y) * -.25), -80px);
}

.orbit-line {
  position: absolute;
  left: 50%;
  top: 50%;
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 999px;
  transform-style: preserve-3d;
  box-shadow: 0 0 42px rgba(255, 16, 40, .08);
}

.orbit-line:after {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 16, 40, .8);
  box-shadow: 0 0 20px rgba(255, 16, 40, .65);
}

.orbit-line-one {
  width: 430px;
  height: 210px;
  margin: -105px 0 0 -215px;
  transform: translate3d(calc(var(--orbit-x) * .1), calc(var(--orbit-y) * .1), 0) rotate(-15deg);
  animation: orbit-breathe 9s ease-in-out infinite;
}

.orbit-line-one:after {
  right: 54px;
  top: 18px;
}

.orbit-line-two {
  width: 500px;
  height: 310px;
  margin: -155px 0 0 -250px;
  transform: translate3d(calc(var(--orbit-x) * .06), calc(var(--orbit-y) * .06), -20px) rotate(22deg);
  animation: orbit-breathe 11s ease-in-out infinite reverse;
}

.orbit-line-two:after {
  left: 68px;
  bottom: 46px;
}

.orbit-line-three {
  width: 360px;
  height: 360px;
  margin: -180px 0 0 -180px;
  opacity: .5;
  transform: translate3d(calc(var(--orbit-x) * .04), calc(var(--orbit-y) * .04), -60px) rotate(45deg);
  animation: orbit-spin 34s linear infinite;
}

.orbit-line-three:after {
  right: 40px;
  bottom: 62px;
}

.particle-field span {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .7);
  box-shadow: 0 0 16px rgba(255, 16, 40, .55);
  animation: particle-float 7s ease-in-out infinite;
}

.particle-field span:nth-child(1) { left: 18%; top: 28%; animation-delay: -.4s; }
.particle-field span:nth-child(2) { left: 76%; top: 22%; animation-delay: -1.8s; }
.particle-field span:nth-child(3) { left: 83%; top: 64%; animation-delay: -3.2s; }
.particle-field span:nth-child(4) { left: 26%; top: 72%; animation-delay: -2.3s; }
.particle-field span:nth-child(5) { left: 54%; top: 16%; animation-delay: -4.1s; }
.particle-field span:nth-child(6) { left: 48%; top: 82%; animation-delay: -5s; }

.ticket-core {
  position: absolute;
  inset: 0;
  transform: translate3d(var(--orbit-x), var(--orbit-y), 80px);
  transform-style: preserve-3d;
}

.visual-lines,
.hero-orbit {
  display: none;
}

.hero-ticket {
  top: 33%;
  left: 50%;
  width: min(360px, 76%);
  height: 214px;
  border: 1px solid rgba(255, 255, 255, .26);
  border-radius: 26px;
  transform: translateX(-50%) rotate(-8deg);
  background:
    linear-gradient(135deg, rgba(255, 37, 61, .94), rgba(178, 0, 27, .86)),
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, .22), transparent 30%);
  box-shadow:
    0 38px 100px rgba(255, 0, 51, .28),
    0 0 68px rgba(255, 16, 40, .34);
  animation: ticket-float 7s ease-in-out infinite;
}

.hero-ticket span {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .2em;
}

.hero-ticket:before,
.hero-ticket:after {
  top: 76px;
  border-color: rgba(255, 255, 255, .26);
  background: #050505;
}

@keyframes ticket-float {
  0%, 100% { transform: translate3d(-50%, 0, 0) rotate(-8deg); }
  50% { transform: translate3d(-50%, -16px, 0) rotate(-5deg); }
}

.orbit-card {
  position: absolute;
  display: grid;
  grid-template-columns: 30px auto;
  align-items: center;
  gap: 10px;
  min-height: 50px;
  padding: 9px 13px 9px 10px;
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 16px;
  background:
    radial-gradient(circle at 80% 15%, rgba(255, 16, 40, .16), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .026)),
    rgba(10, 10, 10, .68);
  color: rgba(255, 255, 255, .86);
  box-shadow: 0 18px 70px rgba(0, 0, 0, .34), 0 0 30px rgba(255, 16, 40, .08);
  backdrop-filter: blur(18px);
  transform: translate3d(calc(var(--orbit-x) * var(--px, .18)), calc(var(--orbit-y) * var(--py, .18)), 120px);
  animation: chip-float 8s ease-in-out infinite;
}

.orbit-card span {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 10px;
  background: rgba(255, 16, 40, .1);
  font-size: 16px;
}

.orbit-card strong {
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}

.orbit-card-food { left: 2%; top: 25%; --px: -.3; --py: .18; animation-delay: -.7s; }
.orbit-card-coffee { left: 11%; bottom: 22%; --px: -.2; --py: -.14; animation-delay: -2.5s; }
.orbit-card-hotel { right: 5%; top: 25%; --px: .22; --py: .16; animation-delay: -1.5s; }
.orbit-card-event { right: 2%; bottom: 26%; --px: .32; --py: -.2; animation-delay: -3.1s; }
.orbit-card-night { left: 42%; top: 10%; --px: .08; --py: -.34; animation-delay: -4.3s; }
.orbit-card-exp { left: 42%; bottom: 8%; --px: -.08; --py: .32; animation-delay: -5.2s; }

@keyframes chip-float {
  0%, 100% { margin-top: 0; }
  50% { margin-top: -12px; }
}

@keyframes orbit-breathe {
  0%, 100% { opacity: .48; scale: 1; }
  50% { opacity: .82; scale: 1.035; }
}

@keyframes orbit-spin {
  from { rotate: 0deg; }
  to { rotate: 360deg; }
}

@keyframes particle-float {
  0%, 100% { opacity: .25; transform: translate3d(0, 0, 0); }
  50% { opacity: .9; transform: translate3d(12px, -18px, 0); }
}

@keyframes ambient-shift {
  from { transform: translate3d(-1.5%, -1%, 0) scale(1); }
  to { transform: translate3d(1.5%, 1%, 0) scale(1.04); }
}

.section,
.page-hero,
.filters-bar,
.map-layout,
.stats-grid {
  padding: clamp(86px, 11vw, 144px) 0;
}

.editorial-block {
  max-width: 760px;
  padding: clamp(92px, 12vw, 152px) 0;
  border: 0;
}

.editorial-block:before {
  inset: 20% auto auto -20%;
  width: 520px;
  height: 320px;
  opacity: .72;
  background: radial-gradient(ellipse, rgba(255, 16, 40, .1), transparent 66%);
  filter: blur(34px);
}

.editorial-block h2 {
  max-width: 720px;
  font-size: clamp(38px, 5.6vw, 76px);
  line-height: 1;
  font-weight: 700;
}

.editorial-block p {
  max-width: 480px;
  margin-top: 18px;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 400;
}

.section-head {
  position: relative;
  margin-bottom: 36px;
}

.section-head p,
.category-section > div > p {
  max-width: 560px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, .56);
  font-size: 18px;
  line-height: 1.5;
  font-weight: 400;
}

.section h2,
.panel h2,
.auth-card h2 {
  font-size: clamp(32px, 4.8vw, 58px);
  font-weight: 700;
  letter-spacing: 0;
}

.visual-section {
  position: relative;
  isolation: isolate;
}

.visual-section:before {
  content: "";
  position: absolute;
  inset: 6% -9% 0;
  z-index: -2;
  border-radius: 36px;
  background:
    radial-gradient(circle at 78% 20%, rgba(255, 16, 40, .13), transparent 25rem),
    linear-gradient(180deg, rgba(255, 255, 255, .018), transparent 58%);
  opacity: .9;
}

.section-visual {
  position: absolute;
  inset: 48px 0 auto auto;
  width: min(440px, 42vw);
  height: 260px;
  z-index: -1;
  pointer-events: none;
}

.today-visual {
  top: 30px;
  right: -30px;
}

.section-ticket {
  top: 70px;
  right: 84px;
  width: 220px;
  height: 132px;
  border-color: rgba(255, 16, 40, .34);
  background: linear-gradient(135deg, rgba(255, 16, 40, .12), rgba(255, 255, 255, .02));
  box-shadow: 0 0 72px rgba(255, 16, 40, .18);
  opacity: .9;
}

.section-ticket span {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, .72);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .22em;
}

.pulse-ring {
  position: absolute;
  border: 1px solid rgba(255, 16, 40, .18);
  border-radius: 999px;
  box-shadow: 0 0 54px rgba(255, 16, 40, .1);
}

.ring-a {
  top: 10px;
  right: 10px;
  width: 260px;
  height: 260px;
  animation: ring-drift 9s ease-in-out infinite;
}

.ring-b {
  top: 86px;
  right: 142px;
  width: 150px;
  height: 74px;
  transform: rotate(-16deg);
  animation: ring-drift 11s ease-in-out infinite reverse;
}

@keyframes ring-drift {
  0%, 100% { opacity: .48; transform: translateY(0) rotate(-8deg); }
  50% { opacity: .9; transform: translateY(-12px) rotate(-2deg); }
}

.savings-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .62fr);
  align-items: center;
  max-width: none;
  gap: clamp(34px, 6vw, 88px);
}

.savings-visual {
  position: relative;
  min-height: 320px;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 26px;
  background:
    radial-gradient(circle at 72% 16%, rgba(255, 16, 40, .25), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .018)),
    rgba(9, 9, 9, .68);
  box-shadow: 0 30px 100px rgba(0, 0, 0, .32), 0 0 80px rgba(255, 16, 40, .08);
  overflow: hidden;
}

.savings-visual:before {
  content: "";
  position: absolute;
  inset: auto -20% -38% -20%;
  height: 62%;
  background: radial-gradient(ellipse, rgba(255, 16, 40, .28), transparent 62%);
  filter: blur(28px);
}

.savings-visual span {
  color: rgba(255, 255, 255, .56);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .11em;
}

.savings-visual strong {
  display: block;
  margin-top: 28px;
  font-size: clamp(48px, 6vw, 84px);
  line-height: .9;
  font-weight: 800;
}

.mini-chart {
  position: absolute;
  right: 34px;
  bottom: 30px;
  left: 34px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: end;
  gap: 12px;
  height: 96px;
}

.mini-chart i {
  display: block;
  border-radius: 999px 999px 8px 8px;
  background: linear-gradient(180deg, rgba(255, 16, 40, .9), rgba(255, 16, 40, .12));
  box-shadow: 0 0 28px rgba(255, 16, 40, .16);
}

.mini-chart i:nth-child(1) { height: 34%; }
.mini-chart i:nth-child(2) { height: 52%; }
.mini-chart i:nth-child(3) { height: 42%; }
.mini-chart i:nth-child(4) { height: 76%; }
.mini-chart i:nth-child(5) { height: 100%; }

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

.benefit-grid.compact {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.benefit-card,
.commerce-card,
.panel,
.auth-card,
.stat-card,
.coupon-row,
.simple-row {
  border-color: rgba(255, 255, 255, .075);
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .045), rgba(255, 255, 255, .018)),
    rgba(12, 12, 12, .78);
}

.benefit-card:hover,
.commerce-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 16, 40, .26);
  box-shadow: 0 22px 70px rgba(0, 0, 0, .28), 0 0 44px rgba(255, 16, 40, .08);
}

.benefit-media {
  min-height: 78px;
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 16, 40, .2), transparent 36%),
    linear-gradient(135deg, rgba(255, 255, 255, .035), rgba(255, 255, 255, .01));
}

.benefit-media:before {
  content: "";
  position: absolute;
  right: 20px;
  top: 19px;
  width: 66px;
  height: 40px;
  border: 1px solid rgba(255, 16, 40, .45);
  border-radius: 12px;
  transform: rotate(-8deg);
  box-shadow: 0 0 28px rgba(255, 16, 40, .16);
}

.benefit-media:after {
  inset: auto 8% -42% 24%;
  height: 82%;
  opacity: .42;
  filter: blur(20px);
}

.benefit-body {
  padding: 16px;
}

.benefit-topline {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
}

.commerce-logo {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 16, 40, .32);
  border-radius: 10px;
  background: rgba(255, 16, 40, .1);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  box-shadow: inset 0 0 18px rgba(255, 16, 40, .08);
}

.commerce-name {
  overflow: hidden;
  color: rgba(255, 255, 255, .78);
  font-size: 13px;
  font-weight: 600;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-transform: none;
}

.benefit-body h3 {
  margin: 16px 0 8px;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0;
}

.benefit-body p {
  min-height: 0;
  margin: 10px 0 16px;
  font-size: 14px;
  line-height: 1.45;
  color: rgba(255, 255, 255, .54);
}

.muted-row,
.card-footer,
.detail-meta {
  color: rgba(255, 255, 255, .52);
  font-size: 13px;
  font-weight: 400;
}

.badge {
  min-height: 24px;
  border-color: rgba(255, 16, 40, .22);
  background: rgba(255, 255, 255, .035);
  color: rgba(255, 255, 255, .72);
  font-size: 10px;
  font-weight: 600;
}

.badge-hot {
  background: rgba(255, 16, 40, .12);
  color: #fff;
  box-shadow: none;
}

.obtain-btn {
  min-height: 34px;
  border-color: rgba(255, 16, 40, .28);
  border-radius: 9px;
  background: rgba(255, 16, 40, .075);
  font-size: 13px;
  box-shadow: none;
}

.category-section {
  gap: 42px;
}

.category-section h2 {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
}

.home-categories {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.product-tile {
  position: relative;
  display: grid;
  align-content: start;
  justify-content: stretch;
  min-height: 244px;
  padding: 22px;
  border-color: rgba(255, 255, 255, .075);
  border-radius: 14px;
  background:
    radial-gradient(circle at 86% 18%, rgba(255, 16, 40, .12), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, .04), rgba(255, 255, 255, .014)),
    rgba(12, 12, 12, .72);
  font-size: 18px;
  font-weight: 500;
  overflow: hidden;
  isolation: isolate;
  box-shadow: 0 24px 80px rgba(0, 0, 0, .16);
}

.product-tile:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: var(--tile-photo);
  background-size: cover;
  background-position: center;
  opacity: .34;
  transform: scale(1.02);
  transition: opacity .24s ease, transform .24s ease;
}

.product-tile:after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 80% 16%, rgba(255, 16, 40, .36), transparent 32%),
    linear-gradient(180deg, rgba(0, 0, 0, .28), rgba(0, 0, 0, .84));
}

.product-tile:hover:before {
  opacity: .48;
  transform: scale(1.08);
}

.product-tile span {
  font-size: 28px;
}

.product-tile strong {
  margin-top: 28px;
  font-size: 22px;
  font-weight: 700;
}

.product-tile small {
  margin-top: 8px;
  color: rgba(255, 255, 255, .52);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.35;
}

.product-eat {
  --tile-photo: url("https://images.unsplash.com/photo-1552566626-52f8b828add9?auto=format&fit=crop&w=900&q=75");
}

.product-coffee {
  --tile-photo: url("https://images.unsplash.com/photo-1495474472287-4d71bcdd2085?auto=format&fit=crop&w=900&q=75");
}

.product-night {
  --tile-photo: url("https://images.unsplash.com/photo-1514525253161-7a46d19cd819?auto=format&fit=crop&w=900&q=75");
}

.product-hotel {
  --tile-photo: url("https://images.unsplash.com/photo-1566073771259-6a8506099945?auto=format&fit=crop&w=900&q=75");
}

.product-experience {
  --tile-photo: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=900&q=75");
}

.worthwhile-section:before {
  background:
    radial-gradient(circle at 82% 16%, rgba(255, 16, 40, .11), transparent 24rem),
    radial-gradient(circle at 12% 92%, rgba(255, 255, 255, .035), transparent 26rem);
}

.worthwhile-visual {
  top: 34px;
  right: 20px;
}

.visual-card-stack {
  position: absolute;
  top: 34px;
  right: 34px;
  width: 230px;
  height: 170px;
}

.visual-card-stack span {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 16, 40, .18);
  border-radius: 18px;
  background:
    radial-gradient(circle at 80% 20%, rgba(255, 16, 40, .18), transparent 34%),
    rgba(255, 255, 255, .025);
  box-shadow: 0 0 48px rgba(255, 16, 40, .08);
}

.visual-card-stack span:nth-child(1) { transform: translate(-34px, 30px) rotate(-12deg); opacity: .5; }
.visual-card-stack span:nth-child(2) { transform: translate(-10px, 12px) rotate(-5deg); opacity: .72; }
.visual-card-stack span:nth-child(3) { transform: translate(18px, -8px) rotate(7deg); }

.brand-finale {
  position: relative;
  display: grid;
  min-height: 520px;
  max-width: none;
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .075);
  border-radius: 32px;
  padding-inline: clamp(24px, 5vw, 72px);
  background:
    radial-gradient(circle at 72% 38%, rgba(255, 16, 40, .24), transparent 28rem),
    linear-gradient(135deg, rgba(255, 255, 255, .045), rgba(255, 255, 255, .012)),
    rgba(8, 8, 8, .8);
}

.brand-finale h2 {
  max-width: 860px;
}

.finale-glow {
  position: absolute;
  inset: auto -12% -28% -12%;
  height: 58%;
  background: radial-gradient(ellipse, rgba(255, 0, 51, .36), transparent 66%);
  filter: blur(34px);
}

.finale-ticket {
  top: 18%;
  right: 8%;
  width: 290px;
  height: 174px;
  border-color: rgba(255, 255, 255, .2);
  background: linear-gradient(135deg, rgba(255, 35, 58, .86), rgba(120, 0, 20, .7));
  box-shadow: 0 0 80px rgba(255, 16, 40, .24);
  animation: ticket-float 8s ease-in-out infinite;
}

.finale-ticket span {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .2em;
}

@media (max-width: 940px) {
  .home-hero {
    grid-template-columns: 1fr;
    padding-top: 76px;
  }

  .campaign-visual {
    min-height: 360px;
  }

  .home-categories,
  .benefit-grid,
  .benefit-grid.compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-visual {
    opacity: .38;
  }

  .savings-section {
    grid-template-columns: 1fr;
  }
}

/* Commerce monetization and full-width navigation */
body:not(.section-dashboard):not(.section-panel-comercio) .topbar {
  display: block;
  min-height: 72px;
}

body:not(.section-dashboard):not(.section-panel-comercio) .topbar-inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 18px;
}

body:not(.section-dashboard):not(.section-panel-comercio) .section {
  padding: clamp(56px, 8vw, 104px) 0;
}

body.section-home .home-hero {
  min-height: auto;
  padding: clamp(58px, 8vw, 110px) 0 clamp(48px, 7vw, 86px);
}

body.section-home .section-head {
  margin-bottom: 30px;
}

body.section-home .section-head .text-link {
  justify-self: center;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  margin-top: 12px;
  padding: 0 18px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 999px;
  background: rgba(255,255,255,.04);
}

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 45;
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  font-weight: 800;
  box-shadow: 0 16px 46px rgba(0, 0, 0, .36), 0 0 32px rgba(37, 211, 102, .24);
}

.whatsapp-float svg {
  width: 34px;
  height: 34px;
  fill: currentColor;
}

body.section-dashboard .whatsapp-float,
body.section-panel-comercio .whatsapp-float {
  display: none;
}

.merchant-landing-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .55fr);
  gap: 42px;
  align-items: center;
  min-height: 620px;
  padding: 82px 0 56px;
}

.merchant-landing-hero h1 {
  max-width: 860px;
  margin: 14px 0 0;
  font-size: clamp(54px, 7vw, 106px);
  line-height: .9;
}

.merchant-landing-hero p {
  max-width: 660px;
  margin: 22px 0 0;
  font-size: clamp(19px, 2vw, 26px);
}

.merchant-model-card {
  display: grid;
  align-content: end;
  min-height: 360px;
  padding: 28px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 28px;
  background:
    radial-gradient(circle at 74% 18%, rgba(255,16,40,.24), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.016)),
    rgba(12,12,12,.78);
  box-shadow: 0 30px 100px rgba(0,0,0,.35);
}

.merchant-model-card span {
  color: var(--red-soft);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.merchant-model-card strong {
  margin-top: 120px;
  font-size: clamp(52px, 6vw, 88px);
  line-height: .9;
}

.merchant-model-card small {
  max-width: 300px;
  margin-top: 14px;
  color: rgba(255,255,255,.58);
  font-size: 17px;
}

.merchant-sales-grid,
.merchant-pricing-section,
.merchant-signup-section {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.merchant-sales-grid article {
  min-height: 320px;
  padding: 28px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 24px;
  background: rgba(13,13,15,.8);
}

.merchant-sales-grid span {
  color: var(--red-soft);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.merchant-sales-grid h2 {
  margin-top: 28px;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1;
}

.public-benefit-actions a {
  pointer-events: none;
}

.billing-highlight {
  border-color: rgba(255,16,40,.2);
  background:
    radial-gradient(circle at 88% 18%, rgba(255,16,40,.14), transparent 34%),
    rgba(13,13,15,.86);
}

.billing-highlight h2 {
  max-width: 940px;
  margin: 0;
  font-size: clamp(28px, 4vw, 50px);
  line-height: 1;
}

.billing-note {
  margin: 0;
  padding: 12px 14px;
  border: 1px solid rgba(255,16,40,.18);
  border-radius: 12px;
  background: rgba(255,16,40,.055);
  color: rgba(255,255,255,.72);
  font-size: 13px;
}

@media (max-width: 1040px) {
  body:not(.section-dashboard):not(.section-panel-comercio) .topbar-inner {
    grid-template-columns: 1fr;
    justify-items: center;
  }
}

@media (max-width: 900px) {
  .merchant-landing-hero,
  .merchant-sales-grid,
  .merchant-pricing-section,
  .merchant-signup-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .whatsapp-float {
    right: 14px;
    bottom: 88px;
    width: 58px;
    height: 58px;
  }
}

@media (max-width: 620px) {
  .site-shell {
    width: min(100% - 28px, 1160px);
  }

  .brand-logo {
    width: 118px;
  }

  .home-hero {
    gap: 46px;
    padding: 58px 0 96px;
  }

  .hero h1,
  .page-hero h1,
  .auth-layout h1 {
    font-size: clamp(50px, 13vw, 64px);
  }

  .hero p,
  .page-hero p,
  .auth-layout p {
    font-size: 21px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .big {
    min-height: 54px;
  }

  .campaign-visual {
    min-height: 280px;
  }

  .opportunity-orbit {
    min-height: 420px;
  }

  .hero-ticket {
    top: 28%;
    left: 50%;
    width: 260px;
    height: 154px;
  }

  .hero-ticket:before,
  .hero-ticket:after {
    top: 54px;
  }

  .orbit-line-one {
    width: 330px;
    height: 170px;
    margin: -85px 0 0 -165px;
  }

  .orbit-line-two {
    width: 370px;
    height: 250px;
    margin: -125px 0 0 -185px;
  }

  .orbit-line-three {
    width: 280px;
    height: 280px;
    margin: -140px 0 0 -140px;
  }

  .orbit-card {
    min-height: 42px;
    padding: 7px 10px 7px 8px;
    border-radius: 13px;
  }

  .orbit-card span {
    width: 25px;
    height: 25px;
    font-size: 13px;
  }

  .orbit-card strong {
    font-size: 11px;
  }

  .orbit-card-food { left: 4%; top: 22%; }
  .orbit-card-coffee { left: 9%; bottom: 18%; }
  .orbit-card-hotel { right: 4%; top: 24%; }
  .orbit-card-event { right: 4%; bottom: 20%; }
  .orbit-card-night { left: 38%; top: 4%; }
  .orbit-card-exp { left: 36%; bottom: 4%; }

  .section,
  .page-hero,
  .filters-bar,
  .map-layout,
  .stats-grid,
  .editorial-block {
    padding: 82px 0;
  }

  .editorial-block h2 {
    font-size: 40px;
    line-height: 1.04;
  }

  .benefit-grid,
  .benefit-grid.compact,
  .home-categories {
    grid-template-columns: 1fr;
  }

  .benefit-media {
    min-height: 72px;
  }

.product-tile {
    min-height: 210px;
  }

  .section-visual {
    display: none;
  }

  .today-section .section-visual {
    display: block;
    top: 18px;
    right: -112px;
    width: 300px;
    height: 210px;
    opacity: .5;
  }

  .today-section .section-ticket {
    top: 44px;
    right: 70px;
    width: 170px;
    height: 102px;
  }

  .today-section .section-ticket:before,
  .today-section .section-ticket:after {
    top: 34px;
  }

  .section-head p,
  .category-section > div > p {
    font-size: 16px;
  }

  .savings-visual {
    min-height: 260px;
    padding: 24px;
  }

  .savings-visual strong {
    font-size: 48px;
  }

  .mini-chart {
    right: 24px;
    bottom: 24px;
    left: 24px;
    height: 74px;
  }

  .brand-finale {
    min-height: 560px;
    border-radius: 22px;
  }

  .finale-ticket {
    top: auto;
    right: 16px;
    bottom: 36px;
    width: 220px;
    height: 132px;
    opacity: .86;
  }
}

@media (max-width: 760px) {
  body:not(.section-dashboard):not(.section-panel-comercio) .topbar-inner {
    grid-template-columns: auto auto;
    justify-content: space-between;
    min-height: 70px;
  }

  body:not(.section-dashboard):not(.section-panel-comercio) .nav,
  body:not(.section-dashboard):not(.section-panel-comercio) .topbar-actions {
    display: none;
  }

  .mobile-menu-toggle {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    gap: 4px;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 14px;
    background: rgba(255,255,255,.045);
    color: #fff;
  }

  .mobile-menu-toggle span {
    width: 18px;
    height: 2px;
    display: block;
    border-radius: 999px;
    background: currentColor;
  }

  .mobile-menu-panel {
    width: min(1180px, calc(100% - 28px));
    margin: 0 auto 12px;
    display: none;
    gap: 8px;
    padding: 12px;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 18px;
    background: rgba(10,10,10,.96);
  }

  .mobile-menu-panel.is-open {
    display: grid;
  }

  .mobile-menu-panel a {
    min-height: 42px;
    display: flex;
    align-items: center;
    padding: 0 12px;
    border-radius: 12px;
    color: rgba(255,255,255,.78);
    font-weight: 700;
  }

  .mobile-menu-panel a:not(.primary-btn) {
    background: rgba(255,255,255,.035);
  }

  body.section-home .home-hero {
    padding-top: 42px;
  }

  .hero h1,
  .page-hero h1,
  .auth-layout h1 {
    font-size: clamp(42px, 11vw, 58px);
  }

  body:not(.section-dashboard):not(.section-panel-comercio) .section {
    padding: 44px 0;
  }

  .benefit-grid,
  .benefit-grid.compact,
  .commerce-grid,
  .public-commerce-grid,
  .home-categories {
    grid-template-columns: 1fr;
  }

  .benefit-media {
    min-height: 245px;
  }

  .footer {
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    padding-bottom: 88px;
  }

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

@media (max-width: 440px) {
  .footer {
    grid-template-columns: 1fr;
  }
}

/* Home WOW pass */
.topbar {
  background: rgba(5, 5, 5, .92);
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  box-shadow: 0 1px 0 rgba(255,255,255,.04), 0 18px 60px rgba(0,0,0,.2);
}

.topbar-inner {
  min-height: 76px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 22px;
}

.nav {
  justify-content: center;
  gap: 6px;
}

.nav a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0 13px;
  border-radius: 999px;
  color: rgba(255,255,255,.66);
  font-size: 14px;
  font-weight: 600;
}

.nav a:hover {
  background: rgba(255,255,255,.055);
  color: #fff;
}

.topbar-actions {
  justify-content: flex-end;
}

.topbar-actions .ghost-btn {
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  font-weight: 700;
}

.commerce-cta {
  min-height: 42px;
  border-radius: 999px;
}

.mobile-menu-toggle {
  display: none;
}

body.section-home {
  background:
    radial-gradient(circle at 74% 8%, rgba(255, 16, 40, .18), transparent 30rem),
    radial-gradient(ellipse at 18% 32%, rgba(255, 255, 255, .05), transparent 34rem),
    linear-gradient(180deg, #050505 0%, #080303 54%, #050505 100%);
}

body.section-home .home-hero {
  position: relative;
  min-height: min(820px, calc(100vh - 72px));
  padding: clamp(72px, 9vw, 132px) 0 clamp(62px, 8vw, 104px);
}

body.section-home .home-hero:before {
  content: "";
  position: absolute;
  inset: 8% -8% auto;
  height: 520px;
  z-index: -1;
  background:
    radial-gradient(circle at 26% 26%, rgba(255,16,40,.2), transparent 28%),
    radial-gradient(circle at 78% 42%, rgba(255,255,255,.06), transparent 28%);
  filter: blur(10px);
}

body.section-home .hero h1 {
  max-width: 860px;
  font-size: clamp(58px, 8vw, 118px);
  line-height: .88;
}

body.section-home .hero p {
  max-width: 680px;
  font-size: clamp(19px, 2.1vw, 28px);
  line-height: 1.25;
}

.hero-search {
  max-width: 820px;
}

.hero-search input {
  min-height: 66px;
  border-radius: 18px;
  background: rgba(255,255,255,.075);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}

.home-top-finale {
  grid-template-columns: minmax(0, 1fr) 280px;
  align-items: center;
  max-width: none;
  min-height: 420px;
  margin: 24px 0 0;
  padding: clamp(54px, 8vw, 96px);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 34px;
  background:
    radial-gradient(circle at 80% 20%, rgba(255,16,40,.22), transparent 30%),
    linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.014)),
    rgba(12,12,12,.74);
}

.home-top-finale .finale-ticket {
  position: relative;
  right: auto;
  top: auto;
  width: 260px;
  height: 160px;
  transform: rotate(-8deg);
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  margin-bottom: 12px;
  padding: 0 12px;
  border: 1px solid rgba(255,16,40,.18);
  border-radius: 999px;
  background: rgba(255,16,40,.055);
  color: var(--red-soft);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.steps-grid {
  position: relative;
}

.steps-grid:before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 50px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,16,40,.35), transparent);
}

.steps-grid article {
  position: relative;
  min-height: 210px;
  text-align: center;
}

.steps-grid article > span {
  margin: 0 auto;
}

.steps-grid article i {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  margin: 20px auto 0;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 18px;
  background: rgba(0,0,0,.3);
  font-size: 30px;
  font-style: normal;
  box-shadow: 0 0 34px rgba(255,16,40,.12);
}

.home-categories .product-tile span {
  width: 76px;
  height: 76px;
  border-radius: 22px;
  font-size: 38px;
  box-shadow: 0 0 40px rgba(255,16,40,.14);
}

.home-categories .product-tile {
  min-height: 230px;
}

.benefit-card {
  overflow: hidden;
  border-radius: 22px;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.benefit-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255,16,40,.26);
  box-shadow: 0 28px 100px rgba(0,0,0,.32), 0 0 50px rgba(255,16,40,.11);
}

.benefit-media {
  min-height: 270px;
}

.commerce-name {
  color: rgba(255,255,255,.82);
  font-size: 15px;
  font-weight: 800;
}

.benefit-body h3 {
  font-size: clamp(28px, 3vw, 38px);
}

.benefit-facts span {
  min-height: 32px;
  font-size: 13px;
}

.obtain-btn {
  min-height: 46px;
  border-radius: 999px;
  font-size: 15px;
}

.footer {
  padding-top: 58px;
  font-size: 15px;
}

.footer-logo {
  width: 188px;
}

.footer p {
  max-width: 330px;
  font-size: 14px;
  line-height: 1.55;
}

.footer-column {
  gap: 12px;
}

.footer-column strong {
  font-size: 14px;
}

.footer-column a {
  font-size: 14px;
}

.footer-bottom {
  width: min(1180px, calc(100% - 28px));
  margin: 0 auto;
  padding: 0 0 28px;
  color: rgba(255,255,255,.42);
  font-size: 13px;
}

@media (max-width: 1040px) {
  .topbar-inner {
    grid-template-columns: auto auto auto;
  }

  .nav {
    display: none;
  }

  .mobile-menu-toggle {
    display: grid;
  }
}

@media (max-width: 760px) {
  body.menu-open {
    overflow: hidden;
  }

  .topbar-inner {
    grid-template-columns: auto minmax(0, auto) auto;
  }

  .topbar-actions .hide-sm,
  .topbar-actions .ghost-btn {
    display: none;
  }

  .commerce-cta {
    min-height: 40px;
    padding: 0 12px;
    font-size: 13px;
  }

  .mobile-menu-panel {
    position: fixed;
    inset: 0;
    z-index: 1000;
    width: 100%;
    margin: 0;
    max-height: 100vh;
    overflow-y: auto;
    padding: max(28px, env(safe-area-inset-top)) 22px max(28px, env(safe-area-inset-bottom));
    border: 0;
    border-radius: 0;
    background:
      radial-gradient(circle at 82% 8%, rgba(255,16,40,.18), transparent 24rem),
      linear-gradient(180deg, #050505, #090303);
    box-shadow: none;
  }

  .mobile-menu-panel a {
    min-height: 54px;
    font-size: 20px;
  }

  .mobile-menu-head {
    display: grid;
    gap: 8px;
    margin-bottom: 22px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255,255,255,.1);
  }

  .mobile-menu-head img {
    width: 150px;
  }

  .mobile-menu-head span {
    color: rgba(255,255,255,.54);
  }

  .mobile-menu-panel.is-open {
    display: grid;
    align-content: start;
  }

  .mobile-menu-panel.is-open ~ * {
    pointer-events: none;
  }

  .mobile-menu-toggle {
    position: relative;
    z-index: 1001;
  }

  .mobile-menu-toggle[aria-expanded="true"] {
    position: fixed;
    top: max(16px, env(safe-area-inset-top));
    right: 16px;
    background: rgba(255,255,255,.08);
  }

  .mobile-menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .mobile-menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  body.section-home .home-hero {
    min-height: auto;
    padding-top: 48px;
  }

  body.section-home .hero h1 {
    font-size: clamp(44px, 12vw, 62px);
  }

  .public-search {
    grid-template-columns: 1fr;
  }

  .hero-search input {
    min-height: 58px;
  }

  .quick-access {
    justify-content: center;
  }

  .home-top-finale {
    grid-template-columns: 1fr;
    padding: 34px 22px;
    border-radius: 24px;
  }

  .home-top-finale .finale-ticket {
    width: 210px;
    height: 132px;
    margin: 20px auto 0;
  }

  .steps-grid:before {
    display: none;
  }

  .steps-grid article {
    min-height: 164px;
  }

  .home-categories {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-categories .product-tile {
    min-height: 184px;
    padding: 16px;
  }

  .home-categories .product-tile span {
    width: 58px;
    height: 58px;
    font-size: 30px;
  }

  .benefit-grid,
  .benefit-grid.compact {
    grid-template-columns: 1fr;
  }

  .benefit-media {
    min-height: 260px;
  }

  .footer {
    grid-template-columns: 1fr;
    padding-bottom: 90px;
  }

  .footer-bottom {
    padding-bottom: 92px;
  }
}

/* Benefit detail as premium opportunity page */
.benefit-detail-hero {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(360px, .78fr);
  align-items: center;
  gap: clamp(34px, 6vw, 78px);
  min-height: calc(100vh - 92px);
  padding: clamp(56px, 8vw, 110px) 0 clamp(72px, 9vw, 128px);
}

.benefit-photo-stage {
  position: relative;
  min-height: clamp(480px, 58vw, 720px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .085);
  border-radius: 30px;
  background-size: cover;
  background-position: center;
  box-shadow: 0 42px 120px rgba(0, 0, 0, .42), 0 0 100px rgba(255, 16, 40, .12);
}

.benefit-photo-stage:before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 14%, rgba(255, 16, 40, .34), transparent 30%),
    linear-gradient(180deg, transparent 36%, rgba(0, 0, 0, .72));
}

.benefit-photo-stage .badge {
  position: absolute;
  top: 24px;
  left: 24px;
}

.photo-caption {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
  display: grid;
  gap: 8px;
}

.photo-caption span,
.exclusive-pill {
  color: rgba(255, 255, 255, .72);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.photo-caption strong {
  font-size: clamp(34px, 5vw, 62px);
  line-height: .94;
}

.benefit-detail-copy {
  display: grid;
  gap: 22px;
}

.exclusive-pill {
  width: fit-content;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 16, 40, .24);
  border-radius: 999px;
  padding: 0 13px;
  background: rgba(255, 16, 40, .08);
  color: #fff;
  letter-spacing: 0;
  text-transform: none;
}

.benefit-detail-copy h1 {
  max-width: 640px;
  margin: 0;
  font-size: clamp(54px, 7vw, 96px);
  line-height: .9;
  font-weight: 800;
}

.benefit-detail-copy p {
  max-width: 560px;
  margin: 0;
  color: rgba(255, 255, 255, .66);
  font-size: clamp(19px, 2vw, 24px);
  line-height: 1.35;
}

.benefit-place {
  color: rgba(255, 255, 255, .78);
  font-size: 16px;
  font-weight: 500;
}

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

.urgency-grid div {
  min-height: 112px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, .075);
  border-radius: 18px;
  background:
    radial-gradient(circle at 84% 16%, rgba(255, 16, 40, .14), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, .052), rgba(255, 255, 255, .018)),
    rgba(12, 12, 12, .72);
}

.urgency-grid span {
  display: block;
  font-size: 22px;
}

.urgency-grid strong {
  display: block;
  margin-top: 12px;
  font-size: 32px;
  line-height: 1;
}

.urgency-grid small {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, .52);
}

.detail-actions,
.unlock-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.detail-actions {
  padding: 10px;
  border: 1px solid rgba(255, 16, 40, .18);
  border-radius: 22px;
  background:
    radial-gradient(circle at 34% 0%, rgba(255, 16, 40, .18), transparent 38%),
    rgba(255, 255, 255, .025);
  box-shadow: 0 24px 90px rgba(255, 16, 40, .08);
}

.unlock-benefit-btn {
  position: relative;
  flex: 1 1 240px;
  min-height: 68px;
  overflow: hidden;
  font-size: 18px;
  box-shadow: 0 18px 60px rgba(255, 16, 40, .28), 0 0 36px rgba(255, 16, 40, .18);
  animation: cta-breathe 2.8s ease-in-out infinite;
}

.unlock-benefit-btn:after {
  content: "";
  position: absolute;
  inset: -40% auto -40% -40%;
  width: 42%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .32), transparent);
  transform: rotate(18deg);
  animation: cta-shine 3.4s ease-in-out infinite;
}

.unlock-benefit-btn:disabled {
  cursor: wait;
  opacity: .78;
  animation: none;
}

@keyframes cta-breathe {
  0%, 100% { box-shadow: 0 18px 60px rgba(255, 16, 40, .26), 0 0 34px rgba(255, 16, 40, .16); }
  50% { box-shadow: 0 22px 78px rgba(255, 16, 40, .42), 0 0 48px rgba(255, 16, 40, .28); }
}

@keyframes cta-shine {
  0%, 35% { transform: translateX(0) rotate(18deg); opacity: 0; }
  50% { opacity: .9; }
  75%, 100% { transform: translateX(430%) rotate(18deg); opacity: 0; }
}

.quiet-action {
  width: fit-content;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, .58);
  font: inherit;
  font-weight: 500;
  cursor: pointer;
}

.unlock-panel {
  position: relative;
  display: grid;
  gap: 16px;
  padding: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 16, 40, .22);
  border-radius: 24px;
  background:
    radial-gradient(circle at 84% 16%, rgba(255, 16, 40, .28), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, .065), rgba(255, 255, 255, .02)),
    rgba(10, 10, 10, .78);
  box-shadow: 0 26px 90px rgba(255, 16, 40, .1);
}

.live-unlock-panel {
  animation: unlock-pop .46s cubic-bezier(.2, .9, .2, 1.2);
}

.unlock-panel.is-celebration:before {
  content: "";
  position: absolute;
  inset: auto -20% -42% -20%;
  height: 70%;
  background: radial-gradient(ellipse, rgba(255, 16, 40, .38), transparent 66%);
  filter: blur(24px);
  animation: celebration-pulse 2.4s ease-in-out infinite;
}

.unlock-kicker {
  color: #fff;
  font-weight: 700;
}

.unlock-panel h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 42px);
}

.premium-code {
  min-width: 0;
  width: 100%;
  background: rgba(255, 16, 40, .08);
}

.unlock-panel > small {
  color: rgba(255, 255, 255, .58);
}

@keyframes celebration-pulse {
  0%, 100% { opacity: .42; transform: scale(1); }
  50% { opacity: .86; transform: scale(1.04); }
}

@keyframes unlock-pop {
  from { opacity: 0; transform: translateY(18px) scale(.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.activation-message {
  display: grid;
  gap: 14px;
  margin-top: 12px;
  padding: 18px;
  border: 1px solid rgba(255, 16, 40, .22);
  border-radius: 18px;
  background:
    radial-gradient(circle at 82% 12%, rgba(255, 16, 40, .18), transparent 36%),
    rgba(255, 255, 255, .035);
}

.activation-message strong {
  color: rgba(255, 255, 255, .82);
}

.confetti-layer {
  position: fixed;
  inset: 0;
  z-index: 1000;
  overflow: hidden;
  pointer-events: none;
}

.confetti-layer span {
  position: absolute;
  top: -18px;
  width: 9px;
  height: 14px;
  border-radius: 3px;
  animation: confetti-fall 2.25s cubic-bezier(.16, .78, .32, 1) forwards;
}

.unlock-modal-open {
  overflow: hidden;
}

.unlock-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1500;
  display: grid;
  place-items: center;
  padding: 22px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 16, 40, .22), transparent 32rem),
    radial-gradient(circle at 50% 100%, rgba(255, 16, 40, .18), transparent 24rem),
    rgba(0, 0, 0, .76);
  backdrop-filter: blur(18px);
  animation: modal-fade-in .22s ease-out;
}

.modal-confetti-layer {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.modal-confetti-layer span {
  position: absolute;
  top: -20px;
  width: 11px;
  height: 18px;
  border-radius: 4px;
  opacity: .95;
  box-shadow: 0 0 20px rgba(255, 16, 40, .34);
  animation: confetti-fall 4.2s cubic-bezier(.16, .78, .32, 1) infinite;
}

.unlock-modal {
  position: relative;
  z-index: 1;
  width: min(540px, 100%);
  display: grid;
  gap: 18px;
  padding: clamp(24px, 5vw, 38px);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 28px;
  background:
    radial-gradient(circle at 78% 0%, rgba(255, 16, 40, .34), transparent 17rem),
    linear-gradient(180deg, rgba(255, 255, 255, .11), rgba(255, 255, 255, .045)),
    #080808;
  box-shadow:
    0 42px 120px rgba(0, 0, 0, .58),
    0 0 92px rgba(255, 16, 40, .22);
  text-align: center;
  animation: unlock-pop .46s cubic-bezier(.2, .9, .2, 1.12);
}

.unlock-modal:before {
  content: "";
  position: absolute;
  inset: auto 12% -22% 12%;
  height: 42%;
  border-radius: 999px;
  background: radial-gradient(ellipse, rgba(255, 16, 40, .52), transparent 68%);
  filter: blur(28px);
  pointer-events: none;
}

.unlock-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.unlock-modal .unlock-kicker {
  width: fit-content;
  justify-self: center;
  padding: 8px 12px;
  border: 1px solid rgba(255, 16, 40, .28);
  border-radius: 999px;
  background: rgba(255, 16, 40, .12);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}

.unlock-modal h2 {
  margin: 0;
  font-size: clamp(30px, 6vw, 54px);
  line-height: .98;
}

.unlock-modal p {
  max-width: 390px;
  margin: 0 auto;
  color: rgba(255, 255, 255, .66);
  font-size: 16px;
}

.unlock-modal .premium-code {
  position: relative;
  z-index: 1;
  padding: 18px;
  border: 1px solid rgba(255, 16, 40, .2);
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(255, 16, 40, .16), rgba(255, 255, 255, .045)),
    rgba(255, 255, 255, .04);
}

.unlock-modal .premium-code strong {
  font-size: clamp(28px, 7vw, 44px);
  letter-spacing: .04em;
}

.unlock-modal > small {
  color: rgba(255, 255, 255, .56);
}

.unlock-howto {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 18px;
  background: rgba(255, 255, 255, .045);
  text-align: left;
  animation: unlock-pop .24s ease-out;
}

.unlock-howto[hidden] {
  display: none;
}

.unlock-howto strong {
  color: #fff;
  font-size: 14px;
}

.unlock-howto ol {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 19px;
  color: rgba(255, 255, 255, .66);
  font-size: 14px;
  line-height: 1.45;
}

.unlock-modal .unlock-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.unlock-modal .unlock-actions .primary-btn {
  grid-column: 1 / -1;
}

@media (max-width: 520px) {
  .unlock-modal-overlay {
    align-items: center;
    padding: 14px;
  }

  .unlock-modal {
    border-radius: 24px;
  }

  .unlock-modal .unlock-actions {
    grid-template-columns: 1fr;
  }

  .unlock-modal .unlock-actions .primary-btn {
    grid-column: auto;
  }
}

.activate-benefit-form.is-unlocked .primary-btn,
.mobile-claim-bar.is-unlocked .primary-btn {
  opacity: .72;
  cursor: default;
  box-shadow: none;
}

@keyframes modal-fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes confetti-fall {
  0% {
    opacity: 0;
    transform: translate3d(0, -30px, 0) rotate(0deg);
  }
  12% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate3d(var(--fall-x), 112vh, 0) rotate(var(--spin));
  }
}

.experience-section,
.commerce-story,
.location-section {
  position: relative;
}

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

.experience-point {
  min-height: 150px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, .075);
  border-radius: 20px;
  background:
    radial-gradient(circle at 82% 16%, rgba(255, 16, 40, .14), transparent 34%),
    rgba(12, 12, 12, .72);
}

.experience-point span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: rgba(255, 16, 40, .14);
  color: #fff;
}

.experience-point strong {
  display: block;
  margin-top: 34px;
  font-size: 20px;
}

.commerce-story {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, .78fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.commerce-photo {
  min-height: 440px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 28px;
  background-size: cover;
  background-position: center;
  box-shadow: 0 32px 100px rgba(0, 0, 0, .36);
}

.commerce-story-copy {
  display: grid;
  gap: 18px;
}

.commerce-story-copy h2,
.location-section h2 {
  margin: 0;
  font-size: clamp(40px, 5vw, 72px);
  line-height: .95;
}

.commerce-story-copy p,
.location-section p {
  color: rgba(255, 255, 255, .62);
  font-size: 18px;
}

.commerce-facts {
  display: grid;
  gap: 10px;
  color: rgba(255, 255, 255, .58);
}

.location-section {
  display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(320px, 1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.location-card {
  position: relative;
  min-height: 340px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .075);
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 16, 40, .22), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, .045), rgba(255, 255, 255, .014)),
    rgba(10, 10, 10, .76);
}

.location-card span {
  position: absolute;
  left: 28px;
  top: 28px;
  color: rgba(255, 255, 255, .76);
  font-weight: 700;
}

.map-pin {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 42px;
  height: 42px;
  border-radius: 50% 50% 50% 8px;
  background: var(--red);
  box-shadow: 0 0 46px rgba(255, 16, 40, .55);
  transform: translate(-50%, -50%) rotate(-45deg);
}

.map-pin:after {
  content: "";
  position: absolute;
  inset: 13px;
  border-radius: 50%;
  background: #080808;
}

.map-line {
  position: absolute;
  width: 120%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 16, 40, .2), transparent);
}

.map-line.one {
  left: -10%;
  top: 38%;
  transform: rotate(-12deg);
}

.map-line.two {
  left: -10%;
  top: 62%;
  transform: rotate(16deg);
}

@media (max-width: 940px) {
  .benefit-detail-hero,
  .commerce-story,
  .location-section {
    grid-template-columns: 1fr;
  }

  .benefit-photo-stage,
  .commerce-photo {
    min-height: 420px;
  }

  .experience-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .benefit-detail-hero {
    padding: 42px 0 76px;
  }

  .benefit-detail-copy h1 {
    font-size: 48px;
  }

  .benefit-photo-stage {
    min-height: 360px;
    border-radius: 22px;
  }

  .urgency-grid,
  .experience-grid {
    grid-template-columns: 1fr 1fr;
  }

  .urgency-grid div {
    min-height: 104px;
    padding: 14px;
  }

  .urgency-grid strong {
    font-size: 28px;
  }

  .detail-actions,
  .unlock-actions {
    flex-direction: column;
  }

  .detail-actions > *,
  .unlock-actions > * {
    width: 100%;
  }

  .unlock-benefit-btn {
    flex-basis: auto;
    min-height: 66px;
  }

  .experience-point {
    min-height: 132px;
    padding: 16px;
  }

  .experience-point strong {
    margin-top: 24px;
    font-size: 17px;
  }

  .commerce-photo,
  .location-card {
    min-height: 300px;
    border-radius: 22px;
  }
}

/* Public commerce profile */
.commerce-profile-hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: min(760px, calc(100vh - 92px));
  margin-top: 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 34px;
  padding: clamp(28px, 6vw, 72px);
  background-size: cover;
  background-position: center;
  box-shadow: 0 42px 130px rgba(0, 0, 0, .44), 0 0 100px rgba(255, 16, 40, .08);
}

.commerce-profile-hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 18%, rgba(255, 16, 40, .28), transparent 30%),
    linear-gradient(180deg, rgba(0, 0, 0, .08), rgba(0, 0, 0, .78));
}

.commerce-hero-content {
  position: relative;
  display: grid;
  gap: 20px;
  max-width: 820px;
}

.commerce-hero-content h1 {
  margin: 0;
  font-size: clamp(72px, 11vw, 150px);
  line-height: .82;
  font-weight: 800;
}

.commerce-hero-content p {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 255, 255, .76);
  font-size: clamp(20px, 2.1vw, 28px);
  line-height: 1.28;
}

.commerce-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.commerce-hero-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 999px;
  padding: 0 14px;
  background: rgba(0, 0, 0, .3);
  color: rgba(255, 255, 255, .82);
  backdrop-filter: blur(14px);
}

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

.commerce-stats div,
.commerce-info-panel,
.featured-commerce-benefit {
  border: 1px solid rgba(255, 255, 255, .075);
  border-radius: 24px;
  background:
    radial-gradient(circle at 84% 18%, rgba(255, 16, 40, .12), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, .048), rgba(255, 255, 255, .016)),
    rgba(12, 12, 12, .72);
}

.commerce-stats div {
  min-height: 160px;
  padding: 22px;
}

.commerce-stats span {
  display: block;
  font-size: 24px;
}

.commerce-stats strong {
  display: block;
  margin-top: 24px;
  font-size: clamp(28px, 3.8vw, 52px);
  line-height: .95;
}

.commerce-stats small {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, .54);
}

.featured-commerce-benefit {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(280px, .58fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
  overflow: hidden;
  padding: clamp(24px, 5vw, 58px);
}

.featured-commerce-benefit:before {
  content: "";
  position: absolute;
  inset: auto -12% -38% -12%;
  height: 64%;
  background: radial-gradient(ellipse, rgba(255, 16, 40, .24), transparent 66%);
  filter: blur(30px);
}

.featured-benefit-copy {
  position: relative;
  display: grid;
  gap: 18px;
}

.featured-benefit-copy h2 {
  max-width: 640px;
  margin: 0;
  font-size: clamp(42px, 6vw, 84px);
  line-height: .92;
}

.featured-benefit-copy p {
  max-width: 560px;
  margin: 0;
  color: rgba(255, 255, 255, .62);
  font-size: 19px;
}

.featured-benefit-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 260px;
  overflow: hidden;
  border: 1px solid rgba(255, 16, 40, .18);
  border-radius: 26px;
  background:
    radial-gradient(circle at 50% 40%, rgba(255, 16, 40, .34), transparent 36%),
    linear-gradient(135deg, rgba(255, 16, 40, .18), rgba(255, 255, 255, .026));
  box-shadow: inset 0 0 70px rgba(255, 16, 40, .08), 0 0 80px rgba(255, 16, 40, .1);
}

.featured-benefit-visual:before {
  content: "";
  width: 220px;
  height: 132px;
  border: 2px solid rgba(255, 255, 255, .2);
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(255, 37, 61, .86), rgba(128, 0, 20, .76));
  transform: rotate(-9deg);
  box-shadow: 0 0 64px rgba(255, 16, 40, .28);
}

.featured-benefit-visual span {
  position: absolute;
  color: rgba(255, 255, 255, .86);
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.commerce-benefit-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.commerce-gallery {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  grid-template-rows: 240px 240px;
  gap: 14px;
}

.commerce-gallery div {
  min-height: 220px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .075);
  border-radius: 22px;
  background-size: cover;
  background-position: center;
  box-shadow: 0 24px 80px rgba(0, 0, 0, .22);
}

.commerce-gallery div:first-child {
  grid-row: span 2;
}

.commerce-about-section {
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(320px, .72fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
}

.commerce-about-section h2 {
  margin: 0;
  font-size: clamp(44px, 6vw, 86px);
  line-height: .9;
}

.commerce-about-section p {
  max-width: 680px;
  color: rgba(255, 255, 255, .66);
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.34;
}

.commerce-info-panel {
  display: grid;
  gap: 2px;
  padding: 10px;
}

.commerce-info-panel div {
  display: grid;
  gap: 6px;
  padding: 18px;
  border-radius: 16px;
}

.commerce-info-panel div + div {
  border-top: 1px solid rgba(255, 255, 255, .065);
}

.commerce-info-panel span {
  color: rgba(255, 255, 255, .52);
  font-size: 13px;
}

.commerce-info-panel strong {
  color: rgba(255, 255, 255, .86);
  font-size: 16px;
  line-height: 1.35;
}

@media (max-width: 940px) {
  .featured-commerce-benefit,
  .commerce-about-section {
    grid-template-columns: 1fr;
  }

  .commerce-gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: none;
  }

  .commerce-gallery div:first-child {
    grid-row: auto;
    grid-column: span 2;
  }
}

@media (max-width: 620px) {
  .commerce-profile-hero {
    min-height: 620px;
    border-radius: 24px;
    padding: 24px;
  }

  .commerce-hero-content h1 {
    font-size: 62px;
  }

  .commerce-hero-content p {
    font-size: 20px;
  }

  .commerce-stats,
  .commerce-benefit-grid,
  .commerce-gallery {
    grid-template-columns: 1fr;
  }

  .commerce-gallery div:first-child {
    grid-column: auto;
  }

  .commerce-stats div {
    min-height: 132px;
  }

  .featured-benefit-visual {
    min-height: 220px;
  }
}

/* Personal account control center */
.account-hero {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, .72fr);
  gap: clamp(28px, 6vw, 78px);
  align-items: end;
  min-height: 520px;
  padding: clamp(64px, 9vw, 124px) 0 clamp(52px, 7vw, 96px);
}

.account-hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(58px, 8vw, 112px);
  line-height: .9;
  font-weight: 800;
}

.account-hero p {
  max-width: 620px;
  color: rgba(255, 255, 255, .64);
  font-size: clamp(19px, 2vw, 25px);
  line-height: 1.35;
}

.account-summary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.account-summary div {
  min-height: 138px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, .075);
  border-radius: 22px;
  background:
    radial-gradient(circle at 82% 16%, rgba(255, 16, 40, .16), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, .052), rgba(255, 255, 255, .018)),
    rgba(12, 12, 12, .72);
  box-shadow: 0 24px 80px rgba(0, 0, 0, .22);
}

.account-summary strong {
  display: block;
  font-size: clamp(38px, 5vw, 64px);
  line-height: .9;
}

.account-summary span {
  display: block;
  margin-top: 14px;
  color: rgba(255, 255, 255, .58);
}

.account-section {
  position: relative;
}

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

.wallet-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .085);
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .048), rgba(255, 255, 255, .018)),
    rgba(12, 12, 12, .74);
  box-shadow: 0 28px 100px rgba(0, 0, 0, .28), 0 0 60px rgba(255, 16, 40, .06);
}

.wallet-photo {
  min-height: 220px;
  background-size: cover;
  background-position: center;
}

.wallet-body {
  display: grid;
  gap: 14px;
  padding: 22px;
}

.wallet-body > span {
  color: rgba(255, 255, 255, .58);
  font-weight: 600;
}

.wallet-body h3 {
  margin: 0;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1;
}

.wallet-code {
  padding: 16px;
  border: 1px solid rgba(255, 16, 40, .22);
  border-radius: 16px;
  background: rgba(255, 16, 40, .07);
}

.wallet-code small {
  display: block;
  color: rgba(255, 255, 255, .48);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.wallet-code strong {
  display: block;
  margin-top: 6px;
  font-size: 28px;
}

.wallet-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: rgba(255, 255, 255, .56);
  font-size: 13px;
}

.wallet-meta span {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, .075);
  border-radius: 999px;
  padding: 0 10px;
  background: rgba(255, 255, 255, .025);
}

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

.expiring-card {
  display: grid;
  gap: 12px;
  min-height: 170px;
  padding: 20px;
  border: 1px solid rgba(255, 16, 40, .16);
  border-radius: 22px;
  background:
    radial-gradient(circle at 84% 16%, rgba(255, 16, 40, .2), transparent 36%),
    rgba(12, 12, 12, .72);
}

.expiring-card span {
  color: #ffbdc5;
  font-size: 13px;
  font-weight: 700;
}

.expiring-card strong {
  font-size: 24px;
  line-height: 1.05;
}

.expiring-card small {
  color: rgba(255, 255, 255, .56);
}

.history-timeline {
  display: grid;
  gap: 12px;
  position: relative;
}

.history-timeline article {
  position: relative;
  display: grid;
  gap: 8px;
  padding: 18px 18px 18px 48px;
  border: 1px solid rgba(255, 255, 255, .075);
  border-radius: 18px;
  background: rgba(12, 12, 12, .72);
}

.history-timeline article:before {
  content: "";
  position: absolute;
  left: 20px;
  top: 22px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 22px rgba(255, 16, 40, .42);
}

.history-timeline span {
  color: rgba(255, 255, 255, .58);
  font-size: 13px;
}

.history-timeline strong {
  font-size: 22px;
}

.history-timeline small {
  color: rgba(255, 255, 255, .52);
}

.account-empty {
  position: relative;
  display: grid;
  justify-items: start;
  gap: 14px;
  min-height: 280px;
  overflow: hidden;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, .075);
  border-radius: 26px;
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 16, 40, .14), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, .045), rgba(255, 255, 255, .016)),
    rgba(12, 12, 12, .72);
}

.account-empty.compact {
  min-height: 160px;
}

.account-empty h3 {
  margin: 0;
  font-size: clamp(26px, 4vw, 42px);
}

.account-empty p {
  max-width: 520px;
  margin: 0;
  color: rgba(255, 255, 255, .58);
}

.empty-orbit {
  position: absolute;
  right: 8%;
  bottom: 12%;
  width: 210px;
  height: 120px;
  border: 1px solid rgba(255, 16, 40, .22);
  border-radius: 999px;
  transform: rotate(-16deg);
  box-shadow: 0 0 60px rgba(255, 16, 40, .12);
}

@media (max-width: 940px) {
  .account-hero,
  .wallet-grid {
    grid-template-columns: 1fr;
  }

  .expiring-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .account-hero {
    min-height: auto;
    padding: 56px 0 42px;
  }

  .account-hero h1 {
    font-size: 54px;
  }

  .account-summary,
  .expiring-grid {
    grid-template-columns: 1fr 1fr;
  }

  .account-summary div {
    min-height: 116px;
    padding: 16px;
  }

  .wallet-photo {
    min-height: 180px;
  }

  .wallet-body {
    padding: 18px;
  }

  .wallet-code strong {
    font-size: 24px;
  }

  .expiring-card {
    min-height: 150px;
    padding: 16px;
  }
}

/* Explore categories */
.explore-hero,
.map-hero,
.commerce-access-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .72fr);
  gap: 48px;
  align-items: center;
  min-height: 520px;
  padding: 84px 0 64px;
}

.explore-hero:before,
.map-hero:before,
.commerce-access-hero:before {
  content: "";
  position: absolute;
  inset: -80px -8vw auto;
  height: 520px;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 16%, rgba(255, 16, 40, .2), transparent 28%),
    radial-gradient(circle at 80% 26%, rgba(255, 16, 40, .13), transparent 30%);
  filter: blur(8px);
  z-index: -1;
}

.explore-hero h1,
.map-hero h1,
.commerce-access-hero h1 {
  max-width: 820px;
  margin: 12px 0 0;
  font-size: clamp(58px, 8vw, 112px);
  line-height: .88;
  letter-spacing: 0;
}

.explore-hero p,
.map-hero p,
.commerce-access-hero p {
  max-width: 560px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, .64);
  font-size: clamp(19px, 2vw, 26px);
  font-weight: 400;
  line-height: 1.18;
}

.explore-hero-visual,
.commerce-access-card {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 30px;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 16, 40, .34), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, .075), rgba(255, 255, 255, .018)),
    rgba(12, 12, 12, .74);
  box-shadow: 0 34px 110px rgba(0, 0, 0, .42);
}

.explore-hero-visual span {
  position: absolute;
  border: 1px solid rgba(255, 16, 40, .26);
  border-radius: 999px;
  box-shadow: 0 0 70px rgba(255, 16, 40, .16);
}

.explore-hero-visual span:nth-child(1) {
  inset: 74px 42px;
  transform: rotate(-16deg);
}

.explore-hero-visual span:nth-child(2) {
  inset: 118px 82px;
  transform: rotate(18deg);
}

.explore-hero-visual span:nth-child(3) {
  width: 120px;
  height: 120px;
  left: calc(50% - 60px);
  top: calc(50% - 60px);
  border-radius: 28px;
  background: var(--red);
  box-shadow: 0 0 90px rgba(255, 16, 40, .52);
  transform: rotate(-10deg);
}

.category-experience-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.category-experience-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 340px;
  overflow: hidden;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, .075);
  border-radius: 24px;
  background-position: center;
  background-size: cover;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 28px 90px rgba(0, 0, 0, .38);
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.category-experience-card:before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 70% 24%, rgba(255, 16, 40, .28), transparent 34%),
    linear-gradient(180deg, transparent, rgba(0, 0, 0, .74));
  opacity: .8;
}

.category-experience-card > * {
  position: relative;
  z-index: 1;
}

.category-experience-card span {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: auto;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 16px;
  background: rgba(0, 0, 0, .34);
  backdrop-filter: blur(14px);
}

.category-experience-card strong {
  margin-top: 120px;
  font-size: clamp(28px, 3vw, 42px);
  line-height: .94;
}

.category-experience-card small {
  max-width: 220px;
  margin-top: 10px;
  color: rgba(255, 255, 255, .66);
  font-size: 14px;
  line-height: 1.35;
}

.category-experience-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 16, 40, .32);
  box-shadow: 0 34px 120px rgba(255, 16, 40, .16);
}

/* Premium map */
.map-hero {
  grid-template-columns: minmax(0, 1fr);
  min-height: 420px;
}

.map-premium-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .72fr);
  gap: 24px;
  align-items: stretch;
  margin-bottom: 96px;
}

.premium-map-stage {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .075);
  border-radius: 32px;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, .045), rgba(255, 255, 255, .01)),
    radial-gradient(circle at 38% 54%, rgba(255, 16, 40, .2), transparent 30%),
    #080808;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06), 0 36px 120px rgba(0,0,0,.42);
}

.premium-map-stage:before,
.premium-map-stage:after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255, 16, 40, .16);
  border-radius: 999px;
  transform: rotate(-18deg);
}

.premium-map-stage:before {
  inset: 110px 70px 160px;
}

.premium-map-stage:after {
  inset: 176px 138px 226px;
  transform: rotate(22deg);
}

.city-map-glow {
  position: absolute;
  width: 280px;
  height: 280px;
  left: calc(50% - 140px);
  top: calc(50% - 140px);
  border-radius: 50%;
  background: rgba(255, 16, 40, .2);
  filter: blur(34px);
}

.premium-map-stage strong {
  position: absolute;
  left: 42px;
  bottom: 76px;
  font-size: clamp(54px, 7vw, 102px);
  line-height: .86;
}

.premium-map-stage small {
  position: absolute;
  left: 46px;
  bottom: 38px;
  max-width: 420px;
  color: rgba(255, 255, 255, .58);
  font-size: 17px;
}

.city-chip {
  position: absolute;
  z-index: 2;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border: 1px solid rgba(255, 16, 40, .24);
  border-radius: 999px;
  background: rgba(18, 18, 18, .72);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 0 48px rgba(255, 16, 40, .14);
  backdrop-filter: blur(14px);
}

.city-chip:before {
  content: "";
  width: 8px;
  height: 8px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 20px rgba(255, 16, 40, .7);
}

.city-chip.costanera { left: 16%; top: 22%; }
.city-chip.centro { left: 48%; top: 38%; }
.city-chip.san-isidro { right: 13%; top: 20%; }
.city-chip.circuito { right: 18%; bottom: 26%; }

.premium-map-list {
  display: grid;
  align-content: start;
  gap: 14px;
}

.premium-map-item {
  display: grid;
  gap: 8px;
  min-height: 126px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, .075);
  border-radius: 22px;
  background:
    radial-gradient(circle at 88% 16%, rgba(255, 16, 40, .13), transparent 30%),
    rgba(12, 12, 12, .72);
  color: #fff;
  text-decoration: none;
  transition: transform .2s ease, border-color .2s ease;
}

.premium-map-item:hover {
  transform: translateX(6px);
  border-color: rgba(255, 16, 40, .28);
}

.premium-map-item span {
  color: var(--red-soft);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.premium-map-item strong {
  font-size: 26px;
  line-height: 1;
}

.premium-map-item small {
  color: rgba(255, 255, 255, .54);
}

/* Commerce access */
.commerce-access-card {
  display: grid;
  align-content: end;
  gap: 14px;
  padding: 28px;
}

.commerce-access-card:before {
  content: "";
  position: absolute;
  right: 34px;
  top: 42px;
  width: 176px;
  height: 112px;
  border-radius: 24px;
  background: var(--red);
  box-shadow: 0 0 90px rgba(255, 16, 40, .48);
  transform: rotate(-10deg);
}

.commerce-access-card span,
.commerce-access-card strong,
.commerce-access-card small {
  position: relative;
  z-index: 1;
}

.commerce-access-card span {
  color: var(--red-soft);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.commerce-access-card strong {
  max-width: 360px;
  font-size: clamp(34px, 4vw, 58px);
  line-height: .92;
}

.commerce-access-card small {
  max-width: 300px;
  color: rgba(255, 255, 255, .56);
  font-size: 16px;
}

@media (max-width: 1040px) {
  .category-experience-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .map-premium-layout,
  .explore-hero,
  .commerce-access-hero {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .explore-hero,
  .map-hero,
  .commerce-access-hero {
    min-height: auto;
    padding: 54px 0 44px;
  }

  .explore-hero h1,
  .map-hero h1,
  .commerce-access-hero h1 {
    font-size: 56px;
  }

  .explore-hero-visual,
  .commerce-access-card {
    min-height: 280px;
    border-radius: 24px;
  }

  .category-experience-grid {
    grid-template-columns: 1fr;
  }

  .category-experience-card {
    min-height: 250px;
  }

  .map-premium-layout {
    grid-template-columns: 1fr;
    margin-bottom: 60px;
  }

  .premium-map-stage {
    min-height: 460px;
    border-radius: 24px;
  }

  .premium-map-stage strong {
    left: 22px;
    bottom: 74px;
    font-size: 54px;
  }

  .premium-map-stage small {
    left: 24px;
    right: 24px;
    bottom: 28px;
  }

  .city-chip.costanera { left: 8%; top: 18%; }
  .city-chip.centro { left: 36%; top: 38%; }
  .city-chip.san-isidro { right: 7%; top: 24%; }
  .city-chip.circuito { right: 8%; bottom: 34%; }
}

.commerce-dashboard-header {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: flex-end;
  padding: 48px 0 28px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.commerce-dashboard-header:before {
  content: "";
  position: absolute;
  inset: -80px -8vw auto;
  height: 280px;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 12%, rgba(255, 16, 40, .12), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, .018), transparent);
  z-index: -1;
}

.commerce-dashboard-header h1 {
  margin: 10px 0 0;
  font-size: clamp(34px, 4vw, 56px);
  line-height: .95;
}

.commerce-dashboard-header p {
  max-width: 620px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, .58);
  font-size: 16px;
  line-height: 1.45;
}

.commerce-header-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
  align-items: center;
}

.status-pill {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 999px;
  background: rgba(255, 255, 255, .045);
  color: rgba(255, 255, 255, .72);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.commerce-metric-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 22px 0 30px;
}

.commerce-metric-grid div,
.commerce-form-panel,
.commerce-live-panel,
.commerce-benefit-list,
.commerce-empty-panel {
  border: 1px solid rgba(255, 255, 255, .09);
  background: rgba(14, 14, 15, .86);
  box-shadow: 0 18px 55px rgba(0, 0, 0, .22);
}

.commerce-metric-grid div {
  display: grid;
  gap: 6px;
  min-height: 118px;
  padding: 18px;
  border-radius: 16px;
}

.commerce-metric-grid span {
  color: rgba(255, 255, 255, .54);
  font-size: 13px;
  font-weight: 600;
}

.commerce-metric-grid strong {
  font-size: clamp(34px, 4vw, 48px);
  line-height: .9;
}

.commerce-metric-grid small {
  color: rgba(255, 255, 255, .42);
  font-size: 13px;
}

.commerce-console {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, .72fr);
  gap: 18px;
  align-items: start;
}

.commerce-form-panel,
.commerce-live-panel,
.commerce-empty-panel {
  border-radius: 18px;
  padding: 22px;
}

.commerce-form-panel {
  display: grid;
  gap: 18px;
}

.console-head {
  display: grid;
  gap: 8px;
  margin-bottom: 4px;
}

.console-head h2 {
  margin: 0;
  font-size: 24px;
  line-height: 1.1;
}

.console-head p {
  max-width: 520px;
  margin: 0;
  color: rgba(255, 255, 255, .5);
  font-size: 14px;
  line-height: 1.45;
}

.commerce-form-panel label {
  color: rgba(255, 255, 255, .6);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .02em;
}

.commerce-coupon-list,
.commerce-benefit-list {
  display: grid;
  gap: 10px;
}

.commerce-live-panel .commerce-coupon-list,
.commerce-benefit-list {
  margin-top: 16px;
}

.commerce-coupon-row,
.commerce-benefit-row,
.commerce-mini-empty {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  min-height: 86px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, .075);
  border-radius: 14px;
  background: rgba(255, 255, 255, .025);
}

.commerce-coupon-row h3,
.commerce-benefit-row strong,
.commerce-mini-empty strong {
  margin: 6px 0 0;
  font-size: 18px;
  line-height: 1;
}

.commerce-coupon-row p,
.commerce-benefit-row span,
.commerce-mini-empty small {
  display: block;
  margin: 6px 0 0;
  color: rgba(255, 255, 255, .48);
  font-size: 13px;
}

.commerce-benefits-console {
  margin-bottom: 72px;
}

.commerce-benefit-list {
  padding: 12px;
  border-radius: 18px;
}

.commerce-empty-panel {
  min-height: 280px;
  display: grid;
  align-content: center;
  gap: 12px;
}

.commerce-empty-panel h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1;
}

.commerce-empty-panel p {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 255, 255, .58);
}

@media (max-width: 940px) {
  .commerce-dashboard-header,
  .commerce-console {
    grid-template-columns: 1fr;
  }

  .commerce-dashboard-header {
    display: grid;
    align-items: start;
  }

  .commerce-header-actions {
    justify-content: flex-start;
  }

  .commerce-metric-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .commerce-dashboard-header {
    padding: 34px 0 22px;
  }

  .commerce-dashboard-header h1 {
    font-size: 34px;
  }

  .commerce-metric-grid {
    grid-template-columns: 1fr;
    margin-bottom: 24px;
  }

  .commerce-form-panel,
  .commerce-live-panel,
  .commerce-empty-panel {
    padding: 16px;
    border-radius: 16px;
  }

  .commerce-coupon-row,
  .commerce-benefit-row,
  .commerce-mini-empty {
    display: grid;
    min-height: 110px;
  }
}

/* Merchant app dashboard */
body.section-panel-comercio .site-shell,
body.section-dashboard .site-shell {
  width: min(1440px, calc(100% - 24px));
}

body.section-panel-comercio .topbar,
body.section-dashboard .topbar {
  min-height: 64px;
}

.merchant-dashboard {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  padding: 22px 0 72px;
}

.merchant-sidebar {
  position: sticky;
  top: 86px;
  min-height: calc(100vh - 108px);
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 18px;
  background: rgba(12, 12, 13, .92);
  box-shadow: 0 18px 60px rgba(0, 0, 0, .24);
}

.merchant-sidebar-brand {
  display: flex;
  gap: 12px;
  align-items: center;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.merchant-avatar {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: #1d1d20;
  color: #fff;
  font-weight: 800;
}

.merchant-sidebar-brand strong {
  display: block;
  font-size: 15px;
  line-height: 1.1;
}

.merchant-sidebar-brand small {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, .46);
  font-size: 12px;
  text-transform: capitalize;
}

.merchant-side-nav {
  display: grid;
  gap: 4px;
}

.merchant-side-nav a {
  min-height: 40px;
  display: flex;
  align-items: center;
  padding: 0 12px;
  border-radius: 10px;
  color: rgba(255, 255, 255, .62);
  font-size: 14px;
  font-weight: 650;
}

.merchant-side-nav a:hover,
.merchant-side-nav a.is-active {
  background: rgba(255, 255, 255, .06);
  color: #fff;
}

.merchant-side-nav a.is-active {
  box-shadow: inset 3px 0 0 var(--red);
}

.merchant-sidebar-note {
  margin-top: auto;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 14px;
  background: rgba(255, 255, 255, .035);
}

.merchant-sidebar-note span {
  color: rgba(255, 255, 255, .7);
  font-size: 12px;
  font-weight: 800;
}

.merchant-sidebar-note p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, .46);
  font-size: 13px;
  line-height: 1.45;
}

.merchant-main {
  min-width: 0;
  display: grid;
  gap: 18px;
}

.merchant-top,
.merchant-panel,
.merchant-stats article {
  border: 1px solid rgba(255, 255, 255, .09);
  background: rgba(13, 13, 15, .9);
  box-shadow: 0 18px 55px rgba(0, 0, 0, .18);
}

.merchant-top {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  min-height: 96px;
  padding: 20px 22px;
  border-radius: 18px;
}

.merchant-top span {
  color: rgba(255, 255, 255, .48);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.merchant-top h1 {
  margin: 6px 0 0;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1;
}

.merchant-top-actions {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: flex-end;
}

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

.merchant-stats article {
  display: grid;
  gap: 6px;
  min-height: 118px;
  padding: 18px;
  border-radius: 16px;
}

.merchant-stats span {
  color: rgba(255, 255, 255, .56);
  font-size: 13px;
  font-weight: 700;
}

.merchant-stats strong {
  font-size: 42px;
  line-height: .9;
}

.merchant-stats small {
  color: rgba(255, 255, 255, .42);
}

.merchant-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .78fr);
  gap: 18px;
  align-items: start;
}

.merchant-panel {
  border-radius: 18px;
  padding: 20px;
}

.merchant-panel-head {
  display: grid;
  gap: 6px;
  margin-bottom: 18px;
}

.merchant-panel-head h2,
.merchant-panel h2 {
  margin: 0;
  font-size: 22px;
  line-height: 1.1;
}

.merchant-panel-head p,
.merchant-panel p {
  margin: 0;
  color: rgba(255, 255, 255, .48);
  font-size: 14px;
  line-height: 1.45;
}

.merchant-form {
  display: grid;
  gap: 15px;
}

.merchant-form label {
  color: rgba(255, 255, 255, .58);
  font-size: 12px;
  font-weight: 750;
}

.merchant-form input,
.merchant-form select,
.merchant-form textarea {
  min-height: 42px;
  border-radius: 10px;
  background: rgba(0, 0, 0, .28);
}

.merchant-form textarea {
  min-height: 92px;
}

.merchant-table,
.merchant-benefit-table {
  display: grid;
  gap: 8px;
}

.merchant-table-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 12px;
  align-items: center;
  min-height: 64px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, .075);
  border-radius: 12px;
  background: rgba(255, 255, 255, .025);
}

.merchant-table-row strong,
.merchant-benefit-table strong {
  display: block;
  font-size: 14px;
}

.merchant-table-row span {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, .45);
  font-size: 12px;
}

.merchant-table-row small {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .06);
  color: rgba(255, 255, 255, .62);
  font-weight: 750;
  text-transform: capitalize;
}

.merchant-benefits-panel {
  margin-bottom: 0;
}

.merchant-benefit-table article {
  display: grid;
  grid-template-columns: minmax(220px, 1.4fr) repeat(4, minmax(110px, 1fr));
  gap: 12px;
  align-items: center;
  min-height: 54px;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
}

.merchant-benefit-table article:last-child {
  border-bottom: 0;
}

.merchant-benefit-table span {
  color: rgba(255, 255, 255, .5);
  font-size: 13px;
}

.merchant-benefit-table.compact article {
  grid-template-columns: minmax(180px, 1.4fr) minmax(90px, .6fr) minmax(90px, .6fr);
}

.merchant-quick-actions {
  display: grid;
  gap: 10px;
  align-items: start;
}

.merchant-profile-list {
  display: grid;
  gap: 10px;
}

.merchant-profile-list div {
  display: grid;
  gap: 4px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, .075);
  border-radius: 12px;
  background: rgba(255, 255, 255, .025);
}

.merchant-profile-list span {
  color: rgba(255, 255, 255, .44);
  font-size: 12px;
  font-weight: 750;
}

.merchant-profile-list strong {
  color: rgba(255, 255, 255, .82);
  font-size: 15px;
  font-weight: 650;
}

.merchant-stats.expanded {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.merchant-stats .text-stat {
  max-width: 100%;
  overflow: hidden;
  font-size: clamp(20px, 2vw, 30px);
  text-overflow: ellipsis;
  white-space: nowrap;
}

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

.merchant-action-grid a {
  display: grid;
  gap: 6px;
  min-height: 92px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 14px;
  background: rgba(255, 255, 255, .025);
  color: #fff;
  font-weight: 750;
}

.merchant-action-grid a:hover {
  border-color: rgba(255, 16, 40, .28);
  background: rgba(255, 16, 40, .055);
}

.merchant-action-grid span {
  color: rgba(255, 255, 255, .45);
  font-size: 12px;
  font-weight: 500;
}

.merchant-activity-list {
  display: grid;
  gap: 8px;
}

.merchant-activity-list article {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  min-height: 66px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, .075);
  border-radius: 12px;
  background: rgba(255, 255, 255, .025);
}

.merchant-activity-list strong {
  display: block;
  font-size: 14px;
}

.merchant-activity-list span {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, .46);
  font-size: 12px;
}

.merchant-activity-list small,
.merchant-filter-row a {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 999px;
  background: rgba(255, 255, 255, .04);
  color: rgba(255, 255, 255, .62);
  font-size: 12px;
  font-weight: 750;
  text-transform: capitalize;
}

.merchant-panel-head.inline {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}

.merchant-plan-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.merchant-plan-grid div {
  display: grid;
  gap: 8px;
  min-height: 94px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, .075);
  border-radius: 12px;
  background: rgba(255, 255, 255, .025);
}

.merchant-plan-grid span {
  color: rgba(255, 255, 255, .46);
  font-size: 12px;
  font-weight: 750;
}

.merchant-plan-grid strong {
  font-size: 22px;
}

.coupon-validator {
  display: grid;
  gap: 16px;
}

.coupon-lookup {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.coupon-lookup input {
  min-height: 56px;
  border-radius: 14px;
  font-size: 22px;
  font-weight: 750;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.coupon-result {
  display: grid;
  gap: 8px;
  padding: 18px;
  border-radius: 16px;
}

.coupon-result.valid {
  border: 1px solid rgba(62, 207, 142, .24);
  background: rgba(62, 207, 142, .07);
}

.coupon-result.invalid {
  border: 1px solid rgba(255, 16, 40, .25);
  background: rgba(255, 16, 40, .07);
}

.coupon-result span {
  color: rgba(255, 255, 255, .65);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.coupon-result h3 {
  margin: 0;
  font-size: 34px;
  line-height: 1;
}

.coupon-result p {
  margin: 0;
  color: rgba(255, 255, 255, .64);
}

.coupon-result-meta,
.merchant-filter-row,
.merchant-form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.coupon-result-meta small {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .07);
  color: rgba(255, 255, 255, .72);
}

.merchant-grid.wide-left {
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, .58fr);
}

.benefit-preview-panel {
  position: sticky;
  top: 86px;
}

.dashboard-benefit-preview {
  display: grid;
  gap: 12px;
  min-height: 270px;
  padding: 20px;
  border: 1px solid rgba(255, 16, 40, .18);
  border-radius: 18px;
  background:
    radial-gradient(circle at 84% 18%, rgba(255, 16, 40, .24), transparent 32%),
    rgba(0, 0, 0, .24);
}

.dashboard-benefit-preview span,
.dashboard-benefit-preview small {
  color: rgba(255, 255, 255, .52);
  font-weight: 650;
}

.dashboard-benefit-preview strong {
  margin-top: auto;
  font-size: clamp(28px, 4vw, 42px);
  line-height: .95;
}

.benefit-management-grid {
  display: grid;
  gap: 10px;
}

.benefit-management-grid article {
  display: grid;
  grid-template-columns: minmax(200px, 1.2fr) 90px 110px 110px 130px minmax(190px, .9fr);
  gap: 12px;
  align-items: center;
  min-height: 82px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, .075);
  border-radius: 14px;
  background: rgba(255, 255, 255, .025);
}

.benefit-management-grid strong {
  display: block;
  font-size: 15px;
}

.benefit-management-grid span,
.benefit-management-grid small {
  color: rgba(255, 255, 255, .52);
  font-size: 13px;
}

.benefit-management-grid article > div:last-child {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.benefit-management-grid a {
  color: rgba(255, 255, 255, .72);
  font-size: 12px;
  font-weight: 750;
}

.benefit-management-grid a:hover {
  color: var(--red-soft);
}

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

.merchant-profile-form label:nth-child(3) {
  grid-column: 1 / -1;
}

.merchant-profile-form input,
.merchant-profile-form textarea {
  min-height: 42px;
  border-radius: 10px;
  background: rgba(255, 255, 255, .025);
}

.public-preview-card {
  display: grid;
  align-content: end;
  gap: 8px;
  min-height: 220px;
  margin-bottom: 14px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 16px;
  background-color: rgba(255, 16, 40, .08);
  background-position: center;
  background-size: cover;
}

.public-preview-card strong {
  font-size: 30px;
  line-height: 1;
}

.public-preview-card span {
  color: rgba(255, 255, 255, .62);
}

.city-ops-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.city-ops-grid div {
  display: grid;
  gap: 6px;
  min-height: 82px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, .075);
  border-radius: 12px;
  background: rgba(255, 255, 255, .025);
}

.city-ops-grid .is-current {
  border-color: rgba(255, 16, 40, .32);
  background: rgba(255, 16, 40, .065);
}

.city-ops-grid .is-future {
  opacity: .55;
}

.city-ops-grid span {
  color: rgba(255, 255, 255, .48);
  font-size: 12px;
}

/* Public platform upgrades */
.public-search {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  max-width: 760px;
  margin-top: 28px;
}

.public-search input {
  min-height: 60px;
  border-radius: 16px;
  background: rgba(255, 255, 255, .06);
  font-size: 17px;
}

.quick-access {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.quick-access a,
.list-hero-actions strong {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 999px;
  background: rgba(255, 255, 255, .035);
  color: rgba(255, 255, 255, .72);
  font-size: 13px;
  font-weight: 700;
}

.home-top-finale {
  margin-top: 32px;
}

.bottom-finale {
  display: none;
}

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

.steps-grid article {
  min-height: 160px;
  padding: 20px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 20px;
  background:
    radial-gradient(circle at 82% 18%, rgba(255,16,40,.12), transparent 30%),
    rgba(13,13,15,.78);
}

.steps-grid span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--red);
  font-weight: 800;
}

.steps-grid strong {
  display: block;
  margin-top: 28px;
  font-size: 21px;
  line-height: 1.05;
}

.steps-grid small {
  display: block;
  margin-top: 8px;
  color: rgba(255,255,255,.52);
}

.list-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 24px;
}

.benefit-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.benefit-facts span {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  padding: 0 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .045);
  color: rgba(255,255,255,.58);
  font-size: 12px;
  font-weight: 700;
}

.public-commerce-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.public-commerce-card {
  overflow: hidden;
  padding: 0;
}

.commerce-card-cover {
  display: block;
  min-height: 190px;
  background-position: center;
  background-size: cover;
}

.commerce-card-body {
  position: relative;
  display: grid;
  gap: 12px;
  padding: 20px;
}

.commerce-logo.large {
  position: absolute;
  right: 18px;
  top: -26px;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 12px 38px rgba(0,0,0,.34);
}

.category-experience-card em,
.category-experience-card b {
  position: relative;
  z-index: 1;
  margin-top: 10px;
  color: rgba(255,255,255,.64);
  font-size: 13px;
  font-style: normal;
}

.category-experience-card b {
  width: fit-content;
  color: #fff;
  font-size: 14px;
}

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

.compact-points {
  grid-template-columns: 1fr;
}

.compact-steps {
  grid-template-columns: 1fr;
}

.compact-steps article {
  min-height: 92px;
}

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

.condition-grid div {
  display: flex;
  gap: 10px;
  padding: 14px;
  border: 1px solid rgba(255,255,255,.075);
  border-radius: 14px;
  background: rgba(255,255,255,.025);
}

.mobile-claim-bar {
  display: none;
}

@media (max-width: 760px) {
  .public-search,
  .steps-grid,
  .public-commerce-grid,
  .detail-info-grid,
  .condition-grid {
    grid-template-columns: 1fr;
  }

  .steps-grid article {
    min-height: 126px;
  }

  .site-shell {
    padding-bottom: 0;
  }

  .mobile-claim-bar {
    position: fixed;
    left: 10px;
    right: 10px;
    bottom: 12px;
    z-index: 41;
    display: block;
  }

  .mobile-claim-bar .primary-btn {
    width: 100%;
    min-height: 54px;
    justify-content: center;
  }
}

/* Final public polish */
body:not(.section-dashboard):not(.section-panel-comercio) .topbar {
  min-height: 72px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 18px;
}

body:not(.section-dashboard):not(.section-panel-comercio) .nav {
  justify-content: center;
  gap: clamp(12px, 2vw, 24px);
}

body:not(.section-dashboard):not(.section-panel-comercio) .nav a {
  white-space: nowrap;
}

body:not(.section-dashboard):not(.section-panel-comercio) .section-head,
body:not(.section-dashboard):not(.section-panel-comercio) .category-section > div:first-child,
body:not(.section-dashboard):not(.section-panel-comercio) .page-hero,
body:not(.section-dashboard):not(.section-panel-comercio) .compact-hero,
body:not(.section-dashboard):not(.section-panel-comercio) .commerce-gallery-section .section-head,
body:not(.section-dashboard):not(.section-panel-comercio) .commerce-benefits-section .section-head {
  display: grid;
  justify-items: center;
  text-align: center;
}

body:not(.section-dashboard):not(.section-panel-comercio) .section-head > div,
body:not(.section-dashboard):not(.section-panel-comercio) .section-head h2,
body:not(.section-dashboard):not(.section-panel-comercio) .section-head p,
body:not(.section-dashboard):not(.section-panel-comercio) .page-hero p,
body:not(.section-dashboard):not(.section-panel-comercio) .category-section > div:first-child p {
  margin-left: auto;
  margin-right: auto;
}

body:not(.section-dashboard):not(.section-panel-comercio) .page-hero,
body:not(.section-dashboard):not(.section-panel-comercio) .filters-bar {
  padding: clamp(42px, 7vw, 86px) 0;
}

body.section-beneficios .page-hero,
body.section-beneficios .filters-bar {
  padding: 42px 0 22px;
}

body.section-beneficios .section {
  padding-top: 28px;
}

.home-categories {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.home-categories .product-tile {
  min-height: 212px;
  text-align: left;
}

.home-categories .product-tile span {
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  background: rgba(0,0,0,.34);
  font-size: 34px;
}

.home-categories .product-tile strong {
  margin-top: 30px;
  font-size: 24px;
}

.benefit-card {
  border-radius: 18px;
}

.benefit-media {
  min-height: 230px;
}

.benefit-body {
  padding: 22px;
}

.benefit-topline,
.commerce-name {
  font-size: 14px;
}

.benefit-body h3 {
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1.02;
}

.obtain-btn {
  min-height: 42px;
  padding: 0 16px;
  font-size: 14px;
}

@media (max-width: 1040px) {
  body:not(.section-dashboard):not(.section-panel-comercio) .topbar {
    grid-template-columns: 1fr;
    justify-items: center;
    padding-bottom: 14px;
  }

  body:not(.section-dashboard):not(.section-panel-comercio) .nav,
  body:not(.section-dashboard):not(.section-panel-comercio) .topbar-actions {
    flex-wrap: wrap;
    justify-content: center;
  }

  .home-categories {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  body:not(.section-dashboard):not(.section-panel-comercio) .topbar {
    position: relative;
  }

  body:not(.section-dashboard):not(.section-panel-comercio) .nav {
    display: flex;
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  body:not(.section-dashboard):not(.section-panel-comercio) .nav a {
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    padding: 0 10px;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 999px;
    background: rgba(255,255,255,.035);
    font-size: 13px;
  }

  .home-categories {
    grid-template-columns: 1fr;
  }
}

.performance-panel {
  overflow: hidden;
}

.performance-panel > .merchant-panel-head strong {
  color: var(--red-soft);
  font-size: 22px;
}

.performance-metrics,
.funnel-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.performance-metrics {
  margin-bottom: 16px;
}

/* Ultimate home/mobile override */
.benefit-media {
  min-height: 270px;
}

.home-categories .product-tile span {
  width: 76px;
  height: 76px;
  font-size: 38px;
}

@media (max-width: 1040px) {
  body:not(.section-dashboard):not(.section-panel-comercio) .nav {
    display: none;
  }

  .mobile-menu-toggle {
    display: grid;
  }
}

@media (max-width: 760px) {
  body:not(.section-dashboard):not(.section-panel-comercio) .nav,
  body:not(.section-dashboard):not(.section-panel-comercio) .topbar-actions .ghost-btn {
    display: none;
  }

  .benefit-media {
    min-height: 260px;
  }

  .home-categories {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-categories .product-tile span {
    width: 58px;
    height: 58px;
    font-size: 30px;
  }
}

.performance-metrics div,
.funnel-row div {
  display: grid;
  gap: 4px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, .075);
  border-radius: 12px;
  background: rgba(255, 255, 255, .025);
}

.performance-metrics span,
.funnel-row span {
  color: rgba(255, 255, 255, .44);
  font-size: 12px;
}

.performance-metrics strong,
.funnel-row strong {
  font-size: 24px;
}

.performance-chart {
  width: 100%;
  height: 92px;
  margin: 6px 0 14px;
  border-radius: 14px;
  background:
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255,255,255,.035) 1px, transparent 1px),
    rgba(0,0,0,.18);
  background-size: 42px 42px;
}

.performance-chart polyline {
  fill: none;
  stroke: var(--red);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 4;
  filter: drop-shadow(0 0 10px rgba(255, 16, 40, .45));
}

.live-benefit-preview {
  min-height: 380px;
}

.live-preview-image {
  min-height: 128px;
  margin: -6px -6px 4px;
  border-radius: 14px;
  background:
    radial-gradient(circle at 78% 22%, rgba(255, 16, 40, .28), transparent 34%),
    rgba(255,255,255,.04);
  background-position: center;
  background-size: cover;
}

.dashboard-benefit-preview p {
  margin: 0;
  color: rgba(255,255,255,.54);
  font-size: 14px;
  line-height: 1.4;
}

.benefit-score-card {
  display: grid;
  gap: 12px;
  margin-top: 14px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, .075);
  border-radius: 14px;
  background: rgba(255,255,255,.025);
}

.benefit-score-card > div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}

.benefit-score-card span {
  color: rgba(255,255,255,.54);
  font-size: 13px;
  font-weight: 750;
}

.benefit-score-card strong {
  color: var(--red-soft);
  font-size: 22px;
}

.benefit-score-card ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.benefit-score-card li,
.profile-checklist span {
  min-height: 30px;
  display: flex;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.04);
  color: rgba(255,255,255,.46);
  font-size: 12px;
  font-weight: 750;
}

.benefit-score-card li.is-done,
.profile-checklist span.is-done {
  background: rgba(62, 207, 142, .09);
  color: rgba(210,255,231,.9);
}

.benefit-score-card p {
  margin: 0;
  color: rgba(255,255,255,.5);
  font-size: 13px;
}

.profile-checklist {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0;
}

.public-preview-card.large {
  min-height: 340px;
}

.public-preview-card small {
  color: rgba(255,255,255,.62);
}

/* Final shell overrides */
.site-shell {
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding-bottom: 0;
}

main {
  flex: 1 0 auto;
  width: min(1180px, calc(100% - 28px));
  margin: 0 auto;
}

.topbar {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  display: block;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.topbar-inner {
  width: min(1180px, calc(100% - 28px));
  margin: 0 auto;
}

.footer {
  width: min(1180px, calc(100% - 28px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(220px, 1.2fr) repeat(4, minmax(140px, 1fr));
  gap: 28px;
  padding: 44px 0 34px;
  border-top: 1px solid rgba(255,255,255,.1);
}

.footer-column {
  display: grid;
  gap: 10px;
  align-content: start;
}

.footer-column strong {
  color: #fff;
  font-size: 13px;
}

.footer-column a {
  color: rgba(255,255,255,.56);
  font-size: 13px;
}

@media (max-width: 760px) {
  .topbar {
    position: sticky;
  }

  body:not(.section-dashboard):not(.section-panel-comercio) .topbar-inner {
    grid-template-columns: auto auto;
    justify-content: space-between;
    justify-items: stretch;
    min-height: 68px;
    padding: 10px 0;
  }

  body:not(.section-dashboard):not(.section-panel-comercio) .nav,
  body:not(.section-dashboard):not(.section-panel-comercio) .topbar-actions {
    display: none;
  }

  .mobile-menu-toggle {
    display: grid;
  }

  .footer {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding: 32px 0 92px;
  }

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

  main {
    width: min(100% - 24px, 1180px);
  }

  .site-shell {
    padding-bottom: 0;
  }
}

@media (max-width: 440px) {
  .footer {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1080px) {
  .merchant-stats.expanded,
  .merchant-plan-grid,
  .city-ops-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .benefit-management-grid article {
    grid-template-columns: 1fr 1fr;
  }

  .merchant-grid.wide-left {
    grid-template-columns: 1fr;
  }

  .benefit-preview-panel {
    position: static;
  }
}

@media (max-width: 760px) {
  .merchant-stats.expanded,
  .merchant-plan-grid,
  .merchant-action-grid,
  .city-ops-grid,
  .merchant-profile-form,
  .coupon-lookup,
  .performance-metrics,
  .funnel-row,
  .benefit-score-card ul {
    grid-template-columns: 1fr;
  }

  .merchant-panel-head.inline {
    display: grid;
    align-items: start;
  }

  .benefit-management-grid article {
    grid-template-columns: 1fr;
  }
}

.merchant-empty {
  min-height: 84px;
  display: grid;
  place-items: center;
  border: 1px dashed rgba(255, 255, 255, .12);
  border-radius: 12px;
  color: rgba(255, 255, 255, .44);
  font-size: 14px;
}

@media (max-width: 760px) {
  body.section-panel-comercio .site-shell,
  body.section-dashboard .site-shell {
    width: min(100% - 16px, 760px);
  }

  .merchant-dashboard {
    grid-template-columns: 74px minmax(0, 1fr);
    gap: 10px;
  }

  .merchant-sidebar {
    position: sticky;
    top: 76px;
    min-height: calc(100vh - 92px);
    padding: 10px;
    border-radius: 14px;
  }

  .merchant-sidebar-brand {
    justify-content: center;
    padding-bottom: 10px;
  }

  .merchant-sidebar-brand div,
  .merchant-sidebar-note {
    display: none;
  }

  .merchant-avatar {
    width: 40px;
    height: 40px;
  }

  .merchant-side-nav {
    display: grid;
    gap: 8px;
    overflow: visible;
  }

  .merchant-side-nav a {
    width: 50px;
    min-height: 48px;
    justify-content: center;
    padding: 0;
    font-size: 0;
    white-space: normal;
  }

  .merchant-side-nav a:before {
    font-size: 13px;
    font-weight: 850;
  }

  .merchant-side-nav a:nth-child(1):before { content: "R"; }
  .merchant-side-nav a:nth-child(2):before { content: "B"; }
  .merchant-side-nav a:nth-child(3):before { content: "C"; }
  .merchant-side-nav a:nth-child(4):before { content: "A"; }
  .merchant-side-nav a:nth-child(5):before { content: "P"; }
  .merchant-side-nav a:nth-child(6):before { content: "$"; }

  .merchant-grid,
  .merchant-stats {
    grid-template-columns: 1fr;
  }

  .merchant-top {
    display: grid;
    align-items: start;
  }

  .merchant-top-actions {
    justify-content: flex-start;
  }
  .merchant-table-row,
  .merchant-benefit-table article {
    grid-template-columns: 1fr;
  }
}

/* Final mobile navigation fix: keep the drawer isolated above the page. */
@media (max-width: 760px) {
  body.menu-open {
    overflow: hidden;
  }

  .topbar {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  body.menu-open .whatsapp-float {
    display: none !important;
  }

  .mobile-menu-toggle {
    display: grid;
    position: relative;
    z-index: 1201;
    place-items: center;
    flex: 0 0 auto;
  }

  .mobile-menu-toggle[aria-expanded="true"] {
    position: fixed;
    top: max(16px, env(safe-area-inset-top));
    right: 16px;
    background: rgba(255, 255, 255, .08);
    box-shadow: 0 18px 48px rgba(0, 0, 0, .42);
  }

  .mobile-menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .mobile-menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .mobile-menu-panel {
    position: fixed !important;
    inset: 0 !important;
    z-index: 1200 !important;
    display: none !important;
    width: 100vw !important;
    height: 100dvh !important;
    max-height: 100dvh !important;
    overflow-y: auto !important;
    margin: 0 !important;
    padding: max(34px, env(safe-area-inset-top)) 22px max(34px, env(safe-area-inset-bottom)) !important;
    border: 0 !important;
    border-radius: 0 !important;
    background:
      radial-gradient(circle at 82% 8%, rgba(255, 16, 40, .18), transparent 22rem),
      radial-gradient(circle at 8% 82%, rgba(255, 16, 40, .1), transparent 18rem),
      linear-gradient(180deg, #050505 0%, #090303 100%) !important;
    box-shadow: none !important;
  }

  .mobile-menu-panel.is-open {
    display: grid !important;
    align-content: start;
    gap: 10px;
  }

  .mobile-menu-head {
    margin: 42px 0 22px;
  }

  .mobile-menu-head img {
    max-width: 210px;
    height: auto;
  }

  .mobile-menu-panel a {
    min-height: 56px;
    padding: 0 18px;
    border-radius: 16px;
    font-size: clamp(18px, 5vw, 22px);
    font-weight: 700;
  }

  .mobile-menu-panel .primary-btn {
    display: inline-flex;
    width: 100%;
    justify-content: center;
    min-height: 58px;
    margin-top: 10px;
    font-size: 18px;
  }
}

/* Final public alignment pass */
body:not(.section-dashboard):not(.section-panel-comercio) {
  --public-container: 1180px;
  --public-gutter: 28px;
}

body:not(.section-dashboard):not(.section-panel-comercio) .site-shell {
  width: 100%;
  padding-top: 76px;
}

body:not(.section-dashboard):not(.section-panel-comercio) .topbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 900;
  width: 100%;
  margin: 0;
  min-height: 76px;
  display: block;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  background: rgba(5, 5, 5, .88);
  backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 rgba(255,255,255,.04), 0 18px 60px rgba(0,0,0,.24);
}

body:not(.section-dashboard):not(.section-panel-comercio) .topbar-inner,
body:not(.section-dashboard):not(.section-panel-comercio) main,
body:not(.section-dashboard):not(.section-panel-comercio) .footer,
body:not(.section-dashboard):not(.section-panel-comercio) .footer-bottom {
  width: min(var(--public-container), calc(100% - var(--public-gutter)));
  max-width: var(--public-container);
  margin-left: auto;
  margin-right: auto;
}

body:not(.section-dashboard):not(.section-panel-comercio) .topbar-inner {
  min-height: 76px;
  display: grid;
  grid-template-columns: minmax(160px, 1fr) auto minmax(260px, 1fr);
  align-items: center;
  gap: clamp(18px, 2.8vw, 34px);
  padding: 0;
}

body:not(.section-dashboard):not(.section-panel-comercio) .brand {
  justify-self: start;
}

body:not(.section-dashboard):not(.section-panel-comercio) .nav {
  display: flex;
  justify-self: center;
  justify-content: center;
  gap: clamp(8px, 1.2vw, 16px);
}

body:not(.section-dashboard):not(.section-panel-comercio) .nav a {
  min-height: 40px;
  padding: 0 clamp(12px, 1.2vw, 18px);
  white-space: nowrap;
}

body:not(.section-dashboard):not(.section-panel-comercio) .topbar-actions {
  display: flex;
  justify-self: end;
  justify-content: flex-end;
  gap: 10px;
}

body:not(.section-dashboard):not(.section-panel-comercio) .mobile-menu-toggle {
  display: none;
}

body.section-home .home-hero {
  min-height: min(820px, calc(100vh - 76px));
}

body:not(.section-dashboard):not(.section-panel-comercio) .section-head,
body:not(.section-dashboard):not(.section-panel-comercio) .category-section > div:first-child {
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 12px;
}

body:not(.section-dashboard):not(.section-panel-comercio) .section-head > div,
body:not(.section-dashboard):not(.section-panel-comercio) .category-section > div:first-child,
body:not(.section-dashboard):not(.section-panel-comercio) .section-head h2,
body:not(.section-dashboard):not(.section-panel-comercio) .section-head p,
body:not(.section-dashboard):not(.section-panel-comercio) .category-section h2,
body:not(.section-dashboard):not(.section-panel-comercio) .category-section p {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

body:not(.section-dashboard):not(.section-panel-comercio) .section-head .section-kicker,
body:not(.section-dashboard):not(.section-panel-comercio) .category-section .section-kicker {
  justify-self: center;
}

body:not(.section-dashboard):not(.section-panel-comercio) .section-head .text-link {
  justify-self: center;
  margin-top: 4px;
}

@media (min-width: 1041px) {
  body.section-home .today-section .section-head {
    grid-template-columns: 1fr auto 1fr;
  }

  body.section-home .today-section .section-head > div {
    grid-column: 2;
  }

  body.section-home .today-section .section-head .text-link {
    grid-column: 3;
    justify-self: end;
    align-self: center;
    margin-top: 0;
  }
}

@media (max-width: 1040px) {
  body:not(.section-dashboard):not(.section-panel-comercio) .topbar-inner {
    grid-template-columns: minmax(0, 1fr) auto auto;
  }

  body:not(.section-dashboard):not(.section-panel-comercio) .nav {
    display: none;
  }

  body:not(.section-dashboard):not(.section-panel-comercio) .topbar-actions {
    display: flex;
  }

  body:not(.section-dashboard):not(.section-panel-comercio) .topbar-actions .ghost-btn {
    display: none;
  }

  body:not(.section-dashboard):not(.section-panel-comercio) .mobile-menu-toggle {
    display: grid;
    justify-self: end;
  }

  body.section-home .today-section .section-head {
    grid-template-columns: 1fr;
  }

  body.section-home .today-section .section-head > div,
  body.section-home .today-section .section-head .text-link {
    grid-column: 1;
    justify-self: center;
  }
}

@media (max-width: 760px) {
  body:not(.section-dashboard):not(.section-panel-comercio) {
    --public-gutter: 24px;
  }

  body:not(.section-dashboard):not(.section-panel-comercio) .site-shell {
    padding-top: 68px;
  }

  body:not(.section-dashboard):not(.section-panel-comercio) .topbar,
  body:not(.section-dashboard):not(.section-panel-comercio) .topbar-inner {
    min-height: 68px;
  }

  body:not(.section-dashboard):not(.section-panel-comercio) .topbar {
    height: 68px;
    padding: 0;
  }

  body:not(.section-dashboard):not(.section-panel-comercio) .topbar-inner {
    gap: 10px;
  }

  body:not(.section-dashboard):not(.section-panel-comercio) .brand-logo {
    max-width: min(150px, 40vw);
  }

  body:not(.section-dashboard):not(.section-panel-comercio) .commerce-cta {
    min-height: 38px;
    padding: 0 11px;
    font-size: 12px;
  }

  body:not(.section-dashboard):not(.section-panel-comercio) .section-head,
  body:not(.section-dashboard):not(.section-panel-comercio) .category-section > div:first-child {
    gap: 10px;
  }

  body:not(.section-dashboard):not(.section-panel-comercio) .section-head .text-link {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
  }
}

/* Final typography refinement for the public product experience */
body:not(.section-dashboard):not(.section-panel-comercio) {
  text-rendering: geometricPrecision;
}

body:not(.section-dashboard):not(.section-panel-comercio) h1,
body:not(.section-dashboard):not(.section-panel-comercio) h2,
body:not(.section-dashboard):not(.section-panel-comercio) h3,
body:not(.section-dashboard):not(.section-panel-comercio) h4 {
  letter-spacing: 0;
}

body:not(.section-dashboard):not(.section-panel-comercio) .hero h1,
body:not(.section-dashboard):not(.section-panel-comercio) .page-hero h1,
body:not(.section-dashboard):not(.section-panel-comercio) .benefit-detail-copy h1,
body:not(.section-dashboard):not(.section-panel-comercio) .commerce-hero-content h1,
body:not(.section-dashboard):not(.section-panel-comercio) .account-hero h1,
body:not(.section-dashboard):not(.section-panel-comercio) .explore-hero h1,
body:not(.section-dashboard):not(.section-panel-comercio) .map-hero h1,
body:not(.section-dashboard):not(.section-panel-comercio) .commerce-access-hero h1 {
  font-weight: 700 !important;
  line-height: .98 !important;
}

body.section-home .hero h1 {
  font-size: clamp(52px, 7.3vw, 104px);
  line-height: .96 !important;
  font-weight: 700 !important;
}

body:not(.section-dashboard):not(.section-panel-comercio) .section-head h2,
body:not(.section-dashboard):not(.section-panel-comercio) .category-section h2,
body:not(.section-dashboard):not(.section-panel-comercio) .home-top-finale h2,
body:not(.section-dashboard):not(.section-panel-comercio) .bottom-finale h2,
body:not(.section-dashboard):not(.section-panel-comercio) .commerce-story-copy h2,
body:not(.section-dashboard):not(.section-panel-comercio) .merchant-panel h2,
body:not(.section-dashboard):not(.section-panel-comercio) .location-section h2 {
  font-weight: 600 !important;
  line-height: 1.08 !important;
}

body:not(.section-dashboard):not(.section-panel-comercio) .section-head p,
body:not(.section-dashboard):not(.section-panel-comercio) .category-section p,
body:not(.section-dashboard):not(.section-panel-comercio) .hero p,
body:not(.section-dashboard):not(.section-panel-comercio) .page-hero p,
body:not(.section-dashboard):not(.section-panel-comercio) .home-top-finale p,
body:not(.section-dashboard):not(.section-panel-comercio) .bottom-finale p,
body:not(.section-dashboard):not(.section-panel-comercio) .benefit-detail-copy p,
body:not(.section-dashboard):not(.section-panel-comercio) .commerce-hero-content p,
body:not(.section-dashboard):not(.section-panel-comercio) .account-hero p {
  font-weight: 400 !important;
  line-height: 1.48 !important;
}

body.section-home .hero p {
  font-size: clamp(18px, 1.85vw, 25px);
  line-height: 1.42 !important;
}

body:not(.section-dashboard):not(.section-panel-comercio) .primary-btn,
body:not(.section-dashboard):not(.section-panel-comercio) .ghost-btn,
body:not(.section-dashboard):not(.section-panel-comercio) .obtain-btn,
body:not(.section-dashboard):not(.section-panel-comercio) button,
body:not(.section-dashboard):not(.section-panel-comercio) .text-link {
  font-weight: 500 !important;
}

body:not(.section-dashboard):not(.section-panel-comercio) .nav,
body:not(.section-dashboard):not(.section-panel-comercio) .nav a,
body:not(.section-dashboard):not(.section-panel-comercio) label,
body:not(.section-dashboard):not(.section-panel-comercio) .section-kicker,
body:not(.section-dashboard):not(.section-panel-comercio) .badge,
body:not(.section-dashboard):not(.section-panel-comercio) .exclusive-pill,
body:not(.section-dashboard):not(.section-panel-comercio) .benefit-topline,
body:not(.section-dashboard):not(.section-panel-comercio) .commerce-name,
body:not(.section-dashboard):not(.section-panel-comercio) .benefit-facts span,
body:not(.section-dashboard):not(.section-panel-comercio) .quick-access a,
body:not(.section-dashboard):not(.section-panel-comercio) .mobile-menu-panel a {
  font-weight: 500 !important;
}

body:not(.section-dashboard):not(.section-panel-comercio) .section-kicker,
body:not(.section-dashboard):not(.section-panel-comercio) .badge,
body:not(.section-dashboard):not(.section-panel-comercio) .exclusive-pill {
  letter-spacing: .04em !important;
}

body:not(.section-dashboard):not(.section-panel-comercio) .benefit-body h3,
body:not(.section-dashboard):not(.section-panel-comercio) .product-tile strong,
body:not(.section-dashboard):not(.section-panel-comercio) .steps-grid article strong,
body:not(.section-dashboard):not(.section-panel-comercio) .experience-point strong,
body:not(.section-dashboard):not(.section-panel-comercio) .unlock-panel h2,
body:not(.section-dashboard):not(.section-panel-comercio) .unlock-modal h2 {
  font-weight: 600 !important;
  line-height: 1.12 !important;
}

body:not(.section-dashboard):not(.section-panel-comercio) .benefit-body h3 {
  font-size: clamp(23px, 2.2vw, 31px);
}

body:not(.section-dashboard):not(.section-panel-comercio) .commerce-name,
body:not(.section-dashboard):not(.section-panel-comercio) .benefit-topline,
body:not(.section-dashboard):not(.section-panel-comercio) .benefit-facts span,
body:not(.section-dashboard):not(.section-panel-comercio) .muted-row,
body:not(.section-dashboard):not(.section-panel-comercio) .product-tile small,
body:not(.section-dashboard):not(.section-panel-comercio) .steps-grid article small {
  font-weight: 400 !important;
}

body:not(.section-dashboard):not(.section-panel-comercio) .premium-code strong,
body:not(.section-dashboard):not(.section-panel-comercio) .coupon-code strong {
  font-weight: 600 !important;
  letter-spacing: .03em !important;
}

@media (max-width: 760px) {
  body.section-home .hero h1 {
    font-size: clamp(42px, 11vw, 58px);
    line-height: 1 !important;
  }

  body:not(.section-dashboard):not(.section-panel-comercio) .section-head h2,
  body:not(.section-dashboard):not(.section-panel-comercio) .category-section h2 {
    line-height: 1.12 !important;
  }
}

/* Final home layout QA pass */
html,
body {
  max-width: 100%;
}

body:not(.section-dashboard):not(.section-panel-comercio) {
  --public-container: 1180px;
  --public-gutter: 32px;
}

body:not(.section-dashboard):not(.section-panel-comercio) main,
body:not(.section-dashboard):not(.section-panel-comercio) .topbar-inner,
body:not(.section-dashboard):not(.section-panel-comercio) .footer,
body:not(.section-dashboard):not(.section-panel-comercio) .footer-bottom {
  width: min(calc(100% - var(--public-gutter)), var(--public-container)) !important;
  max-width: var(--public-container);
  margin-inline: auto !important;
}

body:not(.section-dashboard):not(.section-panel-comercio) main > * {
  max-width: 100%;
}

body:not(.section-dashboard):not(.section-panel-comercio) .topbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 900;
  width: 100%;
  height: 76px;
  min-height: 76px;
  margin: 0;
  padding: 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
  background: rgba(5,5,5,.9);
  backdrop-filter: blur(18px);
}

body:not(.section-dashboard):not(.section-panel-comercio) .topbar-inner {
  height: 76px;
  min-height: 76px;
  display: grid;
  grid-template-columns: minmax(150px, 1fr) minmax(360px, auto) minmax(310px, 1fr);
  gap: clamp(18px, 2vw, 32px);
  align-items: center;
  padding: 0;
}

body:not(.section-dashboard):not(.section-panel-comercio) .brand {
  min-width: 0;
  justify-self: start;
}

body:not(.section-dashboard):not(.section-panel-comercio) .brand-logo {
  width: clamp(130px, 12vw, 166px);
  max-width: 100%;
}

body:not(.section-dashboard):not(.section-panel-comercio) .nav {
  min-width: 0;
  display: flex;
  justify-content: center;
  gap: clamp(8px, 1vw, 14px);
}

body:not(.section-dashboard):not(.section-panel-comercio) .nav a {
  min-height: 38px;
  padding: 0 clamp(11px, 1vw, 16px);
}

body:not(.section-dashboard):not(.section-panel-comercio) .topbar-actions {
  min-width: 0;
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

body:not(.section-dashboard):not(.section-panel-comercio) .topbar-actions a {
  flex: 0 0 auto;
  white-space: nowrap;
}

body:not(.section-dashboard):not(.section-panel-comercio) .site-shell {
  padding-top: 76px;
}

body.section-home .home-hero {
  overflow: visible;
}

body.section-home .home-top-finale {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 460px);
  gap: clamp(32px, 6vw, 72px);
  align-items: center;
  min-height: 360px;
  margin: clamp(36px, 6vw, 72px) 0 0;
  padding: clamp(32px, 5vw, 64px);
  overflow: hidden;
  border-radius: clamp(22px, 3vw, 32px);
}

body.section-home .home-top-finale .finale-glow {
  pointer-events: none;
}

body.section-home .home-top-finale .finale-ticket {
  position: relative;
  inset: auto;
  justify-self: center;
  width: min(100%, 360px);
  height: auto;
  aspect-ratio: 1.62 / 1;
  margin: 0;
  transform: rotate(-7deg);
  animation: none;
}

body.section-home .home-top-finale > div:last-child {
  min-width: 0;
  max-width: 460px;
  justify-self: start;
  display: grid;
  gap: 16px;
}

body.section-home .home-top-finale h2 {
  max-width: 460px;
  margin: 0;
  font-size: clamp(34px, 4.2vw, 56px) !important;
  line-height: 1.08 !important;
  text-wrap: balance;
}

body.section-home .home-top-finale p {
  max-width: 440px;
  margin: 0;
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.52 !important;
}

body.section-home .home-top-finale .primary-btn {
  width: fit-content;
  min-width: 190px;
  margin-top: 4px;
}

body:not(.section-dashboard):not(.section-panel-comercio) .section-head h2,
body:not(.section-dashboard):not(.section-panel-comercio) .category-section h2 {
  font-size: clamp(28px, 4vw, 44px);
  text-wrap: balance;
}

body:not(.section-dashboard):not(.section-panel-comercio) .benefit-card,
body:not(.section-dashboard):not(.section-panel-comercio) .category-pill,
body:not(.section-dashboard):not(.section-panel-comercio) .steps-grid article {
  min-width: 0;
}

body:not(.section-dashboard):not(.section-panel-comercio) img,
body:not(.section-dashboard):not(.section-panel-comercio) svg {
  max-width: 100%;
}

@media (max-width: 1100px) {
  body:not(.section-dashboard):not(.section-panel-comercio) .topbar-inner {
    grid-template-columns: minmax(0, 1fr) auto auto;
  }

  body:not(.section-dashboard):not(.section-panel-comercio) .nav {
    display: none;
  }

  body:not(.section-dashboard):not(.section-panel-comercio) .mobile-menu-toggle {
    display: grid;
  }

  body:not(.section-dashboard):not(.section-panel-comercio) .topbar-actions .ghost-btn {
    display: none;
  }
}

@media (max-width: 900px) {
  body.section-home .home-top-finale {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  body.section-home .home-top-finale .finale-ticket {
    width: min(78vw, 320px);
    transform: rotate(-5deg) !important;
    animation: none !important;
  }

  body.section-home .home-top-finale > div:last-child {
    justify-self: center;
    text-align: center;
  }

  body.section-home .home-top-finale .section-kicker,
  body.section-home .home-top-finale .primary-btn {
    justify-self: center;
  }
}

@media (max-width: 760px) {
  body:not(.section-dashboard):not(.section-panel-comercio) {
    --public-gutter: 24px;
  }

  body:not(.section-dashboard):not(.section-panel-comercio) .site-shell {
    padding-top: 68px;
  }

  body:not(.section-dashboard):not(.section-panel-comercio) .topbar,
  body:not(.section-dashboard):not(.section-panel-comercio) .topbar-inner {
    height: 68px;
    min-height: 68px;
  }

  body:not(.section-dashboard):not(.section-panel-comercio) .topbar-inner {
    gap: 10px;
  }

  body:not(.section-dashboard):not(.section-panel-comercio) .brand-logo {
    width: min(145px, 38vw);
  }

  body:not(.section-dashboard):not(.section-panel-comercio) .commerce-cta {
    min-width: 0;
    min-height: 38px;
    padding: 0 10px;
    font-size: 12px;
  }

  body.section-home .home-top-finale {
    min-height: auto;
    margin-top: 34px;
    padding: 28px 18px 30px;
    border-radius: 22px;
  }

  body.section-home .home-top-finale h2 {
    font-size: clamp(31px, 9vw, 42px) !important;
  }

  body.section-home .home-top-finale p {
    font-size: 15px;
  }
}

@media (max-width: 760px) {
  body.section-home main {
    overflow-x: clip;
  }

  body.section-home .hero-visual,
  body.section-home .visual-section,
  body.section-home .home-top-finale {
    overflow: hidden !important;
  }

  body.section-home .visual-section:before,
  body.section-home .campaign-statement:before,
  body.section-home .editorial-block:before {
    inset: 0 !important;
    width: auto !important;
    max-width: 100% !important;
  }

  body.section-home .orbit-glow,
  body.section-home .ticket-core,
  body.section-home .section-visual {
    max-width: 100%;
  }

  body.section-home .orbit-glow {
    left: 5%;
    right: 5%;
    width: auto;
  }

  body.section-home .ticket-core {
    left: 50% !important;
    width: min(86vw, 390px) !important;
    transform: translateX(-50%) !important;
  }

  body.section-home .section-visual {
    display: none;
  }

  body.section-home .home-top-finale .finale-ticket,
  body.section-home .home-top-finale .finale-ticket span {
    max-width: 100%;
  }

  body.section-home .home-top-finale .finale-glow {
    left: 0;
    right: 0;
    width: auto;
  }
}

body.section-home .section-head,
body.section-home .category-section > div:first-child,
body.section-home .home-top-finale > div:last-child,
body.section-home .bottom-finale > div:last-child {
  display: grid !important;
  grid-template-columns: 1fr !important;
  justify-items: center !important;
  text-align: center !important;
}

body.section-home .section-head h2,
body.section-home .section-head p,
body.section-home .category-section h2,
body.section-home .category-section p,
body.section-home .home-top-finale h2,
body.section-home .home-top-finale p,
body.section-home .bottom-finale h2,
body.section-home .bottom-finale p {
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center !important;
}

body.section-home .section-head {
  width: 100% !important;
  grid-template-columns: 1fr !important;
}

body.section-home .section-head > div,
body.section-home .section-head .text-link {
  grid-column: 1 !important;
  justify-self: center !important;
  text-align: center !important;
}

body.section-home .section-head .text-link {
  margin-top: 6px !important;
}

body.section-home .home-top-finale > div:last-child {
  justify-self: center !important;
}

body.section-home .home-top-finale .primary-btn {
  justify-self: center !important;
}

@media (max-width: 390px) {
  body:not(.section-dashboard):not(.section-panel-comercio) {
    --public-gutter: 20px;
  }

  body:not(.section-dashboard):not(.section-panel-comercio) .brand-logo {
    width: min(132px, 36vw);
  }

  body:not(.section-dashboard):not(.section-panel-comercio) .commerce-cta {
    padding: 0 8px;
    font-size: 11px;
  }
}
