:root {
  --bg: #071225;
  --bg-2: #0b1833;
  --panel: rgba(255, 255, 255, 0.08);
  --panel-strong: rgba(255, 255, 255, 0.14);
  --line: rgba(255, 255, 255, 0.14);
  --text: #f7fbff;
  --muted: #a7b7cc;
  --soft: #dbe8f7;
  --gold: #e8c37a;
  --gold-2: #b98638;
  --cyan: #7fe7ff;
  --blue: #1a69ff;
  --violet: #8a5cff;
  --cream: #fff8ea;
  --dark: #06101f;
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --shadow: 0 24px 90px rgba(0, 0, 0, 0.38);
  --shadow-soft: 0 18px 60px rgba(15, 35, 75, 0.24);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(76, 134, 255, 0.22), transparent 34rem),
    radial-gradient(circle at 80% 10%, rgba(232, 195, 122, 0.13), transparent 32rem),
    linear-gradient(180deg, #071225 0%, #09162d 40%, #050b17 100%);
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea, select { font: inherit; }
::selection { background: rgba(127, 231, 255, 0.35); }

.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.section { position: relative; padding: 110px 0; }

.cursor-glow {
  position: fixed;
  inset: auto auto 0 0;
  width: 320px;
  height: 320px;
  border-radius: 999px;
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(127, 231, 255, 0.16), transparent 65%);
  transition: opacity .25s ease;
  mix-blend-mode: screen;
}

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1180px, calc(100% - 28px));
  min-height: 76px;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 13px 14px 13px 20px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 999px;
  background: rgba(7, 18, 37, 0.78);
  backdrop-filter: blur(24px);
  box-shadow: 0 18px 70px rgba(0,0,0,.25);
}
.brand img { width: 192px; height: auto; }
.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav a {
  color: var(--muted);
  padding: 12px 15px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 650;
  transition: all .25s ease;
}
.main-nav a:hover { color: var(--text); background: rgba(255,255,255,.08); }
.header-cta {
  padding: 13px 19px;
  border-radius: 999px;
  color: #071225;
  background: linear-gradient(135deg, var(--gold), #fff0bf 45%, var(--cyan));
  font-weight: 800;
  box-shadow: 0 14px 35px rgba(232,195,122,.25);
  white-space: nowrap;
}
.nav-toggle {
  display: none;
  border: 0;
  color: var(--text);
  background: rgba(255,255,255,.08);
  width: 44px;
  height: 44px;
  border-radius: 999px;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 160px;
  overflow: hidden;
}
.hero-bg, .hero-overlay { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: .28; filter: saturate(1.05) contrast(1.08); }
.hero-overlay {
  background:
    linear-gradient(90deg, rgba(7,18,37,.96) 0%, rgba(7,18,37,.78) 42%, rgba(7,18,37,.44) 100%),
    linear-gradient(180deg, rgba(7,18,37,.1), #071225 100%);
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  align-items: center;
  gap: 56px;
  z-index: 2;
}
.eyebrow, .kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 12px;
  font-weight: 900;
}
.eyebrow span { width: 38px; height: 1px; background: linear-gradient(90deg, var(--gold), transparent); }
.hero h1, .section-heading h2, .experience h2, .merchant h2, .tech-copy h2, .final-card h2 {
  margin: 18px 0 0;
  font-size: clamp(42px, 6vw, 82px);
  line-height: .94;
  letter-spacing: -0.065em;
  font-weight: 950;
}
.hero h1 {
  max-width: 780px;
  background: linear-gradient(180deg, #fff, #dcecff 58%, #9bdff1);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-lead {
  max-width: 680px;
  color: var(--soft);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.7;
  margin: 26px 0 0;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero-actions.center { justify-content: center; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 900;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  color: #06101f;
  background: linear-gradient(135deg, var(--gold), #fff3c4 48%, var(--cyan));
  box-shadow: 0 18px 50px rgba(127, 231, 255, .15), 0 16px 35px rgba(232,195,122,.18);
}
.btn-ghost {
  border: 1px solid rgba(255,255,255,.18);
  color: var(--text);
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(16px);
}
.btn.full { width: 100%; border: 0; cursor: pointer; }
.trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 620px;
  gap: 12px;
  margin-top: 34px;
}
.trust-row div {
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(14px);
}
.trust-row strong { display: block; font-size: 24px; color: var(--cyan); }
.trust-row span { color: var(--muted); font-size: 13px; font-weight: 700; }

.hero-visual { position: relative; min-height: 650px; }
.device-shell {
  position: relative;
  width: min(100%, 510px);
  margin-left: auto;
  border-radius: 42px;
  padding: 13px;
  border: 1px solid rgba(255,255,255,.18);
  background: linear-gradient(180deg, rgba(255,255,255,.18), rgba(255,255,255,.06));
  box-shadow: var(--shadow);
  overflow: hidden;
}
.device-shell::before {
  content: "";
  position: absolute;
  inset: -35%;
  background: conic-gradient(from 30deg, transparent, rgba(127,231,255,.28), transparent, rgba(232,195,122,.20), transparent);
  animation: spin 9s linear infinite;
}
.device-shell > * { position: relative; z-index: 1; }
.device-topbar {
  display: flex;
  gap: 8px;
  padding: 14px 17px;
  border-radius: 30px 30px 0 0;
  background: rgba(0,0,0,.28);
}
.device-topbar span { width: 10px; height: 10px; border-radius: 99px; background: rgba(255,255,255,.55); }
.mall-map-card {
  min-height: 565px;
  border-radius: 0 0 32px 32px;
  background: radial-gradient(circle at 50% 0, rgba(127,231,255,.18), transparent 32%), linear-gradient(180deg, #0b1833, #06101f);
  border: 1px solid rgba(255,255,255,.12);
  overflow: hidden;
}
.mall-stage { position: relative; min-height: 360px; perspective: 900px; overflow: hidden; }
.mall-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 36px 36px;
  transform: rotateX(62deg) scale(1.4) translateY(40px);
  transform-origin: bottom;
  opacity: .45;
}
.floor {
  position: absolute;
  left: 50%;
  width: 76%;
  height: 82px;
  transform: translateX(-50%) rotateX(55deg);
  border: 1px solid rgba(127,231,255,.35);
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(127,231,255,.14), rgba(138,92,255,.18));
  box-shadow: 0 0 42px rgba(127,231,255,.12), inset 0 0 22px rgba(255,255,255,.05);
}
.floor-1 { bottom: 28px; }
.floor-2 { bottom: 116px; width: 66%; opacity: .88; }
.floor-3 { bottom: 196px; width: 54%; opacity: .78; }
.avatar-dot {
  position: absolute;
  bottom: 96px;
  left: 48%;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 12px rgba(232,195,122,.18), 0 0 45px rgba(232,195,122,.75);
  animation: pulse 2s ease-in-out infinite;
}
.live-badge, .gift-bubble, .video-bubble {
  position: absolute;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  padding: 10px 14px;
  color: #06101f;
  font-size: 12px;
  font-weight: 950;
  background: linear-gradient(135deg, var(--cyan), #ffffff);
  box-shadow: 0 12px 30px rgba(0,0,0,.24);
}
.live-badge { top: 48px; right: 36px; }
.gift-bubble { bottom: 80px; right: 38px; background: linear-gradient(135deg, var(--gold), #fff2bd); }
.video-bubble { bottom: 134px; left: 38px; }
.device-content { padding: 22px; }
.tiny-label { margin: 0 0 10px; color: var(--gold); font-size: 11px; letter-spacing: .16em; text-transform: uppercase; font-weight: 900; }
.device-content h3 { margin: 0; color: var(--text); font-size: 23px; line-height: 1.25; letter-spacing: -.02em; }
.mini-stats { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 18px; }
.mini-stats span { padding: 9px 12px; border-radius: 999px; background: rgba(255,255,255,.09); color: var(--soft); font-size: 12px; font-weight: 800; }
.floating-card {
  position: absolute;
  width: 220px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 22px;
  background: rgba(255,255,255,.09);
  backdrop-filter: blur(22px);
  box-shadow: 0 20px 55px rgba(0,0,0,.24);
  animation: float 5s ease-in-out infinite;
}
.floating-card strong { display: block; color: var(--text); margin-bottom: 7px; }
.floating-card span { color: var(--muted); font-size: 13px; line-height: 1.45; }
.card-a { left: 0; top: 90px; }
.card-b { right: -6px; bottom: 85px; animation-delay: 1.1s; }

.intro-strip { padding: 36px 0 0; }
.strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--line);
  box-shadow: var(--shadow-soft);
}
.strip-grid > div { padding: 30px; background: rgba(255,255,255,.06); min-height: 190px; }
.strip-number { color: var(--gold); font-weight: 950; font-size: 13px; letter-spacing: .14em; }
.strip-grid strong { display: block; margin-top: 18px; font-size: 20px; }
.strip-grid p { color: var(--muted); line-height: 1.65; margin: 10px 0 0; }

.section-heading { max-width: 820px; margin-bottom: 44px; }
.section-heading h2 { font-size: clamp(34px, 4.4vw, 62px); }
.section-heading p:last-child { color: var(--muted); font-size: 18px; line-height: 1.75; }
.section-heading.light { text-align: center; margin-left: auto; margin-right: auto; }
.section-heading.light h2 { color: #fff; }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.feature-card {
  position: relative;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255,255,255,.09), rgba(255,255,255,.04));
  min-height: 260px;
  overflow: hidden;
  transition: transform .3s ease, border-color .3s ease, background .3s ease;
}
.feature-card::after {
  content: "";
  position: absolute;
  inset: auto -30% -55% -30%;
  height: 150px;
  background: radial-gradient(circle, rgba(127,231,255,.18), transparent 65%);
  opacity: 0;
  transition: opacity .3s ease;
}
.feature-card:hover { transform: translateY(-6px); border-color: rgba(127,231,255,.32); background: rgba(255,255,255,.09); }
.feature-card:hover::after { opacity: 1; }
.icon { width: 56px; height: 56px; display: grid; place-items: center; border-radius: 18px; background: rgba(127,231,255,.12); font-size: 26px; }
.feature-card h3 { margin: 24px 0 10px; font-size: 22px; letter-spacing: -.03em; }
.feature-card p { color: var(--muted); line-height: 1.65; margin: 0; }

.experience { background: linear-gradient(180deg, rgba(255,255,255,.03), transparent); }
.experience-grid, .merchant-grid, .tech-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 54px;
  align-items: center;
}
.experience h2, .merchant h2, .tech-copy h2 { font-size: clamp(34px, 4.5vw, 60px); }
.experience-copy > p:not(.kicker), .merchant-panel > p, .tech-copy > p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
}
.journey-list { display: grid; gap: 14px; margin-top: 28px; }
.journey-list div { display: grid; grid-template-columns: 46px 1fr; column-gap: 16px; padding: 18px; border-radius: 20px; background: rgba(255,255,255,.06); border: 1px solid var(--line); }
.journey-list span { grid-row: span 2; width: 42px; height: 42px; border-radius: 14px; display: grid; place-items: center; background: linear-gradient(135deg, var(--gold), var(--cyan)); color: #06101f; font-weight: 950; }
.journey-list strong { font-size: 18px; }
.journey-list p { margin: 6px 0 0; color: var(--muted); line-height: 1.55; }
.experience-showcase { display: grid; grid-template-columns: 1fr .42fr; gap: 16px; align-items: stretch; }
.showcase-main, .showcase-stack img {
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,.14);
  overflow: hidden;
  background: rgba(255,255,255,.06);
  box-shadow: var(--shadow-soft);
}
.showcase-main { position: relative; }
.showcase-main img { width: 100%; height: 620px; object-fit: cover; }
.showcase-caption {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(7,18,37,.78);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.12);
}
.showcase-caption strong { display: block; }
.showcase-caption span { display: block; color: var(--muted); margin-top: 5px; }
.showcase-stack { display: grid; gap: 16px; }
.showcase-stack img { height: 302px; width: 100%; object-fit: cover; }

