/*
  Lbbak production landing page
  - Bilingual English/Arabic with RTL support
  - No mobile mockup
  - Non-overlapping product cards
  - Scroll, hover, float, and glow animations

  Fonts are not bundled. The CSS uses safe system stacks for English and Arabic.
*/

:root {
  --lime: #cce666;
  --lime-2: #d9f46f;
  --lime-3: #eef8bf;
  --ink: #171717;
  --ink-2: #242424;
  --muted: #66706e;
  --line: rgba(23, 23, 23, 0.1);
  --paper: #ffffff;
  --cream: #f7f8ef;
  --cream-2: #f0f4df;
  --shadow: 0 24px 70px rgba(23, 23, 23, 0.13);
  --shadow-soft: 0 14px 40px rgba(23, 23, 23, 0.08);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 8%, rgba(204, 230, 102, 0.24), transparent 28%),
    radial-gradient(circle at 88% 24%, rgba(204, 230, 102, 0.2), transparent 24%),
    var(--cream);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}

html[dir="rtl"] body {
  font-family: Tahoma, "Segoe UI", Arial, sans-serif;
  text-align: right;
}

body::before,
body::after {
  content: "";
  position: fixed;
  z-index: -2;
  pointer-events: none;
  border-radius: 999px;
  filter: blur(4px);
  opacity: 0.7;
}

body::before {
  inset-inline-start: -140px;
  top: 280px;
  width: 300px;
  height: 300px;
  background: rgba(204, 230, 102, 0.2);
}

body::after {
  inset-inline-end: -180px;
  top: 720px;
  width: 360px;
  height: 360px;
  background: rgba(204, 230, 102, 0.18);
}

.three-scene {
  position: fixed;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: .34;
  mix-blend-mode: multiply;
  transition: opacity .45s ease;
}

body:not(.is-webgl-ready) .three-scene { opacity: 0; }

main,
.site-footer {
  position: relative;
  z-index: 1;
}

.page-noise {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.28;
  background-image: radial-gradient(rgba(23,23,23,.14) 0.55px, transparent 0.55px);
  background-size: 18px 18px;
  mask-image: linear-gradient(to bottom, transparent, black 18%, black 82%, transparent);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, a { -webkit-tap-highlight-color: transparent; }

.section-shell,
.nav-shell {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}
.hero_card_label
{
	color:white;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.78);
  border-bottom: 1px solid rgba(23,23,23,0.08);
  backdrop-filter: blur(18px);
}

.nav-shell {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand img { width: 116px; height: auto; }

.nav-links,
.nav-actions {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-links a {
  position: relative;
  color: #2f3634;
  font-size: 14px;
  font-weight: 800;
}

.nav-links a::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  bottom: -8px;
  height: 2px;
  border-radius: 999px;
  background: var(--lime);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.24s ease;
}

.nav-links a:hover::after { transform: scaleX(1); }

.lang-switch,
.btn {
  border: 0;
  font-family: inherit;
  cursor: pointer;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 14px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  font-weight: 800;
  box-shadow: 0 10px 22px rgba(23, 23, 23, 0.04);
}

.chevron { opacity: 0.65; transform: translateY(-1px); }

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--line);
}

.nav-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
  border-radius: 99px;
}

.btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 900;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, border-color 0.22s ease;
  white-space: nowrap;
}

