:root {
  --navy-950: #040914;
  --navy-900: #071428;
  --navy-800: #0b1d3c;
  --navy-700: #12305f;
  --royal: #1b4fd0;
  --cyan: #3ec8ff;
  --cyan-hot: #8ae6ff;
  --gold: #e8b84a;
  --gold-soft: #f3cc72;
  --cream: #f4e6cf;
  --ink: #f5f8ff;
  --mute: #9db0d4;
  --suit: #0a0c10;
  --red: #e24b4b;
  --line: rgba(62, 200, 255, 0.16);
  --glass: rgba(7, 20, 40, 0.62);
  --radius: 28px;
  --font-dog: "Bagel Fat One", "Outfit", sans-serif;
  --font-ui: "Outfit", sans-serif;
  --font-mono: "Share Tech Mono", ui-monospace, monospace;
}

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

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background: var(--navy-950);
  color: var(--ink);
  font-family: var(--font-ui);
}

body {
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

::selection {
  background: rgba(232, 184, 74, 0.35);
  color: #fff;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--navy-950);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--gold), var(--royal));
  border-radius: 999px;
}

.pointer-glow {
  position: fixed;
  width: 280px;
  height: 280px;
  margin: -140px 0 0 -140px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  background: radial-gradient(circle, rgba(62, 200, 255, 0.14), transparent 68%);
  mix-blend-mode: screen;
  opacity: 0;
  transition: opacity 0.3s ease;
}

#desk-canvas,
.page-grid,
.page-glow,
.scan-veil,
.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

#desk-canvas {
  z-index: 0;
}

.page-glow {
  z-index: 0;
  background:
    radial-gradient(52vw 40vw at 12% 8%, rgba(27, 79, 208, 0.28), transparent 62%),
    radial-gradient(46vw 34vw at 88% 18%, rgba(232, 184, 74, 0.12), transparent 60%),
    radial-gradient(40vw 30vw at 50% 100%, rgba(62, 200, 255, 0.1), transparent 70%);
}

.page-grid {
  z-index: 0;
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(62, 200, 255, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(62, 200, 255, 0.09) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse at 50% 20%, #000 30%, transparent 78%);
  transform: perspective(700px) rotateX(58deg) translateY(-18%);
  transform-origin: top center;
  height: 140vh;
}

.scan-veil {
  z-index: 1;
  opacity: 0.07;
  background: repeating-linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.08) 0 1px,
    transparent 1px 4px
  );
  animation: scan-drift 12s linear infinite;
}

