:root {
  --bg: #06111a;
  --bg-2: #0a1620;
  --panel: rgba(9, 20, 29, .78);
  --panel-strong: rgba(7, 16, 24, .92);
  --line: rgba(255,255,255,.1);
  --text: #edf4f8;
  --muted: #a9bac5;
  --white: #fff;
  --accent: #8bb18d;
  --accent-2: #b7d1b7;
  --accent-deep: #597a5c;
  --shadow: 0 22px 50px rgba(0,0,0,.32);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --container: min(1180px, calc(100vw - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  background:
    radial-gradient(circle at top, rgba(82, 109, 84, .16), transparent 36%),
    linear-gradient(180deg, #06111a 0%, #08141d 28%, #091823 100%);
  color: var(--text);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; }

.equipment-page { overflow: clip; }
.section {
  width: var(--container);
  margin: 0 auto;
  padding: 96px 0;
}
.section-divider { width: 100%; padding: 0 0 110px; }
.section-head { max-width: 760px; margin-bottom: 40px; }
.section-head h2,
.hero-lead,
.eyebrow,
.topbar-nav a,
.topbar-home,
.topbar-cta,
.btn,
.product-category,
.product-standard,
.hero-tags li,
.footer-label {
  letter-spacing: .01em;
}
.section-head h2,
.eq-hero-copy h1,
.why-card h3,
.product-title,
.contact-copy h2,
.modal-title {
  font-family: 'Barlow Condensed', sans-serif;
}
.section-head h2 {
  margin: 8px 0 14px;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: .96;
}
.section-head p,
.hero-lead,
.why-card p,
.product-desc,
.product-meta,
.contact-copy p,
.site-footer span,
.site-footer a,
.modal-copy p,
.modal-copy li {
  color: var(--muted);
  line-height: 1.75;
  font-size: 1rem;
}
.intro-centered { text-align: center; margin-inline: auto; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.08);
  color: var(--accent-2);
  font-size: .82rem;
  font-weight: 700;
  text-transform: uppercase;
}

.eq-topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  padding: 16px 20px 0;
}
.topbar-shell {
  width: var(--container);
  margin: 0 auto;
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-radius: 24px;
  border: 1px solid transparent;
  background: transparent;
  backdrop-filter: none;
  box-shadow: none;
}
.topbar-home,
.topbar-nav a,
.topbar-cta {
  font-size: .96rem;
  font-weight: 600;
}
.topbar-home {
  color: var(--white);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.topbar-home::before {
  content: '←';
  opacity: .85;
}
.topbar-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
}
.topbar-nav a {
  color: rgba(237,244,248,.82);
  position: relative;
}
.topbar-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, rgba(255,255,255,0), var(--accent) 30%, rgba(255,255,255,0));
  transition: transform .3s ease;
}
.topbar-nav a:hover::after,
.topbar-nav a:focus-visible::after { transform: scaleX(1); }
.topbar-cta {
  padding: 12px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(134, 177, 136, .16), rgba(134, 177, 136, .35));
  border: 1px solid rgba(183,209,183,.25);
  color: var(--white);
}

