/* ============================================================
   qr-code-generator.store — unique purple/cyan dark UI
   Super-readable text. Creative animated atmosphere (NOT generate grid).
   ============================================================ */

:root {
  --bg: #0a0614;
  --bg-elev: #1a1228;
  --ink: #ffffff;
  --line: #5b4a7a;
  --text: #faf8ff;
  --muted: #e9e2ff;
  --accent: #c084fc;
  --accent-2: #22d3ee;
  --accent-ink: #0a0614;
  --signal: #e879f9;
  --font-brand: "Bricolage Grotesque", sans-serif;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Sora", sans-serif;
  --pad: clamp(14px, 4vw, 48px);
  --max: 1120px;
  --page: 1400px;
}

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

html {
  background-color: var(--bg) !important;
}

body {
  margin: 0;
  width: 100%;
  max-width: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  font: 16px/1.55 var(--font-body);
  color: var(--text);
  background: transparent !important;
  overflow-x: clip;
  position: relative;
}

img, video, canvas, svg, iframe, embed, object {
  max-width: 100%;
  height: auto;
}

p, h1, h2, h3, li, a, span, label, button {
  overflow-wrap: anywhere;
  word-break: break-word;
}

a { color: inherit; }

/* —— UNIQUE atmosphere: laser beams + drifting QR modules (not hatch/grid) —— */
.atmosphere {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  background:
    radial-gradient(ellipse 55% 40% at 85% 10%, rgba(168, 85, 247, 0.45), transparent 55%),
    radial-gradient(ellipse 40% 35% at 10% 85%, rgba(34, 211, 238, 0.22), transparent 50%),
    linear-gradient(160deg, #07040f 0%, #140820 50%, #05030a 100%);
}

.atm-laser {
  position: absolute;
  opacity: 0.4;
  filter: blur(0.6px);
  will-change: transform, opacity;
}

.atm-laser--v {
  top: -25%;
  bottom: -25%;
  left: 12%;
  width: 2px;
  background: linear-gradient(180deg, transparent, #e879f9, #22d3ee, transparent);
  box-shadow: 0 0 28px 5px rgba(232, 121, 249, 0.4);
  animation: laser-v 38s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
}

.atm-laser--h {
  left: -25%;
  right: -25%;
  top: 48%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #22d3ee, #a855f7, transparent);
  box-shadow: 0 0 26px 5px rgba(34, 211, 238, 0.4);
  animation: laser-h 32s cubic-bezier(0.4, 0.02, 0.6, 0.98) infinite;
}

.atm-laser--diag {
  width: 160%;
  height: 2px;
  top: 28%;
  left: -30%;
  background: linear-gradient(90deg, transparent, rgba(232, 121, 249, 0.65), transparent);
  transform-origin: center;
  animation: laser-diag 44s cubic-bezier(0.42, 0, 0.58, 1) infinite;
}

.atm-glow {
  position: absolute;
  width: min(50vw, 420px);
  aspect-ratio: 1;
  right: -8%;
  top: 8%;
  border-radius: 40% 60% 55% 45%;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.35), transparent 68%);
  animation: glow-morph 22s ease-in-out infinite;
}

.atm-modules {
  position: absolute;
  inset: 0;
}

.atm-mod {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 3px;
  background: #22d3ee;
  opacity: 0.28;
  animation: mod-float 14s ease-in-out infinite;
}