.btn:hover { transform: translateY(-3px); }
.btn-small { min-height: 42px; padding-inline: 18px; font-size: 14px; }
.btn-dark { color: #fff; background: var(--ink); box-shadow: 0 15px 32px rgba(23,23,23,.18); }
.btn-primary { color: var(--ink); background: var(--lime); box-shadow: 0 18px 38px rgba(204,230,102,.36); }
.btn-primary:hover { background: var(--lime-2); box-shadow: 0 22px 52px rgba(204,230,102,.48); }
.btn-outline { color: var(--ink); background: #fff; border: 1px solid rgba(23,23,23,.14); }
.btn-white { color: var(--ink); background: #fff; border: 1px solid rgba(255,255,255,.5); }

.hero-section { padding: 86px 0 58px; }

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(430px, .86fr);
  align-items: center;
  gap: 44px;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  padding: 8px 16px 8px 8px;
  border-radius: 999px;
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(23,23,23,.08);
  color: #61720c;
  font-weight: 900;
  box-shadow: var(--shadow-soft);
}

html[dir="rtl"] .eyebrow { padding: 8px 8px 8px 16px; }
.eyebrow img { width: 32px; height: 32px; object-fit: contain; }

.hero-copy h1,
.section-heading h2,
.wallet-copy h2,
.cta-card h2 {
  margin: 0;
  letter-spacing: -0.055em;
  line-height: 0.96;
}

html[dir="rtl"] .hero-copy h1,
html[dir="rtl"] .section-heading h2,
html[dir="rtl"] .wallet-copy h2,
html[dir="rtl"] .cta-card h2 { letter-spacing: -0.035em; line-height: 1.12; }

.hero-copy h1 {
  max-width: 720px;
  font-size: clamp(52px, 7vw, 92px);
}

.hero-copy h1::selection { background: var(--lime); }

.hero-copy p {
  max-width: 640px;
  margin: 24px 0 0;
  color: #39413f;
  font-size: clamp(18px, 1.75vw, 21px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.rating-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 28px;
}

html[dir="rtl"] .rating-row { justify-content: flex-start; }

.avatar-stack {
  display: flex;
  align-items: center;
  padding-inline-start: 8px;
}

.avatar-stack span {
  width: 34px;
  height: 34px;
  margin-inline-start: -8px;
  border: 2px solid #fff;
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(204,230,102,.85), rgba(23,23,23,.9)),
    radial-gradient(circle at 35% 32%, #fff 0 6px, transparent 7px);
  box-shadow: 0 8px 20px rgba(23,23,23,.1);
}

.avatar-stack span:nth-child(2) { background: linear-gradient(135deg, #f7d79a, #26302a); }
.avatar-stack span:nth-child(3) { background: linear-gradient(135deg, #cce666, #657816); }
.avatar-stack span:nth-child(4) { background: linear-gradient(135deg, #d9e7ff, #171717); }
.avatar-stack span:nth-child(5) { background: linear-gradient(135deg, #EEF8BF, #333); }

.rating-row strong { display: block; color: #c0ab25; letter-spacing: 1px; }
.rating-row strong b { color: var(--ink); margin-inline-start: 6px; }
.rating-row small { display: block; color: var(--muted); font-weight: 700; }

.hero-visual {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
  isolation: isolate;
}

/* Hero visual must always be present. It is intentionally not controlled by the reveal class,
   so it will never disappear if animation/CDN scripts are blocked or delayed. */
.hero-section .hero-visual {
  opacity: 1;
  visibility: visible;
}


.hero-visual::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(204,230,102,.42), transparent 62%);
  z-index: -2;
  animation: pulseGlow 4.8s ease-in-out infinite;
}

.orbit {
  position: absolute;
  border: 1.5px dashed rgba(121, 143, 22, 0.26);
  border-radius: 50%;
  pointer-events: none;
}
.orbit-one { width: 500px; height: 260px; transform: rotate(-18deg); animation: orbitTurn 16s linear infinite; }
.orbit-two { width: 390px; height: 200px; transform: rotate(22deg); animation: orbitTurn 18s linear infinite reverse; }


.hero-highlight-panel {
  position: relative;
  width: min(520px, 100%);
  min-height: 440px;
  display: grid;
  place-items: center;
  padding: 28px 22px 38px;
  border-radius: 48px;
  background:
    radial-gradient(circle at 50% 50%, rgba(204,230,102,.20), transparent 58%),
    linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.04));
  border: 1px solid rgba(121,143,22,.08);
  box-shadow: 0 32px 80px rgba(23,23,23,.08);
  backdrop-filter: blur(10px);
}

.hero-highlight-panel::before {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 38px;
  border: 1px dashed rgba(121,143,22,.20);
  pointer-events: none;
}

.hero-highlight-badge {
  position: absolute;
  top: 18px;
  inset-inline-start: 22px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  color: var(--ink);
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(23,23,23,.06);
  box-shadow: 0 12px 30px rgba(23,23,23,.08);
}

.hero-highlight-badge::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 12px rgba(204,230,102,.9);
}


.hero-highlight-panel::after {
  content: "";
  position: absolute;
  inset: -40% -22%;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 35%, rgba(255,255,255,.22), rgba(204,230,102,.24), transparent 66%);
  transform: translateX(-72%) rotate(4deg);
  animation: panelSheen 7.2s ease-in-out infinite;
}

.hero-highlight-panel .spark-particle { z-index: 6; }

.feature-strip-grid article,
.event-list article,
.occasion-grid article,
.steps-grid article,
.insight-card,
.balance-card,
.security-card,
.cta-card,
.showcase-feature-card {
  position: relative;
  overflow: hidden;
}

.feature-strip-grid article::after,
.event-list article::after,
.occasion-grid article::after,
.steps-grid article::after,
.insight-card::after,
.balance-card::after,
.security-card::after,
.cta-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(circle at var(--shine-x, 50%) var(--shine-y, 50%), rgba(204,230,102,.28), transparent 38%);
  transition: opacity .28s ease;
}

.feature-strip-grid article:hover::after,
.event-list article:hover::after,
.occasion-grid article:hover::after,
.steps-grid article:hover::after,
.insight-card:hover::after,
.balance-card:hover::after,
.security-card:hover::after,
.cta-card:hover::after { opacity: 1; }

.lbbak-holo-ring {
  position: absolute;
  z-index: 0;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  pointer-events: none;
  opacity: .32;
  border: 1px solid rgba(204,230,102,.45);
  box-shadow: inset 0 0 20px rgba(204,230,102,.16), 0 0 26px rgba(204,230,102,.16);
  transform: translate3d(-50%, -50%, 0) scale(.72);
  animation: holoRing 8s linear infinite;
}

.lbbak-holo-ring::before,
.lbbak-holo-ring::after {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: inherit;
  border: 1px dashed rgba(121,143,22,.38);
}

.lbbak-holo-ring::after {
  inset: 42px;
  border-style: solid;
  opacity: .6;
}

.hero-visual .lbbak-holo-ring { left: 70%; top: 30%; }
.wallet-panel .lbbak-holo-ring { left: 74%; top: 38%; }
.showcase-feature-card .lbbak-holo-ring { left: 80%; top: 20%; mix-blend-mode: screen; }

.btn::after,
.lang-switch::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  opacity: 0;
  pointer-events: none;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,.62), transparent);
  transform: translateX(-120%);
}

.btn:hover::after,
.lang-switch:hover::after {
  opacity: .7;
  animation: buttonSweep .8s ease;
}

body.is-webgl-ready .hero-section::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(204,230,102,.68), transparent);
  box-shadow: 0 0 28px rgba(204,230,102,.48);
}

@keyframes panelSheen {
  0%, 18% { transform: translateX(-72%) rotate(4deg); opacity: 0; }
  34%, 44% { opacity: .92; }
  64%, 100% { transform: translateX(72%) rotate(4deg); opacity: 0; }
}

@keyframes holoRing {
  0% { transform: translate3d(-50%, -50%, 0) scale(.62) rotateX(62deg) rotateZ(0deg); opacity: .1; }
  25% { opacity: .34; }
  100% { transform: translate3d(-50%, -50%, 0) scale(1.18) rotateX(62deg) rotateZ(360deg); opacity: 0; }
}

@keyframes buttonSweep {
  0% { transform: translateX(-120%); }
  100% { transform: translateX(120%); }
}

