/* ===== Navan Foot & Ankle Clinic ===== */

:root {
  --ink: #0c2b33;
  --ink-soft: #3d5a63;
  --teal: #0fa3a0;
  --teal-dark: #0b7d7b;
  --teal-soft: #e4f4f3;
  --mist: #f4f9f9;
  --white: #ffffff;
  --line: #dcebea;
  --grid: rgba(15, 163, 160, 0.11);
  --fig: #d0e6e6;
  --shadow: 0 10px 30px rgba(12, 43, 51, 0.08);
  --shadow-lg: 0 24px 60px rgba(12, 43, 51, 0.14);
  --radius: 18px;
  --font-display: "Sora", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

.container { width: min(1160px, 92vw); margin-inline: auto; }

h1, h2, h3 { font-family: var(--font-display); line-height: 1.12; letter-spacing: -0.02em; }

h1 { font-size: clamp(2.6rem, 6.5vw, 4.6rem); font-weight: 800; }
h2 { font-size: clamp(1.8rem, 4vw, 2.7rem); font-weight: 700; }
h3 { font-size: 1.15rem; font-weight: 600; }

.accent { color: var(--teal); }

.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal-dark);
  background: var(--teal-soft);
  padding: 0.35rem 0.9rem;
  border-radius: 100px;
  margin-bottom: 1rem;
}

.sub { color: var(--ink-soft); max-width: 56ch; margin-top: 0.8rem; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.75rem 1.4rem;
  border-radius: 100px;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
  cursor: pointer;
  border: 0;
}
.btn svg { width: 1.1em; height: 1.1em; flex: none; }
.btn-primary {
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  color: #fff;
  box-shadow: 0 8px 22px rgba(15, 163, 160, 0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(15, 163, 160, 0.45); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  box-shadow: inset 0 0 0 1.5px var(--line);
}
.btn-ghost:hover { box-shadow: inset 0 0 0 1.5px var(--teal); color: var(--teal-dark); transform: translateY(-2px); }
.btn-lg { padding: 0.95rem 1.8rem; font-size: 1.02rem; }
.btn-block { width: 100%; justify-content: center; }

/* ===== Navigation ===== */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  transition: background 0.35s ease, box-shadow 0.35s ease, padding 0.35s ease;
  padding: 1.1rem 0;
}
.nav.scrolled {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 4px 24px rgba(12, 43, 51, 0.08);
  padding: 0.6rem 0;
}
.nav-inner { display: flex; align-items: center; gap: 1.5rem; }
.brand {
  display: flex; align-items: center; gap: 0.55rem;
  text-decoration: none; color: var(--ink);
  font-family: var(--font-display); font-weight: 700; font-size: 1.02rem;
  margin-right: auto; white-space: nowrap;
}
.brand-mark { width: 34px; height: 34px; color: var(--teal); flex: none; }
.brand-text em { font-style: normal; color: var(--teal-dark); }
.nav-links { display: flex; gap: 1.4rem; }
.nav-links a {
  text-decoration: none; color: var(--ink-soft);
  font-weight: 500; font-size: 0.92rem;
  position: relative; padding: 0.2rem 0;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px;
  width: 100%; height: 2px; background: var(--teal);
  transform: scaleX(0); transform-origin: right; transition: transform 0.3s ease;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-toggle { display: none; }

/* ===== Hero — pinned scroll-build ===== */
.hero-pin { height: 340vh; position: relative; }
.hero {
  position: sticky;
  top: 0;
  height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-media { position: absolute; inset: 0; z-index: 0; }
#buildCanvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  display: block;
}
.hero-content { position: relative; z-index: 3; }
.hero-veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(100deg, rgba(255,255,255,0.96) 0%, rgba(255,255,255,0.86) 34%, rgba(255,255,255,0.35) 62%, rgba(255,255,255,0.05) 100%),
    linear-gradient(to top, rgba(255,255,255,0.9) 0%, transparent 22%);
}
.hero-content { padding: 8rem 0 6rem; max-width: 640px; margin-left: calc((100vw - min(1160px, 92vw)) / 2); }
.lede { font-size: clamp(1.05rem, 2vw, 1.2rem); color: var(--ink-soft); max-width: 46ch; margin-top: 1.3rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 2.1rem; }
.hero-chips { display: flex; flex-wrap: wrap; gap: 0.55rem; list-style: none; margin-top: 2.2rem; }
.hero-chips li {
  font-size: 0.82rem; font-weight: 600; color: var(--teal-dark);
  background: rgba(255,255,255,0.75);
  border: 1px solid var(--line);
  backdrop-filter: blur(6px);
  padding: 0.4rem 0.95rem; border-radius: 100px;
}
.scroll-cue-wrap {
  position: absolute; left: 50%; bottom: 1.4rem; transform: translateX(-50%);
  z-index: 3; display: grid; justify-items: center; gap: 0.5rem;
  transition: opacity 0.4s ease;
}
.scroll-cue-label {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--ink-soft);
}
.scroll-cue {
  position: relative; display: block;
  width: 26px; height: 42px; border: 2px solid var(--ink-soft); border-radius: 14px;
  opacity: 0.55;
}
.scroll-cue span {
  position: absolute; left: 50%; top: 8px; width: 4px; height: 8px;
  background: var(--ink-soft); border-radius: 2px; transform: translateX(-50%);
  animation: cue 1.8s ease-in-out infinite;
}
@keyframes cue {
  0%, 100% { transform: translate(-50%, 0); opacity: 1; }
  60% { transform: translate(-50%, 12px); opacity: 0; }
}

