/* ══════════════════════════════════════════════════════
   SPECTRUM WORKS — site chrome
   Observatory / precision instrument aesthetic.
   Cool muted minimalism with a single cyan→magenta accent.
   ══════════════════════════════════════════════════════ */

:root {
  /* surfaces */
  --bg-deep:       #0A0F1C;
  --bg-surface:    #0E1421;
  --bg-elevated:   #141B2B;
  --line:          #1E2738;
  --line-strong:   #2A3448;

  /* text */
  --text:          #E8EBF0;
  --text-dim:      #A4ADBF;
  --text-muted:    #6A7388;
  --text-faint:    #424B5E;

  /* the prism accent — the only color in the room */
  --prism-cyan:    #00C6FF;
  --prism-mid:     #5F8CFF;
  --prism-magenta: #B84CFF;
  --prism-grad:    linear-gradient(135deg, var(--prism-cyan) 0%, var(--prism-mid) 48%, var(--prism-magenta) 100%);
  --prism-vert:    linear-gradient(to bottom, var(--prism-cyan) 0%, var(--prism-mid) 48%, var(--prism-magenta) 100%);

  /* type — G · Industrial Blueprint */
  --ff-sans:   'Archivo', system-ui, sans-serif;
  --ff-mono:   'IBM Plex Mono', ui-monospace, monospace;
  --ff-accent: 'Archivo Narrow', sans-serif;

  /* scale */
  --max-w: 1240px;
  --gutter: clamp(1.25rem, 3vw, 2.5rem);
}

/* ── reset ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  background: var(--bg-deep);
  color: var(--text);
  font-family: var(--ff-sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  min-height: 100vh;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

/* atmosphere — a very faint starfield grain on the deep surface */
body::before {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(95, 140, 255, 0.08), transparent 60%),
    radial-gradient(ellipse 60% 40% at 100% 100%, rgba(184, 76, 255, 0.06), transparent 60%);
}
body::after {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.035;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='120' height='120'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.6 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  mix-blend-mode: screen;
}
main, .nav, .footer { position: relative; z-index: 1; }

/* ── NAV ─────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px var(--gutter);
  transition: backdrop-filter 240ms ease, background-color 240ms ease, border-color 240ms ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(10, 15, 28, 0.72);
  -webkit-backdrop-filter: blur(12px) saturate(120%);
  backdrop-filter: blur(12px) saturate(120%);
  border-bottom-color: var(--line);
}
.nav-brand {
  display: inline-flex; align-items: center; gap: 12px;
  color: var(--text);
}
.nav-mark {
  display: inline-block; width: 26px; height: 24px;
}
.nav-word {
  font-family: var(--ff-sans);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text);
}
.nav-links {
  display: flex;
  gap: 28px;
}
.nav-links a {
  font-family: var(--ff-mono);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-dim);
  transition: color 160ms ease;
  position: relative;
  padding: 4px 0;
}
.nav-links a::after {
  content: ""; position: absolute;
  left: 0; right: 100%;
  bottom: -2px; height: 1px;
  background: var(--prism-grad);
  transition: right 220ms ease;
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { right: 0; }

/* ── HERO ────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px var(--gutter) 80px;
  overflow: hidden;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(164, 173, 191, 0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(164, 173, 191, 0.05) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 70% 50% at 50% 50%, black 40%, transparent 90%);
  -webkit-mask-image: radial-gradient(ellipse 70% 50% at 50% 50%, black 40%, transparent 90%);
  pointer-events: none;
}
/* vertical prism beam — a single subtle hairline through the hero */
.hero-beam {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(0, 198, 255, 0.18) 28%,
    rgba(184, 76, 255, 0.18) 72%,
    transparent 100%
  );
  opacity: 0.7;
  pointer-events: none;
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 28px;
}

.hero-logo {
  width: min(clamp(340px, 62vw, 640px), 64vh);
  max-width: 100%;
  margin: 0 auto;
  line-height: 0;
  filter: drop-shadow(0 40px 80px rgba(0, 0, 0, 0.45))
          drop-shadow(0 0 60px rgba(95, 140, 255, 0.08));
}
.hero-logo img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-eyebrow {
  font-family: var(--ff-sans);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding-left: 0.5em;
}

.hero-scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-mono);
  font-size: 0.62rem;
  letter-spacing: 0.35em;
  color: var(--text-faint);
  text-transform: uppercase;
}
.hero-scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--text-faint), transparent);
  animation: scroll-hint 2.8s ease-in-out infinite;
  transform-origin: top;
}
@keyframes scroll-hint {
  0%   { transform: scaleY(0.2); opacity: 0.2; }
  50%  { transform: scaleY(1);   opacity: 1; }
  100% { transform: scaleY(0.2); opacity: 0.2; }
}