.wallet-hero-card {
  position: relative;
  z-index: 2;
  width: min(430px, 92vw);
  min-height: 300px;
  padding: 30px;
  border-radius: 34px;
  color: #fff;
  background:
    radial-gradient(circle at 20% 15%, rgba(204,230,102,.38), transparent 28%),
    linear-gradient(145deg, #333, #121212 62%);
  box-shadow: 0 36px 90px rgba(23,23,23,.28);
  transform: rotate(-4deg);
  overflow: hidden;
}

html[dir="rtl"] .wallet-hero-card { transform: rotate(4deg); }

.wallet-hero-card::before {
  content: "";
  position: absolute;
  inset: 24px auto auto 50%;
  width: 210px;
  height: 64px;
  border-radius: 18px;
  background: var(--lime);
  transform: translateX(-50%) rotate(4deg);
  opacity: .96;
}

.wallet-hero-card > img {
  position: relative;
  width: 92px;
  height: 92px;
  object-fit: contain;
  padding: 10px;
  margin-top: 56px;
  border-radius: 24px;
  background: var(--lime);
  box-shadow: inset 0 0 0 4px rgba(23,23,23,.1);
}

.wallet-card-top,
.wallet-hero-card strong { position: relative; z-index: 1; }
.wallet-card-top { display: flex; align-items: center; justify-content: space-between; gap: 14px; color: var(--lime); font-weight: 900; }
.coin { width: 38px; height: 38px; border-radius: 50%; background: linear-gradient(135deg, #ffdc65, #aa7b1e); box-shadow: 0 8px 22px rgba(255,220,101,.25); }
.wallet-hero-card strong { display: block; max-width: 280px; margin-top: 20px; font-size: 22px; line-height: 1.1; }

.gift-cube {
  position: absolute;
  z-index: 2;
  inset-inline-end: 28px;
  bottom: 30px;
  width: 142px;
  height: 142px;
  object-fit: contain;
  padding: 0;
  border-radius: 28px;
  background: transparent;
  filter: drop-shadow(0 22px 42px rgba(204,230,102,.42));
  transform: rotate(8deg);
}

.gift-logo {
  display: block;
}

.float-icon {
  position: absolute;
  width: 62px;
  height: 62px;
  object-fit: contain;
  padding: 12px;
  border-radius: 22px;
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(23,23,23,.08);
  box-shadow: 0 16px 35px rgba(23,23,23,.08);
  animation: floatY 4s ease-in-out infinite;
}
.icon-gift { inset-inline-start: 38px; top: 94px; animation-delay: .1s; }
.icon-heart { inset-inline-end: 8px; top: 136px; animation-delay: .7s; }
.icon-bell { inset-inline-start: 24px; bottom: 104px; animation-delay: 1.1s; }
.icon-wallet { inset-inline-end: 34px; bottom: 238px; animation-delay: 1.5s; }

.feature-strip { padding: 20px 0 66px; }

.feature-strip-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  padding: 16px;
  border-radius: 28px;
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(23,23,23,.08);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(16px);
}

.feature-strip article {
  min-height: 150px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255,255,255,.76);
  transition: transform .24s ease, background .24s ease, box-shadow .24s ease;
}

.feature-strip article:hover,
.occasion-grid article:hover,
.steps-grid article:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(23,23,23,.1);
}

.feature-strip img {
  width: 48px;
  height: 48px;
  padding: 8px;
  border-radius: 16px;
  background: var(--lime-3);
}
.feature-strip h3 { margin: 14px 0 4px; font-size: 16px; line-height: 1.1; }
.feature-strip p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.35; }

.moments-section,
.how-section { padding: 74px 0; }

.section-heading {
  max-width: 760px;
  margin-bottom: 32px;
}
.section-heading.centered { margin-inline: auto; text-align: center; }
html[dir="rtl"] .section-heading.centered { text-align: center; }
.section-kicker {
  display: inline-flex;
  margin-bottom: 12px;
  color: #6f8114;
  font-weight: 950;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-size: 13px;
}
html[dir="rtl"] .section-kicker { letter-spacing: 0; }
.section-heading h2,
.wallet-copy h2,
.cta-card h2 { font-size: clamp(40px, 5vw, 66px); }
.section-heading p,
.wallet-copy p,
.cta-card p { margin: 18px 0 0; color: #4f5957; font-size: 18px; }

.moment-board {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 20px;
  padding: 20px;
  border-radius: 38px;
  background: #1b1b1b;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.board-main,
.board-side { min-width: 0; }
.board-main {
  position: relative;
  padding: 34px;
  border-radius: 28px;
  color: #fff;
  background:
    radial-gradient(circle at 86% 8%, rgba(204,230,102,.22), transparent 28%),
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  border: 1px solid rgba(255,255,255,.1);
}

.card-topline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--lime);
  font-weight: 900;
}
.status-dot { width: 12px; height: 12px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 0 8px rgba(204,230,102,.14); }
.board-main h3 { max-width: 760px; margin: 20px 0 0; font-size: clamp(30px, 4vw, 50px); line-height: 1.02; letter-spacing: -.035em; }
html[dir="rtl"] .board-main h3 { line-height: 1.18; }
.board-main p { max-width: 710px; margin: 16px 0 0; color: rgba(255,255,255,.72); font-size: 17px; }

.event-list {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}
.event-list article {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  min-height: 86px;
  padding: 14px 16px;
  border-radius: 22px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  transition: transform .22s ease, background .22s ease;
}
html[dir="rtl"] .event-list article { grid-template-columns: 58px minmax(0, 1fr); }
.event-list article:hover { transform: translateX(6px); background: rgba(255,255,255,.1); }
html[dir="rtl"] .event-list article:hover { transform: translateX(-6px); }
.event-list img { width: 58px; height: 58px; padding: 10px; border-radius: 18px; background: var(--lime); }
.event-list strong, .event-list span { display: block; }
.event-list strong { font-size: 18px; line-height: 1.2; }
.event-list span { margin-top: 3px; color: rgba(255,255,255,.72); }

