/* ==========================================================================
   Sir Lockalot - Redesigned Front Page Sections
   All animations use transform/opacity only (GPU composited)
   ========================================================================== */

/* ---------- CSS Counter Animation (replaces JS initCounters) ---------- */
@property --counter-val {
  syntax: '<integer>';
  initial-value: 0;
  inherits: false;
}

.sl-bento-stat-value[data-count] {
  counter-reset: num var(--counter-val);
  animation: sl-count-up 1.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-timeline: view();
  animation-range: entry 50% entry 80%;
}

.sl-bento-stat-value[data-count]::after {
  content: counter(num);
}

/* Specific targets for suffix display */
.sl-bento-stat-value[data-suffix="+"]::after {
  content: counter(num) "+";
}

.sl-bento-stat-value[data-suffix="%"]::after {
  content: counter(num) "%";
}

@keyframes sl-count-up {
  from { --counter-val: 0; }
  to   { --counter-val: var(--counter-target, 100); }
}

/* Fallback: show the static text content for unsupported browsers */
@supports not (animation-timeline: view()) {
  .sl-bento-stat-value[data-count]::after {
    content: none;
  }
}

@supports (animation-timeline: view()) {
  .sl-bento-stat-value[data-count] {
    font-size: 0;
  }

  .sl-bento-stat-value[data-count]::after {
    font-size: 1.5rem; /* match the original stat font-size */
  }
}

/* ---------- Custom Properties ---------- */
:root {
  --sl-cyan: #00e5ff;
  --sl-blue-mid: #4a4af8;
  --sl-blue-primary: #0c0cf8;
  --sl-card-bg: rgba(255, 255, 255, 0.03);
  --sl-card-border: rgba(255, 255, 255, 0.07);
  --sl-card-hover-border: rgba(0, 229, 255, 0.25);
  --sl-text-primary: #f0f0f0;
  --sl-text-secondary: rgba(255, 255, 255, 0.55);
  --sl-gradient-text: linear-gradient(135deg, #ffffff 0%, #00e5ff 100%);
  --sl-gradient-accent: linear-gradient(135deg, #0c0cf8, #00e5ff);
  --sl-ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --sl-ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ---------- Quick Access Bar ---------- */
.sl-quick-bar {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 6px;
  background: rgba(8, 8, 24, 0.88);
  backdrop-filter: blur(24px) saturate(1.5);
  -webkit-backdrop-filter: blur(24px) saturate(1.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5),
              0 0 0 1px rgba(255, 255, 255, 0.04) inset;
  opacity: 0;
  transition: transform 0.6s var(--sl-ease-out), opacity 0.5s ease;
  will-change: transform, opacity;
}

.sl-quick-bar.sl-visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.sl-quick-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  border-radius: 100px;
  transition: color 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}

.sl-quick-link:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.sl-quick-link i {
  font-size: 0.95rem;
}

.sl-quick-link-accent {
  background: var(--sl-gradient-accent);
  color: #fff !important;
}

.sl-quick-link-accent:hover {
  box-shadow: 0 4px 24px rgba(0, 229, 255, 0.35);
}

/* ---------- Section Layout ---------- */
.sl-section {
  position: relative;
  padding: 100px 20px;
}

.sl-section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

/* ---------- Section Headers ---------- */
.sl-section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--sl-cyan);
  background: rgba(0, 229, 255, 0.07);
  border: 1px solid rgba(0, 229, 255, 0.13);
  border-radius: 100px;
  margin-bottom: 20px;
}

.sl-section-label::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--sl-cyan);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--sl-cyan);
}

.sl-section-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: 20px;
  background: var(--sl-gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.sl-section-subtitle {
  font-size: 1.1rem;
  color: var(--sl-text-secondary);
  line-height: 1.7;
  max-width: 580px;
}

/* ---------- Scroll Reveal (CSS scroll-driven) ---------- */
.sl-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--sl-ease-out), transform 0.8s var(--sl-ease-out);
  will-change: opacity, transform;
  animation: sl-scroll-reveal linear both;
  animation-timeline: view();
  animation-range: entry 0% entry 30%;
}

@keyframes sl-scroll-reveal {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Fallback: browsers without scroll-timeline support show elements immediately */
@supports not (animation-timeline: view()) {
  .sl-reveal {
    opacity: 1;
    transform: none;
  }
}

.sl-reveal-d1 { transition-delay: 0.1s; }
.sl-reveal-d2 { transition-delay: 0.2s; }
.sl-reveal-d3 { transition-delay: 0.3s; }
.sl-reveal-d4 { transition-delay: 0.4s; }
.sl-reveal-d5 { transition-delay: 0.5s; }

/* ---------- Divider ---------- */
.sl-divider {
  border: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.08), transparent);
  margin: 0;
}


/* ==========================================================================
   WHY CHOOSE US - Bento Grid
   ========================================================================== */

.sl-bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
  margin-top: 56px;
}

.sl-bento-card {
  position: relative;
  padding: 36px;
  background: var(--sl-card-bg);
  border: 1px solid var(--sl-card-border);
  border-radius: 24px;
  overflow: hidden;
  transition: border-color 0.4s ease, transform 0.4s var(--sl-ease-out), box-shadow 0.4s ease;
  cursor: default;
}