.dark-section {
  background: radial-gradient(circle at 50% 0, rgba(138,92,255,.22), transparent 36rem), #040815;
  overflow: hidden;
}
.dark-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .08;
  background-image: linear-gradient(90deg, #fff 1px, transparent 1px), linear-gradient(0deg, #fff 1px, transparent 1px);
  background-size: 44px 44px;
}
.live-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.25fr .9fr .9fr; gap: 18px; }
.live-card { position: relative; min-height: 470px; overflow: hidden; border-radius: 34px; border: 1px solid rgba(255,255,255,.13); background: rgba(255,255,255,.08); box-shadow: var(--shadow-soft); }
.live-card img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; opacity: .78; transition: transform .6s ease; }
.live-card:hover img { transform: scale(1.05); }
.live-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 25%, rgba(4,8,21,.92)); }
.live-card div { position: absolute; z-index: 2; left: 24px; right: 24px; bottom: 24px; }
.live-card span { display: inline-flex; margin-bottom: 11px; color: #071225; background: linear-gradient(135deg, var(--gold), #fff2bd); padding: 8px 12px; border-radius: 999px; font-size: 12px; font-weight: 950; text-transform: uppercase; letter-spacing: .1em; }
.live-card h3 { margin: 0; font-size: 26px; line-height: 1.2; letter-spacing: -.03em; }

.merchant { background: linear-gradient(180deg, transparent, rgba(232,195,122,.05)); }
.merchant-grid { grid-template-columns: 1.03fr .97fr; }
.merchant-panel, .contact-card, .final-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.045));
  box-shadow: var(--shadow-soft);
}
.merchant-panel { padding: 42px; }
.partner-benefits { display: grid; grid-template-columns: repeat(2,1fr); gap: 12px; margin-top: 30px; }
.partner-benefits div { padding: 16px; border: 1px solid rgba(255,255,255,.12); border-radius: 18px; background: rgba(255,255,255,.06); }
.partner-benefits strong { display: block; color: var(--gold); font-size: 12px; letter-spacing: .14em; margin-bottom: 7px; }
.partner-benefits span { font-weight: 800; }
.contact-card { padding: 28px; }
.form-head span { color: var(--gold); text-transform: uppercase; letter-spacing: .14em; font-size: 12px; font-weight: 950; }
.form-head h3 { margin: 8px 0 24px; font-size: 30px; letter-spacing: -.04em; }
.contact-card label { display: block; color: var(--soft); font-size: 13px; font-weight: 850; margin-top: 15px; }
.contact-card input, .contact-card textarea, .contact-card select {
  width: 100%;
  margin-top: 8px;
  color: var(--text);
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(4,8,21,.42);
  border-radius: 16px;
  padding: 14px 15px;
  outline: 0;
}
.contact-card select option { color: #06101f; }
.contact-card input:focus, .contact-card textarea:focus, .contact-card select:focus { border-color: rgba(127,231,255,.55); box-shadow: 0 0 0 4px rgba(127,231,255,.08); }
.form-note { color: var(--muted); font-size: 12px; line-height: 1.6; text-align: center; }

.modules { padding-top: 60px; }
.module-board {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,.07);
  overflow: hidden;
}
.module-board a { padding: 22px; min-height: 122px; border-right: 1px solid rgba(255,255,255,.10); border-bottom: 1px solid rgba(255,255,255,.10); color: var(--cyan); font-weight: 950; transition: background .25s ease; }
.module-board a:hover { background: rgba(127,231,255,.08); }
.module-board span { display: block; margin-top: 10px; color: var(--muted); font-size: 13px; font-weight: 700; }

