/* ==========================================================================
   Autonomous Web Cloner & Architecture Engine — Stylesheet
   Design Inspo: Recent.design, Godly, Linear, Vercel, Emil Kowalski Spring Craft
   ========================================================================== */

:root {
  --bg-canvas: #070709;
  --bg-surface: #0e0e12;
  --bg-surface-elevated: #141419;
  --bg-surface-subtle: rgba(255, 255, 255, 0.03);
  
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(255, 255, 255, 0.18);
  --border-active: rgba(255, 255, 255, 0.32);
  
  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  
  --accent: #ffffff;
  --accent-emerald: #10b981;
  --accent-emerald-subtle: rgba(16, 185, 129, 0.14);
  --accent-emerald-glow: rgba(16, 185, 129, 0.25);
  --accent-blue: #3b82f6;
  
  --font-sans: 'Satoshi', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-display: 'Clash Display', 'Satoshi', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  
  --spring-ease: cubic-bezier(0.16, 1, 0.3, 1);
  --spring-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --speed-fast: 0.2s;
  --speed-normal: 0.35s;
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html, body {
  background-color: var(--bg-canvas);
  color: var(--text-primary);
  font-family: var(--font-sans);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  position: relative;
  cursor: default;
}

a, button, input[type="button"], input[type="submit"], select, .preset-pill, .captcha-slider, .browser-tab, .icon-tool, .dot, .btn-paste, .btn-primary, .btn-download, .btn-secondary, .page-route-pill {
  cursor: pointer !important;
}

input[type="text"], input[type="url"], textarea {
  cursor: text !important;
}

/* Hide legacy dot & ring elements */
.custom-cursor-dot,
.custom-cursor-ring {
  display: none !important;
}

/* --------------------------------------------------------------------------
   Shaders.com-Inspired Interactive WebGL Fluid Mesh Background Canvas
   -------------------------------------------------------------------------- */
.shader-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  pointer-events: none;
  opacity: 0.65;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  will-change: transform;
  contain: strict;
}

/* --------------------------------------------------------------------------
   Ambient Cursor Glow & Background Atmosphere
   -------------------------------------------------------------------------- */
.ambient-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 650px;
  height: 650px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.07) 0%, rgba(59, 130, 246, 0.04) 45%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  transform: translate(-50%, -50%);
  filter: blur(80px);
  will-change: transform;
  transition: opacity 0.4s ease;
}

.spotlight {
  position: fixed;
  top: -220px;
  left: 50%;
  transform: translateX(-50%);
  width: 1000px;
  height: 700px;
  background: radial-gradient(50% 50% at 50% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}

/* --------------------------------------------------------------------------
   Header Navigation: Smooth Static-to-Floating Conversion on Scroll
   -------------------------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
  background: rgba(7, 7, 9, 0.75);
  transition: max-width 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              top 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              border-radius 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              background 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.site-header.is-floating {
  top: 14px;
  max-width: min(92%, 940px);
  margin-left: auto;
  margin-right: auto;
  border-radius: 9999px;
  background: rgba(13, 14, 18, 0.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 16px 36px -10px rgba(0, 0, 0, 0.65), 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.header-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0.85rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: padding 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.site-header.is-floating .header-container {
  padding: 0.55rem 1.25rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-icon {
  width: 22px;
  height: 22px;
  color: var(--text-primary);
}

.brand-name {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

.badge-tag {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 600;
  padding: 0.2rem 0.5rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
}

.edge-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.2rem 0.6rem;
  border-radius: 9999px;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.2);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--accent-emerald);
}

.pulse-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-emerald);
  box-shadow: 0 0 8px var(--accent-emerald);
  animation: pulse-ring 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse-ring {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #f8fafc;
  font-size: 0.82rem;
  font-weight: 500;
  text-decoration: none;
  transition: all var(--speed-fast) var(--spring-ease);
  user-select: none;
  backdrop-filter: blur(12px);
}

.nav-btn svg {
  width: 14px;
  height: 14px;
  transition: transform var(--speed-fast) ease;
}

.nav-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.24);
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4), 0 0 20px rgba(16, 185, 129, 0.15);
}

.nav-btn:hover svg {
  transform: translate(2px, -2px);
}

.nav-btn:active {
  transform: scale(0.97);
}

/* --------------------------------------------------------------------------
   Hero Section
   -------------------------------------------------------------------------- */
.main-content {
  position: relative;
  z-index: 1;
  max-width: 1240px;
  margin: 0 auto;
  padding: 5.5rem 1.5rem 5rem;
}

.hero-section {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 3.2rem;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.35rem 0.95rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
  animation: float-slow 4s ease-in-out infinite alternate;
}

@keyframes float-slow {
  0% { transform: translateY(0); }
  100% { transform: translateY(-4px); }
}

.pill-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-emerald);
  box-shadow: 0 0 8px var(--accent-emerald);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.08;
  color: var(--text-primary);
  margin-bottom: 1.2rem;
}

