:root {
  color-scheme: light;

  /* Mario & Nintendo Arcade Palette */
  --game-red: #e52521;
  --game-red-deep: #b31613;
  --game-yellow: #fbd000;
  --lime: #ffe45c;
  --game-green: #00a651;
  --game-green-deep: #007539;
  --arcade-blue: #4173ff;
  --sky-blue: #0099e5;
  --arcade-pink: #ff4f99;
  --arcade-orange: #ff7700;

  /* Theme Foundations */
  --night: #09132b;
  --night-soft: #122147;
  --night-card: #152452;
  --ink: #0d152a;
  --muted: #536280;
  --paper: #f0f4fd;
  --white: #ffffff;
  --line: #dbe4f8;
  --cyan: #37d7ea;
  --coral: #ff5f94;
  --violet: #8e62ff;

  /* Chunky 3D Gamer Tokens */
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --border-game: 3px solid #09132b;
  --shadow-game: 4px 4px 0 #09132b;
  --shadow-game-lg: 0 8px 0 #09132b, 0 16px 36px rgba(9, 19, 43, 0.16);
  --shadow-card: 0 8px 0 #09132b, 0 16px 36px rgba(9, 19, 43, 0.16);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  min-width: 320px;
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { display: block; }
a { color: inherit; }
a:focus-visible { outline: 3px solid var(--cyan); outline-offset: 4px; }
::selection { background: var(--lime); color: var(--night); }

.container {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: -120px;
  left: 14px;
  transform: translateY(-200%);
  opacity: 0;
  pointer-events: none;
  padding: 10px 16px;
  border: 2px solid #09132b;
  border-radius: 10px;
  background: var(--lime);
  color: var(--night);
  font-family: "Arial Black", Arial, sans-serif;
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 4px 0 #09132b;
  transition: top .2s ease, opacity .2s ease, transform .2s ease;
}
.skip-link:focus {
  top: 14px;
  transform: none;
  opacity: 1;
  pointer-events: auto;
}

/* 3D Chunky Game Buttons */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 24px;
  border: 3px solid #09132b;
  border-radius: 14px;
  font-family: "Arial Black", Arial, sans-serif;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .02em;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  user-select: none;
  transition: transform .15s cubic-bezier(.2, .8, .2, 1), box-shadow .15s cubic-bezier(.2, .8, .2, 1), background .15s ease;
}
.button:hover {
  transform: translateY(-3px);
}
.button:active {
  transform: translateY(3px);
  box-shadow: 0 2px 0 #09132b !important;
}
.button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Header */
.site-header {
  position: relative;
  z-index: 20;
  border-bottom: 3px solid #09132b;
  background: var(--night);
  color: var(--white);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.25);
}
.header-inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
  color: inherit;
  text-decoration: none;
}
.brand-mark {
  position: relative;
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  overflow: hidden;
  border: 3px solid #ffffff;
  border-radius: 12px;
  background: linear-gradient(135deg, #fff275 0%, var(--lime) 55%, #f59e0b 100%);
  color: var(--night);
  box-shadow: 3px 3px 0 var(--game-red), 4px 4px 0 #09132b;
  font-family: Impact, "Arial Black", sans-serif;
  font-size: 16px;
  font-weight: 1000;
  letter-spacing: -.1em;
  transform: rotate(-3deg);
  transition: transform .2s ease;
}
.brand:hover .brand-mark {
  transform: rotate(3deg) scale(1.08);
}
.brand-mark span:first-child { transform: translateX(-3px); }
.brand-mark span:last-child {
  position: absolute;
  transform: translate(5px, 5px);
  color: #c28800;
  font-size: 13px;
}
.brand-copy { display: grid; line-height: 1.1; }
.brand-copy strong {
  font-family: Impact, "Arial Black", sans-serif;
  font-size: 15px;
  letter-spacing: .08em;
  color: #ffffff;
  text-shadow: 1px 1px 0 #09132b;
}
.brand-copy small {
  margin-top: 3px;
  color: var(--lime);
  font-family: "Arial Black", sans-serif;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .16em;
}

.header-hud {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}
.header-hud-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border: 2px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(18, 33, 71, 0.75);
  color: var(--lime);
  font-family: "Arial Black", sans-serif;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.header-hud-pill.hud-live {
  color: #38ef7d;
  border-color: rgba(56, 239, 125, 0.35);
}
.header-hud-pill.hud-live i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #38ef7d;
  box-shadow: 0 0 8px #38ef7d;
  animation: pulse-dot 1.8s ease-in-out infinite;
}
.hud-coin {
  display: inline-block;
  font-size: 13px;
  line-height: 1;
  filter: drop-shadow(0 0 4px rgba(255, 228, 92, 0.6));
}
.hud-star {
  display: inline-block;
  color: var(--lime);
  font-size: 12px;
  line-height: 1;
  text-shadow: 0 0 6px var(--lime);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.5vw, 32px);
}
.site-nav a {
  color: #d2def7;
  font-family: "Arial Black", sans-serif;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .03em;
  text-decoration: none;
  transition: color .15s ease, transform .15s ease;
}
.site-nav a:hover {
  color: var(--lime);
  transform: translateY(-2px);
}

