/* ═══════════════════════════════════════════════════════════
   BloxATC Premium UI layer — import after styles.css
   ═══════════════════════════════════════════════════════════ */

@import url("https://fonts.googleapis.com/css2?family=Syne:wght@600;700;800&display=swap");

:root {
  --display: "Syne", var(--font);
  --glass: rgba(12, 18, 30, 0.55);
  --glass-border: rgba(255, 255, 255, 0.08);
  --neon: #f0c040;
  --neon-soft: rgba(240, 192, 64, 0.45);
  --cyan: #5ee4ff;
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

/* Noise grain */
body::after {
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(36, 48, 68, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(36, 48, 68, 0.18) 1px, transparent 1px);
  background-size: 64px 64px;
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9998;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Typography */
h1, h2, h3,
.page-hero h1,
.home-hero-copy h1,
.section-head h2,
.b24-brand,
.app-card h2 {
  font-family: var(--display);
  letter-spacing: -0.03em;
}

.home-hero-copy h1 {
  font-size: clamp(2.6rem, 6.5vw, 4.25rem);
  font-weight: 800;
  line-height: 1.02;
}

.home-hero-copy h1 em {
  background: linear-gradient(
    120deg,
    #fff8e0 0%,
    #f0c040 35%,
    #ff9f2e 55%,
    #f0c040 75%,
    #ffe9a0 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shimmer 6s linear infinite;
}

@keyframes shimmer {
  to { background-position: 200% center; }
}

/* Nav — floating glass on scroll */
.site-nav {
  transition: background 0.4s var(--ease-out-expo), box-shadow 0.4s, border-color 0.4s;
}

.site-nav.is-scrolled {
  background: rgba(5, 8, 16, 0.72);
  border-bottom-color: rgba(240, 192, 64, 0.12);
  box-shadow:
    0 4px 30px rgba(0, 0, 0, 0.4),
    0 0 40px rgba(240, 192, 64, 0.04);
}

.nav-glow {
  opacity: 0.9;
  animation: navPulse 4s ease-in-out infinite;
}

@keyframes navPulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

.nav-cta {
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(240, 192, 64, 0.15) !important;
}

.nav-cta::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(240, 192, 64, 0.6), transparent, rgba(94, 228, 255, 0.4));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

/* Glass panels */
.panel,
.panel-glow {
  background: linear-gradient(
    145deg,
    rgba(22, 32, 52, 0.75) 0%,
    rgba(10, 14, 24, 0.85) 100%
  );
  backdrop-filter: blur(12px) saturate(1.3);
  border-color: var(--glass-border);
  position: relative;
}

.panel::before,
.tilt-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 40%,
    transparent 60%,
    rgba(240, 192, 64, 0.08) 100%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.panel-glow {
  box-shadow:
    var(--shadow),
    0 0 60px rgba(240, 192, 64, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

/* Tilt cards */
.tilt-card {
  transform-style: preserve-3d;
  transition: transform 0.12s ease-out, box-shadow 0.35s var(--ease-out-expo);
  will-change: transform;
}

.tilt-card:hover {
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.5),
    0 0 40px rgba(240, 192, 64, 0.08);
}

.tilt-glare {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    circle at var(--gx, 50%) var(--gy, 50%),
    rgba(255, 255, 255, 0.12) 0%,
    transparent 55%
  );
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 2;
}

.tilt-card:hover .tilt-glare { opacity: 1; }

/* Buttons */
.btn-primary {
  position: relative;
  background: linear-gradient(180deg, rgba(240, 192, 64, 0.35), rgba(200, 150, 40, 0.2));
  border-color: rgba(240, 192, 64, 0.6);
  color: #fff8e8;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  box-shadow:
    0 4px 24px rgba(240, 192, 64, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.btn-primary:hover {
  box-shadow:
    0 8px 36px rgba(240, 192, 64, 0.35),
    0 0 24px rgba(240, 192, 64, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transform: translateY(-3px) scale(1.02);
}

.btn-ghost {
  backdrop-filter: blur(8px);
  border-color: rgba(255, 255, 255, 0.1);
}

.btn-ghost:hover {
  border-color: rgba(240, 192, 64, 0.35);
  box-shadow: 0 0 24px rgba(240, 192, 64, 0.08);
}

/* Hero */
.home-hero {
  position: relative;
  overflow: hidden;
}

.hero-spotlight {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240, 192, 64, 0.09) 0%, transparent 65%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 0;
  transition: opacity 0.3s;
}

.home-hero-grid {
  position: relative;
  z-index: 1;
}

.brand-pill {
  animation: pillGlow 3s ease-in-out infinite;
}

@keyframes pillGlow {
  0%, 100% { box-shadow: 0 0 16px rgba(240, 192, 64, 0.15); }
  50% { box-shadow: 0 0 28px rgba(240, 192, 64, 0.35); }
}

/* Radar hero — epic */
.hero-visual {
  perspective: 1200px;
}

.radar-frame {
  animation: radarFloat 6s ease-in-out infinite;
  transform-style: preserve-3d;
}

@keyframes radarFloat {
  0%, 100% { transform: translateY(0) rotateX(2deg) rotateY(-3deg); }
  50% { transform: translateY(-12px) rotateX(-1deg) rotateY(2deg); }
}

.radar-panel {
  background:
    radial-gradient(circle at 50% 50%, rgba(20, 35, 55, 0.9) 0%, rgba(5, 8, 14, 0.98) 70%);
}

.radar-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid rgba(62, 232, 154, 0.15);
  pointer-events: none;
}

.radar-ring.r1 { width: 30%; height: 30%; animation: ringPulse 3s ease-out infinite; }
.radar-ring.r2 { width: 55%; height: 55%; animation: ringPulse 3s ease-out 0.8s infinite; }
.radar-ring.r3 { width: 80%; height: 80%; animation: ringPulse 3s ease-out 1.6s infinite; }

@keyframes ringPulse {
  0% { transform: translate(-50%, -50%) scale(0.85); opacity: 0.6; }
  100% { transform: translate(-50%, -50%) scale(1.15); opacity: 0; }
}

.radar-scanline {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(62, 232, 154, 0.5), transparent);
  animation: scanline 4s linear infinite;
  pointer-events: none;
  opacity: 0.5;
}

@keyframes scanline {
  0% { top: 5%; }
  100% { top: 95%; }
}

.radar-sweep {
  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    rgba(62, 232, 154, 0.18) 25deg,
    rgba(240, 192, 64, 0.08) 35deg,
    transparent 55deg
  );
}

.radar-frame {
  padding: 2px;
  background: linear-gradient(
    135deg,
    rgba(240, 192, 64, 0.5),
    rgba(94, 228, 255, 0.25),
    rgba(240, 192, 64, 0.3),
    rgba(62, 232, 154, 0.2)
  );
  background-size: 300% 300%;
  animation: radarFloat 6s ease-in-out infinite, borderShift 8s ease infinite;
}

@keyframes borderShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* Stats */
.stats-bar {
  background: linear-gradient(135deg, rgba(16, 24, 40, 0.9), rgba(8, 12, 22, 0.95));
  border: 1px solid rgba(240, 192, 64, 0.2);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 0 80px rgba(240, 192, 64, 0.05);
}

.stat-val {
  text-shadow: 0 0 30px rgba(240, 192, 64, 0.35);
}

/* Bento */
.bento-card--cta {
  background: linear-gradient(
    145deg,
    rgba(240, 192, 64, 0.14) 0%,
    rgba(16, 26, 42, 0.9) 45%
  );
  border-color: rgba(240, 192, 64, 0.3) !important;
}

.bento-icon-wrap {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.bento-icon-wrap.gold {
  background: linear-gradient(145deg, rgba(240, 192, 64, 0.25), rgba(240, 192, 64, 0.08));
  box-shadow: 0 0 24px rgba(240, 192, 64, 0.15);
}

/* Flow */
.flow-num {
  background: linear-gradient(180deg, var(--panel2), var(--panel));
  border-color: rgba(240, 192, 64, 0.4);
  box-shadow:
    0 0 0 6px var(--bg),
    0 0 24px rgba(240, 192, 64, 0.12);
}

.flow-panel::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--neon-soft), var(--cyan), var(--neon-soft), transparent);
  opacity: 0.6;
  z-index: 0;
}

