:root {
  /* --- PALETTE --- */
  --void: #050510;
  --surface: #0a0a16;
  --surface-glass: rgba(10, 10, 22, 0.85);

  --primary: #00f3ff; /* Cyan Electrico */
  --accent: #9d00ff; /* Deep Purple */
  --gold: #ffd700; /* Premium Status */
  --white: #e0e0e0;
  --silver: #8b9bb4;
  --danger: #ff2a2a;

  /* --- TYPOGRAPHY (FLUID) --- */
  --font-head: "Orbitron", sans-serif;
  --font-data: "Rajdhani", monospace;

  /* Clamp: (min, preferred, max) */
  --text-xs: clamp(0.7rem, 1vw, 0.8rem);
  --text-sm: clamp(0.85rem, 1.5vw, 1rem);
  --text-base: clamp(1rem, 2vw, 1.1rem);
  --text-lg: clamp(1.2rem, 3vw, 1.5rem);
  --text-xl: clamp(1.5rem, 4vw, 2.5rem);
  --text-xxl: clamp(2rem, 5vw, 4rem);

  /* --- LAYOUT --- */
  --dock-height-mobile: 80px;
  --dock-width-desktop: 100px;
  --max-app-width: 1600px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  user-select: none;
}

body {
  background-color: var(--void);
  color: var(--white);
  font-family: var(--font-data);
  height: 100vh;
  overflow: hidden; /* App-like feel */
  display: flex;
  flex-direction: column;
}

/* --- BACKGROUND FX --- */
.bg-stars {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(white 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: 0.1;
  z-index: -2;
}
.bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 243, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 243, 255, 0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(circle, black 40%, transparent 80%);
  z-index: -1;
}

/* --- APP SHELL --- */
.app-container {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  max-width: var(--max-app-width);
  margin: 0 auto;
  position: relative;
  border-left: 1px solid rgba(255, 255, 255, 0.02);
  border-right: 1px solid rgba(255, 255, 255, 0.02);
}

/* --- TOP BAR --- */
.top-bar {
  height: 60px;
  flex-shrink: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 max(1rem, 2vw);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--surface-glass);
  backdrop-filter: blur(10px);
  z-index: 50;
  position: relative;
}
.logo-area {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary);
  font-size: var(--text-lg);
}
.status-area {
  text-align: right;
}
.clock-display {
  font-size: var(--text-base);
}

/* --- MAIN VIEWPORT --- */
main {
  flex: 1;
  position: relative;
  overflow: hidden;
}

.view-panel {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  transition: opacity 0.3s ease;
  opacity: 0;
  pointer-events: none;
  overflow-y: auto; /* Internal Scroll */
  overflow-x: hidden;
}
.view-panel.active {
  opacity: 1;
  pointer-events: auto;
}
.view-panel.hidden {
  display: none;
}

/* Wrapper for content to allow padding for dock */
.content-wrapper {
  padding: 1rem;
  /* Mobile Safe Area + Dock Height + Extra Breathing Room */
  padding-bottom: calc(120px + env(safe-area-inset-bottom));
  max-width: 1000px;
  margin: 0 auto;
  width: 100%;
}

/* --- COMPONENTS: COMPASS --- */
.compass-module {
  width: 100%;
  height: min(40vh, 400px); /* Smart Sizing */
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin: 2rem 0;
}
.compass-container {
  aspect-ratio: 1/1;
  height: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Fixed Heading Indicator */
.heading-indicator {
  position: absolute;
  top: -15px; /* Sits just outside the ring */
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 20px solid var(--primary); /* Points DOWN */
  border-bottom: none;
  filter: drop-shadow(0 0 5px var(--primary));
  z-index: 10;
}
.compass-lens {
  width: 90%;
  height: 90%;
  border: 2px solid rgba(0, 243, 255, 0.3);
  border-radius: 50%;
  position: relative;
  box-shadow: 0 0 20px rgba(0, 243, 255, 0.1);
  transition: transform 0.1s linear;
}
.north-marker {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--danger);
  font-weight: 900;
  font-size: var(--text-lg);
}

.cardinal {
  position: absolute;
  font-weight: bold;
  color: var(--silver);
}
.cardinal.e {
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
}
.cardinal.s {
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
}
.cardinal.w {
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
}

.reticle-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 20;
}
.crosshair {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  position: absolute;
}

/* --- TARGET CONTROLS (Sun/Moon Toggle) --- */
.target-controls {
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 50;
}
.btn-pill-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(10, 10, 20, 0.8);
  color: var(--white);
  cursor: pointer;
  font-family: var(--font-head);
  font-size: 0.8rem;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}
.btn-pill-toggle.mode-moon {
  border-color: var(--primary);
  color: var(--primary);
}
.btn-pill-toggle.mode-moon i {
  color: var(--primary);
  text-shadow: 0 0 10px var(--primary);
}

.btn-pill-toggle.mode-sun {
  border-color: var(--gold);
  color: var(--gold);
}
.btn-pill-toggle.mode-sun i {
  color: var(--gold);
  text-shadow: 0 0 10px var(--gold);
}

/* --- GUIDANCE SYSTEM --- */
.guidance-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  pointer-events: none;
}

.readout-heading {
  position: static; /* Reset absolute from previous */
  margin-top: 240px; /* Push below ring manually */
  font-size: var(--text-xl);
  font-family: var(--font-mono);
  color: var(--white);
  text-shadow: 0 0 15px var(--primary);
  transition: color 0.3s;
}

.guide-hint {
  margin-top: 5px;
  font-size: var(--text-sm);
  color: var(--silver);
  opacity: 0.8;
}

.guide-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  color: var(--primary);
  opacity: 0;
  transition: opacity 0.2s;
  filter: drop-shadow(0 0 5px var(--primary));
}
.guide-arrow.left {
  left: -20px;
  animation: pulseLeft 1s infinite alternate;
}
.guide-arrow.right {
  right: -20px;
  animation: pulseRight 1s infinite alternate;
}

.guide-arrow.active {
  opacity: 1;
}

@keyframes pulseLeft {
  from {
    transform: translateY(-50%) translateX(0);
  }
  to {
    transform: translateY(-50%) translateX(-5px);
  }
}
@keyframes pulseRight {
  from {
    transform: translateY(-50%) translateX(0);
  }
  to {
    transform: translateY(-50%) translateX(5px);
  }
}

.celestial-pointer {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin-left: -10px;
  margin-top: -10px;
  display: flex;
  justify-content: center;
}
.celestial-pointer i {
  margin-top: -85px;
  font-size: 1.5rem;
  transition: color 0.3s;
}
.celestial-pointer.sun i {
  color: var(--gold);
  text-shadow: 0 0 15px var(--gold);
}

/* --- COMPONENTS: DASHBOARD GRID (SMART GRID) --- */
.dashboard-grid {
  display: grid;
  /* Auto-fit magic: As many cols as fit, min 140px, default stretch 1fr */
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
  margin-top: 3rem;
  width: 100%;
}

