/* Danta — marketing site */
:root {
  --ink: #0b1c14;
  --ink-soft: #173126;
  --pine: #174d37;
  --pine-deep: #0d3626;
  --brand: #2b9866;
  --brand-bright: #3fbd82;
  --mint: #eaf7f0;
  --mint-strong: #d8f0e2;
  --aqua: #4ec3c7;
  --sun: #f4d04f;
  --lavender: #e9dff6;
  --paper: #f7faf6;
  --paper-warm: #f3f1e9;
  --white: #ffffff;
  --muted: #58685f;
  --line: rgba(11, 28, 20, 0.12);
  --line-light: rgba(255, 255, 255, 0.16);
  --shadow-soft: 0 24px 70px rgba(13, 54, 38, 0.12);
  --shadow-phone: 0 50px 120px rgba(7, 35, 23, 0.3);
  --radius-sm: 16px;
  --radius: 26px;
  --radius-lg: 42px;
  --container: 1240px;
  --header-height: 88px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 18px);
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--paper);
  font-family: "Avenir Next", Avenir, "SF Pro Display", "SF Pro Text", Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::selection {
  color: var(--white);
  background: var(--pine);
}

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

danta-branded-qr {
  display: block;
  width: var(--danta-qr-size, 220px);
  max-width: 100%;
  aspect-ratio: 1;
  border-radius: 7.5%;
  background: #fff;
}

danta-branded-qr:defined {
  background: transparent;
}

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

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

h1,
h2,
h3 {
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

.container {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}

.anchor {
  scroll-margin-top: calc(var(--header-height) + 20px);
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 12px 16px;
  color: var(--white);
  background: var(--ink);
  border-radius: 12px;
  transform: translateY(-140%);
  transition: transform 0.2s ease;
}

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

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

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  padding: 14px 0;
  pointer-events: none;
}

.nav-shell {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 60px;
  padding: 8px 10px 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  background: rgba(249, 251, 247, 0.78);
  box-shadow: 0 12px 36px rgba(11, 28, 20, 0.08);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  pointer-events: auto;
  transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.3s var(--ease);
}

.site-header.is-scrolled .nav-shell {
  background: rgba(249, 251, 247, 0.94);
  box-shadow: 0 16px 44px rgba(11, 28, 20, 0.12);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  font-size: 1.06rem;
  font-weight: 900;
  letter-spacing: -0.035em;
}

.brand-mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  overflow: hidden;
  border-radius: 12px;
  background: var(--white);
  box-shadow: inset 0 0 0 1px rgba(43, 152, 102, 0.12);
}

.brand-mark img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.5vw, 34px);
}

.main-nav a {
  position: relative;
  color: var(--ink-soft);
  font-size: 0.88rem;
  font-weight: 700;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 2px;
  border-radius: 99px;
  background: var(--brand);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s var(--ease);
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-actions {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 8px;
}

.nav-download {
  display: inline-flex;
  min-height: 43px;
  align-items: center;
  justify-content: center;
  padding: 10px 19px;
  color: var(--white);
  background: var(--pine);
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 800;
  transition: transform 0.25s var(--ease), background 0.25s ease;
}

.nav-download:hover {
  background: var(--brand);
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  width: 43px;
  height: 43px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--mint);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 17px;
  height: 2px;
  margin: 4px auto;
  border-radius: 99px;
  background: var(--pine);
  transition: transform 0.25s ease;
}

/* Shared typography and controls */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 22px;
  color: var(--pine);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 5px rgba(43, 152, 102, 0.13);
}

.eyebrow--green {
  color: var(--brand);
}

.eyebrow--light {
  color: var(--mint-strong);
}

.button-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 13px 21px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.93rem;
  font-weight: 850;
  transition: transform 0.25s var(--ease), box-shadow 0.25s ease, background 0.25s ease;
}

.button span {
  font-size: 1.12rem;
}

.button:hover {
  transform: translateY(-3px);
}

.button--primary {
  color: var(--white);
  background: var(--pine);
  box-shadow: 0 15px 34px rgba(23, 77, 55, 0.2);
}

.button--primary:hover {
  background: var(--brand);
  box-shadow: 0 18px 40px rgba(43, 152, 102, 0.26);
}

.button--ghost {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.58);
}

.button--soft {
  border-color: rgba(43, 152, 102, 0.18);
  background: var(--mint);
}

/* Scroll-driven app story */
.app-story {
  position: relative;
  overflow: clip;
  background:
    radial-gradient(circle at 12% 12%, rgba(78, 195, 199, 0.17), transparent 26%),
    radial-gradient(circle at 92% 42%, rgba(244, 208, 79, 0.14), transparent 24%),
    linear-gradient(180deg, #fafcf8 0%, var(--paper) 68%, var(--paper-warm) 100%);
}

.app-story::before {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(23, 77, 55, 0.15) 0.7px, transparent 0.7px);
  background-size: 22px 22px;
  content: "";
  opacity: 0.22;
  mask-image: linear-gradient(to right, black, transparent 46%, transparent);
  pointer-events: none;
}

.story-ambient {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
}

.story-ambient--one {
  top: 17%;
  left: -300px;
  border: 1px solid rgba(43, 152, 102, 0.22);
  box-shadow: 0 0 0 70px rgba(43, 152, 102, 0.035), 0 0 0 140px rgba(43, 152, 102, 0.025);
}

.story-ambient--two {
  right: -320px;
  bottom: 17%;
  border: 1px solid rgba(78, 195, 199, 0.18);
  box-shadow: 0 0 0 90px rgba(78, 195, 199, 0.03), 0 0 0 180px rgba(78, 195, 199, 0.018);
}

.story-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(390px, 1.12fr);
  gap: clamp(44px, 7vw, 116px);
  align-items: start;
}

.story-copy {
  grid-column: 1;
  grid-row: 1;
}

.story-step {
  display: grid;
  min-height: 100svh;
  align-items: center;
  padding: calc(var(--header-height) + 50px) 0 70px;
  opacity: 0.28;
  transform: translateY(28px);
  transition: opacity 0.5s ease, transform 0.7s var(--ease);
}

#story-scanner {
  min-height: 120svh;
}

.story-step.is-active {
  opacity: 1;
  transform: translateY(0);
}

.story-copy-inner {
  max-width: 570px;
}

.story-step--hero h1 {
  margin-bottom: 24px;
  color: var(--ink);
  font-size: clamp(3.2rem, 5.2vw, 4.8rem);
  font-weight: 900;
  letter-spacing: -0.068em;
  line-height: 0.93;
}

.story-step--hero h1 span {
  color: var(--brand);
}

.hero-lead {
  max-width: 540px;
  margin-bottom: 31px;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.4vw, 1.27rem);
  line-height: 1.65;
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-top: 30px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.hero-proof i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--brand);
}

.scroll-hint {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 42px;
  color: var(--pine);
  font-size: 0.78rem;
  font-weight: 800;
}

.scroll-hint span {
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  border: 1px solid rgba(23, 77, 55, 0.22);
  border-radius: 50%;
  animation: nudge-down 1.8s ease-in-out infinite;
}

.story-step:not(.story-step--hero) h2 {
  max-width: 610px;
  margin-bottom: 24px;
  font-size: clamp(2.6rem, 4.5vw, 5.25rem);
  font-weight: 900;
  letter-spacing: -0.065em;
  line-height: 0.98;
}

.story-step:not(.story-step--hero) .story-copy-inner > p:not(.step-kicker) {
  max-width: 540px;
  margin-bottom: 29px;
  color: var(--muted);
  font-size: clamp(1.04rem, 1.35vw, 1.22rem);
  line-height: 1.7;
}

.step-kicker {
  margin-bottom: 18px;
  color: var(--brand);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.feature-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-pills li {
  padding: 9px 13px;
  border: 1px solid rgba(43, 152, 102, 0.17);
  border-radius: 999px;
  color: var(--pine);
  background: rgba(234, 247, 240, 0.78);
  font-size: 0.77rem;
  font-weight: 800;
}

.micro-proof {
  display: flex;
  width: max-content;
  max-width: 100%;
  align-items: center;
  gap: 13px;
  padding: 13px 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.66);
}

.micro-proof-icon {
  display: grid;
  width: 41px;
  height: 41px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 13px;
  color: var(--white);
  background: var(--brand);
  font-weight: 900;
}

.micro-proof > span:last-child {
  display: grid;
  color: var(--muted);
  font-size: 0.78rem;
}

.micro-proof strong {
  color: var(--ink);
  font-size: 0.9rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--pine);
  font-size: 0.94rem;
  font-weight: 900;
}

.text-link span {
  transition: transform 0.25s var(--ease);
}

.text-link:hover span {
  transform: translateX(5px);
}

.story-visual {
  height: 100%;
  grid-column: 2;
  grid-row: 1;
}

.phone-sticky {
  position: sticky;
  top: 0;
  display: grid;
  height: 100svh;
  place-items: center;
  isolation: isolate;
}

.phone-halo {
  position: absolute;
  z-index: -2;
  width: min(38vw, 510px);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 30%, rgba(255, 255, 255, 0.75), transparent 18%),
    linear-gradient(145deg, var(--mint-strong), rgba(78, 195, 199, 0.36));
  box-shadow: 0 0 0 44px rgba(43, 152, 102, 0.035), 0 0 0 88px rgba(43, 152, 102, 0.025);
  transform: scale(1);
  transition: background 0.8s ease, transform 0.8s var(--ease), border-radius 0.8s var(--ease);
}

.phone-sticky[data-scene="rotulo"] .phone-halo,
.phone-sticky[data-scene="escaneo"] .phone-halo {
  border-radius: 38% 62% 61% 39% / 53% 43% 57% 47%;
  background: linear-gradient(145deg, rgba(78, 195, 199, 0.48), rgba(216, 240, 226, 0.88));
  transform: scale(0.95) rotate(8deg);
}

.phone-sticky[data-scene="enviar"] .phone-halo {
  border-radius: 63% 37% 44% 56% / 43% 52% 48% 57%;
  background: linear-gradient(145deg, rgba(244, 208, 79, 0.45), var(--mint-strong));
  transform: scale(1.03) rotate(-7deg);
}

.phone-sticky[data-scene="fondos"] .phone-halo {
  border-radius: 54% 46% 60% 40% / 42% 58% 42% 58%;
  background: linear-gradient(145deg, var(--lavender), rgba(234, 247, 240, 0.92));
  transform: scale(0.98) rotate(4deg);
}

.merchant-sign {
  position: absolute;
  z-index: 0;
  display: grid;
  width: min(270px, 44vw);
  justify-items: center;
  opacity: 0;
  filter: drop-shadow(0 30px 32px rgba(7, 35, 23, 0.18));
  transform: translate3d(-72px, 80px, 0) rotate(-4deg) scale(0.82);
  transform-origin: 50% 82%;
  transition: opacity 0.5s ease, transform 0.9s var(--ease), filter 0.7s ease;
}

.merchant-sign-board {
  position: relative;
  display: grid;
  width: 100%;
  justify-items: center;
  padding: 19px 22px 18px;
  overflow: hidden;
  border: 1px solid rgba(23, 77, 55, 0.15);
  border-radius: 26px;
  background:
    radial-gradient(circle at 110% -12%, rgba(78, 195, 199, 0.32), transparent 34%),
    linear-gradient(155deg, #ffffff, #edf8f2 78%);
  box-shadow: inset 0 0 0 7px rgba(255, 255, 255, 0.72);
}

.merchant-sign-board::before {
  position: absolute;
  top: -34px;
  left: -35px;
  width: 105px;
  height: 105px;
  border: 19px solid rgba(43, 152, 102, 0.08);
  border-radius: 50%;
  content: "";
}

.merchant-sign-brand {
  position: relative;
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--pine);
  font-size: 0.9rem;
  font-weight: 900;
}

.merchant-sign-brand span {
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  border-radius: 8px 12px 12px 8px;
  color: #fff;
  background: var(--brand);
  font-size: 0.78rem;
}