.hero-title-gradient {
  background: linear-gradient(180deg, #FFFFFF 15%, rgba(255, 255, 255, 0.68) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.hero-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 620px;
  margin: 0 auto 2.2rem;
}

/* --------------------------------------------------------------------------
   Command Deck & Input Card
   -------------------------------------------------------------------------- */
.command-deck {
  max-width: 640px;
  margin: 0 auto;
}

.input-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: 1.2rem;
  padding: 1.25rem;
  box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(255, 255, 255, 0.03);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  transition: border-color var(--speed-normal) ease, box-shadow var(--speed-normal) ease;
}

.input-card:hover, .input-card:focus-within {
  border-color: var(--border-hover);
  box-shadow: 0 35px 70px -15px rgba(0, 0, 0, 0.9), 0 0 30px rgba(255, 255, 255, 0.03);
}

.input-group {
  display: flex;
  align-items: center;
  background: var(--bg-canvas);
  border: 1px solid var(--border-subtle);
  border-radius: 0.75rem;
  padding: 0.45rem 0.75rem;
  gap: 0.6rem;
  transition: border-color var(--speed-fast) ease, box-shadow var(--speed-fast) ease;
}

.input-group:focus-within {
  border-color: var(--border-active);
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.08);
}

.protocol-badge {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--text-muted);
  user-select: none;
}

.protocol-badge svg {
  width: 14px;
  height: 14px;
}

.url-field {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--text-primary);
  font-size: 0.95rem;
  font-family: var(--font-mono);
  outline: none;
  min-width: 0;
}

.url-field::placeholder {
  color: var(--text-muted);
  font-family: var(--font-sans);
}

.btn-paste {
  background: transparent;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  padding: 0.3rem;
  border-radius: 0.35rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color var(--speed-fast) ease, background var(--speed-fast) ease;
}

.btn-paste svg {
  width: 15px;
  height: 15px;
}

.btn-paste:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.06);
}

/* Quick Presets Row */
.presets-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.presets-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-right: 0.2rem;
}

.preset-pill {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  padding: 0.2rem 0.55rem;
  border-radius: 6px;
  cursor: pointer;
  transition: all var(--speed-fast) var(--spring-ease);
}

.preset-pill:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--border-hover);
  color: var(--text-primary);
  transform: translateY(-1px);
}

.preset-pill:active {
  transform: scale(0.96);
}

/* --------------------------------------------------------------------------
   Captcha Verification Slider (Pixel-Synchronized Realtime Drag Trail)
   -------------------------------------------------------------------------- */
.captcha-wrapper {
  position: relative;
  width: 100%;
  border-radius: 0.75rem;
  background: var(--bg-canvas);
  border: 1px solid var(--border-subtle);
  overflow: hidden;
  user-select: none;
  transition: border-color var(--speed-fast) ease, background var(--speed-fast) ease;
}

