/* ==========================================================================
   MAXSCAN 750 — Landing Page (Section 1: Header + Hero)
   Reuses css/tokens.css (dark_theme colors) but overrides the font stack:
   Cairo for Arabic (instead of tokens.css's Tajawal) and Jost for Latin/
   numerals — both self-hosted locally (see assets/fonts/) for reliability,
   same reasoning as the local Tajawal setup. Full-width desktop layout —
   intentionally does NOT include base.css (which pins the mobile 480px frame
   used by the app-simulation screens).
   ========================================================================== */

@font-face {
  font-family: 'Cairo';
  font-style: normal;
  font-weight: 200 900;
  font-display: swap;
  src: url('../../assets/fonts/cairo/Cairo-Arabic.woff2') format('woff2');
  unicode-range: U+0600-06FF, U+0750-077F, U+FB50-FDFF, U+FE70-FEFC, U+200C-200E;
}
@font-face {
  font-family: 'Cairo';
  font-style: normal;
  font-weight: 200 900;
  font-display: swap;
  src: url('../../assets/fonts/cairo/Cairo-Latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+2000-206F, U+20AC, U+2122;
}
@font-face {
  font-family: 'Jost';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('../../assets/fonts/jost/Jost-VariableFont.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+2000-206F, U+20AC, U+2122;
}

:root {
  --lp-bg: #05070a;
  --lp-bg-alt: #0a0e14;
  --lp-gold: #f5b942;
  --lp-gold-soft: #ffe3a3;
  --lp-text-dim: #a9a29b;
  --lp-border: rgba(255, 255, 255, 0.1);
  --lp-maxw: 1180px;
  --font-family: 'Cairo', -apple-system, 'Segoe UI', sans-serif;
  --font-numeral: 'Jost', -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
  --reveal-ease: cubic-bezier(.16, 1, .3, 1);
  --reveal-stagger: 80ms;
}

* { box-sizing: border-box; -webkit-tap-highlight-color: transparent; }

html { background: var(--lp-bg); }

body {
  margin: 0;
  max-width: none;
  min-height: 100vh;
  overflow-x: hidden;
  background: var(--lp-bg);
  color: #eef2f6;
  font-family: var(--font-family);
  line-height: 1.65;
}

img, svg { display: block; max-width: 100%; }
button { font-family: inherit; border: none; background: none; color: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; }

/* ---------------------------- loading animation ---------------------------- */
.page-loader {
  position: fixed; inset: 0; z-index: 500; background: var(--lp-bg);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 22px;
  transition: opacity .5s ease, visibility .5s ease;
}
.page-loader__logo { height: 46px; width: auto; animation: loaderPulse 1.4s ease-in-out infinite; }
.page-loader__bar { width: 160px; height: 3px; border-radius: 999px; background: rgba(255,255,255,0.1); overflow: hidden; }
.page-loader__bar span { display: block; height: 100%; width: 40%; background: linear-gradient(90deg, var(--lp-gold), var(--lp-gold-soft)); animation: loaderSlide 1.1s ease-in-out infinite; }
.page-loader.is-hidden { opacity: 0; visibility: hidden; pointer-events: none; }
@keyframes loaderPulse { 0%, 100% { opacity: .6; transform: scale(.96); } 50% { opacity: 1; transform: scale(1); } }
@keyframes loaderSlide { 0% { transform: translateX(-120%); } 100% { transform: translateX(360%); } }

.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 6px 16px;
  border-radius: 999px;
  border: 1px solid var(--lp-border);
  margin-bottom: 18px;
}
.eyebrow--gold { color: var(--lp-gold-soft); border-color: rgba(245, 185, 66, 0.4); background: rgba(245, 185, 66, 0.08); }

/* ---------------------------- buttons ---------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-weight: 700; font-size: 15px; border-radius: 999px; padding: 14px 30px;
  transition: transform .2s var(--ease-spring), box-shadow .2s ease, opacity .2s ease;
  cursor: pointer;
}
.btn--gold { background: linear-gradient(135deg, var(--lp-gold-soft), var(--lp-gold) 60%, #c98a1e); color: #1a1002; box-shadow: 0 8px 30px -8px rgba(245, 185, 66, 0.55); }
.btn--gold:hover { transform: translateY(-2px); box-shadow: 0 12px 40px -8px rgba(245, 185, 66, 0.75); }
.btn--lg { padding: 17px 40px; font-size: 17px; }
.btn--sm { padding: 9px 18px; font-size: 13px; }
.btn--block { width: 100%; }

/* ---------------------------- header ---------------------------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 60;
  background: rgba(5, 7, 10, 0.55);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--lp-border);
  transition: background .3s ease, padding .3s ease;
}
.site-header.is-scrolled { background: rgba(5, 7, 10, 0.92); }
.site-header__inner { max-width: var(--lp-maxw); margin: 0 auto; padding: 14px 28px; display: flex; flex-direction: row-reverse; align-items: center; gap: 28px; }
.site-header__logo { height: 34px; width: auto; }
.site-header__nav { display: flex; gap: 22px; margin-left: auto; font-size: 14px; font-weight: 500; color: #d7dee6; }
.site-header__nav a:hover { color: var(--lp-gold-soft); }
.site-header__nav a.is-active { color: var(--lp-gold-soft); }
.site-header__tools { display: flex; flex-direction: row-reverse; align-items: center; gap: 10px; }
.tool-pill { display: flex; align-items: center; gap: 6px; font-size: 13px; padding: 7px 12px; border-radius: 999px; border: 1px solid var(--lp-border); color: #cfd6dd; }
.tool-pill svg { width: 14px; height: 14px; }
.icon-btn { position: relative; width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--lp-border); display: grid; place-items: center; }
.icon-btn svg { width: 18px; height: 18px; }
.icon-btn__badge { position: absolute; top: -4px; left: -4px; background: var(--lp-gold); color: #1a1002; font-size: 10px; font-weight: 800; border-radius: 999px; padding: 1px 5px; }
.site-header__burger { display: none; flex-direction: column; gap: 4px; width: 24px; }
.site-header__burger span { height: 2px; background: #fff; border-radius: 2px; }

/* ---------------------------- hero ---------------------------- */
.hero { position: relative; padding: 150px 0 60px; overflow: hidden; background: var(--lp-bg); }
.hero__starfield {
  position: absolute; inset: -6% -6% -6% -6%; z-index: 0;
  background:
    radial-gradient(1.5px 1.5px at 8% 22%, #ffffff99, transparent),
    radial-gradient(1px 1px at 18% 68%, #ffffff77, transparent),
    radial-gradient(2px 2px at 27% 12%, #ffffffaa, transparent),
    radial-gradient(1px 1px at 35% 45%, #ffffff66, transparent),
    radial-gradient(1.5px 1.5px at 46% 78%, #ffffff88, transparent),
    radial-gradient(1px 1px at 58% 20%, #ffffff66, transparent),
    radial-gradient(2px 2px at 68% 55%, #ffffff99, transparent),
    radial-gradient(1px 1px at 77% 15%, #ffffff77, transparent),
    radial-gradient(1.5px 1.5px at 88% 40%, #ffffff88, transparent),
    radial-gradient(1px 1px at 94% 70%, #ffffff66, transparent),
    radial-gradient(1.5px 1.5px at 12% 90%, #ffffff77, transparent),
    radial-gradient(1px 1px at 62% 88%, #ffffff55, transparent),
    radial-gradient(1px 1px at 50% 35%, #ffffff55, transparent),
    radial-gradient(1.5px 1.5px at 72% 8%, #ffffff77, transparent),
    var(--lp-bg);
  animation: starDrift 110s linear infinite alternate;
  will-change: transform;
}
@keyframes starDrift {
  0% { transform: translate(0, 0); }
  100% { transform: translate(-3%, -2.5%); }
}
.hero__starfield::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 15%, rgba(245, 185, 66, 0.18), transparent 42%),
    radial-gradient(circle at 82% 70%, rgba(245, 185, 66, 0.14), transparent 48%),
    radial-gradient(circle at 55% 100%, rgba(255, 227, 163, 0.1), transparent 55%);
  animation: nebulaBreathe 16s ease-in-out infinite alternate;
}
@keyframes nebulaBreathe {
  0% { transform: scale(1) translate(0, 0); opacity: .8; }
  100% { transform: scale(1.18) translate(-2%, 1.5%); opacity: 1; }
}
.hero__starfield::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(2px 2px at 15% 30%, #fff, transparent),
    radial-gradient(1.5px 1.5px at 40% 65%, #fff, transparent),
    radial-gradient(2px 2px at 65% 25%, #fff, transparent),
    radial-gradient(1.5px 1.5px at 85% 60%, #fff, transparent),
    radial-gradient(2px 2px at 30% 85%, #fff, transparent),
    radial-gradient(1.5px 1.5px at 92% 15%, #fff, transparent),
    radial-gradient(1.5px 1.5px at 5% 55%, #fff, transparent);
  animation: starTwinkle 4.5s ease-in-out infinite alternate;
}
@keyframes starTwinkle {
  0% { opacity: .1; }
  50% { opacity: .9; }
  100% { opacity: .25; }
}
.hero__inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.5fr 1fr; gap: 40px; align-items: center; max-width: var(--lp-maxw); margin: 0 auto; padding: 0 28px; }

/* ---------------------------- hero boot-in sequence ---------------------------- */
.hero__visual {
  position: relative;
  --boot-scale: .94;
  opacity: 0; transform: scale(var(--boot-scale));
  transition: opacity 1s var(--reveal-ease), transform 1s var(--reveal-ease);
}
.hero__inner.is-booted .hero__visual { opacity: 1; --boot-scale: 1; }
.hero__visual-parallax { will-change: transform; }
.hero__composite { width: 100%; height: auto; animation: floatY 6s ease-in-out infinite; }
@keyframes floatY { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

.hero__copy > * { opacity: 0; transform: translateY(22px); }
.hero__inner.is-booted .hero__copy > * { animation: heroBootIn .85s var(--reveal-ease) forwards; }
.hero__inner.is-booted .hero__copy > *:nth-child(1) { animation-delay: .05s; }
.hero__inner.is-booted .hero__copy > *:nth-child(2) { animation-delay: .17s; }
.hero__inner.is-booted .hero__copy > *:nth-child(3) { animation-delay: .29s; }
.hero__inner.is-booted .hero__copy > *:nth-child(4) { animation-delay: .41s; }
@keyframes heroBootIn { to { opacity: 1; transform: translateY(0); } }

.hero__title { font-family: var(--font-numeral); font-size: clamp(32px, 4.2vw, 60px); font-weight: 700; letter-spacing: .5px; margin: 6px 0 6px; white-space: nowrap; }
.hero__title span { font-family: var(--font-numeral); background: linear-gradient(135deg, var(--lp-gold-soft), var(--lp-gold)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero__tagline { font-size: clamp(18px, 2vw, 24px); font-weight: 700; line-height: 1.4; min-height: 2.8em; margin: 0 0 8px; color: var(--lp-gold-soft); }
.hero__tagline::after {
  content: '';
  display: inline-block;
  width: 2px;
  height: 0.95em;
  margin-inline-start: 3px;
  background: var(--lp-gold-soft);
  vertical-align: -0.15em;
  animation: heroTaglineCursor 900ms steps(1) infinite;
}
@keyframes heroTaglineCursor { 0%, 50% { opacity: 1; } 50.01%, 100% { opacity: 0; } }
@media (prefers-reduced-motion: reduce) {
  .hero__tagline::after { animation: none; opacity: 1; }
}
.hero__desc { color: var(--lp-text-dim); margin: 0 0 26px; font-size: 15px; }

.price-card { border: 1px solid var(--lp-border); border-radius: 12px; background: rgba(255,255,255,0.03); padding: 20px; margin-bottom: 22px; }
.price-card__row { display: flex; border: 1px solid var(--lp-border); border-radius: 8px; overflow: hidden; margin-bottom: 16px; }
.price-card__col { flex: 1; display: flex; flex-direction: column; gap: 6px; padding: 14px 18px; }
.price-card__col--highlight { background: rgba(245, 185, 66, 0.08); border-left: 1px solid var(--lp-border); }
.price-panel__label { font-size: 12px; color: var(--lp-text-dim); }
.price-panel__value { font-family: var(--font-numeral); font-variant-numeric: tabular-nums; font-size: 24px; font-weight: 800; }
.price-panel__value--strike { text-decoration: line-through; color: #7d8994; }
.price-panel__value--gold { color: var(--lp-gold-soft); }
.price-panel__value small { font-size: 12px; font-weight: 300; }

.hero__limited { margin: 14px 0 0; font-size: 13px; color: var(--lp-text-dim); text-align: center; display: flex; align-items: center; justify-content: center; gap: 7px; }
.led-alert {
  width: 8px; height: 8px; border-radius: 50%; background: #ff3b3b; flex-shrink: 0;
  box-shadow: 0 0 0 0 rgba(255, 59, 59, 0.6), 0 0 8px 1px rgba(255, 59, 59, 0.8);
  animation: ledPulse 1.4s ease-in-out infinite;
}
@keyframes ledPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 59, 59, 0.55), 0 0 8px 1px rgba(255, 59, 59, 0.8); }
  50% { box-shadow: 0 0 0 5px rgba(255, 59, 59, 0), 0 0 12px 3px rgba(255, 59, 59, 1); }
}

/* ---------------------------- hero stats strip ---------------------------- */
.hero-stats { position: relative; z-index: 1; background: var(--lp-bg-alt); border-top: 1px solid var(--lp-border); border-bottom: 1px solid var(--lp-border); }
.hero-stats__inner { max-width: var(--lp-maxw); margin: 0 auto; padding: 22px 28px; display: flex; align-items: center; }
.hero-stats__item { display: flex; flex-direction: row-reverse; align-items: center; gap: 12px; flex: 1; color: var(--lp-gold-soft); }
.hero-stats__item--countdown { flex: 1.3; justify-content: center; }
.hero-stats__item svg { width: 30px; height: 30px; flex-shrink: 0; }
.hero-stats__divider { width: 1px; align-self: stretch; background: var(--lp-border); margin: 0 24px; }
.hero-stats__body { display: flex; flex-direction: column; gap: 4px; text-align: right; }
.hero-stats__body--center { align-items: center; text-align: center; }
.hero-stats__label { font-size: 21px; color: var(--lp-text-dim); white-space: nowrap; }
.hero-stats__value { font-size: 15px; font-weight: 700; color: #fff; white-space: nowrap; }
.hero-stats__value .numeral { font-family: var(--font-numeral); font-variant-numeric: tabular-nums; }
.hero-stats__item--units .hero-stats__value { direction: ltr; unicode-bidi: isolate; text-align: right; font-family: var(--font-numeral); font-variant-numeric: tabular-nums; }
.hero-stats__item--units .progress-bar { width: 160px; margin-inline-start: auto; }

.progress-bar { height: 6px; border-radius: 999px; background: rgba(255,255,255,0.1); margin-top: 8px; overflow: hidden; }
.progress-bar__fill { height: 100%; background: linear-gradient(90deg, var(--lp-gold), var(--lp-gold-soft)); border-radius: 999px; transition: width .6s ease; }

.countdown { display: flex; gap: 8px; }
.countdown--plain { direction: ltr; gap: 0; }
.countdown--plain .countdown__cell { background: none; border: none; border-radius: 0; padding: 0 16px; min-width: 0; border-left: 1px solid var(--lp-border); }
.countdown--plain .countdown__cell:first-child { border-left: none; padding-inline-start: 0; }
.countdown--plain .countdown__cell:last-child { padding-inline-end: 0; }
.countdown__cell { background: rgba(0,0,0,0.35); border: 1px solid var(--lp-border); border-radius: 10px; padding: 6px 10px; text-align: center; min-width: 46px; }
.countdown__cell span { display: block; font-family: var(--font-numeral); font-size: 18px; font-weight: 800; font-variant-numeric: tabular-nums; color: var(--lp-gold-soft); }
.countdown--plain .countdown__cell span { color: #fff; font-size: 28px; }
.countdown__cell small { font-size: 10px; color: var(--lp-text-dim); }

/* ---------------------------- reveal-on-scroll ----------------------------
   Generic engine: elements carry data-reveal="up|left|right|scale|pop".
   landing.js observes each and adds .is-inview once, in-place, no re-trigger.
   Wrap a set of siblings in [data-reveal-group] to auto-stagger them —
   landing.js writes --reveal-i per child so the CSS delay formula staggers. */
[data-reveal] {
  opacity: 0;
  transition: opacity .9s var(--reveal-ease), transform .9s var(--reveal-ease), filter .9s var(--reveal-ease);
  transition-delay: calc(var(--reveal-i, 0) * var(--reveal-stagger));
  will-change: transform, opacity;
}
[data-reveal].is-inview { opacity: 1; transform: none; filter: none; }

[data-reveal="up"] { transform: translateY(46px); }
[data-reveal="left"] { transform: translateX(-64px); }
[data-reveal="right"] { transform: translateX(64px); }
[data-reveal="scale"] { transform: scale(.85); transition-timing-function: var(--ease-spring); }
[data-reveal="pop"] { transform: scale(.4) rotate(-10deg); transition-timing-function: var(--ease-spring); }

/* one-shot golden materialize burst once the coupon settles into place */
.coupon-box.is-inview { animation: couponGlowPulse 1.1s ease-out .55s 1; }
@keyframes couponGlowPulse {
  0% { box-shadow: 0 0 0 0 rgba(245, 185, 66, .5); }
  55% { box-shadow: 0 0 44px 10px rgba(245, 185, 66, .35); }
  100% { box-shadow: 0 0 0 0 rgba(245, 185, 66, 0); }
}

/* ---------------------------- generic section ---------------------------- */
.section {
  padding: 90px 0; position: relative; overflow: hidden;
  background: radial-gradient(ellipse 900px 420px at 50% 0%, rgba(245, 185, 66, 0.05), transparent 70%), var(--lp-bg);
}
.section--alt {
  background: radial-gradient(ellipse 900px 420px at 50% 0%, rgba(245, 185, 66, 0.06), transparent 70%), var(--lp-bg-alt);
}
.section__bg {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center 35%;
  filter: brightness(0.5) saturate(1.15) blur(1px);
  animation: stageBgBreathe 9s ease-in-out infinite alternate;
}
@keyframes stageBgBreathe {
  0% { transform: scale(1) translate(0, 0); }
  100% { transform: scale(1.14) translate(-1.5%, -1%); }
}
.section::before {
  content: ""; position: absolute; top: 0; left: 50%;
  width: min(700px, 86%); height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245, 185, 66, 0.7), transparent);
  box-shadow: 0 0 39px 1px rgba(245, 210, 91, 0.45);
  transform: translateX(-50%) scaleX(0); transform-origin: center; opacity: 0;
  transition: transform 1.1s var(--reveal-ease), opacity 1.1s var(--reveal-ease);
}
.section.is-inview::before { transform: translateX(-50%) scaleX(1); opacity: 1; }
.section__inner { position: relative; z-index: 1; max-width: var(--lp-maxw); margin: 0 auto; padding: 0 28px; }
.section__title { font-size: clamp(24px, 3vw, 34px); font-weight: 700; margin: 0 0 10px; }
.section__title--center { text-align: center; }
.section__lead { color: var(--lp-text-dim); font-size: 15px; margin: 0 0 30px; }
.section__lead--center { text-align: center; }

/* ---------------------------- early bird offer ---------------------------- */
.early-bird__lead { color: var(--lp-gold-soft); font-weight: 700; margin-top: -14px; }
.coupon-box {
  display: flex; max-width: 480px; margin: 40px auto 0;
  border-radius: 14px; overflow: hidden;
}
.coupon-box__main {
  flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px;
  border: 1.5px dashed rgba(245, 185, 66, 0.5); border-inline-start: none; border-radius: 14px 0 0 14px;
  background: rgba(245, 185, 66, 0.06); padding: 22px;
}
.coupon-box__code { font-family: var(--font-numeral); font-size: 24px; font-weight: 700; letter-spacing: 1px; color: var(--lp-gold-soft); }
.coupon-box__label { font-size: 12px; color: var(--lp-text-dim); }
.coupon-box__off {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  width: 110px; flex-shrink: 0; border-radius: 0 14px 14px 0;
  background: linear-gradient(135deg, var(--lp-gold-soft), var(--lp-gold) 70%);
  font-family: var(--font-numeral); font-size: 26px; font-weight: 700; color: #1a1002;
}
.coupon-box__off small { font-size: 12px; font-weight: 700; letter-spacing: 1px; }

.benefits-row { display: flex; justify-content: center; gap: 18px; margin-top: 50px; flex-wrap: wrap; }
.benefit { display: flex; flex-direction: column; align-items: center; gap: 10px; width: 130px; }
.benefit__icon {
  width: 54px; height: 54px; border-radius: 14px; display: grid; place-items: center;
  border: 1px solid rgba(245, 185, 66, 0.25); background: rgba(255, 255, 255, 0.03); color: var(--lp-gold-soft);
}
.benefit__icon svg { width: 24px; height: 24px; }
.benefit__label { font-size: 13px; color: #d7dee6; text-align: center; }

/* ---------------------------- why maxscan ---------------------------- */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 40px; }
.why-card {
  display: flex; flex-direction: column; align-items: center; gap: 14px; text-align: center;
  padding: 26px 14px; border: 1px solid rgba(245, 185, 66, 0.25); border-radius: 16px;
  background: rgba(255, 255, 255, 0.03); transition: border-color .25s ease, transform .25s ease;
}
.why-card:hover { border-color: rgba(245, 185, 66, 0.55); transform: translateY(-3px); }
.why-card__icon { width: 44px; height: 44px; display: grid; place-items: center; color: var(--lp-gold-soft); }
.why-card__icon svg { width: 30px; height: 30px; }
.why-card p { font-size: 14px; font-weight: 700; color: #eef2f6; margin: 0; }

/* ---------------------------- two systems ---------------------------- */
.systems-grid { display: grid; grid-template-columns: 1fr auto 1fr; gap: 30px; align-items: center; margin-top: 40px; }
.systems-plus { font-family: var(--font-numeral); font-size: 34px; font-weight: 700; color: var(--lp-text-dim); }
.system-card {
  display: flex; align-items: center; gap: 24px; overflow: hidden;
  border: 1px solid rgba(245, 185, 66, 0.25); border-radius: 16px;
  background: rgba(255, 255, 255, 0.03); padding: 30px;
  transition: border-color .25s ease, transform .25s ease;
}
.system-card:hover { border-color: rgba(245, 185, 66, 0.55); transform: translateY(-3px); }
.system-card__img { width: 45%; flex-shrink: 0; }
.system-card__text { flex: 1; min-width: 0; }
.system-card__text h3 { font-size: 21px; margin: 0 0 4px; color: var(--lp-gold-soft); }
.system-card__subtitle { font-family: var(--font-numeral); font-size: 12px; font-weight: 300; color: var(--lp-text-dim); margin: 0 0 16px; }
.system-card__desc { font-size: 14px; color: #d7dee6; margin: 0 0 10px; line-height: 1.7; }
.system-card__spec { font-size: 14px; font-weight: 700; color: #fff; margin: 0 0 20px; }
.btn-outline-gold {
  display: inline-block; border: 1.5px solid var(--lp-gold); color: var(--lp-gold-soft);
  background: transparent; border-radius: 999px; padding: 9px 20px; font-size: 13px; font-weight: 700;
}

/* ---------------------------- 3 imaging modes ---------------------------- */
.modes-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.mode-card {
  border: 1px solid rgba(245, 185, 66, 0.25); border-radius: 16px;
  background: #070b14; padding: 26px; text-align: center;
  overflow: hidden; display: flex; flex-direction: column;
  transition: border-color .25s ease, transform .25s ease;
}
.mode-card:hover { border-color: rgba(245, 185, 66, 0.55); transform: translateY(-3px); }
.mode-card h3 { font-size: 19px; margin: 0 0 4px; color: var(--lp-gold-soft); }
.mode-card__subtitle { font-size: 14px; font-weight: 700; color: #fff; margin: 0 0 14px; }
.mode-card__desc { font-size: 13.5px; color: var(--lp-text-dim); line-height: 1.7; margin: 0 0 22px; }
.mode-card__img { width: 100%; padding: 22px; box-sizing: border-box; }

/* ---------------------------- 360 product explorer / hotspots ---------------------------- */
.explorer-section { padding-top: 50px; padding-bottom: 0; }
.explorer-section__inner { display: flex; flex-direction: column; min-height: 640px; }
.hotspot-stage { position: relative; max-width: 1500px; width: 100%; margin: 0 auto; margin-top: auto; }
.hotspot-stage__img {
  position: relative; z-index: 1; width: 100%; height: auto; display: block;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 1.15s var(--reveal-ease);
}
.hotspot-stage.is-inview .hotspot-stage__img { clip-path: inset(0 0 0 0); }

/* scanner-head sweep bar — the device's own reveal, not a stock fade */
.hotspot-stage__scanbar {
  position: absolute; z-index: 3; top: 0; bottom: 0; left: 0; width: 3px;
  background: linear-gradient(180deg, transparent, var(--lp-gold-soft) 18%, var(--lp-gold) 50%, var(--lp-gold-soft) 82%, transparent);
  box-shadow: 0 0 22px 3px rgba(245, 185, 66, .75), 0 0 56px 12px rgba(245, 185, 66, .35);
  opacity: 0; pointer-events: none;
}
.hotspot-stage.is-inview .hotspot-stage__scanbar { animation: hotspotScanSweep 1.15s var(--reveal-ease) forwards; }
@keyframes hotspotScanSweep {
  0% { left: 0; opacity: 1; }
  88% { opacity: 1; }
  100% { left: 100%; opacity: 0; }
}

.hotspot {
  position: absolute; z-index: 2; left: var(--x); top: var(--y);
  transform: translate(-50%, -50%) scale(.35); opacity: 0;
  width: 24px; height: 24px; border-radius: 50%;
  background: rgba(245, 185, 66, 0.9); color: #1a1002; font-family: var(--font-numeral); font-weight: 700; font-size: 11px;
  display: grid; place-items: center;
  box-shadow: 0 0 0 4px rgba(245, 185, 66, 0.2), 0 0 18px rgba(245, 185, 66, 0.6);
  animation: hotspotPulse 2.4s ease-in-out infinite;
  transition: opacity .5s var(--ease-spring), transform .5s var(--ease-spring);
  cursor: pointer;
}
@keyframes hotspotPulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(245, 185, 66, 0.2), 0 0 18px rgba(245, 185, 66, 0.6); }
  50% { box-shadow: 0 0 0 8px rgba(245, 185, 66, 0.12), 0 0 24px rgba(245, 185, 66, 0.8); }
}
.hotspot-stage.is-inview .hotspot { opacity: 1; transform: translate(-50%, -50%) scale(1); }
.hotspot-stage.is-inview .hotspot:nth-of-type(1) { transition-delay: .85s; }
.hotspot-stage.is-inview .hotspot:nth-of-type(2) { transition-delay: .95s; }
.hotspot-stage.is-inview .hotspot:nth-of-type(3) { transition-delay: 1.05s; }
.hotspot-stage.is-inview .hotspot:nth-of-type(4) { transition-delay: 1.15s; }
.hotspot-stage.is-inview .hotspot:nth-of-type(5) { transition-delay: 1.25s; }
.hotspot-stage.is-inview .hotspot:nth-of-type(6) { transition-delay: 1.35s; }
.hotspot::after {
  content: attr(data-tip);
  position: absolute; bottom: calc(100% + 12px); right: 50%; transform: translateX(50%) translateY(6px);
  width: 220px; background: rgb(11 14 19 / 33%); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--lp-border); border-radius: 12px; padding: 12px 14px;
  font-family: var(--font-family); font-size: 12.5px; line-height: 1.6; color: #fff; opacity: 0; pointer-events: none;
  transition: opacity .2s ease, transform .2s ease; z-index: 5;
}
.hotspot:hover::after, .hotspot:focus::after, .hotspot.is-active::after { opacity: 1; transform: translateX(50%) translateY(0); }

/* ---------------------------- booking reminder (subtle corner nudge) ---------------------------- */
.booking-reminder {
  position: fixed; bottom: 22px; inset-inline-start: 22px; z-index: 55;
  display: flex; align-items: center; gap: 14px;
  max-width: 380px; background: rgba(10, 13, 18, 0.9);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--lp-border); border-radius: 14px;
  padding: 14px 18px; box-shadow: 0 16px 40px -12px rgba(0, 0, 0, 0.6);
  transform: translateY(140%); opacity: 0; transition: transform .5s var(--ease-spring), opacity .4s ease;
}
.booking-reminder[hidden] { display: none; }
.booking-reminder.is-visible { transform: translateY(0); opacity: 1; }
.booking-reminder__text { flex: 1; margin: 0; font-size: 13.5px; line-height: 1.5; color: #eef2f6; }
.booking-reminder__cta { white-space: nowrap; flex-shrink: 0; }
.booking-reminder__close {
  position: absolute; top: -9px; inset-inline-end: -9px;
  width: 22px; height: 22px; border-radius: 50%; line-height: 1;
  background: var(--lp-bg-alt); border: 1px solid var(--lp-border); color: #eef2f6;
  font-size: 14px; display: flex; align-items: center; justify-content: center;
}
.booking-reminder__close:hover { color: var(--lp-gold-soft); }
@media (max-width: 560px) {
  .booking-reminder { inset-inline: 14px; bottom: 14px; max-width: none; flex-wrap: wrap; }
}

/* ---------------------------- responsive ---------------------------- */
@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero { padding: 130px 0 0; }
  .hero__title { white-space: normal; }
  .site-header__nav, .site-header__tools .tool-pill { display: none; }
  .site-header__burger { display: flex; }
  .hero-stats__inner { flex-direction: column; gap: 18px; padding: 22px 20px; }
  .hero-stats__divider { display: none; }
  .hero-stats__item { width: 100%; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .systems-grid { grid-template-columns: 1fr; }
  .systems-plus { transform: rotate(90deg); }
  .systems-plus[data-reveal] { transform: rotate(90deg) scale(.4); }
  .systems-plus.is-inview { transform: rotate(90deg) scale(1); }
  .system-card { flex-direction: column; }
  .system-card__img { width: 70%; }
  .modes-grid { grid-template-columns: 1fr; }
  .explorer-section__inner { min-height: 420px; }
}

/* ---------------------------- reduced motion ---------------------------- */
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { transition: none; opacity: 1; transform: none; filter: none; }
  .section::before { transition: none; transform: translateX(-50%) scaleX(1); opacity: 1; }
  .hero__visual, .hero__copy > * { transition: none; animation: none; opacity: 1; transform: none; }
  .hero__composite { animation: none; }
  .hero__starfield, .hero__starfield::before, .hero__starfield::after { animation: none; }
  .section__bg { animation: none; }
  .hotspot-stage__img { transition: none; clip-path: inset(0 0 0 0); }
  .hotspot-stage__scanbar { display: none; }
  .hotspot { transition: none; animation: none; opacity: 1; transform: translate(-50%, -50%) scale(1); }
  .coupon-box.is-inview { animation: none; }
}