.merchant-sign-board > p {
  position: relative;
  display: grid;
  margin: 12px 0 11px;
  color: var(--ink);
  font-size: clamp(1.35rem, 2.15vw, 1.8rem);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 0.98;
  text-align: center;
}

.merchant-sign-board > p strong {
  color: var(--brand);
}

.merchant-qr,
.scanner-merchant-qr {
  display: block;
  flex: 0 0 auto;
}

.merchant-qr {
  --danta-qr-size: 132px;
}

.merchant-sign-board > small {
  margin-top: 9px;
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 750;
}

.merchant-sign-name {
  margin-top: 3px;
  color: var(--pine);
  font-size: 0.72rem;
}

.merchant-sign-neck {
  width: 18px;
  height: 32px;
  background: linear-gradient(90deg, #244b3a, #4a7661, #1b3e2f);
}

.merchant-sign-base {
  width: 116px;
  height: 16px;
  border-radius: 50%;
  background: linear-gradient(180deg, #315b48, #142f23);
  box-shadow: 0 8px 18px rgba(7, 35, 23, 0.25);
}

.phone-sticky[data-scene="rotulo"] .merchant-sign,
.phone-sticky[data-scene="escaneo"] .merchant-sign {
  opacity: 1;
}

.phone-sticky[data-scene="rotulo"] .merchant-sign {
  transform: translate3d(-96px, 64px, 0) rotate(-2deg) scale(1);
}

.phone-sticky[data-scene="escaneo"] .merchant-sign {
  filter: drop-shadow(0 22px 28px rgba(7, 35, 23, 0.14));
  transform: translate3d(-66px, 64px, 0) rotate(1deg) scale(0.95);
}

.phone-shell {
  position: relative;
  z-index: 2;
  width: min(350px, 80%);
  aspect-ratio: 390 / 800;
  overflow: hidden;
  border: 9px solid #090f0c;
  border-radius: 50px;
  background: #090f0c;
  box-shadow: var(--shadow-phone), inset 0 0 0 1px rgba(255, 255, 255, 0.2);
  container-type: inline-size;
  transform: perspective(1200px) rotateY(-4deg) rotateX(1deg);
  transition: transform 0.95s var(--ease), box-shadow 0.65s ease;
}

.phone-sticky[data-scene="rotulo"] .phone-shell {
  transform: perspective(1200px) translate3d(132px, -62px, 0) rotateY(-7deg) rotateZ(3deg) scale(0.84);
}

.phone-sticky[data-scene="escaneo"] .phone-shell {
  transform: perspective(1200px) translate3d(var(--scan-phone-x, -42px), var(--scan-phone-y, 36px), 0) rotateY(2deg) rotateZ(var(--scan-phone-angle, -2deg)) scale(0.9);
  transition-duration: 0.12s;
  transition-timing-function: linear;
}

.phone-sticky[data-scene="enviar"] .phone-shell {
  transform: perspective(1200px) rotateY(-2deg) rotateX(1deg) translateY(2px);
}

.phone-sticky[data-scene="fondos"] .phone-shell {
  transform: perspective(1200px) rotateY(4deg) rotateX(0deg) translateY(-4px);
}

.phone-island {
  position: absolute;
  top: 10px;
  left: 50%;
  z-index: 20;
  width: 31%;
  height: 23px;
  border-radius: 99px;
  background: #090f0c;
  transform: translateX(-50%);
}

.phone-island::after {
  position: absolute;
  top: 7px;
  right: 12px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #15271f;
  box-shadow: inset 0 0 0 2px #070c09;
  content: "";
}

.phone-viewport {
  position: relative;
  height: 100%;
  overflow: hidden;
  border-radius: 40px;
  background: #fbfcfa;
}

.phone-status {
  position: absolute;
  inset: 0 0 auto;
  z-index: 12;
  display: flex;
  height: 39px;
  align-items: center;
  justify-content: space-between;
  padding: 8px 18px 0;
  color: #111;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.phone-state {
  position: absolute;
  inset: 39px 0 61px;
  z-index: 1;
  overflow: hidden;
  padding: 12px 14px;
  background: #fbfcfa;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(0, 28px, 0) scale(0.985);
  transition: opacity 0.38s ease, transform 0.62s var(--ease);
}

.phone-state.is-active {
  z-index: 2;
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.app-bar {
  display: flex;
  min-height: 39px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.app-bar > div {
  display: flex;
  align-items: center;
  gap: 8px;
}

.app-bar strong {
  font-size: 16px;
  font-weight: 900;
  letter-spacing: -0.035em;
}

.app-mini-logo {
  display: inline-grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 9px 13px 13px 9px;
  color: var(--white);
  background: var(--brand);
  font-size: 14px;
  font-weight: 950;
}

.app-actions {
  color: #34453c;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.05em;
}

.month-pill {
  display: flex;
  width: max-content;
  min-height: 26px;
  align-items: center;
  gap: 13px;
  margin-bottom: 11px;
  padding: 5px 9px;
  border: 1px solid rgba(43, 152, 102, 0.18);
  border-radius: 999px;
  color: var(--pine);
  background: var(--mint);
  font-size: 9px;
  font-weight: 850;
}

.phone-label {
  margin: 0 0 8px;
  color: #1a271f;
  font-size: 10px;
  font-weight: 900;
}

.quick-actions {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 5px;
  margin-bottom: 11px;
}

.quick-actions > div {
  display: grid;
  justify-items: center;
  gap: 4px;
  min-width: 0;
}

.quick-actions small {
  width: 100%;
  overflow: hidden;
  color: #3f4d45;
  font-size: 7.5px;
  font-weight: 750;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.avatar {
  display: grid;
  width: 39px;
  height: 39px;
  place-items: center;
  overflow: hidden;
  border: 2px solid rgba(43, 152, 102, 0.13);
  border-radius: 50%;
  background: #eff5f1;
}

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.avatar--add {
  color: var(--brand);
  background: var(--mint);
  font-size: 20px;
  font-weight: 500;
}

.avatar--small {
  width: 32px;
  height: 32px;
  border-width: 1px;
}

.invite-card {
  margin-bottom: 12px;
  padding: 10px;
  border: 1px solid rgba(43, 152, 102, 0.15);
  border-radius: 16px;
  background: linear-gradient(140deg, rgba(43, 152, 102, 0.12), rgba(43, 152, 102, 0.035) 60%, #fff);
}

.invite-card > div:first-child {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 8px;
}

.invite-card strong {
  font-size: 9.5px;
  font-weight: 900;
}

.gift-badge {
  display: grid;
  width: 23px;
  height: 23px;
  place-items: center;
  border-radius: 8px;
  color: var(--pine);
  background: var(--sun);
  font-size: 11px;
}

.invite-code {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 7px;
}

.invite-code span,
.invite-code b {
  padding: 4px 7px;
  border-radius: 7px;
  font-size: 7.5px;
}

.invite-code span {
  flex: 1;
  border: 1px solid rgba(11, 28, 20, 0.08);
  background: rgba(255, 255, 255, 0.7);
}

.invite-code b {
  color: var(--white);
  background: var(--pine);
}

.phone-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 7px;
  font-size: 9px;
}

.phone-section-head strong {
  font-weight: 900;
}

.phone-section-head span {
  color: var(--brand);
  font-size: 7.5px;
  font-weight: 800;
}

.transaction {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 8px;
  align-items: center;
  min-height: 50px;
  margin-bottom: 6px;
  padding: 7px 8px;
  border: 1px solid rgba(11, 28, 20, 0.065);
  border-radius: 13px;
  background: #fff;
  box-shadow: 0 5px 14px rgba(11, 28, 20, 0.035);
}

.transaction > div {
  display: grid;
  min-width: 0;
}

.transaction strong {
  overflow: hidden;
  font-size: 8.8px;
  font-weight: 850;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.transaction small {
  overflow: hidden;
  color: #718078;
  font-size: 6.8px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.transaction > b {
  font-size: 8.5px;
  font-weight: 900;
}

.transaction--in > b {
  color: #16814e;
}

.transaction--out > b {
  color: #26332c;
}

.phone-bottom-nav {
  position: absolute;
  inset: auto 0 0;
  z-index: 10;
  display: grid;
  height: 61px;
  grid-template-columns: repeat(5, 1fr);
  padding: 6px 7px 8px;
  border-top: 1px solid rgba(11, 28, 20, 0.07);
  background: rgba(234, 247, 240, 0.96);
  backdrop-filter: blur(10px);
}

.phone-bottom-nav span {
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 2px;
  color: #66766d;
}

.phone-bottom-nav b {
  font-size: 13px;
  line-height: 1;
}

.phone-bottom-nav small {
  font-size: 6.5px;
  font-weight: 750;
}

.phone-shell[data-current-nav="actividad"] [data-phone-nav="actividad"],
.phone-shell[data-current-nav="scanner"] [data-phone-nav="scanner"],
.phone-shell[data-current-nav="fondos"] [data-phone-nav="fondos"] {
  color: #0c1510;
  font-weight: 900;
}

.phone-shell[data-current-nav="actividad"] [data-phone-nav="actividad"] b,
.phone-shell[data-current-nav="scanner"] [data-phone-nav="scanner"] b,
.phone-shell[data-current-nav="fondos"] [data-phone-nav="fondos"] b {
  color: var(--brand);
  transform: translateY(-1px);
}

/* Scanner screen */
.phone-state--scanner {
  padding: 0;
  color: var(--white);
  background:
    radial-gradient(circle at 50% 48%, rgba(78, 195, 199, 0.22), transparent 27%),
    linear-gradient(160deg, #21483b, #071b13 76%);
}

.phone-state--scanner::before,
.phone-state--scanner::after {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.035);
  content: "";
}

.phone-state--scanner::before {
  top: 12%;
  left: -21%;
  width: 58%;
  aspect-ratio: 1;
}

.phone-state--scanner::after {
  right: -25%;
  bottom: 4%;
  width: 68%;
  aspect-ratio: 1;
}

.scanner-top {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 14px 14px 7px;
  font-size: 9px;
}

.scanner-top strong {
  font-size: 11px;
}

.scanner-top span:last-child {
  text-align: right;
}

.scanner-copy {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 4px;
  justify-items: center;
  margin: 12px 0 12px;
}

.scanner-copy strong {
  font-size: 11px;
}

.scanner-copy span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 8px;
}

.scan-frame {
  position: relative;
  z-index: 2;
  width: 82%;
  aspect-ratio: 1;
  margin-inline: auto;
  overflow: hidden;
  border: 3px solid rgba(255, 255, 255, 0.72);
  border-radius: 21px;
  background:
    linear-gradient(180deg, rgba(10, 28, 21, 0.12), rgba(10, 28, 21, 0.54)),
    radial-gradient(circle at 50% 45%, rgba(242, 255, 248, 0.16), transparent 43%),
    #315d4d;
  box-shadow: inset 0 0 42px rgba(4, 18, 12, 0.3), 0 18px 35px rgba(0, 0, 0, 0.2);
}

.scan-frame > i {
  position: absolute;
  z-index: 5;
  width: 48px;
  height: 48px;
  border-color: rgba(255, 255, 255, 0.98);
  border-style: solid;
}

.scan-frame > i:nth-child(1) {
  top: -3px;
  left: -3px;
  border-width: 4px 0 0 4px;
  border-radius: 20px 0 0;
}

.scan-frame > i:nth-child(2) {
  top: -3px;
  right: -3px;
  border-width: 4px 4px 0 0;
  border-radius: 0 20px 0 0;
}

.scan-frame > i:nth-child(3) {
  right: -3px;
  bottom: -3px;
  border-width: 0 4px 4px 0;
  border-radius: 0 0 20px;
}

.scan-frame > i:nth-child(4) {
  bottom: -3px;
  left: -3px;
  border-width: 0 0 4px 4px;
  border-radius: 0 0 0 20px;
}

.scan-line {
  position: absolute;
  z-index: 6;
  top: 19%;
  right: 9%;
  left: 9%;
  height: 2px;
  border-radius: 99px;
  background: linear-gradient(90deg, transparent, var(--aqua), #fff, var(--aqua), transparent);
  box-shadow: 0 0 15px var(--aqua);
  opacity: 0;
  animation: scan 2.2s ease-in-out infinite;
  animation-play-state: paused;
}

.phone-sticky[data-scene="escaneo"] .scan-line {
  opacity: 1;
  animation-play-state: running;
}

.scan-target {
  position: absolute;
  top: 52%;
  left: 50%;
  display: grid;
  gap: 7px;
  justify-items: center;
  opacity: 0.78;
  filter: blur(0.7px);
  transform: translate(-50%, -50%) rotate(-1.5deg) scale(0.87);
  transition: opacity 0.5s ease, filter 0.5s ease, transform 0.75s var(--ease);
}

.phone-sticky[data-scene="escaneo"] .scan-target {
  opacity: 1;
  filter: blur(0);
  transform: translate(-50%, -50%) rotate(0) scale(1);
}

.scanner-merchant-qr {
  --danta-qr-size: 122px;
}

.scan-target small {
  padding: 4px 7px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(7, 27, 19, 0.48);
  font-size: 6.5px;
  font-weight: 800;
}

.scan-found {
  position: absolute;
  right: 10px;
  bottom: 10px;
  left: 10px;
  z-index: 7;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 7px 9px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 11px;
  color: var(--pine);
  background: rgba(246, 255, 250, 0.92);
  box-shadow: 0 10px 22px rgba(2, 18, 11, 0.22);
  opacity: 0;
  transform: translateY(10px) scale(0.96);
  transition: opacity 0.35s ease, transform 0.48s var(--ease);
}

.scan-found span {
  display: grid;
  width: 19px;
  height: 19px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--brand);
  font-size: 8px;
}

.scan-found strong {
  font-size: 7.5px;
}

.phone-sticky.is-scan-complete .scan-found {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.scanner-tools {
  position: relative;
  z-index: 2;
  display: grid;
  width: 82%;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
  margin: 14px auto 0;
}

.scanner-tools > span {
  display: grid;
  gap: 4px;
  justify-items: center;
  color: rgba(255, 255, 255, 0.77);
}

.scanner-tools b {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 11px;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  font-size: 11px;
}

.scanner-tools small {
  font-size: 6px;
  font-weight: 750;
}

/* Send screen */
.phone-state--send {
  padding: 9px 14px 12px;
  background:
    radial-gradient(circle at 92% -10%, rgba(43, 152, 102, 0.12), transparent 28%),
    #fbfcfa;
}

.send-app-head {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 58px;
  margin-bottom: 5px;
}

.send-app-head > div {
  display: grid;
  gap: 1px;
  justify-items: center;
}

.send-app-head strong {
  font-size: 10px;
  letter-spacing: -0.035em;
}

.send-brand-mark {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.send-back {
  align-self: start;
  margin-top: 9px;
  color: var(--pine);
  font-size: 21px;
  line-height: 1;
}

.send-bell {
  position: relative;
  width: 23px;
  height: 23px;
  justify-self: end;
  align-self: start;
  margin-top: 8px;
  border: 1px solid rgba(11, 28, 20, 0.1);
  border-radius: 50%;
  color: transparent;
  background: #fff;
}

.send-bell::before {
  position: absolute;
  top: 6px;
  left: 7px;
  width: 7px;
  height: 8px;
  border: 1.5px solid var(--pine);
  border-radius: 6px 6px 4px 4px;
  content: "";
}

.send-bell::after {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 5px;
  height: 5px;
  border: 1px solid #fff;
  border-radius: 50%;
  background: var(--brand);
  content: "";
}

.send-wallet {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
  padding: 8px 10px;
  border: 1px solid rgba(43, 152, 102, 0.12);
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(234, 247, 240, 0.98), #fff);
}

.send-wallet > div {
  display: flex;
  align-items: center;
  gap: 8px;
}

.send-wallet > div > span:last-child {
  display: grid;
}

.send-wallet small {
  color: #607169;
  font-size: 6.5px;
}

.send-wallet strong {
  font-size: 13px;
  letter-spacing: -0.03em;
}

.send-wallet > b,
.cashback-row > b {
  color: var(--brand);
  font-size: 13px;
}

.wallet-icon {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 9px;
  color: #fff;
  background: var(--brand);
  font-size: 12px;
  font-weight: 900;
}

.cashback-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 7px;
  align-items: center;
  margin: 0 2px 11px;
  color: var(--pine);
  font-size: 7px;
}

.cashback-row > span {
  color: #9b7710;
}

.cashback-row > strong {
  font-size: 7px;
}

.recipient-tabs,
.fund-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  margin-bottom: 9px;
  padding: 3px;
  border-radius: 10px;
  background: #edf1ee;
}

.recipient-tabs span,
.fund-tabs span {
  padding: 5px 3px;
  border-radius: 8px;
  color: #6b7971;
  font-size: 7px;
  font-weight: 800;
  text-align: center;
}

.recipient-tabs .is-selected,
.fund-tabs .is-selected {
  color: var(--pine);
  background: #fff;
  box-shadow: 0 2px 6px rgba(11, 28, 20, 0.06);
}

.recipient-tabs span {
  text-align: center;
}

.fund-tabs span {
  text-align: center;
}

.recipient-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 9px;
  align-items: center;
  margin-bottom: 10px;
  padding: 8px 9px;
  border: 1px solid rgba(43, 152, 102, 0.14);
  border-radius: 14px;
  background: #fff;
}

.recipient-card > div {
  display: grid;
}

.recipient-card strong {
  font-size: 9px;
}

.recipient-card strong span {
  margin-left: 2px;
  color: #d9a609;
  font-size: 7px;
}

.recipient-card small {
  color: #74827a;
  font-size: 7px;
}

.recipient-card > b {
  display: grid;
  width: 21px;
  height: 21px;
  place-items: center;
  border-radius: 50%;
  color: #6c7a72;
  background: #edf1ee;
  font-size: 11px;
}

.amount-label {
  display: block;
  margin-bottom: 6px;
  font-size: 8px;
  font-weight: 850;
}

.amount-field {
  display: flex;
  align-items: baseline;
  gap: 7px;
  margin-bottom: 3px;
  padding: 10px 12px;
  border: 1.5px solid rgba(43, 152, 102, 0.35);
  border-radius: 13px;
  background: #fff;
}

.amount-field span {
  color: var(--brand);
  font-size: 13px;
  font-weight: 900;
}

.amount-field strong {
  font-size: 19px;
  letter-spacing: -0.04em;
  clip-path: inset(0 100% 0 0);
}

.phone-sticky[data-scene="enviar"] .amount-field strong {
  animation: amount-type 0.8s steps(6, end) 0.42s forwards;
}

.amount-hint {
  display: block;
  margin: 0 0 8px 3px;
  color: #839088;
  font-size: 6.3px;
}

.comment-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 5px;
  font-size: 8px;
  font-weight: 850;
}

.comment-label span {
  color: #809087;
  font-size: 6px;
  font-weight: 700;
}

.comment-field {
  margin-bottom: 8px;
  padding: 8px 10px;
  border: 1px solid rgba(11, 28, 20, 0.09);
  border-radius: 11px;
  color: #596960;
  background: #fff;
  font-size: 7.5px;
}

.benefit-note {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 8px;
  padding: 7px 9px;
  border-radius: 12px;
  background: #fff9dd;
}

.benefit-note > span {
  color: #9b7710;
}

.benefit-note > div {
  display: grid;
}

.benefit-note strong {
  font-size: 8px;
}

.benefit-note small {
  color: #756c48;
  font-size: 6.5px;
}

.phone-primary {
  width: 100%;
  padding: 9px;
  border: 0;
  border-radius: 12px;
  color: #fff;
  background: var(--pine);
  font-size: 9px;
  font-weight: 900;
  opacity: 0.45;
  transform: translateY(5px);
}

.phone-sticky[data-scene="enviar"] .phone-primary {
  animation: send-ready 0.45s ease 1.1s forwards;
}

@container (max-width: 300px) {
  .phone-state--send {
    padding: 6px 11px 8px;
  }

  .send-app-head {
    min-height: 46px;
    margin-bottom: 2px;
  }

  .send-brand-mark {
    width: 32px;
    height: 32px;
  }

  .send-back {
    margin-top: 6px;
    font-size: 18px;
  }

  .send-bell {
    width: 21px;
    height: 21px;
    margin-top: 5px;
  }

  .send-bell::before {
    top: 5px;
    left: 6px;
  }

  .send-wallet {
    margin-bottom: 4px;
    padding: 6px 8px;
  }

  .wallet-icon {
    width: 24px;
    height: 24px;
  }

  .cashback-row {
    margin-bottom: 6px;
  }

  .phone-state--send .phone-label {
    margin-bottom: 5px;
  }

  .recipient-tabs {
    margin-bottom: 6px;
  }

  .recipient-tabs span {
    padding-block: 4px;
  }

  .recipient-card {
    margin-bottom: 7px;
    padding: 6px 8px;
  }

  .phone-state--send .recipient-card .avatar {
    width: 32px;
    height: 32px;
  }

  .amount-label {
    margin-bottom: 4px;
  }

  .amount-field {
    margin-bottom: 2px;
    padding: 7px 9px;
  }

  .amount-field strong {
    font-size: 16px;
  }

  .amount-hint {
    margin-bottom: 5px;
  }

  .comment-label {
    margin-bottom: 3px;
  }

  .comment-field {
    margin-bottom: 5px;
    padding: 6px 8px;
  }

  .benefit-note {
    margin-bottom: 5px;
    padding: 5px 7px;
  }

  .phone-primary {
    padding: 7px;
  }
}

/* Funds screen */
.balance-card {
  display: grid;
  margin: 8px 0 12px;
  padding: 15px;
  border-radius: 19px;
  color: #fff;
  background: linear-gradient(145deg, #174d37, #2b9866);
  box-shadow: 0 12px 24px rgba(23, 77, 55, 0.18);
}

.balance-card small {
  color: rgba(255, 255, 255, 0.7);
  font-size: 7.5px;
}

.balance-card strong {
  margin: 3px 0 7px;
  font-size: 25px;
  letter-spacing: -0.05em;
}

.balance-card span {
  font-size: 6.5px;
  opacity: 0.7;
}

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

.fund-action {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 9px;
  align-items: center;
  margin-bottom: 7px;
  padding: 9px 10px;
  border: 1px solid rgba(11, 28, 20, 0.07);
  border-radius: 14px;
  background: #fff;
}

.fund-action-icon {
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  border-radius: 10px;
  color: var(--pine);
  background: var(--mint);
  font-size: 14px;
  font-weight: 900;
}

.fund-action > div {
  display: grid;
}

.fund-action strong {
  font-size: 8.5px;
}

.fund-action small {
  color: #718078;
  font-size: 6.5px;
}

.fund-action > b {
  color: var(--brand);
  font-size: 14px;
}

.fund-mini-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 7px 2px;
  border-bottom: 1px solid rgba(11, 28, 20, 0.06);
  font-size: 8px;
}

.fund-mini-row strong {
  color: var(--pine);
}

/* Phone orbit cards */
.orbit-card {
  position: absolute;
  z-index: 4;
  display: flex;
  min-width: 175px;
  align-items: center;
  gap: 11px;
  padding: 11px 13px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 38px rgba(11, 28, 20, 0.13);
  backdrop-filter: blur(14px);
  opacity: 0;
  transform: translateY(14px) scale(0.94);
  transition: opacity 0.45s ease, transform 0.65s var(--ease);
}

.orbit-card > div {
  display: grid;
}

.orbit-card small {
  color: var(--muted);
  font-size: 0.65rem;
  font-weight: 700;
}

.orbit-card strong {
  font-size: 0.83rem;
  font-weight: 900;
}

.orbit-icon {
  display: grid;
  width: 37px;
  height: 37px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 12px;
  color: var(--pine);
  background: var(--mint);
  font-weight: 900;
}

.orbit-icon--in,
.orbit-icon--check {
  color: #fff;
  background: var(--brand);
}

.orbit-icon--coin {
  color: #614d0b;
  background: var(--sun);
}

.orbit-card--activity,
.orbit-card--send {
  right: -6px;
  bottom: 22%;
}

.orbit-card--scanner,
.orbit-card--funds {
  top: 21%;
  left: -12px;
}

.phone-sticky[data-active="0"] .orbit-card--activity,
.phone-sticky[data-scene="escaneo"].is-scan-complete .orbit-card--scanner,
.phone-sticky[data-active="3"] .orbit-card--send,
.phone-sticky[data-active="4"] .orbit-card--funds {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.story-progress {
  position: absolute;
  right: 5px;
  bottom: 50%;
  display: grid;
  gap: 7px;
  transform: translateY(50%);
}

.story-progress span {
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 99px;
  background: rgba(23, 77, 55, 0.22);
  transition: height 0.35s var(--ease), background 0.35s ease;
}

.story-progress span.is-active {
  height: 23px;
  background: var(--brand);
}

/* Product strip */
.product-strip {
  padding: 28px 0;
  border-block: 1px solid var(--line);
  background: var(--paper-warm);
}

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

.strip-grid article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  padding: 12px clamp(16px, 3vw, 38px);
  border-right: 1px solid var(--line);
}

.strip-grid article:first-child {
  padding-left: 0;
}

.strip-grid article:last-child {
  padding-right: 0;
  border-right: 0;
}

.strip-grid article > span {
  color: var(--brand);
  font-size: 0.7rem;
  font-weight: 900;
}

.strip-grid article > div {
  display: grid;
  gap: 5px;
}

.strip-grid strong {
  font-size: 0.95rem;
  letter-spacing: -0.02em;
}

.strip-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
}

/* What is Danta */
.danta-explainer {
  position: relative;
  overflow: hidden;
  padding: clamp(90px, 12vw, 170px) 0;
  background:
    radial-gradient(circle at 7% 16%, rgba(78, 195, 199, 0.12), transparent 23%),
    radial-gradient(circle at 92% 83%, rgba(43, 152, 102, 0.12), transparent 27%),
    #fbfcf9;
}

.danta-explainer::before {
  position: absolute;
  top: 110px;
  right: -150px;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(43, 152, 102, 0.12);
  border-radius: 50%;
  content: "";
  box-shadow:
    0 0 0 55px rgba(43, 152, 102, 0.035),
    0 0 0 110px rgba(43, 152, 102, 0.02);
  pointer-events: none;
}

.explainer-heading {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  align-items: end;
  gap: clamp(40px, 8vw, 115px);
  margin-bottom: clamp(55px, 8vw, 94px);
}

.explainer-heading h2 {
  max-width: 900px;
  margin-bottom: 0;
  font-size: clamp(3.2rem, 6.3vw, 6.8rem);
  font-weight: 900;
  letter-spacing: -0.075em;
  line-height: 0.91;
}

.explainer-heading > p {
  max-width: 470px;
  margin-bottom: 7px;
  color: var(--muted);
  font-size: clamp(1rem, 1.3vw, 1.16rem);
  line-height: 1.75;
}

.explainer-stage {
  position: relative;
  z-index: 2;
  overflow: hidden;
  padding: clamp(28px, 5vw, 68px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  color: var(--white);
  background:
    radial-gradient(circle at 50% 42%, rgba(63, 189, 130, 0.28), transparent 25%),
    radial-gradient(circle at 6% 94%, rgba(78, 195, 199, 0.14), transparent 30%),
    linear-gradient(145deg, #071b13, #0d3525 58%, #174d37);
  box-shadow: 0 38px 100px rgba(11, 28, 20, 0.21);
}

.explainer-stage::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.034) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.034) 1px, transparent 1px);
  background-size: 44px 44px;
  content: "";
  mask-image: radial-gradient(circle at 50% 48%, #000, transparent 72%);
  pointer-events: none;
}

.explainer-flow {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 430px;
  grid-template-columns: minmax(220px, 1fr) minmax(80px, 0.42fr) minmax(180px, 0.8fr) minmax(80px, 0.42fr) minmax(220px, 1fr);
  align-items: center;
}

.flow-card {
  position: relative;
  z-index: 3;
  width: 100%;
  min-height: 248px;
  padding: 21px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 28px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
}

.flow-card--person {
  transform: rotate(-2.2deg);
}

.flow-card--business {
  transform: rotate(2.2deg);
}

.flow-card-head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 11px;
  padding-bottom: 17px;
  border-bottom: 1px solid var(--line);
}

.flow-avatar {
  display: grid;
  width: 43px;
  height: 43px;
  place-items: center;
  overflow: hidden;
  border-radius: 50%;
  background: var(--mint);
}

.flow-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.flow-card-head > span:nth-child(2) {
  display: grid;
}

.flow-card-head small,
.flow-balance small,
.flow-received small {
  color: var(--muted);
  font-size: 0.65rem;
}

.flow-card-head strong {
  font-size: 0.9rem;
}

.flow-card-head > b {
  display: grid;
  min-width: 34px;
  height: 34px;
  place-items: center;
  padding: 0 7px;
  border-radius: 11px;
  color: var(--pine);
  background: var(--mint);
  font-size: 0.7rem;
}

.flow-balance {
  display: grid;
  gap: 2px;
  padding: 22px 0 19px;
}

.flow-balance strong {
  font-size: 2rem;
  letter-spacing: -0.055em;
}

.flow-actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}

