
:root {
  --mv-bg: #050915;
  --mv-panel: rgba(6, 19, 58, .84);
  --mv-panel-solid: #081947;
  --mv-purple: #6f2bd8;
  --mv-purple-dark: #16072f;
  --mv-blue: #08235f;
  --mv-cyan: #1bb6ff;
  --mv-gold: #ffb300;
  --mv-orange: #ff8a00;
  --mv-white: #ffffff;
  --mv-soft: #dfeaff;
  --mv-muted: #aeb8d4;
  --mv-border: rgba(255, 179, 0, .88);
  --mv-glow: 0 0 28px rgba(120, 55, 255, .55), 0 0 18px rgba(27, 182, 255, .32);
  --mv-radius: 24px;
  --mv-shadow: 0 24px 70px rgba(0,0,0,.36);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--mv-bg);
  color: var(--mv-white);
  overflow-x: hidden;
}

body:before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background: #050915 url("../assets/cosmic-bg.jpg") center/cover no-repeat;
}

body:after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 50% 15%, rgba(18, 153, 255, .22), transparent 26%),
    radial-gradient(circle at 15% 80%, rgba(120, 47, 255, .22), transparent 28%),
    linear-gradient(180deg, rgba(5,9,21,.08), rgba(5,9,21,.55));
  pointer-events: none;
}

a { color: inherit; }

img { max-width: 100%; height: auto; }

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

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  background: var(--mv-gold);
  color: #12051d;
  padding: 12px 16px;
  z-index: 999;
  border-radius: 10px;
}

.skip-link:focus { left: 12px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 99;
  background: rgba(3, 7, 28, .84);
  border-bottom: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(14px);
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  min-width: 210px;
}

.logo img {
  width: 320px;
  max-height: 74px;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(255,255,255,.18)) drop-shadow(0 0 14px rgba(121, 65, 255, .35));
}

.nav-toggle {
  display: none;
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.08);
  color: white;
  border-radius: 12px;
  padding: 10px 12px;
  font-weight: 900;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-weight: 800;
}

.primary-nav a {
  text-decoration: none;
  color: var(--mv-soft);
  font-size: 15px;
  transition: color .2s ease, transform .2s ease;
}

.primary-nav a:hover {
  color: var(--mv-gold);
  transform: translateY(-1px);
}

.header-cta {
  display: inline-flex;
  text-decoration: none;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--mv-gold), var(--mv-orange));
  color: #16051d;
  font-weight: 1000;
  padding: 12px 16px;
  border-radius: 999px;
  box-shadow: 0 0 0 4px rgba(255,255,255,.10), 0 0 22px rgba(255,179,0,.35);
  white-space: nowrap;
}

.hero {
  position: relative;
  min-height: 770px;
  display: flex;
  align-items: center;
  padding: 76px 0 64px;
  overflow: hidden;
}

.hero:before {
  content: "";
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(circle at 55% 45%, rgba(27, 182, 255, .33), transparent 24%),
    radial-gradient(circle at 22% 60%, rgba(111, 43, 216, .32), transparent 25%),
    radial-gradient(circle at 85% 25%, rgba(255, 138, 0, .13), transparent 18%);
  z-index: -1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.06fr .94fr;
  gap: 38px;
  align-items: center;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--mv-gold);
  font-weight: 1000;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 14px;
  margin-bottom: 12px;
}

.kicker:before, .kicker:after {
  content: "★";
  color: var(--mv-gold);
}

h1, h2, h3, p { margin-top: 0; }

.hero h1 {
  margin-bottom: 22px;
  font-size: clamp(48px, 7vw, 94px);
  line-height: .93;
  letter-spacing: -0.045em;
  font-weight: 1000;
  text-transform: uppercase;
  text-shadow: 0 7px 0 rgba(0,0,0,.35), 0 0 28px rgba(27, 182, 255, .58);
}

.hero h1 span {
  color: var(--mv-gold);
  display: block;
  text-shadow: 0 7px 0 rgba(0,0,0,.35), 0 0 28px rgba(255, 179, 0, .45);
}

