@font-face {
  font-family: "Nunito";
  src: url("assets/fonts/Nunito-Regular.ttf") format("truetype");
  font-weight: 400;
}

@font-face {
  font-family: "Nunito";
  src: url("assets/fonts/Nunito-Bold.ttf") format("truetype");
  font-weight: 700;
}

:root {
  --bg: #07110a;
  --green: #1f4b28;
  --green-2: #5dd170;
  --mint: #d8ffe0;
  --ice: #f6fff7;
  --gold: #e6bf61;
  --coral: #f07f63;
  --ink: #102016;
  --muted: rgba(246, 255, 247, 0.72);
  --line: rgba(255, 255, 255, 0.18);
  --glass: rgba(255, 255, 255, 0.1);
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.36);
  --soft-shadow: 0 18px 60px rgba(0, 0, 0, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  width: 100%;
  overflow-x: hidden;
  max-width: 100vw;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--ice);
  font-family: "Nunito", Arial, sans-serif;
  overflow-x: hidden;
  max-width: 100vw;
}

main {
  position: relative;
}

body::selection {
  color: var(--ink);
  background: var(--mint);
}

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

button {
  font: inherit;
}

.background {
  position: fixed;
  inset: 0;
  width: 100vw;
  z-index: -2;
  overflow: hidden;
  contain: paint;
  background:
    radial-gradient(circle at 18% 12%, rgba(93, 209, 112, 0.32), transparent 34%),
    radial-gradient(circle at 78% 8%, rgba(230, 191, 97, 0.18), transparent 30%),
    linear-gradient(145deg, #050906 0%, #102a17 48%, #050906 100%);
}

.scroll-progress {
  position: fixed;
  z-index: 60;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--green-2), var(--gold), var(--coral));
  box-shadow: 0 0 22px rgba(93, 209, 112, 0.9);
}

.mesh {
  position: absolute;
  width: 36rem;
  height: 36rem;
  border-radius: 999px;
  filter: blur(72px);
  opacity: 0.42;
  animation: floatMesh 14s ease-in-out infinite;
}

.noise {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.18) 0 1px, transparent 1px),
    radial-gradient(circle at 70% 80%, rgba(255, 255, 255, 0.14) 0 1px, transparent 1px);
  background-size: 28px 28px, 36px 36px;
  mix-blend-mode: overlay;
  animation: grainShift 8s steps(8) infinite;
}

.mesh-a {
  left: -12rem;
  top: 12rem;
  background: #62d672;
}

.mesh-b {
  right: -10rem;
  top: 28rem;
  background: #e6bf61;
  animation-delay: -5s;
}

.mesh-c {
  left: 34%;
  bottom: -16rem;
  background: #f07f63;
  animation-delay: -9s;
}

.grid-glow {
  position: absolute;
  inset: 0;
  opacity: 0.13;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.18) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, transparent 0%, black 20%, black 76%, transparent 100%);
}

.glass {
  border: 1px solid var(--line);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.06)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), transparent);
  box-shadow: var(--shadow);
  backdrop-filter: blur(24px) saturate(140%);
  -webkit-backdrop-filter: blur(24px) saturate(140%);
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 18px;
  left: 50%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  width: min(1120px, calc(100% - 32px));
  min-height: 66px;
  padding: 10px 12px;
  border-radius: 18px;
  transform: translateX(-50%);
  transition: transform 0.35s ease, background 0.35s ease, box-shadow 0.35s ease;
}

.site-header.is-scrolled {
  background:
    linear-gradient(145deg, rgba(10, 28, 14, 0.82), rgba(10, 28, 14, 0.46)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), transparent);
  box-shadow: 0 14px 54px rgba(0, 0, 0, 0.34);
  transform: translateX(-50%) translateY(-4px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}

.brand img,
.footer img {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.26);
}

.nav {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.nav a {
  padding: 10px 12px;
  color: var(--muted);
  border-radius: 999px;
  transition: color 0.2s ease, background 0.2s ease;
}

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

.language-switch {
  position: relative;
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.22);
  overflow: hidden;
}

.lang-indicator {
  position: absolute;
  top: 4px;
  left: 4px;
  width: calc(50% - 4px);
  height: calc(100% - 8px);
  border-radius: 999px;
  background: var(--mint);
  box-shadow: 0 8px 24px rgba(216, 255, 224, 0.26);
  transition: transform 0.42s cubic-bezier(0.2, 0.9, 0.2, 1);
}

.language-switch[data-active="uz"] .lang-indicator {
  transform: translateX(calc(100% + 4px));
}

