:root {
  --ink: #151716;
  --muted: #626866;
  --line: #dfe4e1;
  --surface: #f6f7f4;
  --warm: #ebe5dc;
  --charcoal: #202927;
  --white: #ffffff;
  --red: #c52f2a;
  --red-dark: #9f211d;
  --amber: #e9b45c;
  --steel: #687985;
  --green: #3f6b58;
  --shadow: 0 20px 60px rgba(21, 23, 22, 0.12);
  --font-display: "Orbitron", "Arial Black", "Impact", sans-serif;
  --font-body: "Rajdhani", "Segoe UI", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--font-body);
  font-weight: 500;
  line-height: 1.5;
  overflow-x: hidden;
}

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

picture {
  display: contents;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 64px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand img {
  width: 168px;
  height: 52px;
  object-fit: contain;
  object-position: left center;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(14px, 3vw, 34px);
  color: var(--muted);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  color: var(--red);
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 14px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
}

.nav-toggle::after {
  display: inline-block;
  width: 18px;
  height: 12px;
  margin-left: 10px;
  background:
    linear-gradient(var(--ink), var(--ink)) 0 0 / 100% 2px no-repeat,
    linear-gradient(var(--ink), var(--ink)) 0 50% / 100% 2px no-repeat,
    linear-gradient(var(--ink), var(--ink)) 0 100% / 100% 2px no-repeat;
  content: "";
}

.nav-toggle[aria-expanded="true"]::after {
  background:
    linear-gradient(var(--red), var(--red)) 0 50% / 100% 2px no-repeat,
    linear-gradient(var(--red), var(--red)) 0 50% / 100% 2px no-repeat;
  transform: rotate(45deg);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  align-items: center;
  gap: clamp(30px, 6vw, 92px);
  min-height: calc(100vh - 76px);
  padding: clamp(42px, 7vw, 88px) clamp(18px, 4vw, 64px) clamp(30px, 5vw, 58px);
  background:
    linear-gradient(110deg, #f7f8f5 0%, #f2f0eb 52%, #191d1c 52.1%, #273431 100%);
  overflow: hidden;
}

.hero::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 0 70%, rgba(197, 47, 42, 0.16) 70% 71%, transparent 71%),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 18px);
  content: "";
  pointer-events: none;
}

.hero::after {
  position: absolute;
  right: clamp(18px, 4vw, 64px);
  bottom: 20px;
  color: rgba(21, 23, 22, 0.06);
  content: "PXR";
  font-size: clamp(6rem, 19vw, 18rem);
  font-weight: 950;
  line-height: 0.8;
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 680px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--red);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 18px;
  font-family: var(--font-display);
  font-size: clamp(3.7rem, 7.4vw, 6.75rem);
  line-height: 0.92;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 16px;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4.2vw, 3.55rem);
  line-height: 1.02;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h3 {
  margin-bottom: 10px;
  font-family: var(--font-display);
  font-size: 1.35rem;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-copy > p:not(.eyebrow),
.contact-copy p {
  color: var(--muted);
  font-size: clamp(1.16rem, 2vw, 1.42rem);
  font-weight: 600;
  max-width: 600px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-tags {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: 22px;
  width: min(560px, 100%);
  border: 1px solid rgba(21, 23, 22, 0.12);
}

.hero-tags span {
  position: relative;
  padding: 11px 10px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.78);
  border-right: 1px solid rgba(21, 23, 22, 0.12);
  font-family: var(--font-display);
  font-size: 0.64rem;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
}

.hero-tags span:last-child {
  border-right: 0;
}

.hero-tags span::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: var(--red);
  content: "";
  opacity: 0;
  transition: opacity 160ms ease;
}

