/* ---------- TOKENS ---------- */
:root {
  --orange-50:  #FFF3EA;
  --orange-100: #FFE1CC;
  --orange-400: #FF8A3D;
  --orange-500: #FF6A00;
  --orange-600: #E65E00;
  --orange-700: #B84A00;

  --ink-900: #0E0F13;
  --ink-800: #151822;
  --ink-700: #1E2230;
  --ink-500: #4A4F5E;
  --ink-400: #7A8090;
  --ink-300: #B7BCC7;
  --ink-200: #E3E6EC;
  --ink-100: #F3F5F9;
  --white:    #FFFFFF;

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 22px;
  --radius-xl: 28px;

  --shadow-sm: 0 2px 8px rgba(14, 15, 19, 0.06);
  --shadow-md: 0 10px 30px rgba(14, 15, 19, 0.08);
  --shadow-lg: 0 24px 60px rgba(255, 106, 0, 0.22);

  --container: 1160px;
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* ---------- RESET ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--ink-900);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.55;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 { margin: 0; line-height: 1.15; letter-spacing: -0.02em; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }

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

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  transition: transform .2s var(--ease), background .2s var(--ease),
              color .2s var(--ease), box-shadow .2s var(--ease);
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn:disabled { opacity: .6; cursor: not-allowed; }

.btn--sm { padding: 9px 16px; font-size: 14px; }
.btn--lg { padding: 16px 28px; font-size: 16px; }
.btn--block { display: flex; width: 100%; }

.btn--primary {
  background: var(--orange-500);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(255, 106, 0, 0.35);
}
.btn--primary:hover {
  background: var(--orange-600);
  box-shadow: 0 10px 24px rgba(255, 106, 0, 0.45);
  transform: translateY(-1px);
}

.btn--ghost {
  background: var(--ink-100);
  color: var(--ink-900);
}
.btn--ghost:hover { background: var(--ink-200); }

.btn--ghost--light {
  background: rgba(255,255,255,0.08);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.16);
}
.btn--ghost--light:hover { background: rgba(255,255,255,0.14); }