.lang-btn {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-width: 42px;
  min-height: 36px;
  border: 0;
  border-radius: 999px;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  transition: color 0.25s ease, transform 0.25s ease;
}

.lang-btn span {
  display: inline-block;
  filter: saturate(1.2);
  transform: translateY(1px) scale(0.92);
  transition: transform 0.34s cubic-bezier(0.2, 0.9, 0.2, 1);
}

.lang-btn.is-active {
  color: var(--ink);
  background: transparent;
}

.lang-btn.is-active span {
  transform: translateY(0) scale(1.16) rotate(-5deg);
}

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

.section {
  position: relative;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 96px 0;
  scroll-margin-top: 110px;
}

.brand-motion,
.final-cta {
  position: relative;
  scroll-margin-top: 110px;
}

.section::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 50%;
  top: -96px;
  width: 100vw;
  height: 190px;
  background: linear-gradient(180deg, transparent, rgba(7, 17, 10, 0.34) 45%, transparent);
  transform: translateX(-50%);
  pointer-events: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  align-items: center;
  gap: 48px;
  min-height: 100vh;
  padding-top: 128px;
}

.hero-logo-lockup {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  padding: 7px 14px 7px 7px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.hero-logo-lockup img {
  width: 34px;
  height: 34px;
  border-radius: 10px;
}

.hero-socials {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-left: 2px;
  padding-left: 10px;
  border-left: 1px solid rgba(255, 255, 255, 0.16);
  letter-spacing: 0;
}

.hero-socials a {
  display: inline-grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.08);
  transition: transform 0.26s ease, border-color 0.26s ease, background 0.26s ease, color 0.26s ease;
}

.hero-socials a:hover {
  border-color: rgba(216, 255, 224, 0.5);
  color: var(--mint);
  background: rgba(216, 255, 224, 0.12);
  transform: translateY(-2px) scale(1.04);
}

.hero-socials svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-socials a:last-child svg {
  fill: currentColor;
  stroke: none;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--green-2);
  font-size: 0.83rem;
  font-weight: 700;
  text-transform: uppercase;
}

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

h1 {
  max-width: 740px;
  margin-bottom: 20px;
  font-size: clamp(3rem, 8vw, 6.8rem);
  line-height: 0.94;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: 1;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.35rem;
}

.hero-text,
.section-heading p,
.phone-card p,
.venues p,
.faq p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.65;
}

.hero-text {
  max-width: 590px;
  margin-bottom: 28px;
  font-size: 1.2rem;
}

.store-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 26px;
}

.store-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 176px;
  min-height: 58px;
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.42);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
  overflow: hidden;
  will-change: transform;
}

.store-btn::after,
.primary-link::after {
  content: "";
  position: absolute;
  inset: -40% -80%;
  background: linear-gradient(115deg, transparent 42%, rgba(255, 255, 255, 0.42) 50%, transparent 58%);
  transform: translateX(-55%);
  transition: transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
  pointer-events: none;
}

.store-btn:hover {
  border-color: rgba(216, 255, 224, 0.72);
  background: rgba(0, 0, 0, 0.6);
  transform: translateY(-3px);
}

.store-btn.is-disabled {
  cursor: default;
  opacity: 0.78;
}

.store-btn.is-disabled:hover {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(0, 0, 0, 0.42);
}

.store-btn:hover::after,
.primary-link:hover::after {
  transform: translateX(55%);
}

.store-btn small,
.store-btn strong {
  display: block;
}

.store-btn small {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.72rem;
}

.store-btn strong {
  font-size: 1.08rem;
}

.store-icon {
  font-size: 2rem;
  line-height: 1;
}

.play-icon {
  width: 0;
  height: 0;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  border-left: 22px solid var(--green-2);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 610px;
  border-radius: 18px;
  overflow: hidden;
}

.hero-stats div {
  padding: 18px;
}

.hero-stats div + div {
  border-left: 1px solid var(--line);
}

.hero-stats strong,
.hero-stats span {
  display: block;
}

.hero-stats strong {
  color: var(--mint);
  font-size: 1.45rem;
}

.hero-stats span {
  color: var(--muted);
  font-size: 0.88rem;
}

.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 620px;
  transform-style: preserve-3d;
  transition: transform 0.28s ease;
}

.orbit {
  position: absolute;
  border: 1px solid rgba(216, 255, 224, 0.2);
  border-radius: 999px;
  animation: spin 18s linear infinite;
}

.orbit-one {
  width: 480px;
  height: 480px;
}