.flow-panel { position: relative; overflow: hidden; }

/* Teasers */
.teaser {
  border: 1px solid var(--glass-border);
}

.teaser:hover {
  border-color: rgba(240, 192, 64, 0.35);
  transform: translateY(-6px) scale(1.01);
}

.teaser-icon-wrap {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

/* Section tags */
.section-tag {
  box-shadow: 0 0 20px rgba(240, 192, 64, 0.1);
}

/* Page heroes */
.page-hero--glow::before {
  width: min(800px, 100%);
  height: 280px;
  background: radial-gradient(ellipse, rgba(240, 192, 64, 0.14), rgba(94, 228, 255, 0.04) 40%, transparent 70%);
}

/* CTA strip */
.cta-strip {
  margin: 0 auto;
  max-width: min(1160px, calc(100% - 2.5rem));
  padding: 2.5rem 2rem;
  text-align: center;
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(240, 192, 64, 0.12), rgba(94, 228, 255, 0.06)),
    linear-gradient(145deg, rgba(16, 26, 42, 0.95), rgba(8, 12, 22, 0.98));
  border: 1px solid rgba(240, 192, 64, 0.25);
  box-shadow: 0 0 80px rgba(240, 192, 64, 0.08);
  position: relative;
  overflow: hidden;
}