.eq-hero {
  position: relative;
  min-height: 100svh;
  margin-top: -90px;
  display: flex;
  align-items: stretch;
}
.eq-hero-video,
.eq-hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.eq-hero-video {
  object-fit: cover;
  object-position: center center;
}
.eq-hero-overlay {
  background:
    linear-gradient(180deg, rgba(6,17,26,.08) 0%, rgba(6,17,26,.14) 35%, rgba(6,17,26,.36) 78%, rgba(6,17,26,.58) 100%),
    radial-gradient(circle at 20% 30%, rgba(139,177,141,.10), transparent 28%),
    radial-gradient(circle at 80% 18%, rgba(255,255,255,.04), transparent 20%);
}
.eq-hero-grid {
  position: relative;
  z-index: 2;
  width: var(--container);
  margin: 0 auto;
  display: grid;
  align-items: center;
  padding: 170px 0 90px;
}
.eq-hero-copy {
  max-width: 740px;
  display: grid;
  gap: 20px;
}
.eq-logo-wrap {
  position: relative;
  width: min(92vw, 760px);
  isolation: isolate;
  margin: 8px 0 10px;
  filter: drop-shadow(0 18px 34px rgba(0,0,0,.24));
}
.eq-logo {
  width: 100%;
  position: relative;
  z-index: 4;
}
.eq-logo-glow,
.eq-logo-shine,
.eq-logo-spark {
  position: absolute;
  pointer-events: none;
}
.eq-logo-glow {
  inset: 18% -4% -8% -4%;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(183,209,183,.42) 0%, rgba(139,177,141,.18) 38%, rgba(139,177,141,0) 76%);
  filter: blur(30px);
  opacity: .92;
  z-index: 1;
  animation: pulseGlow 4.8s ease-in-out infinite;
}
.eq-logo-glow.glow-secondary {
  inset: 8% 12% -2% 38%;
  background: radial-gradient(circle, rgba(255,255,255,.22) 0%, rgba(183,209,183,.14) 34%, rgba(183,209,183,0) 74%);
  filter: blur(22px);
  animation-duration: 6.1s;
  animation-direction: alternate;
}
.eq-logo-shine {
  inset: -6% auto -8% -8%;
  width: 38%;
  background: linear-gradient(115deg, rgba(255,255,255,0) 0%, rgba(255,255,255,.5) 48%, rgba(255,255,255,0) 100%);
  transform: skewX(-18deg) translateX(-130%);
  opacity: .7;
  z-index: 5;
  mix-blend-mode: screen;
  animation: logoSweep 5.5s ease-in-out infinite;
}
.eq-logo-spark {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,1) 0%, rgba(183,209,183,.95) 42%, rgba(183,209,183,0) 72%);
  box-shadow: 0 0 18px rgba(255,255,255,.55);
  z-index: 6;
  animation: floatSpark 4s ease-in-out infinite;
}
.spark-one { left: 18%; top: 24%; }
.spark-two { right: 17%; top: 18%; width: 8px; height: 8px; animation-delay: .9s; }
.spark-three { left: 54%; bottom: 10%; width: 6px; height: 6px; animation-delay: 1.8s; }

.hero-lead {
  max-width: 58ch;
  font-size: 1.06rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform .28s ease, box-shadow .28s ease, background .28s ease, border-color .28s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  color: #07131b;
  background: linear-gradient(135deg, #d8ead8 0%, #9fbc9f 45%, #88af8a 100%);
  box-shadow: 0 18px 28px rgba(69, 103, 72, .32);
}
.btn-secondary {
  color: var(--white);
  border-color: rgba(255,255,255,.18);
  background: rgba(255,255,255,.06);
}
.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 2px 0 0;
}
.hero-tags li {
  padding: 10px 15px;
  border-radius: 999px;
  background: rgba(8, 18, 28, .54);
  border: 1px solid rgba(255,255,255,.08);
  color: #e7efee;
  font-size: .88rem;
  font-weight: 600;
}

.eq-intro { padding-top: 66px; }
.filters-bar {
  position: sticky;
  top: 96px;
  z-index: 18;
  width: var(--container);
  margin: 0 auto;
}
.filters-inner {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  padding: 18px 20px;
  margin: 0 auto;
  border-radius: 22px;
  background: rgba(9,20,29,.82);
  border: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}