.atm-mod:nth-child(odd) { background: #e879f9; }
.atm-mod:nth-child(3n) { background: #a855f7; width: 14px; height: 14px; border-radius: 4px; }
.atm-mod:nth-child(1) { left: 8%; top: 22%; animation-delay: 0s; animation-duration: 16s; }
.atm-mod:nth-child(2) { left: 22%; top: 70%; animation-delay: -3s; animation-duration: 19s; }
.atm-mod:nth-child(3) { left: 48%; top: 14%; animation-delay: -7s; animation-duration: 17s; }
.atm-mod:nth-child(4) { left: 72%; top: 38%; animation-delay: -1.5s; animation-duration: 21s; }
.atm-mod:nth-child(5) { left: 86%; top: 68%; animation-delay: -9s; animation-duration: 15s; }
.atm-mod:nth-child(6) { left: 14%; top: 48%; animation-delay: -5s; animation-duration: 18s; }
.atm-mod:nth-child(7) { left: 58%; top: 78%; animation-delay: -11s; animation-duration: 20s; }
.atm-mod:nth-child(8) { left: 38%; top: 56%; animation-delay: -2s; animation-duration: 16s; width: 7px; height: 7px; }
.atm-mod:nth-child(9) { left: 78%; top: 18%; animation-delay: -8s; animation-duration: 22s; }
.atm-mod:nth-child(10) { left: 30%; top: 32%; animation-delay: -4s; animation-duration: 17s; }

/* Slow, soft, uneven paths — feels random */
@keyframes laser-v {
  0% { transform: translate3d(0, 0, 0); opacity: 0.22; }
  18% { transform: translate3d(28vw, 4vh, 0); opacity: 0.45; }
  37% { transform: translate3d(8vw, -3vh, 0); opacity: 0.28; }
  55% { transform: translate3d(52vw, 2vh, 0); opacity: 0.5; }
  72% { transform: translate3d(22vw, -5vh, 0); opacity: 0.32; }
  88% { transform: translate3d(40vw, 3vh, 0); opacity: 0.42; }
  100% { transform: translate3d(0, 0, 0); opacity: 0.22; }
}
@keyframes laser-h {
  0% { transform: translate3d(0, 0, 0); opacity: 0.2; }
  14% { transform: translate3d(4vw, -38vh, 0); opacity: 0.48; }
  32% { transform: translate3d(-3vw, 22vh, 0); opacity: 0.3; }
  48% { transform: translate3d(2vw, -48vh, 0); opacity: 0.55; }
  63% { transform: translate3d(-5vw, 36vh, 0); opacity: 0.35; }
  79% { transform: translate3d(3vw, -18vh, 0); opacity: 0.42; }
  100% { transform: translate3d(0, 0, 0); opacity: 0.2; }
}
@keyframes laser-diag {
  0% { transform: rotate(-18deg) translate3d(-8%, 0, 0); opacity: 0.18; }
  25% { transform: rotate(-14deg) translate3d(6%, 8vh, 0); opacity: 0.38; }
  50% { transform: rotate(-22deg) translate3d(12%, -6vh, 0); opacity: 0.28; }
  75% { transform: rotate(-16deg) translate3d(-4%, 10vh, 0); opacity: 0.4; }
  100% { transform: rotate(-18deg) translate3d(-8%, 0, 0); opacity: 0.18; }
}
@keyframes glow-morph {
  0%, 100% { border-radius: 40% 60% 55% 45%; transform: scale(1) rotate(0deg); }
  50% { border-radius: 60% 40% 45% 55%; transform: scale(1.08) rotate(8deg); }
}
@keyframes mod-float {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); opacity: 0.18; }
  33% { transform: translate3d(6px, -14px, 0) scale(1.15); opacity: 0.4; }
  66% { transform: translate3d(-8px, 10px, 0) scale(0.95); opacity: 0.28; }
}
@keyframes rise {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes mark-spin {
  0%, 100% { transform: rotate(0deg); }
  50% { transform: rotate(-4deg) scale(1.04); }
}

.top, .hero, .press, .section, .foot, .article, .section--page, .sitemap-page {
  position: relative;
  z-index: 1;
}

/* —— Header —— */
header.top,
.top {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 10px !important;
  padding: 14px var(--pad) !important;
  width: 100% !important;
  max-width: var(--page) !important;
  margin: 0 auto !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

.top::before, .top::after { content: none !important; display: none !important; }

.top .brand {
  text-decoration: none !important;
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  min-width: 0 !important;
  flex: 1 1 auto !important;
  max-width: min(100%, 72%) !important;
  color: #fff !important;
}

.top .brand__mark {
  display: grid !important;
  place-items: center !important;
  width: 42px !important;
  height: 42px !important;
  flex: 0 0 42px !important;
  border: 0 !important;
  background: transparent !important;
  border-radius: 0 !important;
  animation: mark-spin 5s ease-in-out infinite;
  overflow: visible !important;
}

.top .brand__mark svg {
  display: block;
  width: 42px;
  height: 42px;
}

.top .brand__text {
  display: grid !important;
  gap: 2px !important;
  min-width: 0 !important;
}

.top .brand__name {
  font-family: var(--font-brand) !important;
  font-weight: 700 !important;
  font-size: clamp(0.88rem, 2.4vw, 1.12rem) !important;
  letter-spacing: -0.02em !important;
  text-transform: none !important;
  line-height: 1.15 !important;
  color: #ffffff !important;
}

.top .brand__name em {
  font-style: normal !important;
  background: linear-gradient(115deg, #22d3ee 0%, #a855f7 45%, #e879f9 100%) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  color: transparent !important;
  -webkit-text-fill-color: transparent !important;
}

.top .brand__tag {
  font-size: 0.65rem !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  color: #e9e2ff !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}

.top .top__actions {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
}

.top .btn {
  appearance: none !important;
  border: 1px solid #c084fc !important;
  background: transparent !important;
  color: #ffffff !important;
  font: 600 0.7rem/1.2 var(--font-body) !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
  padding: 10px 12px !important;
  border-radius: 12px !important;
  clip-path: none !important;
  transition: background 0.2s, color 0.2s, border-color 0.2s !important;
}

.top .btn:hover {
  background: rgba(34, 211, 238, 0.2) !important;
  border-color: #22d3ee !important;
  color: #ffffff !important;
}

.top .btn--signal {
  background: linear-gradient(120deg, #a855f7, #7c3aed) !important;
  border-color: transparent !important;
  color: #ffffff !important;
}

.top .btn--signal:hover {
  background: linear-gradient(120deg, #22d3ee, #e879f9) !important;
  color: #0a0614 !important;
}

.top .lang {
  font: 600 0.7rem/1 var(--font-body) !important;
  color: #ffffff !important;
  border: 1px solid #5b4a7a !important;
  padding: 10px 12px !important;
  background: #1a1228 !important;
  border-radius: 12px !important;
}

.top .lang:hover {
  border-color: #22d3ee !important;
  color: #ffffff !important;
}

.btn {
  appearance: none;
  border: 1px solid #5b4a7a;
  background: transparent;
  color: #ffffff;
  font: 600 0.7rem/1.2 var(--font-body);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 10px 14px;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.2s;
}

.btn:hover {
  border-color: #22d3ee;
  color: #ffffff;
  background: rgba(34, 211, 238, 0.15);
}

.btn--signal {
  border: 0;
  background: linear-gradient(120deg, #a855f7, #7c3aed);
  color: #ffffff;
}
.btn--signal:hover {
  background: linear-gradient(120deg, #22d3ee, #e879f9);
  color: #0a0614;
}

.btn--lime,
.btn--teal {
  border: 0;
  background: linear-gradient(125deg, #a855f7, #22d3ee);
  color: #0a0614;
  font-weight: 800;
  border-radius: 12px;
}
.btn--lime:hover,
.btn--teal:hover {
  background: linear-gradient(125deg, #22d3ee, #e879f9);
  color: #0a0614;
  transform: translateY(-1px);
}

.lang-wrap { position: relative; flex: 0 0 auto; }

.lang-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 6px);
  margin: 0;
  padding: 8px;
  list-style: none;
  background: #1a1228;
  border: 1px solid #5b4a7a;
  border-radius: 14px;
  min-width: 180px;
  max-height: min(70vh, 420px);
  overflow: auto;
  z-index: 40;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.5);
}

.lang-option {
  width: 100%;
  text-align: left;
  border: 0;
  background: transparent;
  padding: 10px 12px;
  font: 500 0.85rem/1.2 var(--font-body);
  color: #ffffff;
  cursor: pointer;
  border-radius: 8px;
}
.lang-option:hover,
.lang-option.active {
  background: rgba(168, 85, 247, 0.4);
  color: #ffffff;
}

/* —— Hero —— */
.hero {
  width: 100%;
  max-width: var(--page);
  margin: 0 auto;
  padding: clamp(14px, 3vw, 28px) var(--pad) clamp(10px, 2vw, 18px);
  animation: rise 0.6s ease both;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero__eyebrow {
  display: inline-block;
  margin: 0 0 8px;
  padding: 4px 10px;
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #22d3ee;
  border: 1px solid rgba(34, 211, 238, 0.55);
  border-radius: 999px;
  background: rgba(34, 211, 238, 0.12);
}

.hero__title {
  margin: 0;
  max-width: 36rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: #ffffff;
  overflow-wrap: normal;
  word-break: normal;
  text-align: center;
}

.hero__title-line {
  display: block;
  overflow-wrap: normal;
  word-break: normal;
}

.hero__lead {
  margin: 10px 0 0;
  max-width: 34rem;
  font-size: clamp(0.82rem, 1.4vw, 0.92rem);
  color: #e9e2ff;
  line-height: 1.45;
  overflow-wrap: normal;
  word-break: normal;
  text-align: center;
}

.hero__lead-line {
  display: block;
  overflow-wrap: normal;
  word-break: normal;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
  justify-content: center;
  width: 100%;
  max-width: 34rem;
}

.hero__cta .btn { min-height: 40px; padding: 10px 14px; }

.press {
  width: 100%;
  max-width: var(--page);
  margin: 0 auto;
  padding: 8px var(--pad) clamp(36px, 6vw, 64px);
  animation: rise 0.7s 0.06s ease both;
}

.press__label {
  display: block;
  margin: 0 0 12px;
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #22d3ee;
  font-weight: 700;
}

.press .studio,
.press .generator,
.press main.studio,
#make .studio {
  background: rgba(22, 14, 40, 0.92);
  border: 1px solid rgba(168, 85, 247, 0.45);
  border-radius: 18px;
  box-shadow: 0 0 0 1px rgba(34, 211, 238, 0.1), 0 24px 60px rgba(0, 0, 0, 0.4);
}

.section,
.section--page {
  width: 100%;
  max-width: var(--page);
  margin: 0 auto;
  padding: clamp(22px, 4vw, 44px) var(--pad);
}

.section__kicker {
  margin: 0 0 8px;
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #22d3ee;
  font-weight: 700;
}

.section__title {
  margin: 0 0 14px;
  max-width: 36rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  line-height: 1.25;
  color: #ffffff;
}

.guide-rail { display: grid; gap: 10px; }

.guide-rail a {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  text-decoration: none;
  background: rgba(26, 18, 40, 0.9);
  border: 1px solid #5b4a7a;
  border-radius: 14px;
  transition: border-color 0.2s, transform 0.2s, background 0.2s;
}

.guide-rail a:hover {
  border-color: #22d3ee;
  background: rgba(168, 85, 247, 0.22);
  transform: translateY(-1px);
}

.guide-rail__name { font-weight: 600; color: #ffffff; }
.guide-rail a:hover .guide-rail__name { color: #ffffff; }
.guide-rail__meta {
  flex: 0 0 auto;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #e9e2ff;
}
.guide-rail a:hover .guide-rail__meta { color: #22d3ee; }

.article {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  padding: clamp(22px, 4vw, 40px) var(--pad) clamp(44px, 7vw, 72px);
}

.article h1 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 3.2vw, 1.75rem);
  line-height: 1.2;
  color: #ffffff;
}

.article h2 {
  margin: 26px 0 8px;
  font-family: var(--font-brand);
  font-size: 1.05rem;
  color: #22d3ee;
}

.article-lead,
.article p { color: #e9e2ff; }
.article-cta { margin-top: 28px; }

/* —— Size calculator (store style: purple/cyan, calm cards, no motion) —— */
.qr-size-calc--store {
  margin: 28px 0 8px;
  padding: 0;
  border: 1px solid rgba(192, 132, 252, 0.35);
  background:
    linear-gradient(160deg, rgba(168, 85, 247, 0.14), transparent 55%),
    rgba(26, 18, 40, 0.85);
  border-radius: 14px;
  overflow: hidden;
}

.qr-size-calc--store .qsc-store-head {
  padding: 18px 20px 14px;
  border-bottom: 1px solid rgba(91, 74, 122, 0.65);
}

.qr-size-calc--store .qsc-kicker {
  margin: 0 0 6px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-2);
  font-weight: 600;
}

.qr-size-calc--store .qsc-store-head h3 {
  margin: 0 0 6px;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
}

.qr-size-calc--store .qsc-sub {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
  max-width: 42ch;
}

.qr-size-calc--store .qsc-store-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 0;
}

@media (max-width: 720px) {
  .qr-size-calc--store .qsc-store-grid { grid-template-columns: 1fr; }
}

.qr-size-calc--store .qsc-store-presets {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px;
  border-right: 1px solid rgba(91, 74, 122, 0.55);
}

@media (max-width: 720px) {
  .qr-size-calc--store .qsc-store-presets {
    border-right: none;
    border-bottom: 1px solid rgba(91, 74, 122, 0.55);
  }
}

.qr-size-calc--store .qsc-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 12px 14px;
  text-align: left;
  font: inherit;
  cursor: pointer;
  color: #faf8ff;
  background: rgba(10, 6, 20, 0.55);
  border: 1px solid rgba(91, 74, 122, 0.7);
  border-radius: 10px;
}

.qr-size-calc--store .qsc-card:hover {
  border-color: rgba(34, 211, 238, 0.55);
}

.qr-size-calc--store .qsc-card.is-on {
  border-color: var(--accent);
  background: rgba(168, 85, 247, 0.22);
  box-shadow: inset 3px 0 0 var(--accent-2);
}

.qr-size-calc--store .qsc-card-label {
  font-weight: 600;
  font-size: 13px;
}

.qr-size-calc--store .qsc-card-meta {
  font-size: 12px;
  color: var(--accent-2);
  font-variant-numeric: tabular-nums;
}

.qr-size-calc--store .qsc-store-panel {
  padding: 16px 18px 18px;
}

.qr-size-calc--store .qsc-label {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 10px;
  font-size: 13px;
  color: #faf8ff;
}

.qr-size-calc--store .qsc-label strong {
  color: var(--signal);
  font-variant-numeric: tabular-nums;
}

.qr-size-calc--store input[type="range"] {
  width: 100%;
  height: 5px;
  margin: 0 0 16px;
  appearance: none;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  border: none;
  outline: none;
}

.qr-size-calc--store input[type="range"]::-webkit-slider-thumb {
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, #22d3ee, #a855f7);
  border: 2px solid #0a0614;
  cursor: pointer;
}

.qr-size-calc--store input[type="range"]::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, #22d3ee, #a855f7);
  border: 2px solid #0a0614;
  cursor: pointer;
}

.qr-size-calc--store .qsc-store-out {
  padding: 14px 16px;
  border-radius: 10px;
  background: rgba(7, 4, 15, 0.7);
  border: 1px solid rgba(34, 211, 238, 0.22);
}

.qr-size-calc--store .qsc-big {
  margin: 0 0 6px;
  font-family: var(--font-display);
  font-size: 1.35rem;
  line-height: 1.25;
  color: #fff;
}

.qr-size-calc--store .qsc-big em {
  font-style: normal;
  color: var(--accent-2);
}

.qr-size-calc--store .qsc-note {
  margin: 0;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.45;
}

.sitemap-page {
  width: 100%;
  max-width: var(--page);
  margin: 0 auto;
  padding: clamp(24px, 4vw, 48px) var(--pad) clamp(48px, 8vw, 80px);
}

.sitemap-page h1 {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 3.2vw, 1.75rem);
  color: #ffffff;
}

.sitemap-page .sitemap-lead {
  margin: 0 0 28px;
  color: #e9e2ff;
  max-width: 48ch;
}

.sitemap-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.sitemap-block {
  padding: 18px;
  background: rgba(26, 18, 40, 0.9);
  border: 1px solid #5b4a7a;
  border-radius: 14px;
}

.sitemap-block h2 {
  margin: 0 0 12px;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #22d3ee;
}

.sitemap-block ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.sitemap-block a {
  text-decoration: none;
  color: #ffffff;
  font-size: 0.95rem;
}
.sitemap-block a:hover { color: #22d3ee; }

.foot {
  width: 100%;
  max-width: var(--page);
  margin: 0 auto;
  padding: 28px var(--pad) 48px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid #5b4a7a;
}

.foot-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 18px;
}

.foot-nav a {
  text-decoration: none;
  font-size: 0.85rem;
  color: #e9e2ff;
}
.foot-nav a:hover { color: #22d3ee; }

.foot-biz {
  appearance: none;
  border: 0;
  background: transparent;
  color: #e879f9;
  font: 600 0.85rem/1.2 var(--font-body);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.foot-biz:hover { color: #22d3ee; }

@media (max-width: 720px) {
  .top .btn { padding: 9px 8px !important; font-size: 0.62rem !important; }
  .hero__cta .btn { flex: 1 1 100%; }
  .guide-rail a { flex-direction: column; align-items: flex-start; gap: 6px; }
}

@media (prefers-reduced-motion: reduce) {
  .atm-laser,
  .atm-glow,
  .atm-mod,
  .top .brand__mark,
  .hero,
  .press,
  .stage::before {
    animation: none !important;
  }
}
