:root {
  --blue: #3a7ec3;
  --blue-bright: #3a7ec3;
  --blue-deep: #2b6499;
  --navy: #333333;
  --ink: #1a1a1a;
  --sky: #7ba9d4;
  --yellow: #f5c242;
  --gold: #f5c242;
  --gray: #bfc1c5;
  --paper: #f5f6f8;
  --white: #ffffff;
  --muted: #8a8d92;
  --line: rgba(255, 255, 255, 0.12);
  --shadow: 0 24px 60px rgba(51, 51, 51, 0.16);
  --radius: 18px;
  --max: 1180px;
  --nav-h: 84px;
  --font-display: "Montserrat", sans-serif;
  --font-body: "Manrope", sans-serif;
}

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

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

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--navy);
  background: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

:where(a, button, input, textarea, summary):focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  letter-spacing: 0.02em;
  line-height: 0.95;
  margin: 0 0 0.4em;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(3.2rem, 8vw, 7.2rem);
}

h2 {
  font-size: clamp(2.1rem, 4.4vw, 3.6rem);
}

h3 {
  font-size: 1.45rem;
}

section[id] {
  scroll-margin-top: calc(var(--nav-h) + 10px);
}

p {
  margin: 0 0 1rem;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  background: var(--yellow);
  color: var(--ink);
  padding: 0.6rem 1rem;
  z-index: 100;
}

.skip-link:focus {
  top: 1rem;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 80;
  height: 3px;
  width: 100%;
  transform: scaleX(0);
  transform-origin: left center;
  pointer-events: none;
  background: linear-gradient(90deg, var(--blue), var(--gold));
}

.cursor-glow {
  position: fixed;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(circle, rgba(58, 126, 195, 0.22), rgba(245, 194, 66, 0.1) 42%, transparent 64%);
  transform: translate(-50%, -50%);
  mix-blend-mode: screen;
  opacity: 0.75;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--sky);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 0.9rem;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 6px rgba(245, 196, 0, 0.16);
}

.section-head {
  max-width: 720px;
  margin: 0 auto 3rem;
  text-align: center;
}

.section-head p:not(.eyebrow) {
  color: var(--muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border: 0;
  cursor: pointer;
  font-weight: 700;
  letter-spacing: 0.04em;
  border-radius: 999px;
  padding: 0.75rem 1.25rem;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

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

.btn:active {
  transform: translateY(0) scale(0.98);
}

.btn--sm {
  padding: 0.55rem 1rem;
  font-size: 0.82rem;
}

.btn--lg {
  padding: 0.95rem 1.5rem;
  font-size: 0.95rem;
}

.btn--solid {
  background: var(--blue-bright);
  color: var(--white);
  box-shadow: 0 10px 30px rgba(4, 107, 210, 0.35);
}

.btn--solid:hover {
  background: var(--blue-deep);
  box-shadow: 0 14px 36px rgba(58, 126, 195, 0.42);
}

.btn--ghost,
.btn--line {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.08);
}

.btn--line.btn--on-light {
  color: var(--navy);
  border-color: var(--blue);
}

.btn--line.btn--on-light:hover {
  background: var(--blue);
  color: var(--white);
}

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--nav-h);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid #e4e6ea;
  transition: box-shadow 0.25s ease;
}

.nav.is-scrolled {
  box-shadow: 0 12px 32px rgba(51, 51, 51, 0.1);
}

.nav__inner {
  max-width: var(--max);
  margin: 0 auto;
  height: 100%;
  padding: 0 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--navy);
}

.logo__img {
  display: block;
  height: 56px;
  width: auto;
  max-width: min(58vw, 300px);
  object-fit: contain;
}

.logo__word {
  display: none;
}

.nav__links {
  display: flex;
  gap: 1.4rem;
}

.nav__links a {
  position: relative;
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav__links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.nav__links a:hover,
.nav__links a.is-active {
  color: var(--blue);
}

.nav__links a.is-active::after,
.nav__links a:hover::after {
  transform: scaleX(1);
}

.nav .btn--ghost {
  color: var(--navy);
  border-color: #d5d7db;
  background: transparent;
}

.nav .btn--ghost:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.nav__toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid #d5d7db;
  background: transparent;
  border-radius: 10px;
  padding: 10px 11px;
}