/* Subtle radial glow on hover */
.sl-bento-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 24px;
  background: radial-gradient(ellipse at 30% 0%, rgba(0, 229, 255, 0.05) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

/* Animated gradient border glow */
.sl-bento-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 24px;
  border: 1px solid transparent;
  background: linear-gradient(135deg, rgba(0, 229, 255, 0.2), rgba(74, 74, 248, 0.15), rgba(0, 229, 255, 0.2)) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.sl-bento-card:hover {
  border-color: transparent;
  transform: translateY(-6px);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.35), 0 0 48px rgba(0, 229, 255, 0.06);
}

.sl-bento-card:hover::before { opacity: 1; }
.sl-bento-card:hover::after { opacity: 1; }

/* ---------- CSS Hover Tilt (replaces JS initCardTilt) ---------- */
@media (hover: hover) and (prefers-reduced-motion: no-preference) {
  .sl-bento-card {
    transition: transform 0.4s var(--sl-ease-out), border-color 0.3s ease, box-shadow 0.3s ease;
  }

  .sl-bento-card:hover {
    transform: translateY(-6px) perspective(1100px) rotateX(2deg) rotateY(-1deg);
  }

  .sl-bento-hero:hover {
    transform: translateY(-6px) perspective(1100px) rotateX(1.5deg) rotateY(-0.8deg);
  }
}

/* Card sizes */
.sl-bento-hero {
  grid-column: 1 / 3;
  grid-row: 1 / 3;
  padding: 48px;
}

.sl-bento-wide {
  grid-column: 3 / 5;
}

/* Icon */
.sl-bento-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  margin-bottom: 24px;
  font-size: 1.4rem;
  transition: transform 0.4s var(--sl-ease-spring);
}

.sl-bento-card:hover .sl-bento-icon {
  transform: scale(1.1) rotate(-3deg);
}

.sl-bento-hero .sl-bento-icon {
  width: 72px;
  height: 72px;
  font-size: 1.8rem;
  border-radius: 20px;
}

.sl-bento-icon-security {
  background: rgba(0, 229, 255, 0.1);
  border: 1px solid rgba(0, 229, 255, 0.18);
  color: var(--sl-cyan);
}

.sl-bento-icon-location {
  background: rgba(74, 74, 248, 0.1);
  border: 1px solid rgba(74, 74, 248, 0.18);
  color: var(--sl-blue-mid);
}

.sl-bento-icon-storage {
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.18);
  color: #8b5cf6;
}

.sl-bento-icon-facilities {
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.18);
  color: #3b82f6;
}

/* Text */
.sl-bento-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.sl-bento-hero .sl-bento-title {
  font-size: 2rem;
  margin-bottom: 14px;
}

.sl-bento-desc {
  font-size: 0.92rem;
  color: var(--sl-text-secondary);
  line-height: 1.65;
}

.sl-bento-hero .sl-bento-desc {
  font-size: 1.02rem;
  max-width: 380px;
}

/* Security card - animated pulse rings */
.sl-security-pulse {
  position: absolute;
  bottom: -30px;
  right: -30px;
  border-radius: 50%;
  border: 1px solid rgba(0, 229, 255, 0.08);
  animation: sl-pulse-ring 5s ease-in-out infinite;
  pointer-events: none;
}

.sl-security-pulse:nth-child(4) {
  width: 180px;
  height: 180px;
}

.sl-security-pulse:nth-child(5) {
  width: 260px;
  height: 260px;
  bottom: -70px;
  right: -70px;
  animation-delay: 1.2s;
}

.sl-security-pulse:nth-child(6) {
  width: 340px;
  height: 340px;
  bottom: -110px;
  right: -110px;
  animation-delay: 2.4s;
}

@keyframes sl-pulse-ring {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.04); }
}

/* Bento stats row */
.sl-bento-stats {
  display: flex;
  gap: 36px;
  margin-top: 24px;
}

.sl-bento-stat { text-align: center; }

.sl-bento-stat-value {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--sl-cyan);
  text-shadow: 0 0 20px rgba(0, 229, 255, 0.25);
}

.sl-bento-stat-label {
  font-size: 0.72rem;
  color: var(--sl-text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

/* Responsive bento */
@media (max-width: 1024px) {
  .sl-bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .sl-bento-hero {
    grid-column: 1 / 3;
    grid-row: 1 / 2;
  }
  .sl-bento-wide {
    grid-column: 1 / 3;
  }
}

@media (max-width: 640px) {
  .sl-bento-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .sl-bento-hero,
  .sl-bento-wide {
    grid-column: 1;
    grid-row: auto;
    padding: 32px;
  }
  .sl-section-title {
    font-size: 2.4rem;
  }
  .sl-section {
    padding: 64px 16px;
  }
  .sl-bento-card {
    padding: 28px;
  }
  .sl-bento-hero .sl-bento-title {
    font-size: 1.5rem;
  }
  .sl-bento-stats {
    gap: 20px;
  }
}


/* ==========================================================================
   OFFERINGS SECTION
   ========================================================================== */

.sl-offerings-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 56px;
}

.sl-offering-image {
  grid-column: 1 / 3;
  position: relative;
  height: 300px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--sl-card-border);
}

.sl-offering-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 8s var(--sl-ease-out);
}