.hero-tags span:hover::before {
  opacity: 1;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.primary {
  color: var(--white);
  background: var(--red);
}

.primary:hover,
.primary:focus-visible {
  background: var(--red-dark);
}

.secondary {
  color: var(--ink);
  background: var(--white);
  border-color: var(--line);
}

.hero-product {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.equipment-stage {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(170px, 0.65fr);
  gap: 12px;
  min-height: min(56vw, 600px);
  padding: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.42);
  clip-path: polygon(0 0, 94% 0, 100% 8%, 100% 100%, 6% 100%, 0 92%);
}

.stage-panel {
  position: relative;
  min-height: 0;
  overflow: hidden;
  background: #e8e9e5;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.stage-panel::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 52%, rgba(0, 0, 0, 0.64)),
    linear-gradient(90deg, rgba(197, 47, 42, 0.12), transparent 34%);
  content: "";
}

.stage-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.85) contrast(1.08);
}

.stage-panel-main img {
  object-fit: cover;
  object-position: 50% 60%;
}

.stage-panel span {
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 1;
  padding: 8px 10px;
  color: var(--white);
  background: rgba(18, 21, 20, 0.88);
  border-left: 4px solid var(--red);
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
}

.stage-panel-main {
  min-height: min(45vw, 520px);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 7% 100%, 0 92%);
}

.stage-side {
  display: grid;
  grid-template-rows: 1fr 1fr 0.72fr;
  gap: 12px;
}

.stage-side .stage-panel:first-child {
  clip-path: polygon(0 0, 91% 0, 100% 10%, 100% 100%, 0 100%);
}

.stage-side .stage-panel:last-child {
  clip-path: polygon(0 0, 100% 0, 100% 90%, 91% 100%, 0 100%);
}

.hero-note {
  position: relative;
  right: auto;
  bottom: auto;
  width: 100%;
  padding: 15px 18px;
  color: var(--white);
  background: rgba(18, 21, 20, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-left: 5px solid var(--red);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.hero-note span,
.hero-note strong {
  display: block;
}

.hero-note span {
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--font-display);
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-note strong {
  margin-top: 5px;
  font-family: var(--font-display);
  font-size: 0.9rem;
  line-height: 1.15;
  text-transform: uppercase;
}

.marquee {
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
  border-block: 1px solid var(--ink);
}

.marquee-track {
  display: flex;
  gap: clamp(28px, 5vw, 72px);
  width: max-content;
  padding: 18px clamp(18px, 4vw, 64px);
  animation: drift 34s linear infinite;
}

.marquee-track span {
  color: rgba(255, 255, 255, 0.88);
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2vw, 1.45rem);
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}

@keyframes drift {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-34%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track {
    animation: none;
  }
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  color: var(--white);
  background: #141716;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.stats div {
  padding: clamp(22px, 4vw, 36px) clamp(18px, 4vw, 64px);
  background: linear-gradient(180deg, #202625, #171a19);
}

.stats strong {
  display: block;
  margin-bottom: 4px;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.stats span {
  color: rgba(255, 255, 255, 0.68);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.section,
.machine-gallery,
.audiences,
.process,
.contact-section,
.story-section,
.values-section,
.about-products,
.about-note,
.about-split,
.about-proof,
.about-operations,
.faq-section,
.support-band,
.cta-band {
  padding: clamp(58px, 8vw, 104px) clamp(18px, 4vw, 64px);
  scroll-margin-top: 76px;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 700px) minmax(260px, 0.72fr);
  gap: 24px;
  align-items: start;
  margin-bottom: clamp(28px, 5vw, 54px);
}

.section-intro {
  margin: 28px 0 0;
  color: var(--ink);
  font-size: 1.18rem;
  font-weight: 700;
}

.equipment-world {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: clamp(18px, 3vw, 34px);
  align-items: stretch;
  padding: clamp(14px, 2vw, 24px);
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(21, 23, 22, 0.98), rgba(37, 52, 48, 0.96)),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 18px);
  border-radius: 10px;
  box-shadow: 0 30px 70px rgba(21, 23, 22, 0.18);
}

.equipment-world::before {
  position: absolute;
  top: -18%;
  right: -12%;
  width: 46%;
  aspect-ratio: 1;
  background: rgba(197, 47, 42, 0.32);
  border-radius: 999px;
  content: "";
  filter: blur(80px);
}

.world-media {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border-radius: 8px;
}

.world-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

.world-badge {
  position: absolute;
  left: 22px;
  bottom: 22px;
  width: min(340px, calc(100% - 44px));
  padding: 18px 20px;
  color: var(--white);
  background: rgba(0, 0, 0, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  backdrop-filter: blur(14px);
}

.world-badge span,
.world-badge strong {
  display: block;
}

.world-badge span {
  color: var(--amber);
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
}

.world-badge strong {
  margin-top: 6px;
  font-family: var(--font-display);
  font-size: 1.12rem;
  line-height: 1.16;
  text-transform: uppercase;
}

.world-panel {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-width: 0;
  min-height: 560px;
  padding: clamp(24px, 4vw, 48px);
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
}

.world-panel .eyebrow {
  color: var(--amber);
}

.world-panel h3 {
  max-width: 660px;
  margin-bottom: 18px;
  font-size: clamp(1.85rem, 3.6vw, 3.7rem);
  line-height: 1.02;
  font-weight: 900;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

.world-panel h3 span {
  display: inline;
}

.world-panel p {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.16rem;
  font-weight: 600;
}

.world-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 28px;
}

.world-categories span {
  padding: 9px 12px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
}

.machine-runway {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  position: relative;
  z-index: 1;
}

.machine-runway figure {
  position: relative;
  min-height: 210px;
  margin: 0;
  overflow: hidden;
  background: #eceeeb;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
}

.machine-runway img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.machine-runway figure:hover img {
  transform: scale(1.06);
}

.machine-runway figcaption {
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 7px 10px;
  color: var(--ink);
  background: var(--white);
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
}

.machine-gallery {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(21, 23, 22, 0.96), rgba(32, 41, 39, 0.94)),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 18px);
}