.board-side {
  display: grid;
  gap: 16px;
}
.insight-card {
  display: grid;
  align-content: start;
  min-height: 170px;
  padding: 22px;
  border-radius: 28px;
  overflow: hidden;
}
.insight-card img { width: 54px; height: 54px; padding: 9px; border-radius: 17px; margin-bottom: 18px; }
.insight-card strong { display: block; font-size: 22px; line-height: 1.12; }
.insight-card span { display: block; margin-top: 8px; color: rgba(23,23,23,.68); font-weight: 650; }
.lime-card { background: var(--lime); color: var(--ink); }
.lime-card img { background: rgba(255,255,255,.45); }
.light-card { background: #fff; color: var(--ink); }
.light-card img { background: var(--lime-3); }
.dark-mini-card { background: rgba(255,255,255,.08); color: #fff; border: 1px solid rgba(255,255,255,.1); }
.dark-mini-card img { background: var(--lime); }
.dark-mini-card span { color: rgba(255,255,255,.72); }

.occasion-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 20px;
}
.occasion-grid article {
  overflow: hidden;
  border-radius: 28px;
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(23,23,23,.08);
  box-shadow: var(--shadow-soft);
  transition: transform .24s ease, box-shadow .24s ease;
}
.occasion-art {
  display: grid;
  place-items: center;
  height: 178px;
  background:
    radial-gradient(circle at 50% 30%, rgba(255,255,255,.48), transparent 28%),
    linear-gradient(135deg, #f6f3e8, #dce9ad);
}
.graduation-art { background: linear-gradient(135deg, #212121, #566329); }
.family-art { background: linear-gradient(135deg, #e7f2b8, #fff9e7); }
.occasion-art img { width: 88px; height: 88px; padding: 14px; border-radius: 28px; background: var(--lime); box-shadow: 0 16px 36px rgba(23,23,23,.18); }
.occasion-grid article > div:not(.occasion-art) { padding: 22px 22px 4px; }
.badge { display: inline-flex; padding: 6px 10px; border-radius: 99px; background: var(--ink); color: #fff; font-size: 12px; font-weight: 900; }
.occasion-grid h3 { margin: 14px 0 6px; font-size: 22px; line-height: 1.12; }
.occasion-grid p { margin: 0; color: var(--muted); }
.occasion-grid a { display: inline-flex; margin: 18px 22px 22px; padding: 10px 16px; border-radius: 99px; background: var(--lime); font-weight: 900; }

.wallet-section {
  padding: 78px 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(204,230,102,.22), transparent 34%),
    #111;
  color: #fff;
}

.wallet-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(410px, 1fr);
  align-items: center;
  gap: 46px;
}
.wallet-copy p { color: rgba(255,255,255,.72); }
.check-list { list-style: none; margin: 28px 0 0; padding: 0; display: grid; gap: 14px; }
.check-list li { position: relative; padding-inline-start: 34px; color: rgba(255,255,255,.86); font-weight: 750; }
html[dir="rtl"] .check-list li { padding-inline-start: 0; padding-inline-end: 34px; }
.check-list li::before {
  content: "✓";
  position: absolute;
  inset-inline-start: 0;
  top: 0;
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 99px;
  background: var(--lime);
  color: var(--ink);
  font-size: 14px;
  font-weight: 950;
}
html[dir="rtl"] .check-list li::before { inset-inline-start: auto; inset-inline-end: 0; }

.wallet-panel {
  position: relative;
  padding: 24px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 100% 0%, rgba(204,230,102,.18), transparent 28%),
    rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 26px 80px rgba(0,0,0,.26);
}
.balance-card,
.security-card,
.transaction-list article {
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.92);
  color: var(--ink);
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
}
.balance-card { display: grid; gap: 6px; padding: 24px; }
.balance-card span { color: var(--muted); font-weight: 850; }
.balance-card strong { font-size: 46px; line-height: 1; letter-spacing: -.04em; }
.balance-card button { justify-self: start; margin-top: 10px; padding: 10px 16px; border: 0; border-radius: 99px; background: var(--lime); font-weight: 900; font-family: inherit; }
html[dir="rtl"] .balance-card button { justify-self: end; }
.transaction-list { display: grid; gap: 10px; margin: 14px 0; }
.transaction-list article { display: grid; grid-template-columns: 42px 1fr auto; align-items: center; gap: 12px; padding: 12px 14px; }
.transaction-list img { width: 42px; height: 42px; padding: 8px; border-radius: 14px; background: var(--lime-3); }
.transaction-list span { font-weight: 850; }
.transaction-list b { color: #596d06; font-size: 14px; }
.security-card { display: grid; grid-template-columns: 54px 1fr; gap: 14px; align-items: center; padding: 18px; }
.security-card img { width: 54px; height: 54px; padding: 10px; border-radius: 18px; background: var(--lime); }
.security-card strong, .security-card span { display: block; }
.security-card span { color: var(--muted); margin-top: 2px; }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.steps-grid article {
  min-height: 230px;
  padding: 24px;
  border-radius: 28px;
  background: #fff;
  border: 1px solid rgba(23,23,23,.08);
  box-shadow: var(--shadow-soft);
  transition: transform .24s ease, box-shadow .24s ease;
}
.steps-grid span { display: inline-flex; margin-bottom: 34px; color: #6f8114; font-weight: 950; }
.steps-grid h3 { margin: 0 0 10px; font-size: 22px; line-height: 1.1; }
.steps-grid p { margin: 0; color: var(--muted); }

.cta-section {
  position: relative;
  padding: 118px 0 82px;
}

.cta-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) auto;
  align-items: center;
  gap: 42px;
  min-height: 340px;
  padding: 44px 38px;
  border-radius: 36px;
  background:
    radial-gradient(circle at 14% 52%, rgba(255,255,255,.24), transparent 28%),
    radial-gradient(circle at 54% 14%, rgba(163, 196, 55, .22), transparent 20%),
    linear-gradient(135deg, #d9f06b 0%, #cff06f 44%, #d9ef85 100%);
  box-shadow: 0 24px 60px rgba(53, 61, 10, .10);
  overflow: hidden;
  isolation: isolate;
}

.cta-card::before,
.cta-card::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.cta-card::before {
  width: 280px;
  height: 280px;
  left: -148px;
  bottom: -108px;
  background: radial-gradient(circle, rgba(255,255,255,.28), rgba(255,255,255,.08) 45%, transparent 68%);
}

.cta-card::after {
  width: 340px;
  height: 340px;
  right: -84px;
  top: -124px;
  background: radial-gradient(circle, rgba(255,255,255,.26), rgba(255,255,255,.08) 45%, transparent 72%);
}

.cta-card.cta-visible {
  opacity: 1;
  visibility: visible;
}

.cta-copy {
  position: relative;
  z-index: 1;
}

.cta-copy .section-kicker {
  margin-bottom: 18px;
  color: #657816;
}

.cta-card h2 {
  max-width: 760px;
}

.cta-card p {
  max-width: 760px;
  margin-top: 18px;
  font-size: 17px;
  line-height: 1.6;
  color: #556056;
}

.cta-actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-self: start;
  gap: 14px;
  padding-top: 74px;
}

html[dir="rtl"] .cta-actions {
  justify-content: flex-start;
}

.cta-actions .btn {
  min-width: 164px;
  justify-content: center;
  box-shadow: 0 16px 30px rgba(17,17,17,.10);
}

.site-footer {
  padding: 54px 0 28px;
  background: #111;
  color: #fff;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 34px;
}
.footer-brand img { width: 128px; margin-bottom: 18px; }
.footer-brand p { max-width: 360px; color: rgba(255,255,255,.64); margin: 0; }
.site-footer h4 { margin: 0 0 14px; color: var(--lime); }
.site-footer a { display: block; width: max-content; margin-top: 8px; color: rgba(255,255,255,.7); font-weight: 650; transition: color .2s ease; }
.site-footer a:hover { color: #fff; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 44px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.58);
}
.footer-socials { color: var(--lime); letter-spacing: 8px; }

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .12s; }
.delay-2 { transition-delay: .2s; }

@keyframes floatY {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-14px) rotate(4deg); }
}
@keyframes pulseGlow {
  0%, 100% { transform: scale(0.96); opacity: .7; }
  50% { transform: scale(1.04); opacity: 1; }
}
@keyframes orbitTurn {
  to { rotate: 360deg; }
}
.float-slow { animation: floatY 5.6s ease-in-out infinite; }
.float-medium { animation: floatY 4.6s ease-in-out infinite .4s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 1080px) {
  .hero-grid,
  .wallet-grid { grid-template-columns: 1fr; }
  .hero-visual { min-height: 490px; }
  .feature-strip-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .moment-board { grid-template-columns: 1fr; }
  .board-side { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .steps-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .wallet-grid { gap: 32px; }
}

@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .nav-shell { position: relative; }
  .nav-links,
  .nav-actions {
    display: none;
    position: absolute;
    inset-inline: 0;
    top: calc(100% + 10px);
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 16px;
    border-radius: 24px;
    background: rgba(255,255,255,.96);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
  }
  .nav-actions { top: calc(100% + 260px); }
  .menu-open .nav-links,
  .menu-open .nav-actions { display: flex; }
  .nav-links a,
  .nav-actions a,
  .lang-switch { justify-content: center; text-align: center; width: 100%; }
  .hero-section { padding-top: 54px; }
  .feature-strip-grid,
  .occasion-grid,
  .board-side,
  .footer-grid { grid-template-columns: 1fr; }
  .cta-section { padding: 78px 0 70px; }
  .cta-card { grid-template-columns: 1fr; min-height: auto; gap: 24px; padding: 34px 24px; }
  .cta-actions { justify-content: flex-start; padding-top: 0; }
  html[dir="rtl"] .cta-actions { justify-content: flex-end; }
  .wallet-panel { padding: 16px; }
  .footer-bottom { flex-direction: column; }
}