.data-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.full-width {
  grid-column: 1 / -1;
}
.card-header {
  margin-bottom: 0.8rem;
  font-size: var(--text-sm);
  font-weight: bold;
  font-family: var(--font-head);
  letter-spacing: 1px;
}
.data-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 4px;
  font-size: var(--text-sm);
  color: var(--silver);
}
.data-value {
  font-size: var(--text-base);
  color: var(--white);
  font-family: var(--font-mono);
}

/* Graph Config */
.graph-card {
  padding: 0;
  overflow: hidden;
  position: relative;
  min-height: 200px;
  aspect-ratio: 2/1; /* Maintain ratio */
}
canvas {
  width: 100%;
  height: 100%;
  display: block;
}
.graph-label {
  position: absolute;
  bottom: 10px;
  right: 10px;
  font-size: var(--text-xs);
  background: rgba(0, 0, 0, 0.5);
  padding: 2px 6px;
}

/* --- NAVIGATION DOCK (MOBI) --- */
.nav-dock-container {
  position: absolute;
  bottom: 2rem;
  left: 0;
  right: 0;
  height: var(--dock-height-mobile);
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
  z-index: 100;
}
.nav-dock {
  background: rgba(5, 5, 16, 0.6); /* Transparencia Alta */
  backdrop-filter: blur(20px); /* Blur Intenso */
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  padding: 0.5rem 2rem;
  display: flex;
  gap: 2rem;
  pointer-events: auto;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}
.nav-item {
  border: none;
  background: none;
  color: var(--silver);
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.nav-item i {
  font-size: 1.8rem;
  margin-bottom: 4px;
}
.nav-label {
  font-size: 0.6rem;
  letter-spacing: 1px;
  display: none;
} /* Hide labels on mobile default */
.nav-item.active {
  color: var(--primary);
  transform: translateY(-3px);
}
.nav-item.active i {
  text-shadow: 0 0 15px var(--primary);
}

/* --- MODALS --- */
/* --- MODALS PREMIUM --- */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(12px); /* High blur for depth */
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  justify-content: center;
  align-items: center;
}
.modal-box {
  background: linear-gradient(
    145deg,
    rgba(16, 16, 32, 0.95),
    rgba(5, 5, 12, 0.98)
  );
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.8),
    inset 0 0 0 1px rgba(255, 255, 255, 0.05); /* Inner stroke */
  padding: 3rem 2rem;
  border-radius: 24px;
  text-align: center;
  width: 90%;
  max-width: 380px;
  position: relative;
  overflow: hidden;
}

/* Modal Glow Effect */
.modal-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  opacity: 0.5;
}

.modal-box h2 {
  font-size: var(--text-lg);
  margin-bottom: 0.5rem;
  color: var(--white);
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}
.modal-box p {
  color: var(--silver);
  font-size: var(--text-sm);
  margin-bottom: 2rem;
  line-height: 1.5;
}

/* --- BUTTONS PREMIUM (PILL SHAPE) --- */
.btn-primary {
  background: var(--primary);
  color: #050510;
  border: none;
  outline: none;
  padding: 16px 32px;
  border-radius: 9999px; /* Pill Shape */
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 0 20px rgba(0, 243, 255, 0.3);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  width: 100%;
  position: relative;
  overflow: hidden;
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 10px 30px rgba(0, 243, 255, 0.5);
}
.btn-primary:active {
  transform: scale(0.98);
}

/* Shine Effect on Hover */
.btn-primary::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -100%;
  width: 50%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transform: skewX(-20deg);
  transition: left 0.5s;
}
.btn-primary:hover::after {
  left: 200%;
}

.btn-gold {
  background: var(--gold);
  color: #050510;
  border: none;
  padding: 16px 32px;
  border-radius: 9999px;
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: 1px;
  cursor: pointer;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
  transition: all 0.3s ease;
  width: 100%;
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.5);
}

/* --- UTILS --- */
.text-primary {
  color: var(--primary);
}
.text-accent {
  color: var(--accent);
}
.text-gold {
  color: var(--gold);
}
.text-warn {
  color: var(--gold);
}
.font-mono {
  font-family: var(--font-mono);
}
.hidden {
  display: none !important;
}

/* =========================================
   DESKTOP / LARGE SCREEN ADAPTATION
   ========================================= */
@media (min-width: 1024px) {
  /* RESET BODY FLEX (We handle layout in app-container) */
  body {
    flex-direction: column;
  }

  /* --- APP SHELL GRID --- */
  .app-container {
    display: grid;
    grid-template-areas:
      "nav header"
      "nav main";
    grid-template-columns: var(--dock-width-desktop) 1fr;
    grid-template-rows: 60px 1fr;
    width: 100%;
    height: 100vh;
    max-width: 100%; /* Full width on desktop, inner content limited */
  }

  /* Assign Local Areas */
  .nav-dock-container {
    grid-area: nav;
  }
  .top-bar {
    grid-area: header;
  }
  main {
    grid-area: main;
  }

  /* --- SIDE RAIL NAV --- */
  .nav-dock-container {
    position: static;
    width: 100%; /* Fill grid cell */
    height: 100%;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 80px;
    background: rgba(0, 0, 0, 0.2);
    border-right: 1px solid rgba(255, 255, 255, 0.05);
  }
  .nav-dock {
    flex-direction: column;
    background: none;
    border: none;
    box-shadow: none;
    backdrop-filter: none;
    gap: 3rem;
    padding: 0;
    width: 100%;
    border-radius: 0;
  }
  .nav-item {
    width: 100%;
    position: relative;
    padding: 10px 0;
  }
  .nav-item::after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--primary);
    opacity: 0;
    transition: opacity 0.3s;
  }
  .nav-item.active::after {
    opacity: 1;
  }
  .nav-item.active {
    transform: none;
  }

  /* Hover Labels */
  .nav-item .nav-label {
    display: block;
    position: absolute;
    left: 80px;
    top: 50%;
    transform: translateY(-50%) translateX(-10px);
    background: var(--surface);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 6px 12px;
    border-radius: 4px;
    opacity: 0;
    pointer-events: none;
    transition: all 0.2s;
    z-index: 101;
  }
  .nav-item:hover .nav-label {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
  }

  /* --- CONTENT GRID --- */
  main {
    display: block; /* Reset */
    position: relative;
  }

  .view-panel {
    overflow: hidden;
  }

  .content-wrapper {
    display: grid;
    grid-template-areas:
      "compass moon graph"
      "compass sun  graph";
    grid-template-columns: 320px 280px 1fr; /* Compass Fixed | Data Fixed | Graph Fluid */
    grid-template-rows: auto auto;
    height: 100%;
    max-width: 1400px; /* Limit inner content width */
    margin: 0 auto;
    padding: 2rem;
    gap: 2rem;
    align-content: center;
    justify-content: center;
  }

  .compass-module {
    grid-area: compass;
    height: 100%;
    width: 100%;
    justify-content: center;
  }
  .compass-container {
    width: 100%;
    max-width: 380px;
    height: auto;
    aspect-ratio: 1/1;
  }
  .readout-heading {
    bottom: -3rem;
  }

  .dashboard-grid {
    display: contents;
  }

  .data-card:nth-of-type(1) {
    grid-area: moon;
    align-self: end;
  }
  .data-card:nth-of-type(2) {
    grid-area: sun;
    align-self: start;
    margin-top: 1rem;
  }

  /* Fix for Graph Card being inside dashboard */
  .data-card:nth-of-type(3) {
    grid-area: graph;
    width: 100%;
    height: 100%;
    max-height: 400px;
    align-self: center;
  }
}