.gallery-copy {
  display: grid;
  grid-template-columns: minmax(0, 760px) minmax(220px, 1fr);
  gap: 24px;
  align-items: end;
  margin-bottom: clamp(28px, 5vw, 52px);
}

.gallery-copy .eyebrow {
  color: var(--amber);
}

.machine-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.machine-tile {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background: #111413;
}

.machine-tile.wide {
  grid-column: span 2;
}

.machine-tile img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
  opacity: 0.78;
  transform: scale(1.02);
  transition: transform 220ms ease, opacity 220ms ease;
}

.machine-tile:hover img {
  opacity: 0.92;
  transform: scale(1.06);
}

.machine-tile div {
  position: absolute;
  inset: auto 0 0;
  padding: 64px 22px 22px;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.82));
}

.machine-tile span {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 7px 10px;
  color: var(--ink);
  background: var(--amber);
  border-radius: 4px;
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
}

.machine-tile h3 {
  margin-bottom: 0;
  font-size: clamp(1.35rem, 2.4vw, 2.2rem);
}

.audiences {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(320px, 1.28fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: stretch;
  background: linear-gradient(180deg, var(--white) 0%, #f5f6f2 100%);
  border-top: 1px solid var(--line);
}

.audiences-heading {
  align-self: center;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.audience-grid article {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 390px;
  padding: clamp(24px, 4vw, 38px);
  overflow: hidden;
  color: var(--white);
  background: var(--charcoal);
  border-radius: 8px;
}

.audience-grid article:first-child {
  background:
    linear-gradient(180deg, rgba(21, 23, 22, 0.16), rgba(21, 23, 22, 0.88)),
    image-set(
      url("assets/gym-floor.avif") type("image/avif"),
      url("assets/gym-floor.webp") type("image/webp"),
      url("assets/gym-floor.jpg")
    ) center / cover;
}

.audience-grid article:last-child {
  background:
    linear-gradient(180deg, rgba(21, 23, 22, 0.05), rgba(21, 23, 22, 0.82)),
    image-set(
      url("assets/lifestyle-home-strength.avif") type("image/avif"),
      url("assets/lifestyle-home-strength.webp") type("image/webp"),
      url("assets/lifestyle-home-strength.png")
    ) center / cover;
}

.audience-grid span {
  width: max-content;
  max-width: 100%;
  padding: 7px 10px;
  color: var(--ink);
  background: var(--amber);
  border-radius: 4px;
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
}

.audience-grid h3 {
  margin-top: auto;
  font-size: clamp(1.55rem, 2.6vw, 2.25rem);
}

.audience-grid p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.08rem;
  font-weight: 600;
}

.built {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(30px, 6vw, 88px);
  align-items: start;
  padding: clamp(58px, 8vw, 100px) clamp(18px, 4vw, 64px);
  color: var(--white);
  background: linear-gradient(135deg, #171a19, #263034 58%, #314438);
  scroll-margin-top: 76px;
}

.built .eyebrow {
  color: #efb36b;
}

.built-list {
  display: grid;
  gap: 14px;
}

.built-list p {
  margin: 0;
  padding: 18px 0;
  color: rgba(255, 255, 255, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 1.2rem;
  font-weight: 600;
}

.process {
  background: var(--white);
}

.section-heading.compact {
  grid-template-columns: minmax(0, 820px);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.process-grid article {
  min-height: 250px;
  padding: clamp(22px, 4vw, 34px);
  background: linear-gradient(180deg, var(--white), #f9faf7);
}

.process-grid span {
  display: block;
  margin-bottom: 42px;
  color: var(--red);
  font-family: var(--font-display);
  font-weight: 900;
}

.process-grid p {
  color: var(--muted);
  font-size: 1.08rem;
  font-weight: 600;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1fr);
  gap: clamp(30px, 6vw, 84px);
  align-items: start;
  background: var(--surface);
}

.page-hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: min(760px, calc(100vh - 76px));
  padding: clamp(80px, 12vw, 150px) clamp(18px, 4vw, 64px) clamp(42px, 7vw, 78px);
  overflow: hidden;
  color: var(--white);
  background: #141716;
}

.page-hero::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(11, 13, 12, 0.9), rgba(11, 13, 12, 0.48) 52%, rgba(11, 13, 12, 0.2)),
    var(--page-image) center / cover;
  content: "";
}

.page-hero::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.62)),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 18px);
  content: "";
}