.flow-actions span {
  padding: 8px 4px;
  border-radius: 10px;
  color: var(--pine);
  background: var(--mint);
  font-size: 0.59rem;
  font-weight: 850;
  text-align: center;
}

.flow-received {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 23px 0;
}

.flow-received > span {
  display: grid;
  width: 41px;
  height: 41px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--brand);
  font-size: 0.9rem;
  font-weight: 900;
}

.flow-received > div {
  display: grid;
}

.flow-received strong {
  color: var(--brand);
  font-size: 1.32rem;
  letter-spacing: -0.035em;
}

.flow-summary {
  display: flex;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.68rem;
}

.flow-summary strong {
  color: var(--ink);
}

.flow-connector {
  position: relative;
  z-index: 1;
  height: 2px;
  background: linear-gradient(90deg, rgba(78, 195, 199, 0.2), var(--brand-bright), rgba(78, 195, 199, 0.2));
}

.flow-connector span {
  position: absolute;
  top: 50%;
  width: 12px;
  height: 12px;
  border: 3px solid var(--pine-deep);
  border-radius: 50%;
  background: var(--brand-bright);
  box-shadow: 0 0 0 7px rgba(63, 189, 130, 0.13);
  transform: translateY(-50%);
}

.flow-connector--left span {
  animation: flow-left 3.2s var(--ease) infinite;
}