.nav__toggle span {
  display: block;
  height: 2px;
  background: var(--navy);
  margin: 5px 0;
}

.hero {
  position: relative;
  min-height: calc(100vh - var(--nav-h));
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 2rem;
  max-width: var(--max);
  margin: 0 auto;
  padding: 3.5rem 1.25rem 5rem;
  color: var(--white);
}

.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(110, 193, 228, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(110, 193, 228, 0.07) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(circle at 30% 40%, black, transparent 70%);
  pointer-events: none;
}

.hero__wash {
  position: absolute;
  inset: auto -10% -20% 40%;
  height: 70%;
  background: radial-gradient(circle, rgba(2, 86, 164, 0.45), transparent 65%);
  pointer-events: none;
}

.hero__mark {
  position: absolute;
  right: 6%;
  top: 10%;
  width: min(320px, 36vw);
  height: min(320px, 36vw);
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(circle at 35% 35%, rgba(245, 194, 66, 0.28), transparent 42%),
    conic-gradient(from 200deg, rgba(58, 126, 195, 0.22), rgba(245, 194, 66, 0.16), transparent 62%);
  border-radius: 36% 64% 42% 58% / 48% 32% 68% 52%;
  filter: blur(1px);
  animation: markDrift 16s ease-in-out infinite;
}

.hero__copy,
.hero__visual {
  position: relative;
  z-index: 1;
}

.hero__accent {
  color: var(--yellow);
  display: block;
}

.hero__lead {
  font-size: 1.12rem;
  color: rgba(255, 255, 255, 0.78);
  max-width: 36rem;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 1.6rem 0 1.8rem;
}

.hero__pills {
  display: flex;
  gap: 1.4rem;
  margin: 0;
}

.hero__pills div {
  padding-right: 1.4rem;
  border-right: 1px solid var(--line);
}

.hero__pills div:last-child {
  border: 0;
}