.orbit-two {
  width: 350px;
  height: 350px;
  border-color: rgba(230, 191, 97, 0.22);
  animation-duration: 13s;
  animation-direction: reverse;
}

.phone {
  position: relative;
  width: min(330px, 78vw);
  aspect-ratio: 9 / 17.2;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 44px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.32), rgba(0, 0, 0, 0.5));
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.5);
  transform: rotate(-4deg);
}

.hero-phone {
  animation: floatPhone 5s ease-in-out infinite;
}

.phone-top {
  position: absolute;
  z-index: 2;
  top: 19px;
  left: 50%;
  width: 96px;
  height: 27px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 72% 50%, rgba(255, 255, 255, 0.16) 0 2px, transparent 3px),
    #060806;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06), 0 4px 14px rgba(0, 0, 0, 0.24);
  transform: translateX(-50%);
}

.screen,
.mini-phone {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 32px;
  background: linear-gradient(160deg, #eaffed, #b7dfbf 46%, #244c2b);
}

.shot {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: none;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.shot.is-loaded {
  display: block;
}

.mini-phone .shot {
  inset: 10px;
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  object-fit: cover;
  object-position: top center;
  border-radius: 30px;
  background: rgba(234, 255, 237, 0.9);
}

.hero-phone .shot {
  display: none;
}

.screen-fallback {
  display: flex;
  height: 100%;
  flex-direction: column;
  gap: 16px;
  padding: 58px 20px 22px;
  color: var(--ink);
}

.hero-app-ui {
  background:
    radial-gradient(circle at 88% 10%, rgba(93, 209, 112, 0.32), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(224, 247, 229, 0.88));
}

.app-head {
  display: flex;
  align-items: center;
  gap: 12px;
}

.app-head img {
  width: 46px;
  height: 46px;
  border-radius: 8px;
}

.app-head span,
.app-head strong {
  display: block;
}

.app-head span {
  color: rgba(16, 32, 22, 0.64);
  font-size: 0.82rem;
}

.hero-search {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: center;
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 12px 28px rgba(22, 55, 28, 0.08);
}

.hero-search span {
  width: 13px;
  height: 13px;
  border: 2px solid rgba(31, 75, 40, 0.42);
  border-radius: 999px;
}

.hero-search p {
  margin: 0;
  color: rgba(16, 32, 22, 0.48);
  font-size: 0.9rem;
}

.hero-category-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.hero-category-row span {
  aspect-ratio: 1;
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(235, 255, 239, 0.58));
  box-shadow: inset 0 0 0 1px rgba(31, 75, 40, 0.08), 0 10px 22px rgba(22, 55, 28, 0.08);
}

.hero-category-row span:nth-child(1)::before,
.hero-category-row span:nth-child(2)::before,
.hero-category-row span:nth-child(3)::before,
.hero-category-row span:nth-child(4)::before {
  content: "";
  display: block;
  width: 44%;
  height: 44%;
  margin: 28% auto;
  border-radius: 8px;
  background: var(--green);
  opacity: 0.72;
}

.cashback-card {
  padding: 20px;
  border-radius: 8px;
  color: white;
  background: linear-gradient(145deg, #173d1f, #2f7b3f);
}

.cashback-card span,
.cashback-card small,
.cashback-card strong {
  display: block;
}

.cashback-card strong {
  margin: 5px 0;
  font-size: 2.2rem;
}

.hero-phone .cashback-card {
  display: none;
}

.bonus-popout {
  position: absolute;
  z-index: 5;
  left: 50%;
  top: 46%;
  width: min(360px, 82vw);
  padding: 22px 24px;
  border-radius: 26px;
  color: white;
  background:
    radial-gradient(circle at 90% 12%, rgba(230, 191, 97, 0.34), transparent 30%),
    linear-gradient(145deg, rgba(23, 61, 31, 0.98), rgba(47, 123, 63, 0.94)),
    rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 62px rgba(10, 32, 15, 0.34), inset 0 0 0 1px rgba(255, 255, 255, 0.14);
  transform: translate3d(-50%, -50%, 36px) rotate(-2deg);
  animation: bonusPop 4.8s ease-in-out infinite;
}

.bonus-popout span,
.bonus-popout strong,
.bonus-popout small {
  display: block;
}

.bonus-popout span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.86rem;
}

.bonus-popout strong {
  margin: 6px 0;
  font-size: clamp(2.25rem, 5vw, 3.25rem);
  line-height: 0.95;
}

.bonus-popout small {
  color: rgba(255, 255, 255, 0.72);
}

.hero-shimmer-list {
  display: grid;
  gap: 12px;
  margin-top: 2px;
}

.hero-shimmer-list div {
  position: relative;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: center;
  min-height: 62px;
  overflow: hidden;
  padding: 10px 12px;
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.76), rgba(244, 255, 247, 0.58));
  box-shadow: inset 0 0 0 1px rgba(31, 75, 40, 0.08), 0 12px 28px rgba(22, 55, 28, 0.08);
}