.flow-connector--right span {
  animation: flow-right 3.2s var(--ease) 0.5s infinite;
}

.flow-center {
  position: relative;
  display: grid;
  height: 238px;
  place-items: center;
}

.flow-brand {
  position: relative;
  z-index: 3;
  display: grid;
  width: 158px;
  height: 158px;
  place-items: center;
  align-content: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  background: rgba(7, 27, 19, 0.76);
  box-shadow:
    inset 0 0 0 10px rgba(255, 255, 255, 0.025),
    0 24px 70px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(16px);
}

.flow-brand img {
  width: 58px;
  height: 58px;
  margin-bottom: 5px;
  object-fit: contain;
  filter: drop-shadow(0 8px 15px rgba(0, 0, 0, 0.24));
}

.flow-brand strong {
  font-size: 1rem;
  letter-spacing: -0.035em;
}

.flow-brand small {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.57);
  font-size: 0.48rem;
}

.flow-center-ring {
  position: absolute;
  border: 1px solid rgba(63, 189, 130, 0.2);
  border-radius: 50%;
}

.flow-center-ring--one {
  width: 202px;
  height: 202px;
}

.flow-center-ring--two {
  width: 238px;
  height: 238px;
  border-color: rgba(78, 195, 199, 0.12);
}

.flow-signal {
  position: absolute;
  z-index: 4;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.76);
  background: rgba(255, 255, 255, 0.07);
  font-size: 0.52rem;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.flow-signal--one {
  top: 14px;
  right: -2px;
}

.flow-signal--two {
  bottom: 13px;
  left: -7px;
}