.sl-offering-image:hover img {
  transform: scale(1.08);
}

.sl-offering-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5, 5, 16, 0.7) 0%, transparent 50%);
  pointer-events: none;
}

.sl-offering-card {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 28px;
  background: var(--sl-card-bg);
  border: 1px solid var(--sl-card-border);
  border-radius: 20px;
  transition: border-color 0.3s ease, transform 0.35s var(--sl-ease-out), box-shadow 0.3s ease;
}

.sl-offering-card:hover {
  border-color: var(--sl-card-hover-border);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25);
}

.sl-offering-num {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--sl-cyan);
  background: rgba(0, 229, 255, 0.07);
  border: 1px solid rgba(0, 229, 255, 0.13);
  border-radius: 12px;
}

.sl-offering-title {
  font-size: 1.15rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 6px;
}

.sl-offering-desc {
  font-size: 0.9rem;
  color: var(--sl-text-secondary);
  line-height: 1.55;
}

.sl-offering-highlight {
  background: linear-gradient(90deg, var(--sl-cyan), #bbf1ff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
}

@media (max-width: 768px) {
  .sl-offerings-grid {
    grid-template-columns: 1fr;
  }
  .sl-offering-image {
    grid-column: 1;
    height: 200px;
  }
}


/* ==========================================================================
   LOCATION SECTION
   ========================================================================== */

.sl-location-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 32px;
  margin-top: 56px;
  align-items: stretch;
}

.sl-location-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
}

.sl-location-text {
  font-size: 1rem;
  color: var(--sl-text-secondary);
  line-height: 1.7;
}

.sl-location-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sl-location-detail {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: var(--sl-card-bg);
  border: 1px solid var(--sl-card-border);
  border-radius: 14px;
  font-size: 0.9rem;
  color: var(--sl-text-primary);
  transition: border-color 0.3s ease, transform 0.3s var(--sl-ease-out);
}

.sl-location-detail:hover {
  border-color: var(--sl-card-hover-border);
  transform: translateX(4px);
}

.sl-location-detail i {
  color: var(--sl-cyan);
  font-size: 0.95rem;
  width: 20px;
  text-align: center;
  flex-shrink: 0;
}

.sl-location-map {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  min-height: 420px;
  border: 1px solid var(--sl-card-border);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.35);
}

.sl-location-map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.sl-location-map-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  cursor: pointer;
  background: transparent;
}

.sl-location-map-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: rgba(8, 8, 24, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 500;
  pointer-events: none;
}

.sl-location-map-badge i {
  color: var(--sl-cyan);
}

@media (max-width: 768px) {
  .sl-location-layout {
    grid-template-columns: 1fr;
  }
  .sl-location-map {
    min-height: 300px;
  }
}


/* ==========================================================================
   TESTIMONIALS MARQUEE
   ========================================================================== */

.sl-testimonials-track {
  margin-top: 56px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, black 60px, black calc(100% - 60px), transparent);
  mask-image: linear-gradient(to right, transparent, black 60px, black calc(100% - 60px), transparent);
}

.sl-testimonials-scroll {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: sl-marquee 40s linear infinite;
  will-change: transform;
}

.sl-testimonials-track:hover .sl-testimonials-scroll {
  animation-play-state: paused;
}

@keyframes sl-marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.sl-review-card {
  flex-shrink: 0;
  width: 340px;
  padding: 28px;
  background: var(--sl-card-bg);
  border: 1px solid var(--sl-card-border);
  border-radius: 20px;
  transition: border-color 0.3s ease;
}

.sl-review-card:hover {
  border-color: var(--sl-card-hover-border);
}

.sl-review-stars {
  color: #ffd700;
  font-size: 0.85rem;
  margin-bottom: 16px;
  letter-spacing: 3px;
  text-shadow: 0 0 12px rgba(255, 215, 0, 0.25);
}

.sl-review-text {
  font-size: 0.93rem;
  color: var(--sl-text-secondary);
  line-height: 1.65;
  font-style: italic;
  margin-bottom: 20px;
  min-height: 70px;
}

.sl-review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.sl-review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--sl-gradient-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.sl-review-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
}

.sl-review-role {
  font-size: 0.72rem;
  color: var(--sl-text-secondary);
  margin-top: 2px;
}

.sl-review-disclaimer {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.35);
  text-align: center;
  margin-top: 20px;
}

.sl-trustpilot {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

.sl-trustpilot img {
  height: 34px;
  opacity: 0.5;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.sl-trustpilot img:hover {
  opacity: 1;
  transform: scale(1.06);
}


/* ==========================================================================
   FAQ SECTION
   ========================================================================== */

.sl-faq-list {
  margin-top: 56px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.sl-faq-item {
  background: var(--sl-card-bg);
  border: 1px solid var(--sl-card-border);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.sl-faq-item.sl-faq-open {
  border-color: rgba(0, 229, 255, 0.18);
}

.sl-faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  cursor: pointer;
  color: var(--sl-text-primary);
  font-size: 0.98rem;
  font-weight: 500;
  transition: color 0.2s ease;
  user-select: none;
  -webkit-user-select: none;
}

.sl-faq-question:hover {
  color: var(--sl-cyan);
}

.sl-faq-chevron {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sl-text-secondary);
  font-size: 0.75rem;
  transition: transform 0.35s var(--sl-ease-out), color 0.2s ease;
}

.sl-faq-open .sl-faq-chevron {
  transform: rotate(180deg);
  color: var(--sl-cyan);
}

.sl-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--sl-ease-out);
}