/* --- UTILS --- */
.text-primary {
  color: var(--primary);
}
.text-accent {
  color: var(--accent);
}
.text-gold {
  color: var(--gold);
}
.text-warn {
  color: var(--gold);
}
.font-mono {
  font-family: var(--font-mono);
}
.hidden {
  display: none !important;
}

/* =========================================
   DESKTOP / LARGE SCREEN ADAPTATION
   ========================================= */
/* =========================================
   DESKTOP / LARGE SCREEN ADAPTATION
   ========================================= */
@media (min-width: 1024px) {
  /* RESET BODY FLEX (We handle layout in app-container) */
  body {
    flex-direction: column;
  }

  /* --- APP SHELL GRID --- */
  .app-container {
    display: grid;
    grid-template-areas:
      "nav header"
      "nav main";
    grid-template-columns: var(--dock-width-desktop) 1fr;
    grid-template-rows: 60px 1fr;
    width: 100%;
    height: 100vh;
    max-width: 100%; /* Full width on desktop, inner content limited */
  }

  /* Assign Local Areas */
  .nav-dock-container {
    grid-area: nav;
  }
  .top-bar {
    grid-area: header;
  }
  main {
    grid-area: main;
  }

  /* --- SIDE RAIL NAV --- */
  .nav-dock-container {
    position: static;
    width: 100%; /* Fill grid cell */
    height: 100%;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 80px;
    background: rgba(0, 0, 0, 0.2);
    border-right: 1px solid rgba(255, 255, 255, 0.05);
  }
  .nav-dock {
    flex-direction: column;
    background: none;
    border: none;
    box-shadow: none;
    backdrop-filter: none;
    gap: 3rem;
    padding: 0;
    width: 100%;
    border-radius: 0;
  }
  .nav-item {
    width: 100%;
    position: relative;
    padding: 10px 0;
  }
  .nav-item::after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--primary);
    opacity: 0;
    transition: opacity 0.3s;
  }
  .nav-item.active::after {
    opacity: 1;
  }
  .nav-item.active {
    transform: none;
  }

  /* Hover Labels */
  .nav-item .nav-label {
    display: block;
    position: absolute;
    left: 80px;
    top: 50%;
    transform: translateY(-50%) translateX(-10px);
    background: var(--surface);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 6px 12px;
    border-radius: 4px;
    opacity: 0;
    pointer-events: none;
    transition: all 0.2s;
    z-index: 101;
  }
  .nav-item:hover .nav-label {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
  }

  /* --- CONTENT GRID --- */
  main {
    display: block; /* Reset */
    position: relative;
  }

  .view-panel {
    overflow: hidden;
  }

  .content-wrapper {
    display: grid;
    grid-template-areas:
      "compass moon graph"
      "compass sun  graph";
    grid-template-columns: 320px 280px 1fr; /* Compass Fixed | Data Fixed | Graph Fluid */
    grid-template-rows: auto auto;
    height: 100%;
    max-width: 1400px; /* Limit inner content width */
    margin: 0 auto;
    padding: 2rem;
    gap: 2rem;
    align-content: center;
    justify-content: center;
  }

  .compass-module {
    grid-area: compass;
    height: 100%;
    width: 100%;
    justify-content: center;
  }
  .compass-container {
    width: 100%;
    max-width: 380px;
    height: auto;
    aspect-ratio: 1/1;
  }
  .readout-heading {
    bottom: -3rem;
  }

  .dashboard-grid {
    display: contents;
  }

  .data-card:nth-of-type(1) {
    grid-area: moon;
    align-self: end;
  }
  .data-card:nth-of-type(2) {
    grid-area: sun;
    align-self: start;
    margin-top: 1rem;
  }

  /* Fix for Graph Card being inside dashboard */
  .data-card:nth-of-type(3) {
    grid-area: graph;
    width: 100%;
    height: 100%;
    max-height: 400px;
    align-self: center;
  }
}

/* =========================================
   DESKTOP INTERCEPTION OVERLAY
   ========================================= */
.overlay-container {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(2, 2, 5, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  justify-content: center;
  align-items: center;
  transition:
    opacity 0.5s ease-out,
    visibility 0.5s;
}

.lock-screen {
  max-width: 400px;
  width: 90%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.orbitron {
  font-family: var(--font-head);
}
.custom-kerning {
  letter-spacing: 0.2rem;
}
.tracking-widest {
  letter-spacing: 0.1em;
}

.text-silver {
  color: var(--silver);
}
.btn-text-subtle {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--silver);
  padding: 8px 16px;
  font-family: var(--font-data);
  font-size: 0.75rem;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.3s;
  margin-top: 1rem;
}
.btn-text-subtle:hover {
  border-color: var(--primary);
  color: var(--primary);
}

/* QR Frame (Premium) */
.qr-frame {
  position: relative;
  padding: 1rem;
  background: rgba(10, 10, 22, 0.95); /* Deep dark background */
  border: 1px solid rgba(0, 243, 255, 0.3);
  border-radius: 16px;
  box-shadow: 0 0 30px rgba(0, 243, 255, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 260px;
  height: 260px;
  margin-bottom: 2rem;
  overflow: hidden;
}

/* Layer 1: The Code */
.qr-image {
  width: 220px;
  height: 220px;
  display: block;
  image-rendering: pixelated; /* Crisp edges */
  z-index: 1;
}

/* Layer 2: The Logo (Center) */
.qr-logo-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  background-color: #050510; /* Matches void background */
  border: 2px solid var(--primary);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
  box-shadow: 0 0 15px rgba(0, 243, 255, 0.4);
}
.qr-logo-overlay i {
  font-size: 1.8rem;
  color: var(--primary);
  filter: drop-shadow(0 0 5px var(--primary));
}

/* Layer 3: Laser Effect */
.scan-line {
  position: absolute;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  box-shadow: 0 0 15px var(--primary);
  top: 0;
  left: 0;
  animation: scanMove 2.5s infinite ease-in-out;
  z-index: 5;
  opacity: 0.8;
}

@keyframes scanMove {
  0% {
    top: 0;
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    top: 100%;
    opacity: 0;
  }
}

/* --- SPA SECTIONS --- */
.page-section {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 10;
  transition: opacity 0.5s ease-in-out;
}
.page-section.hidden {
  display: none;
  opacity: 0;
  pointer-events: none;
}
.page-section.active {
  opacity: 1;
  pointer-events: auto;
}

/* Center Content Utility */
.center-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* --- ANIMATIONS --- */
.fade-in {
  animation: fadeIn 0.5s forwards;
}
.fade-out {
  animation: fadeOut 0.5s forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

.animate-float {
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0px);
  }
}