.cta-strip::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(240, 192, 64, 0.8), transparent);
}

.cta-strip h2 {
  font-family: var(--display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin: 0 0 0.5rem;
}

.cta-strip p {
  color: var(--muted);
  margin: 0 0 1.5rem;
  max-width: 48ch;
  margin-inline: auto;
}

.cta-strip-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

/* Footer */
.site-footer {
  background: linear-gradient(180deg, transparent, rgba(5, 8, 16, 0.95));
  border-top: 1px solid transparent;
  border-image: linear-gradient(90deg, transparent, rgba(240, 192, 64, 0.3), transparent) 1;
}

.footer-mark {
  box-shadow: 0 0 16px rgba(240, 192, 64, 0.15);
}

/* Orbs — more dramatic */
.orb-1 {
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(240, 192, 64, 0.18), transparent 70%);
}

.orb-2 {
  background: radial-gradient(circle, rgba(94, 228, 255, 0.12), transparent 70%);
}

/* blox24 premium */
.page-blox24 .b24-topbar {
  border: 1px solid rgba(240, 192, 64, 0.15);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

.page-blox24 .b24-brand {
  font-family: var(--display);
  font-size: 1.5rem;
}

.page-blox24 .b24-brand span {
  text-shadow: 0 0 20px rgba(240, 192, 64, 0.5);
}

.page-blox24 .b24-map-wrap {
  border: 1px solid rgba(62, 232, 154, 0.15);
  box-shadow:
    inset 0 0 60px rgba(0, 0, 0, 0.4),
    0 0 40px rgba(62, 232, 154, 0.05);
}

.page-blox24 .b24-flight.is-selected {
  box-shadow: 0 0 20px rgba(240, 192, 64, 0.12);
}

/* Reveal — snappier */
.reveal {
  transform: translateY(28px) scale(0.98);
  transition:
    opacity 0.7s var(--ease-out-expo),
    transform 0.7s var(--ease-out-expo);
}

.reveal.is-visible {
  transform: none;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .tilt-card { transform: none !important; }
  .hero-spotlight { display: none; }
}

@media (max-width: 768px) {
  .hero-spotlight { display: none; }
  .radar-frame { animation: none; }
  .av-ticker { display: none; }
  body.has-cursor-fx { cursor: auto; }
  .cursor-dot, .cursor-ring { display: none; }
}

/* ═══════════════════════════════════════════════════════════
   ULTRA layer v3
   ═══════════════════════════════════════════════════════════ */

#starfield {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.55;
}

body {
  opacity: 0;
  animation: pageIn 0.8s var(--ease-out-expo) forwards;
}

@keyframes pageIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Aurora mesh */
body::before {
  background:
    radial-gradient(ellipse 90% 60% at 15% -5%, rgba(240, 192, 64, 0.14), transparent 50%),
    radial-gradient(ellipse 70% 50% at 85% 5%, rgba(94, 228, 255, 0.1), transparent 45%),
    radial-gradient(ellipse 50% 40% at 50% 100%, rgba(62, 232, 154, 0.06), transparent 50%),
    linear-gradient(180deg, #0a1018 0%, var(--bg) 50%, #030508 100%);
  animation: auroraShift 20s ease-in-out infinite alternate;
}

@keyframes auroraShift {
  0% { filter: hue-rotate(0deg) brightness(1); }
  100% { filter: hue-rotate(12deg) brightness(1.05); }
}

/* Aviation ticker */
.av-ticker {
  position: relative;
  z-index: 150;
  overflow: hidden;
  border-bottom: 1px solid rgba(240, 192, 64, 0.1);
  background: linear-gradient(90deg, rgba(5, 8, 16, 0.95), rgba(12, 18, 30, 0.9), rgba(5, 8, 16, 0.95));
  backdrop-filter: blur(8px);
}

.av-ticker-track {
  display: flex;
  width: max-content;
  animation: ticker 45s linear infinite;
}

.av-ticker-track span {
  flex-shrink: 0;
  padding: 0.45rem 0;
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(125, 141, 168, 0.9);
  white-space: nowrap;
}

.av-ticker-track span em {
  font-style: normal;
  color: var(--accent);
  margin: 0 0.15rem;
}

@keyframes ticker {
  to { transform: translateX(-50%); }
}

/* Custom cursor */
.cursor-dot,
.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 100000;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, border-color 0.2s, opacity 0.2s;
}