.about-hero {
  --page-image: image-set(
    url("assets/about-planning.avif") type("image/avif"),
    url("assets/about-planning.webp") type("image/webp"),
    url("assets/about-planning.png")
  );
}

.about-editorial-hero::before {
  background:
    linear-gradient(90deg, rgba(11, 13, 12, 0.92), rgba(11, 13, 12, 0.58) 46%, rgba(11, 13, 12, 0.08)),
    var(--page-image) center / cover;
}

.faq-hero {
  --page-image: image-set(
    url("assets/free-weights.avif") type("image/avif"),
    url("assets/free-weights.webp") type("image/webp"),
    url("assets/free-weights.jpg")
  );
}

.page-hero-copy {
  position: relative;
  z-index: 1;
  max-width: 920px;
}

.page-hero h1 {
  max-width: 980px;
  margin-bottom: 20px;
  font-size: clamp(2.6rem, 6vw, 5.7rem);
}

.page-hero p:not(.eyebrow) {
  max-width: 690px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.15rem, 2vw, 1.42rem);
  font-weight: 600;
}

.page-stats {
  border-top: 0;
}

.about-note {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.56fr);
  gap: clamp(28px, 6vw, 84px);
  align-items: end;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.about-note-copy {
  max-width: 900px;
}

.about-note-copy h2 {
  max-width: 840px;
  margin-bottom: 18px;
  font-size: clamp(1.75rem, 3.2vw, 3rem);
}