.noise {
  z-index: 1;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

header,
main,
footer,
.tape {
  position: relative;
  z-index: 2;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  isolation: isolate;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 28px;
  background: rgba(4, 9, 20, 0.55);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.nav.is-scrolled {
  background: rgba(4, 9, 20, 0.86);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.28);
}

.brand,
.brand-foot {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-rim {
  position: relative;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  padding: 2px;
  background: var(--navy-900);
  box-shadow: 0 0 0 4px rgba(232, 184, 74, 0.12), 0 0 24px rgba(62, 200, 255, 0.2);
}

.brand-rim::before {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: inherit;
  background: conic-gradient(from 180deg, var(--gold), #fff3c4, var(--cyan), var(--gold));
  animation: spin 10s linear infinite;
  z-index: 0;
}

.brand-logo {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-copy strong {
  font-family: var(--font-dog);
  font-size: 1.2rem;
  letter-spacing: 0.02em;
}

.brand-copy small {
  color: var(--gold-soft);
  font-family: var(--font-mono);
  font-size: 0.72rem;
}

.nav-links {
  display: flex;
  gap: 22px;
}

.nav-links a {
  color: var(--mute);
  font-size: 0.92rem;
  font-weight: 500;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--cyan));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--ink);
}

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

.nav-tools {
  display: flex;
  align-items: center;
  gap: 10px;
}

.icon-link,
.footer-links a {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(11, 29, 60, 0.7);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.icon-link img,
.footer-links a img,
.btn img,
.step-icon img,
.chart-bar img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.icon-link:hover,
.footer-links a:hover {
  transform: translateY(-2px);
  border-color: rgba(232, 184, 74, 0.5);
  box-shadow: 0 8px 22px rgba(62, 200, 255, 0.16);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

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

.btn-gold {
  color: #1a1204;
  background: linear-gradient(180deg, #ffe08a, var(--gold) 46%, #c9922c);
  box-shadow: 0 8px 24px rgba(232, 184, 74, 0.28);
}

.btn-gold:hover {
  box-shadow: 0 12px 30px rgba(232, 184, 74, 0.4);
  filter: brightness(1.05);
}

.btn-ghost {
  color: var(--ink);
  background: rgba(11, 29, 60, 0.6);
  border-color: var(--line);
}

.btn-ghost:hover {
  border-color: rgba(62, 200, 255, 0.45);
  box-shadow: 0 8px 22px rgba(62, 200, 255, 0.12);
}

.btn-lg {
  min-height: 50px;
  padding: 0 22px;
}

.menu-btn {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: transparent;
  padding: 10px;
  flex-direction: column;
  justify-content: space-between;
}

.menu-btn span {
  display: block;
  height: 2px;
  background: var(--ink);
}

.tape {
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: rgba(7, 20, 40, 0.72);
}

.tape-track {
  display: flex;
  gap: 36px;
  width: max-content;
  padding: 8px 0;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  color: var(--cyan-hot);
  animation: tape 28s linear infinite;
}

.tape-track b {
  color: var(--gold-soft);
  font-weight: 400;
}

.tape-track .down {
  color: var(--red);
}

.hero {
  position: relative;
  padding: 42px 28px 18px;
  min-height: calc(100vh - 118px);
}

.hero-orbs {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(20px);
  opacity: 0.55;
  animation: floaty 9s ease-in-out infinite;
}

.orb-cyan {
  width: 240px;
  height: 240px;
  right: 8%;
  top: 12%;
  background: rgba(62, 200, 255, 0.22);
}

.orb-gold {
  width: 180px;
  height: 180px;
  left: 6%;
  bottom: 16%;
  background: rgba(232, 184, 74, 0.16);
  animation-delay: -3s;
}

.hero-layout {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.kicker,
.section-kicker,
.banner-kicker,
.thesis-meta span,
.ca-panel span,
.stat-row span,
.step-body span,
.brief-no,
.monitor-chrome,
.chart-bar-left span {
  font-family: var(--font-mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.74rem;
  color: var(--gold-soft);
}

.kicker,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 12px;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 0 rgba(62, 200, 255, 0.7);
  animation: pulse 1.8s ease-out infinite;
}

.hero h1,
.section-head h2,
.banner-copy h3 {
  font-family: var(--font-dog);
  letter-spacing: 0.01em;
  line-height: 0.95;
  margin: 0;
}

.hero h1 {
  font-size: clamp(4.4rem, 9vw, 7.4rem);
  background: linear-gradient(180deg, #fff 10%, var(--cream) 48%, var(--gold-soft));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 18px 50px rgba(27, 79, 208, 0.25);
  animation: title-in 0.9s ease both;
}

.symbol-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 14px 0 0;
  color: var(--mute);
}

.chip {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(232, 184, 74, 0.4);
  color: var(--gold-soft);
  background: rgba(232, 184, 74, 0.08);
  font-family: var(--font-mono);
}

.lead,
.section-lead,
.brief-card p,
.step-body p,
.thesis p,
.banner-copy p,
.footer p {
  color: var(--mute);
  line-height: 1.65;
}

.lead {
  max-width: 34rem;
  font-size: 1.08rem;
}

.hero-actions,
.join-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.ca-panel {
  margin-top: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(7, 20, 40, 0.7);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
}

.ca-panel code {
  display: block;
  margin-top: 4px;
  font-family: var(--font-mono);
  color: var(--ink);
  font-size: 0.92rem;
  word-break: break-all;
}

.stat-row {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.stat-row li {
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(11, 29, 60, 0.45);
}

.stat-row strong {
  display: block;
  margin-top: 6px;
  font-size: 1rem;
}

.hero-stage {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 18px;
}

.spectacles {
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0.85;
  animation: floaty 6s ease-in-out infinite;
}

.spectacles .lens {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 3px solid var(--gold);
  box-shadow: 0 0 16px rgba(232, 184, 74, 0.35), inset 0 0 12px rgba(255, 255, 255, 0.12);
}

.spectacles .bridge {
  width: 18px;
  height: 4px;
  border-radius: 999px;
  background: var(--gold);
}

.portrait-rim {
  position: relative;
  width: min(360px, 78%);
  aspect-ratio: 1;
  border-radius: 50%;
  padding: 6px;
  background: var(--navy-900);
  box-shadow:
    0 0 0 10px rgba(7, 20, 40, 0.55),
    0 20px 60px rgba(0, 0, 0, 0.4),
    0 0 50px rgba(62, 200, 255, 0.18);
}

.portrait-rim::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: inherit;
  background: conic-gradient(from 120deg, var(--gold), var(--cyan), #fff3c4, var(--gold));
  animation: spin 16s linear infinite;
  z-index: 0;
}

.hero-logo {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.portrait-sheen {
  position: absolute;
  inset: 8%;
  z-index: 2;
  border-radius: 50%;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.2), transparent 36%);
  pointer-events: none;
  animation: sheen 5.5s ease-in-out infinite;
}

.monitor {
  position: relative;
  width: min(420px, 92%);
  aspect-ratio: 16 / 9;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(62, 200, 255, 0.28);
  background: #06101f;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35), 0 0 30px rgba(62, 200, 255, 0.12);
}

.hero-video,
.monitor-fallback,
.spark-svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.monitor-fallback {
  display: grid;
  place-items: center;
  background:
    linear-gradient(180deg, rgba(11, 29, 60, 0.2), rgba(4, 9, 20, 0.6)),
    repeating-linear-gradient(90deg, transparent 0 18px, rgba(62, 200, 255, 0.04) 18px 19px);
}

.monitor-fallback[hidden] {
  display: none;
}

.spark-svg {
  overflow: visible;
}

.spark-cyan,
.spark-red {
  fill: none;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 420;
  animation: draw 4.8s ease-in-out infinite;
}

.spark-cyan {
  stroke: var(--cyan);
  filter: drop-shadow(0 0 6px var(--cyan));
}

.spark-red {
  stroke: var(--red);
  opacity: 0.7;
  animation-delay: -1.4s;
}

.monitor-chrome {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  display: flex;
  justify-content: space-between;
  padding: 6px 10px;
  border-radius: 10px;
  background: rgba(4, 9, 20, 0.62);
}

.live {
  color: var(--cyan-hot);
}

.volume-floor {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 6px;
  height: 64px;
  margin-top: 28px;
}

.volume-floor i {
  display: block;
  width: 8px;
  border-radius: 6px 6px 0 0;
  background: linear-gradient(180deg, var(--cyan-hot), var(--royal));
  box-shadow: 0 0 12px rgba(62, 200, 255, 0.35);
  animation: bars 1.6s ease-in-out infinite;
}

.section {
  max-width: 1240px;
  margin: 0 auto;
  padding: 88px 28px 20px;
}

.section-head {
  max-width: 720px;
  margin-bottom: 36px;
}

.section-head h2 {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
}

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

.brief-card,
.step,
.thesis,
.chart-console,
.banner-stage {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(18, 48, 95, 0.28), rgba(7, 20, 40, 0.72));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.brief-card {
  padding: 24px;
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.brief-card:hover,
.step:hover {
  transform: translateY(-6px);
  border-color: rgba(232, 184, 74, 0.38);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22), 0 0 0 1px rgba(62, 200, 255, 0.1);
}

.brief-card::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--cyan));
}

.brief-card h3,
.step-body h3 {
  font-family: var(--font-dog);
  font-size: 1.7rem;
  margin: 10px 0;
}

.thesis {
  margin-top: 18px;
  padding: 24px 28px;
  border-radius: var(--radius);
}

.thesis-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.thesis-meta strong {
  font-family: var(--font-mono);
  color: var(--cyan-hot);
}

.buy-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  position: relative;
}

.buy-steps::before {
  content: "";
  position: absolute;
  top: 50px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--cyan), transparent);
  pointer-events: none;
}

