/* ==========================================================================
   WAY TO MILLIONS (waytomillions.us) - ESTILOS PRINCIPALES
   Fundador: Julio Pastrana | Bloomington, CA 92316 | +1 (909) 572-5877
   Estética: Futuristic Cyber-Executive / Synthwave Dark Premium
   ========================================================================== */

:root {
  --bg-main: #07090e;
  --bg-surface: #0e131f;
  --bg-card: rgba(16, 23, 38, 0.75);
  --bg-card-hover: rgba(22, 33, 56, 0.85);
  --border-color: rgba(255, 255, 255, 0.08);
  --border-glow: rgba(0, 240, 255, 0.35);

  --neon-cyan: #00f0ff;
  --neon-pink: #ff007f;
  --neon-purple: #9333ea;
  --neon-amber: #f59e0b;
  --neon-green: #10b981;

  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --text-dim: #64748b;

  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --glow-cyan: 0 0 25px rgba(0, 240, 255, 0.45);
  --glow-pink: 0 0 25px rgba(255, 0, 127, 0.45);
  --radius-lg: 16px;
  --radius-md: 10px;
  --radius-full: 9999px;
  --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--bg-main);
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
  top: 0 !important;
}

/* Ocultar barra intrusiva superior de Google Translate preservando la traducción */
.goog-te-banner-frame.skiptranslate,
.goog-te-banner-frame {
  display: none !important;
}
body > .skiptranslate {
  display: none !important;
}
#goog-gt-tt {
  display: none !important;
}
.goog-text-highlight {
  background: none !important;
  box-shadow: none !important;
}

/* Selector de Idiomas Inteligente */
.lang-selector-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0, 240, 255, 0.08);
  border: 1px solid rgba(0, 240, 255, 0.25);
  border-radius: var(--radius-full);
  padding: 4px 10px;
  font-size: 0.78rem;
  color: var(--text-main);
}

.lang-selector-pill select {
  background: transparent;
  border: none;
  color: var(--neon-cyan);
  font-weight: 700;
  font-size: 0.78rem;
  cursor: pointer;
  outline: none;
}
.lang-selector-pill select option {
  background: #0e131f;
  color: #fff;
}

/* Ambient Cyber Gradients and Grid */
.bg-grid-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-image: 
    linear-gradient(rgba(0, 240, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 240, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

.bg-glow-orb-1 {
  position: fixed;
  top: -10vw;
  left: -5vw;
  width: 50vw;
  height: 50vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 240, 255, 0.12) 0%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

.bg-glow-orb-2 {
  position: fixed;
  bottom: -10vw;
  right: -5vw;
  width: 55vw;
  height: 55vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 0, 127, 0.1) 0%, transparent 70%);
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

/* ==========================================================================
   BARRA SUPERIOR DE SEGURIDAD & NAVEGACIÓN
   ========================================================================== */
.top-security-bar {
  background: rgba(8, 12, 20, 0.95);
  border-bottom: 1px solid rgba(0, 240, 255, 0.15);
  padding: 8px 0;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.security-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.security-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--neon-cyan);
  font-weight: 600;
  letter-spacing: 0.5px;
}

.security-pulse-dot {
  width: 8px;
  height: 8px;
  background-color: var(--neon-cyan);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--neon-cyan);
  animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.85); }
}

.official-contact-mini {
  display: flex;
  align-items: center;
  gap: 18px;
}

.official-contact-mini a {
  color: var(--text-main);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.official-contact-mini a:hover {
  color: var(--neon-cyan);
}

/* Navegación Principal */
.main-navbar {
  position: sticky;
  top: 0;
  background: rgba(7, 9, 14, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-color);
  padding: 16px 0;
  z-index: 100;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand-identity {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.brand-logo-img {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.3);
  border: 1px solid rgba(0, 240, 255, 0.4);
}

.brand-text h1 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  background: linear-gradient(135deg, #ffffff 40%, var(--neon-cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.brand-text span {
  font-size: 0.75rem;
  color: var(--neon-pink);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 700;
  display: block;
  margin-top: -2px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 28px;
  align-items: center;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: var(--transition);
  position: relative;
}

.nav-links a:hover {
  color: #ffffff;
}

.nav-links a:hover::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--neon-cyan);
  box-shadow: var(--glow-cyan);
}

.btn-cta-nav {
  background: linear-gradient(135deg, var(--neon-cyan), #0088ff);
  color: #07090e !important;
  font-weight: 700 !important;
  padding: 10px 22px;
  border-radius: var(--radius-full);
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.35);
}