@media (max-width: 600px) {
  .section-shell,
  .nav-shell { width: min(100% - 28px, var(--container)); }
  .hero-copy h1 { font-size: clamp(42px, 14vw, 58px); }
  .section-heading h2,
  .wallet-copy h2,
  .cta-section { padding: 58px 0 56px; }
  .cta-card h2 { font-size: clamp(34px, 11vw, 48px); }
  .hero-actions,
  .cta-actions { flex-direction: column; }
  .btn { width: 100%; }
  .hero-visual { min-height: 430px; transform: scale(.9); transform-origin: center; margin: -20px 0; }
  .moment-board { padding: 12px; border-radius: 28px; }
  .board-main { padding: 24px; }
  .event-list article { grid-template-columns: 48px 1fr; }
  .event-list img { width: 48px; height: 48px; }
  .steps-grid { grid-template-columns: 1fr; }
  .transaction-list article { grid-template-columns: 38px 1fr; }
  .transaction-list b { grid-column: 2; }
}

/* Added brand image integration section */
.brand img { width: 136px; max-height: 52px; object-fit: contain; }
html[dir="rtl"] .brand img { width: 132px; }

.hero-brand-stamp {
  opacity: .72;
  position: absolute;
  inset-inline-end: -10px;
  top: 52px;
  width: 118px;
  opacity: .16;
  filter: drop-shadow(0 18px 28px rgba(204,230,102,.18));
  transform: rotate(7deg);
  pointer-events: none;
  animation: softDrift 7s ease-in-out infinite;
}
html[dir="rtl"] .hero-brand-stamp {
  opacity: .72; inset-inline-end: auto; inset-inline-start: -10px; transform: rotate(-7deg); }

.brand-showcase {
  margin-top: 28px;
  scroll-margin-top: 110px;
}

.showcase-grid {
  display: grid;
  grid-template-columns: minmax(330px, .78fr) minmax(0, 1.22fr);
  gap: 22px;
  align-items: stretch;
  padding: 18px;
  border-radius: 38px;
  background:
    radial-gradient(circle at 12% 20%, rgba(204,230,102,.26), transparent 24%),
    linear-gradient(135deg, rgba(255,255,255,.95), rgba(246,248,234,.86));
  border: 1px solid rgba(23,23,23,.08);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  position: relative;
}

.showcase-grid::before {
  content: "";
  position: absolute;
  inset-inline-start: -80px;
  bottom: -80px;
  width: 220px;
  height: 220px;
  border-radius: 999px;
  background: rgba(204,230,102,.24);
  filter: blur(2px);
}