.cursor-dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  box-shadow: 0 0 12px var(--neon-soft);
}

.cursor-ring {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(240, 192, 64, 0.35);
  transition: width 0.25s var(--ease-out-expo), height 0.25s var(--ease-out-expo), border-color 0.2s;
}

body.has-cursor-fx.is-hovering .cursor-ring {
  width: 52px;
  height: 52px;
  border-color: rgba(94, 228, 255, 0.5);
}

body.has-cursor-fx.is-clicking .cursor-dot {
  transform: translate(-50%, -50%) scale(0.6);
}

/* Hero upgrades */
.home-hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 5%, rgba(240, 192, 64, 0.5) 50%, transparent 95%);
  box-shadow: 0 0 20px rgba(240, 192, 64, 0.3);
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-kicker::before {
  content: "";
  width: 24px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
  border-radius: 2px;
}

.home-hero-copy .lead {
  font-size: 1.15rem;
  line-height: 1.7;
  border-left: 2px solid rgba(240, 192, 64, 0.35);
  padding-left: 1rem;
  margin-left: 0.1rem;
}

/* Feature rail */
.feature-rail {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: -1rem;
  margin-bottom: 0.5rem;
}

.rail-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.15rem 1.35rem;
  text-decoration: none;
  color: inherit;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  transition: transform 0.35s var(--ease-out-expo), box-shadow 0.35s;
}

.rail-card:hover {
  text-decoration: none;
  color: inherit;
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.45), 0 0 32px rgba(240, 192, 64, 0.08);
}

.rail-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.04) 50%, transparent 60%);
  transform: translateX(-100%);
  transition: transform 0.6s;
}

.rail-card:hover::after {
  transform: translateX(100%);
}

.rail-icon {
  font-size: 1.75rem;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(240, 192, 64, 0.1);
  border: 1px solid rgba(240, 192, 64, 0.2);
  flex-shrink: 0;
}

.rail-card--cyan .rail-icon {
  background: rgba(94, 228, 255, 0.1);
  border-color: rgba(94, 228, 255, 0.25);
}

.rail-card--green .rail-icon {
  background: rgba(62, 232, 154, 0.1);
  border-color: rgba(62, 232, 154, 0.25);
}

.rail-body strong {
  display: block;
  font-family: var(--display);
  font-size: 1rem;
  margin-bottom: 0.15rem;
}

.rail-body span {
  font-size: 0.8rem;
  color: var(--muted);
}

.rail-arrow {
  margin-left: auto;
  color: var(--accent);
  font-size: 1.1rem;
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.25s, transform 0.25s var(--ease-out-expo);
}

.rail-card:hover .rail-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* Bento hover shine sweep */
.bento-card {
  overflow: hidden;
}

.bento-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 42%, rgba(255, 255, 255, 0.05) 50%, transparent 58%);
  transform: translateX(-120%);
  transition: transform 0.65s var(--ease-out-expo);
  pointer-events: none;
  z-index: 1;
}

.bento-card:hover::after {
  transform: translateX(120%);
}

/* Section dramatic divider */
.section--band {
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.section-head h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.35rem);
  background: linear-gradient(180deg, #fff 0%, rgba(238, 242, 248, 0.85) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* CTA strip animated bg */
.cta-strip::after {
  content: "";
  position: absolute;
  inset: -50%;
  background: conic-gradient(from 0deg, transparent, rgba(240, 192, 64, 0.06), transparent, rgba(94, 228, 255, 0.04), transparent);
  animation: ctaSpin 12s linear infinite;
  pointer-events: none;
}

@keyframes ctaSpin {
  to { transform: rotate(360deg); }
}

.cta-strip > * {
  position: relative;
  z-index: 1;
}

/* Nav featured blox24 */
.nav-featured {
  position: relative;
}

.nav-featured::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
  animation: pulse 1.5s infinite;
}

/* Download cards epic */
.dl-card {
  transition: transform 0.4s var(--ease-out-expo), box-shadow 0.4s;
}

.dl-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5), 0 0 48px rgba(240, 192, 64, 0.1);
}

/* blox24 full bleed feel */
.page-blox24 .b24-layout {
  max-width: 100%;
  width: min(1500px, calc(100% - 1.5rem));
}

.page-blox24 .b24-map-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 80px rgba(0, 0, 0, 0.5);
  border-radius: inherit;
}

@media (max-width: 1024px) {
  .feature-rail { grid-template-columns: 1fr; }
}
