.lag-guide.lag-guide .lag-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.lag-guide.lag-guide .lag-skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 200;
  padding: 10px 18px;
  background: var(--lag-color-bg);
  color: var(--lag-color-accent);
  border: 1px solid var(--lag-color-accent);
  font-family: var(--lag-font-body);
  font-size: 14px;
  transform: translateY(-300%);
}

.lag-guide.lag-guide .lag-skip-link:focus {
  transform: translateY(0);
}

.lag-guide.lag-guide .lag-bottom-nav {
  position: fixed;
  bottom: 3vh;
  left: 7%;
  width: 86%;
  display: flex;
  align-items: center;
  z-index: var(--lag-z-nav);
  opacity: 0;
  gap: 0.8vw;
}

.lag-guide.lag-guide .lag-nav-indicators {
  display: flex;
  gap: 0.5vw;
  flex-shrink: 0;
}

.lag-guide.lag-guide .lag-nav-dot {
  width: 1vw;
  height: 1vw;
  border-radius: 50%;
  border: 1px solid var(--lag-color-accent);
}

.lag-guide.lag-guide .lag-nav-links {
  display: flex;
  flex: 1;
  border: 1px solid var(--lag-color-accent);
}

.lag-guide.lag-guide .lag-nav-link {
  flex: 1;
  padding: 0.35vw 0.2vw;
  text-align: center;
  font-family: var(--lag-font-body);
  font-weight: var(--fw-thin);
  font-size: clamp(9px, 0.65vw, 13px);
  color: var(--lag-color-accent);
  border-right: 1px solid var(--lag-color-accent);
  transition: background 0.3s ease, color 0.3s ease;
  white-space: nowrap;
}

.lag-guide.lag-guide .lag-nav-link:last-child {
  border-right: none;
}

.lag-guide.lag-guide .lag-nav-link:hover, .lag-guide.lag-guide .lag-nav-link:focus-visible, .lag-guide.lag-guide .lag-nav-link.lag-active {
  background: var(--lag-color-accent);
  color: var(--lag-color-dark);
  font-weight: var(--fw-bold);
}

.lag-guide.lag-guide .lag-nav-link:focus-visible {
  outline-offset: -2px;
}

.lag-guide.lag-guide .lag-bottom-nav:focus-within {
  opacity: 1 !important;
}

.lag-guide.lag-guide .lag-nav-arrows {
  display: flex;
  gap: 0.4vw;
  flex-shrink: 0;
}

.lag-guide.lag-guide .lag-nav-arrow {
  font-family: var(--lag-font-body);
  font-size: clamp(12px, 0.833vw, 16px);
  color: var(--lag-color-accent);
  padding: 0.4vw;
  letter-spacing: 2px;
}

.lag-guide.lag-guide .lag-deco-frame {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: var(--lag-z-deco);
  pointer-events: none;
}

.lag-guide.lag-guide .lag-deco-frame-left, .lag-guide.lag-guide .lag-deco-frame-right {
  position: absolute;
  top: 0;
  height: 100vh;
  width: 18px;
  opacity: 0.5;
}

.lag-guide.lag-guide .lag-deco-frame-left {
  left: 0;
}

.lag-guide.lag-guide .lag-deco-frame-right {
  right: 0;
}

.lag-guide.lag-guide .lag-circle-overlay {
  display: none;
}

.lag-guide.lag-guide .lag-scroll-progress {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  z-index: var(--lag-z-header);
  background: rgba(65, 255, 210, 0.08);
}

.lag-guide.lag-guide .lag-scroll-progress__fill {
  height: 100%;
  width: 0%;
  background: var(--lag-color-accent);
  opacity: 0.5;
  will-change: width;
}

.lag-guide.lag-guide .lag-scroll-hint {
  position: fixed;
  right: clamp(20px, 2.2vw, 40px);
  bottom: clamp(80px, 9vh, 130px);
  display: flex;
  align-items: center;
  gap: 0.6vw;
  color: var(--lag-color-accent);
  font-family: var(--lag-font-body);
  font-weight: var(--fw-thin);
  font-size: clamp(10px, 0.72vw, 13px);
  letter-spacing: 3px;
  z-index: var(--lag-z-header);
  pointer-events: none;
  opacity: 0;
  animation: scrollHintFadeIn 0.8s ease 1.2s forwards;
  transition: opacity 0.4s ease;
}

.lag-guide.lag-guide .lag-scroll-hint.lag-is-hidden {
  opacity: 0 !important;
  animation: none;
}

.lag-guide.lag-guide .lag-scroll-hint__label {
  opacity: 0.85;
}

.lag-guide.lag-guide .lag-scroll-hint__arrow {
  display: inline-flex;
  width: clamp(28px, 2.2vw, 38px);
  height: auto;
  animation: scrollHintNudge 1.6s ease-in-out infinite;
}

.lag-guide.lag-guide .lag-scroll-hint__arrow svg {
  width: 100%;
  height: auto;
  display: block;
}

@keyframes scrollHintFadeIn {
  from { opacity: 0; transform: translateX(-6px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes scrollHintNudge {
  0%, 100% { transform: translateX(0); }
  50%      { transform: translateX(6px); }
}

@media (max-width: 768px) {
.lag-guide.lag-guide .lag-scroll-hint { display: none; }
}

.lag-guide.lag-guide .lag-bg-layer, .lag-guide.lag-guide .lag-deco-frame, .lag-guide.lag-guide .lag-bottom-nav, .lag-guide.lag-guide .lag-scroll-progress, .lag-guide.lag-guide .lag-scroll-hint, .lag-guide.lag-guide .lag-circle-overlay {
  visibility: hidden;
}

.lag-guide.lag-guide.lag-is-onscreen .lag-bg-layer, .lag-guide.lag-guide.lag-is-onscreen .lag-deco-frame, .lag-guide.lag-guide.lag-is-onscreen .lag-bottom-nav, .lag-guide.lag-guide.lag-is-onscreen .lag-scroll-progress, .lag-guide.lag-guide.lag-is-onscreen .lag-scroll-hint, .lag-guide.lag-guide.lag-is-onscreen .lag-circle-overlay {
  visibility: visible;
}