.technology { background: radial-gradient(circle at 15% 40%, rgba(127,231,255,.12), transparent 30rem); }
.tech-grid { grid-template-columns: .85fr 1.15fr; }
.tech-tags { display: flex; flex-wrap: wrap; gap: 12px; }
.tech-tags span { padding: 14px 16px; border-radius: 999px; border: 1px solid rgba(255,255,255,.14); background: rgba(255,255,255,.07); color: var(--soft); font-weight: 800; }

.final-cta { padding-top: 40px; }
.final-card { text-align: center; padding: 60px 32px; overflow: hidden; position: relative; }
.final-card::before { content: ""; position: absolute; inset: -60% -10% auto -10%; height: 420px; background: radial-gradient(circle, rgba(127,231,255,.14), transparent 60%); }
.final-card > * { position: relative; z-index: 1; }
.final-card img { width: min(340px, 80%); margin: 0 auto 24px; }
.final-card h2 { font-size: clamp(34px, 5vw, 64px); max-width: 850px; margin-left: auto; margin-right: auto; }
.final-card p { max-width: 690px; margin: 18px auto 0; color: var(--muted); font-size: 18px; line-height: 1.7; }

.site-footer { padding: 46px 0 30px; border-top: 1px solid var(--line); background: #040815; }
.footer-grid { display: grid; grid-template-columns: 1.4fr .5fr .5fr; gap: 44px; }
.footer-grid img { width: 210px; margin-bottom: 14px; }
.footer-grid p, .footer-bottom { color: var(--muted); line-height: 1.65; }
.footer-grid strong { display: block; margin-bottom: 12px; }
.footer-grid a { display: block; color: var(--muted); margin-top: 10px; }
.footer-grid a:hover { color: var(--cyan); }
.footer-bottom { margin-top: 32px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.08); font-size: 13px; }

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