.animate-pulse-slow {
  animation: pulseSlow 3s infinite;
}
@keyframes pulseSlow {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.7;
    transform: scale(0.95);
  }
}

.scale-on-hover:hover {
  transform: scale(1.05);
}

/* --- GLASS PANELS & INPUTS --- */
.glass-panel {
  background: rgba(10, 10, 22, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.input-neon {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
  padding: 12px 16px;
  border-radius: 8px;
  font-family: var(--font-data);
  font-size: 1rem;
  outline: none;
  transition: all 0.3s;
}
.input-neon:focus {
  border-color: var(--primary);
  box-shadow: 0 0 10px rgba(0, 243, 255, 0.3);
}

.permissions-list {
  background: rgba(255, 255, 255, 0.03);
}

.bg-space-deep {
  background: radial-gradient(circle at center, #1a1a2e 0%, #050510 100%);
}

.hover-glow:hover {
  box-shadow: 0 0 25px var(--primary);
}

/* --- HIGH-END SCI-FI LANDING STYLES --- */

/* 0. ATMOSPHERE */
.stars-layer-1,
.stars-layer-2 {
  position: absolute;
  inset: 0;
  transition: opacity 2s ease-in-out;
}
.stars-layer-1 {
  background-image:
    radial-gradient(1px 1px at 25px 5px, white, transparent),
    radial-gradient(1px 1px at 50px 25px, white, transparent),
    radial-gradient(
      1px 1px at 125px 20px,
      rgba(255, 255, 255, 0.5),
      transparent
    ),
    radial-gradient(1.5px 1.5px at 250px 80px, white, transparent);
  background-size: 350px 350px;
  opacity: 0.6;
  animation: starMove 100s linear infinite;
}
.stars-layer-2 {
  background-image:
    radial-gradient(
      1px 1px at 10px 10px,
      rgba(255, 255, 255, 0.8),
      transparent
    ),
    radial-gradient(
      1px 1px at 150px 150px,
      rgba(255, 255, 255, 0.6),
      transparent
    );
  background-size: 200px 200px;
  opacity: 0.4;
  animation: starMove 150s linear infinite;
}
.nebula-glow {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: radial-gradient(
    circle at 50% 120%,
    rgba(0, 243, 255, 0.15) 0%,
    transparent 60%
  );
  filter: blur(80px);
  z-index: -1;
}

@keyframes starMove {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-1000px);
  }
}

/* 1. HOLOGRAPHIC ORB */
.orb-container {
  width: 200px;
  height: 200px;
  perspective: 1000px;
}
.moon-sphere {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(
    circle at 30% 30%,
    rgba(255, 255, 255, 0.9),
    rgba(200, 230, 255, 0.4) 10%,
    #001020 70%
  );
  box-shadow:
    inset -10px -10px 30px rgba(0, 0, 0, 0.8),
    0 0 30px rgba(0, 243, 255, 0.3),
    0 0 60px rgba(0, 243, 255, 0.1);
  position: relative;
  z-index: 5;
}
.orbital-ring {
  position: absolute;
  width: 220px;
  height: 220px;
  border: 1px solid rgba(0, 243, 255, 0.3);
  border-top-color: transparent;
  border-radius: 50%;
  transform: rotateX(75deg);
  animation: spinSlow 10s linear infinite;
}
.orbital-ring-2 {
  position: absolute;
  width: 180px;
  height: 180px;
  border: 1px dashed rgba(157, 0, 255, 0.3);
  border-radius: 50%;
  transform: rotateX(75deg) rotateY(20deg);
  animation: spinReverse 15s linear infinite;
}

@keyframes spinSlow {
  from {
    transform: rotateX(75deg) rotateZ(0deg);
  }
  to {
    transform: rotateX(75deg) rotateZ(360deg);
  }
}
@keyframes spinReverse {
  from {
    transform: rotateX(75deg) rotateY(20deg) rotateZ(0deg);
  }
  to {
    transform: rotateX(75deg) rotateY(20deg) rotateZ(-360deg);
  }
}
.animate-float-slow {
  animation: floatOrb 6s ease-in-out infinite;
}
@keyframes floatOrb {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

/* 2. GLITCH TITLE */
.drop-shadow-neon {
  filter: drop-shadow(0 0 10px rgba(0, 243, 255, 0.8));
}

/* 3. DETONATOR BUTTON */
.btn-detonator {
  background: transparent;
  padding: 1.5rem 4rem;
  color: var(--primary);
  text-transform: uppercase;
  font-size: 1.2rem;
  border: none;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn-detonator:hover .scanline {
  animation: scanLine 1s linear infinite;
}
.btn-detonator:hover {
  color: #fff;
  text-shadow: 0 0 10px var(--primary);
  transform: scale(1.05);
}
.scanline {
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 243, 255, 0.4),
    transparent
  );
  transform: skewX(-20deg);
}
@keyframes scanLine {
  from {
    left: -100%;
  }
  to {
    left: 200%;
  }
}

/* 4. HOLO CARDS */
.holo-card {
  position: relative;
  background: rgba(5, 10, 20, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  transition: all 0.4s ease;
  overflow: hidden;
}
.holo-card:hover {
  transform: translateY(-10px);
  border-color: rgba(0, 243, 255, 0.4);
  box-shadow: 0 10px 40px rgba(0, 243, 255, 0.15);
}
.holo-border {
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: 12px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.1),
    transparent 40%
  );
  opacity: 0.5;
}
.holo-card:hover .holo-border {
  background: linear-gradient(180deg, rgba(0, 243, 255, 0.2), transparent 50%);
  opacity: 1;
}

/* 3D MOON DASHBOARD */
.moon-card {
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

/* FIX: LANDING MOON CONTAINER */
#landing-moon-container {
  width: 100%;
  height: 400px; /* Explicit height is crucial for Canvas */
  max-width: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 10;
}
@media (max-width: 640px) {
  #landing-moon-container {
    height: 300px;
  }
}
.moon-3d-visual {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 200px;
  z-index: 1;
  pointer-events: auto; /* Allow interaction */
}

/* UTILS TAILWIND-ALIKE */
.text-xxs {
  font-size: 0.65rem;
}
.bg-cyan-500\/20 {
  background-color: rgba(6, 182, 212, 0.2);
}
.from-cyan-400 {
  --tw-gradient-from: #22d3ee;
}
.via-white {
  --tw-gradient-via: #ffffff;
}
.to-purple-500 {
  --tw-gradient-to: #a855f7;
}

/* FIX HERO TEXT SIZE ON MOBILE */
@media (max-width: 640px) {
  .text-hero {
    font-size: 3rem;
  }
  .orb-container {
    width: 150px;
    height: 150px;
  }
  .moon-sphere {
    width: 100px;
    height: 100px;
  }
  .orbital-ring {
    width: 160px;
    height: 160px;
  }
}

.drop-shadow-glow {
  filter: drop-shadow(0 0 40px rgba(0, 243, 255, 0.5));
}

.glass-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
}

.btn-large {
  padding: 1.2rem 3rem;
  font-size: 1.1rem;
  letter-spacing: 3px;
  border: 1px solid rgba(0, 243, 255, 0.5);
}