/* ── DIVIDER — single prism hairline between sections ── */
.divider {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  padding: 8px 0;
}
.divider-line {
  display: block;
  width: min(520px, 60%);
  height: 1px;
  background: var(--prism-grad);
  opacity: 0.5;
  mask-image: linear-gradient(to right, transparent 0%, black 18%, black 82%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 18%, black 82%, transparent 100%);
}

/* ── SECTION HEAD ─────────────────────────────────── */
.section-head {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 88px var(--gutter) 36px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: baseline;
  gap: 28px;
}
.section-head--narrow {
  max-width: 760px;
}
.section-num {
  font-family: var(--ff-mono);
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  color: var(--text-muted);
}
.section-title {
  font-family: var(--ff-sans);
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3.25rem);
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--text);
  text-transform: uppercase;
}
.section-meta {
  font-family: var(--ff-mono);
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  color: var(--text-faint);
  text-transform: uppercase;
  text-align: right;
}
@media (max-width: 640px) {
  .section-head {
    grid-template-columns: auto 1fr;
    row-gap: 8px;
  }
  .section-meta {
    grid-column: 1 / -1;
    text-align: left;
  }
}

/* ══════════════════════════════════════════════════
   APP CARDS — each one its own brand universe
   ══════════════════════════════════════════════════ */
.apps { padding-bottom: 40px; }

.app-card {
  position: relative;
  margin: 16px var(--gutter);
  overflow: hidden;
  border-radius: 4px;
}
@media (max-width: 640px) {
  .app-card { margin: 12px 0; border-radius: 0; }
}
.app-card-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 72px var(--gutter);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 64px;
  align-items: center;
}
@media (max-width: 960px) {
  .app-card-inner {
    grid-template-columns: 1fr;
    gap: 44px;
    padding: 56px var(--gutter);
  }
}
.app-card-meta { min-width: 0; }
.app-card-header {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 28px;
}
.app-card-mark {
  width: 54px; height: 54px;
  display: grid; place-items: center;
  border: 1px solid currentColor;
  border-radius: 2px;
  opacity: 0.9;
}
.app-card-titles { display: flex; flex-direction: column; gap: 6px; }
.app-card-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  opacity: 0.55;
}
.app-card-name {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  line-height: 1;
  letter-spacing: 0.04em;
}
.app-card-body {
  font-size: 1rem;
  line-height: 1.7;
  max-width: 46ch;
  margin-bottom: 32px;
}
.app-card-facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 18px 28px;
  padding: 20px 0;
  border-top: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  margin-bottom: 32px;
  opacity: 0.9;
}
.app-card-facts > div { display: flex; flex-direction: column; gap: 6px; }
.app-card-facts dt {
  font-size: 0.66rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  opacity: 0.55;
}
.app-card-facts dd { font-size: 0.92rem; }

.pill {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid currentColor;
}
.app-card-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border: 1px solid currentColor;
  border-radius: 2px;
  font-family: var(--ff-sans);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  transition: background-color 200ms ease, color 200ms ease, transform 200ms ease;
}
.cta svg { transition: transform 200ms ease; }
.cta:hover svg { transform: translateX(3px); }

.store-badges { display: flex; gap: 10px; flex-wrap: wrap; }
.store-badge {
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
  padding: 10px 14px;
  border: 1px solid currentColor;
  border-radius: 4px;
  opacity: 0.55;
  min-width: 148px;
}
.store-badge-sub {
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.7;
}
.store-badge-main {
  font-size: 0.92rem;
  font-weight: 600;
}

.app-card-visual { min-width: 0; }