.btn-cta-nav:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(0, 240, 255, 0.6);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  padding: 80px 0 60px;
  position: relative;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 240, 255, 0.08);
  border: 1px solid rgba(0, 240, 255, 0.3);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  color: var(--neon-cyan);
  font-weight: 600;
  margin-bottom: 24px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.hero-title .gradient-text {
  background: linear-gradient(135deg, var(--neon-cyan) 0%, #a855f7 50%, var(--neon-pink) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 36px;
  max-width: 580px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--neon-pink), #e11d48);
  color: #ffffff;
  padding: 14px 28px;
  font-size: 1rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  text-decoration: none;
  box-shadow: var(--glow-pink);
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 35px rgba(255, 0, 127, 0.65);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  color: #ffffff;
  padding: 14px 28px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
}

.btn-secondary:hover {
  border-color: var(--neon-cyan);
  background: rgba(0, 240, 255, 0.08);
  transform: translateY(-2px);
}

/* Founder Credential Card in Hero */
.founder-glass-card {
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.founder-glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--neon-cyan), var(--neon-pink));
}

.founder-card-header {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 24px;
}

.founder-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 2px solid var(--neon-cyan);
  box-shadow: var(--glow-cyan);
  object-fit: cover;
}

.founder-info h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffffff;
}

.founder-info p {
  color: var(--neon-cyan);
  font-size: 0.85rem;
  font-weight: 600;
}

.founder-location-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
  color: var(--text-muted);
  font-size: 0.8rem;
}

.founder-bio-quote {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 24px;
  border-left: 3px solid var(--neon-pink);
  padding-left: 14px;
}

.verified-seal-box {
  background: rgba(0, 240, 255, 0.06);
  border: 1px dashed rgba(0, 240, 255, 0.3);
  padding: 12px 16px;
  border-radius: var(--radius-md);
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.verified-seal-box span {
  color: var(--text-muted);
}

.verified-status {
  color: var(--neon-green);
  font-weight: 700;
}

/* Global Stats Banner */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-top: 50px;
}

.stat-item {
  text-align: center;
  border-right: 1px solid var(--border-color);
}

.stat-item:last-child {
  border-right: none;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: #ffffff;
  display: block;
}

.stat-number.cyan { color: var(--neon-cyan); }
.stat-number.pink { color: var(--neon-pink); }

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

/* ==========================================================================
   SECCIÓN DE PROYECTOS (CROWDFUNDING & INVESTORS)
   ========================================================================== */
.projects-section {
  padding: 100px 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 50px;
}

.section-subtitle-tag {
  color: var(--neon-cyan);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}

.section-desc {
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* Filtros de Categoría */
.filter-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  color: var(--text-muted);
  padding: 10px 24px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  background: rgba(0, 240, 255, 0.15);
  border-color: var(--neon-cyan);
  color: #ffffff;
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.2);
}

/* Grid de Proyectos */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.project-card {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  position: relative;
}

.project-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-glow);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 25px rgba(0, 240, 255, 0.2);
}

.project-card-media {
  height: 240px;
  width: 100%;
  position: relative;
  background: #0b0e17;
  overflow: hidden;
}

.project-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.project-card:hover .project-card-media img {
  transform: scale(1.05);
}

.project-badges {
  position: absolute;
  top: 16px;
  left: 16px;
  right: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 2;
}

.badge-platform {
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.badge-platform.kickstarter {
  color: #05ce78;
  border-color: rgba(5, 206, 120, 0.4);
}

.badge-platform.indiegogo {
  color: #eb1478;
  border-color: rgba(235, 20, 120, 0.4);
}

.badge-platform.gamefound {
  color: #f59e0b;
  border-color: rgba(245, 158, 11, 0.4);
}

.badge-category {
  background: rgba(147, 51, 234, 0.25);
  border: 1px solid var(--neon-purple);
  color: #e9d5ff;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.project-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.project-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #ffffff;
}

.project-tagline {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 20px;
  line-height: 1.5;
}

.ai-spec-box {
  background: rgba(0, 240, 255, 0.05);
  border-left: 3px solid var(--neon-cyan);
  padding: 10px 14px;
  border-radius: 4px;
  font-size: 0.82rem;
  margin-bottom: 20px;
}

.ai-spec-box strong {
  color: var(--neon-cyan);
  display: block;
  margin-bottom: 2px;
}

/* Barra de Progreso de Financiamiento */
.funding-progress-module {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--border-color);
}

.progress-metrics-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 8px;
}

.progress-raised {
  font-size: 1.3rem;
  font-weight: 800;
  color: #ffffff;
}

.progress-percentage {
  color: var(--neon-cyan);
  font-weight: 700;
  font-size: 1.1rem;
}

.progress-bar-track {
  width: 100%;
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  overflow: hidden;
  margin-bottom: 14px;
}

.progress-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--neon-cyan), var(--neon-pink));
  border-radius: var(--radius-full);
  transition: width 1s ease-in-out;
}