/* Animations */
.animate-fade-up {
  animation: fadeUp 0.8s ease-out forwards;
  opacity: 0;
  transform: translateY(30px);
}

.delay-200 {
  animation-delay: 0.2s;
}
.delay-400 {
  animation-delay: 0.4s;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Tailwind Utilities Emulation (Since we are using Vanilla CSS mostly but used some classes in HTML) */
.w-full {
  width: 100%;
}
.max-w-4xl {
  max-width: 56rem;
}
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}
.flex {
  display: flex;
}
.flex-col {
  flex-direction: column;
}
.items-center {
  align-items: center;
}
.justify-center {
  justify-content: center;
}
.text-center {
  text-align: center;
}
.mb-16 {
  margin-bottom: 4rem;
}
.mb-8 {
  margin-bottom: 2rem;
}
.mb-2 {
  margin-bottom: 0.5rem;
}
.mb-4 {
  margin-bottom: 1rem;
}
.gap-6 {
  gap: 1.5rem;
}
.gap-3 {
  gap: 0.75rem;
}
.gap-8 {
  gap: 2rem;
}
.p-6 {
  padding: 1.5rem;
}
.py-12 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.rounded-2xl {
  border-radius: 1rem;
}
.grid {
  display: grid;
}
.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
.text-9xl {
  font-size: 8rem;
}
.text-4xl {
  font-size: 2.25rem;
}
.text-lg {
  font-size: 1.125rem;
}
.text-xl {
  font-size: 1.25rem;
}
.font-black {
  font-weight: 900;
}
.font-light {
  font-weight: 300;
}
.tracking-widest {
  letter-spacing: 0.1em;
}
.tracking-wider {
  letter-spacing: 0.05em;
}
.relative {
  position: relative;
}
.absolute {
  position: absolute;
}
.inset-0 {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.z-10 {
  z-index: 10;
}
.blur-3xl {
  filter: blur(64px);
}
.opacity-30 {
  opacity: 0.3;
}
.bg-clip-text {
  -webkit-background-clip: text;
  background-clip: text;
}
.text-transparent {
  color: transparent;
}
.bg-gradient-to-r {
  background-image: linear-gradient(
    to right,
    var(--tw-gradient-from),
    var(--tw-gradient-to)
  );
}
.from-primary {
  --tw-gradient-from: var(--primary);
  --tw-gradient-to: rgba(0, 243, 255, 0);
}
.to-accent {
  --tw-gradient-to: var(--accent);
}
.border-t {
  border-top-width: 1px;
}
.border-white\/10 {
  border-color: rgba(255, 255, 255, 0.1);
}
.hover\:border-primary\/50:hover {
  border-color: rgba(0, 243, 255, 0.5);
}
.transition-colors {
  transition-property: background-color, border-color, color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.text-white {
  color: white;
}

/* =========================================
   LANDING PAGE REDESIGN SECTIONS
   ========================================= */

/* UTILITIES EXTENSION */
.min-h-screen {
  min-height: 100vh;
}
.pt-20 {
  padding-top: 5rem;
}
.pb-12 {
  padding-bottom: 3rem;
}
.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.py-24 {
  padding-top: 6rem;
  padding-bottom: 6rem;
}
.w-24 {
  width: 6rem;
}
.h-24 {
  height: 6rem;
}
.h-1 {
  height: 0.25rem;
}
.rounded-full {
  border-radius: 9999px;
}
.rounded-xl {
  border-radius: 0.75rem;
}
.rounded-bl-xl {
  border-bottom-left-radius: 0.75rem;
}
.shadow-lg {
  box-shadow:
    0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
.backdrop-blur-sm {
  backdrop-filter: blur(4px);
}
.backdrop-blur-md {
  backdrop-filter: blur(12px);
}
.backdrop-blur-xl {
  backdrop-filter: blur(24px);
}
.bg-black\/20 {
  background-color: rgba(0, 0, 0, 0.2);
}
.bg-black\/40 {
  background-color: rgba(0, 0, 0, 0.4);
}
.bg-black\/80 {
  background-color: rgba(0, 0, 0, 0.8);
}
.bg-white\/5 {
  background-color: rgba(255, 255, 255, 0.05);
}
.border-y {
  border-top-width: 1px;
  border-bottom-width: 1px;
}

/* Grid & Layout */
.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
.max-w-6xl {
  max-width: 72rem;
}
.max-w-5xl {
  max-width: 64rem;
}
@media (min-width: 768px) {
  .md\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .md\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .md\:text-7xl {
    font-size: 4.5rem;
  }
  .md\:text-4xl {
    font-size: 2.25rem;
  }
  .md\:text-2xl {
    font-size: 1.5rem;
  }
  .md\:flex-row {
    flex-direction: row;
  }
  .md\:text-left {
    text-align: left;
  }
  .md\:h-\[60vh\] {
    height: 60vh;
  }
}

/* Colors & Gradients */
.text-cyan-400 {
  color: #22d3ee;
}
.text-cyan-500 {
  color: #06b6d4;
}
.text-purple-400 {
  color: #c084fc;
}
.text-purple-500 {
  color: #a855f7;
}
.text-emerald-400 {
  color: #34d399;
}
.text-emerald-500 {
  color: #10b981;
}
.text-amber-400 {
  color: #fbbf24;
}
.text-amber-500 {
  color: #f59e0b;
}
.text-amber-200\/60 {
  color: rgba(253, 230, 138, 0.6);
}
.border-cyan-500\/30 {
  border-color: rgba(6, 182, 212, 0.3);
}
.border-cyan-500\/50 {
  border-color: rgba(6, 182, 212, 0.5);
}
.border-amber-500\/50 {
  border-color: rgba(245, 158, 11, 0.5);
}
.bg-cyan-900 {
  background-color: #164e63;
}
.bg-cyan-900\/20 {
  background-color: rgba(22, 78, 99, 0.2);
}
.bg-purple-900\/20 {
  background-color: rgba(88, 28, 135, 0.2);
}
.bg-emerald-900\/20 {
  background-color: rgba(6, 78, 59, 0.2);
}
.from-amber-500 {
  --tw-gradient-from: #f59e0b;
}
.from-amber-600 {
  --tw-gradient-from: #d97706;
}
.to-yellow-500 {
  --tw-gradient-to: #eab308;
}
.to-yellow-600 {
  --tw-gradient-to: #ca8a04;
}
.bg-gradient-to-b {
  background-image: linear-gradient(
    to bottom,
    var(--tw-gradient-from),
    var(--tw-gradient-to)
  );
}
.bg-gradient-to-bl {
  background-image: linear-gradient(
    to bottom left,
    var(--tw-gradient-from),
    var(--tw-gradient-to)
  );
}

/* Custom Components */

.bg-surface-glass {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
}

.feature-card {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.group:hover .group-hover\:scale-110 {
  transform: scale(1.1);
}
.hover\:-translate-y-2:hover {
  transform: translateY(-0.5rem);
}

.step-item::after {
  content: "";
  position: absolute;
  top: 3rem; /* Center of circle approx */
  right: -50%;
  width: 100%;
  height: 2px;
  background: rgba(6, 182, 212, 0.3);
  z-index: -1;
  display: none;
}
@media (min-width: 768px) {
  .step-item:not(:last-child)::after {
    display: block;
  }
}

.pricing-card {
  transition: transform 0.3s ease;
}
.pricing-card.gold {
  box-shadow: 0 0 50px rgba(245, 158, 11, 0.15);
}
.text-gold {
  color: var(--gold);
}

.no-scrollbar::-webkit-scrollbar {
  display: none;
}
.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.landing-scroll-container {
  scroll-behavior: smooth;
  height: 100vh;
  overflow-y: scroll;
}

@media (min-width: 768px) {
  .md\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .md\:text-xl {
    font-size: 1.25rem;
  }
}

/* MISSING UTILITIES EMULATION - PART 2 */
.text-gray-300 {
  color: #d1d5db;
}
.text-gray-400 {
  color: #9ca3af;
}
.text-gray-500 {
  color: #6b7280;
}
.text-3xl {
  font-size: 1.875rem;
  line-height: 2.25rem;
}
.text-2xl {
  font-size: 1.5rem;
  line-height: 2rem;
}
.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.text-xs {
  font-size: 0.75rem;
  line-height: 1rem;
}
.scale-105 {
  transform: scale(1.05);
}
.drop-shadow-md {
  filter: drop-shadow(0 4px 3px rgba(0, 0, 0, 0.07))
    drop-shadow(0 2px 2px rgba(0, 0, 0, 0.06));
}
.border-white\/20 {
  border-color: rgba(255, 255, 255, 0.2);
}
.hover\:bg-white\/5:hover {
  background-color: rgba(255, 255, 255, 0.05);
}
.shadow-amber-900\/40 {
  box-shadow: 0 0 15px rgba(120, 53, 15, 0.4);
}
.group:hover .group-hover\:opacity-100 {
  opacity: 1;
}
.transition-opacity {
  transition-property: opacity;
  transition-duration: 300ms;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.duration-300 {
  transition-duration: 300ms;
}
.opacity-0 {
  opacity: 0;
}
.opacity-80 {
  opacity: 0.8;
}
.opacity-60 {
  opacity: 0.6;
}
.leading-none {
  line-height: 1;
}
.leading-relaxed {
  line-height: 1.625;
}
.tracking-\[0\.2em\] {
  letter-spacing: 0.2em;
}
.tracking-\[0\.1em\] {
  letter-spacing: 0.1em;
}
.cursor-grab {
  cursor: grab;
}
.active\:cursor-grabbing:active {
  cursor: grabbing;
}
.inline-flex {
  display: inline-flex;
}
.pointer-events-none {
  pointer-events: none;
}
.fixed {
  position: fixed;
}
.scroll-smooth {
  scroll-behavior: smooth;
}
.overflow-y-auto {
  overflow-y: auto;
}
.overflow-x-hidden {
  overflow-x: hidden;
}

/* =========================================
   VISUAL REFINEMENT (PREMIUM POLISH)
   ========================================= */

/* 1. HERO MOON SCALE FIX */
#hero-moon-canvas {
  max-width: 500px;
  height: 40vh !important; /* Force height constraint */
  margin: 0 auto 2rem auto;
}
@media (max-width: 768px) {
  #hero-moon-canvas {
    height: 35vh !important;
    max-width: 100%;
  }
}

/* 2. HUD MODULE (Glass Card for Auth/Login) */
.hud-module {
  background: rgba(10, 10, 22, 0.6);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08); /* Subtle border */
  border-radius: 20px;
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.6),
    inset 0 0 0 1px rgba(255, 255, 255, 0.05);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.hud-module:hover {
  box-shadow:
    0 25px 50px rgba(0, 0, 0, 0.7),
    inset 0 0 0 1px rgba(0, 243, 255, 0.1); /* Subtle glow on hover */
}

/* 3. INPUT DEEP (Premium Inputs) */
.input-deep {
  background: rgba(5, 5, 10, 0.8) !important; /* Extremely dark */
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  color: var(--white) !important;
  font-family: var(--font-mono);
  padding: 1rem 1.25rem;
  border-radius: 8px;
  outline: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.input-deep:focus {
  border-color: var(--primary) !important;
  box-shadow: 0 0 15px rgba(0, 243, 255, 0.2);
  background: rgba(10, 10, 22, 0.9) !important;
}

/* 4. BUTTON CTA STANDARDIZATION */
.btn-cta {
  background: transparent;
  border: 1px solid var(--primary);
  color: var(--primary);
  font-family: var(--font-head); /* Orbitron */
  font-weight: 700;
  letter-spacing: 0.2em;
  padding: 1rem 2.5rem;
  border-radius: 4px; /* Slightly squared for sci-fi feel */
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 0 10px rgba(0, 243, 255, 0.1);
}

.btn-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  z-index: -1;
}

.btn-cta:hover {
  color: #050510; /* Dark text on filled btn */
  box-shadow: 0 0 20px rgba(0, 243, 255, 0.4);
  border-color: var(--primary);
}

.btn-cta:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

/* 5. FOOTER SPACING */
.footer-simple {
  margin-top: 4rem; /* More breath */
}

/* 6. ANIMATIONS */
@keyframes spinSlow {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes spinSlowReverse {
  from {
    transform: rotate(360deg);
  }
  to {
    transform: rotate(0deg);
  }
}
.animate-spin-slow {
  animation: spinSlow 12s linear infinite;
}
.animate-spin-slow-reverse {
  animation: spinSlowReverse 18s linear infinite;
}

/* =========================================
   ULTRA-PREMIUM SECTIONS (ARSENAL & PROTOCOL)
   ========================================= */

/* 1. ARSENAL TACTICO (Features Grid) */
.landing-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}
@media (min-width: 1024px) {
  .landing-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-card {
  background: rgba(5, 5, 10, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.feature-card:hover {
  transform: translateY(-10px);
  border-color: rgba(0, 243, 255, 0.5);
  box-shadow: 0 0 30px rgba(0, 243, 255, 0.1);
}

/* 2. PROTOCOLO DE USO (Timeline) */
.protocol-container {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .protocol-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }

  /* Connector Line (Desktop) */
  .protocol-container::before {
    content: "";
    position: absolute;
    top: 30px; /* Center of indicator */
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(
      90deg,
      transparent 0%,
      rgba(217, 70, 239, 0.3) 20%,
      rgba(217, 70, 239, 0.3) 80%,
      transparent 100%
    );
    z-index: 0;
  }
}

.protocol-step {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
}

.step-indicator {
  width: 60px;
  height: 60px;
  border: 2px solid #d946ef; /* Purple Neon */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Orbitron", sans-serif;
  font-weight: bold;
  font-size: 1.5rem;
  color: #fff;
  box-shadow: 0 0 15px rgba(217, 70, 239, 0.4);
  background: #000; /* Mask connector line */
  margin-bottom: 1.5rem;
  position: relative;
  transition: all 0.3s ease;
}

/* =========================================
   ULTRA-PREMIUM PRICING & FOOTER (SCI-FI)
   ========================================= */

/* 3. NIVELES DE ACCESO (Pricing) */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem; /* Tighter gap on mobile */
}
@media (min-width: 768px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
    align-items: stretch; /* Stretch to same height */
    gap: 3rem;
  }
}

/* FREE TIER (Cold Glass) */
.card-tier-free {
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 3rem 2rem;
  position: relative;
  clip-path: polygon(0 0, 100% 0, 100% 90%, 90% 100%, 0 100%);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.card-tier-free:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.15);
}

/* PRO TIER (Obsidian & Gold - POLISHED) */
.card-tier-pro {
  background: radial-gradient(120% 120% at 50% 0%, #1a1005 0%, #050505 100%);
  border: 1px solid transparent; /* Prepare for gradient border */
  border-image: linear-gradient(to bottom, #fbbf24, #92400e) 1;
  padding: 3.5rem 2.5rem;
  position: relative;
  box-shadow:
    0 0 60px rgba(251, 191, 36, 0.1),
    inset 0 0 0 1px rgba(251, 191, 36, 0.1);
  transform: scale(1.02);
  z-index: 10;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 15% 100%, 0 92%);
  display: flex;
  flex-direction: column;
  animation: pulseGlow 4s infinite alternate;
}

@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 60px rgba(251, 191, 36, 0.1);
  }
  100% {
    box-shadow: 0 0 80px rgba(251, 191, 36, 0.2);
  }
}