.explainer-promise {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 20px;
  margin-top: 4px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.explainer-promise > span {
  padding: 7px 11px;
  border-radius: 999px;
  color: var(--mint-strong);
  background: rgba(63, 189, 130, 0.12);
  font-size: 0.63rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.explainer-promise strong {
  font-size: clamp(1rem, 1.55vw, 1.32rem);
  font-weight: 750;
  letter-spacing: -0.025em;
}

.explainer-audiences {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 20px;
}

.audience-card {
  min-height: 480px;
  padding: clamp(31px, 5vw, 60px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

.audience-card--people {
  background:
    radial-gradient(circle at 95% 6%, rgba(78, 195, 199, 0.17), transparent 28%),
    var(--mint);
}

.audience-card--business {
  color: var(--white);
  background:
    radial-gradient(circle at 10% 100%, rgba(63, 189, 130, 0.18), transparent 34%),
    var(--pine);
}

.audience-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: clamp(70px, 8vw, 110px);
}

.audience-number,
.audience-label {
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.audience-number {
  color: var(--brand);
}

.audience-label {
  padding: 8px 12px;
  border: 1px solid rgba(23, 77, 55, 0.12);
  border-radius: 999px;
  color: var(--pine);
  background: rgba(255, 255, 255, 0.42);
}

.audience-card--business .audience-number {
  color: var(--brand-bright);
}

.audience-card--business .audience-label {
  border-color: rgba(255, 255, 255, 0.16);
  color: var(--mint-strong);
  background: rgba(255, 255, 255, 0.06);
}

.audience-card h3 {
  max-width: 500px;
  margin-bottom: 18px;
  font-size: clamp(2.5rem, 4.5vw, 4.8rem);
  font-weight: 900;
  letter-spacing: -0.065em;
  line-height: 0.94;
}

.audience-card > p {
  max-width: 555px;
  margin-bottom: 31px;
  color: var(--muted);
  line-height: 1.68;
}

.audience-card--business > p {
  color: rgba(255, 255, 255, 0.67);
}

.audience-card ul {
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.audience-card li {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 10px;
  font-size: 0.84rem;
  font-weight: 750;
}

.audience-card li span {
  display: grid;
  width: 23px;
  height: 23px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--brand);
  font-size: 0.62rem;
}

.audience-card--business li span {
  color: var(--pine-deep);
  background: var(--brand-bright);
}

.explainer-foundation {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--white);
}

.explainer-foundation > span {
  display: grid;
  min-height: 112px;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 13px;
  padding: 22px;
  border-right: 1px solid var(--line);
}

.explainer-foundation > span:last-child {
  border-right: 0;
}

.explainer-foundation b {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 13px;
  color: var(--pine);
  background: var(--mint);
  font-size: 0.65rem;
}

.explainer-foundation strong {
  font-size: 0.8rem;
  letter-spacing: -0.015em;
}

/* QR feature */
.qr-section {
  padding: clamp(72px, 10vw, 140px) 0;
  background: var(--paper-warm);
}

.qr-feature {
  position: relative;
  display: grid;
  min-height: 680px;
  grid-template-columns: 0.94fr 1.06fr;
  align-items: center;
  gap: clamp(50px, 8vw, 120px);
  overflow: hidden;
  padding: clamp(50px, 7vw, 92px);
  border-radius: var(--radius-lg);
  color: #fff;
  background:
    radial-gradient(circle at 82% 12%, rgba(78, 195, 199, 0.2), transparent 26%),
    radial-gradient(circle at 10% 94%, rgba(43, 152, 102, 0.24), transparent 30%),
    var(--ink);
  box-shadow: 0 35px 90px rgba(11, 28, 20, 0.2);
}

.qr-feature::after {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  content: "";
  mask-image: radial-gradient(circle at 82% 50%, black, transparent 55%);
  pointer-events: none;
}

.qr-copy-block {
  position: relative;
  z-index: 2;
}

.qr-copy-block h2,
.section-intro h2,
.trust-section h2,
.download-copy h2,
.contact-intro h2 {
  margin-bottom: 24px;
  font-size: clamp(2.8rem, 5.3vw, 5.7rem);
  font-weight: 900;
  letter-spacing: -0.07em;
  line-height: 0.96;
}

.qr-copy-block > p:not(.eyebrow) {
  max-width: 560px;
  margin-bottom: 36px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 1rem;
  line-height: 1.7;
}

.qr-steps {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.qr-steps li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 13px;
  align-items: center;
  padding: 12px 14px;
  border: 1px solid transparent;
  border-radius: 17px;
  color: rgba(255, 255, 255, 0.52);
  transition: color 0.25s ease, border 0.25s ease, background 0.25s ease;
}

.qr-steps li.is-active,
.qr-steps li:hover {
  border-color: var(--line-light);
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
}

.qr-steps li > span {
  display: grid;
  width: 33px;
  height: 33px;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: var(--mint-strong);
  font-size: 0.75rem;
  font-weight: 900;
}

.qr-steps li > div {
  display: grid;
}

.qr-steps strong {
  font-size: 0.88rem;
}

.qr-steps small {
  color: inherit;
  font-size: 0.75rem;
}

.qr-demo {
  position: relative;
  z-index: 2;
  min-height: 510px;
}

.qr-card {
  position: absolute;
  top: 50%;
  left: 44%;
  display: grid;
  width: min(330px, 80%);
  justify-items: center;
  padding: 20px 20px 27px;
  border-radius: 31px;
  color: var(--ink);
  background: #fff;
  box-shadow: 0 35px 85px rgba(0, 0, 0, 0.28);
  transform: translate(-50%, -50%) rotate(-6deg);
}

.qr-card-head {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 8px;
  margin-bottom: 25px;
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 850;
}

.qr-card-head i {
  margin-left: auto;
  color: var(--muted);
  font-size: 0.56rem;
  font-style: normal;
  font-weight: 700;
}

.decorative-qr {
  --danta-qr-size: 205px;
  margin-bottom: 19px;
}

.qr-card > strong {
  font-size: 1.08rem;
}

.qr-card > small {
  color: var(--muted);
  font-size: 0.7rem;
}

.receipt-card,
.mini-receipt {
  display: grid;
  justify-items: center;
  border: 1px solid rgba(255, 255, 255, 0.68);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.17);
  backdrop-filter: blur(14px);
}

.receipt-card {
  position: absolute;
  right: -4%;
  bottom: 5%;
  width: 200px;
  padding: 18px;
  border-radius: 23px;
  color: var(--ink);
  transform: rotate(5deg);
}

.receipt-check {
  display: grid;
  width: 39px;
  height: 39px;
  place-items: center;
  margin-bottom: 8px;
  border-radius: 50%;
  color: #fff;
  background: var(--brand);
  font-size: 1rem;
  font-weight: 900;
}

.receipt-card > small {
  color: var(--muted);
  font-size: 0.65rem;
}

.receipt-card > strong {
  margin: 3px 0 14px;
  font-size: 1.45rem;
  letter-spacing: -0.04em;
}

.receipt-card > div {
  display: flex;
  width: 100%;
  justify-content: space-between;
  padding-top: 9px;
  border-top: 1px solid var(--line);
  font-size: 0.62rem;
}

/* Solutions */
.solutions {
  padding: clamp(80px, 11vw, 150px) 0;
  background: #fbfcf9;
}

.section-intro {
  display: grid;
  max-width: 920px;
  margin-bottom: 55px;
}

.section-intro h2 {
  margin-bottom: 0;
}

.solution-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.solution-tabs button {
  position: relative;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 0 8px 18px;
  border: 0;
  color: #839087;
  background: transparent;
  font-size: 0.92rem;
  font-weight: 850;
  text-align: left;
  cursor: pointer;
}

.solution-tabs button span {
  font-size: 0.65rem;
}

.solution-tabs button::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 3px;
  border-radius: 99px 99px 0 0;
  background: var(--brand);
  content: "";
  transform: scaleX(0);
  transition: transform 0.35s var(--ease);
}

.solution-tabs button[aria-selected="true"] {
  color: var(--pine);
}

.solution-tabs button[aria-selected="true"]::after {
  transform: scaleX(1);
}

.solution-panels {
  min-height: 430px;
}

.solution-panel {
  display: none;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(40px, 7vw, 100px);
  align-items: stretch;
  overflow: hidden;
  padding: clamp(34px, 5vw, 70px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 0 100%, rgba(43, 152, 102, 0.13), transparent 33%),
    var(--paper-warm);
}

.solution-panel.is-active {
  display: grid;
  animation: panel-in 0.55s var(--ease) both;
}

.solution-statement {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.solution-statement > span {
  margin-bottom: 22px;
  color: var(--brand);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.solution-statement h3 {
  margin-bottom: 21px;
  font-size: clamp(2.2rem, 4vw, 4.4rem);
  font-weight: 900;
  letter-spacing: -0.065em;
  line-height: 0.98;
}

.solution-statement p {
  max-width: 540px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
}

.solution-panel ul {
  display: grid;
  align-content: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.solution-panel li {
  display: grid;
  grid-template-columns: 32px 1fr;
  column-gap: 13px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.solution-panel li:last-child {
  border-bottom: 0;
}

.solution-panel li > span {
  grid-row: 1 / 3;
  color: var(--brand);
  font-size: 0.68rem;
  font-weight: 900;
}

.solution-panel li strong {
  font-size: 0.95rem;
}

.solution-panel li small {
  color: var(--muted);
  font-size: 0.78rem;
}

/* Trust */
.trust-section {
  padding: clamp(80px, 10vw, 135px) 0;
  color: #fff;
  background:
    radial-gradient(circle at 0 0, rgba(78, 195, 199, 0.15), transparent 28%),
    linear-gradient(140deg, var(--pine-deep), var(--pine));
}

.trust-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(50px, 8vw, 120px);
}

.trust-section h2 {
  margin-bottom: 0;
}

.trust-list {
  display: grid;
  align-content: center;
}

.trust-list article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  padding: 25px 0;
  border-bottom: 1px solid var(--line-light);
}

.trust-list article:first-child {
  padding-top: 0;
}

.trust-list article:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.trust-list article > span {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  color: var(--pine-deep);
  background: var(--mint-strong);
  font-size: 0.75rem;
  font-weight: 950;
}

.trust-list article > div {
  display: grid;
  gap: 4px;
}

.trust-list strong {
  font-size: 1.02rem;
}

.trust-list p {
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.86rem;
}

/* Download */
.download-section {
  padding: clamp(80px, 10vw, 140px) 0;
  background: #fbfcf9;
}

.download-card {
  position: relative;
  display: grid;
  min-height: 570px;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 50px;
  overflow: hidden;
  padding: clamp(45px, 7vw, 90px);
  border: 1px solid rgba(43, 152, 102, 0.14);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 92% 15%, rgba(78, 195, 199, 0.24), transparent 30%),
    linear-gradient(135deg, #eaf7f0, #f7f3dc 75%);
}

.download-copy {
  position: relative;
  z-index: 3;
}

.download-copy h2 {
  max-width: 720px;
}

.download-copy > p:not(.eyebrow) {
  max-width: 570px;
  margin-bottom: 32px;
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.7;
}

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

.store-button {
  display: flex;
  min-width: 182px;
  min-height: 61px;
  align-items: center;
  gap: 11px;
  padding: 10px 16px;
  border-radius: 17px;
  color: #fff;
  background: var(--ink);
  box-shadow: 0 13px 28px rgba(11, 28, 20, 0.17);
  transition: transform 0.25s var(--ease), background 0.25s ease;
}

.store-button:hover {
  background: var(--pine);
  transform: translateY(-3px);
}

.store-button > span:last-child {
  display: grid;
  line-height: 1.08;
}

.store-button small {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.58rem;
}

.store-button strong {
  font-size: 1rem;
  letter-spacing: -0.03em;
}

.store-symbol {
  position: relative;
  display: grid;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  place-items: center;
  font-size: 0;
}

.store-symbol--apple::before {
  width: 18px;
  height: 21px;
  border-radius: 50% 50% 48% 48% / 58% 58% 42% 42%;
  background: #fff;
  content: "";
}

.store-symbol--apple::after {
  position: absolute;
  top: 1px;
  right: 3px;
  width: 9px;
  height: 5px;
  border-radius: 100% 0 100% 0;
  background: #fff;
  content: "";
  transform: rotate(-34deg);
}

.store-symbol--play {
  width: 0;
  height: 0;
  margin-inline: 3px 7px;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  border-left: 23px solid #fff;
  filter: drop-shadow(0 0 0 rgba(0, 0, 0, 0));
}

.download-mark {
  position: absolute;
  right: -55px;
  bottom: -80px;
  width: min(46%, 510px);
  opacity: 0.94;
  transform: rotate(-7deg);
  filter: drop-shadow(0 25px 32px rgba(23, 77, 55, 0.12));
}

.download-orbit {
  position: absolute;
  border: 1px solid rgba(43, 152, 102, 0.14);
  border-radius: 50%;
}

.download-orbit--one {
  right: -90px;
  bottom: -160px;
  width: 560px;
  height: 560px;
}

.download-orbit--two {
  right: 10px;
  bottom: -60px;
  width: 360px;
  height: 360px;
}

/* Contact and footer */
.contact-section {
  padding: clamp(75px, 9vw, 120px) 0;
  background: var(--paper-warm);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(50px, 8vw, 120px);
}

.contact-intro h2 {
  margin-bottom: 0;
  font-size: clamp(2.7rem, 4.8vw, 5rem);
}

.contact-links {
  display: grid;
}

.contact-links a {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3px 20px;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  transition: color 0.25s ease;
}

.contact-links a:first-child {
  padding-top: 0;
}

.contact-links a:hover {
  color: var(--brand);
}

.contact-links a > span {
  color: var(--muted);
  font-size: 0.72rem;
}

.contact-links strong {
  overflow-wrap: anywhere;
  font-size: 0.98rem;
}

.contact-links i {
  grid-column: 2;
  grid-row: 1 / 3;
  font-size: 1.1rem;
  font-style: normal;
}

.site-footer {
  padding: 45px 0 26px;
  color: #fff;
  background: var(--ink);
}

.footer-top,
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-top {
  padding-bottom: 38px;
}

.brand--footer .brand-mark {
  background: #fff;
}

.footer-top p {
  margin: 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.85rem;
}

.back-to-top {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  font-weight: 800;
}

.back-to-top span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--line-light);
  border-radius: 50%;
}

.footer-bottom {
  padding-top: 22px;
  border-top: 1px solid var(--line-light);
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.7rem;
}

.footer-bottom nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.footer-bottom a:hover {
  color: #fff;
}

/* Dedicated /pagar/ route */
.payment-gateway {
  display: none;
  min-height: 100svh;
  align-items: center;
  padding: calc(var(--header-height) + 55px) 0 70px;
  background:
    radial-gradient(circle at 76% 32%, rgba(78, 195, 199, 0.2), transparent 25%),
    radial-gradient(circle at 0 100%, rgba(43, 152, 102, 0.14), transparent 35%),
    var(--paper);
}

.qr-mode .payment-gateway {
  display: grid;
}

.qr-mode .home-section {
  display: none !important;
}

.qr-mode .main-nav {
  visibility: hidden;
}

.payment-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(50px, 8vw, 120px);
  align-items: center;
}

.payment-copy h1 {
  max-width: 650px;
  margin-bottom: 25px;
  font-size: clamp(3.2rem, 6vw, 6.5rem);
  font-weight: 900;
  letter-spacing: -0.07em;
  line-height: 0.94;
}