.hero-shimmer-list div::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.58) 42%, transparent 74%);
  transform: translateX(-110%);
  animation: shimmerPass 2.1s ease-in-out infinite;
}

.hero-shimmer-list div:nth-child(2)::after {
  animation-delay: 0.16s;
}

.hero-shimmer-list div:nth-child(3)::after {
  animation-delay: 0.3s;
}

.hero-shimmer-list div:nth-child(4)::after {
  animation-delay: 0.44s;
}

.hero-shimmer-list span,
.hero-shimmer-list p {
  margin: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(31, 75, 40, 0.12), rgba(31, 75, 40, 0.24), rgba(31, 75, 40, 0.1));
}

.hero-shimmer-list span {
  width: 42px;
  height: 42px;
}

.hero-shimmer-list p {
  width: 100%;
  height: 15px;
}

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

.restaurant-list div {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 10px;
  align-items: center;
  padding: 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.62);
}

.restaurant-list span {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: #d69f4e;
}

.restaurant-list p,
.mini-fallback p {
  margin: 0;
  border-radius: 999px;
}

.restaurant-list p {
  height: auto;
  color: rgba(16, 32, 22, 0.82);
  font-weight: 700;
  background: transparent;
}

.mini-fallback p {
  height: 10px;
  background: rgba(16, 32, 22, 0.18);
}

.floating-chip {
  position: absolute;
  z-index: 4;
  padding: 13px 16px;
  border-radius: 999px;
  font-weight: 700;
  animation: floatChip 3.8s ease-in-out infinite;
}

.chip-one {
  left: 12px;
  top: 22%;
}

.chip-two {
  right: 10px;
  bottom: 24%;
  animation-delay: -1.2s;
}

.chip-three {
  left: 50%;
  bottom: 8%;
  transform: translateX(-50%);
  animation-delay: -2s;
}

.insight-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding-top: 28px;
}

.insight-card {
  position: relative;
  min-height: 250px;
  padding: 24px;
  border-radius: 18px;
  overflow: hidden;
  transition: transform 0.35s ease, border-color 0.35s ease, background 0.35s ease;
}

.insight-card::before {
  content: "";
  position: absolute;
  inset: auto -20% -34% -20%;
  height: 120px;
  background: radial-gradient(circle, rgba(93, 209, 112, 0.28), transparent 64%);
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.insight-card:hover {
  border-color: rgba(216, 255, 224, 0.44);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.08));
  transform: translateY(-8px);
}

.insight-card:hover::before {
  opacity: 0.9;
  transform: translateY(-18px);
}

.insight-card span {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 34px;
  border-radius: 12px;
  color: var(--ink);
  font-weight: 700;
  background: var(--mint);
}

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

.brand-motion {
  position: relative;
  overflow: hidden;
  contain: paint;
  max-width: 100vw;
  margin: 46px 0 12px;
  padding: 48px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(180deg, rgba(246, 255, 247, 0.08), rgba(246, 255, 247, 0.03)),
    rgba(0, 0, 0, 0.08);
}

.brand-motion::before,
.brand-motion::after {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  bottom: 0;
  width: 16vw;
  pointer-events: none;
}

.brand-motion::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg), transparent);
}

.brand-motion::after {
  right: 0;
  background: linear-gradient(270deg, var(--bg), transparent);
}

.brand-motion-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(320px, 0.72fr);
  gap: 30px;
  align-items: center;
  width: min(1120px, calc(100% - 32px));
  margin: 18px auto;
}

.brand-motion h2 {
  max-width: 820px;
  margin-bottom: 0;
}

.type-marquee {
  position: relative;
  z-index: 0;
  display: flex;
  overflow: hidden;
  width: 100%;
  max-width: 100vw;
  padding: 6px 0;
  contain: layout paint;
}

.type-track {
  display: flex;
  width: max-content;
  animation: typeMarquee 26s linear infinite;
}

.type-track.reverse {
  animation-name: typeMarqueeReverse;
}

.type-track span {
  padding: 0 20px;
  color: rgba(216, 255, 224, 0.13);
  font-size: clamp(3.2rem, 10vw, 9rem);
  font-weight: 700;
  line-height: 0.88;
  white-space: nowrap;
}