.captcha-track {
  position: relative;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}

.captcha-progress {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0px;
  background: linear-gradient(90deg, rgba(16, 185, 129, 0.12), rgba(16, 185, 129, 0.28));
  pointer-events: none;
  transition: none; /* Instant 1:1 pixel sync with drag thumb */
}

.captcha-slider {
  position: absolute;
  left: 4px;
  top: 4px;
  width: 40px;
  height: 40px;
  border-radius: 0.55rem;
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: grab;
  color: var(--text-secondary);
  z-index: 2;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.captcha-slider:active {
  cursor: grabbing;
}

.captcha-slider svg {
  width: 16px;
  height: 16px;
  pointer-events: none;
}

.captcha-label {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
  pointer-events: none;
  z-index: 1;
  transition: opacity var(--speed-fast) ease;
}

.captcha-wrapper.verified {
  border-color: rgba(16, 185, 129, 0.4);
  background: rgba(16, 185, 129, 0.05);
}

.captcha-wrapper.verified .captcha-progress {
  width: 100% !important;
  background: rgba(16, 185, 129, 0.18);
  transition: width 0.3s ease;
}

.captcha-wrapper.verified .captcha-slider {
  background: var(--accent-emerald);
  border-color: var(--accent-emerald);
  color: #000;
  cursor: default;
}

.captcha-wrapper.verified .captcha-label {
  color: var(--accent-emerald);
  font-weight: 600;
}

/* Primary Action Button */
.btn-primary {
  width: 100%;
  height: 48px;
  border-radius: 0.75rem;
  background: #ffffff;
  color: #070709;
  border: 1px solid #ffffff;
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.12s var(--spring-ease), opacity var(--speed-fast) ease, background var(--speed-fast) ease;
  position: relative;
  overflow: hidden;
}

.btn-primary:not(:disabled):hover {
  background: #f1f5f9;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.15);
}

.btn-primary:not(:disabled):active {
  transform: scale(0.98);
}

.btn-primary:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.btn-content {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.btn-icon {
  width: 15px;
  height: 15px;
}

.btn-spinner {
  display: none;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(0, 0, 0, 0.15);
  border-top-color: #000;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.btn-primary.loading .btn-content { display: none; }
.btn-primary.loading .btn-spinner { display: block; }

/* --------------------------------------------------------------------------
   Elevated Realistic Mockup Browser Window Frame (Clean, Static, Elevated)
   NO 3D Mouse Tilt as requested: "browser vo 3d tilt type na kre to shyd achha lagega bs thoda utha hua sa lage"
   -------------------------------------------------------------------------- */
.browser-section {
  max-width: 1100px;
  margin: 0 auto;
}

.browser-frame {
  background: var(--bg-surface);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 35px 85px -15px rgba(0, 0, 0, 0.92), 
              0 0 0 1px rgba(255, 255, 255, 0.05), 
              0 15px 35px rgba(0, 0, 0, 0.7);
  transition: box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.browser-frame:hover {
  box-shadow: 0 45px 105px -15px rgba(0, 0, 0, 0.96), 
              0 0 0 1px rgba(255, 255, 255, 0.1), 
              0 0 50px rgba(16, 185, 129, 0.05);
}

/* Browser Window Header Toolbar */
.browser-header {
  height: 52px;
  background: rgba(14, 14, 18, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
  display: grid;
  grid-template-columns: 80px auto 1fr 80px;
  align-items: center;
  padding: 0 1rem;
  gap: 0.75rem;
  user-select: none;
}

.traffic-dots {
  display: flex;
  align-items: center;
  gap: 7px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  transition: transform var(--speed-fast) var(--spring-bounce);
  cursor: pointer;
}

.dot:hover {
  transform: scale(1.15);
}

.dot-close { background: #ff5f56; }
.dot-minimize { background: #ffbd2e; }
.dot-maximize { background: #27c93f; }

/* Interactive & Expanding Tabs */
.browser-tabs {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.browser-tab {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem 0.65rem;
  border-radius: 0.45rem;
  background: transparent;
  border: 1px solid transparent;
  color: var(--text-muted);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  cursor: pointer;
  transition: all var(--speed-fast) ease;
  white-space: nowrap;
}

.browser-tab.active {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--border-subtle);
  color: var(--text-primary);
}

.browser-tab:not(.active):hover {
  color: var(--text-secondary);
  background: rgba(255, 255, 255, 0.02);
}

.tab-live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-emerald);
  box-shadow: 0 0 6px var(--accent-emerald);
}

.browser-tab svg {
  width: 12px;
  height: 12px;
}

/* Expanding Tab on Hover (Asset Stream) */
.browser-tab.tab-expandable {
  max-width: 32px;
  padding: 0.35rem 0.45rem;
  justify-content: center;
  overflow: hidden;
  transition: max-width 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), 
              padding 0.3s ease, 
              background 0.2s ease, 
              border-color 0.2s ease;
}

.browser-tab.tab-expandable svg {
  flex-shrink: 0;
}

.browser-tab.tab-expandable .tab-label {
  opacity: 0;
  max-width: 0;
  transition: opacity 0.2s ease, max-width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
  overflow: hidden;
}

.browser-tab.tab-expandable:hover {
  max-width: 155px;
  padding: 0.35rem 0.65rem;
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--border-hover);
  color: var(--text-primary);
}

.browser-tab.tab-expandable:hover .tab-label {
  opacity: 1;
  max-width: 110px;
  margin-left: 0.35rem;
}

/* Locked Address Bar */
.address-container {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--bg-canvas);
  border: 1px solid var(--border-subtle);
  border-radius: 0.55rem;
  height: 32px;
  padding: 0 0.55rem;
  position: relative;
  overflow: hidden;
  transition: border-color var(--speed-fast) ease;
}

.address-container:hover {
  border-color: var(--border-hover);
}

.ssl-lock {
  width: 12px;
  height: 12px;
  color: var(--accent-emerald);
  flex-shrink: 0;
}

.address-text {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--text-secondary);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  outline: none;
  cursor: not-allowed;
  user-select: all;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.badge-locked {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  padding: 0.1rem 0.35rem;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-muted);
  user-select: none;
}

.badge-locked svg {
  width: 9px;
  height: 9px;
}

.btn-copy-address {
  background: transparent;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  padding: 0.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  transition: color var(--speed-fast) ease;
}

.btn-copy-address:hover {
  color: var(--text-primary);
}

.btn-copy-address svg {
  width: 12px;
  height: 12px;
}

.btn-copy-address .check-icon { display: none; color: var(--accent-emerald); }
.btn-copy-address.copied .copy-icon { display: none; }
.btn-copy-address.copied .check-icon { display: block; }

/* Window Action Buttons */
.window-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.35rem;
}

.icon-tool {
  width: 28px;
  height: 28px;
  border-radius: 0.35rem;
  background: transparent;
  border: none;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--speed-fast) ease;
}