.payment-copy .lead {
  max-width: 560px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.payment-code {
  display: grid;
  width: min(100%, 510px);
  grid-template-columns: 1fr auto;
  gap: 4px 20px;
  align-items: center;
  margin-bottom: 24px;
  padding: 18px 19px;
  border: 1px solid rgba(43, 152, 102, 0.16);
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.payment-code span {
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 750;
}

.payment-code strong {
  grid-column: 1;
  font-size: 1.3rem;
  letter-spacing: 0.04em;
}

.payment-code button {
  grid-column: 2;
  grid-row: 1 / 3;
  padding: 9px 12px;
  border: 0;
  border-radius: 999px;
  color: var(--pine);
  background: var(--mint);
  font-size: 0.72rem;
  font-weight: 900;
  cursor: pointer;
}

.support-line {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 0.8rem;
}

.support-line a {
  color: var(--pine);
  font-weight: 850;
}

.payment-visual {
  position: relative;
  display: grid;
  min-height: 550px;
  place-items: center;
}

.payment-glow {
  position: absolute;
  width: min(100%, 480px);
  aspect-ratio: 1;
  border-radius: 43% 57% 63% 37% / 52% 41% 59% 48%;
  background: linear-gradient(145deg, var(--mint-strong), rgba(78, 195, 199, 0.42));
  box-shadow: 0 0 0 70px rgba(43, 152, 102, 0.035);
  transform: rotate(9deg);
}

.mini-receipt {
  position: relative;
  z-index: 2;
  width: min(360px, 78%);
  padding: 35px 30px 28px;
  border-radius: 34px;
  color: var(--ink);
  transform: rotate(-3deg);
}

.mini-receipt > small {
  color: var(--muted);
  font-size: 0.76rem;
}

.mini-receipt > strong {
  margin: 6px 0 25px;
  font-size: 1.75rem;
  letter-spacing: 0.03em;
}

.mini-receipt > div {
  display: flex;
  width: 100%;
  justify-content: space-between;
  gap: 20px;
  padding: 13px 0;
  border-top: 1px solid var(--line);
  font-size: 0.73rem;
}

.mini-receipt > div span {
  color: var(--muted);
}

/* Motion */
@keyframes nudge-down {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(5px); }
}

@keyframes scan {
  0%, 100% { top: 17%; opacity: 0.55; }
  50% { top: 81%; opacity: 1; }
}

@keyframes amount-type {
  from { clip-path: inset(0 100% 0 0); }
  to { clip-path: inset(0 0 0 0); }
}

@keyframes send-ready {
  from { opacity: 0.45; transform: translateY(5px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes panel-in {
  from { opacity: 0; transform: translateY(15px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes flow-left {
  0% { right: 5%; opacity: 0; }
  18%, 78% { opacity: 1; }
  100% { right: 89%; opacity: 0; }
}

@keyframes flow-right {
  0% { left: 5%; opacity: 0; }
  18%, 78% { opacity: 1; }
  100% { left: 89%; opacity: 0; }
}

/* Responsive */
@media (max-width: 1120px) {
  .story-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
    gap: 36px;
  }

  .phone-shell {
    width: min(330px, 75%);
  }

  .orbit-card {
    min-width: 158px;
  }

  .orbit-card--activity,
  .orbit-card--send { right: -5px; }

  .orbit-card--scanner,
  .orbit-card--funds { left: -5px; }

  .story-step--hero h1 {
    font-size: clamp(3.05rem, 5.4vw, 4.4rem);
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 80px;
  }

  .nav-shell {
    grid-template-columns: 1fr auto;
  }

  .main-nav {
    position: absolute;
    top: 68px;
    right: 0;
    left: 0;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(249, 251, 247, 0.98);
    box-shadow: 0 20px 45px rgba(11, 28, 20, 0.13);
  }

  .main-nav a {
    padding: 13px 12px;
    border-bottom: 1px solid rgba(11, 28, 20, 0.06);
  }

  .main-nav a:last-child {
    border-bottom: 0;
  }

  .main-nav a::after {
    display: none;
  }

  .site-header.is-menu-open .main-nav {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .site-header.is-menu-open .menu-toggle span:first-child {
    transform: translateY(3px) rotate(45deg);
  }

  .site-header.is-menu-open .menu-toggle span:last-child {
    transform: translateY(-3px) rotate(-45deg);
  }

  .story-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
  }

  .story-copy,
  .story-visual {
    grid-column: 1;
    grid-row: 1;
  }

  .story-copy {
    position: relative;
    z-index: 3;
    pointer-events: none;
  }

  .story-copy-inner {
    width: min(100%, 640px);
    padding: 23px;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 28px;
    background: rgba(249, 251, 247, 0.92);
    box-shadow: 0 20px 50px rgba(11, 28, 20, 0.11);
    backdrop-filter: blur(18px) saturate(125%);
    pointer-events: auto;
  }

  .story-step {
    min-height: 100svh;
    align-items: end;
    padding: 52svh 0 4svh;
  }

  .story-step--hero h1 {
    font-size: clamp(2.8rem, 9vw, 4.15rem);
  }

  .story-step:not(.story-step--hero) h2 {
    font-size: clamp(2.35rem, 8vw, 4.5rem);
  }

  .story-step:not(.story-step--hero) .story-copy-inner > p:not(.step-kicker) {
    font-size: 1rem;
  }

  .hero-lead {
    font-size: 1rem;
  }

  .scroll-hint {
    display: none;
  }

  .story-visual {
    position: relative;
    z-index: 1;
    height: 100%;
  }

  .phone-sticky {
    align-items: start;
    padding-top: calc(var(--header-height) + 13px);
  }

  .phone-shell {
    width: min(280px, 68vw);
    border-width: 7px;
    border-radius: 38px;
    box-shadow: 0 32px 80px rgba(7, 35, 23, 0.26);
  }

  .phone-viewport {
    border-radius: 31px;
  }

  .phone-halo {
    width: min(390px, 82vw);
  }

  .orbit-card,
  .story-progress {
    display: none;
  }

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

  .strip-grid article,
  .strip-grid article:first-child,
  .strip-grid article:last-child {
    padding: 18px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .strip-grid article:last-child {
    border-bottom: 0;
  }

  .explainer-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .explainer-heading > p {
    max-width: 680px;
  }

  .explainer-flow {
    min-height: 680px;
    grid-template-columns: minmax(0, 1fr) 75px minmax(0, 1fr);
    grid-template-rows: 1fr 100px 1fr;
  }

  .flow-card--person {
    grid-column: 1;
    grid-row: 1;
  }

  .flow-card--business {
    grid-column: 3;
    grid-row: 3;
  }

  .flow-center {
    grid-column: 2;
    grid-row: 2;
    height: 190px;
  }

  .flow-connector--left,
  .flow-connector--right {
    grid-column: 2;
    width: 2px;
    height: 100%;
    justify-self: center;
  }

  .flow-connector--left {
    grid-row: 1;
    align-self: end;
    background: linear-gradient(rgba(78, 195, 199, 0.2), var(--brand-bright));
  }

  .flow-connector--right {
    grid-row: 3;
    align-self: start;
    background: linear-gradient(var(--brand-bright), rgba(78, 195, 199, 0.2));
  }

  .flow-connector span {
    display: none;
  }

  .flow-center-ring--two {
    width: 215px;
    height: 215px;
  }

  .flow-center-ring--one {
    width: 186px;
    height: 186px;
  }

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

  .explainer-foundation > span:nth-child(2) {
    border-right: 0;
  }

  .explainer-foundation > span:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }

  .qr-feature,
  .solution-panel,
  .trust-grid,
  .contact-grid,
  .payment-layout {
    grid-template-columns: 1fr;
  }

  .qr-feature {
    gap: 30px;
  }

  .qr-demo {
    min-height: 480px;
  }

  .qr-card {
    left: 48%;
  }

  .solution-panel {
    min-height: auto;
  }

  .download-card {
    min-height: 650px;
    grid-template-columns: 1fr;
    align-items: start;
  }

  .download-mark {
    right: -30px;
    width: min(55%, 390px);
  }

  .payment-visual {
    min-height: 430px;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 24px, var(--container));
  }

  .site-header {
    padding: 9px 0;
  }

  .nav-shell {
    min-height: 57px;
    padding: 7px 7px 7px 11px;
  }

  .brand-mark {
    width: 33px;
    height: 33px;
  }

  .brand-mark img {
    width: 29px;
    height: 29px;
  }

  .nav-download {
    min-height: 40px;
    padding: 9px 14px;
    font-size: 0.78rem;
  }

  .menu-toggle {
    width: 40px;
    height: 40px;
  }

  .button {
    width: 100%;
  }

  .story-step {
    padding-top: 50svh;
    padding-bottom: 3svh;
  }

  .story-copy-inner {
    padding: 19px;
    border-radius: 23px;
  }

  .story-step--hero h1 {
    margin-bottom: 16px;
    font-size: clamp(2.35rem, 11vw, 3.25rem);
  }

  .story-step--hero .eyebrow {
    margin-bottom: 14px;
  }

  .hero-lead {
    margin-bottom: 18px;
    line-height: 1.5;
  }

  .hero-proof {
    gap: 7px;
    margin-top: 18px;
    font-size: 0.61rem;
  }

  .story-step:not(.story-step--hero) h2 {
    margin-bottom: 15px;
    font-size: clamp(2.15rem, 10.5vw, 3.5rem);
  }

  .story-step:not(.story-step--hero) .story-copy-inner > p:not(.step-kicker) {
    margin-bottom: 17px;
    font-size: 0.91rem;
    line-height: 1.55;
  }

  .step-kicker {
    margin-bottom: 12px;
  }

  .phone-sticky {
    padding-top: 74px;
  }

  .phone-shell {
    width: min(258px, 68vw);
  }

  .phone-state[data-phone-screen="actividad"] .transaction:last-child {
    display: none;
  }

  .phone-halo {
    width: min(330px, 88vw);
  }

  .feature-pills li {
    padding: 7px 10px;
    font-size: 0.67rem;
  }

  .product-strip {
    padding: 18px 0;
  }

  .danta-explainer,
  .qr-section,
  .solutions,
  .trust-section,
  .download-section,
  .contact-section {
    padding: 68px 0;
  }

  .explainer-heading {
    margin-bottom: 42px;
  }

  .explainer-heading h2 {
    font-size: clamp(2.7rem, 13vw, 4.3rem);
  }

  .explainer-stage {
    padding: 30px 18px;
    border-radius: 29px;
  }

  .explainer-flow {
    display: flex;
    min-height: auto;
    align-items: center;
    flex-direction: column;
    gap: 38px;
  }

  .flow-card {
    min-height: 230px;
  }

  .flow-card--person,
  .flow-card--business {
    transform: none;
  }

  .flow-center {
    height: 190px;
  }

  .flow-connector {
    position: absolute;
    left: 50%;
    width: 2px;
    height: 44%;
    background: linear-gradient(rgba(78, 195, 199, 0.2), var(--brand-bright), rgba(78, 195, 199, 0.2));
    transform: translateX(-50%);
  }

  .flow-connector--left {
    top: 21%;
  }

  .flow-connector--right {
    top: 51%;
  }

  .flow-signal--one {
    right: -10px;
  }

  .flow-signal--two {
    left: -10px;
  }

  .explainer-promise {
    grid-template-columns: 1fr;
    margin-top: 28px;
  }

  .explainer-promise > span {
    width: max-content;
  }

  .explainer-audiences {
    grid-template-columns: 1fr;
  }

  .audience-card {
    min-height: 0;
    padding: 31px 20px;
    border-radius: 29px;
  }

  .audience-card-top {
    margin-bottom: 60px;
  }

  .audience-card h3 {
    font-size: clamp(2.45rem, 12vw, 3.7rem);
  }

  .explainer-foundation {
    grid-template-columns: 1fr;
  }

  .explainer-foundation > span,
  .explainer-foundation > span:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .explainer-foundation > span:last-child {
    border-bottom: 0;
  }

  .qr-feature {
    min-height: auto;
    padding: 31px 20px;
    border-radius: 29px;
  }

  .qr-copy-block h2,
  .section-intro h2,
  .trust-section h2,
  .download-copy h2,
  .contact-intro h2 {
    font-size: clamp(2.35rem, 12vw, 3.8rem);
  }

  .qr-demo {
    min-height: 410px;
  }

  .qr-card {
    left: 50%;
    width: min(270px, 83%);
    padding: 16px 16px 23px;
  }

  .decorative-qr {
    --danta-qr-size: 170px;
  }

  .receipt-card {
    right: -4%;
    bottom: 0;
    width: 160px;
  }

  .solution-tabs {
    gap: 0;
    overflow-x: auto;
  }

  .solution-tabs button {
    min-width: max-content;
    padding: 0 14px 14px;
    font-size: 0.82rem;
  }

  .solution-tabs button:first-child {
    padding-left: 4px;
  }

  .solution-panels {
    min-height: 0;
  }

  .solution-panel {
    gap: 25px;
    padding: 27px 20px;
    border-radius: 28px;
  }

  .solution-statement h3 {
    font-size: 2.4rem;
  }

  .trust-grid,
  .contact-grid {
    gap: 42px;
  }

  .download-card {
    min-height: 655px;
    padding: 34px 20px;
    border-radius: 29px;
  }

  .store-button {
    width: 100%;
  }

  .download-mark {
    right: -25px;
    bottom: -50px;
    width: 72%;
  }

  .contact-links strong {
    font-size: 0.86rem;
  }

  .footer-top,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-top p {
    display: none;
  }

  .footer-bottom nav {
    justify-content: flex-start;
  }

  .payment-gateway {
    padding-top: 105px;
  }

  .payment-copy h1 {
    font-size: clamp(2.8rem, 14vw, 4.5rem);
  }

  .payment-code {
    grid-template-columns: 1fr;
  }

  .payment-code button {
    width: max-content;
    grid-column: 1;
    grid-row: auto;
    margin-top: 9px;
  }

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

  .mini-receipt {
    width: 88%;
  }
}

@media (max-height: 740px) and (min-width: 901px) {
  .phone-shell {
    width: min(300px, 70%);
  }

  .story-step--hero h1 {
    font-size: clamp(2.8rem, 4.9vw, 4.1rem);
  }

  .story-step:not(.story-step--hero) h2 {
    font-size: clamp(2.5rem, 4.2vw, 4.3rem);
  }

  .merchant-sign {
    width: 225px;
  }

  .merchant-sign-board {
    padding: 14px 18px;
  }

  .merchant-sign-board > p {
    margin: 8px 0;
  }

  .merchant-qr {
    --danta-qr-size: 105px;
  }

  .phone-sticky[data-scene="rotulo"] .phone-shell {
    transform: perspective(1200px) translate3d(105px, -42px, 0) rotateY(-7deg) rotateZ(3deg) scale(0.82);
  }
}

@media (max-width: 1120px) {
  .merchant-sign {
    width: 235px;
  }

  .phone-sticky[data-scene="rotulo"] .merchant-sign {
    transform: translate3d(-76px, 62px, 0) rotate(-2deg) scale(0.96);
  }

  .phone-sticky[data-scene="rotulo"] .phone-shell {
    transform: perspective(1200px) translate3d(105px, -54px, 0) rotateY(-7deg) rotateZ(3deg) scale(0.82);
  }
}

@media (max-width: 900px) {
  #story-scanner {
    min-height: 112svh;
  }

  .merchant-sign {
    top: 19%;
    width: 205px;
  }

  .merchant-sign-board {
    padding: 12px 16px 13px;
    border-radius: 21px;
  }

  .merchant-sign-board > p {
    margin: 8px 0;
    font-size: 1.2rem;
  }

  .merchant-qr {
    --danta-qr-size: 92px;
  }

  .merchant-sign-neck {
    height: 21px;
  }

  .merchant-sign-base {
    width: 92px;
    height: 13px;
  }

  .phone-sticky[data-scene="rotulo"] .merchant-sign {
    transform: translate3d(-68px, 7px, 0) rotate(-2deg) scale(0.93);
  }

  .phone-sticky[data-scene="escaneo"] .merchant-sign {
    transform: translate3d(-48px, 17px, 0) rotate(1deg) scale(0.88);
  }

  .phone-sticky[data-scene="rotulo"] .phone-shell {
    transform: perspective(1200px) translate3d(73px, -23px, 0) rotateY(-6deg) rotateZ(3deg) scale(0.78);
  }

  .phone-sticky[data-scene="escaneo"] .phone-shell {
    transform: perspective(1200px) translate3d(var(--scan-phone-x, -24px), var(--scan-phone-y, 18px), 0) rotateY(1deg) rotateZ(var(--scan-phone-angle, -1deg)) scale(0.82);
  }
}

@media (max-width: 620px) {
  .merchant-sign {
    top: 16%;
    width: 174px;
  }

  .merchant-sign-brand {
    font-size: 0.72rem;
  }

  .merchant-sign-brand span {
    width: 22px;
    height: 22px;
  }

  .merchant-sign-board > small {
    font-size: 0.5rem;
  }

  .merchant-sign-name {
    font-size: 0.58rem;
  }

  .phone-sticky[data-scene="rotulo"] .merchant-sign {
    transform: translate3d(-54px, 4px, 0) rotate(-2deg) scale(0.91);
  }

  .phone-sticky[data-scene="escaneo"] .merchant-sign {
    transform: translate3d(-37px, 11px, 0) rotate(1deg) scale(0.84);
  }

  .phone-sticky[data-scene="rotulo"] .phone-shell {
    transform: perspective(1200px) translate3d(57px, -20px, 0) rotateY(-5deg) rotateZ(2deg) scale(0.76);
  }

  .phone-sticky[data-scene="escaneo"] .phone-shell {
    transform: perspective(1200px) translate3d(var(--scan-phone-x, -18px), var(--scan-phone-y, 15px), 0) rotateY(1deg) rotateZ(var(--scan-phone-angle, -1deg)) scale(0.78);
  }
}

/* User payoff: the POP stays inert and the result appears inside Danta. */
.phone-sticky[data-scene="cashback"] .phone-halo {
  border-radius: 58% 42% 46% 54% / 48% 57% 43% 52%;
  background: linear-gradient(145deg, rgba(244, 208, 79, 0.56), rgba(216, 240, 226, 0.96));
  transform: scale(1.02) rotate(5deg);
}

.phone-sticky[data-scene="cashback"] .phone-shell {
  transform: perspective(1200px) rotateY(3deg) rotateX(0deg) translateY(-5px);
}

.orbit-card--cashback {
  top: 20%;
  left: -12px;
}

.phone-sticky[data-active="4"] .orbit-card--cashback {
  opacity: 1;
  transform: translateY(0);
}

.orbit-icon--coin,
.micro-proof-icon--cashback {
  color: var(--pine);
  background: var(--sun);
}

.phone-state--cashback {
  display: flex;
  flex-direction: column;
  gap: 11px;
  padding: 24px 17px 16px;
  background:
    radial-gradient(circle at 50% 0, rgba(216, 240, 226, 0.8), transparent 34%),
    #fbfcfa;
}

.payment-success-head {
  display: grid;
  justify-items: center;
  padding: 8px 0 2px;
  text-align: center;
}

.payment-success-head > span {
  display: grid;
  width: 50px;
  height: 50px;
  margin-bottom: 9px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--brand);
  box-shadow: 0 12px 24px rgba(43, 152, 102, 0.22);
  font-size: 1.3rem;
  font-weight: 950;
}

.payment-success-head small,
.payment-success-merchant small,
.cashback-earned small {
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 750;
}

.payment-success-head strong {
  margin-top: 2px;
  color: var(--ink);
  font-size: 2rem;
  letter-spacing: -0.055em;
}

.payment-success-merchant {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: #fff;
}

.payment-success-merchant > div {
  display: grid;
}

.payment-success-merchant strong {
  color: var(--ink);
  font-size: 0.82rem;
}

.payment-success-merchant > b {
  color: var(--muted);
  font-size: 0.62rem;
}

.cashback-earned {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
  padding: 15px;
  overflow: hidden;
  border: 1px solid rgba(174, 139, 5, 0.16);
  border-radius: 19px;
  background:
    radial-gradient(circle at 105% -20%, rgba(255, 255, 255, 0.9), transparent 42%),
    linear-gradient(135deg, #fff8d7, #f4d04f);
  box-shadow: 0 16px 35px rgba(144, 113, 0, 0.12);
}

.cashback-earned > span {
  display: grid;
  width: 43px;
  height: 43px;
  place-items: center;
  border-radius: 14px;
  color: var(--sun);
  background: var(--pine);
  font-size: 1.15rem;
}

.cashback-earned > div {
  display: grid;
}

.cashback-earned strong {
  color: var(--pine);
  font-size: 1.34rem;
  letter-spacing: -0.035em;
}

.cashback-earned p {
  margin: 1px 0 0;
  color: rgba(23, 77, 55, 0.72);
  font-size: 0.62rem;
  font-weight: 750;
}

.payment-detail {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4px;
  color: var(--muted);
  font-size: 0.68rem;
}

.payment-detail strong {
  color: var(--ink);
  font-size: 0.7rem;
}

.payment-done {
  width: 100%;
  margin-top: auto;
  padding: 12px;
  border: 0;
  border-radius: 15px;
  color: #fff;
  background: var(--pine);
  font: inherit;
  font-size: 0.75rem;
  font-weight: 900;
}

/* Business story */
.business-story {
  position: relative;
  overflow: clip;
  scroll-margin-top: 0;
  color: #fff;
  background:
    radial-gradient(circle at 85% 20%, rgba(78, 195, 199, 0.16), transparent 28%),
    radial-gradient(circle at 8% 70%, rgba(244, 208, 79, 0.1), transparent 24%),
    linear-gradient(160deg, #0b2e22 0%, #123f30 54%, #0b2d22 100%);
}

.business-story::before {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.13) 0.7px, transparent 0.7px);
  background-size: 24px 24px;
  content: "";
  opacity: 0.22;
  mask-image: linear-gradient(to left, black, transparent 58%);
  pointer-events: none;
}

.business-ambient {
  position: absolute;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 50%;
  pointer-events: none;
}

.business-ambient--one {
  top: 14%;
  right: -360px;
  box-shadow: 0 0 0 80px rgba(78, 195, 199, 0.025), 0 0 0 160px rgba(78, 195, 199, 0.018);
}

.business-ambient--two {
  bottom: 10%;
  left: -400px;
  box-shadow: 0 0 0 95px rgba(244, 208, 79, 0.018);
}

.business-story-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(520px, 1.1fr);
  gap: clamp(48px, 6vw, 100px);
  align-items: start;
}

.business-story-copy {
  grid-column: 1;
  grid-row: 1;
}

.business-step {
  display: grid;
  min-height: 100svh;
  align-items: center;
  padding: calc(var(--header-height) + 52px) 0 72px;
  opacity: 0.24;
  transform: translateY(28px);
  transition: opacity 0.5s ease, transform 0.7s var(--ease);
}

.business-step.is-active {
  opacity: 1;
  transform: translateY(0);
}

.business-copy-inner {
  max-width: 610px;
}

.eyebrow--light,
.business-story .step-kicker {
  color: #8ce2c3;
}

.business-step h2 {
  max-width: 650px;
  margin-bottom: 23px;
  color: #fff;
  font-size: clamp(2.75rem, 4.5vw, 5.25rem);
  font-weight: 900;
  letter-spacing: -0.065em;
  line-height: 0.96;
}

.business-step > .business-copy-inner > p:not(.eyebrow, .step-kicker) {
  max-width: 570px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(1.03rem, 1.3vw, 1.2rem);
  line-height: 1.72;
}

.business-proof {
  display: flex;
  width: max-content;
  max-width: 100%;
  align-items: center;
  gap: 13px;
  padding: 13px 16px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(12px);
}

.business-proof > span {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 14px;
  color: var(--pine);
  background: var(--sun);
  font-weight: 950;
}

.business-proof > div {
  display: grid;
}

.business-proof strong {
  color: #fff;
  font-size: 0.88rem;
}

.business-proof small {
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.72rem;
}

.business-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style: none;
}

.business-pills li {
  padding: 9px 13px;
  border: 1px solid rgba(140, 226, 195, 0.2);
  border-radius: 999px;
  color: #b8f2dc;
  background: rgba(140, 226, 195, 0.08);
  font-size: 0.77rem;
  font-weight: 850;
}

.button--business {
  color: var(--pine);
  background: var(--sun);
  box-shadow: 0 16px 40px rgba(244, 208, 79, 0.12);
}

.business-story-visual {
  height: 100%;
  grid-column: 2;
  grid-row: 1;
}

.business-visual {
  position: sticky;
  top: 0;
  display: grid;
  height: 100svh;
  place-items: center;
  isolation: isolate;
}

.business-visual-glow {
  position: absolute;
  z-index: -2;
  width: min(44vw, 660px);
  aspect-ratio: 1;
  border-radius: 44% 56% 60% 40% / 54% 42% 58% 46%;
  background: linear-gradient(145deg, rgba(78, 195, 199, 0.2), rgba(216, 240, 226, 0.07));
  filter: blur(1px);
  transform: rotate(-6deg);
  transition: border-radius 0.8s var(--ease), transform 0.8s var(--ease);
}

.business-visual[data-active="3"] .business-visual-glow {
  border-radius: 58% 42% 42% 58% / 41% 55% 45% 59%;
  transform: rotate(5deg) scale(0.96);
}

.business-visual[data-active="4"] .business-visual-glow {
  border-radius: 39% 61% 54% 46% / 60% 45% 55% 40%;
  transform: rotate(-10deg) scale(1.04);
}

.business-dashboard {
  position: relative;
  width: min(680px, 100%);
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 30px;
  color: var(--ink);
  background: rgba(248, 251, 248, 0.96);
  box-shadow: 0 42px 90px rgba(0, 18, 12, 0.34);
  transform: perspective(1400px) rotateY(-2deg) rotateX(1deg);
  transition: transform 0.75s var(--ease), box-shadow 0.75s ease;
}

.business-visual[data-active="5"] .business-dashboard {
  box-shadow: 0 46px 100px rgba(0, 18, 12, 0.4), 0 0 0 1px rgba(140, 226, 195, 0.16);
  transform: perspective(1400px) rotateY(0) rotateX(0) scale(1.02);
}

.business-dashboard-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.business-dashboard-head > div {
  display: flex;
  align-items: center;
  gap: 9px;
}

.business-dashboard-head span {
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  border-radius: 10px 14px 14px 10px;
  color: #fff;
  background: var(--brand);
  font-size: 0.78rem;
  font-weight: 950;
}

.business-dashboard-head strong {
  color: var(--pine);
  font-size: 0.96rem;
}

.business-dashboard-head > b {
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--muted);
  background: var(--mint);
  font-size: 0.68rem;
}

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

