:root {
  --green: #05ff00;
  --green-deep: #03c900;
  --ink: #050806;
  --paper: #f7fff5;
  --muted: #60705e;
  --line: rgba(5, 8, 6, 0.12);
  --glass: rgba(255, 255, 255, 0.82);
  --glass-strong: rgba(255, 255, 255, 0.9);
  --dark-glass: rgba(5, 8, 6, 0.74);
  --radius: 28px;
  --shadow: 0 18px 44px rgba(5, 8, 6, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", Inter, system-ui, sans-serif;
  letter-spacing: 0;
}

body::before {
  display: none;
  position: fixed;
  inset: 0;
  z-index: -2;
  content: "";
  background:
    linear-gradient(90deg, rgba(5, 8, 6, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, rgba(5, 8, 6, 0.04) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, black, transparent 72%);
}

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

button {
  border: 0;
  color: inherit;
  cursor: pointer;
  font: inherit;
}

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

.pixel-noscript {
  display: none;
}

section {
  scroll-margin-top: 104px;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 20;
  padding: 0.75rem 1rem;
  color: #fff;
  background: #000;
  border-radius: 999px;
  transform: translateY(-140%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-shell {
  width: min(1120px, calc(100% - 28px));
  margin: 0 auto;
  padding: 18px 0 108px;
}

.topbar {
  position: sticky;
  top: 12px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 58px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  background: var(--glass);
  box-shadow: 0 12px 28px rgba(5, 8, 6, 0.1);
  backdrop-filter: blur(10px) saturate(1.18);
  -webkit-backdrop-filter: blur(10px) saturate(1.18);
}

.brand-chip,
.quick-nav,
.hero-actions {
  display: flex;
  align-items: center;
}

.brand-chip {
  gap: 10px;
  min-width: 0;
  padding: 6px 14px 6px 6px;
  font-weight: 850;
  text-transform: uppercase;
}

.brand-chip img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
}

.quick-nav {
  gap: 4px;
  font-size: 0.88rem;
  font-weight: 750;
}

.quick-nav a,
.quick-nav button {
  appearance: none;
  padding: 12px 14px;
  border-radius: 999px;
  background: transparent;
  color: rgba(5, 8, 6, 0.72);
  cursor: pointer;
}

body[data-mode="deals"] [data-mode-trigger="deals"],
body[data-mode="whatsapp"] [data-mode-trigger="whatsapp"] {
  color: var(--green);
  background: var(--ink);
}

.mode-panel {
  display: none;
}

body[data-mode="deals"] .mode-deals,
body[data-mode="whatsapp"] .mode-whatsapp {
  display: block;
}

.section-panel {
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.74)),
    var(--glass);
  box-shadow: var(--shadow);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.86fr);
  gap: clamp(22px, 5vw, 58px);
  min-height: clamp(540px, calc(100svh - 165px), 680px);
  margin-top: 18px;
  padding: clamp(22px, 4.2vw, 48px);
  overflow: hidden;
}

.hero-store {
  margin-bottom: 14px;
}

.whatsapp-hero {
  align-items: center;
  min-height: clamp(540px, calc(100svh - 165px), 650px);
}

.hero-copy {
  align-self: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: rgba(5, 8, 6, 0.62);
  font-size: 0.76rem;
  font-weight: 850;
  line-height: 1.2;
  text-transform: uppercase;
}

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

h1 {
  max-width: 12ch;
  margin-bottom: 18px;
  font-size: clamp(3.4rem, 7.5vw, 6.45rem);
  line-height: 0.9;
  letter-spacing: 0;
}