/* Gold Badge */
.badge-gold-tech {
  position: absolute;
  top: -1px; /* Align with border */
  right: -1px;
  background: linear-gradient(135deg, #fbbf24 0%, #d97706 100%);
  color: black;
  font-weight: 800;
  font-family: "Orbitron", sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  padding: 0.35rem 1.2rem;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 15% 100%);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  z-index: 20;
}

/* Feature Lists - ALIGNMENT FIX */
.feature-list-tech {
  list-style: none;
  padding: 0;
  margin: 2.5rem 0;
  flex-grow: 1; /* Push button down */
}

.feature-list-tech li {
  display: flex;
  align-items: flex-start; /* Align icon with top of multi-line text */
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-family: "Rajdhani", sans-serif;
  font-size: 0.95rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.6);
}

.feature-list-tech li i {
  flex-shrink: 0; /* Prevent icon shrinking */
  width: 1.25rem; /* Fixed width for alignment */
  text-align: center;
  margin-top: 0.1rem; /* Optical adjustment */
  font-size: 1.1rem;
}

.card-tier-pro .feature-list-tech li {
  color: rgba(255, 255, 255, 0.85); /* Brighter text for Pro */
  border-bottom-color: rgba(251, 191, 36, 0.1);
}

.card-tier-pro .feature-list-tech li:last-child {
  border-bottom: none;
}