.business-summary article {
  display: grid;
  gap: 3px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: #fff;
}

.business-summary small,
.business-summary span {
  color: var(--muted);
  font-size: 0.62rem;
}

.business-summary strong {
  color: var(--pine);
  font-size: 1.15rem;
  letter-spacing: -0.035em;
}

.business-summary article:nth-child(2) {
  background: #fff8d7;
}

.business-dashboard-main {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(190px, 0.75fr);
  gap: 9px;
  margin-top: 9px;
}

.business-chart,
.business-payments {
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 19px;
  background: #fff;
}

.business-chart header,
.business-payments header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.business-chart header strong,
.business-payments header strong {
  color: var(--ink);
  font-size: 0.75rem;
}

.business-chart header span,
.business-payments header span {
  color: var(--brand);
  font-size: 0.58rem;
  font-weight: 800;
}

.business-chart-bars {
  display: flex;
  height: 145px;
  align-items: end;
  justify-content: space-around;
  gap: 9px;
  padding: 22px 5px 5px;
  border-bottom: 1px solid var(--line);
}

.business-chart-bars i {
  width: 22px;
  height: var(--bar);
  border-radius: 7px 7px 3px 3px;
  background: linear-gradient(180deg, var(--aqua), var(--brand));
  transform-origin: bottom;
  transition: height 0.8s var(--ease), opacity 0.4s ease;
}