.type-marquee-bottom .type-track span {
  color: rgba(230, 191, 97, 0.17);
}

.promise-stack {
  display: grid;
  gap: 10px;
}

.promise-pill {
  display: grid;
  grid-template-columns: 12px 1fr;
  gap: 12px;
  align-items: center;
  min-height: 54px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.16);
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.promise-pill:hover {
  border-color: rgba(216, 255, 224, 0.42);
  background: rgba(255, 255, 255, 0.12);
  transform: translateX(5px);
}

.promise-pill span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 18px rgba(230, 191, 97, 0.56);
}

.promise-pill strong {
  font-size: 0.98rem;
}

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

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

.phone-card {
  padding: 16px;
  border-radius: 18px;
  transition: transform 0.35s ease, border-color 0.35s ease;
  overflow: hidden;
}

.phone-card:hover {
  border-color: rgba(216, 255, 224, 0.48);
  transform: translateY(-8px);
}

.mini-phone {
  width: min(100%, 224px);
  height: auto;
  aspect-ratio: 9 / 17.1;
  margin: 0 auto 18px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 40px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.36), rgba(0, 0, 0, 0.46)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), transparent);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.34),
    inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.mini-phone::before {
  content: "";
  position: absolute;
  z-index: 4;
  top: 20px;
  left: 50%;
  width: 78px;
  height: 22px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 72% 50%, rgba(255, 255, 255, 0.16) 0 2px, transparent 3px),
    #070908;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06), 0 4px 12px rgba(0, 0, 0, 0.22);
  transform: translateX(-50%);
}

.mini-phone::after {
  content: "";
  position: absolute;
  inset: 10px;
  z-index: 3;
  border-radius: 30px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.24);
  pointer-events: none;
}

.mini-fallback {
  display: grid;
  align-content: start;
  gap: 12px;
  height: 100%;
  padding: 28px 18px;
  border-radius: 30px;
  color: var(--ink);
  background: linear-gradient(160deg, #eaffed, #b7dfbf 46%, #244c2b);
}

.mini-fallback span {
  width: 54px;
  height: 54px;
  border-radius: 8px;
  background: #1f4b28;
}

.mini-fallback strong {
  font-size: 1.35rem;
}

.qr-fallback {
  place-items: center;
  align-content: center;
}

.qr-fallback span {
  width: 128px;
  height: 128px;
  border-radius: 8px;
  background:
    linear-gradient(90deg, #102016 12px, transparent 12px) 0 0 / 32px 32px,
    linear-gradient(#102016 12px, transparent 12px) 0 0 / 32px 32px,
    #eaffed;
}

.partners {
  padding-top: 52px;
}

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

.flow-card {
  position: relative;
  min-height: 390px;
  padding: clamp(22px, 4vw, 38px);
  border-radius: 22px;
  overflow: hidden;
}

.flow-card::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -80px;
  width: 220px;
  height: 220px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(230, 191, 97, 0.25), transparent 68%);
}

.flow-icon {
  display: inline-grid;
  width: 58px;
  height: 58px;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 16px;
  color: var(--ink);
  font-weight: 700;
  background:
    linear-gradient(145deg, rgba(216, 255, 224, 1), rgba(230, 191, 97, 0.74));
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.22), inset 0 0 0 1px rgba(255, 255, 255, 0.38);
}

.flow-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: var(--ink);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.flow-client {
  border-radius: 18px 18px 18px 8px;
}

.flow-venue {
  border-radius: 18px 8px 18px 18px;
}

.flow-card ol {
  display: grid;
  gap: 16px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: flow;
}

.flow-card li {
  position: relative;
  min-height: 54px;
  padding: 15px 16px 15px 58px;
  border-radius: 14px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.08);
}

.flow-card li::before {
  counter-increment: flow;
  content: counter(flow);
  position: absolute;
  left: 14px;
  top: 50%;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 999px;
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 700;
  background: var(--gold);
  transform: translateY(-50%);
}

.marquee {
  overflow: hidden;
  margin-bottom: 46px;
  border-radius: 18px;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 22s linear infinite;
}

.marquee span {
  padding: 18px 34px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.6rem, 5vw, 4.4rem);
  font-weight: 700;
  white-space: nowrap;
}

.partner-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 30px;
  align-items: start;
}

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

.partner-logo {
  display: grid;
  min-height: 118px;
  place-items: center;
  border-radius: 18px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.35rem;
  font-weight: 700;
  transition: transform 0.35s ease, border-color 0.35s ease;
}