.button-header {
  min-height: 42px;
  padding-inline: 16px;
  border: 2px solid #09132b;
  border-radius: 12px;
  background: linear-gradient(180deg, #fff480 0%, var(--lime) 100%);
  color: var(--night);
  box-shadow: 0 4px 0 #b37e00;
  font-size: 12px;
}
.button-header:hover {
  background: #fff899;
  box-shadow: 0 5px 0 #b37e00;
}

/* Hero Section */
.hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border-bottom: 4px solid #09132b;
  background: 
    radial-gradient(ellipse at 80% 38%, rgba(65, 115, 255, 0.45), transparent 45%),
    radial-gradient(ellipse at 18% 75%, rgba(229, 37, 33, 0.35), transparent 42%),
    radial-gradient(ellipse at 50% 10%, rgba(255, 228, 92, 0.22), transparent 50%),
    linear-gradient(135deg, #09132b 0%, #10214c 60%, #09132b 100%);
  color: var(--white);
}
.hero::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 36px 36px;
  content: "";
  opacity: .6;
  mask-image: linear-gradient(180deg, #000 60%, transparent 100%);
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, .95fr);
  align-items: center;
  gap: clamp(32px, 5vw, 68px);
  min-height: 640px;
  padding-block: 58px 64px;
}
.hero-glow {
  position: absolute;
  z-index: -1;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(12px);
}
.hero-glow-one {
  width: 580px;
  height: 580px;
  top: -260px;
  right: -50px;
  background: radial-gradient(circle, rgba(55, 215, 234, 0.3), transparent 70%);
  animation: aurora-drift 10s ease-in-out infinite alternate;
}
.hero-glow-two {
  width: 500px;
  height: 500px;
  bottom: -280px;
  left: 10%;
  background: radial-gradient(circle, rgba(229, 37, 33, 0.28), transparent 70%);
  animation: aurora-drift 13s ease-in-out infinite alternate-reverse;
}
.hero-copy {
  max-width: 620px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  padding: 6px 14px;
  border: 2px solid rgba(255, 228, 92, 0.45);
  border-radius: 999px;
  background: rgba(18, 33, 71, 0.85);
  color: var(--lime);
  font-family: "Arial Black", sans-serif;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
  box-shadow: 0 3px 0 rgba(0, 0, 0, 0.3);
}
.eyebrow-star {
  color: var(--lime);
  font-size: 14px;
  line-height: 1;
}
.eyebrow-dot {
  width: 8px;
  height: 8px;
  border: 2px solid var(--night);
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 12px var(--lime);
}
.hero h1 {
  max-width: 700px;
  margin: 0;
  font-family: Impact, "Arial Black", "Arial Rounded MT Bold", sans-serif;
  font-size: clamp(40px, 4.8vw, 66px);
  font-weight: 900;
  letter-spacing: -.02em;
  line-height: 1.02;
  text-transform: uppercase;
  color: #ffffff;
  text-shadow: 3px 3px 0 #09132b, 5px 5px 0 rgba(229, 37, 33, 0.85);
}
.hero h1 span {
  display: block;
  margin-top: 8px;
  color: var(--lime);
  text-shadow: 3px 3px 0 #09132b, 5px 5px 0 #b37e00, 7px 7px 0 rgba(0, 0, 0, 0.45);
}
.hero-lede {
  max-width: 530px;
  margin: 22px 0 0;
  color: #dce5f8;
  font-size: clamp(15px, 1.3vw, 18px);
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-top: 28px;
}
.button-primary {
  background: linear-gradient(180deg, #ff4742 0%, var(--game-red) 100%);
  color: #ffffff;
  border-color: #09132b;
  box-shadow: 0 6px 0 #900f0c, 0 14px 28px rgba(229, 37, 33, 0.4);
  text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.5);
}
.button-primary:hover {
  background: linear-gradient(180deg, #ff5c58 0%, #eb3430 100%);
  box-shadow: 0 8px 0 #900f0c, 0 18px 34px rgba(229, 37, 33, 0.45);
}
.button-primary:active {
  transform: translateY(4px);
  box-shadow: 0 2px 0 #900f0c !important;
}
.btn-icon {
  font-size: 18px;
  line-height: 1;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border: 2px solid rgba(255, 255, 255, 0.25);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-family: "Arial Black", sans-serif;
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
  transition: background .15s ease, border-color .15s ease, transform .15s ease;
}
.text-link:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: var(--lime);
  color: var(--lime);
  transform: translateY(-2px);
}
.text-link span {
  font-size: 16px;
  color: var(--lime);
}
.contact-hint {
  margin: 14px 0 0;
  color: #adc1eb;
  font-size: 12px;
  font-weight: 700;
}
.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin-top: 26px;
  color: #c9d7f5;
  font-size: 12px;
  font-weight: 800;
}
.hero-fact {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.fact-icon {
  display: inline-grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border: 1.5px solid var(--lime);
  border-radius: 7px;
  background: rgba(255, 228, 92, 0.18);
  color: var(--lime);
  font-weight: 900;
}
.fact-icon svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

/* Arcade Kart & Visual Arena */
.arcade-visual {
  position: relative;
  justify-self: end;
  width: min(100%, 520px);
  min-height: 450px;
  isolation: isolate;
  border: 3px solid rgba(255, 255, 255, 0.22);
  border-radius: 32px;
  background: 
    radial-gradient(ellipse at 60% 45%, rgba(65, 115, 255, 0.65), transparent 65%),
    linear-gradient(145deg, #1d3e9c 0%, #122253 65%, #0b1534 100%);
  box-shadow: 10px 10px 0 #040a1c, 0 20px 48px rgba(0, 0, 0, 0.4);
  transform: perspective(900px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg)) rotate(1.5deg);
  transition: transform .25s ease-out;
}
.arcade-halo {
  position: absolute;
  z-index: -2;
  inset: 5%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(55, 215, 234, 0.35), rgba(65, 115, 255, 0.15) 50%, transparent 70%);
  filter: blur(14px);
}
.race-track {
  position: absolute;
  z-index: -1;
  left: 4%;
  width: 92%;
  border-radius: 50%;
  pointer-events: none;
  transform: rotate(-16deg);
}
.race-track-outer {
  top: 24%;
  height: 225px;
  border: 28px solid rgba(55, 215, 234, 0.14);
  box-shadow: 0 0 30px rgba(55, 215, 234, 0.15);
}
.race-track-inner {
  top: 29%;
  left: 9%;
  width: 82%;
  height: 180px;
  border: 2px dashed rgba(255, 228, 92, 0.6);
  animation: track-glow 4s ease-in-out infinite;
}
.kart-art {
  position: absolute;
  z-index: 2;
  top: 6%;
  left: 0;
  width: 100%;
  height: auto;
  overflow: visible;
  filter: drop-shadow(0 20px 24px rgba(2, 8, 23, 0.5));
  transform: rotate(-2deg);
  animation: kart-hover 4.5s ease-in-out infinite;
}
.kart-art > path[stroke-dasharray] {
  animation: track-drive 5s linear infinite;
}
.speed-strokes {
  animation: speed-flow 2.4s ease-in-out infinite;
}
.boost-spark {
  transform-box: fill-box;
  transform-origin: center;
  animation: spark-turn 5s ease-in-out infinite;
}
.finish-checker {
  position: absolute;
  z-index: 4;
  height: 22px;
  border: 2.5px solid #ffffff;
  border-radius: 4px;
  background: repeating-conic-gradient(#ffffff 0 25%, #09132b 0 50%) 50% / 14px 14px;
  box-shadow: 3px 3px 0 #040a1c;
}
.finish-checker-top {
  top: 9%;
  right: 2%;
  width: 110px;
  transform: rotate(8deg);
}
.finish-checker-bottom {
  bottom: 8%;
  left: 2%;
  width: 90px;
  transform: rotate(-8deg);
}
.arcade-hud {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 14px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-radius: 12px;
  background: rgba(9, 19, 43, 0.85);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
  color: #ffffff;
  font-family: "Arial Black", sans-serif;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .1em;
  backdrop-filter: blur(8px);
}
.arcade-hud-top {
  top: 14px;
  left: 14px;
}
.hud-live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--lime);
}
.hud-live i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 8px var(--lime);
}
.arcade-hud-bottom {
  right: 14px;
  bottom: 18px;
  display: grid;
  gap: 3px;
  text-align: right;
}
.arcade-hud-bottom .hud-label {
  color: var(--lime);
  font-size: 9px;
}
.arcade-hud-bottom strong {
  color: #ffffff;
  font-size: 11px;
  letter-spacing: .12em;
}
.boost-badge {
  position: absolute;
  z-index: 6;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border: 2.5px solid #09132b;
  border-radius: 999px;
  box-shadow: 0 4px 0 #09132b;
  font-family: "Arial Black", sans-serif;
  font-size: 10px;
  font-weight: 1000;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.boost-badge-yellow {
  top: 30%;
  right: -2%;
  background: linear-gradient(135deg, #fff37a 0%, var(--lime) 100%);
  color: var(--night);
  transform: rotate(8deg);
  animation: boost-bob 3.2s ease-in-out infinite;
}
.boost-badge-yellow span { font-size: 14px; }
.boost-badge-pink {
  top: 66%;
  left: -2%;
  background: linear-gradient(135deg, #ff6fae 0%, var(--arcade-pink) 100%);
  color: #ffffff;
  transform: rotate(-6deg);
  animation: boost-bob-pink 3.2s ease-in-out infinite;
}
.hero-sticker {
  position: absolute;
  z-index: 6;
  bottom: 22px;
  left: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border: 2.5px solid #09132b;
  border-radius: 12px;
  background: linear-gradient(135deg, #fff37a 0%, var(--lime) 100%);
  box-shadow: 0 4px 0 #09132b;
  color: var(--night);
  transform: rotate(-6deg);
}
.hero-sticker > span {
  font-family: Impact, "Arial Black", sans-serif;
  font-size: 22px;
  font-weight: 1000;
  letter-spacing: -.1em;
}
.hero-sticker small {
  font-family: "Arial Black", sans-serif;
  font-size: 8px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: .08em;
}
.visual-caption {
  position: absolute;
  z-index: 6;
  right: 18px;
  bottom: 8px;
  color: #b5cbf8;
  font-family: "Arial Black", sans-serif;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .12em;
}

/* Floating Particles */
.arcade-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.arcade-particles i {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: 5px;
  height: 5px;
  background: var(--spark);
  box-shadow: 0 0 12px var(--spark);
  border-radius: 1px;
  opacity: .35;
  animation: pixel-drift var(--duration) ease-in-out infinite alternate;
  animation-delay: var(--delay);
}
.arcade-particles i:nth-child(3n) {
  width: 24px;
  height: 3px;
}

/* Hero Bottom Ribbon */
.hero-bottom {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border-top: 3px solid #09132b;
  background: #060d21;
  color: #dce5f8;
}
.hero-bottom .container {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 40px);
  min-height: 52px;
  font-family: "Arial Black", sans-serif;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.hero-bottom span { color: #ffffff; }
.hero-bottom i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 8px var(--lime);
}
.ribbon-checker {
  width: 120px;
  height: 16px;
  margin-left: auto;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: repeating-conic-gradient(#ffffff 0 25%, #09132b 0 50%) 50% / 10px 10px;
}

/* Warp Zone Local Strip */
.local-strip {
  border-top: 4px solid #09132b;
  border-bottom: 4px solid #09132b;
  background: linear-gradient(135deg, #ffe45c 0%, #ffd000 60%, #ffbe1a 100%);
  color: var(--night);
  box-shadow: inset 0 4px 0 rgba(255, 255, 255, 0.6), inset 0 -4px 0 rgba(0, 0, 0, 0.15);
}
.local-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 94px;
  padding-block: 16px;
}
.local-strip-label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Arial Black", sans-serif;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.local-strip-label .warp-icon {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 2px solid #09132b;
  border-radius: 10px;
  background: var(--game-red);
  box-shadow: 2px 2px 0 #09132b;
  font-size: 20px;
  transition: transform .2s ease;
}
.local-strip:hover .warp-icon {
  transform: scale(1.1) rotate(6deg);
}
.local-strip p {
  margin: 0;
}
.local-strip p strong {
  display: block;
  font-size: 16px;
  font-weight: 900;
}
.local-strip p span {
  font-size: 13px;
  color: #3b371e;
  font-weight: 700;
}
.local-strip a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 20px;
  border: 3px solid #09132b;
  border-radius: 14px;
  background: #ffffff;
  color: #09132b;
  font-family: "Arial Black", sans-serif;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 4px 0 #09132b;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.local-strip a:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 0 #09132b;
  background: #ffffff;
}
.local-strip a:active {
  transform: translateY(2px);
  box-shadow: 0 1px 0 #09132b;
}

/* Section Headings */
.section-pad {
  padding-block: 86px;
}
.section-heading {
  max-width: 680px;
  margin-bottom: 42px;
}
.eyebrow-light {
  color: #1d4ed8;
  border-color: rgba(29, 78, 216, 0.25);
  background: #e0ebff;
}
.section-heading h2,
.conversation h2,
.location h2,
.final-cta h2 {
  margin: 0;
  font-family: Impact, "Arial Black", "Arial Rounded MT Bold", sans-serif;
  font-size: clamp(34px, 4.2vw, 50px);
  font-weight: 900;
  letter-spacing: -.02em;
  line-height: 1.05;
  text-transform: uppercase;
}
.section-heading > p:last-child {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

/* Services Section: Power-Up Select Cards */
.services {
  position: relative;
  background: #f2f6ff;
  background-image: 
    radial-gradient(#cddcf9 1.5px, transparent 1.5px),
    linear-gradient(180deg, #e8f0fe 0%, #f4f8ff 50%, #eef3fc 100%);
  background-size: 24px 24px, 100% 100%;
}
.services::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 10px;
  background: repeating-conic-gradient(#09132b 0 25%, #ffe45c 0 50%) 50% / 20px 20px;
  content: "";
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 3.5px solid #09132b;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 8px 0 #09132b, 0 18px 36px rgba(9, 19, 43, 0.14);
  transition: transform .25s cubic-bezier(.2, .8, .2, 1), box-shadow .25s cubic-bezier(.2, .8, .2, 1);
}
.service-card:hover {
  transform: translateY(-8px) rotate(-0.5deg);
  box-shadow: 0 14px 0 #09132b, 0 26px 48px rgba(9, 19, 43, 0.22);
}
.service-art {
  position: relative;
  display: grid;
  height: 200px;
  min-height: 200px;
  place-items: center;
  overflow: hidden;
  border-bottom: 3.5px solid #09132b;
}
.service-card-games .service-art {
  background: radial-gradient(circle at 80% 20%, #ff4f99 0%, transparent 45%), linear-gradient(135deg, #1d4ed8 0%, #09132b 85%);
}
.service-card-printer .service-art {
  background: radial-gradient(circle at 20% 80%, #ffe45c 0%, transparent 45%), linear-gradient(135deg, #00a651 0%, #063e1f 85%);
}
.service-card-filament .service-art {
  background: radial-gradient(circle at 75% 20%, #ffe45c 0%, transparent 40%), linear-gradient(135deg, #ff4f99 0%, #ff7700 65%, #6d1b4c 100%);
}
.service-art .art-orb {
  position: absolute;
  width: 140px;
  height: 140px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  box-shadow: 0 0 0 24px rgba(255, 255, 255, 0.05), 0 0 0 48px rgba(255, 255, 255, 0.03);
}
.service-image {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s cubic-bezier(.2, .8, .2, 1), filter .4s ease;
}
.service-card:hover .service-image {
  transform: scale(1.06);
  filter: brightness(1.08) contrast(1.05);
}
.art-index {
  position: absolute;
  z-index: 2;
  right: 14px;
  bottom: 14px;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 2.5px solid #09132b;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 3px 0 #09132b;
  color: #09132b;
  font-family: "Arial Black", sans-serif;
  font-size: 12px;
  font-weight: 1000;
  transition: transform .2s ease, background .2s ease;
}
.service-card:hover .art-index {
  background: var(--cyan);
  transform: scale(1.12);
}
.service-card-copy {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px 22px 22px;
}
.powerup-tag-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 10px;
}
.powerup-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  border: 2px solid #09132b;
  border-radius: 8px;
  font-family: "Arial Black", sans-serif;
  font-size: 10px;
  font-weight: 1000;
  letter-spacing: .08em;
  text-transform: uppercase;
  box-shadow: 2px 2px 0 #09132b;
  transition: transform .2s ease, box-shadow .2s ease;
}
.service-card:hover .powerup-tag {
  transform: scale(1.05);
  box-shadow: 3px 3px 0 #09132b;
}
.tag-mushroom {
  background: linear-gradient(135deg, #ff5c58 0%, var(--game-red) 100%);
  color: #ffffff;
}
.tag-star {
  background: linear-gradient(135deg, #fff37a 0%, var(--lime) 100%);
  color: #09132b;
}
.tag-flower {
  background: linear-gradient(135deg, #ff7eb3 0%, var(--arcade-pink) 100%);
  color: #ffffff;
}
.powerup-label {
  font-family: "Arial Black", sans-serif;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .08em;
  color: #6b7a99;
  text-transform: uppercase;
}
.card-kicker {
  margin: 0 0 8px;
  font-family: "Arial Black", sans-serif;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
}
.service-card-games .card-kicker { color: #1d4ed8; }
.service-card-printer .card-kicker { color: #008742; }
.service-card-filament .card-kicker { color: #d91d6d; }

.service-card h3 {
  margin: 0;
  font-family: Impact, "Arial Black", sans-serif;
  font-size: 23px;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -.01em;
  text-transform: uppercase;
  color: var(--night);
}
.service-card-copy > p:not(.card-kicker) {
  flex: 1;
  margin: 14px 0 24px;
  color: #4b5874;
  font-size: 14px;
  line-height: 1.65;
}
.card-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 18px;
  border: 2px solid #09132b;
  border-radius: 12px;
  background: #f8fafc;
  color: var(--night);
  font-family: "Arial Black", sans-serif;
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: 0 3px 0 #09132b;
  transition: background .18s ease, transform .15s ease, box-shadow .15s ease, color .18s ease;
}
.service-card-games .card-link:hover {
  background: var(--game-red);
  color: #ffffff;
  box-shadow: 0 5px 0 #900f0c;
  transform: translateY(-2px);
}
.service-card-printer .card-link:hover {
  background: var(--game-green);
  color: #ffffff;
  box-shadow: 0 5px 0 #005226;
  transform: translateY(-2px);
}
.service-card-filament .card-link:hover {
  background: var(--arcade-pink);
  color: #ffffff;
  box-shadow: 0 5px 0 #aa1858;
  transform: translateY(-2px);
}
.card-link:active {
  transform: translateY(2px);
  box-shadow: 0 1px 0 #09132b !important;
}
.card-link span:last-child {
  font-size: 16px;
  transition: transform .2s ease;
}
.card-link:hover span:last-child {
  transform: translate(2px, -2px);
}

/* How It Works Section */
.conversation {
  background: #eef3fc;
}
.conversation-panel {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  padding: clamp(36px, 5vw, 64px);
  border: 3px solid #09132b;
  border-radius: 28px;
  background: linear-gradient(135deg, #ffffff 0%, #fffbf0 50%, #fef3c7 100%);
  box-shadow: 0 10px 0 #09132b, 0 20px 40px rgba(9, 19, 43, 0.12);
}
.conversation-intro .eyebrow {
  border-color: rgba(9, 19, 43, 0.2);
  background: #09132b;
  color: var(--lime);
}
.conversation-intro h2 {
  font-family: Impact, "Arial Black", sans-serif;
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1.05;
  text-transform: uppercase;
  color: var(--night);
}
.conversation-intro > p:not(.eyebrow) {
  margin: 16px 0 28px;
  color: #4b5874;
  font-size: 15px;
  line-height: 1.7;
}
.button-dark {
  background: var(--night);
  color: var(--white);
  border-color: #09132b;
  box-shadow: 0 6px 0 #000, 0 12px 24px rgba(9, 19, 43, 0.25);
}
.button-dark:hover {
  background: #182852;
  box-shadow: 0 8px 0 #000;
}
.button-dark span:last-child {
  color: var(--lime);
  font-size: 18px;
}
.steps-list {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.steps-list li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  align-items: center;
  padding: 18px 20px;
  border: 2px solid #09132b;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 4px 0 #09132b;
  transition: transform .2s ease, box-shadow .2s ease;
}
.steps-list li:hover {
  transform: translateX(4px);
  box-shadow: 0 6px 0 #09132b;
}
.step-number {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 2px solid #09132b;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffe45c 0%, #f59e0b 100%);
  color: #09132b;
  box-shadow: 0 3px 0 #b37e00;
  font-family: "Arial Black", sans-serif;
  font-size: 14px;
  font-weight: 1000;
  transition: transform .2s ease, box-shadow .2s ease;
}
.steps-list li:hover .step-number {
  transform: scale(1.1) rotate(4deg);
  box-shadow: 0 4px 0 #b37e00;
}
.steps-list h3 {
  margin: 0;
  font-family: "Arial Black", sans-serif;
  font-size: 15px;
  font-weight: 900;
  color: var(--night);
}
.steps-list p {
  margin: 4px 0 0;
  color: #5d6a84;
  font-size: 13px;
  line-height: 1.5;
}

/* Location Section */
.location {
  position: relative;
  overflow: hidden;
  border-top: 4px solid #09132b;
  background: 
    radial-gradient(ellipse at 85% 20%, rgba(65, 115, 255, 0.35), transparent 45%),
    radial-gradient(ellipse at 15% 85%, rgba(229, 37, 33, 0.25), transparent 45%),
    var(--night);
  color: var(--white);
}
.location::after {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 10px;
  background: repeating-conic-gradient(#ffffff 0 25%, #09132b 0 50%) 50% / 20px 20px;
  content: "";
}
.location-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, .9fr);
  align-items: center;
  gap: clamp(42px, 6vw, 86px);
}
.location-copy {
  max-width: 650px;
}
.location-copy h2 {
  font-family: Impact, "Arial Black", sans-serif;
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1.05;
  text-transform: uppercase;
}
.location-copy .eyebrow {
  color: var(--lime);
  border-color: rgba(255, 228, 92, 0.4);
  background: rgba(18, 33, 71, 0.85);
}
.location-lede {
  max-width: 560px;
  margin: 18px 0 26px;
  color: #c9d7f5;
  font-size: 15px;
  line-height: 1.75;
}
.address-card {
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 520px;
  padding: 18px 20px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(10px);
}
.address-icon {
  display: inline-grid;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  place-items: center;
  border: 2px solid #09132b;
  border-radius: 12px;
  background: var(--lime);
  color: var(--night);
  box-shadow: 2px 2px 0 #09132b;
}
.address-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.address-card strong,
.address-card span:not(.address-icon) {
  display: block;
}
.address-card strong {
  font-size: 15px;
  font-weight: 800;
}
.address-card div > span {
  margin-top: 3px;
  color: #c1cdea;
  font-size: 12px;
}
.address-phone {
  display: inline-block;
  margin-top: 8px;
  color: var(--lime);
  font-family: "Arial Black", sans-serif;
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
}
.address-phone:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.hours-block {
  max-width: 520px;
  margin-top: 26px;
}
.hours-block h3 {
  margin: 0 0 10px;
  color: #ffffff;
  font-family: "Arial Black", sans-serif;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.hours-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-block: 8px;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.2);
  color: #c1cdea;
  font-size: 13px;
}
.hours-row strong {
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}
.hours-note {
  margin: 10px 0 0;
  color: #aebddd;
  font-size: 11px;
}
.button-map {
  margin-top: 24px;
  border: 3px solid #09132b;
  background: linear-gradient(180deg, #4173ff 0%, #1e40af 100%);
  color: #ffffff;
  box-shadow: 0 6px 0 #0b1a4a, 0 12px 24px rgba(65, 115, 255, 0.35);
  font-size: 13px;
}
.button-map:hover {
  background: linear-gradient(180deg, #5b87ff 0%, #254ac5 100%);
  box-shadow: 0 8px 0 #0b1a4a;
}
.button-map svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}
.button-map span:last-child {
  color: var(--lime);
  font-size: 18px;
}

.location-side {
  display: grid;
  width: min(100%, 420px);
  justify-self: end;
  gap: 18px;
}
.location-photo-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  margin: 0;
  border: 4px solid #ffffff;
  border-radius: 24px;
  background: #141d36;
  box-shadow: 0 10px 0 var(--arcade-pink), 0 24px 48px rgba(0, 0, 0, 0.45);
  transform: rotate(1deg);
  transition: transform .3s ease;
}
.location-photo-card:hover {
  transform: rotate(0deg) scale(1.02);
}
.photo-badge {
  position: absolute;
  z-index: 5;
  top: 14px;
  left: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border: 2px solid #09132b;
  border-radius: 999px;
  background: linear-gradient(135deg, #fff275 0%, var(--lime) 100%);
  color: var(--night);
  box-shadow: 0 3px 0 #09132b;
  font-family: "Arial Black", sans-serif;
  font-size: 10px;
  font-weight: 1000;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: transform .25s ease;
}
.location-photo-card:hover .photo-badge {
  transform: scale(1.06) rotate(-2deg);
}
.location-photo-card > a {
  display: block;
  height: 100%;
}
.location-photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.location-photo-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 10, 29, 0.02) 40%, rgba(4, 10, 29, 0.85) 100%);
  content: "";
  pointer-events: none;
}
.location-photo-card figcaption {
  position: absolute;
  z-index: 2;
  right: 14px;
  bottom: 14px;
  left: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 16px;
  background: rgba(8, 17, 40, 0.82);
  color: var(--white);
  backdrop-filter: blur(10px);
}
.location-photo-card figcaption strong,
.location-photo-card figcaption small {
  display: block;
}
.location-photo-card figcaption strong {
  font-size: 13px;
  font-weight: 800;
  line-height: 1.3;
}
.location-photo-card figcaption small {
  margin-top: 3px;
  color: #c4d1eb;
  font-size: 11px;
}
.photo-pin {
  display: inline-grid;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  place-items: center;
  border: 2px solid #09132b;
  border-radius: 12px;
  background: var(--lime);
  color: var(--night);
}
.photo-pin svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}
.photo-arrow {
  margin-left: auto;
  color: var(--lime);
  font-size: 20px;
}

.location-trust {
  display: grid;
  gap: 14px;
}
.rating-card {
  position: relative;
  padding: 24px;
  border: 2.5px solid rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  background: linear-gradient(145deg, #182d5a 0%, #0f1c3d 100%);
  box-shadow: 0 8px 0 #050a18, 0 16px 32px rgba(0, 0, 0, 0.35);
}
.rating-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  border: 1.5px solid var(--lime);
  border-radius: 999px;
  background: rgba(255, 228, 92, 0.15);
  color: var(--lime);
  font-family: "Arial Black", sans-serif;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.google-g {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 2px solid #09132b;
  border-radius: 10px;
  background: var(--white);
  color: #4285f4;
  font-family: Impact, "Arial Black", sans-serif;
  font-size: 20px;
  font-weight: 1000;
  box-shadow: 2px 2px 0 #09132b;
}
.rating-value {
  margin-top: 14px;
  font-family: Impact, "Arial Black", sans-serif;
  font-size: 56px;
  font-weight: 900;
  letter-spacing: -.05em;
  line-height: 1;
  color: #ffffff;
}
.rating-value span {
  margin-left: 8px;
  color: var(--lime);
  font-size: 24px;
  vertical-align: 12px;
  text-shadow: 0 0 14px rgba(255, 228, 92, 0.8);
}
.stars-row {
  display: flex;
  gap: 3px;
  margin-top: 6px;
  color: var(--lime);
  font-size: 16px;
  text-shadow: 0 0 10px rgba(255, 228, 92, 0.7);
}
.rating-card p {
  margin: 10px 0 16px;
  color: #c9d7f5;
  font-size: 13px;
  font-weight: 700;
}
.rating-card a {
  color: var(--lime);
  font-family: "Arial Black", sans-serif;
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
}
.rating-card a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.rating-card a span {
  margin-left: 4px;
  font-size: 16px;
}
.social-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
}
.social-icon {
  display: inline-grid;
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  place-items: center;
  border: 2px solid #09132b;
  border-radius: 12px;
  background: linear-gradient(135deg, #fdce73, #ef607c 56%, #7655d4);
  color: var(--white);
  box-shadow: 2px 2px 0 #09132b;
}
.social-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}
.social-card strong,
.social-card div span {
  display: block;
}
.social-card strong {
  font-size: 13px;
  font-weight: 800;
}
.social-card div span {
  margin-top: 2px;
  color: #a9acba;
  font-size: 11px;
}
.social-card > a {
  display: inline-grid;
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  place-items: center;
  margin-left: auto;
  border: 2px solid #09132b;
  border-radius: 10px;
  background: #24283b;
  color: var(--lime);
  font-size: 18px;
  text-decoration: none;
  box-shadow: 2px 2px 0 #09132b;
  transition: background .15s ease, transform .15s ease;
}
.social-card > a:hover {
  background: #363b57;
  transform: translateY(-2px);
}
.local-note {
  display: flex;
  gap: 12px;
  padding: 6px 8px;
  color: #bac9e8;
}
.local-note > span {
  margin-top: 1px;
  color: var(--lime);
  font-size: 15px;
}
.local-note p {
  margin: 0;
  font-size: 11px;
  line-height: 1.7;
}
.local-note strong {
  color: #ffffff;
  font-weight: 800;
}

/* Final CTA */
.final-cta {
  padding-block: 80px;
  background: #eef3fc;
}
.final-cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  padding: clamp(36px, 6vw, 68px);
  border: 4px solid #09132b;
  border-radius: 32px;
  background: linear-gradient(135deg, #fff275 0%, var(--lime) 50%, #f59e0b 100%);
  box-shadow: 0 10px 0 #09132b, 0 24px 48px rgba(9, 19, 43, 0.18);
}
.final-cta-panel .eyebrow {
  border-color: #09132b;
  background: #09132b;
  color: var(--lime);
}
.final-cta h2 {
  margin: 0;
  font-family: Impact, "Arial Black", sans-serif;
  font-size: clamp(38px, 4.5vw, 56px);
  line-height: 1.02;
  letter-spacing: -.02em;
  text-transform: uppercase;
  color: #09132b;
  text-shadow: 2px 2px 0 rgba(255, 255, 255, 0.8);
}
.final-cta-panel p:last-child {
  margin: 12px 0 0;
  color: #4a3e10;
  font-size: 16px;
  font-weight: 700;
}
.final-cta-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 260px;
}
.final-cta .button-primary {
  background: linear-gradient(180deg, #00b85a 0%, var(--game-green) 100%);
  color: #ffffff;
  border-color: #09132b;
  box-shadow: 0 6px 0 #005c2a, 0 12px 24px rgba(0, 166, 81, 0.4);
  font-size: 15px;
}
.final-cta .button-primary:hover {
  background: linear-gradient(180deg, #02cc65 0%, #00994a 100%);
  box-shadow: 0 8px 0 #005c2a;
}
.button-social {
  background: #ffffff;
  color: var(--night);
  border-color: #09132b;
  box-shadow: 0 5px 0 #09132b;
}
.button-social:hover {
  background: #f1f5f9;
}
.button-social svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

/* Site Footer */
.site-footer {
  padding-block: 30px;
  border-top: 8px solid transparent;
  border-image: repeating-conic-gradient(#ffffff 0 25%, #09132b 0 50%) 8 / 8px;
  background: var(--night);
  color: var(--white);
}
.footer-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}
.brand-footer .brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 10px;
}
.brand-footer .brand-copy strong { font-size: 12px; }
.brand-footer .brand-copy small { font-size: 8px; }
.footer-inner > p {
  justify-self: center;
  margin: 0;
  color: #a6a9b7;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
}
.footer-links {
  display: flex;
  gap: 18px;
}
.footer-links a {
  color: #c0c2ce;
  font-family: "Arial Black", sans-serif;
  font-size: 11px;
  font-weight: 900;
  text-decoration: none;
  transition: color .15s ease;
}
.footer-links a:hover {
  color: var(--lime);
}
.footer-legal {
  grid-column: 1 / -1;
  padding-top: 16px;
  border-top: 1px solid #243455;
  color: #777b8d;
  font-size: 10px;
  text-align: center;
}

/* Mobile Contact Bar (Hidden on desktop) */
.mobile-contact-bar {
  display: none;
}

/* -------------------------------------------------------------
   Responsive Media Queries
   ------------------------------------------------------------- */
@media (max-width: 940px) {
  .header-inner {
    gap: 16px;
  }
  .header-hud {
    display: none;
  }
  .hero-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(300px, .95fr);
    gap: 32px;
  }
  .hero h1 {
    font-size: 46px;
  }
  .arcade-visual {
    width: min(100%, 440px);
    min-height: 400px;
  }
  .service-grid {
    gap: 16px;
  }
  .service-card-copy {
    padding: 22px 18px;
  }
  .service-card h3 {
    font-size: 21px;
  }
  .conversation-panel {
    gap: 40px;
    padding: 42px;
  }
  .location-grid {
    gap: 42px;
  }
  .location-trust {
    grid-template-columns: 1fr;
  }
  .rating-card {
    grid-row: auto;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(600px, calc(100% - 40px));
  }
  .header-inner {
    min-height: 74px;
    gap: 14px;
  }
  .header-hud {
    display: none;
  }
  .site-nav {
    display: none;
  }
  .button-header {
    min-height: 38px;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 46px;
    min-height: 0;
    padding-block: 52px 50px;
  }
  .hero-copy {
    padding-bottom: 0;
  }
  .hero h1 {
    max-width: 620px;
    font-size: clamp(38px, 9vw, 56px);
  }
  .hero-lede {
    max-width: 560px;
  }
  .hero-actions {
    flex-direction: row;
    align-items: center;
    gap: 16px;
  }
  .arcade-visual {
    justify-self: center;
    width: min(100%, 460px);
    min-height: 410px;
  }
  .hero-bottom .container {
    gap: 16px;
    font-size: 9px;
    letter-spacing: .1em;
    white-space: nowrap;
    overflow-x: auto;
  }
  .local-strip-inner {
    flex-wrap: wrap;
    gap: 14px 24px;
  }
  .local-strip-label {
    flex-basis: 100%;
  }
  .section-pad {
    padding-block: 70px;
  }
  .service-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .service-card {
    display: grid;
    grid-template-columns: minmax(180px, .8fr) 1.2fr;
  }
  .service-art {
    height: 100%;
    min-height: 220px;
    border-bottom: 0;
    border-right: 3.5px solid #09132b;
  }
  .service-card .service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .service-card-copy {
    padding: 22px 20px;
  }
  .service-card-copy > p:not(.card-kicker) {
    min-height: 0;
    margin: 10px 0 18px;
  }
  .conversation-panel {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 38px 28px;
  }
  .location-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }
  .location-side {
    justify-self: center;
    width: 100%;
  }
  .location-trust {
    grid-template-columns: 1fr 1fr;
  }
  .rating-card {
    grid-row: span 2;
  }
  .final-cta {
    padding-block: 60px;
  }
  .final-cta-panel {
    flex-direction: column;
    align-items: flex-start;
    padding: 38px 30px;
  }
  .final-cta-actions {
    flex-direction: row;
    width: 100%;
  }
  .final-cta-actions .button {
    flex: 1;
  }
  .footer-inner {
    grid-template-columns: 1fr auto;
    gap: 16px;
  }
  .footer-inner > p {
    grid-column: 1 / -1;
    justify-self: start;
    text-align: left;
  }
  .footer-links {
    justify-content: flex-end;
    gap: 14px;
  }
}

@media (max-width: 520px) {
  body {
    padding-bottom: calc(84px + env(safe-area-inset-bottom, 0px));
  }
  .container {
    width: calc(100% - 32px);
  }
  .header-inner {
    min-height: 68px;
  }
  .brand-mark {
    width: 36px;
    height: 36px;
  }
  .brand-copy strong { font-size: 12px; }
  .brand-copy small { font-size: 8px; }
  .button-header {
    min-height: 36px;
    padding-inline: 12px;
    font-size: 11px;
  }
  .hero-grid {
    gap: 30px;
    padding-block: 40px 36px;
  }
  .hero .eyebrow {
    font-size: 9px;
    letter-spacing: .08em;
    padding: 5px 10px;
  }
  .hero h1 {
    font-size: clamp(34px, 10vw, 48px);
  }
  .hero h1 span {
    font-size: .7em;
  }
  .hero-lede {
    margin-top: 16px;
    font-size: 15px;
    line-height: 1.65;
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    margin-top: 24px;
  }
  .hero-actions .button {
    width: 100%;
  }
  .hero-facts {
    justify-content: center;
    gap: 10px 16px;
    font-size: 11px;
  }
  .arcade-visual {
    width: 100%;
    min-height: 320px;
    border-radius: 24px;
    box-shadow: 7px 7px 0 #040a1c;
  }
  .kart-art {
    top: 8%;
    width: 104%;
    left: -2%;
  }
  .race-track-outer {
    top: 27%;
    height: 180px;
    border-width: 22px;
  }
  .race-track-inner {
    top: 32%;
    height: 140px;
  }
  .finish-checker-top {
    top: 8%;
    width: 80px;
    height: 17px;
    background-size: 12px 12px;
  }
  .finish-checker-bottom {
    bottom: 8%;
    width: 68px;
    height: 15px;
    background-size: 10px 10px;
  }
  .arcade-hud {
    gap: 7px;
    padding: 6px 10px;
    font-size: 8px;
  }
  .arcade-hud-top {
    top: 10px;
    left: 10px;
  }
  .arcade-hud-bottom {
    right: 10px;
    bottom: 14px;
  }
  .arcade-hud-bottom strong {
    font-size: 9px;
  }
  .boost-badge {
    padding: 6px 10px;
    font-size: 8px;
  }
  .boost-badge-yellow {
    top: 29%;
    right: -2%;
  }
  .boost-badge-pink {
    top: 66%;
    left: -2%;
  }
  .hero-sticker {
    bottom: 12px;
    left: 12px;
    padding: 6px 10px;
  }
  .hero-sticker > span {
    font-size: 18px;
  }
  .hero-sticker small {
    font-size: 7px;
  }
  .visual-caption {
    right: 10px;
    bottom: 6px;
    font-size: 7px;
  }
  .hero-bottom .container {
    font-size: 8px;
    gap: 12px;
    min-height: 46px;
    letter-spacing: .06em;
  }
  .ribbon-checker {
    display: none;
  }
  .local-strip-inner {
    padding-block: 18px;
  }
  .local-strip p {
    width: 100%;
  }
  .local-strip a {
    width: 100%;
    justify-content: center;
  }
  .section-pad {
    padding-block: 58px;
  }
  .section-heading h2,
  .conversation h2,
  .location h2 {
    font-size: 32px;
  }
  .section-heading > p:last-child {
    font-size: 14px;
  }
  .service-card {
    display: flex;
    flex-direction: column;
  }
  .service-art {
    height: 180px;
    min-height: 180px;
    border-right: 0;
    border-bottom: 3.5px solid #09132b;
  }
  .service-card .service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .service-card-copy {
    padding: 20px 18px 18px;
  }
  .service-card h3 {
    font-size: 21px;
  }
  .service-card-copy > p:not(.card-kicker) {
    font-size: 13px;
  }
  .card-link {
    font-size: 12px;
  }
  .conversation-panel {
    gap: 28px;
    padding: 28px 20px;
    border-radius: 20px;
  }
  .conversation-intro h2 {
    font-size: 32px;
  }
  .conversation .button {
    width: 100%;
  }
  .steps-list li {
    grid-template-columns: 38px 1fr;
    gap: 14px;
    padding: 14px 16px;
  }
  .step-number {
    width: 36px;
    height: 36px;
    font-size: 12px;
  }
  .steps-list h3 {
    font-size: 14px;
  }
  .location-grid {
    gap: 32px;
  }
  .location-side {
    width: 100%;
  }
  .location-trust {
    grid-template-columns: 1fr;
  }
  .rating-card {
    grid-row: auto;
    display: flex;
    flex-direction: column;
    padding: 20px;
    gap: 6px;
  }
  .rating-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .rating-value {
    margin: 4px 0 0;
    font-size: 44px;
  }
  .rating-value span {
    font-size: 20px;
    vertical-align: 8px;
  }
  .stars-row {
    margin: 0 0 4px;
    font-size: 16px;
  }
  .rating-card p {
    margin: 0 0 6px;
    font-size: 13px;
  }
  .rating-card a {
    align-self: flex-start;
  }
  .address-card {
    gap: 12px;
    padding: 16px 14px;
  }
  .button-map {
    width: 100%;
    justify-content: center;
  }
  .final-cta {
    padding-block: 48px;
  }
  .final-cta-panel {
    padding: 28px 20px;
    border-radius: 20px;
  }
  .final-cta h2 {
    font-size: 34px;
  }
  .final-cta-actions {
    flex-direction: column;
    width: 100%;
  }
  .final-cta-actions .button {
    width: 100%;
    min-height: 52px;
  }
  .footer-inner {
    grid-template-columns: 1fr;
  }
  .footer-links {
    justify-content: flex-start;
  }

  /* Fixed Mobile Joy-Con Style Contact Bar */
  .mobile-contact-bar {
    position: fixed;
    z-index: 99;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px calc(10px + env(safe-area-inset-bottom, 0px));
    border-top: 3px solid #09132b;
    background: rgba(9, 19, 43, 0.96);
    backdrop-filter: blur(16px);
    box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.35);
  }
  .mobile-whatsapp {
    display: flex;
    min-height: 50px;
    flex: 1;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 2.5px solid #09132b;
    border-radius: 14px;
    background: linear-gradient(180deg, #00b85a 0%, var(--game-green) 100%);
    color: #ffffff;
    box-shadow: 0 4px 0 #005226;
    font-family: "Arial Black", sans-serif;
    font-size: 14px;
    font-weight: 900;
    text-decoration: none;
    transition: transform .1s ease;
  }
  .mobile-whatsapp:active {
    transform: translateY(2px);
    box-shadow: 0 1px 0 #005226;
  }
  .mobile-whatsapp svg {
    width: 21px;
    height: 21px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
  }
  .mobile-instagram {
    display: inline-grid;
    width: 50px;
    height: 50px;
    flex: 0 0 50px;
    place-items: center;
    border: 2.5px solid #09132b;
    border-radius: 14px;
    background: linear-gradient(135deg, #fdce73, #ef607c 56%, #7655d4);
    color: var(--white);
    box-shadow: 0 4px 0 #09132b;
    transition: transform .1s ease;
  }
  .mobile-instagram:active {
    transform: translateY(2px);
    box-shadow: 0 1px 0 #09132b;
  }
  .mobile-instagram svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
  }
}

/* Micro-Animations and Movement */
@keyframes pulse-dot {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
    box-shadow: 0 0 6px #38ef7d;
  }
  50% {
    transform: scale(1.35);
    opacity: 0.75;
    box-shadow: 0 0 14px #38ef7d;
  }
}
@keyframes boost-bob {
  0%, 100% {
    transform: rotate(8deg) translateY(0);
  }
  50% {
    transform: rotate(6deg) translateY(-5px);
  }
}
@keyframes boost-bob-pink {
  0%, 100% {
    transform: rotate(-6deg) translateY(0);
  }
  50% {
    transform: rotate(-4deg) translateY(-5px);
  }
}
@keyframes card-pop {
  0% {
    opacity: 0.85;
    transform: translateY(12px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes pixel-drift {
  from { translate: 0 16px; opacity: .2; }
  to { translate: 28px -28px; opacity: .65; }
}
@keyframes kart-hover {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -12px; }
}
@keyframes track-drive {
  to { stroke-dashoffset: -240; }
}
@keyframes speed-flow {
  0%, 100% { translate: 0 0; opacity: .5; }
  50% { translate: -12px 0; opacity: 1; }
}
@keyframes spark-turn {
  0%, 100% { rotate: -7deg; scale: .9; }
  50% { rotate: 7deg; scale: 1.08; }
}
@keyframes track-glow {
  0%, 100% { opacity: .4; }
  50% { opacity: 1; }
}
@keyframes aurora-drift {
  to { translate: -50px 30px; scale: 1.15; }
}

.fx-paused,
.fx-paused * {
  animation-play-state: paused !important;
}

.service-card.fx-enter {
  animation: card-pop .4s cubic-bezier(.2, .8, .2, 1) backwards;
}

@media (hover: none) {
  .arcade-particles i:nth-child(n+9) { display: none; }
  .hero-glow { animation: none; }
  .arcade-visual { transform: rotate(1.5deg); }
}

@media (prefers-reduced-motion: reduce) {
  .arcade-visual { transform: rotate(1.5deg); }
  .arcade-particles { display: none; }
  .kart-art,
  .kart-art > path[stroke-dasharray],
  .speed-strokes,
  .boost-spark,
  .race-track-inner,
  .hero-glow-one,
  .hero-glow-two,
  .boost-badge-yellow,
  .boost-badge-pink,
  .header-hud-pill.hud-live i,
  .hud-live i,
  .service-card.fx-enter { animation: none !important; }
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}