.hero-lead {
  max-width: 650px;
  color: var(--mv-soft);
  font-size: clamp(20px, 2.35vw, 30px);
  line-height: 1.3;
  font-weight: 800;
  margin-bottom: 24px;
}

.hero-lead strong {
  color: var(--mv-gold);
}

.hero-copy {
  color: rgba(255,255,255,.82);
  font-size: 18px;
  line-height: 1.65;
  max-width: 630px;
  margin-bottom: 28px;
}

.button-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  border-radius: 999px;
  padding: 15px 22px;
  font-weight: 1000;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.btn-primary {
  color: #190721;
  background: linear-gradient(135deg, var(--mv-gold), var(--mv-orange));
  box-shadow: 0 0 0 4px rgba(255,255,255,.12), 0 0 30px rgba(255,179,0,.42);
}

.btn-secondary {
  color: white;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
}

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

.hero-visual {
  position: relative;
  min-height: 590px;
}

.logo-large {
  display: block;
  width: min(760px, 100%);
  margin: 0 0 22px auto;
  filter: drop-shadow(0 0 10px rgba(255,255,255,.18)) drop-shadow(0 0 22px rgba(129, 63, 255, .35));
}

.machine-orbit {
  position: relative;
  border: 2px solid rgba(255, 179, 0, .72);
  border-radius: 34px;
  background: rgba(4, 12, 42, .58);
  box-shadow: var(--mv-glow), inset 0 0 60px rgba(27,182,255,.18);
  padding: 22px;
  overflow: hidden;
}

.machine-orbit:before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 30%, rgba(27,182,255,.18), transparent 45%);
  pointer-events: none;
}

.hero-install-photo {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  max-height: 460px;
  object-fit: cover;
  object-position: center;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 12px 30px rgba(0,0,0,.35);
}

.stat-card {
  position: relative;
  z-index: 1;
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.stat {
  background: rgba(12, 15, 49, .84);
  border: 1px solid rgba(255,179,0,.65);
  border-radius: 16px;
  padding: 12px;
  text-align: center;
  font-weight: 900;
}

.stat strong {
  display: block;
  color: var(--mv-gold);
  font-size: 20px;
}

.section {
  padding: 88px 0;
  position: relative;
}

.section.compact {
  padding: 62px 0;
}

.section-heading {
  text-align: center;
  margin: 0 auto 42px;
  max-width: 920px;
}

.eyebrow {
  color: var(--mv-gold);
  text-transform: uppercase;
  letter-spacing: .10em;
  font-weight: 1000;
  font-size: 14px;
  margin-bottom: 12px;
}

.section h2 {
  font-size: clamp(38px, 5.8vw, 72px);
  line-height: .96;
  margin-bottom: 16px;
  letter-spacing: -0.04em;
  font-weight: 1000;
  text-shadow: 0 6px 0 rgba(0,0,0,.28), 0 0 22px rgba(27,182,255,.35);
}

.section-heading p {
  color: var(--mv-soft);
  font-size: 20px;
  line-height: 1.55;
  font-weight: 700;
}

.card {
  background: var(--mv-panel);
  border: 2px solid var(--mv-border);
  border-radius: var(--mv-radius);
  box-shadow: var(--mv-shadow), inset 0 0 40px rgba(27,182,255,.12);
  overflow: hidden;
}

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

.machine-card {
  min-height: 398px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: space-between;
}

.machine-card .image-wrap {
  min-height: 280px;
  display: flex;
  align-items: end;
  justify-content: center;
  width: 100%;
}

.machine-card img {
  max-height: 280px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 16px rgba(27,182,255,.72));
}

.machine-card h3 {
  width: 100%;
  margin: 18px 0 0;
  background: rgba(7, 19, 58, .95);
  border: 1px solid rgba(255,179,0,.65);
  color: white;
  border-radius: 14px;
  padding: 13px 10px;
  font-size: 24px;
  font-weight: 1000;
}

.double-machine {
  gap: 12px;
  align-items: end;
}

.double-machine img {
  max-width: 48%;
  object-fit: contain;
}

.double-machine .sweet { max-height: 270px; }
.double-machine .toy { max-height: 280px; }

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

.benefit-card {
  padding: 24px;
}