.progress-submetrics {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.project-actions {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
}

.btn-backer {
  background: linear-gradient(135deg, #05ce78, #00aa55);
  color: #032b17;
  font-weight: 700;
  text-decoration: none;
  padding: 12px;
  border-radius: var(--radius-md);
  text-align: center;
  font-size: 0.95rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-backer.indiegogo {
  background: linear-gradient(135deg, #eb1478, #c20f62);
  color: #ffffff;
}

.btn-backer.gamefound {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #1a0f00;
}

.btn-backer:hover {
  transform: translateY(-2px);
  filter: brightness(1.15);
}

.btn-invest-pitch {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-color);
  color: #ffffff;
  padding: 12px 18px;
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.btn-invest-pitch:hover {
  border-color: var(--neon-cyan);
  color: var(--neon-cyan);
}

/* ==========================================================================
   METODOLOGÍA IA & CAPACIDADES FÍSICAS Y DIGITALES
   ========================================================================== */
.methodology-section {
  padding: 90px 0;
  background: linear-gradient(180deg, transparent, rgba(14, 19, 31, 0.6), transparent);
}

.dual-capability-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  margin-top: 40px;
}

.capability-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 36px;
  position: relative;
}

.capability-card.physical {
  border-top: 4px solid var(--neon-cyan);
}

.capability-card.digital {
  border-top: 4px solid var(--neon-pink);
}

.capability-icon {
  font-size: 2.2rem;
  margin-bottom: 20px;
  display: inline-block;
}

.capability-card h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 14px;
}

.capability-card p {
  color: var(--text-muted);
  margin-bottom: 20px;
}

.capability-list {
  list-style: none;
}

.capability-list li {
  padding: 8px 0;
  color: var(--text-main);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.capability-list li i {
  color: var(--neon-cyan);
}

.capability-card.digital .capability-list li i {
  color: var(--neon-pink);
}

/* ==========================================================================
   PORTAL DE INVERSORES & FORMULARIO
   ========================================================================== */
.investor-section {
  padding: 90px 0;
}

.investor-form-container {
  background: var(--bg-surface);
  border: 1px solid rgba(0, 240, 255, 0.2);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  max-width: 860px;
  margin: 0 auto;
  position: relative;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group.full {
  grid-column: span 2;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-control {
  width: 100%;
  background: rgba(7, 9, 14, 0.8);
  border: 1px solid var(--border-color);
  color: #ffffff;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--neon-cyan);
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.25);
}

textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

/* Honeypot field - visually hidden to deceive spam bots */
.hp-fax-trap {
  display: none !important;
  visibility: hidden !important;
}

/* Form alert status */
.alert-box {
  padding: 14px 20px;
  border-radius: var(--radius-md);
  margin-bottom: 24px;
  font-size: 0.95rem;
}

.alert-success {
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid var(--neon-green);
  color: #a7f3d0;
}

.alert-error {
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid #ef4444;
  color: #fca5a5;
}

/* ==========================================================================
   FOOTER OFICIAL Y SELLO INMUTABLE
   ========================================================================== */
.main-footer {
  background: #040508;
  border-top: 1px solid var(--border-color);
  padding: 70px 0 30px;
  margin-top: 80px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-brand h4 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 12px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-col h5 {
  font-size: 1rem;
  color: #ffffff;
  margin-bottom: 18px;
  font-weight: 700;
}

.footer-contact-list {
  list-style: none;
}

.footer-contact-list li {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.footer-contact-list li i {
  color: var(--neon-cyan);
  margin-top: 3px;
}

.immutable-shield-badge {
  background: rgba(0, 240, 255, 0.04);
  border: 1px solid rgba(0, 240, 255, 0.2);
  border-radius: var(--radius-md);
  padding: 16px;
  font-size: 0.8rem;
  color: var(--text-dim);
}

.immutable-shield-badge strong {
  color: var(--neon-cyan);
  display: block;
  margin-bottom: 4px;
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--text-dim);
  flex-wrap: wrap;
  gap: 16px;
}

/* ==========================================================================
   RESPONSIVE DESIGN (TABLETS Y MÓVILES)
   ========================================================================== */
@media (max-width: 992px) {
  .hero-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }

  .projects-grid {
    grid-template-columns: 1fr;
  }

  .stats-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-item:nth-child(2) {
    border-right: none;
  }

  .stat-item:nth-child(1),
  .stat-item:nth-child(2) {
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 16px;
  }

  .dual-capability-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 640px) {
  .hero-title {
    font-size: 2rem;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-group.full {
    grid-column: span 1;
  }

  .nav-links {
    display: none; /* Simplificado para vista móvil directa */
  }

  .security-bar-content {
    flex-direction: column;
    align-items: flex-start;
  }
}