.business-chart footer {
  display: flex;
  justify-content: space-around;
  padding-top: 7px;
  color: var(--muted);
  font-size: 0.53rem;
}

.business-payments > div {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 7px;
  align-items: center;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
}

.business-payments > div:last-child {
  border: 0;
}

.business-payments > div > b {
  display: grid;
  width: 23px;
  height: 23px;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  background: var(--brand);
  font-size: 0.59rem;
}

.business-payments > div > span {
  display: grid;
}

.business-payments strong,
.business-payments small {
  font-size: 0.58rem;
}

.business-payments small {
  color: var(--muted);
}

.business-payments em {
  color: var(--brand);
  font-size: 0.58rem;
  font-style: normal;
  font-weight: 900;
}

.business-callout {
  position: absolute;
  display: flex;
  z-index: 3;
  min-width: 205px;
  align-items: center;
  gap: 11px;
  padding: 13px 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 18px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 22px 46px rgba(0, 21, 14, 0.25);
  opacity: 0;
  transform: translateY(17px) scale(0.96);
  transition: opacity 0.45s ease, transform 0.65s var(--ease);
}

.business-callout > span {
  display: grid;
  width: 39px;
  height: 39px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 13px;
  color: var(--pine);
  background: var(--sun);
  font-weight: 950;
}

.business-callout > div {
  display: grid;
}

.business-callout small {
  color: var(--muted);
  font-size: 0.64rem;
}

.business-callout strong {
  color: var(--pine);
  font-size: 0.8rem;
}

.business-callout p {
  margin: 1px 0 0;
  color: var(--brand);
  font-size: 0.61rem;
  font-weight: 800;
}

.business-callout--payment,
.business-callout--cashback,
.business-callout--promotion {
  top: 19%;
  right: -15px;
}

.business-callout--commission,
.business-callout--analytics {
  bottom: 19%;
  left: -22px;
}

.business-visual[data-active="0"] .business-callout--payment,
.business-visual[data-active="1"] .business-callout--payment,
.business-visual[data-active="2"] .business-callout--cashback,
.business-visual[data-active="3"] .business-callout--commission,
.business-visual[data-active="4"] .business-callout--promotion,
.business-visual[data-active="5"] .business-callout--analytics {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.business-progress {
  position: absolute;
  right: -34px;
  display: grid;
  gap: 7px;
}

.business-progress span {
  width: 5px;
  height: 5px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.28);
  transition: height 0.3s var(--ease), background 0.3s ease;
}

.business-progress span.is-active {
  height: 23px;
  background: var(--sun);
}

@media (max-width: 1120px) {
  .business-story-grid {
    grid-template-columns: minmax(0, 0.86fr) minmax(470px, 1.14fr);
    gap: 34px;
  }

  .business-dashboard {
    width: min(590px, 100%);
  }

  .business-callout--payment,
  .business-callout--cashback,
  .business-callout--promotion {
    right: -5px;
  }

  .business-callout--commission,
  .business-callout--analytics {
    left: -8px;
  }
}

@media (max-width: 900px) {
  .business-story-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
  }

  .business-story-copy,
  .business-story-visual {
    grid-column: 1;
    grid-row: 1;
  }

  .business-story-copy {
    position: relative;
    z-index: 3;
    pointer-events: none;
  }

  .business-step {
    min-height: 100svh;
    align-items: end;
    padding: 52svh 0 8svh;
  }

  .business-copy-inner {
    max-width: min(650px, 92vw);
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 24px;
    background: rgba(8, 38, 27, 0.87);
    box-shadow: 0 25px 65px rgba(0, 18, 12, 0.3);
    backdrop-filter: blur(16px);
    pointer-events: auto;
  }

  .business-step h2 {
    max-width: 610px;
    font-size: clamp(2.4rem, 7vw, 4.2rem);
  }

  .business-visual {
    align-items: start;
    padding-top: calc(var(--header-height) + 28px);
  }

  .business-dashboard {
    width: min(760px, 88vw);
  }

  .business-callout--payment,
  .business-callout--cashback,
  .business-callout--promotion {
    top: calc(var(--header-height) + 18px);
    right: 2vw;
  }

  .business-callout--commission,
  .business-callout--analytics {
    top: 43%;
    bottom: auto;
    left: 3vw;
  }

  .business-progress {
    top: 32%;
    right: 1vw;
  }
}

@media (max-width: 620px) {
  .phone-state--cashback {
    gap: 8px;
    padding: 20px 14px 13px;
  }

  .payment-success-head {
    padding-top: 2px;
  }

  .payment-success-head > span {
    width: 43px;
    height: 43px;
    margin-bottom: 6px;
  }

  .payment-success-head strong {
    font-size: 1.7rem;
  }

  .cashback-earned {
    padding: 12px;
  }

  .business-step {
    padding: 51svh 0 5svh;
  }

  .business-copy-inner {
    width: 100%;
    padding: 20px;
    border-radius: 21px;
  }

  .business-step h2 {
    margin-bottom: 15px;
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .business-step > .business-copy-inner > p:not(.eyebrow, .step-kicker) {
    margin-bottom: 17px;
    font-size: 0.94rem;
    line-height: 1.55;
  }

  .business-visual {
    padding-top: calc(var(--header-height) + 18px);
  }

  .business-dashboard {
    width: 94vw;
    padding: 13px;
    border-radius: 23px;
  }

  .business-dashboard-head {
    margin-bottom: 10px;
  }

  .business-summary {
    gap: 5px;
  }

  .business-summary article {
    padding: 9px 7px;
    border-radius: 13px;
  }

  .business-summary small,
  .business-summary span {
    font-size: 0.5rem;
  }

  .business-summary strong {
    font-size: 0.86rem;
  }

  .business-dashboard-main {
    grid-template-columns: 1fr 0.82fr;
    gap: 5px;
    margin-top: 5px;
  }

  .business-chart,
  .business-payments {
    padding: 9px;
    border-radius: 14px;
  }

  .business-chart-bars {
    height: 87px;
    gap: 4px;
    padding-top: 14px;
  }

  .business-chart-bars i {
    width: 12px;
  }

  .business-payments > div {
    gap: 4px;
    padding: 7px 0;
  }

  .business-payments > div > b {
    width: 18px;
    height: 18px;
  }

  .business-payments em {
    display: none;
  }

  .business-callout {
    min-width: 178px;
    padding: 10px 12px;
  }

  .business-callout > span {
    width: 33px;
    height: 33px;
  }

  .business-callout--payment,
  .business-callout--cashback,
  .business-callout--promotion {
    top: calc(var(--header-height) + 7px);
    right: 1vw;
  }

  .business-callout--commission,
  .business-callout--analytics {
    top: 39%;
    left: 1vw;
  }

  .business-progress {
    top: 31%;
    right: 2px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .phone-shell,
  .phone-halo,
  .merchant-sign,
  .story-step {
    transform: none !important;
  }

  .phone-sticky[data-scene="rotulo"] .merchant-sign,
  .phone-sticky[data-scene="escaneo"] .merchant-sign {
    transform: translate3d(-55px, 25px, 0) scale(0.9) !important;
  }

  .amount-field strong {
    clip-path: inset(0 0 0 0);
  }

  .phone-primary {
    opacity: 1;
    transform: none;
  }
}

@supports not (backdrop-filter: blur(10px)) {
  .nav-shell,
  .story-copy-inner,
  .orbit-card,
  .mini-receipt,
  .receipt-card {
    background: rgba(255, 255, 255, 0.97);
  }
}