.icon {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  margin-bottom: 18px;
  background: radial-gradient(circle at 35% 30%, #8b57ff, var(--mv-purple));
  border: 3px solid var(--mv-gold);
  box-shadow: 0 0 20px rgba(126,63,255,.42);
  font-size: 38px;
}

.benefit-card h3 {
  font-size: 25px;
  line-height: 1.05;
  margin-bottom: 10px;
}

.benefit-card p {
  color: var(--mv-soft);
  line-height: 1.55;
  margin: 0;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  counter-reset: process;
}

.process-step {
  position: relative;
  padding: 42px 18px 22px;
  text-align: center;
  min-height: 240px;
}

.process-step:before {
  counter-increment: process;
  content: counter(process);
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--mv-purple);
  border: 3px solid var(--mv-gold);
  font-size: 30px;
  font-weight: 1000;
}

.process-step h3 {
  font-size: 20px;
  line-height: 1.15;
  margin-bottom: 10px;
}

.process-step p {
  color: var(--mv-soft);
  line-height: 1.45;
  margin: 0;
  font-size: 15px;
}

.split {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 30px;
  align-items: center;
}

.venue-photo {
  border-radius: var(--mv-radius);
  border: 2px solid var(--mv-border);
  box-shadow: var(--mv-shadow);
  display: block;
  width: 100%;
}

.venue-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.venue-list li {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,179,0,.5);
  color: white;
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 900;
}

.cta-panel {
  text-align: center;
  padding: 48px 32px;
  background:
    radial-gradient(circle at 50% 0%, rgba(255,179,0,.16), transparent 26%),
    rgba(11, 18, 51, .92);
}

.cta-panel h2 {
  margin-bottom: 14px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin: 32px auto 0;
  max-width: 840px;
}

.contact-link {
  text-decoration: none;
  color: var(--mv-gold);
  font-size: clamp(24px, 3.2vw, 38px);
  font-weight: 1000;
  background: rgba(5, 9, 21, .65);
  border: 2px solid rgba(255,179,0,.75);
  border-radius: 20px;
  padding: 22px 16px;
  box-shadow: 0 0 24px rgba(255,179,0,.18);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.faq {
  padding: 24px;
}

.faq h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.faq p {
  color: var(--mv-soft);
  line-height: 1.6;
  margin-bottom: 0;
}

.site-footer {
  background: rgba(3, 7, 28, .9);
  border-top: 1px solid rgba(255,255,255,.10);
  padding: 34px 0;
  color: var(--mv-muted);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}

.footer-inner strong {
  color: white;
}

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

.footer-links a {
  color: var(--mv-muted);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--mv-gold);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s ease, transform .6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1020px) {
  .hero-grid, .split {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 520px;
  }

  .machine-grid, .benefit-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 42px;
  }
}

@media (max-width: 760px) {
  .nav-toggle { display: inline-flex; }
  .primary-nav {
    position: absolute;
    top: 78px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: rgba(3, 7, 28, .98);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 18px;
    padding: 16px;
  }

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

  .primary-nav a {
    padding: 10px 8px;
  }

  .header-cta {
    display: none;
  }

  .logo img {
  width: 320px;
  max-height: 74px;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(255,255,255,.18)) drop-shadow(0 0 14px rgba(121, 65, 255, .35));
}

  .hero {
    padding: 52px 0 44px;
  }

  .hero-visual {
    min-height: 430px;
  }

  .machine-orbit {
    min-height: 380px;
    padding: 18px;
  }

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

  .section {
    padding: 62px 0;
  }

  .machine-grid,
  .benefit-grid,
  .process-grid,
  .faq-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .process-grid {
    row-gap: 42px;
  }

  .machine-card {
    min-height: auto;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 460px) {
  .container { width: min(100% - 22px, 1180px); }
  .hero h1 { font-size: 44px; }
  .hero-lead { font-size: 20px; }
  .btn { width: 100%; }
  .button-row { width: 100%; }
}

@media (max-width: 680px) {
  .stat-card {
    grid-template-columns: 1fr;
  }
}