@keyframes spin { to { transform: rotate(360deg); } }
@keyframes pulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.22); } }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-16px); } }

@media (max-width: 1020px) {
  .main-nav { display: none; }
  .nav-toggle { display: grid; place-items: center; }
  .site-header.menu-open { border-radius: 30px; flex-wrap: wrap; }
  .site-header.menu-open .main-nav { display: grid; width: 100%; grid-template-columns: repeat(2, 1fr); }
  .site-header.menu-open .header-cta { width: 100%; text-align: center; }
  .hero-grid, .experience-grid, .merchant-grid, .tech-grid { grid-template-columns: 1fr; }
  .hero-visual { min-height: auto; }
  .device-shell { margin: 0 auto; }
  .card-a { left: 10px; top: 34px; }
  .card-b { right: 10px; bottom: 28px; }
  .strip-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .live-grid { grid-template-columns: 1fr; }
  .live-card { min-height: 360px; }
  .module-board { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 680px) {
  .container { width: min(100% - 26px, 1180px); }
  .section { padding: 78px 0; }
  .site-header { top: 10px; width: calc(100% - 18px); min-height: 64px; padding: 10px; }
  .brand img { width: 150px; }
  .header-cta { display: none; }
  .site-header.menu-open .header-cta { display: block; }
  .hero { padding-top: 122px; }
  .hero-grid { gap: 36px; }
  .hero h1 { font-size: clamp(42px, 14vw, 62px); }
  .hero-lead { font-size: 16px; }
  .hero-actions { flex-direction: column; }
  .trust-row, .strip-grid, .feature-grid, .partner-benefits, .module-board, .footer-grid { grid-template-columns: 1fr; }
  .hero-visual { padding-bottom: 80px; }
  .device-shell { border-radius: 30px; }
  .mall-map-card { min-height: 500px; }
  .floating-card { width: 188px; padding: 14px; }
  .card-a { top: auto; bottom: 0; left: 0; }
  .card-b { bottom: 0; right: 0; transform: translateY(76px); }
  .experience-showcase { grid-template-columns: 1fr; }
  .showcase-main img { height: 520px; }
  .showcase-stack { grid-template-columns: repeat(2, 1fr); }
  .showcase-stack img { height: 220px; }
  .merchant-panel, .contact-card { padding: 22px; }
}

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