.filter-btn {
  appearance: none;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  color: #dfe7eb;
  font-weight: 700;
  border-radius: 999px;
  padding: 11px 16px;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, border-color .25s ease;
}
.filter-btn:hover { transform: translateY(-2px); }
.filter-btn.active {
  color: #06111a;
  background: linear-gradient(135deg, #dcebdc 0%, #a1c1a2 100%);
  border-color: rgba(255,255,255,.08);
  box-shadow: 0 10px 22px rgba(93, 126, 96, .22);
}

.products-section { padding-top: 48px; }
.products-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}
.product-card {
  grid-column: span 4;
  display: grid;
  align-content: start;
  gap: 18px;
  min-height: 100%;
  padding: 22px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255,255,255,.96), rgba(248,252,249,.96));
  border: 1px solid rgba(255,255,255,.2);
  box-shadow: 0 22px 44px rgba(0, 0, 0, .16);
  color: #0b1720;
  transition: transform .35s cubic-bezier(.2,.7,.2,1), box-shadow .35s ease, border-color .35s ease;
}
.product-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 30px 58px rgba(0,0,0,.22);
}
.product-visual {
  position: relative;
  aspect-ratio: 16 / 10;
  border-radius: 22px;
  overflow: hidden;
  background: radial-gradient(circle at 30% 20%, rgba(255,255,255,.45), transparent 28%), linear-gradient(135deg, #5e7d62 0%, #8eb090 48%, #dbe9db 100%);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.28);
}
.product-visual::before,
.product-visual::after {
  content: '';
  position: absolute;
  transition: transform .5s ease, opacity .35s ease;
}
.product-card:hover .product-visual::before,
.product-card:hover .product-visual::after,
.product-card:hover .visual-chip,
.product-card:hover .visual-accent,
.product-card:hover .visual-node,
.product-card:hover .visual-rope,
.product-card:hover .visual-anchor,
.product-card:hover .visual-grid {
  transform: scale(1.06) translateY(-4px);
}
.product-visual::before {
  inset: 24px 22px auto auto;
  width: 94px;
  height: 94px;
  border-radius: 22px;
  border: 2px solid rgba(255,255,255,.62);
  opacity: .45;
}
.product-visual::after {
  left: 22px;
  right: 22px;
  bottom: 18px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255,255,255,.32);
  opacity: .8;
}
.visual-chip,
.visual-accent,
.visual-node,
.visual-rope,
.visual-anchor,
.visual-grid,
.visual-tag {
  position: absolute;
}
.visual-chip {
  left: 22px;
  top: 24px;
  width: 110px;
  height: 110px;
  border-radius: 28px;
  background: rgba(255,255,255,.88);
  display: grid;
  place-items: center;
  box-shadow: 0 14px 28px rgba(8,22,17,.16);
}
.visual-tag {
  right: 18px;
  top: 18px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(8, 18, 28, .2);
  color: rgba(255,255,255,.92);
  font-size: .78rem;
  font-weight: 700;
}
.visual-accent {
  inset: auto 18px 20px auto;
  width: 136px;
  height: 86px;
  border-radius: 26px 26px 26px 10px;
  background: linear-gradient(135deg, rgba(8,18,28,.18), rgba(255,255,255,.15));
  backdrop-filter: blur(10px);
}
.visual-node {
  left: 34px;
  bottom: 24px;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 6px solid rgba(8,18,28,.7);
  box-shadow: inset 0 0 0 8px rgba(255,255,255,.72);
}
.visual-rope {
  right: 52px;
  top: 46px;
  width: 12px;
  height: 120px;
  border-radius: 999px;
  background: repeating-linear-gradient(180deg, rgba(8,18,28,.88) 0 10px, rgba(155,194,157,.95) 10px 20px);
}
.visual-anchor {
  right: 26px;
  bottom: 20px;
  width: 126px;
  height: 10px;
  border-radius: 999px;
  background: rgba(8,18,28,.78);
}
.visual-grid {
  inset: auto 14px 16px 14px;
  height: 52px;
  opacity: .22;
  background-image:
    linear-gradient(rgba(255,255,255,.7) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.7) 1px, transparent 1px);
  background-size: 18px 18px;
}
.visual-icon {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 3.8rem;
  line-height: 1;
  color: var(--accent-deep);
  transform: translateY(-2px);
}
.product-category,
.product-standard {
  font-size: .76rem;
  font-weight: 800;
  text-transform: uppercase;
}
.product-category { color: #5c7c60; }
.product-standard { color: #65727a; }
.product-title {
  margin: 0;
  font-size: 2rem;
  line-height: .94;
}
.product-desc,
.product-meta { margin: 0; }
.product-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: auto;
}
.product-btn {
  appearance: none;
  border: 0;
  cursor: pointer;
  min-height: 46px;
  padding: 0 16px;
  border-radius: 999px;
  font-weight: 700;
}
.product-btn.primary {
  background: linear-gradient(135deg, #5d7d60 0%, #8fb091 100%);
  color: #fff;
}
.product-btn.secondary {
  background: #eff4ef;
  color: #23313a;
}

.why-bia { padding-top: 84px; }
.why-grid {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.why-card {
  padding: 28px 24px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,.1);
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}
.why-ic {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  font-size: 1.65rem;
  background: linear-gradient(135deg, rgba(139,177,141,.18), rgba(255,255,255,.12));
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.08);
}
.why-card h3 {
  margin: 18px 0 8px;
  font-size: 1.8rem;
}

.contact-strip {
  margin-top: 28px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,.04)),
    radial-gradient(circle at 12% 18%, rgba(139,177,141,.16), transparent 25%),
    linear-gradient(180deg, #07131b 0%, #09161f 100%);
}
.contact-shell {
  width: var(--container);
  margin: 0 auto;
  padding: 78px 0 0;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, .85fr);
  gap: 28px;
  align-items: center;
}
.contact-copy h2 {
  margin: 10px 0 14px;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  line-height: .96;
}
.contact-list {
  display: grid;
  gap: 8px;
  margin-top: 18px;
}
.contact-actions {
  display: grid;
  gap: 14px;
  padding: 28px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.06);
  box-shadow: var(--shadow);
}