/* Brochure-matched six machine boxes - real HTML/CSS, clickable cards */
.brochure-machines-section {
  position: relative;
  overflow: hidden;
  padding: 86px 0 76px;
  background:
    radial-gradient(circle at 18% 14%, rgba(27,182,255,.28), transparent 23%),
    radial-gradient(circle at 82% 18%, rgba(175,72,255,.35), transparent 24%),
    radial-gradient(circle at 50% 70%, rgba(27,182,255,.16), transparent 32%),
    linear-gradient(180deg, rgba(3,6,31,.96), rgba(5,8,44,.98));
}

.brochure-machines-section:before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(255,255,255,.7) 0 1px, transparent 1.5px),
    radial-gradient(circle, rgba(132,70,255,.7) 0 1px, transparent 1.6px);
  background-size: 42px 42px, 71px 71px;
  background-position: 0 0, 18px 24px;
  opacity: .35;
  pointer-events: none;
}

.brochure-machines-section > .container {
  position: relative;
  z-index: 1;
}

.brochure-machines-heading {
  margin-bottom: 26px;
}

.brochure-machines-heading h2 {
  color: #fff;
  font-size: clamp(44px, 6.8vw, 86px);
  line-height: .90;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  text-shadow:
    0 6px 0 #050511,
    0 0 18px rgba(152,72,255,.95),
    0 0 32px rgba(27,182,255,.58);
}

.brochure-machines-heading p {
  max-width: 860px;
  color: var(--mv-gold);
  font-size: clamp(20px, 2.4vw, 31px);
  line-height: 1.18;
  font-weight: 1000;
  text-shadow: 0 4px 0 rgba(0,0,0,.65), 0 0 14px rgba(255,179,0,.32);
}

.brochure-machines-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  max-width: 1120px;
  margin: 0 auto;
}

.brochure-machine-card {
  position: relative;
  min-height: 395px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 18px 16px 16px;
  text-align: center;
  text-decoration: none;
  color: #fff;
  border: 3px solid #a94cff;
  border-radius: 31px;
  background:
    radial-gradient(circle at 50% 35%, rgba(27,182,255,.22), transparent 42%),
    linear-gradient(180deg, rgba(8,15,60,.82), rgba(3,5,28,.92));
  box-shadow:
    0 0 0 2px rgba(255,255,255,.08),
    0 0 22px rgba(169,76,255,.95),
    inset 0 0 23px rgba(27,182,255,.24);
  overflow: hidden;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.brochure-machine-card:before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.55) 0 1px, transparent 1.5px);
  background-size: 34px 34px;
  opacity: .18;
  pointer-events: none;
}

.brochure-machine-card:hover,
.brochure-machine-card:focus {
  transform: translateY(-5px);
  border-color: #ffb300;
  box-shadow:
    0 0 0 2px rgba(255,255,255,.12),
    0 0 26px rgba(255,179,0,.78),
    0 0 38px rgba(169,76,255,.95),
    inset 0 0 27px rgba(27,182,255,.28);
}

.brochure-machine-card:focus-visible {
  outline: 4px solid #ffb300;
  outline-offset: 5px;
}

.brochure-machine-img {
  position: relative;
  z-index: 1;
  height: 286px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-bottom: 18px;
}

.brochure-machine-img img {
  max-width: 108%;
  max-height: 286px;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(27,182,255,.68));
}

.brochure-machine-img.two-machines {
  align-items: flex-end;
  gap: 4px;
}

.brochure-machine-img.two-machines img {
  max-width: 52%;
  max-height: 286px;
}

.brochure-machine-img.neon-machine-row img {
  max-width: 118%;
  max-height: 286px;
}

.brochure-machine-card h3 {
  position: relative;
  z-index: 2;
  align-self: center;
  min-width: 82%;
  margin: 0;
  padding: 12px 16px;
  color: #fff;
  font-size: clamp(22px, 2.15vw, 31px);
  line-height: 1.02;
  font-weight: 1000;
  letter-spacing: -.02em;
  background: rgba(7, 8, 38, .94);
  border: 2px solid #a94cff;
  border-radius: 16px;
  box-shadow:
    0 0 13px rgba(169,76,255,.95),
    inset 0 0 12px rgba(27,182,255,.12);
  text-shadow: 0 3px 0 rgba(0,0,0,.75);
}