.step {
  padding: 22px 18px 20px;
  border-radius: 24px;
  min-height: 100%;
}

.step-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: rgba(4, 9, 20, 0.55);
  border: 1px solid var(--line);
}

.step-icon img {
  width: 28px;
  height: 28px;
}

.step-body a {
  display: inline-block;
  margin-top: 8px;
  color: var(--gold-soft);
  font-weight: 700;
}

.chart-console {
  border-radius: 28px;
  overflow: hidden;
}

.chart-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
}

.chart-bar-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.chart-frame {
  height: min(720px, 78vh);
  background: #06101f;
}

.chart-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.banner-stage {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  min-height: 540px;
}

.join-banner {
  width: 100%;
  height: 100%;
  min-height: 540px;
  object-fit: cover;
  transform: scale(1.04);
  animation: banner-drift 18s ease-in-out infinite alternate;
}

.banner-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 9, 20, 0.82) 0%, rgba(4, 9, 20, 0.28) 58%, rgba(4, 9, 20, 0.55) 100%),
    linear-gradient(180deg, transparent 40%, rgba(4, 9, 20, 0.7));
}

.banner-copy {
  position: absolute;
  inset: auto 0 0;
  padding: 36px;
  max-width: 680px;
}

.banner-copy h3 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin: 8px 0 12px;
}

.footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  padding: 48px 28px 64px;
}

.footer-links {
  display: flex;
  gap: 10px;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  animation: rise 0.8s ease forwards;
}

.reveal[data-delay="70"] { animation-delay: 0.07s; }
.reveal[data-delay="80"] { animation-delay: 0.08s; }
.reveal[data-delay="90"] { animation-delay: 0.09s; }
.reveal[data-delay="140"] { animation-delay: 0.14s; }
.reveal[data-delay="160"] { animation-delay: 0.16s; }
.reveal[data-delay="210"] { animation-delay: 0.21s; }

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

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

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

@keyframes pulse {
  70% { box-shadow: 0 0 0 10px transparent; }
}

@keyframes title-in {
  from { opacity: 0; transform: translateY(16px) scale(0.98); }
}

@keyframes sheen {
  0%, 100% { opacity: 0.15; transform: translateX(-6%); }
  50% { opacity: 0.45; transform: translateX(8%); }
}

@keyframes draw {
  0% { stroke-dashoffset: 420; }
  45%, 100% { stroke-dashoffset: 0; }
}

@keyframes bars {
  0%, 100% { height: 18%; }
  50% { height: var(--h, 70%); }
}

@keyframes banner-drift {
  from { transform: scale(1.04) translateX(0); }
  to { transform: scale(1.08) translateX(-1.5%); }
}

@keyframes scan-drift {
  to { transform: translateY(4px); }
}

@keyframes rise {
  to { opacity: 1; transform: none; }
}

@media (max-width: 980px) {
  .hero-layout,
  .about-grid,
  .buy-steps {
    grid-template-columns: 1fr;
  }

  .buy-steps::before {
    display: none;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 10px 18px 16px;
    background: rgba(4, 9, 20, 0.96);
    border-bottom: 1px solid var(--line);
  }

  .nav-links a {
    padding: 12px 0;
  }

  .nav.is-open .nav-links {
    display: flex;
  }

  .menu-btn {
    display: flex;
  }

  .nav-buy {
    display: none;
  }

  .hero {
    padding-top: 28px;
  }

  .hero h1 {
    font-size: 4.2rem;
  }

  .stat-row {
    grid-template-columns: 1fr;
  }

  .banner-copy {
    padding: 22px;
  }
}

@media (max-width: 640px) {
  .nav {
    padding: 12px 14px;
  }

  .hero,
  .section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero-actions .btn,
  .join-links .btn {
    width: 100%;
  }

  .chart-bar {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .page-grid {
    transform: none;
    height: 100%;
  }

  .pointer-glow {
    display: none;
  }
}