.hero-text {
  max-width: 35rem;
  color: rgba(5, 8, 6, 0.72);
  font-size: clamp(1.04rem, 2vw, 1.22rem);
  line-height: 1.52;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.market-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.market-stats span,
.section-pill {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  width: fit-content;
  padding: 0 13px;
  border: 1px solid rgba(5, 8, 6, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  color: rgba(5, 8, 6, 0.72);
  font-size: 0.82rem;
  font-weight: 850;
}

.button,
.card-link,
.mobile-dock button {
  min-height: 48px;
  border-radius: 999px;
  font-weight: 850;
  text-align: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid rgba(5, 8, 6, 0.12);
}

.button-primary {
  color: var(--green);
  background: var(--ink);
}

.hero-visual {
  position: relative;
  display: grid;
  align-content: center;
  min-height: 360px;
}

.logo-stage {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  background: var(--green);
  box-shadow: 0 20px 48px rgba(5, 8, 6, 0.2);
  transform: rotate(-3deg);
}

.logo-stage img {
  width: 100%;
  height: 100%;
  min-height: 270px;
  object-fit: cover;
}

.floating-ticket {
  position: absolute;
  display: grid;
  gap: 4px;
  min-width: 156px;
  max-width: min(190px, calc(100% - 24px));
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 22px;
  background: var(--glass-strong);
  box-shadow: 0 14px 34px rgba(5, 8, 6, 0.13);
  backdrop-filter: blur(8px) saturate(1.12);
  -webkit-backdrop-filter: blur(8px) saturate(1.12);
}

.floating-ticket span {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 750;
  text-transform: uppercase;
}

.floating-ticket strong {
  font-size: 1.08rem;
  line-height: 1.05;
  overflow-wrap: break-word;
}

.ticket-a {
  right: 2%;
  top: 6%;
}

.ticket-b {
  bottom: 8%;
  left: -4%;
}

.service-row small {
  color: var(--muted);
  line-height: 1.45;
}

.deal-section {
  padding: clamp(20px, 4vw, 42px);
}

.section-heading {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}

.section-heading-row {
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 18px;
}

h2 {
  max-width: 13ch;
  margin-bottom: 0;
  font-size: clamp(2.25rem, 5vw, 4.35rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.deal-section {
  content-visibility: auto;
  contain-intrinsic-size: 900px;
  margin: 14px 0;
}

.deal-tabs {
  display: flex;
  gap: 8px;
  margin: 0 0 14px;
  overflow-x: auto;
  padding-bottom: 2px;
  scrollbar-width: none;
}

.deal-tabs::-webkit-scrollbar {
  display: none;
}

.deal-tabs button {
  flex: 0 0 auto;
  padding: 11px 14px;
  border: 1px solid rgba(5, 8, 6, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: rgba(5, 8, 6, 0.7);
  font-size: 0.88rem;
  font-weight: 850;
}

.deal-tabs button.is-active {
  color: var(--green);
  background: var(--ink);
}

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

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

.deal-card[hidden] {
  display: none;
}

.deal-card {
  display: grid;
  overflow: hidden;
  contain: layout paint;
  min-height: 520px;
  border: 1px solid rgba(5, 8, 6, 0.1);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 14px 34px rgba(5, 8, 6, 0.1);
}

.product-deal {
  min-height: 0;
}

.deal-media {
  position: relative;
  min-height: 214px;
  overflow: hidden;
  background: var(--green);
}

.product-deal .deal-media {
  display: block;
  aspect-ratio: 1 / 1;
  min-height: 0;
  background: #fff;
}

.deal-media::before {
  position: absolute;
  inset: 16px;
  content: "";
  border: 1px solid rgba(5, 8, 6, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.34);
}

.product-deal .deal-media::before {
  display: none;
}

.product-deal .deal-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease;
}

.product-deal:hover .deal-media img {
  transform: scale(1.035);
}

.deal-media span {
  position: absolute;
  display: block;
  border-radius: 999px;
  background: var(--ink);
  box-shadow: 0 10px 24px rgba(5, 8, 6, 0.16);
}

.deal-media .deal-sticker {
  top: 12px;
  left: 12px;
  z-index: 1;
  width: auto;
  height: auto;
  max-width: calc(100% - 24px);
  padding: 8px 10px;
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
  transform: none;
}

.deal-body {
  display: flex;
  flex-direction: column;
  padding: 18px;
}

.deal-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}

.deal-badges span {
  padding: 7px 9px;
  border-radius: 999px;
  background: rgba(5, 8, 6, 0.08);
  color: rgba(5, 8, 6, 0.7);
  font-size: 0.72rem;
  font-weight: 860;
  text-transform: uppercase;
}

.deal-card h3 {
  margin-bottom: 10px;
  font-size: clamp(1.75rem, 3vw, 2.45rem);
  line-height: 1;
}

.deal-card p {
  color: var(--muted);
  line-height: 1.45;
}

.product-deal .deal-body > p:not(.deal-alert) {
  min-height: 3.1em;
}

.deal-alert {
  min-height: auto;
  margin: 10px 0 0;
  padding: 10px 11px;
  border: 1px solid rgba(5, 8, 6, 0.08);
  border-radius: 14px;
  background: rgba(5, 255, 0, 0.1);
  color: rgba(5, 8, 6, 0.7);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.32;
}

.deal-proof {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: auto 0 0;
}

.deal-proof div {
  display: grid;
  gap: 3px;
  min-height: 66px;
  padding: 11px;
  border-radius: 16px;
  background: rgba(5, 8, 6, 0.06);
}

.deal-proof dt,
.deal-proof dd {
  margin: 0;
}

.deal-proof dt {
  color: rgba(5, 8, 6, 0.5);
  font-size: 0.72rem;
  font-weight: 850;
  text-transform: uppercase;
}

.deal-proof dd {
  font-weight: 850;
  line-height: 1.15;
}

.card-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 18px;
  color: var(--green);
  background: var(--ink);
}

.service-section {
  content-visibility: auto;
  contain-intrinsic-size: 620px;
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: clamp(18px, 5vw, 60px);
  margin: 14px 0;
  padding: clamp(20px, 4vw, 42px);
}

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

.service-row {
  display: grid;
  gap: 5px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 22px;
  background: var(--glass-strong);
  box-shadow: 0 10px 26px rgba(5, 8, 6, 0.08);
}

.service-row span {
  font-weight: 900;
}

.whatsapp-offer-card {
  display: grid;
  gap: 14px;
  align-self: center;
  padding: clamp(22px, 4vw, 36px);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 30px;
  background:
    linear-gradient(145deg, rgba(5, 255, 0, 0.24), rgba(255, 255, 255, 0.72)),
    rgba(255, 255, 255, 0.7);
  box-shadow: 0 18px 44px rgba(5, 8, 6, 0.13);
}

.whatsapp-offer-card span {
  color: rgba(5, 8, 6, 0.62);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.whatsapp-offer-card strong {
  max-width: 9ch;
  font-size: clamp(2.35rem, 5vw, 4rem);
  line-height: 0.95;
}

.whatsapp-offer-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.whatsapp-grid {
  margin-top: 14px;
}

.business-panel {
  display: grid;
  gap: 10px;
  margin: 14px 0;
  padding: clamp(20px, 4vw, 42px);
}

.business-panel h2 {
  max-width: 16ch;
}

.data-list {
  display: grid;
  margin: 16px 0 0;
}

.data-row {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 16px;
  padding: 14px 0;
  border-top: 1px solid rgba(5, 8, 6, 0.1);
}

.data-row dt,
.data-row dd {
  margin: 0;
}

.data-row dt {
  color: rgba(5, 8, 6, 0.52);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.data-row dd {
  font-weight: 820;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.verification-note {
  max-width: 48rem;
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.45;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  margin-top: 14px;
  padding: clamp(20px, 4vw, 34px);
}

.site-footer strong {
  display: block;
  max-width: 40rem;
  font-size: clamp(1.35rem, 3vw, 2rem);
  line-height: 1.05;
}

.site-footer > p {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
  font-weight: 780;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.footer-links a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  padding: 0 13px;
  border: 1px solid rgba(5, 8, 6, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  color: rgba(5, 8, 6, 0.76);
  font-size: 0.82rem;
  font-weight: 850;
}

.mobile-dock {
  display: none;
  position: fixed;
  right: max(14px, env(safe-area-inset-right));
  bottom: max(14px, env(safe-area-inset-bottom));
  left: max(14px, env(safe-area-inset-left));
  z-index: 15;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 14px 38px rgba(5, 8, 6, 0.16);
  backdrop-filter: blur(10px) saturate(1.18);
  -webkit-backdrop-filter: blur(10px) saturate(1.18);
}

.mobile-dock button {
  appearance: none;
  display: grid;
  flex: 1;
  place-items: center;
  background: transparent;
  color: rgba(5, 8, 6, 0.76);
  cursor: pointer;
}

.reveal-card {
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 260ms ease,
    transform 260ms ease;
}

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

:focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 3px;
}

@media (hover: hover) {
  .button,
  .deal-card,
  .service-row,
  .mode-link,
  .footer-links a,
  .mobile-dock button {
    transition:
      transform 180ms ease,
      box-shadow 180ms ease,
      background 180ms ease;
  }

  .button:hover,
  .deal-card:hover,
  .service-row:hover,
  .mode-link:hover,
  .footer-links a:hover,
  .mobile-dock button:hover {
    transform: translateY(-2px);
  }
}

@media (max-width: 860px) {
  .site-shell {
    width: min(100% - 22px, 680px);
    padding-top: 12px;
  }

  .quick-nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 22px;
  }

  h1 {
    max-width: 11ch;
  }

  .hero-visual {
    min-height: 250px;
  }

  .logo-stage img {
    min-height: 165px;
  }

  .ticket-a {
    top: 8px;
    right: 8px;
  }

  .ticket-b {
    bottom: 6px;
    left: 6px;
  }

  .section-heading-row,
  .deal-grid,
  .data-row,
  .site-footer,
  .whatsapp-hero,
  .service-section {
    grid-template-columns: 1fr;
  }

  .deal-grid {
    display: flex;
    margin-inline: -11px;
    padding: 0 11px 10px;
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-x: contain;
    overscroll-behavior-y: none;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    touch-action: pan-x;
  }

  .deal-grid::-webkit-scrollbar {
    display: none;
  }

  .deal-card {
    flex: 0 0 min(86vw, 360px);
    width: min(86vw, 360px);
    min-width: 0;
    scroll-snap-align: start;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .mobile-dock {
    display: flex;
  }
}

@media (max-width: 430px) {
  h1 {
    font-size: clamp(3rem, 16vw, 4.35rem);
  }

  .hero-text {
    font-size: 1rem;
    line-height: 1.42;
  }

  .whatsapp-hero h1 {
    font-size: 4rem;
  }

  h2 {
    font-size: clamp(2.1rem, 11vw, 3rem);
  }

  .floating-ticket {
    min-width: 128px;
    max-width: 156px;
    padding: 13px;
  }

  .hero-actions .button {
    width: 100%;
  }
}

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