.brochure-machine-copy {
  max-width: 970px;
  margin: 28px auto 18px;
  padding: 17px 24px;
  text-align: center;
  color: #fff;
  background: rgba(4, 7, 28, .90);
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 18px;
  font-size: clamp(20px, 2.1vw, 29px);
  line-height: 1.25;
  font-weight: 900;
  box-shadow: 0 0 18px rgba(27,182,255,.22);
}

.brochure-machine-benefits {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 2px solid rgba(255,179,0,.86);
  border-radius: 24px;
  overflow: hidden;
  background: rgba(5, 12, 47, .90);
  box-shadow: 0 0 24px rgba(255,179,0,.25), inset 0 0 24px rgba(27,182,255,.16);
}

.brochure-machine-benefits > div {
  min-height: 94px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-content: center;
  align-items: center;
  column-gap: 15px;
  padding: 16px 24px;
  color: #fff;
  font-size: clamp(18px, 2vw, 26px);
  line-height: 1.05;
  font-weight: 850;
  border-right: 1px solid rgba(255,255,255,.45);
}

.brochure-machine-benefits > div:last-child {
  border-right: 0;
}

.brochure-machine-benefits span {
  grid-row: span 2;
  width: 56px;
  height: 56px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  border: 2px solid rgba(255,179,0,.88);
  box-shadow: 0 0 16px rgba(169,76,255,.8);
  background: radial-gradient(circle, rgba(169,76,255,.96), rgba(34,14,82,.94));
  font-size: 29px;
  font-weight: 1000;
}

.brochure-machine-benefits strong {
  font-weight: 1000;
}

@media (max-width: 980px) {
  .brochure-machines-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .brochure-machine-benefits {
    grid-template-columns: 1fr;
  }

  .brochure-machine-benefits > div {
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.35);
  }

  .brochure-machine-benefits > div:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 620px) {
  .brochure-machines-section {
    padding: 58px 0;
  }

  .brochure-machines-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .brochure-machine-card {
    min-height: 340px;
  }

  .brochure-machine-img {
    height: 245px;
  }

  .brochure-machine-img img {
    max-height: 245px;
  }
}

/* Individual clickable machine information pages */
.machine-detail-hero {
  padding: 92px 0 70px;
}

.machine-detail-panel {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 38px;
  align-items: center;
  padding: 34px;
  border: 2px solid rgba(255, 179, 0, .72);
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(10, 18, 65, .82), rgba(5, 8, 31, .92)),
    radial-gradient(circle at 35% 35%, rgba(27,182,255,.22), transparent 38%);
  box-shadow: var(--mv-glow), inset 0 0 60px rgba(27,182,255,.16);
}

.machine-detail-image {
  min-height: 420px;
  display: grid;
  place-items: center;
  border-radius: 26px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
}

.machine-detail-image img {
  max-width: 92%;
  max-height: 400px;
  object-fit: contain;
  filter: drop-shadow(0 0 20px rgba(27,182,255,.65));
}

.machine-detail-copy h1 {
  font-size: clamp(42px, 5.5vw, 76px);
  line-height: .92;
  text-transform: uppercase;
  margin-bottom: 18px;
  text-shadow: 0 6px 0 rgba(0,0,0,.55), 0 0 28px rgba(177,76,255,.55);
}

.machine-detail-copy .machine-summary {
  color: var(--mv-gold);
  font-size: 24px;
  line-height: 1.35;
  font-weight: 900;
  margin-bottom: 20px;
}

.machine-detail-list {
  display: grid;
  gap: 12px;
  margin: 24px 0;
  padding: 0;
  list-style: none;
}

.machine-detail-list li {
  padding: 13px 16px;
  border-radius: 14px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.88);
  font-weight: 750;
}

.machine-detail-list li:before {
  content: "★";
  color: var(--mv-gold);
  margin-right: 10px;
}

@media (max-width: 860px) {
  .machine-detail-panel {
    grid-template-columns: 1fr;
  }

  .machine-detail-image {
    min-height: 300px;
  }
}