.sl-faq-answer-inner {
  padding: 0 24px 22px;
  font-size: 0.9rem;
  color: var(--sl-text-secondary);
  line-height: 1.7;
}


/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 640px) {
  .sl-quick-bar {
    bottom: 12px;
    padding: 4px;
    gap: 2px;
  }
  .sl-quick-link {
    padding: 10px 14px;
    font-size: 0.78rem;
    gap: 6px;
  }
  .sl-quick-link span {
    display: none;
  }
  .sl-quick-link i {
    font-size: 1.15rem;
  }
}


/* ==========================================================================
   REDUCED MOTION
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {
  .sl-reveal {
    transition: none;
    opacity: 1;
    transform: none;
  }
  .sl-bento-card,
  .sl-offering-card,
  .sl-faq-item,
  .sl-location-detail {
    transition: none;
  }
  .sl-quick-bar {
    transition: none;
  }
  .sl-security-pulse {
    animation: none;
  }
}


/* ==========================================================================
   HERO → ADVANTAGE TRANSITION  (compact, organic)
   ========================================================================== */

.sl-hero-transition {
  position: relative;
  height: 78px;
  /* start near hero's dark end color, drift to the advantage section's base */
  background: linear-gradient(180deg, #0a0f1e 0%, #0b091e 100%);
  overflow: hidden;
  margin-top: -1px;
}

/* Dual-layer wave creates depth without heavy decoration */
.sl-ht-wave {
  position: absolute;
  left: 0;
  width: 100%;
  pointer-events: none;
}

.sl-ht-wave-back {
  bottom: -2px;
  height: 80px;
}

.sl-ht-wave-front {
  bottom: -1px;
  height: 64px;
}

/* Faint light streaks — just two, very subtle */
.sl-ht-streak {
  position: absolute;
  height: 1px;
  left: -280px;
  background: linear-gradient(to right, transparent, rgba(0, 229, 255, 0.14), transparent);
  border-radius: 100px;
  pointer-events: none;
  will-change: transform, opacity;
}

.sl-ht-streak-1 {
  top: 30%;
  width: 200px;
  animation: sl-streak-fly 7s ease-in-out infinite;
  animation-delay: 0.8s;
}

.sl-ht-streak-2 {
  top: 65%;
  width: 140px;
  opacity: 0.5;
  animation: sl-streak-fly 9s ease-in-out infinite;
  animation-delay: 4s;
}

@keyframes sl-streak-fly {
  0%   { transform: translateX(0);      opacity: 0; }
  14%  { opacity: 1; }
  86%  { opacity: 1; }
  100% { transform: translateX(110vw);  opacity: 0; }
}


/* ==========================================================================
   OUR ADVANTAGE — Distinct Background
   ========================================================================== */

/* Below-fold paint containment */
.sl-advantage-section,
.sl-faq-bg {
  content-visibility: auto;
  contain-intrinsic-size: auto 800px;
}

.sl-advantage-section {
  background:
    radial-gradient(ellipse at 7% 88%, rgba(251, 146, 60, 0.055) 0%, transparent 44%),
    radial-gradient(ellipse at 93% 12%, rgba(12, 12, 248, 0.08)   0%, transparent 44%),
    radial-gradient(ellipse at 50% 105%, rgba(139, 92, 246, 0.05)  0%, transparent 40%),
    linear-gradient(180deg, #0b091e 0%, #080614 55%, transparent 100%);
  position: relative;
}

/* Hairline accent at the top of the section */
.sl-advantage-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(139, 92, 246, 0.28),
    rgba(0, 229, 255, 0.18),
    transparent
  );
  pointer-events: none;
}


/* ==========================================================================
   DIRECTIONAL REVEAL VARIANTS
   ========================================================================== */

.sl-reveal-left {
  animation-name: sl-scroll-reveal-left;
}

.sl-reveal-right {
  animation-name: sl-scroll-reveal-right;
}

@keyframes sl-scroll-reveal-left {
  from { opacity: 0; transform: translateX(-64px) translateY(16px); }
  to   { opacity: 1; transform: translateX(0) translateY(0); }
}

@keyframes sl-scroll-reveal-right {
  from { opacity: 0; transform: translateX(64px) translateY(16px); }
  to   { opacity: 1; transform: translateX(0) translateY(0); }
}

@supports not (animation-timeline: view()) {
  .sl-reveal-left,
  .sl-reveal-right {
    opacity: 1;
    transform: none;
  }
}


/* ==========================================================================
   SECURITY SCAN LINE
   ========================================================================== */

.sl-security-scan {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent 8%,
    rgba(0, 229, 255, 0.55) 50%,
    transparent 92%
  );
  animation: sl-scan-down 5s ease-in-out infinite;
  pointer-events: none;
}

@keyframes sl-scan-down {
  0%   { top: 0%;   opacity: 0; }
  8%   { opacity: 1; }
  92%  { opacity: 1; }
  100% { top: 100%; opacity: 0; }
}