/* ---------- NAV ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  background: rgba(255,255,255,0.75);
  border-bottom: 1px solid var(--ink-200);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--ink-900);
}
.brand__mark {
  display: inline-flex;
  width: 32px; height: 32px;
  align-items: center; justify-content: center;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--orange-500), var(--orange-400));
  color: var(--white);
  box-shadow: 0 6px 14px rgba(255,106,0,0.35);
}
.brand__mark svg { width: 18px; height: 18px; }
.brand__text { font-size: 18px; }

.nav__links {
  display: flex;
  gap: 28px;
  font-weight: 500;
  font-size: 15px;
  color: var(--ink-500);
}
.nav__links a { transition: color .2s var(--ease); }
.nav__links a:hover { color: var(--ink-900); }

@media (max-width: 760px) {
  .nav__links { display: none; }
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  padding: 72px 0 96px;
  background:
    radial-gradient(1000px 500px at 85% -10%, var(--orange-50), transparent 60%),
    radial-gradient(900px 500px at -10% 110%, #FFF7F0, transparent 60%),
    var(--white);
  overflow: hidden;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 960px) {
  .hero { padding: 48px 0 72px; }
  .hero__grid { grid-template-columns: 1fr; gap: 48px; }
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--orange-50);
  color: var(--orange-700);
  font-weight: 600;
  font-size: 13px;
  margin-bottom: 20px;
}
.pill__dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--orange-500);
  box-shadow: 0 0 0 4px rgba(255,106,0,0.18);
}

.hero__title {
  font-size: clamp(36px, 5.4vw, 60px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ink-900);
}
.accent {
  background: linear-gradient(135deg, var(--orange-500), var(--orange-400));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__sub {
  margin-top: 20px;
  font-size: 18px;
  color: var(--ink-500);
  max-width: 540px;
}

.hero__cta {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.hero__meta {
  display: flex;
  gap: 28px;
  margin-top: 40px;
  color: var(--ink-500);
  font-size: 14px;
}
.hero__meta strong {
  color: var(--ink-900);
  font-weight: 700;
  display: block;
  font-size: 18px;
}

/* phone mock */
.hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 680px;
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: .55;
  z-index: 0;
}
.blob--a { width: 320px; height: 320px; background: var(--orange-400); top: 10%; right: 5%; }
.blob--b { width: 260px; height: 260px; background: #FFCFAB; bottom: 5%; left: 5%; }

/* iPhone 17 Pro Max — Titanium */
.phone {
  position: relative;
  z-index: 1;
  width: 310px;
  height: 650px;
  border-radius: 58px;
  padding: 8px;
  background:
    linear-gradient(135deg, #6E6E76 0%, #3E3E44 18%, #2A2A30 50%, #48484E 82%, #6E6E76 100%);
  box-shadow:
    0 44px 90px rgba(14,15,19,0.38),
    0 10px 30px rgba(14,15,19,0.25),
    inset 0 0 0 1px rgba(255,255,255,0.14),
    inset 0 0 0 2.5px rgba(0,0,0,0.55);
}
.phone__frame {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50px;
  padding: 4px;
  background: #0A0A0C;
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.06);
}
.phone__island {
  position: absolute;
  top: 14px; left: 50%;
  transform: translateX(-50%);
  width: 108px; height: 32px;
  background: #000;
  border-radius: 999px;
  z-index: 3;
  box-shadow:
    inset 0 0 0 0.5px rgba(255,255,255,0.08),
    0 1px 2px rgba(0,0,0,0.6);
}
.phone__island::after {
  content: "";
  position: absolute;
  top: 50%; right: 12px;
  transform: translateY(-50%);
  width: 7px; height: 7px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #2a4a7a 0%, #0a1420 60%, #000 100%);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.06);
}
.phone__screen {
  position: relative;
  width: 100%; height: 100%;
  border-radius: 46px;
  overflow: hidden;
  background: linear-gradient(180deg, #FFF3EA, #FFE1CC 60%, #FFD0AE);
}

/* Side buttons */
.phone__btn {
  position: absolute;
  background: linear-gradient(90deg, #2A2A30, #56565C 50%, #2A2A30);
  border-radius: 2px;
  box-shadow:
    inset 0 0 0 0.5px rgba(255,255,255,0.1),
    0 1px 1px rgba(0,0,0,0.4);
  z-index: 0;
}
.phone__btn--action   { left: -2px; top: 118px; width: 3px; height: 34px; border-radius: 2px 0 0 2px; }
.phone__btn--vol-up   { left: -2px; top: 170px; width: 3px; height: 54px; border-radius: 2px 0 0 2px; }
.phone__btn--vol-down { left: -2px; top: 236px; width: 3px; height: 54px; border-radius: 2px 0 0 2px; }
.phone__btn--power    { right: -2px; top: 150px; width: 3px; height: 90px; border-radius: 0 2px 2px 0; }
.phone__btn--camera {
  right: -2px; top: 260px;
  width: 3px; height: 38px;
  border-radius: 0 2px 2px 0;
  background: linear-gradient(90deg, #2A2A30, #6B6B72 50%, #2A2A30);
}
.phone__btn--camera::after {
  content: "";
  position: absolute;
  right: 3px; top: 50%;
  transform: translateY(-50%);
  width: 6px; height: 2px;
  background: rgba(255,255,255,0.12);
  border-radius: 1px;
}

.map {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(600px 300px at 70% 20%, #FFE1CC, transparent 60%),
    linear-gradient(180deg, #FFF8F1, #FFE9D6);
}
.map__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,106,0,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,106,0,0.08) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(closest-side at 50% 50%, #000 50%, transparent 100%);
  -webkit-mask-image: radial-gradient(closest-side at 50% 50%, #000 50%, transparent 100%);
}
.map__me {
  position: absolute;
  top: 52%; left: 48%;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: #1E90FF;
  border: 3px solid #fff;
  box-shadow: 0 0 0 8px rgba(30,144,255,0.22);
  transform: translate(-50%, -50%);
}

.pin {
  position: absolute;
  width: 40px; height: 40px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 20px;
  background: var(--white);
  border: 2px solid var(--orange-500);
  box-shadow: 0 8px 18px rgba(255,106,0,0.28);
  animation: bob 3.6s ease-in-out infinite;
}
.pin::after {
  content: "";
  position: absolute;
  bottom: -6px; left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 10px; height: 10px;
  background: var(--white);
  border-right: 2px solid var(--orange-500);
  border-bottom: 2px solid var(--orange-500);
}
.pin--1 { top: 14%; left: 20%; animation-delay: .0s; }
.pin--2 { top: 22%; right: 14%; animation-delay: .6s; }
.pin--3 { top: 44%; left: 14%; animation-delay: 1.1s; }
.pin--4 { bottom: 26%; right: 18%; animation-delay: 1.6s; }
.pin--5 { bottom: 14%; left: 30%; animation-delay: 2.0s; }

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

.card-float {
  position: absolute;
  left: 14px; right: 14px; bottom: 20px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 12px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(14,15,19,0.18);
}
.card-float__avatar {
  width: 40px; height: 40px; border-radius: 12px;
  background: var(--orange-50);
  display: grid; place-items: center; font-size: 20px;
}
.card-float__title { font-weight: 700; font-size: 13px; color: var(--ink-900); }
.card-float__meta  { font-size: 11px; color: var(--ink-500); margin-top: 2px; }
.card-float__btn {
  padding: 8px 14px;
  background: var(--orange-500);
  color: var(--white);
  border-radius: 999px;
  font-weight: 700;
  font-size: 12px;
}

/* ---------- SECTIONS ---------- */
.section { padding: 96px 0; }
@media (max-width: 760px) { .section { padding: 72px 0; } }

.section--dark {
  background: var(--ink-900);
  color: var(--white);
}

.section__head {
  max-width: 720px;
  margin: 0 auto 56px;
  text-align: center;
}
.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 12px;
  font-weight: 700;
  color: var(--orange-600);
  margin-bottom: 12px;
}
.eyebrow--light { color: var(--orange-400); }

.section__title {
  font-size: clamp(28px, 3.6vw, 42px);
  font-weight: 800;
  letter-spacing: -0.02em;
}
.section--dark .section__title { color: var(--white); }

.section__sub {
  margin-top: 16px;
  font-size: 17px;
  color: var(--ink-500);
}
.section--dark .section__sub { color: var(--ink-300); }

/* ---------- FEATURES ---------- */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 960px) { .features { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .features { grid-template-columns: 1fr; } }

.feature {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--ink-200);
  border-radius: var(--radius-lg);
  transition: transform .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.feature:hover {
  transform: translateY(-4px);
  border-color: var(--orange-100);
  box-shadow: var(--shadow-md);
}
.feature__icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: var(--orange-50);
  display: grid; place-items: center;
  font-size: 28px;
  margin-bottom: 18px;
}
.feature h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}
.feature p {
  color: var(--ink-500);
  font-size: 15px;
}

/* ---------- TIERS ---------- */
.tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 8px;
}
@media (max-width: 900px) { .tiers { grid-template-columns: 1fr; } }

.tier {
  position: relative;
  padding: 32px;
  background: var(--ink-800);
  border: 1px solid var(--ink-700);
  border-radius: var(--radius-xl);
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: transform .25s var(--ease), border-color .25s var(--ease);
}
.tier:hover { transform: translateY(-4px); }
.tier.is-popular {
  background: linear-gradient(180deg, #1E1206, var(--ink-800));
  border-color: var(--orange-500);
  box-shadow: var(--shadow-lg);
}
.tier__badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--orange-500);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 999px;
  letter-spacing: 0.02em;
}
.tier__name {
  font-size: 22px;
  font-weight: 800;
}
.tier--bronze .tier__name { color: #D98A5A; }
.tier--silver .tier__name { color: #DDE3EC; }
.tier--gold   .tier__name { color: #F5C663; }

.tier__tag { color: var(--ink-300); font-size: 14px; margin-top: 4px; }

.tier__price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--ink-700);
}
.tier__amount { font-size: 38px; font-weight: 800; letter-spacing: -0.02em; }
.tier__per    { color: var(--ink-300); font-size: 14px; }

.tier__list {
  display: grid;
  gap: 12px;
  color: var(--ink-300);
  font-size: 15px;
  flex: 1;
}
.tier__list li {
  position: relative;
  padding-left: 26px;
}
.tier__list li::before {
  content: "";
  position: absolute;
  left: 0; top: 6px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--orange-500);
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'><path d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/></svg>") center/12px no-repeat;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'><path d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/></svg>") center/12px no-repeat;
}

.tiers__note {
  margin-top: 28px;
  text-align: center;
  color: var(--ink-300);
  font-size: 14px;
}

/* ---------- HOW IT WORKS ---------- */
.section--soft {
  background: linear-gradient(180deg, var(--ink-100), var(--white));
}

.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  counter-reset: step;
  position: relative;
}
@media (max-width: 960px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }

.step {
  position: relative;
  padding: 32px 24px 28px;
  background: var(--white);
  border: 1px solid var(--ink-200);
  border-radius: var(--radius-lg);
  transition: transform .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.step:hover {
  transform: translateY(-4px);
  border-color: var(--orange-100);
  box-shadow: var(--shadow-md);
}
.step__num {
  position: absolute;
  top: -16px; left: 24px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--orange-500);
  color: var(--white);
  display: grid; place-items: center;
  font-weight: 800;
  font-size: 15px;
  box-shadow: 0 6px 14px rgba(255,106,0,0.35);
}
.step__icon {
  font-size: 32px;
  margin-bottom: 14px;
  line-height: 1;
}
.step__title {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
}
.step__desc {
  font-size: 14.5px;
  color: var(--ink-500);
  line-height: 1.55;
}

/* ---------- CTA ---------- */
.cta {
  background:
    radial-gradient(600px 400px at 10% 50%, rgba(255,106,0,0.45), transparent 60%),
    linear-gradient(135deg, #1B0E05, var(--ink-900));
  color: var(--white);
  overflow: hidden;
}
.cta__inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 960px) {
  .cta__inner { grid-template-columns: 1fr; }
  .cta__side { display: none; }
}

.cta__title {
  font-size: clamp(32px, 4.4vw, 48px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-top: 10px;
  color: var(--white);
}
.cta__sub {
  margin-top: 16px;
  font-size: 17px;
  color: var(--ink-300);
  max-width: 520px;
}

.stores {
  display: flex;
  gap: 14px;
  margin-top: 36px;
  flex-wrap: wrap;
}
.store {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  padding: 14px 22px;
  min-width: 200px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 16px;
  color: var(--white);
}
.store__sup  { font-size: 11px; color: var(--ink-300); letter-spacing: 0.08em; text-transform: uppercase; }
.store__main { font-size: 18px; font-weight: 700; }
.store--disabled { opacity: .8; }
.stores--lg .store { min-width: 220px; padding: 16px 24px; }
.stores--lg .store__main { font-size: 19px; }

/* decorative side */
.cta__side {
  position: relative;
  height: 380px;
}
.ring {
  position: absolute;
  top: 50%; left: 50%;
  border-radius: 50%;
  border: 1px dashed rgba(255,255,255,0.18);
  transform: translate(-50%, -50%);
  animation: spin 40s linear infinite;
}
.ring--1 { width: 220px; height: 220px; }
.ring--2 { width: 320px; height: 320px; animation-duration: 60s; animation-direction: reverse; }
.ring--3 { width: 420px; height: 420px; animation-duration: 80s; }

@keyframes spin {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to   { transform: translate(-50%, -50%) rotate(360deg); }
}

.emoji {
  position: absolute;
  width: 52px; height: 52px;
  border-radius: 18px;
  display: grid; place-items: center;
  font-size: 24px;
  background: var(--white);
  color: var(--ink-900);
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
  animation: floaty 5s ease-in-out infinite;
}
.emoji--1 { top: 8%;   left: 20%; }
.emoji--2 { top: 22%;  right: 14%; animation-delay: .4s; }
.emoji--3 { top: 50%;  left: 8%;   animation-delay: .8s; }
.emoji--4 { bottom: 18%; right: 22%; animation-delay: 1.2s; }
.emoji--5 { bottom: 4%; left: 38%;  animation-delay: 1.6s; }

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

/* ---------- FOOTER ---------- */
.footer {
  background: var(--ink-900);
  color: var(--ink-300);
  padding: 64px 0 28px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--ink-700);
}
@media (max-width: 760px) {
  .footer__inner { grid-template-columns: 1fr; gap: 32px; }
}
.footer__brand .brand { color: var(--white); }
.footer__brand p {
  margin-top: 14px;
  max-width: 320px;
  color: var(--ink-400);
  font-size: 14px;
}

.footer__nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 560px) {
  .footer__nav { grid-template-columns: repeat(2, 1fr); }
}
.footer__nav h4 {
  font-size: 13px;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 14px;
}
.footer__nav a {
  display: block;
  padding: 6px 0;
  font-size: 14px;
  color: var(--ink-300);
  transition: color .2s var(--ease);
}
.footer__nav a:hover { color: var(--white); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  font-size: 13px;
  color: var(--ink-400);
  flex-wrap: wrap;
  gap: 8px;
}

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