/* CTA Pro Button */
.btn-gold-tech {
  width: 100%;
  padding: 1.2rem;
  background: linear-gradient(90deg, #f59e0b, #daa520);
  color: black;
  font-weight: 900;
  font-family: "Orbitron", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  border: none;
  clip-path: polygon(15px 0, 100% 0, 100% 100%, 0 100%, 0 15px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  font-size: 0.85rem;
}

.btn-gold-tech::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transition: 0.5s;
}

.btn-gold-tech:hover::before {
  left: 100%;
}

.btn-gold-tech:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 25px rgba(251, 191, 36, 0.4);
}

/* CTA Glass Tech Button (Free Tier) */
.btn-glass-tech {
  width: 100%;
  padding: 1.2rem;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  font-weight: 700;
  font-family: "Orbitron", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  clip-path: polygon(0 0, 100% 0, 100% 85%, 95% 100%, 0 100%);
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  font-size: 0.75rem;
}

.btn-glass-tech:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(6, 182, 212, 0.5); /* Cyan border on hover */
  color: #06b6d4; /* Cyan text */
  box-shadow: 0 0 15px rgba(6, 182, 212, 0.1);
}

/* 4. FOOTER TECHNICAL (COMMAND CENTER) */
.footer-premium {
  margin-top: 10rem;
  background: radial-gradient(circle at top, #0a0a0f, #000000);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  padding-top: 0;
  overflow: hidden;
}

/* Tech Ruler Top */
.footer-ruler {
  height: 24px;
  width: 100%;
  background-image: repeating-linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.15) 0px,
    rgba(255, 255, 255, 0.15) 1px,
    transparent 1px,
    transparent 20px
  );
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  opacity: 0.6;
}

.footer-ruler::after {
  content: "0 1 0 2 0 3 0 4 0 5 0 6";
  position: absolute;
  top: 6px;
  left: 10px;
  font-family: "Rajdhani", monospace;
  font-size: 10px;
  letter-spacing: 18px;
  color: rgba(255, 255, 255, 0.2);
}

/* Grid Layout */
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 5rem 2rem;
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  }
}

/* Columns */
.footer-col h4 {
  color: #fff;
  font-family: "Orbitron", sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.footer-col h4::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 30px;
  height: 2px;
  background: #fbbf24; /* Gold Tech Accent */
}

.footer-links {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-family: "Rajdhani", sans-serif;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-links a::before {
  content: "›";
  opacity: 0;
  transform: translateX(-5px);
  transition: all 0.3s ease;
  color: #06b6d4;
}

.footer-links a:hover {
  color: #fff;
  padding-left: 5px;
}

.footer-links a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

/* Social Hexagon Pressed */
.social-hex {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
  transition: all 0.3s ease;
  color: rgba(255, 255, 255, 0.6);
}

.social-hex:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fbbf24;
  transform: scale(1.1);
}

/* 5. PREMIUM INPUT (COMMAND CENTER) */
.input-group-tech {
  position: relative;
  width: 100%;
  margin-top: 1rem;
}

.input-tech {
  width: 100%;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 4px; /* Slight rounded corners */
  padding: 1rem 3.5rem 1rem 1.5rem; /* Space for button */
  font-family: "Rajdhani", monospace;
  font-size: 0.9rem;
  color: #fff;
  transition: all 0.3s ease;
  clip-path: polygon(0 0, 100% 0, 100% 85%, 95% 100%, 0 100%); /* Tech cut */
}

.input-tech:focus {
  outline: none;
  border-color: #fbbf24;
  background: rgba(0, 0, 0, 0.9);
  box-shadow: 0 0 15px rgba(251, 191, 36, 0.15);
}

.input-tech::placeholder {
  color: rgba(255, 255, 255, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.btn-submit-tech {
  position: absolute;
  top: 50%;
  right: 5px;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  color: #fbbf24;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  /* Tech hexagon shape background on hover */
  background: linear-gradient(
    135deg,
    rgba(251, 191, 36, 0),
    rgba(251, 191, 36, 0)
  );
}

.btn-submit-tech:hover {
  color: #fff;
  text-shadow: 0 0 8px #fbbf24;
  transform: translateY(-50%) scale(1.1);
}

.btn-submit-tech i {
  font-size: 1.2rem;
}

/* Bottom Bar */
.footer-bottom {
  background: #000;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem 2rem;
  font-family: "Rajdhani", monospace;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: center; /* CENTERED */
    gap: 4rem; /* Spacing between centered items */
  }
}

/* =========================================
   SECURE AUTH PORTAL (SCI-FI)
   ========================================= */

.auth-container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at center, #0a0a0f, #000);
  position: relative;
  overflow: hidden;
}