/* Transparent machine art + brochure-style glow */
.brochure-machine-img img {
  background: transparent !important;
  mix-blend-mode: normal;
  filter: drop-shadow(0 0 2px rgba(255,255,255,.95)) drop-shadow(0 0 10px rgba(255, 87, 255, .95)) drop-shadow(0 0 24px rgba(178, 92, 255, .95)) drop-shadow(0 0 34px rgba(78, 190, 255, .55));
}
.machine-detail-image img {
  background: transparent !important;
  filter: drop-shadow(0 0 3px rgba(255,255,255,.95)) drop-shadow(0 0 12px rgba(255, 87, 255, .95)) drop-shadow(0 0 28px rgba(178, 92, 255, .95)) drop-shadow(0 0 38px rgba(78, 190, 255, .55));
}


/* Box 1 Neon Toy Stations made slightly smaller */
.brochure-machine-img.neon-machine-row {
  height: 278px;
  align-items: center;
}

.brochure-machine-img.neon-machine-row img {
  max-width: 130%;
  max-height: 278px;
  width: auto;
  height: auto;
}

@media (max-width: 620px) {
  .brochure-machine-img.neon-machine-row {
    height: 230px;
  }

  .brochure-machine-img.neon-machine-row img {
    max-width: 122%;
    max-height: 230px;
  }
}


/* Box 6 Kids Ride alignment */
.brochure-machine-img.kids-ride-row {
  height: 286px;
  align-items: center;
}

.brochure-machine-img.kids-ride-row img {
  max-width: 98%;
  max-height: 286px;
  width: auto;
  height: auto;
}

@media (max-width: 620px) {
  .brochure-machine-img.kids-ride-row {
    height: 245px;
  }

  .brochure-machine-img.kids-ride-row img {
    max-height: 245px;
  }
}


/* Keep Meet The Mighty Machines benefit strip text on one line */
.brochure-machine-benefits > div {
  grid-template-columns: auto 1fr;
  white-space: nowrap;
  column-gap: 12px;
  font-size: clamp(16px, 1.55vw, 22px);
}

.brochure-machine-benefits > div strong {
  display: inline;
  white-space: nowrap;
}

@media (max-width: 980px) {
  .brochure-machine-benefits > div {
    white-space: normal;
    font-size: 20px;
  }
}


/* Vertically center benefit text to icons */
.brochure-machine-benefits > div {
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: flex-start;
  gap: 12px;
}

.brochure-machine-benefits span {
  grid-row: auto;
  flex: 0 0 56px;
}

.brochure-machine-benefits strong {
  display: inline-block;
  line-height: 1.15;
}


/* We Do The Heavy Lifting boxes - spacing/cropping fix only for this section */
.heavy-spacing-section {
  position: relative;
  overflow: hidden;
  padding: 84px 0 76px;
  background:
    radial-gradient(circle at 14% 12%, rgba(27,182,255,.28), transparent 24%),
    radial-gradient(circle at 86% 14%, rgba(175,72,255,.32), transparent 25%),
    radial-gradient(circle at 50% 72%, rgba(27,182,255,.15), transparent 38%),
    linear-gradient(180deg, rgba(3,7,34,.99), rgba(2,5,24,.99));
}

.heavy-spacing-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(255,255,255,.75) 0 1px, transparent 1.5px),
    radial-gradient(circle, rgba(135,86,255,.65) 0 1px, transparent 1.7px);
  background-size: 40px 40px, 76px 76px;
  background-position: 0 0, 20px 18px;
  opacity: .30;
  pointer-events: none;
}

.heavy-spacing-section > .container {
  position: relative;
  z-index: 1;
}

.heavy-spacing-heading {
  margin-bottom: 36px;
}

.heavy-spacing-heading h2 {
  color: #fff;
  font-size: clamp(46px, 7vw, 90px);
  line-height: .9;
  letter-spacing: -.055em;
  text-transform: uppercase;
  text-shadow:
    0 7px 0 #03040f,
    -2px -2px 0 #03040f,
    2px -2px 0 #03040f,
    -2px 2px 0 #03040f,
    2px 2px 0 #03040f,
    0 0 18px rgba(177,76,255,.95);
}