.about-note-copy p:not(.eyebrow) {
  max-width: 740px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.18rem;
  font-weight: 600;
}

.about-note-points {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.about-note-points span {
  display: block;
  padding: 16px 18px;
  color: var(--ink);
  background: #fbfcfa;
  font-family: var(--font-display);
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: uppercase;
}

.about-note-points span::before {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 10px;
  background: var(--red);
  border-radius: 999px;
  content: "";
  vertical-align: 1px;
}

.about-note p {
  margin: 0;
}

.about-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.44fr);
  gap: clamp(28px, 6vw, 88px);
  align-items: stretch;
  background: var(--surface);
}

.about-split-copy {
  max-width: 850px;
}

.about-split-copy p:not(.eyebrow),
.about-proof-copy p,
.operations-grid p {
  color: var(--muted);
  font-size: 1.13rem;
  font-weight: 600;
}

.about-split-panel {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 390px;
  padding: clamp(24px, 4vw, 38px);
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(21, 23, 22, 0.04), rgba(21, 23, 22, 0.9)),
    image-set(
      url("assets/about-decisions.avif") type("image/avif"),
      url("assets/about-decisions.webp") type("image/webp"),
      url("assets/about-decisions.png")
    ) center / cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.about-split-panel span,
.operations-grid span {
  width: max-content;
  max-width: 100%;
  margin-bottom: 12px;
  padding: 7px 10px;
  color: var(--ink);
  background: var(--amber);
  border-radius: 4px;
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
}

.about-split-panel strong {
  display: block;
  max-width: 380px;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3vw, 2.45rem);
  line-height: 1.06;
  text-transform: uppercase;
}

.about-split-panel p {
  max-width: 360px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
  font-weight: 600;
}

.about-proof {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 82px);
  align-items: center;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(21, 23, 22, 0.98), rgba(37, 52, 48, 0.96)),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 18px);
}

.about-proof .eyebrow {
  color: var(--amber);
}

.about-proof-media {
  height: clamp(460px, 38vw, 620px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
}

.about-proof-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-proof-copy p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.76);
}

.proof-list {
  display: grid;
  gap: 1px;
  margin: 34px 0 0;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.proof-list div {
  padding: 22px clamp(18px, 2.4vw, 30px);
  background: rgba(255, 255, 255, 0.04);
}

.proof-list dt {
  margin-bottom: 4px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
}

.proof-list dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.06rem;
  font-weight: 600;
}

.about-operations {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(320px, 1fr);
  gap: clamp(28px, 6vw, 84px);
  align-items: stretch;
  background: linear-gradient(180deg, #f7f8f5, #ecefeb);
  border-top: 1px solid var(--line);
}

.operations-heading {
  align-self: center;
}

.operations-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.operations-grid div {
  min-height: 320px;
  padding: clamp(22px, 4vw, 32px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 40px rgba(21, 23, 22, 0.06);
}

.operations-grid span {
  display: inline-flex;
}

.operations-grid p {
  margin: 52px 0 0;
}

.story-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  background: var(--white);
}

.story-media {
  min-height: 540px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.story-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-copy p:not(.eyebrow),
.about-products-copy p,
.faq-intro p,
.cta-band p {
  color: var(--muted);
  font-size: 1.18rem;
  font-weight: 600;
}

.story-copy p:last-child {
  margin-bottom: 0;
}

.values-section {
  background: #f5f6f2;
  border-block: 1px solid var(--line);
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.value-grid article {
  min-height: 320px;
  padding: clamp(22px, 4vw, 36px);
  background: var(--white);
}

.value-grid span {
  display: block;
  margin-bottom: 48px;
  color: var(--red);
  font-family: var(--font-display);
  font-weight: 900;
}

.value-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.08rem;
  font-weight: 600;
}

.about-products {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(320px, 1.28fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(21, 23, 22, 0.97), rgba(37, 52, 48, 0.96)),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 18px);
}

.about-products .eyebrow {
  color: var(--amber);
}

.about-products-copy p {
  color: rgba(255, 255, 255, 0.76);
}

.about-product-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.about-product-strip figure {
  position: relative;
  min-height: 380px;
  margin: 0;
  overflow: hidden;
  background: #111413;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
}

.about-product-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.84;
  transition: transform 220ms ease, opacity 220ms ease;
}