.icon-tool svg {
  width: 14px;
  height: 14px;
}

.icon-tool:not(:disabled):hover {
  color: var(--text-primary);
  background: var(--bg-surface-subtle);
}

.icon-tool:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

/* --------------------------------------------------------------------------
   Browser Viewport & Multi-State Views
   -------------------------------------------------------------------------- */
.browser-viewport {
  position: relative;
  width: 100%;
  min-height: 580px;
  background: #050507;
  overflow: hidden;
  display: flex;
}

/* State A: 4K UHD Looping Video + Generative Canvas */
.idle-video-container {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 1;
  transition: opacity var(--speed-normal) ease;
}

.motion-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  user-select: none;
  opacity: 0.88;
  filter: contrast(1.1) brightness(0.95);
  transition: opacity 0.5s ease;
}

.shader-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  mix-blend-mode: screen;
  opacity: 0.55;
}

.idle-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  text-align: center;
  padding: 2.5rem;
  background: linear-gradient(180deg, transparent 40%, rgba(7, 7, 9, 0.85) 100%);
  pointer-events: none;
}

.idle-hud-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-secondary);
  padding: 0.4rem 0.95rem;
  border-radius: 9999px;
  background: rgba(14, 14, 18, 0.75);
  border: 1px solid var(--border-subtle);
  backdrop-filter: blur(12px);
  margin-bottom: 0.75rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.hud-live-indicator {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-emerald);
  box-shadow: 0 0 8px var(--accent-emerald);
}