.showcase-copy {
  position: relative;
  z-index: 1;
  min-width: 0;
  padding: 24px;
  border-radius: 28px;
  background: rgba(255,255,255,.62);
  border: 1px solid rgba(23,23,23,.06);
}

.showcase-copy h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 56px);
  line-height: .98;
  letter-spacing: -.05em;
}
html[dir="rtl"] .showcase-copy h2 { line-height: 1.18; letter-spacing: -.025em; }
.showcase-copy p {
  margin: 16px 0 0;
  color: #4f5957;
  font-size: 17px;
}

.showcase-logo-row {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
  padding: 10px 14px;
  border-radius: 999px;
  background: #111;
  color: rgba(255,255,255,.82);
  font-weight: 850;
  font-size: 13px;
  box-shadow: 0 14px 34px rgba(23,23,23,.14);
}
.showcase-logo-row img { width: 86px; height: 28px; object-fit: contain; }
html[dir="rtl"] .showcase-logo-row img { content: url('./assets/brand/logo-ar-lime.png'); width: 92px; }

.showcase-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 24px;
}
.showcase-points article {
  min-height: 96px;
  padding: 14px;
  border-radius: 18px;
  background: rgba(204,230,102,.32);
  border: 1px solid rgba(23,23,23,.07);
}
.showcase-points strong,
.showcase-points span { display: block; }
.showcase-points strong { font-size: 18px; line-height: 1.05; }
.showcase-points span { margin-top: 6px; color: var(--muted); font-size: 13px; font-weight: 700; line-height: 1.35; }

.showcase-media {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 16px;
  min-width: 0;
}
.showcase-card {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  border-radius: 30px;
  background: #111;
  box-shadow: 0 24px 56px rgba(23,23,23,.18);
  transform: translateZ(0);
}
.showcase-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(0,0,0,.72), transparent 46%),
    radial-gradient(circle at 82% 16%, rgba(204,230,102,.2), transparent 28%);
  pointer-events: none;
}
.showcase-card img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform .55s ease, filter .55s ease;
}
.showcase-card:hover img { transform: scale(1.06); filter: saturate(1.05) contrast(1.02); }
.showcase-card div {
  position: absolute;
  inset-inline: 20px;
  bottom: 18px;
  z-index: 2;
  padding: 16px;
  border-radius: 22px;
  color: #fff;
  background: rgba(17,17,17,.66);
  border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(14px);
}
.showcase-card strong,
.showcase-card span { display: block; }
.showcase-card strong { color: var(--lime); font-size: 18px; line-height: 1.12; }
.showcase-card span { margin-top: 6px; color: rgba(255,255,255,.78); font-size: 14px; line-height: 1.4; }
.showcase-card-small { min-height: 360px; }

@keyframes softDrift {
  0%, 100% { translate: 0 0; opacity: .14; }
  50% { translate: 0 -12px; opacity: .22; }
}

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

@media (max-width: 860px) {
  .brand img { width: 118px; }
  .hero-brand-stamp {
  opacity: .72; width: 94px; opacity: .12; }
  .showcase-media,
  .showcase-points { grid-template-columns: 1fr; }
  .showcase-card,
  .showcase-card img { min-height: 300px; }
}

@media (max-width: 600px) {
  .showcase-grid { padding: 12px; border-radius: 28px; }
  .showcase-copy { padding: 20px; }
  .showcase-card,
  .showcase-card img { min-height: 260px; }
  .showcase-card div { inset-inline: 14px; bottom: 14px; padding: 14px; }
  .showcase-logo-row { border-radius: 22px; align-items: flex-start; flex-direction: column; }
}

/* =========================================================
   Final booth-only showcase refinement
   Uses only the approved Lbbak booth image and gives the
   component a cleaner premium layout.
   ========================================================= */
.showcase-grid {
  grid-template-columns: minmax(320px, .72fr) minmax(0, 1.28fr);
  gap: 26px;
  padding: 22px;
  background:
    radial-gradient(circle at 8% 12%, rgba(204,230,102,.28), transparent 26%),
    radial-gradient(circle at 92% 86%, rgba(118,73,160,.12), transparent 30%),
    linear-gradient(135deg, rgba(255,255,255,.98), rgba(247,249,238,.92));
}

.showcase-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
  background:
    linear-gradient(180deg, rgba(255,255,255,.88), rgba(255,255,255,.62));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.75);
}

.single-showcase-media {
  display: block;
}

.showcase-feature-card {
  min-height: 430px;
  height: 100%;
  border-radius: 34px;
  border: 1px solid rgba(255,255,255,.16);
  background:
    linear-gradient(145deg, rgba(17,17,17,1), rgba(35,35,35,1));
  box-shadow:
    0 30px 70px rgba(23,23,23,.25),
    0 0 0 8px rgba(204,230,102,.06);
}

.showcase-feature-card::before {
  content: "";
  position: absolute;
  inset: 12px;
  z-index: 2;
  border-radius: 26px;
  border: 1px solid rgba(204,230,102,.24);
  pointer-events: none;
}

.showcase-feature-card::after {
  background:
    linear-gradient(90deg, rgba(0,0,0,.84), rgba(0,0,0,.18) 42%, rgba(0,0,0,.7)),
    linear-gradient(to top, rgba(0,0,0,.72), transparent 42%),
    radial-gradient(circle at 86% 18%, rgba(204,230,102,.32), transparent 26%);
}

html[dir="rtl"] .showcase-feature-card::after {
  background:
    linear-gradient(270deg, rgba(0,0,0,.84), rgba(0,0,0,.18) 42%, rgba(0,0,0,.7)),
    linear-gradient(to top, rgba(0,0,0,.72), transparent 42%),
    radial-gradient(circle at 14% 18%, rgba(204,230,102,.32), transparent 26%);
}

.showcase-feature-card img {
  min-height: 430px;
  object-position: center center;
  filter: saturate(1.04) contrast(1.03);
}

.showcase-feature-card:hover img {
  transform: scale(1.035);
  filter: saturate(1.12) contrast(1.05);
}