.about-product-strip figure:hover img {
  opacity: 0.96;
  transform: scale(1.05);
}

.about-product-strip figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 8px 10px;
  color: var(--ink);
  background: var(--amber);
  border-radius: 4px;
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
}

.cta-band,
.support-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  color: var(--white);
  background: linear-gradient(135deg, #171a19, #263034 58%, #314438);
}

.cta-band .eyebrow,
.support-band .eyebrow {
  color: var(--amber);
}

.cta-band h2,
.support-band h2 {
  max-width: 980px;
}

.cta-band p {
  max-width: 740px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.74);
}

.faq-section {
  display: grid;
  grid-template-columns: minmax(0, 0.58fr) minmax(320px, 1fr);
  gap: clamp(28px, 6vw, 84px);
  align-items: start;
  background: var(--surface);
}

.faq-intro {
  position: sticky;
  top: 112px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 38px rgba(21, 23, 22, 0.06);
}

.faq-list summary {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  min-height: 62px;
  padding: 18px 58px 18px 22px;
  font-family: var(--font-body);
  font-size: clamp(1.05rem, 1.5vw, 1.28rem);
  font-weight: 800;
  line-height: 1.25;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 22px;
  width: 28px;
  height: 28px;
  color: var(--white);
  background: var(--red);
  border-radius: 999px;
  content: "+";
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 900;
  line-height: 28px;
  text-align: center;
  transform: translateY(-50%);
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list details p {
  margin: 0;
  padding: 0 58px 22px 22px;
  color: var(--muted);
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.55;
}

.contact-email {
  display: inline-block;
  margin-top: 18px;
  color: var(--red);
  font-weight: 850;
}

.enquiry-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: clamp(20px, 4vw, 34px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 12px 13px;
  color: var(--ink);
  background: #fbfcfa;
  border: 1px solid #cfd6d2;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--red);
  outline: 3px solid rgba(197, 47, 42, 0.16);
}

.full {
  grid-column: 1 / -1;
}

.form-status {
  grid-column: 1 / -1;
  min-height: 24px;
  margin: 0;
  color: var(--green);
  font-weight: 700;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 24px clamp(18px, 4vw, 64px);
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.site-footer img {
  width: 142px;
  height: 44px;
  object-fit: contain;
  object-position: left center;
}

.site-footer p {
  margin: 0;
  text-align: right;
  font-size: 1.02rem;
  font-weight: 600;
}

.footer-copy {
  display: grid;
  gap: 8px;
  justify-items: end;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: flex-end;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
}

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

@media (max-width: 940px) {
  .hero,
  .gallery-copy,
  .audiences,
  .built,
  .contact-section,
  .section-heading,
  .story-section,
  .about-products,
  .about-note,
  .about-split,
  .about-proof,
  .about-operations,
  .faq-section,
  .cta-band,
  .support-band {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .audience-grid,
  .machine-grid,
  .process-grid,
  .value-grid,
  .operations-grid {
    grid-template-columns: 1fr;
  }

  .equipment-world {
    grid-template-columns: 1fr;
  }

  .world-media,
  .world-panel {
    min-height: 440px;
  }

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

  .machine-tile.wide {
    grid-column: span 1;
  }

  .story-media {
    min-height: 420px;
  }

  .about-product-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-proof-media {
    height: 440px;
  }

  .operations-grid div {
    min-height: 0;
  }

  .operations-grid p {
    margin-top: 30px;
  }

  .faq-intro {
    position: static;
  }

}

@media (max-width: 680px) {
  .section,
  .machine-gallery,
  .audiences,
  .process,
  .contact-section,
  .built,
  .story-section,
  .values-section,
  .about-products,
  .about-note,
  .about-split,
  .about-proof,
  .about-operations,
  .faq-section,
  .support-band,
  .cta-band {
    scroll-margin-top: 0;
  }

  .site-header {
    position: sticky;
    align-items: center;
    flex-direction: row;
    min-height: 68px;
    padding: 10px 16px;
  }

  .brand img {
    width: 138px;
    height: 42px;
  }

  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 16px;
    left: 16px;
    display: grid;
    gap: 0;
    width: auto;
    padding: 8px;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
    font-size: 0.82rem;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 160ms ease, transform 160ms ease;
  }

  .site-nav a {
    padding: 13px 12px;
    border-radius: 6px;
  }

  .site-nav a:hover,
  .site-nav a:focus-visible,
  .site-nav a[aria-current="page"] {
    background: var(--surface);
  }

  .site-header.nav-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  h1 {
    font-size: clamp(3.05rem, 18vw, 4.35rem);
  }

  .hero {
    background: linear-gradient(180deg, #f7f8f5, #ebe5dc);
  }

  .hero::before,
  .hero::after {
    display: none;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .equipment-stage {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .stage-panel-main {
    min-height: 300px;
  }

  .stage-side {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
  }

  .stage-side .stage-panel {
    min-height: 170px;
  }

  .stage-panel,
  .stage-panel-main,
  .stage-side .stage-panel:first-child,
  .stage-side .stage-panel:last-child {
    clip-path: none;
  }

  .hero-note {
    position: static;
    width: 100%;
    margin-top: 16px;
  }

  .hero-tags {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-tags span {
    text-align: center;
  }

  .stats,
  .enquiry-form {
    grid-template-columns: 1fr;
  }

  .audience-grid article {
    min-height: 330px;
  }

  .machine-tile,
  .machine-tile img {
    min-height: 260px;
  }

  .world-media,
  .world-panel {
    min-height: 0;
  }

  .world-media {
    min-height: 280px;
  }

  .world-badge {
    right: 14px;
    bottom: 14px;
    left: 14px;
    width: auto;
    padding: 14px;
  }

  .world-badge strong {
    font-size: 0.95rem;
  }

  .world-panel {
    justify-content: flex-start;
    padding: 22px;
  }

  .world-panel p {
    font-size: 1rem;
  }

  .page-hero {
    min-height: 560px;
    padding-top: 72px;
  }

  .page-hero h1 {
    font-size: clamp(2.25rem, 12vw, 3.7rem);
  }

  .story-media {
    min-height: 330px;
  }

  .value-grid article {
    min-height: 0;
  }

  .value-grid span {
    margin-bottom: 28px;
  }

  .about-product-strip {
    grid-template-columns: 1fr;
  }

  .about-product-strip figure {
    min-height: 280px;
  }

  .about-note-copy h2 {
    font-size: clamp(1.55rem, 9vw, 2.35rem);
  }

  .about-split-panel {
    min-height: 310px;
  }

  .about-proof-media {
    height: 330px;
  }

  .proof-list div {
    padding: 18px;
  }

  .faq-list summary {
    min-height: 0;
    padding: 18px 54px 18px 18px;
    font-size: 1.02rem;
  }

  .faq-list details p {
    padding: 0 18px 20px;
    font-size: 1rem;
  }

  .world-panel h3 {
    font-size: clamp(1.45rem, 8vw, 2.15rem);
    line-height: 1.08;
    overflow-wrap: normal;
    word-break: normal;
  }

  .world-panel h3 span {
    display: block;
  }

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

  .machine-runway figure {
    min-height: 230px;
  }

  .process-grid article {
    min-height: 0;
  }

  .process-grid span {
    margin-bottom: 28px;
  }

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

  .site-footer p,
  .footer-copy {
    text-align: left;
    justify-items: start;
  }

  .footer-nav {
    justify-content: flex-start;
  }
}