.hud-res {
  color: var(--text-muted);
  font-size: 0.68rem;
  border-left: 1px solid var(--border-subtle);
  padding-left: 0.5rem;
}

.idle-caption {
  font-size: 0.86rem;
  color: var(--text-muted);
  max-width: 480px;
}

/* State B: Live Progress Overlay */
.progress-overlay {
  position: absolute;
  inset: 0;
  z-index: 10;
  background: rgba(7, 7, 9, 0.94);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2.5rem;
}

.progress-panel {
  width: 100%;
  max-width: 640px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.progress-top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.milestone-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-mono);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-primary);
}

.milestone-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-emerald);
  box-shadow: 0 0 12px var(--accent-emerald);
  animation: pulse-ring 1.5s infinite;
}

.percentage-value {
  font-family: var(--font-mono);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--accent-emerald);
}

.progress-track {
  width: 100%;
  height: 6px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
  position: relative;
}

.progress-bar {
  height: 100%;
  width: 0%;
  border-radius: 9999px;
  background: linear-gradient(90deg, #10b981, #3b82f6);
  box-shadow: 0 0 12px rgba(16, 185, 129, 0.5);
  transition: width 0.15s ease-out;
}

.milestone-detail {
  font-size: 0.84rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.step-chips {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.5rem;
}

.step-chip {
  padding: 0.5rem 0.4rem;
  border-radius: 0.5rem;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.2rem;
  transition: all var(--speed-fast) ease;
}

.step-chip.active {
  border-color: var(--accent-emerald);
  background: rgba(16, 185, 129, 0.08);
}

.step-chip.completed {
  border-color: rgba(16, 185, 129, 0.35);
  color: var(--accent-emerald);
}

.step-num {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--text-muted);
}

.step-chip.active .step-num {
  color: var(--accent-emerald);
}

.step-name {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.step-chip.active .step-name {
  color: var(--text-primary);
}

/* Terminal Drawer */
.terminal-box {
  background: #040405;
  border: 1px solid var(--border-subtle);
  border-radius: 0.65rem;
  overflow: hidden;
}

.terminal-header {
  height: 32px;
  background: rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0.85rem;
}

.terminal-left {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.terminal-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--text-muted);
}

.terminal-title {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-secondary);
}

.terminal-status {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  color: var(--accent-emerald);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.terminal-body {
  height: 120px;
  overflow-y: auto;
  padding: 0.75rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  line-height: 1.6;
  color: #a1a1aa;
}

.terminal-body::-webkit-scrollbar {
  width: 4px;
}

.terminal-body::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
}

.log-line {
  margin-bottom: 0.25rem;
}

/* --------------------------------------------------------------------------
   Rendering Scanner & Laser Matrix Animation
   -------------------------------------------------------------------------- */
.render-matrix-overlay {
  position: absolute;
  inset: 0;
  z-index: 6;
  background: rgba(5, 5, 7, 0.82);
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.render-matrix-overlay.active {
  display: flex;
}

.scan-laser {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, #10b981 50%, transparent 100%);
  box-shadow: 0 0 15px #10b981, 0 0 30px #10b981;
  animation: laserScan 2.4s ease-in-out infinite alternate;
}

@keyframes laserScan {
  0% { top: 0%; opacity: 0.8; }
  50% { opacity: 1; }
  100% { top: 100%; opacity: 0.8; }
}

.wireframe-container {
  width: 80%;
  max-width: 650px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  opacity: 0.7;
}

.wireframe-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.5rem;
}