/* ===== Sections ===== */
.section { padding: clamp(4.5rem, 9vw, 7rem) 0; }
.section-tint { background: var(--mist); }
.section-head { text-align: center; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head .sub { margin-inline: auto; }

/* ===== Services ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.7rem 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.card-wide { grid-column: span 2; }
.card-icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: grid; place-items: center;
  background: var(--teal-soft); color: var(--teal-dark);
  margin-bottom: 1.1rem;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}
.card:hover .card-icon {
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  color: #fff;
  transform: scale(1.06) rotate(-3deg);
}
.card-icon svg { width: 28px; height: 28px; }
.card h3 { margin-bottom: 0.5rem; }
.card p { font-size: 0.92rem; color: var(--ink-soft); }

/* ===== Journey ===== */
.journey {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.journey-media img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.journey-media figcaption {
  font-size: 0.82rem; color: var(--ink-soft);
  margin-top: 0.8rem; text-align: center;
}
.steps { list-style: none; display: grid; gap: 1.5rem; }
.step { display: flex; gap: 1.2rem; align-items: flex-start; }
.step-num {
  font-family: var(--font-display); font-weight: 800; font-size: 1rem;
  color: var(--teal-dark); background: var(--white);
  border: 1.5px solid var(--line);
  width: 52px; height: 52px; border-radius: 50%;
  display: grid; place-items: center; flex: none;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.step:hover .step-num { background: var(--teal); color: #fff; border-color: var(--teal); }
.step h3 { margin-bottom: 0.25rem; }
.step p { font-size: 0.93rem; color: var(--ink-soft); }

/* ===== Split sections ===== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.split-media img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3.2;
  object-fit: cover;
}
.split-text h2 { margin-bottom: 1.1rem; }
.split-text p { color: var(--ink-soft); margin-bottom: 1rem; }
.split-text .btn { margin-top: 0.6rem; }

.chain { list-style: none; margin: 1.4rem 0 1.6rem; display: grid; gap: 0; }
.chain li {
  display: flex; align-items: baseline; gap: 0.9rem;
  padding: 0.7rem 0 0.7rem 1.5rem;
  position: relative;
}
.chain li::before {
  content: ""; position: absolute; left: 0; top: 50%;
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--teal); transform: translateY(-50%);
  box-shadow: 0 0 0 4px var(--teal-soft);
}
.chain li:not(:last-child)::after {
  content: ""; position: absolute; left: 4.5px; top: calc(50% + 10px);
  width: 1.5px; height: 100%; background: var(--line);
}
.chain strong { font-family: var(--font-display); min-width: 4.4rem; }
.chain span { color: var(--ink-soft); font-size: 0.92rem; }

.about-points { list-style: none; margin-top: 1.2rem; display: grid; gap: 0.6rem; }
.about-points li {
  padding-left: 1.9rem; position: relative; font-weight: 500; font-size: 0.95rem;
}
.about-points li::before {
  content: ""; position: absolute; left: 0; top: 0.28em;
  width: 1.1em; height: 1.1em; border-radius: 50%;
  background: var(--teal-soft);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M6 12.5 10 16.5 18 8' stroke='%230b7d7b' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 70%; background-position: center; background-repeat: no-repeat;
}

/* ===== Reviews ===== */
.reviews-panel {
  text-align: center;
  background:
    radial-gradient(1200px 400px at 50% -50%, var(--teal-soft), transparent),
    var(--white);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) * 1.4);
  box-shadow: var(--shadow);
  padding: clamp(2.5rem, 6vw, 4.5rem) clamp(1.5rem, 5vw, 4rem);
}
.g-logo { width: 52px; height: 52px; margin-bottom: 1.2rem; }
.reviews-panel .sub { margin-inline: auto; }
.reviews-actions {
  display: flex; flex-wrap: wrap; gap: 0.9rem;
  justify-content: center; margin-top: 2rem;
}

/* ===== Contact ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 1.5rem;
  align-items: stretch;
}
.contact-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2.2rem;
  display: flex; flex-direction: column; gap: 1rem;
}
.contact-card h3 { font-size: 1.3rem; }
.contact-card address { font-style: normal; color: var(--ink-soft); }
.contact-phone {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: var(--font-display); font-weight: 700; font-size: 1.25rem;
  color: var(--teal-dark); text-decoration: none;
}
.contact-phone svg { width: 1.2em; height: 1.2em; }
.contact-phone:hover { color: var(--teal); }
.contact-note { font-size: 0.88rem; color: var(--ink-soft); }
.contact-card .btn { margin-top: auto; }
.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  min-height: 380px;
}
.map-wrap iframe { width: 100%; height: 100%; min-height: 380px; border: 0; }

/* ===== Footer ===== */
.footer { background: var(--ink); color: #d7e6e6; padding: 3.5rem 0 0; }
.footer-inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr auto;
  gap: 2.5rem;
  align-items: start;
  padding-bottom: 2.5rem;
}
.footer-brand { display: flex; gap: 0.8rem; }
.footer-brand .brand-mark { color: var(--teal); }
.footer-brand strong { font-family: var(--font-display); color: #fff; display: block; margin-bottom: 0.3rem; }
.footer-brand p { font-size: 0.88rem; opacity: 0.75; }
.footer-links { display: grid; grid-template-columns: 1fr 1fr; gap: 0.55rem 2rem; }
.footer-links a { color: #d7e6e6; text-decoration: none; font-size: 0.92rem; opacity: 0.85; }
.footer-links a:hover { opacity: 1; color: #fff; }
.footer-cta { display: grid; gap: 0.8rem; justify-items: start; }
.footer-review-link { color: #9fd6d4; font-size: 0.88rem; }
.footer-base {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 1.3rem 0;
  font-size: 0.82rem;
  opacity: 0.65;
}

/* ===== Reveal animations ===== */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.in { opacity: 1; transform: none; }
.d1 { transition-delay: 0.08s; }
.d2 { transition-delay: 0.16s; }
.d3 { transition-delay: 0.24s; }
.d4 { transition-delay: 0.32s; }
.services-grid .reveal:nth-child(2), .steps .reveal:nth-child(2) { transition-delay: 0.07s; }
.services-grid .reveal:nth-child(3), .steps .reveal:nth-child(3) { transition-delay: 0.14s; }
.services-grid .reveal:nth-child(4), .steps .reveal:nth-child(4) { transition-delay: 0.21s; }
.services-grid .reveal:nth-child(5) { transition-delay: 0.07s; }
.services-grid .reveal:nth-child(6) { transition-delay: 0.14s; }
.services-grid .reveal:nth-child(7) { transition-delay: 0.21s; }
.services-grid .reveal:nth-child(8) { transition-delay: 0.07s; }
.services-grid .reveal:nth-child(9) { transition-delay: 0.14s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .scroll-cue span { animation: none; }
  * { transition-duration: 0.01ms !important; }
}

/* ===== Responsive ===== */
@media (max-width: 1000px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .card-wide { grid-column: span 2; }
  .journey { grid-template-columns: 1fr; }
  .split, .split-rev { grid-template-columns: 1fr; }
  .split-rev .split-media { order: -1; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 780px) {
  .nav-cta { display: none; }
  .nav-toggle {
    display: grid; gap: 5px; background: none; border: 0; cursor: pointer; padding: 6px;
  }
  .nav-toggle span {
    width: 24px; height: 2.5px; background: var(--ink); border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
  .nav-links {
    position: fixed; inset: 0; z-index: -1;
    flex-direction: column; align-items: center; justify-content: center; gap: 1.6rem;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(10px);
    opacity: 0; pointer-events: none; transition: opacity 0.3s ease;
  }
  .nav-links a { font-size: 1.25rem; font-weight: 600; color: var(--ink); }
  .nav.menu-open .nav-links { opacity: 1; pointer-events: auto; }
  .hero-content { margin-left: auto; padding-inline: 4vw; }
  .hero-media video { object-position: 62% center; }
  .services-grid { grid-template-columns: 1fr; }
  .card-wide { grid-column: span 1; }
  .footer-cta { justify-items: stretch; }
}

/* ============================================================
   Hero — technical layers, HUD, cursor footprints (v2)
   ============================================================ */
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--grid) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(120% 95% at 68% 42%, #000 26%, transparent 74%);
  mask-image: radial-gradient(120% 95% at 68% 42%, #000 26%, transparent 74%);
}
.hero-scan {
  position: absolute; left: 0; right: 0; top: 0; height: 160px;
  background: linear-gradient(to bottom, transparent, rgba(15,163,160,0.09), transparent);
  animation: scan 7s ease-in-out infinite;
  pointer-events: none;
}
@keyframes scan {
  0%   { transform: translateY(-12%); opacity: 0; }
  25%  { opacity: 1; }
  75%  { opacity: 1; }
  100% { transform: translateY(100vh); opacity: 0; }
}

/* HUD */
.hero-hud { position: absolute; inset: 0; z-index: 2; pointer-events: none; }
.hud-corner {
  position: absolute; width: 26px; height: 26px;
  border: 2px solid rgba(15,163,160,0.45);
  opacity: 0; animation: hudIn 0.8s ease forwards 0.4s;
}
.hud-corner.tl { top: 96px; left: 26px; border-right: 0; border-bottom: 0; }
.hud-corner.tr { top: 96px; right: 26px; border-left: 0; border-bottom: 0; }
.hud-corner.bl { bottom: 26px; left: 26px; border-right: 0; border-top: 0; }
.hud-corner.br { bottom: 26px; right: 26px; border-left: 0; border-top: 0; }
@keyframes hudIn { from { opacity: 0; } to { opacity: 1; } }

.hud-tag {
  position: absolute; display: grid; gap: 1px;
  padding: 0.55rem 0.8rem 0.5rem;
  background: rgba(255,255,255,0.68);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(7px); -webkit-backdrop-filter: blur(7px);
  font-family: var(--font-display);
  opacity: 0; transform: translateY(8px);
  animation: hudIn 0.7s ease forwards;
}
.hud-tag b { font-size: 1.25rem; font-weight: 700; color: var(--teal-dark); line-height: 1; }
.hud-tag small { font-size: 0.6rem; letter-spacing: 0.11em; text-transform: uppercase; color: var(--ink-soft); }
.hud-dot { position: absolute; top: 10px; right: 10px; width: 7px; height: 7px; border-radius: 50%; background: var(--teal); box-shadow: 0 0 0 0 rgba(15,163,160,0.6); animation: hudPulse 2s ease-out infinite; }
@keyframes hudPulse { 0% { box-shadow: 0 0 0 0 rgba(15,163,160,0.5); } 70% { box-shadow: 0 0 0 8px rgba(15,163,160,0); } 100% { box-shadow: 0 0 0 0 rgba(15,163,160,0); } }
.hud-build  { top: 16%;  right: 26%; animation-delay: 0.4s; }
.hud-build b { font-size: 1.5rem; }
.hud-arch   { top: 27%;  right: 8%;  animation-delay: 0.6s; }
.hud-press  { top: 48%;  right: 5%;  animation-delay: 0.8s; }
.hud-offset { top: 67%;  right: 16%; animation-delay: 1.0s; }

/* Cursor footprint trail */
.hero-foot-layer { position: absolute; inset: 0; z-index: 1; pointer-events: none; overflow: hidden; }
.footprint {
  position: absolute; width: 20px; height: 28px;
  margin: -14px 0 0 -10px; color: var(--teal);
  opacity: 0; will-change: transform, opacity;
  animation: footFade 1.15s ease-out forwards;
}
.footprint svg { width: 100%; height: 100%; display: block; }
@keyframes footFade {
  0%   { opacity: 0; transform: scale(0.55); }
  18%  { opacity: 0.5; }
  100% { opacity: 0; transform: scale(1.05); }
}

/* ============================================================
   Biomechanics — holographic body scan
   ============================================================ */
.holo-card {
  position: relative;
  max-width: 420px;
  margin-inline: auto;
  border-radius: calc(var(--radius) * 1.2);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(6, 26, 38, 0.45);
  background: #060f1c;
}
.holo-card img { width: 100%; display: block; aspect-ratio: auto; box-shadow: none; border-radius: 0; }
.holo-marker--flip { flex-direction: row-reverse; transform: translate(-100%, -50%); }
.holo-marker--flip i { transform: translateX(50%); }
.holo-sweep {
  position: absolute; left: 0; right: 0; top: -20%; height: 18%;
  background: linear-gradient(to bottom, transparent, rgba(46, 230, 226, 0.14), transparent);
  animation: holoSweep 4.5s ease-in-out infinite;
  pointer-events: none;
}
@keyframes holoSweep {
  0%   { top: -20%; opacity: 0; }
  15%  { opacity: 1; }
  85%  { opacity: 1; }
  100% { top: 102%; opacity: 0; }
}
.holo-marker {
  position: absolute; left: var(--x); top: var(--y);
  transform: translate(0, -50%);
  display: inline-flex; align-items: center; gap: 0.55rem;
  pointer-events: none;
}
.holo-marker i {
  width: 13px; height: 13px; border-radius: 50%;
  background: #2ee6e2;
  box-shadow: 0 0 12px rgba(46, 230, 226, 0.9);
  position: relative; flex: none;
  transform: translateX(-50%);
}
.holo-marker i::after {
  content: ""; position: absolute; inset: -4px;
  border-radius: 50%; border: 1.5px solid rgba(46, 230, 226, 0.75);
  animation: holoPing 2.2s ease-out infinite;
  animation-delay: var(--d, 0s);
}
@keyframes holoPing {
  0%   { transform: scale(0.7); opacity: 0.9; }
  80%  { transform: scale(2.4); opacity: 0; }
  100% { transform: scale(2.4); opacity: 0; }
}
.holo-marker em {
  font-style: normal; font-family: var(--font-display);
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.06em;
  color: #d9fbfa; text-transform: uppercase;
  background: rgba(6, 22, 34, 0.72);
  border: 1px solid rgba(46, 230, 226, 0.35);
  border-radius: 100px;
  padding: 0.28rem 0.7rem;
  backdrop-filter: blur(4px);
  white-space: nowrap;
}
.holo-marker--origin i { width: 16px; height: 16px; }
.holo-marker--origin em { border-color: rgba(46, 230, 226, 0.8); color: #fff; }

/* ============================================================
   Reduced motion + responsive overrides for v2 elements
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  .hero-scan, .hud-dot, .holo-sweep, .holo-marker i::after,
  .hud-corner, .hud-tag { animation: none !important; }
  .hud-corner, .hud-tag { opacity: 1; transform: none; }
}

@media (max-width: 900px) {
  .hero-hud { display: none; }
  .hero-foot-layer { display: none; }
}
@media (max-width: 1000px) {
  .holo-card { max-width: 360px; }
}
@media (max-width: 480px) {
  .holo-marker em { font-size: 0.62rem; padding: 0.22rem 0.55rem; }
}