.showcase-overlay {
  inset-inline: 28px !important;
  bottom: 26px !important;
  max-width: min(520px, calc(100% - 56px));
  padding: 20px 22px !important;
  border-radius: 26px !important;
  background: rgba(12,12,12,.74) !important;
  border: 1px solid rgba(204,230,102,.28) !important;
  box-shadow: 0 20px 50px rgba(0,0,0,.28);
}

.showcase-pill {
  display: inline-flex !important;
  width: fit-content;
  margin-bottom: 10px;
  padding: 7px 11px;
  border-radius: 999px;
  background: var(--lime);
  color: #111 !important;
  font-size: 12px !important;
  line-height: 1;
  font-weight: 950;
  letter-spacing: .01em;
}

.showcase-feature-card strong {
  font-size: clamp(20px, 2vw, 28px);
  color: #fff;
}

.showcase-feature-card .showcase-overlay > span:last-child {
  max-width: 460px;
  color: rgba(255,255,255,.82);
}

.showcase-points article {
  transition: transform .25s ease, background .25s ease, border-color .25s ease;
}
.showcase-points article:hover {
  transform: translateY(-4px);
  background: rgba(204,230,102,.42);
  border-color: rgba(23,23,23,.12);
}

@media (max-width: 1080px) {
  .showcase-grid { grid-template-columns: 1fr; }
  .single-showcase-media { display: block; }
  .showcase-feature-card, .showcase-feature-card img { min-height: 390px; }
}

@media (max-width: 600px) {
  .showcase-feature-card, .showcase-feature-card img { min-height: 320px; }
  .showcase-overlay {
    inset-inline: 18px !important;
    bottom: 18px !important;
    max-width: calc(100% - 36px);
    padding: 16px !important;
  }
}

/* =========================================================
   Futuristic interaction layer
   GSAP-enhanced but safe with CSS fallbacks.
   ========================================================= */
.scroll-progress {
  position: fixed;
  inset-inline-start: 0;
  top: 0;
  z-index: 9999;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--lime), #ffffff, var(--lime));
  box-shadow: 0 0 18px rgba(204,230,102,.72);
  transform: scaleX(0);
  transform-origin: left center;
  pointer-events: none;
}
html[dir="rtl"] .scroll-progress { transform-origin: right center; }

.cursor-glow {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 9998;
  width: 260px;
  height: 260px;
  border-radius: 999px;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(circle, rgba(204,230,102,.34), rgba(204,230,102,.12) 38%, transparent 68%);
  filter: blur(8px);
  mix-blend-mode: multiply;
  transform: translate3d(-50%, -50%, 0);
  transition: opacity .25s ease;
}
body.has-pointer .cursor-glow { opacity: .72; }

.energy-grid {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: .13;
  background-image:
    linear-gradient(rgba(204,230,102,.58) 1px, transparent 1px),
    linear-gradient(90deg, rgba(204,230,102,.58) 1px, transparent 1px);
  background-size: 76px 76px;
  mask-image: radial-gradient(circle at 50% 18%, black, transparent 62%);
  animation: gridFlow 18s linear infinite;
}

.hero-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.hero-aurora {
  position: absolute;
  inset: -22% -12% auto;
  height: 620px;
  z-index: -1;
  pointer-events: none;
  opacity: .55;
  background:
    radial-gradient(circle at var(--mx, 52%) var(--my, 42%), rgba(204,230,102,.34), transparent 24%),
    radial-gradient(circle at 72% 30%, rgba(118,73,160,.13), transparent 28%),
    conic-gradient(from 140deg at 50% 50%, transparent, rgba(204,230,102,.22), transparent, rgba(255,255,255,.18), transparent);
  filter: blur(18px);
  animation: auroraSpin 18s linear infinite;
}

.hero-visual,
.showcase-feature-card,
.wallet-panel,
.moment-board,
.cta-card { transform-style: preserve-3d; }

.hero-visual .float-icon,
.wallet-hero-card,
.gift-cube,
.hero-brand-stamp {
  opacity: .72;
  will-change: transform, opacity;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 18% 6% 12%;
  z-index: -1;
  border-radius: 42px;
  background:
    radial-gradient(circle, rgba(204,230,102,.28) 1px, transparent 1.5px),
    linear-gradient(135deg, rgba(255,255,255,.34), rgba(204,230,102,.12));
  background-size: 24px 24px, auto;
  border: 1px solid rgba(204,230,102,.16);
  transform: perspective(900px) rotateX(62deg) rotateZ(-12deg) translateY(60px);
  opacity: .45;
  animation: holoGridPulse 4.5s ease-in-out infinite;
}

.spark-particle {
  position: absolute;
  z-index: 4;
  width: var(--size, 6px);
  height: var(--size, 6px);
  left: var(--left, 50%);
  top: var(--top, 50%);
  border-radius: 999px;
  background: var(--lime);
  box-shadow: 0 0 14px rgba(204,230,102,.9), 0 0 34px rgba(204,230,102,.42);
  opacity: .75;
  pointer-events: none;
  animation: particleFloat var(--duration, 6s) ease-in-out infinite;
  animation-delay: var(--delay, 0s);
}
.spark-particle::after {
  content: "";
  position: absolute;
  inset: 35% -160%;
  background: linear-gradient(90deg, transparent, rgba(204,230,102,.88), transparent);
  transform: rotate(28deg);
}

.showcase-feature-card {
  overflow: hidden;
  will-change: transform;
}
.showcase-scanline {
  position: absolute;
  inset-inline: 14px;
  top: -26%;
  z-index: 3;
  height: 150px;
  pointer-events: none;
  border-radius: 999px;
  background: linear-gradient(to bottom, transparent, rgba(204,230,102,.18), rgba(255,255,255,.28), transparent);
  filter: blur(2px);
  mix-blend-mode: screen;
  animation: scanDown 5.8s cubic-bezier(.65,0,.2,1) infinite;
}
.showcase-corner {
  position: absolute;
  z-index: 4;
  width: 72px;
  height: 72px;
  pointer-events: none;
  opacity: .9;
}
.corner-one {
  inset-inline-start: 26px;
  top: 26px;
  border-top: 2px solid rgba(204,230,102,.72);
  border-inline-start: 2px solid rgba(204,230,102,.72);
  border-start-start-radius: 18px;
}
.corner-two {
  inset-inline-end: 26px;
  bottom: 26px;
  border-bottom: 2px solid rgba(204,230,102,.72);
  border-inline-end: 2px solid rgba(204,230,102,.72);
  border-end-end-radius: 18px;
}