.wireframe-title-bar {
  width: 65%;
  height: 22px;
  border-radius: 6px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.05), rgba(16, 185, 129, 0.15), rgba(255, 255, 255, 0.05));
  background-size: 200% 100%;
  animation: shimmerWireframe 2s linear infinite;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.wireframe-sub-bar {
  width: 45%;
  height: 12px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.wireframe-btn-pill {
  width: 110px;
  height: 28px;
  border-radius: 9999px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.25);
  margin-top: 0.4rem;
}

.wireframe-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.wireframe-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px dashed rgba(255, 255, 255, 0.1);
  border-radius: 0.75rem;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.card-icon-box {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: rgba(59, 130, 246, 0.15);
  border: 1px solid rgba(59, 130, 246, 0.3);
}

.card-line {
  height: 8px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.05);
}

.card-line.short {
  width: 60%;
}

@keyframes shimmerWireframe {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.scanning-telemetry {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1.5rem;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  color: var(--accent-emerald);
  padding: 0.35rem 0.85rem;
  border-radius: 9999px;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.25);
}

.telemetry-pulse {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-emerald);
  box-shadow: 0 0 8px var(--accent-emerald);
  animation: pulse-ring 1s infinite;
}

/* --------------------------------------------------------------------------
   Curtain Laser Reveal & Top-To-Down Wipe Sheen
   -------------------------------------------------------------------------- */
.curtain-laser-sheen {
  position: absolute;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, transparent 0%, #10b981 30%, #ffffff 50%, #3b82f6 70%, transparent 100%);
  box-shadow: 0 0 20px #10b981, 0 0 40px rgba(59, 130, 246, 0.8);
  z-index: 15;
  pointer-events: none;
  display: none;
}

.curtain-laser-sheen.active {
  display: block;
  animation: curtainLaserSweep 0.95s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes curtainLaserSweep {
  0% { top: 0%; opacity: 1; }
  85% { opacity: 1; }
  100% { top: 100%; opacity: 0; }
}

.cloned-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  background: #ffffff;
  display: none;
  z-index: 7;
  clip-path: inset(0 0 100% 0);
  opacity: 0;
  transition: clip-path 0.95s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s ease;
  overflow-y: auto !important;
  -webkit-overflow-scrolling: touch;
}

.cloned-frame.revealed {
  display: block;
  clip-path: inset(0 0 0% 0);
  opacity: 1;
}

.browser-viewport.preview-active {
  min-height: 750px;
  height: 750px;
}

.browser-viewport.preview-active .cloned-frame {
  display: block;
}

.browser-viewport.preview-active .idle-video-container {
  display: none;
}

/* Fullscreen Mode for Immersive Full-Site Exploration */
.browser-frame:fullscreen,
.browser-frame:-webkit-full-screen {
  width: 100vw !important;
  height: 100vh !important;
  max-width: 100vw !important;
  border-radius: 0 !important;
  border: none !important;
  margin: 0 !important;
  background: #000000 !important;
}

.browser-frame:fullscreen .browser-viewport,
.browser-frame:-webkit-full-screen .browser-viewport {
  height: calc(100vh - 52px) !important;
  min-height: calc(100vh - 52px) !important;
}

/* Alternate Tab: Asset Waterfall View */
.asset-waterfall-view {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-surface);
  z-index: 8;
  display: none;
  flex-direction: column;
  padding: 1.5rem;
}

.asset-waterfall-view.active {
  display: flex;
}

.waterfall-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-subtle);
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.waterfall-count {
  color: var(--accent-emerald);
}