.partner-band {
  background: #fff;
  border-top: 1px solid rgba(8,18,28,.08);
  border-bottom: 1px solid rgba(8,18,28,.08);
  padding: 18px 0;
}
.partner-band-inner {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
  align-items: center;
}
.partner {
  min-height: 90px;
  display: grid;
  place-items: center;
  padding: 16px;
  border-radius: 20px;
  background: linear-gradient(180deg, #fff, #f8fbff);
  box-shadow: 0 10px 24px rgba(8,18,28,.08);
}
.partner img { max-height: 56px; width: auto; max-width: 100%; object-fit: contain; }

.site-footer {
  background: #07131b;
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 34px 20px 18px;
}
.footer-inner {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr .9fr .9fr;
  gap: 28px;
}
.footer-block {
  display: grid;
  align-content: start;
  gap: 8px;
}
.footer-brand-block strong {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2rem;
  letter-spacing: .03em;
}
.footer-label {
  color: #dbe6eb;
  font-size: .82rem;
  font-weight: 800;
  text-transform: uppercase;
}
.footer-bottom {
  width: var(--container);
  margin: 18px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.08);
  color: #9cb0bb;
  font-size: .92rem;
}

.eq-modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
}
.eq-modal.open { display: block; }
.eq-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 10, 16, .72);
  backdrop-filter: blur(8px);
}
.eq-modal-content {
  position: relative;
  z-index: 2;
  width: min(980px, calc(100vw - 24px));
  margin: min(8vh, 54px) auto;
  max-height: calc(100vh - 80px);
  overflow: auto;
  border-radius: 30px;
  background: linear-gradient(180deg, #ffffff, #f4f8f5);
  color: #08141d;
  box-shadow: 0 28px 66px rgba(0,0,0,.28);
}
.modal-close {
  position: sticky;
  top: 14px;
  float: right;
  margin: 16px 16px 0 0;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: rgba(8,20,29,.08);
  color: #08141d;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}
.modal-layout {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 24px;
  padding: 28px 30px 34px;
}
.modal-visual {
  min-height: 360px;
  border-radius: 28px;
  overflow: hidden;
}
.modal-copy {
  display: grid;
  gap: 16px;
}
.modal-title {
  margin: 6px 0 0;
  font-size: clamp(2.4rem, 5vw, 3.5rem);
  line-height: .9;
}
.modal-sub {
  font-size: .84rem;
  font-weight: 800;
  text-transform: uppercase;
  color: #61717a;
}
.modal-points {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 8px;
}
.modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.reveal-up,
.reveal-logo {
  opacity: 0;
  transform: translateY(28px);
}
.reveal-up.visible,
.reveal-logo.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .9s cubic-bezier(.16,1,.3,1), transform .9s cubic-bezier(.16,1,.3,1);
}
.delay-1 { transition-delay: .08s; }
.delay-2 { transition-delay: .16s; }
.hidden-card { display: none !important; }
.no-scroll { overflow: hidden; }

@keyframes pulseGlow {
  0%, 100% { opacity: .65; transform: scale(.96); }
  50% { opacity: 1; transform: scale(1.02); }
}
@keyframes logoSweep {
  0%, 18% { transform: skewX(-18deg) translateX(-160%); opacity: 0; }
  28% { opacity: .62; }
  46% { transform: skewX(-18deg) translateX(315%); opacity: .52; }
  60%, 100% { opacity: 0; transform: skewX(-18deg) translateX(315%); }
}
@keyframes floatSpark {
  0%, 100% { transform: translateY(0) scale(.8); opacity: .45; }
  50% { transform: translateY(-16px) scale(1.15); opacity: 1; }
}

@media (max-width: 1100px) {
  .product-card { grid-column: span 6; }
  .partner-band-inner { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .eq-topbar { padding-inline: 12px; }
  .topbar-shell {
    padding: 14px 16px;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .topbar-nav { order: 3; width: 100%; justify-content: flex-start; }
  .topbar-cta { width: 100%; justify-content: center; }
  .eq-hero-grid { padding-top: 210px; }
  .contact-shell,
  .modal-layout,
  .footer-inner { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; width: var(--container); }
  .partner-band-inner { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 720px) {
  .section { padding: 78px 0; width: min(100vw - 24px, var(--container)); }
  .filters-bar { width: min(100vw - 24px, var(--container)); top: 86px; }
  .filters-inner { padding: 16px; }
  .product-card { grid-column: span 12; }
  .eq-hero { min-height: 90vh; }
  .eq-hero-grid { width: min(100vw - 24px, var(--container)); padding-bottom: 72px; }
  .eq-logo-wrap { width: 100%; }
  .btn, .topbar-cta { width: 100%; }
  .hero-actions { display: grid; }
  .hero-tags li { font-size: .84rem; }
  .contact-actions { padding: 22px; }
  .partner { min-height: 82px; }
  .modal-layout { padding: 20px 18px 24px; }
  .modal-visual { min-height: 280px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
}


/* v2: real product image visuals */
.product-visual.image-visual {
  background: #e9efea;
}
.product-visual.image-visual::before,
.product-visual.image-visual::after {
  display: none;
}
.product-visual.image-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .85s cubic-bezier(.18,.78,.25,1), filter .45s ease;
}
.product-card:hover .product-visual.image-visual img,
.modal-visual.image-visual:hover img {
  transform: scale(1.06);
  filter: saturate(1.06) contrast(1.03);
}
.product-visual.image-visual .visual-tag {
  z-index: 3;
  background: rgba(6, 17, 26, .58);
  border: 1px solid rgba(255,255,255,.22);
  backdrop-filter: blur(8px);
}
.product-visual.image-visual::selection {
  background: transparent;
}
.modal-visual.image-visual {
  min-height: 0;
  aspect-ratio: 4 / 3;
}
.modal-visual.image-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.topbar-home,
.topbar-nav a {
  text-shadow: 0 2px 12px rgba(0,0,0,.55);
}
.topbar-cta {
  background: rgba(6, 17, 26, .18);
  backdrop-filter: blur(10px);
}