/* ==========================================================================
   ICON GLOW-IN ON VIEW
   ========================================================================== */

@keyframes sl-icon-glow-in {
  0%   { box-shadow: 0 0 0px transparent; }
  100% { box-shadow: 0 0 28px rgba(0, 229, 255, 0.18); }
}

.sl-bento-icon {
  animation: sl-icon-glow-in 1.1s ease-out forwards;
  animation-delay: 0.35s;
  animation-timeline: view();
  animation-range: entry 20% entry 50%;
}

@supports not (animation-timeline: view()) {
  .sl-bento-icon {
    animation: sl-icon-glow-in 1.1s ease-out forwards;
  }
}


/* ==========================================================================
   REDUCED MOTION — new elements
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {
  .sl-ht-streak,
  .sl-security-scan {
    animation: none;
  }

  .sl-reveal-left,
  .sl-reveal-right {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .sl-faq-answer-inner {
    transition: none;
  }
}


/* ==========================================================================
   OFFERINGS — Warm dark atmosphere
   ========================================================================== */

.sl-offerings-bg {
  background:
    radial-gradient(ellipse at 4%  96%, rgba(251, 146, 60, 0.075) 0%, transparent 44%),
    radial-gradient(ellipse at 96%  4%, rgba(234,  88, 12, 0.045) 0%, transparent 38%),
    radial-gradient(ellipse at 50% 50%, rgba(180,  60,  0, 0.03)  0%, transparent 60%),
    linear-gradient(175deg, #0e0c0a 0%, #0b0908 55%, #0d0b09 100%);
  position: relative;
}

/* Warm hairline at section top */
.sl-offerings-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(251, 146, 60, 0.22),
    rgba(234, 88, 12, 0.14),
    transparent
  );
  pointer-events: none;
}

/* Warm accent on offering number badges */
.sl-offerings-bg .sl-offering-num {
  color: #fb923c;
  background: rgba(251, 146, 60, 0.07);
  border-color: rgba(251, 146, 60, 0.14);
}

/* Warm hover accent on offering cards */
.sl-offerings-bg .sl-offering-card:hover {
  border-color: rgba(251, 146, 60, 0.28);
}

.sl-offerings-bg .sl-offering-highlight {
  background: linear-gradient(90deg, #fb923c, #fed7aa);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}


/* ==========================================================================
   LOCATION — Teal-tinted dark atmosphere
   ========================================================================== */

.sl-location-bg {
  background:
    radial-gradient(ellipse at 97% 55%, rgba(16, 185, 129, 0.075) 0%, transparent 44%),
    radial-gradient(ellipse at  3% 25%, rgba( 6,  78,  59, 0.055) 0%, transparent 40%),
    radial-gradient(ellipse at 50% 98%, rgba(20, 184, 166, 0.04)  0%, transparent 38%),
    linear-gradient(165deg, #070d0b 0%, #060e0a 55%, #070d0b 100%);
  position: relative;
}

.sl-location-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(16, 185, 129, 0.22),
    rgba(20, 184, 166, 0.14),
    transparent
  );
  pointer-events: none;
}

/* Teal accent on location detail hover */
.sl-location-bg .sl-location-detail:hover {
  border-color: rgba(16, 185, 129, 0.28);
}

.sl-location-bg .sl-location-detail i {
  color: #10b981;
}

/* Teal section label tint */
.sl-location-bg .sl-section-label {
  color: #34d399;
  background: rgba(16, 185, 129, 0.07);
  border-color: rgba(16, 185, 129, 0.14);
}

.sl-location-bg .sl-section-label::before {
  background: #34d399;
  box-shadow: 0 0 8px #34d399;
}


/* ==========================================================================
   FAQ — Cool crystalline dark with dot grid
   ========================================================================== */

.sl-faq-bg {
  background:
    radial-gradient(circle at 1px 1px, rgba(139, 92, 246, 0.065) 1px, transparent 0),
    radial-gradient(ellipse at 50%  2%, rgba( 99, 102, 241, 0.08)  0%, transparent 48%),
    radial-gradient(ellipse at 88% 96%, rgba(139,  92, 246, 0.055) 0%, transparent 44%),
    radial-gradient(ellipse at 12% 50%, rgba( 12,  12, 248, 0.04)  0%, transparent 40%),
    linear-gradient(170deg, #09090f 0%, #07070e 55%, #090810 100%);
  background-size: 40px 40px, 100% 100%, 100% 100%, 100% 100%, 100% 100%;
  position: relative;
}

.sl-faq-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(99, 102, 241, 0.3),
    rgba(139, 92, 246, 0.2),
    transparent
  );
  pointer-events: none;
}

/* FAQ section label — violet tint */
.sl-faq-bg .sl-section-label {
  color: #a78bfa;
  background: rgba(139, 92, 246, 0.08);
  border-color: rgba(139, 92, 246, 0.16);
}

.sl-faq-bg .sl-section-label::before {
  background: #a78bfa;
  box-shadow: 0 0 8px #a78bfa;
}


/* ==========================================================================
   FAQ ACCORDION — Enhanced interaction design
   ========================================================================== */