.showcase-feature-card img {
  transform-origin: center;
  will-change: transform, filter;
}
.showcase-feature-card:hover .showcase-overlay {
  border-color: rgba(204,230,102,.48) !important;
  box-shadow: 0 24px 64px rgba(0,0,0,.38), inset 0 1px 0 rgba(255,255,255,.12);
}

[data-parallax-zone] { --px: 0; --py: 0; }
.hero-visual[data-parallax-zone] .wallet-hero-card { transform: translate3d(calc(var(--px) * 10px), calc(var(--py) * 8px), 34px); }
.hero-visual[data-parallax-zone] .gift-cube { transform: translate3d(calc(var(--px) * -16px), calc(var(--py) * -11px), 58px); }
.hero-visual[data-parallax-zone] .icon-gift { transform: translate3d(calc(var(--px) * -22px), calc(var(--py) * 14px), 62px); }
.hero-visual[data-parallax-zone] .icon-wallet { transform: translate3d(calc(var(--px) * 16px), calc(var(--py) * -14px), 62px); }

.magnetic-active,
.tilt-active {
  will-change: transform;
}

.btn,
.lang-switch,
.occasion-grid article,
.steps-grid article,
.insight-card,
.showcase-points article,
.transaction-list article {
  backface-visibility: hidden;
}

.occasion-grid article:hover,
.steps-grid article:hover,
.insight-card:hover,
.transaction-list article:hover {
  box-shadow: 0 26px 70px rgba(23,23,23,.14), 0 0 0 1px rgba(204,230,102,.34);
}

.wallet-panel::before {
  content: "";
  position: absolute;
  inset: 12px;
  z-index: -1;
  border-radius: 28px;
  background:
    linear-gradient(120deg, transparent, rgba(204,230,102,.18), transparent),
    radial-gradient(circle at 20% 20%, rgba(204,230,102,.12), transparent 30%);
  animation: sheenMove 6s ease-in-out infinite;
}

.balance-card strong {
  position: relative;
  display: inline-block;
  text-shadow: 0 0 18px rgba(204,230,102,.22);
}

.step-line {
  position: absolute;
  pointer-events: none;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(204,230,102,.74), transparent);
  transform-origin: left center;
}

@keyframes gridFlow {
  from { background-position: 0 0, 0 0; }
  to { background-position: 76px 76px, 76px 76px; }
}
@keyframes auroraSpin {
  0% { transform: rotate(0deg) scale(1); }
  50% { transform: rotate(7deg) scale(1.05); }
  100% { transform: rotate(0deg) scale(1); }
}
@keyframes holoGridPulse {
  0%, 100% { opacity: .28; filter: blur(0); }
  50% { opacity: .54; filter: blur(.5px); }
}
@keyframes particleFloat {
  0%, 100% { transform: translate3d(0,0,0) scale(.8); opacity: .28; }
  42% { transform: translate3d(var(--driftX, 16px), var(--driftY, -28px), 0) scale(1); opacity: .95; }
  72% { transform: translate3d(calc(var(--driftX, 16px) * -.6), calc(var(--driftY, -28px) * .45), 0) scale(.7); opacity: .5; }
}
@keyframes scanDown {
  0% { transform: translateY(-20%); opacity: 0; }
  12% { opacity: .9; }
  58% { opacity: .62; }
  100% { transform: translateY(520%); opacity: 0; }
}
@keyframes sheenMove {
  0%, 100% { transform: translateX(-12%) skewX(-8deg); opacity: .42; }
  50% { transform: translateX(12%) skewX(-8deg); opacity: .85; }
}

@media (max-width: 860px) {
  .cursor-glow { display: none; }
  .hero-aurora { opacity: .36; }
  .showcase-corner { width: 52px; height: 52px; }
}

@media (prefers-reduced-motion: reduce) {
  .scroll-progress { transition: none !important; }
  .cursor-glow,
  .three-scene,
  .energy-grid,
  .hero-aurora,
  .spark-particle,
  .lbbak-holo-ring,
  .showcase-scanline { display: none !important; }
  .showcase-feature-card,
  .wallet-panel,
  .occasion-grid article,
  .steps-grid article,
  .insight-card { transform: none !important; }
}


html[dir="rtl"] .hero-highlight-badge {
  inset-inline-start: auto;
  inset-inline-end: 22px;
}

@media (max-width: 980px) {
  .hero-highlight-panel {
    width: min(430px, 100%);
    min-height: 390px;
    padding: 30px 22px 36px;
  }

  .gift-cube {
    width: 118px;
    height: 118px;
    inset-inline-end: 22px;
    bottom: 16px;
  }
}

@media (max-width: 640px) {
  .hero-highlight-panel {
    width: 100%;
    min-height: 360px;
    border-radius: 30px;
    padding: 28px 18px 28px;
  }

  .wallet-hero-card {
    width: min(350px, 100%);
    min-height: 245px;
    padding: 22px;
  }

  .wallet-hero-card strong {
    max-width: 240px;
    font-size: 20px;
  }

  .gift-cube {
    width: 102px;
    height: 102px;
    border-radius: 22px;
    inset-inline-end: 10px;
    bottom: 8px;
  }

}


/* Final hero visual visibility guard */
.hero-section .hero-visual,
.hero-section .hero-highlight-panel,
.hero-section .wallet-hero-card,
.hero-section .gift-cube {
  visibility: visible;
}

.hero-section .hero-visual:not(.reveal) {
  opacity: 1;
}

@media (min-width: 1081px) {
  .hero-section .hero-visual {
    display: grid !important;
    min-width: 430px;
  }
}