.heavy-spacing-heading p {
  max-width: 900px;
  margin-inline: auto;
  color: var(--mv-gold);
  font-size: clamp(21px, 2.6vw, 34px);
  line-height: 1.08;
  font-weight: 1000;
  text-shadow: 0 3px 0 rgba(0,0,0,.75), 0 0 14px rgba(255,179,0,.35);
}

.heavy-spacing-grid {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.heavy-spacing-box {
  position: relative;
  min-height: 350px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  /* This larger top padding stops the number touching/cropping the headline */
  padding: 74px 18px 30px;
  text-align: center;
  color: #fff;
  border: 3px solid var(--mv-gold);
  border-radius: 26px;
  background:
    radial-gradient(circle at 50% 38%, rgba(44,152,255,.18), transparent 45%),
    linear-gradient(180deg, rgba(8,14,61,.98), rgba(2,5,29,.99));
  box-shadow:
    0 0 0 2px rgba(170,79,255,.86),
    0 0 19px rgba(255,194,44,.45),
    0 0 32px rgba(160,72,255,.70),
    inset 0 0 24px rgba(48,160,255,.12);
  overflow: visible;
}

.heavy-spacing-box::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 23px;
  box-shadow: inset 0 0 24px rgba(61,195,255,.16);
  pointer-events: none;
}

.heavy-spacing-box:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -38px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 58px;
  height: 46px;
  background: linear-gradient(90deg, #ffdf62, #f2aa00);
  clip-path: polygon(0 18%, 58% 18%, 58% 0, 100% 50%, 58% 100%, 58% 82%, 0 82%);
  filter: drop-shadow(0 4px 0 rgba(0,0,0,.45)) drop-shadow(0 0 12px rgba(255,194,44,.86));
}

.heavy-spacing-number {
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  font-size: 38px;
  line-height: 1;
  font-weight: 1000;
  background: radial-gradient(circle at 35% 28%, rgba(121,49,201,1), rgba(49,13,104,1));
  border: 3px solid var(--mv-gold);
  box-shadow: 0 0 16px rgba(167,96,255,.9), inset 0 0 10px rgba(255,255,255,.14);
}

.heavy-spacing-box h3 {
  margin: 18px 0 14px;
  max-width: 100%;
  color: #fff;
  font-size: clamp(17px, 1.42vw, 23px);
  line-height: 1.12;
  font-weight: 1000;
  text-align: center;
  text-wrap: balance;
  text-shadow: 0 3px 0 rgba(0,0,0,.75);
}

.heavy-spacing-box p {
  margin: 0;
  max-width: 100%;
  color: rgba(255,255,255,.88);
  font-size: clamp(14px, 1.05vw, 17px);
  line-height: 1.28;
  font-weight: 750;
  text-align: center;
  text-wrap: balance;
}

.heavy-spacing-banner {
  max-width: 1120px;
  margin: 24px auto 0;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: var(--mv-gold);
  background: rgba(5,8,34,.95);
  border: 2px solid rgba(168,84,255,.95);
  border-radius: 18px;
  box-shadow: 0 0 18px rgba(168,84,255,.76), inset 0 0 14px rgba(42,176,255,.12);
  font-size: clamp(20px, 2.8vw, 32px);
  line-height: 1.1;
  font-weight: 1000;
  text-align: center;
  text-shadow: 0 3px 0 rgba(0,0,0,.72);
}

.heavy-spacing-banner span {
  color: #fff;
  text-shadow: 0 0 12px rgba(255,194,44,.92);
}

@media (max-width: 1120px) {
  .heavy-spacing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .heavy-spacing-box:not(:last-child)::after {
    display: none;
  }
}

@media (max-width: 700px) {
  .heavy-spacing-grid {
    grid-template-columns: 1fr;
  }

  .heavy-spacing-box {
    min-height: 300px;
    padding-top: 78px;
  }

  .heavy-spacing-banner {
    flex-wrap: wrap;
  }
}


/* Keep Heavy Lifting golden arrows above the next box */
.heavy-spacing-grid {
  overflow: visible;
}

.heavy-spacing-box {
  z-index: 1;
}