/* Override the old faq-list margin */
.sl-faq-list {
  margin-top: 56px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

/* Base item — position relative for the left accent */
.sl-faq-item {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  overflow: hidden;
  transition:
    border-color 0.35s ease,
    box-shadow   0.35s ease,
    background   0.35s ease;
  position: relative;
}

/* Glowing left accent bar that scales in on open */
.sl-faq-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 15%;
  height: 70%;
  width: 3px;
  border-radius: 0 3px 3px 0;
  background: linear-gradient(180deg, transparent, #a78bfa 30%, #a78bfa 70%, transparent);
  transform: scaleY(0);
  transform-origin: center;
  transition: transform 0.4s var(--sl-ease-out), opacity 0.3s ease;
  opacity: 0;
  pointer-events: none;
}

/* Open state */
.sl-faq-item.sl-faq-open {
  border-color: rgba(139, 92, 246, 0.22);
  background: rgba(139, 92, 246, 0.035);
  box-shadow:
    0 4px 32px rgba(139, 92, 246, 0.08),
    inset 0 0 60px rgba(139, 92, 246, 0.02);
}

.sl-faq-item.sl-faq-open::before {
  transform: scaleY(1);
  opacity: 1;
}

/* Question row */
.sl-faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px;
  cursor: pointer;
  color: var(--sl-text-primary);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: color 0.2s ease;
  user-select: none;
  -webkit-user-select: none;
}

.sl-faq-question:hover {
  color: #c4b5fd;
}

.sl-faq-item.sl-faq-open .sl-faq-question {
  color: #e9d5ff;
}

/* Chevron as a circular pill button */
.sl-faq-chevron {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sl-text-secondary);
  font-size: 0.7rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 50%;
  transition:
    transform     0.42s var(--sl-ease-out),
    color         0.25s ease,
    background    0.25s ease,
    border-color  0.25s ease;
}

.sl-faq-item.sl-faq-open .sl-faq-chevron {
  transform: rotate(180deg);
  color: #a78bfa;
  background: rgba(139, 92, 246, 0.1);
  border-color: rgba(139, 92, 246, 0.22);
}

/* Answer outer — max-height animated by JS */
.sl-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.48s var(--sl-ease-out);
}

/* Answer inner — fade + slide triggered by CSS on parent open class */
.sl-faq-answer-inner {
  padding: 0 24px 24px;
  font-size: 0.92rem;
  color: var(--sl-text-secondary);
  line-height: 1.78;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding-top: 18px;
  /* Initial hidden state */
  opacity: 0;
  transform: translateY(-8px);
  transition:
    opacity   0.38s ease  0.07s,
    transform 0.38s var(--sl-ease-out) 0.07s;
}