/* Background Stars/Grid Effect */
.auth-bg-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 200%;
  height: 200%;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  transform: perspective(500px) rotateX(60deg) translateY(-100px)
    translateZ(-200px);
  animation: gridMove 20s linear infinite;
  pointer-events: none;
}

@keyframes gridMove {
  0% {
    transform: perspective(500px) rotateX(60deg) translateY(0)
      translateZ(-200px);
  }
  100% {
    transform: perspective(500px) rotateX(60deg) translateY(50px)
      translateZ(-200px);
  }
}

.auth-card {
  width: 100%;
  max-width: 480px;
  background: rgba(10, 10, 15, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px; /* Tech corners */
  padding: 3rem;
  position: relative;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.8);
  clip-path: polygon(0 0, 100% 0, 100% 90%, 95% 100%, 5% 100%, 0 90%);
}

/* Auth Header */
.auth-header {
  text-align: center;
  margin-bottom: 3rem;
}

.auth-icon {
  font-size: 3rem;
  color: #06b6d4; /* Cyan */
  margin-bottom: 1rem;
  filter: drop-shadow(0 0 10px rgba(6, 182, 212, 0.5));
}

.auth-title {
  font-family: "Orbitron", sans-serif;
  font-size: 1.5rem;
  color: #fff;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.auth-subtitle {
  font-family: "Rajdhani", monospace;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.1em;
  margin-top: 0.5rem;
}

/* Inputs */
.auth-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.auth-label {
  display: block;
  font-family: "Rajdhani", monospace;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 0.5rem;
  letter-spacing: 0.1em;
}

.auth-input-wrapper {
  position: relative;
}

.auth-input {
  width: 100%;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  font-family: "Rajdhani", monospace;
  padding: 1rem 1rem 1rem 1rem;
  font-size: 1rem;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.auth-input:focus {
  outline: none;
  background: rgba(6, 182, 212, 0.05);
  border-color: #06b6d4;
  box-shadow: 0 0 15px rgba(6, 182, 212, 0.1);
}

/* Button */
.btn-auth {
  margin-top: 2rem;
  width: 100%;
  background: transparent;
  border: 1px solid #06b6d4;
  color: #06b6d4;
  font-family: "Orbitron", sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  padding: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}

.btn-auth:hover {
  background: rgba(6, 182, 212, 0.1);
  box-shadow: 0 0 20px rgba(6, 182, 212, 0.3);
  text-shadow: 0 0 5px #06b6d4;
}

.btn-auth::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(6, 182, 212, 0.2),
    transparent
  );
  transition: 0.5s;
}

.btn-auth:hover::before {
  left: 100%;
}

/* =========================================
   AUTH TERMINAL 3.0 (ULTRA-PREMIUM OBSIDIAN)
   ========================================= */

:root {
    --c-primary: var(--primary);
    --c-accent: var(--accent);
    --c-white: var(--white);
    --c-success: #10b981;
    --f-orbitron: "Orbitron", sans-serif;
    --f-mono: "Rajdhani", monospace;
}

/* 1. CONTENEDOR OBSIDIAN GLASS */
.auth-card-premium {
    background: rgba(8, 8, 11, 0.75);
    backdrop-filter: blur(50px);
    -webkit-backdrop-filter: blur(50px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    /* Battleship Shape */
    clip-path: polygon(
        20px 0, 
        100% 0, 
        100% calc(100% - 20px), 
        calc(100% - 20px) 100%, 
        0 100%, 
        0 20px
    );
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
    padding: 3rem;
    position: relative;
    width: 100%;
    max-width: 450px;
    transition: transform 0.3s ease;
}

.auth-card-premium:hover {
    border-color: rgba(255, 255, 255, 0.15);
}

/* 2. INPUTS HYPER-FIELDS */
.input-hyper-group {
    position: relative;
    margin-bottom: 2rem;
}

.input-hyper {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 0;
    color: var(--c-white);
    font-family: var(--f-orbitron);
    font-size: 1rem;
    letter-spacing: 0.1em;
    outline: none;
    transition: all 0.3s ease;
}

.input-hyper::placeholder {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.8rem;
    text-transform: uppercase;
}

/* Barra Activa Animada */
.input-bar {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0%;
    height: 2px;
    background: linear-gradient(90deg, var(--c-primary), var(--c-accent));
    transform: translateX(-50%);
    transition: width 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 0 10px var(--c-primary);
}

.input-hyper:focus ~ .input-bar {
    width: 100%;
}

.input-hyper:focus {
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

/* 3. ESCÁNER BIOMÉTRICO (RADAR) */
.bio-radar {
    width: 96px; /* w-24 */
    height: 96px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
}

.radar-ring {
    position: absolute;
    inset: 0;
    border: 2px dashed rgba(0, 243, 255, 0.3);
    border-radius: 50%;
    animation: spin 4s linear infinite;
}

.bio-radar.scanning .radar-ring {
    border-color: var(--c-primary);
    box-shadow: 0 0 15px rgba(0, 243, 255, 0.2);
    animation-duration: 1s;
}

.fingerprint-icon {
    font-size: 2.5rem;
    color: rgba(255, 255, 255, 0.2);
    animation: breathe 3s ease-in-out infinite;
    transition: color 0.3s;
}

.bio-radar.scanning .fingerprint-icon {
    color: var(--c-primary);
    animation: none;
}

.bio-radar.success .radar-ring {
    border-style: solid;
    border-color: var(--c-success);
    box-shadow: 0 0 20px var(--c-success);
    animation: none;
}

.bio-radar.success .fingerprint-icon {
    color: var(--c-success);
    text-shadow: 0 0 10px var(--c-success);
}

/* Láser Scan */
.laser-beam {
    position: absolute;
    left: 10%;
    width: 80%;
    height: 2px;
    background: var(--c-accent);
    box-shadow: 0 0 8px var(--c-accent);
    opacity: 0;
    pointer-events: none;
}

.bio-radar.scanning .laser-beam {
    opacity: 1;
    animation: scan-vertical 1.5s ease-in-out infinite alternate;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes breathe {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.8; }
}

@keyframes scan-vertical {
    0% { top: 10%; opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { top: 90%; opacity: 0; }
}

/* 4. BOTÓN HYPER */
.btn-hyper {
    background: transparent;
    border: 1px solid var(--c-primary);
    color: var(--c-primary);
    padding: 1rem 2rem;
    font-family: var(--f-orbitron);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    cursor: pointer;
    transition: all 0.3s ease;
    clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
    width: 100%;
    position: relative;
    overflow: hidden;
}

.btn-hyper:hover {
    background: rgba(0, 243, 255, 0.1);
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.2);
    text-shadow: 0 0 8px var(--c-primary);
    transform: translateY(-2px);
}

.btn-hyper:active {
    transform: scale(0.98);
}