.partner-logo:hover {
  border-color: rgba(230, 191, 97, 0.52);
  transform: translateY(-6px) scale(1.02);
}

.venue-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(300px, 0.76fr);
  gap: clamp(26px, 5vw, 58px);
  align-items: center;
  overflow: hidden;
  padding: clamp(24px, 5vw, 54px);
  border-radius: 24px;
}

.venue-card::before {
  content: "";
  position: absolute;
  inset: auto -12% -34% 44%;
  height: 70%;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(216, 255, 224, 0.2), transparent 68%);
  pointer-events: none;
}

.venue-copy,
.venue-visual {
  position: relative;
  z-index: 1;
}

.venue-copy {
  display: grid;
  gap: 18px;
  align-content: center;
}

.venue-copy h2,
.venue-copy p {
  margin-bottom: 0;
}

.venue-points {
  display: grid;
  gap: 12px;
  margin-top: 6px;
}

.venue-points div {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 14px;
  align-items: center;
  padding: 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  transition: transform 0.3s ease, background 0.3s ease;
}

.venue-points div:hover {
  background: rgba(255, 255, 255, 0.13);
  transform: translateX(6px);
}

.venue-points strong {
  color: var(--gold);
}

.venue-points span {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.45;
}

.venue-copy .primary-link {
  margin-top: 6px;
}

.venue-visual {
  display: grid;
  justify-items: center;
  align-items: center;
  min-height: 650px;
}

.venue-visual::before {
  content: "";
  position: absolute;
  width: min(430px, 88%);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 28%, rgba(230, 191, 97, 0.2), transparent 32%),
    radial-gradient(circle, rgba(93, 209, 112, 0.22), transparent 66%);
  filter: blur(2px);
}

.venue-visual::after {
  content: "";
  position: absolute;
  inset: 10% 2% 8% 12%;
  border: 1px solid rgba(216, 255, 224, 0.12);
  border-radius: 42px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  transform: rotate(4deg);
}

.primary-link {
  position: relative;
  display: inline-grid;
  min-height: 52px;
  width: fit-content;
  align-items: center;
  padding: 0 20px;
  border-radius: 14px;
  color: var(--ink);
  font-weight: 700;
  background: var(--mint);
  overflow: hidden;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.primary-link:hover {
  box-shadow: 0 16px 42px rgba(216, 255, 224, 0.2);
  transform: translateY(-3px);
}

.dashboard-preview {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  min-height: auto;
  overflow: visible;
  border: 1px solid var(--line);
  border-radius: 26px;
  width: min(100%, 390px);
  padding: 18px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.08)),
    rgba(4, 12, 6, 0.22);
  box-shadow: var(--soft-shadow);
}

.dashboard-device {
  position: relative;
  width: min(100%, 310px);
  aspect-ratio: 9 / 17.2;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 42px;
  padding: 11px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.34), rgba(0, 0, 0, 0.44)),
    rgba(234, 255, 237, 0.92);
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.34),
    inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.dashboard-device::before {
  content: "";
  position: absolute;
  z-index: 4;
  top: 20px;
  left: 50%;
  width: 82px;
  height: 22px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 72% 50%, rgba(255, 255, 255, 0.16) 0 2px, transparent 3px),
    #070908;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06), 0 4px 12px rgba(0, 0, 0, 0.22);
  transform: translateX(-50%);
}

.dashboard-device::after {
  content: "";
  position: absolute;
  inset: 11px;
  z-index: 3;
  border-radius: 32px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.22);
  pointer-events: none;
}

.dashboard-preview .shot {
  inset: 11px;
  width: calc(100% - 22px);
  height: calc(100% - 22px);
  object-fit: cover;
  object-position: top center;
  border-radius: 32px;
  background: rgba(234, 255, 237, 0.92);
}

.dashboard-preview.has-shot .dashboard-fallback {
  display: none;
}

.dashboard-fallback {
  position: relative;
  display: grid;
  gap: 12px;
  width: min(100%, 330px);
  height: 100%;
  min-height: 560px;
  padding: 58px 20px 20px;
  border-radius: 32px;
  color: var(--ink);
  background: linear-gradient(160deg, rgba(234, 255, 237, 0.94), rgba(183, 223, 191, 0.92));
}

.dash-top,
.dash-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.dash-top span {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--green);
}