/* Reveal inner content when parent is open */
.sl-faq-item.sl-faq-open .sl-faq-answer-inner {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered entrance for FAQ items scrolling in */
.sl-faq-list .sl-faq-item.sl-reveal:nth-child(1)  { transition-delay: 0.00s; }
.sl-faq-list .sl-faq-item.sl-reveal:nth-child(2)  { transition-delay: 0.05s; }
.sl-faq-list .sl-faq-item.sl-reveal:nth-child(3)  { transition-delay: 0.10s; }
.sl-faq-list .sl-faq-item.sl-reveal:nth-child(4)  { transition-delay: 0.15s; }
.sl-faq-list .sl-faq-item.sl-reveal:nth-child(5)  { transition-delay: 0.20s; }
.sl-faq-list .sl-faq-item.sl-reveal:nth-child(6)  { transition-delay: 0.25s; }
.sl-faq-list .sl-faq-item.sl-reveal:nth-child(7)  { transition-delay: 0.30s; }
.sl-faq-list .sl-faq-item.sl-reveal:nth-child(8)  { transition-delay: 0.35s; }
.sl-faq-list .sl-faq-item.sl-reveal:nth-child(9)  { transition-delay: 0.38s; }
.sl-faq-list .sl-faq-item.sl-reveal:nth-child(10) { transition-delay: 0.41s; }

/* ---------- Transition B: FAQ Evolving Cards ---------- */
/* Items 5-6: Slightly darker, faint glow */
.sl-faq-list .sl-faq-item:nth-child(n+5) {
  background: rgba(255, 255, 255, 0.02);
  border-color: rgba(0, 229, 255, 0.06);
}

/* Items 7-8: Darker, glow intensifies, star speckle starts */
.sl-faq-list .sl-faq-item:nth-child(n+7) {
  background:
    radial-gradient(1px 1px at 20px 30px, rgba(255,255,255,0.15), transparent),
    radial-gradient(1px 1px at 50px 160px, rgba(255,255,255,0.1), transparent),
    radial-gradient(1px 1px at 130px 80px, rgba(255,255,255,0.12), transparent),
    rgba(255, 255, 255, 0.015);
  background-size: 200px 200px, 200px 200px, 200px 200px, auto;
  background-repeat: repeat, repeat, repeat, no-repeat;
  border-color: rgba(0, 229, 255, 0.12);
}

/* Items 9-10: Full space theme with star field */
.sl-faq-list .sl-faq-item:nth-child(n+9) {
  background:
    radial-gradient(1px 1px at 20px 30px, #fff, rgba(0,0,0,0)),
    radial-gradient(1px 1px at 40px 70px, #fff, rgba(0,0,0,0)),
    radial-gradient(1px 1px at 50px 160px, #fff, rgba(0,0,0,0)),
    radial-gradient(2px 2px at 90px 40px, #fff, rgba(0,0,0,0)),
    radial-gradient(2px 2px at 130px 80px, #fff, rgba(0,0,0,0)),
    radial-gradient(1px 1px at 160px 120px, #fff, rgba(0,0,0,0)),
    rgba(0, 0, 0, 0.3);
  background-size: 200px 200px;
  background-repeat: repeat;
  border-color: rgba(0, 229, 255, 0.22);
  box-shadow: 0 0 15px rgba(0, 229, 255, 0.05);
}

.sl-faq-list .sl-faq-item:nth-child(n+9) .sl-faq-question span {
  color: #fff;
}

/* Progressive section background darkening (overlay, preserves original bg) */
.sl-faq-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    transparent 40%,
    rgba(0, 0, 0, 0.3) 60%,
    rgba(5, 5, 32, 0.6) 80%,
    rgba(5, 5, 32, 0.8) 100%
  );
  pointer-events: none;
  z-index: 0;
}

/* Ensure stagger doesn't conflict with the open-state transition delays */
.sl-faq-item.sl-faq-open .sl-faq-answer-inner {
  transition-delay: 0.07s;
}


/* ==========================================================================
   SECTION-TO-SECTION TOP FADES  (smooth background blending)
   ========================================================================== */

/* Each section gets a soft gradient veil at the very top that matches the
   previous section's approximate color, so the hr divider isn't a hard cut */
.sl-offerings-bg > .sl-section-inner { position: relative; z-index: 1; }
.sl-location-bg  > .sl-section-inner { position: relative; z-index: 1; }
.sl-faq-bg       > .sl-section-inner { position: relative; z-index: 1; }


/* ==========================================================================
   REDUCED MOTION — additions for new features
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {
  .sl-faq-item::before,
  .sl-faq-answer-inner {
    transition: none;
  }

  .sl-faq-list .sl-faq-item.sl-reveal {
    transition-delay: 0s !important;
  }
}

/* ==========================================================================
   MOBILE FIXES
   ========================================================================== */

@media (max-width: 768px) {
  /* Force FAQ items visible on mobile — scroll-driven animations are unreliable */
  .sl-faq-item.sl-reveal,
  .sl-reveal {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  /* Reduce the aggressive FAQ overlay that darkens text */
  .sl-faq-bg::after {
    background: linear-gradient(
      to bottom,
      transparent 0%,
      transparent 60%,
      rgba(0, 0, 0, 0.15) 80%,
      rgba(5, 5, 32, 0.3) 100%
    );
  }

  /* Brighten FAQ question text on mobile */
  .sl-faq-question {
    color: #f0f0f0;
  }

  /* Fix hero transition blending on mobile */
  .sl-hero-transition {
    background: linear-gradient(180deg, #0a0f1e 0%, #0b091e 100%);
  }
}


/* ==========================================================================
   TRANSITION C: MOON LANDING FOOTER
   ========================================================================== */

.sl-moon-landing {
  position: relative;
  min-height: 350px;
  background: #000;
  overflow: hidden;
}

/* Dense star field - layer 1 */
.sl-moon-stars-1 {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(1px 1px at 5% 8%, rgba(255,255,255,0.9), transparent),
    radial-gradient(1.5px 1.5px at 12% 22%, rgba(255,255,255,0.7), transparent),
    radial-gradient(1px 1px at 18% 5%, rgba(255,255,255,0.8), transparent),
    radial-gradient(1px 1px at 25% 35%, rgba(255,255,255,0.6), transparent),
    radial-gradient(2px 2px at 30% 12%, rgba(255,255,255,1), transparent),
    radial-gradient(1px 1px at 38% 28%, rgba(255,255,255,0.5), transparent),
    radial-gradient(1px 1px at 42% 8%, rgba(255,255,255,0.7), transparent),
    radial-gradient(1.5px 1.5px at 48% 18%, rgba(255,255,255,0.8), transparent),
    radial-gradient(1px 1px at 55% 32%, rgba(255,255,255,0.6), transparent),
    radial-gradient(1px 1px at 60% 6%, rgba(255,255,255,0.9), transparent),
    radial-gradient(2px 2px at 65% 25%, rgba(255,255,255,0.7), transparent),
    radial-gradient(1px 1px at 72% 15%, rgba(255,255,255,0.8), transparent),
    radial-gradient(1px 1px at 78% 38%, rgba(255,255,255,0.5), transparent),
    radial-gradient(1.5px 1.5px at 82% 10%, rgba(255,255,255,0.9), transparent),
    radial-gradient(1px 1px at 88% 30%, rgba(255,255,255,0.6), transparent),
    radial-gradient(1px 1px at 92% 20%, rgba(255,255,255,0.7), transparent),
    radial-gradient(2px 2px at 95% 5%, rgba(255,255,255,0.8), transparent),
    radial-gradient(1px 1px at 8% 42%, rgba(255,255,255,0.5), transparent),
    radial-gradient(1px 1px at 22% 48%, rgba(255,255,255,0.7), transparent),
    radial-gradient(1.5px 1.5px at 35% 45%, rgba(255,255,255,0.6), transparent),
    radial-gradient(1px 1px at 50% 42%, rgba(255,255,255,0.8), transparent),
    radial-gradient(1px 1px at 68% 48%, rgba(255,255,255,0.5), transparent),
    radial-gradient(1px 1px at 75% 44%, rgba(255,255,255,0.7), transparent),
    radial-gradient(1px 1px at 85% 46%, rgba(255,255,255,0.6), transparent);
}

/* Dense star field - layer 2 */
.sl-moon-stars-2 {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(1px 1px at 3% 15%, rgba(255,255,255,0.6), transparent),
    radial-gradient(1px 1px at 16% 32%, rgba(255,255,255,0.5), transparent),
    radial-gradient(1.5px 1.5px at 28% 20%, rgba(255,255,255,0.7), transparent),
    radial-gradient(1px 1px at 33% 40%, rgba(255,255,255,0.4), transparent),
    radial-gradient(1px 1px at 46% 28%, rgba(255,255,255,0.6), transparent),
    radial-gradient(1px 1px at 52% 10%, rgba(255,255,255,0.5), transparent),
    radial-gradient(1px 1px at 58% 38%, rgba(255,255,255,0.7), transparent),
    radial-gradient(1.5px 1.5px at 63% 16%, rgba(255,255,255,0.6), transparent),
    radial-gradient(1px 1px at 70% 35%, rgba(255,255,255,0.4), transparent),
    radial-gradient(1px 1px at 80% 22%, rgba(255,255,255,0.5), transparent),
    radial-gradient(1px 1px at 90% 40%, rgba(255,255,255,0.6), transparent),
    radial-gradient(2px 2px at 97% 15%, rgba(255,255,255,0.7), transparent);
}

/* Ambient radiance from surface */
.sl-moon-glow-ambient {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  width: 650px;
  height: 220px;
  z-index: 2;
  background: radial-gradient(ellipse at 50% 100%, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.04) 45%, transparent 70%);
}

/* Animated glow outline - follows moon curve, no border */
.sl-moon-glow-outline {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 160px;
  z-index: 3;
  border-radius: 80% 80% 0 0 / 55px 55px 0 0;
  animation: sl-moon-glow-pulse 6s ease-in-out infinite;
}

@keyframes sl-moon-glow-pulse {
  0% {
    box-shadow:
      0 -4px 15px rgba(255,255,255,0.25),
      0 -10px 35px rgba(255,255,255,0.12),
      0 -20px 60px rgba(255,255,255,0.06),
      0 -30px 80px rgba(255,255,255,0.03);
  }
  50% {
    box-shadow:
      0 -6px 20px rgba(255,255,255,0.5),
      0 -15px 50px rgba(255,255,255,0.3),
      0 -35px 90px rgba(255,255,255,0.15),
      0 -60px 140px rgba(255,255,255,0.08),
      0 -90px 200px rgba(255,255,255,0.03);
  }
  100% {
    box-shadow:
      0 -4px 15px rgba(255,255,255,0.25),
      0 -10px 35px rgba(255,255,255,0.12),
      0 -20px 60px rgba(255,255,255,0.06),
      0 -30px 80px rgba(255,255,255,0.03);
  }
}

/* Moon surface - greyish white */
.sl-moon-surface {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 160px;
  z-index: 4;
  background: linear-gradient(to bottom, #b8b8c6 0%, #c2c2ce 10%, #cbcbd6 25%, #d2d2dc 50%, #d8d8e0 75%, #dcdce4 100%);
  border-radius: 80% 80% 0 0 / 55px 55px 0 0;
}

/* Craters */
.sl-moon-crater {
  position: absolute;
  border-radius: 50%;
  background: rgba(0,0,0,0.04);
}

.sl-moon-crater-1 { top: 38px; left: 15%; width: 70px; height: 28px; box-shadow: inset 2px 2px 8px rgba(0,0,0,0.07), inset -1px -1px 4px rgba(255,255,255,0.2); }
.sl-moon-crater-2 { top: 68px; left: 50%; width: 48px; height: 20px; box-shadow: inset 1px 1px 6px rgba(0,0,0,0.05), inset -1px -1px 3px rgba(255,255,255,0.15); }
.sl-moon-crater-3 { top: 55px; left: 76%; width: 32px; height: 14px; box-shadow: inset 1px 1px 4px rgba(0,0,0,0.04); }
.sl-moon-crater-4 { top: 88px; left: 33%; width: 22px; height: 10px; box-shadow: inset 1px 1px 3px rgba(0,0,0,0.03); }

/* Footer content repositioned on the moon */
.sl-moon-landing .dark-footer {
  position: relative;
  z-index: 5;
  background: none;
  padding-top: 0;
  margin-top: 0;
}

.sl-moon-landing .footer-content {
  position: relative;
  z-index: 5;
}

.sl-moon-landing .footer-bottom {
  position: relative;
  z-index: 5;
}

@media (prefers-reduced-motion: reduce) {
  .sl-moon-glow-outline {
    animation: none;
    box-shadow:
      0 -4px 15px rgba(255,255,255,0.25),
      0 -10px 35px rgba(255,255,255,0.12),
      0 -20px 60px rgba(255,255,255,0.06);
  }
}