.waterfall-list {
  flex: 1;
  overflow-y: auto;
  margin-top: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.waterfall-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.45rem 0.75rem;
  background: var(--bg-canvas);
  border: 1px solid var(--border-subtle);
  border-radius: 0.45rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
}

.asset-type-badge {
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
  background: rgba(59, 130, 246, 0.1);
  color: var(--accent-blue);
  font-size: 0.65rem;
}

.asset-name {
  flex: 1;
  margin: 0 0.8rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--text-primary);
}

.asset-size {
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   Action & Metrics Deck (Revealed Upon Clone)
   -------------------------------------------------------------------------- */
.action-deck {
  margin-top: 1.5rem;
  display: none;
  animation: fadeIn 0.4s var(--spring-ease);
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.action-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: 1.25rem;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.meta-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.stat-card {
  background: var(--bg-canvas);
  border: 1px solid var(--border-subtle);
  border-radius: 0.85rem;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  transition: border-color var(--speed-fast) ease;
}

.stat-card:hover {
  border-color: var(--border-hover);
}

.stat-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.stat-icon {
  width: 14px;
  height: 14px;
  color: var(--accent-emerald);
  opacity: 0.85;
  flex-shrink: 0;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-family: var(--font-mono);
}

.stat-value {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.tech-stack-row {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: wrap;
  padding-top: 0.5rem;
  border-top: 1px solid var(--border-subtle);
}

.tech-heading {
  font-size: 0.8rem;
  font-family: var(--font-mono);
  color: var(--text-muted);
}

.tech-pills {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.tech-pill {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  padding: 0.25rem 0.65rem;
  border-radius: 6px;
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-subtle);
  color: var(--text-primary);
  transition: all var(--speed-fast) ease;
}

.tech-pill:hover {
  border-color: var(--border-hover);
  background: rgba(255, 255, 255, 0.08);
}

.download-cta-row {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Tactile Animated Download Button */
.btn-download {
  flex: 1;
  height: 52px;
  border-radius: 0.8rem;
  background: var(--accent-emerald);
  color: #000000;
  border: none;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.28);
  transition: all var(--speed-fast) var(--spring-ease);
  position: relative;
  overflow: hidden;
}

.btn-download:hover {
  background: #14ca8e;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(16, 185, 129, 0.4);
}

.btn-download:active {
  transform: scale(0.97);
}

.dl-icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.dl-arrow {
  width: 18px;
  height: 18px;
  transition: transform 0.25s var(--spring-ease);
}

.btn-download:hover .dl-arrow {
  transform: translateY(2px);
}

.dl-spinner {
  display: none;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(0, 0, 0, 0.2);
  border-top-color: #000;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

.dl-check {
  display: none;
  width: 18px;
  height: 18px;
  color: #000;
}

.btn-download.downloading .dl-arrow { display: none; }
.btn-download.downloading .dl-spinner { display: block; }
.btn-download.downloading { background: #10b981; pointer-events: none; }

.btn-download.completed .dl-arrow { display: none; }
.btn-download.completed .dl-spinner { display: none; }
.btn-download.completed .dl-check { display: block; }
.btn-download.completed { background: #14ca8e; }

.btn-secondary {
  height: 52px;
  padding: 0 1.5rem;
  border-radius: 0.8rem;
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all var(--speed-fast) ease;
}

.btn-secondary svg {
  width: 15px;
  height: 15px;
}

.btn-secondary:hover {
  color: var(--text-primary);
  border-color: var(--border-hover);
  background: rgba(255, 255, 255, 0.06);
}

/* --------------------------------------------------------------------------
   Site Footer (Linked to Yamdut Ecosystem)
   -------------------------------------------------------------------------- */
.site-footer {
  border-top: 1px solid var(--border-subtle);
  padding: 2.2rem 1.5rem;
  background: var(--bg-surface);
  position: relative;
  z-index: 10;
}

.footer-container {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.footer-brand {
  font-weight: 700;
  color: var(--text-primary);
}

.footer-sep {
  color: var(--text-muted);
}

.footer-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--accent-emerald);
}

.footer-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-link {
  font-size: 0.82rem;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color var(--speed-fast) ease;
}

.footer-link:hover {
  color: var(--text-primary);
}

/* --------------------------------------------------------------------------
   Responsive Media Queries
   -------------------------------------------------------------------------- */
@media (max-width: 900px) {
  .meta-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .download-cta-row {
    flex-direction: column;
  }
  .btn-download, .btn-secondary {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .browser-header {
    grid-template-columns: 70px 1fr 40px;
  }
  .browser-tabs {
    display: none;
  }
  .step-chips {
    grid-template-columns: 1fr;
  }
  .footer-container {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }
}

/* ==========================================================================
   BOOT SEQUENCE ANIMATION (macOS Startup Feel)
   ========================================================================== */
.boot-sequence {
  position: absolute;
  inset: 0;
  background: #070709;
  z-index: 25;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease;
}

.boot-sequence.done {
  opacity: 0;
  pointer-events: none;
}

.boot-screen {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.boot-logo {
  color: var(--accent-emerald);
  animation: pulse-ring 2s infinite;
}

.boot-progress-track {
  width: 180px;
  height: 3px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 9999px;
  overflow: hidden;
  position: relative;
}

.boot-progress-bar {
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, transparent, var(--accent-emerald));
  animation: boot-fill 1.8s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

@keyframes boot-fill {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.boot-text {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

/* ==========================================================================
   MULTI-PAGE SWITCHER BAR (Interactive Route Switching)
   ========================================================================== */
.cloned-pages-bar {
  display: none;
  background: rgba(14, 14, 18, 0.95);
  border-bottom: 1px solid var(--border-subtle);
  padding: 8px 16px;
  overflow-x: auto;
  scrollbar-width: none;
}

.cloned-pages-bar::-webkit-scrollbar {
  display: none;
}

.cloned-pages-bar.visible {
  display: block;
}

.pages-bar-inner {
  display: flex;
  align-items: center;
  gap: 12px;
}

.pages-bar-tag {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-family: var(--font-mono);
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.pages-pills-scroll {
  display: flex;
  align-items: center;
  gap: 6px;
  overflow-x: auto;
  scrollbar-width: none;
}

.page-route-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  border-radius: 6px;
  font-size: 12px;
  font-family: var(--font-mono);
  color: var(--text-secondary);
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.15s ease;
}

.page-route-pill:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  border-color: var(--border-hover);
}

.page-route-pill.active {
  background: var(--accent-emerald-subtle);
  color: var(--accent-emerald);
  border-color: rgba(16, 185, 129, 0.35);
  font-weight: 600;
}

.page-route-pill:active {
  transform: scale(0.97);
}

/* --------------------------------------------------------------------------
   Footer: Smooth Floating Island Dock
   -------------------------------------------------------------------------- */
.site-footer {
  margin-top: 4rem;
  padding: 2rem 1.5rem 3rem;
  display: flex;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.footer-container {
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border-subtle);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.site-footer.is-floating .footer-container {
  max-width: min(92%, 940px);
  border-radius: 9999px;
  background: rgba(13, 14, 18, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 12px 32px -8px rgba(0, 0, 0, 0.55);
  padding: 0.75rem 1.5rem;
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}

.footer-sep {
  color: var(--text-muted);
  font-size: 0.75rem;
}

.footer-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--text-secondary);
}

.footer-status-pill .pulse-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-emerald);
  box-shadow: 0 0 8px var(--accent-emerald);
}

.footer-right {
  display: flex;
  align-items: center;
}

.footer-link {
  font-size: 0.82rem;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.15s ease;
}

.footer-link:hover {
  color: #ffffff;
}