.dash-metric {
  padding: 20px;
  border-radius: 18px;
  color: white;
  background: linear-gradient(145deg, #173d1f, #2f7b3f);
}

.dash-metric span,
.dash-metric strong {
  display: block;
}

.dash-metric strong {
  margin-top: 6px;
  font-size: 2.8rem;
}

.dash-row {
  padding: 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.52);
}

.dash-row span {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: var(--gold);
}

.dash-row p {
  width: 100%;
  height: 10px;
  margin: 0;
  border-radius: 999px;
  background: rgba(16, 32, 22, 0.18);
}

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

.faq {
  padding-bottom: 150px;
}

.final-cta {
  overflow: hidden;
  min-height: 64vh;
  margin-top: -112px;
  padding-top: 112px;
  background:
    linear-gradient(180deg, rgba(7, 17, 10, 0) 0%, rgba(6, 16, 8, 0.94) 18%, #061008 100%),
    radial-gradient(circle at 50% 12%, rgba(93, 209, 112, 0.22), transparent 42%),
    linear-gradient(180deg, rgba(8, 20, 11, 0.4), #061008);
}

.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 17, 10, 0), transparent 18%, rgba(0, 0, 0, 0.26) 78%, rgba(6, 16, 8, 0.92)),
    radial-gradient(circle at 50% 50%, transparent 0 34%, rgba(6, 16, 8, 0.24) 72%);
  pointer-events: none;
}

.final-cta::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 180px;
  background: linear-gradient(180deg, transparent, #061008 76%);
  pointer-events: none;
}

.network-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.68;
}

.final-cta-inner {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  align-content: center;
  width: min(880px, calc(100% - 32px));
  min-height: 64vh;
  margin: 0 auto;
  padding: 72px 0;
  text-align: center;
}

.final-cta-inner img {
  width: 78px;
  height: 78px;
  margin-bottom: 22px;
  border-radius: 20px;
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.34);
}

.final-cta-inner h2 {
  max-width: 820px;
}

.final-cta-inner p:not(.eyebrow) {
  max-width: 650px;
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.65;
}

.final-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}

.ghost-link {
  position: relative;
  display: inline-grid;
  min-height: 52px;
  width: fit-content;
  align-items: center;
  padding: 0 20px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 14px;
  color: var(--ice);
  font-weight: 700;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: transform 0.28s ease, border-color 0.28s ease, background 0.28s ease;
}

.ghost-link:hover {
  border-color: rgba(216, 255, 224, 0.5);
  background: rgba(255, 255, 255, 0.13);
}

.phone-link {
  color: var(--mint);
}

details {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
  transition: background 0.25s ease, border-color 0.25s ease;
}

details[open] {
  border-color: rgba(216, 255, 224, 0.44);
  background: rgba(255, 255, 255, 0.12);
}

summary {
  position: relative;
  list-style: none;
  cursor: pointer;
  padding: 20px 54px 20px 20px;
  font-weight: 700;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 999px;
  color: var(--ink);
  background: var(--mint);
  transform: translateY(-50%) rotate(0deg);
  transition: transform 0.25s ease;
}

details[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
}

details p {
  margin: 0;
  padding: 0 20px 20px;
}