/* ── LOADOUT CARD — carbon / amber / JetBrains Mono ── */
.app-card--loadout {
  background: #0A0A0A;
  color: #EAEAEA;
  border: 1px solid #1C1C1C;
  font-family: 'Manrope', var(--ff-sans);
}
.app-card--loadout .app-card-eyebrow,
.app-card--loadout .app-card-facts dt,
.app-card--loadout .store-badge-sub,
.app-card--loadout .pill {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
}
.app-card--loadout .app-card-name {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-weight: 700;
  color: #F5F5F5;
}
.app-card--loadout .app-card-facts dd {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 0.88rem;
}
.app-card--loadout .app-card-mark { color: #FFB300; }
.app-card--loadout .pill--soon {
  color: #FFB300; border-color: #4A3500; background: rgba(255, 179, 0, 0.06);
}
.app-card--loadout .cta--loadout {
  color: #0A0A0A;
  background: #FFB300;
  border-color: #FFB300;
}
.app-card--loadout .cta--loadout:hover {
  background: #FFC838;
  border-color: #FFC838;
}
.app-card--loadout .store-badge { color: #EAEAEA; border-color: #262626; opacity: 0.7; }
.app-card--loadout .app-card-facts { border-color: #1F1F1F; }

.loadout-strip {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px var(--gutter);
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 0.64rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #8A8A8A;
  border-bottom: 1px solid #1C1C1C;
  background: #0A0A0A;
}
.loadout-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #FFB300;
  box-shadow: 0 0 8px rgba(255, 179, 0, 0.6);
}
.loadout-strip-sep { opacity: 0.5; }
.loadout-strip-right { margin-left: auto; color: #FFB300; }

.loadout-phone {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.loadout-phone-bezel {
  position: relative;
  width: 100%;
  max-width: 280px;
  aspect-ratio: 9 / 19.5;
  background: #000;
  border-radius: 36px;
  padding: 14px;
  box-shadow:
    0 0 0 1px #2a2a2a inset,
    0 0 0 2px #0a0a0a,
    0 30px 60px rgba(0, 0, 0, 0.6),
    0 0 0 3px rgba(255, 179, 0, 0.04);
  overflow: hidden;
}
.loadout-phone-bezel img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 24px;
  display: block;
}
.loadout-phone-notch {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 96px; height: 22px;
  background: #000;
  border-radius: 999px;
  z-index: 2;
}
.loadout-phone-caption {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 0.62rem;
  letter-spacing: 0.26em;
  color: #FFB300;
  opacity: 0.75;
}
.loadout-thumbs {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
}
.loadout-thumbs img {
  width: 100%;
  aspect-ratio: 9 / 19.5;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid #1C1C1C;
  opacity: 0.65;
  transition: opacity 220ms ease, transform 220ms ease;
}
.loadout-thumbs img:hover { opacity: 1; transform: translateY(-2px); }

/* ── PRISM CARD — soft warm bone / Atkinson Hyperlegible ── */
.app-card--prism {
  background: #FAF7F2;
  color: #1D2026;
  border: 1px solid #EAE3D7;
  font-family: 'Atkinson Hyperlegible', var(--ff-sans);
}
.app-card--prism .app-card-name {
  font-family: 'Atkinson Hyperlegible', var(--ff-sans);
  font-weight: 700;
  letter-spacing: 0;
  color: #1D2026;
  font-size: clamp(2rem, 3.2vw, 2.75rem);
}
.app-card--prism .app-card-body {
  font-size: 1.05rem;
  line-height: 1.75;
  color: #3A4047;
}
.app-card--prism .app-card-eyebrow,
.app-card--prism .app-card-facts dt,
.app-card--prism .store-badge-sub,
.app-card--prism .pill {
  font-family: var(--ff-mono);
}
.app-card--prism .app-card-facts {
  border-color: #E5DFD5;
}
.app-card--prism .app-card-facts dt { color: #7C8087; }
.app-card--prism .app-card-mark { border: none; color: transparent; }
.app-card--prism .app-card-mark svg { width: 54px; height: 54px; }
.app-card--prism .pill--soft {
  color: #D04041; border-color: #E8C8C8; background: #FBECEC;
}
.app-card--prism .store-badge--soft {
  color: #4A5058;
  border-color: #D9D3C8;
  background: #FFFFFF;
  opacity: 1;
}

.prism-bar {
  position: relative;
  height: 4px;
  background: #E5DFD5;
  overflow: hidden;
}
.prism-bar-fill {
  position: absolute; inset: 0;
  width: 0%;
  background: linear-gradient(90deg, #D04041 0%, #E36B6B 60%, #F08A89 100%);
  transition: width 1400ms cubic-bezier(0.22, 0.8, 0.2, 1);
}

/* the demo mockup — shows what Prism looks like in-app */
.prism-mockup {
  width: 100%;
  max-width: 460px;
  margin: 0 auto;
  background: #FFFFFF;
  border: 1px solid #E8E1D3;
  border-radius: 14px;
  box-shadow: 0 24px 50px rgba(56, 48, 35, 0.12);
  padding: 26px 24px 22px;
}
.prism-mockup-chrome {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.prism-mockup-view { display: flex; flex-direction: column; gap: 18px; }
.prism-mockup-label {
  font-family: 'Atkinson Hyperlegible', sans-serif;
  font-weight: 700;
  font-size: 2rem;
  color: #1D2026;
  letter-spacing: -0.01em;
  line-height: 1;
}
.prism-mockup-track {
  position: relative;
  height: 18px;
  background: #F0EBE0;
  border-radius: 4px;
  overflow: hidden;
}
.prism-mockup-fill {
  height: 100%;
  width: 45%;
  background: linear-gradient(90deg, #D04041, #E05555);
  border-radius: 4px;
  transition: width 2200ms cubic-bezier(0.25, 0.8, 0.3, 1);
}
.prism-mockup-tick {
  position: absolute;
  top: -4px; bottom: -4px;
  width: 2px;
  background: #1D2026;
  opacity: 0.85;
}
.prism-mockup-foot {
  display: flex;
  justify-content: space-between;
  font-family: 'Atkinson Hyperlegible', sans-serif;
  font-size: 0.95rem;
  color: #3A4047;
}
.prism-mockup-views {
  display: flex;
  justify-content: space-between;
  gap: 4px;
  padding-top: 14px;
  border-top: 1px solid #EFE9DD;
}
.prism-mockup-views span {
  flex: 1;
  text-align: center;
  font-family: 'Atkinson Hyperlegible', sans-serif;
  font-size: 0.8rem;
  color: #7C8087;
  padding: 8px 2px;
  border-radius: 6px;
}
.prism-mockup-views span.active {
  color: #1D2026;
  background: #F3EDE0;
}

/* ── ABOUT ────────────────────────────────────────── */
.about { padding: 24px 0 80px; }
.about-column {
  max-width: 640px;
  margin: 0 auto;
  padding: 0 var(--gutter);
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  line-height: 1.65;
  color: var(--text-dim);
}
.about-column > * + * { margin-top: 1.2em; }
.about-lead {
  font-size: clamp(1.35rem, 2.2vw, 1.7rem);
  line-height: 1.45;
  color: var(--text);
  letter-spacing: -0.005em;
}
.about em {
  font-family: var(--ff-accent);
  font-style: normal;
  font-weight: 700;
  font-size: 1em;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0 0.1em;
  background: linear-gradient(to bottom, transparent 62%, rgba(95, 140, 255, 0.2) 62%, rgba(184, 76, 255, 0.2) 100%);
  background-size: 100% 100%;
}
.about-meta {
  margin-top: 2em;
  font-family: var(--ff-mono);
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  color: var(--text-muted);
}
.about-meta strong {
  color: var(--text);
  font-weight: 500;
}

/* ── CONNECT ──────────────────────────────────────── */
.connect { padding: 24px 0 120px; }
.connect-list {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  flex-direction: column;
  gap: 0;
}
.connect-list > div {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 28px;
  align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.connect-list > div:first-child { border-top: 1px solid var(--line); }
.connect-list dt {
  font-family: var(--ff-mono);
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.connect-list dd {
  font-family: var(--ff-sans);
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  color: var(--text);
}
.connect-list dd a {
  position: relative;
  display: inline-block;
  padding-bottom: 2px;
}
.connect-list dd a::after {
  content: ""; position: absolute;
  left: 0; right: 0; bottom: 0; height: 1px;
  background: var(--prism-grad);
  transform-origin: left;
  transform: scaleX(0.3);
  opacity: 0.6;
  transition: transform 300ms cubic-bezier(0.2, 0.7, 0.3, 1), opacity 300ms ease;
}
.connect-list dd a:hover::after {
  transform: scaleX(1);
  opacity: 1;
}
@media (max-width: 520px) {
  .connect-list > div { grid-template-columns: 1fr; gap: 8px; }
}

/* ── FOOTER ───────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--line);
  padding: 22px var(--gutter);
  margin-top: 40px;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--ff-mono);
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  color: var(--text-faint);
  text-transform: uppercase;
}
.footer-mid { opacity: 0.9; }
@media (max-width: 640px) {
  .footer-inner { flex-direction: column; gap: 4px; text-align: center; }
}

/* ══════════════════════════════════════════════════
   REVEAL ANIMATIONS (section entry)
   ══════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 800ms ease, transform 800ms cubic-bezier(0.2, 0.7, 0.2, 1);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── REDUCED MOTION ─────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .reveal { opacity: 1 !important; transform: none !important; }
  .hero-scroll-line,
  .hero-caption .dot { animation: none !important; }
}

/* selection */
::selection {
  background: rgba(184, 76, 255, 0.35);
  color: var(--text);
}