.heavy-spacing-box:not(:last-child)::after {
  z-index: 20;
  pointer-events: none;
}

.heavy-spacing-box:hover,
.heavy-spacing-box:focus-within {
  z-index: 25;
}


/* Heavy Lifting arrows: keep each golden arrow above the next box at all times */
.heavy-spacing-grid {
  position: relative;
  overflow: visible;
}

.heavy-spacing-box {
  position: relative;
}

/* Earlier cards must stack above later cards so their arrow can sit over the next box */
.heavy-spacing-box:nth-child(1) { z-index: 50; }
.heavy-spacing-box:nth-child(2) { z-index: 40; }
.heavy-spacing-box:nth-child(3) { z-index: 30; }
.heavy-spacing-box:nth-child(4) { z-index: 20; }
.heavy-spacing-box:nth-child(5) { z-index: 10; }

.heavy-spacing-box:not(:last-child)::after {
  z-index: 999;
  pointer-events: none;
}

/* Optional subtle hover movement for the arrow only */
.heavy-spacing-box:not(:last-child):hover::after {
  animation: mv-heavy-arrow-bounce .55s ease-in-out infinite alternate;
}

@keyframes mv-heavy-arrow-bounce {
  from {
    transform: translateY(-50%) translateX(0);
  }
  to {
    transform: translateY(-50%) translateX(5px);
  }
}


/* SEO supporting content: available to search engines and screen readers without changing the visible design */
.mv-seo-supporting-content {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: normal !important;
  border: 0 !important;
}


/* Floating back-to-top button */
.mv-floating-top {
  position: fixed;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9999;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  text-decoration: none;
  font-size: 34px;
  line-height: 1;
  font-weight: 1000;
  background: radial-gradient(circle at 35% 28%, rgba(134,58,220,.98), rgba(47,13,106,.98));
  border: 3px solid var(--mv-gold);
  box-shadow: 0 0 0 2px rgba(169,76,255,.72), 0 0 20px rgba(255,179,0,.52), 0 0 28px rgba(169,76,255,.72), inset 0 0 14px rgba(255,255,255,.16);
  transition: transform .2s ease, box-shadow .2s ease;
}

.mv-floating-top:hover,
.mv-floating-top:focus {
  transform: translateY(-50%) scale(1.08);
  color: #fff;
  box-shadow: 0 0 0 2px rgba(169,76,255,.88), 0 0 24px rgba(255,179,0,.72), 0 0 36px rgba(169,76,255,.88), inset 0 0 14px rgba(255,255,255,.22);
}

.mv-floating-top span {
  display: block;
  transform: translateY(-2px);
}

@media (max-width: 700px) {
  .mv-floating-top {
    right: 12px;
    top: auto;
    bottom: 18px;
    width: 52px;
    height: 52px;
    font-size: 30px;
  }

  .mv-floating-top:hover,
  .mv-floating-top:focus {
    transform: scale(1.08);
  }
}


/* Back-to-top button: keep bottom-right on all screen sizes */
.mv-floating-top {
  top: auto !important;
  right: 18px !important;
  bottom: 18px !important;
  transform: none !important;
}

.mv-floating-top:hover,
.mv-floating-top:focus {
  transform: scale(1.08) !important;
}

@media (max-width: 700px) {
  .mv-floating-top {
    top: auto !important;
    right: 12px !important;
    bottom: 18px !important;
    transform: none !important;
  }

  .mv-floating-top:hover,
  .mv-floating-top:focus {
    transform: scale(1.08) !important;
  }
}


/* Clean two-line machines heading only */
#machines .section-heading h2 {
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
}

#machines .section-heading h2 br {
  display: block;
}


/* Final fix: force the machines heading to fit on two lines only */
#machines .section-heading h2 {
  font-size: clamp(30px, 3.85vw, 54px) !important;
  line-height: 0.98 !important;
  max-width: 1220px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  letter-spacing: -0.035em !important;
  text-wrap: balance;
}

#machines .section-heading h2 br {
  display: block;
}

@media (max-width: 900px) {
  #machines .section-heading h2 {
    font-size: clamp(28px, 7.4vw, 46px) !important;
    line-height: 1 !important;
  }
}