.footer {
  display: grid;
  grid-template-columns: auto minmax(260px, 1fr) auto;
  align-items: center;
  gap: 14px 28px;
  width: 100%;
  margin: 0;
  padding: 22px max(16px, calc((100vw - 1120px) / 2));
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0;
  background:
    linear-gradient(180deg, #061008, #050c06);
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.footer-brand,
.footer-contacts,
.footer-legal {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
}

.footer-legal {
  justify-content: center;
  flex-wrap: wrap;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.88rem;
}

.footer-legal a:hover {
  color: var(--mint);
}

.footer-contacts {
  justify-content: flex-end;
}

.footer small {
  grid-column: 1 / -1;
  color: rgba(255, 255, 255, 0.48);
  text-align: center;
}

.footer span {
  font-weight: 700;
}

.footer a {
  color: var(--muted);
}

.reveal {
  opacity: 0;
  transform: translateY(26px) scale(0.98);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

.delay-1 {
  transition-delay: 0.12s;
}

.delay-2 {
  transition-delay: 0.22s;
}

@keyframes floatMesh {
  0%,
  100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(28px, -24px, 0) scale(1.08); }
}

@keyframes grainShift {
  0% { transform: translate3d(0, 0, 0); }
  25% { transform: translate3d(-2%, 1%, 0); }
  50% { transform: translate3d(1%, -2%, 0); }
  75% { transform: translate3d(2%, 2%, 0); }
  100% { transform: translate3d(0, 0, 0); }
}

@keyframes floatPhone {
  0%,
  100% { transform: translateY(0) rotate(-4deg); }
  50% { transform: translateY(-16px) rotate(-2deg); }
}

@keyframes floatChip {
  0%,
  100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@keyframes bonusPop {
  0%,
  100% { transform: translate3d(-50%, -50%, 36px) rotate(-2deg); }
  50% { transform: translate3d(-50%, calc(-50% - 12px), 36px) rotate(-1deg); }
}

@keyframes shimmerPass {
  to { transform: translateX(110%); }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

@keyframes typeMarquee {
  to { transform: translateX(-50%); }
}

@keyframes typeMarqueeReverse {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav {
    display: none;
  }

  .hero,
  .partner-layout,
  .venue-card,
  .insight-strip,
  .flow-grid,
  .brand-motion-inner {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 20px;
    padding-top: 118px;
  }

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

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

  .venue-visual {
    min-height: 570px;
  }

  .brand-motion {
    margin-top: 18px;
  }
}

@media (max-width: 560px) {
  .section {
    width: min(100% - 24px, 1120px);
    padding: 72px 0;
  }

  .site-header {
    top: 10px;
    width: calc(100% - 20px);
    min-height: 58px;
    padding: 8px;
  }

  .brand span {
    display: none;
  }

  h1 {
    font-size: clamp(2.55rem, 14vw, 4.2rem);
    line-height: 0.96;
  }

  h2 {
    font-size: clamp(1.9rem, 10vw, 3.2rem);
  }

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

  .hero-text,
  .section-heading p,
  .phone-card p,
  .venues p,
  .faq p {
    font-size: 1rem;
    line-height: 1.55;
  }

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

  .phone {
    width: min(282px, 78vw);
    border-radius: 38px;
  }

  .screen {
    border-radius: 28px;
  }

  .screen-fallback {
    gap: 12px;
    padding: 54px 16px 18px;
  }

  .bonus-popout {
    top: 47%;
    width: min(320px, calc(100vw - 42px));
    padding: 18px 20px;
    border-radius: 22px;
  }

  .hero-shimmer-list div {
    min-height: 54px;
    grid-template-columns: 36px 1fr;
  }

  .hero-shimmer-list span {
    width: 36px;
    height: 36px;
  }

  .hero-stats,
  .partner-logos {
    grid-template-columns: 1fr;
  }

  .hero-stats div + div {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .store-row,
  .store-btn,
  .final-actions,
  .final-actions a,
  .footer,
  .footer p {
    width: 100%;
  }

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

  .footer {
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 18px;
  }

  .footer-legal,
  .footer-contacts {
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
  }

  .footer small {
    grid-column: 1;
    text-align: left;
  }

  .orbit-one {
    width: 300px;
    height: 300px;
  }

  .orbit-two {
    width: 220px;
    height: 220px;
  }

  .floating-chip {
    display: none;
  }

  .insight-card,
  .flow-card,
  .venue-card,
  .phone-card {
    padding: 18px;
  }

  .phone-card {
    overflow: hidden;
  }

  .phone-card .mini-phone {
    width: min(100%, 236px);
    margin-inline: auto;
    aspect-ratio: 9 / 17.1;
  }

  .venue-visual {
    min-height: 500px;
  }

  .dashboard-preview {
    width: min(100%, 330px);
    padding: 14px;
  }

  .dashboard-device {
    width: min(100%, 258px);
  }

  .brand-motion {
    padding: 32px 0;
  }

  .brand-motion-inner {
    width: min(100% - 24px, 1120px);
  }

  .type-track span {
    padding: 0 12px;
    font-size: clamp(2.4rem, 16vw, 5rem);
  }

  .promise-pill {
    min-height: auto;
    align-items: start;
  }

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

  .flow-card li {
    padding-right: 12px;
  }

  .dashboard-fallback {
    min-height: 560px;
  }

  .dash-metric strong {
    font-size: 2.2rem;
  }

  .final-cta,
  .final-cta-inner {
    min-height: 560px;
  }

  .final-cta-inner {
    width: min(100% - 24px, 880px);
  }

  .final-cta-inner img {
    width: 64px;
    height: 64px;
    border-radius: 16px;
  }
}

@media (max-width: 380px) {
  .lang-btn {
    min-width: 38px;
    font-size: 0.86rem;
  }

  .store-btn {
    min-width: 0;
    padding-inline: 14px;
  }

  .hero-stats div {
    padding: 14px;
  }

  summary {
    padding-left: 16px;
    font-size: 0.96rem;
  }
}

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