.hero__pills dt {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero__pills dd {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.5rem;
}

.hero__visual {
  position: relative;
  transition: transform 0.4s ease-out;
}

.hero__visual img {
  width: 100%;
  border-radius: 24px;
  box-shadow: var(--shadow);
  transform: perspective(1200px) rotateY(-8deg) rotateX(4deg);
  animation: float 7s ease-in-out infinite;
}

.hero__badge {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  background: rgba(7, 12, 22, 0.78);
  backdrop-filter: blur(10px);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.8rem 1rem;
  color: var(--white);
  font-size: 0.85rem;
}

.hero__badge span {
  display: block;
  color: var(--yellow);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.7rem;
  margin-bottom: 0.2rem;
}

.hero__scroll {
  position: absolute;
  left: 1.25rem;
  bottom: 1.4rem;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

@keyframes float {
  0%,
  100% {
    transform: perspective(1200px) rotateY(-8deg) rotateX(4deg) translateY(0);
  }
  50% {
    transform: perspective(1200px) rotateY(-4deg) rotateX(2deg) translateY(-12px);
  }
}

@keyframes markDrift {
  0%,
  100% {
    transform: rotate(0deg) scale(1);
  }
  50% {
    transform: rotate(14deg) scale(1.08);
  }
}

.trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem 2rem;
  padding: 1.1rem 1.25rem;
  background: var(--blue);
  color: var(--white);
  font-size: 0.85rem;
}

.trust ul {
  display: flex;
  gap: 0.6rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.trust li {
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  padding: 0.25rem 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.trust__note {
  color: rgba(255, 255, 255, 0.75);
}

.finder,
.range,
.story,
.why,
.industries,
.reviews,
.faq {
  padding: 5.5rem 1.25rem;
}

.finder,
.story,
.industries,
.faq {
  background: #0b1424;
  color: var(--white);
}

.range,
.why,
.reviews {
  background: var(--paper);
  color: var(--navy);
}

.range .section-head p:not(.eyebrow),
.why .section-head p:not(.eyebrow),
.reviews .section-head p:not(.eyebrow) {
  color: #5b6a82;
}

.range .eyebrow,
.why .eyebrow,
.reviews .eyebrow,
.spotlight .eyebrow,
.contact .eyebrow {
  color: var(--blue);
}

.finder__board,
.range__layout,
.contact {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 1.5rem;
}

.finder__board > *,
.range__layout > *,
.contact > *,
.hero > *,
.spotlight__grid > * {
  min-width: 0;
}

.finder__steps,
.range__list {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.finder__label {
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.chip,
.range__list button,
.industry {
  text-align: left;
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.95rem 1.1rem;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.chip.is-active,
.range__list button.is-active,
.industry.is-active,
.chip:hover,
.range__list button:hover,
.industry:hover {
  background: var(--blue);
  border-color: var(--blue-bright);
  box-shadow: 0 10px 24px rgba(4, 107, 210, 0.28);
}

.chip:hover,
.range__list button:hover,
.industry:hover {
  transform: translateY(-2px);
}

.finder__result,
.range__panel {
  background: linear-gradient(160deg, #10213a, #0a1628);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 2rem;
  min-height: 280px;
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.finder__result {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.finder__result.is-switching,
.range__panel.is-switching {
  opacity: 0.4;
  transform: translateY(8px);
}

.finder__kicker,
.finder__result h3,
.finder__body {
  width: 100%;
}

.finder__kicker,
.range__count {
  color: var(--yellow);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.75rem;
}

.finder__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  list-style: none;
  padding: 0 0 1.35rem;
  margin: 1.55rem 0 0;
  width: 100%;
  border-bottom: 1px solid var(--line);
}

.finder__tags li {
  margin: 0;
  padding: 0;
  background: none;
  border: 0;
}

.finder-tag {
  appearance: none;
  background: rgba(110, 193, 228, 0.12);
  border: 1px solid rgba(110, 193, 228, 0.28);
  border-radius: 999px;
  padding: 0.5rem 0.95rem;
  font: inherit;
  font-size: 0.82rem;
  color: var(--white);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.finder-tag:hover,
.finder-tag:focus-visible {
  transform: translateY(-2px);
  background: rgba(245, 194, 66, 0.16);
  border-color: var(--gold);
  outline: none;
}

.finder__cta {
  align-self: flex-start;
  margin-top: 1.45rem;
}

.range__list button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--navy);
  background: var(--white);
  border-color: #d9e3f0;
}

.range__list button > span {
  min-width: 0;
  line-height: 1.3;
}

.range .range__list button.is-active,
.range .range__list button:hover {
  color: var(--white);
}

.range__panel {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1.2rem;
  align-items: center;
  background: var(--white);
  color: var(--navy);
  box-shadow: var(--shadow);
}

.range__panel img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 16px;
  background: #e8eef6;
}

.range__uses {
  padding-left: 1.1rem;
  color: #4d5d75;
}

.spotlight {
  background: var(--white);
  color: var(--navy);
  padding: 5rem 1.25rem;
}

.spotlight__grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2.5rem;
  align-items: center;
}

.range__list button b {
  font-family: var(--font-display);
  color: var(--blue);
  font-size: 0.72rem;
  line-height: 1.25;
  letter-spacing: 0.04em;
  text-align: right;
  white-space: nowrap;
}

.range__list button.is-active b,
.range__list button:hover b,
.range__list button:focus-visible b {
  color: var(--yellow);
}

.spotlight__media {
  background: var(--white);
  border: 1px solid #e4e6ea;
  border-radius: 28px;
  padding: 2rem;
  display: grid;
  place-items: center;
}

.spotlight__media img {
  margin: 0 auto;
  max-height: 320px;
  width: auto;
  object-fit: contain;
}

.spec-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  border-top: 1px solid #dce5f1;
}

.spec-list li {
  border-bottom: 1px solid #dce5f1;
}

.spec {
  width: 100%;
  background: none;
  border: 0;
  text-align: left;
  padding: 0.95rem 0;
  font-weight: 800;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.spec::after {
  content: "+";
  color: var(--blue);
  font-size: 1.2rem;
  line-height: 1;
}

.spec.is-open::after {
  content: "–";
  color: var(--gold);
}

.spec-list p {
  display: none;
  margin: 0 0 1rem;
  color: #536277;
}

.spec-list li:has(.is-open) p,
.spec-list li.open p {
  display: block;
}

.timeline {
  max-width: var(--max);
  margin: 0 auto 3rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  list-style: none;
  padding: 0;
}

.timeline li {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 1.5rem;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.timeline li:hover {
  transform: translateY(-6px);
  border-color: rgba(245, 194, 66, 0.45);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.18);
}

.timeline span {
  color: var(--yellow);
  font-family: var(--font-display);
  font-size: 1.3rem;
}

.story__stats {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.story__stats article {
  text-align: center;
  padding: 1.4rem;
  border-radius: 18px;
  background: var(--blue);
}

.story__stats strong {
  display: block;
  font-family: var(--font-display);
  font-size: 3rem;
}

.why__grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.9rem;
}

.why__grid article:nth-child(4),
.why__grid article:nth-child(5) {
  grid-column: span 1;
}

.why__grid article {
  background: var(--white);
  border-radius: 20px;
  padding: 1.3rem;
  box-shadow: 0 10px 30px rgba(5, 22, 80, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.why__grid article:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.why__grid span {
  font-family: var(--font-display);
  color: var(--blue-bright);
  font-size: 1.4rem;
}

.industries__grid {
  max-width: var(--max);
  margin: 0 auto 1.4rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
}

.industry {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.industry span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
}

.industries__copy {
  max-width: var(--max);
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.78);
  min-height: 3.2rem;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.industries__copy.is-switching {
  opacity: 0.35;
  transform: translateY(6px);
}

.reviews__track {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(220px, 1fr));
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 0.5rem;
}

.reviews__track figure {
  min-width: 240px;
  scroll-snap-align: start;
  background: var(--white);
  border-radius: 20px;
  padding: 1.4rem;
  margin: 0;
  box-shadow: 0 10px 30px rgba(5, 22, 80, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.reviews__track figure:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.reviews__track blockquote {
  margin: 0 0 1rem;
  font-size: 0.95rem;
}

.reviews__track figcaption {
  font-weight: 800;
  color: var(--blue);
}

.faq__list {
  max-width: 820px;
  margin: 0 auto;
}

details {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 0.4rem 1rem;
  margin-bottom: 0.7rem;
  transition: border-color 0.2s ease, background 0.2s ease;
}

details:hover,
details[open] {
  border-color: rgba(245, 194, 66, 0.35);
}

summary {
  cursor: pointer;
  font-weight: 800;
  padding: 0.8rem 0;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  color: var(--gold);
  font-size: 1.35rem;
  line-height: 1;
}

details[open] summary::after {
  content: "–";
}

.contact {
  background:
    linear-gradient(120deg, rgba(2, 86, 164, 0.92), rgba(5, 22, 80, 0.94)),
    url("../assets/products/safety-lg.jpg") center/cover;
  color: var(--white);
  padding: 5rem 1.25rem;
  align-items: start;
}

.contact__facts {
  list-style: none;
  padding: 0;
}

.contact__facts li {
  margin-bottom: 1rem;
}

.contact__facts span {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sky);
}

.contact__form {
  background: rgba(8, 16, 30, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 24px;
  padding: 1.85rem 1.7rem;
  backdrop-filter: blur(16px);
}

.contact__form-title {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 1.4rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}

label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
}

input,
textarea {
  width: 100%;
  margin-top: 0.45rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border-radius: 12px;
  padding: 0.8rem 0.9rem;
}

textarea {
  resize: vertical;
}

button:disabled {
  cursor: wait;
  opacity: 0.7;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(245, 194, 66, 0.22);
}

.role-set {
  border: 0;
  padding: 0;
  margin: 1.2rem 0 1.45rem;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 1.5rem;
}

.role-set__label {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 700;
}

.role-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}

.radio {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin: 0;
  padding: 0.95rem 1.05rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
  font-weight: 600;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.radio:hover {
  transform: translateY(-2px);
  border-color: rgba(245, 194, 66, 0.45);
}

.radio:has(input:checked) {
  border-color: var(--gold);
  background: rgba(245, 194, 66, 0.14);
  box-shadow: inset 0 0 0 1px var(--gold);
}

.radio input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  margin: 0;
  pointer-events: none;
}

.radio__mark {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  display: grid;
  place-items: center;
}

.radio__mark::after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  transform: scale(0);
  transition: transform 0.18s ease;
}

.radio:has(input:checked) .radio__mark {
  border-color: var(--gold);
}

.radio:has(input:checked) .radio__mark::after {
  transform: scale(1);
}

.radio:has(input:focus-visible) {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.form-status {
  min-height: 1.2rem;
  color: var(--sky);
  font-size: 0.9rem;
}

.form-status.is-success {
  color: var(--gold);
}

.form-trap {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.cf-turnstile {
  min-height: 65px;
}

.form-note {
  margin: 0.75rem 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: var(--delay, 0ms);
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}

.footer {
  background: #1a1a1a;
  color: rgba(255, 255, 255, 0.75);
  padding: 3rem 1.25rem 1.4rem;
}

.footer .logo {
  background: var(--white);
  padding: 0.45rem 0.7rem;
  border-radius: 12px;
  display: inline-flex;
}

.footer__top {
  max-width: var(--max);
  margin: 0 auto 2rem;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
}

.footer__top p:first-child {
  color: var(--white);
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.footer__top a {
  display: block;
  margin: 0.35rem 0;
}

.footer__bottom {
  max-width: var(--max);
  margin: 0 auto;
  border-top: 1px solid var(--line);
  padding-top: 1rem;
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
}

@media (max-width: 980px) {
  .hero,
  .finder__board,
  .range__layout,
  .range__panel,
  .spotlight__grid,
  .timeline,
  .story__stats,
  .why__grid,
  .industries__grid,
  .contact,
  .footer__top {
    grid-template-columns: 1fr;
  }

  .nav__links {
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    padding: 1rem 1.25rem 1.4rem;
    background: #ffffff;
    border-bottom: 1px solid #e4e6ea;
  }

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

  .nav__toggle {
    display: block;
  }

  .nav__actions .btn--ghost {
    display: none;
  }

  .hero__visual img {
    transform: none;
    animation: none;
  }

  .hero {
    min-height: auto;
    padding-bottom: 3rem;
  }

  .hero__scroll {
    display: none;
  }

  .hero__mark {
    opacity: 0.45;
  }

  .role-row {
    grid-template-columns: 1fr;
  }

  .nav__links a::after {
    display: none;
  }

  .why__grid {
    grid-template-columns: 1fr 1fr;
  }

  .cursor-glow {
    display: none;
  }
}

@media (max-width: 640px) {
  .form-row,
  .why__grid,
  .footer__bottom {
    grid-template-columns: 1fr;
    display: grid;
  }

  .hero {
    padding-top: 2rem;
  }

  h1 {
    font-size: clamp(2.75rem, 13vw, 3.2rem);
  }

  .hero__pills {
    gap: 0;
    width: 100%;
  }

  .hero__pills div {
    flex: 1 1 0;
    min-width: 0;
    padding: 0 0.75rem;
  }

  .hero__pills div:first-child {
    padding-left: 0;
  }

  .hero__pills dd {
    font-size: 1.25rem;
    overflow-wrap: anywhere;
  }

  .trust {
    align-items: flex-start;
  }

  .trust ul {
    max-width: 100%;
    overflow-x: auto;
    padding-bottom: 0.25rem;
  }

  .finder,
  .range,
  .story,
  .why,
  .industries,
  .reviews,
  .faq,
  .contact,
  .spotlight {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero__visual img,
  .hero__mark,
  .why__grid article,
  .btn,
  .reveal {
    animation: none;
    transition: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
