@charset "utf-8";

/* =========================================
   1. RESET & BASE (Mobile First)
   ========================================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Rajdhani", sans-serif;
  background: #0a0a0a;
  color: #ffffff;
  overflow-x: hidden;
  position: relative;
  font-weight: 400;
  line-height: 1.6;
}

/* =========================================
   2. BACKGROUNDS & ANIMATIONS (Preserved)
   ========================================= */
.grid-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(
      circle at 25% 25%,
      transparent 2%,
      rgba(255, 94, 0, 0.03) 2%,
      rgba(255, 94, 0, 0.03) 3%,
      transparent 3%
    ),
    radial-gradient(
      circle at 75% 75%,
      transparent 2%,
      rgba(0, 178, 255, 0.03) 2%,
      rgba(0, 178, 255, 0.03) 3%,
      transparent 3%
    );
  background-size: 80px 80px;
  animation: grid-move 30s linear infinite;
  z-index: -2;
}

.gradient-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(
      circle at 20% 50%,
      rgba(255, 94, 0, 0.15) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 50%,
      rgba(0, 178, 255, 0.15) 0%,
      transparent 50%
    ),
    radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
  z-index: -1;
  animation: gradient-shift 10s ease-in-out infinite;
}

.scanlines {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background: linear-gradient(transparent 50%, rgba(255, 94, 0, 0.01) 50%);
  background-size: 100% 4px;
  animation: scanlines 8s linear infinite;
  z-index: 2;
}

/* Floating particles */
.particle {
  position: fixed;
  pointer-events: none;
  opacity: 0;
  z-index: 1;
}

.particle::before {
  content: "";
  position: absolute;
  width: 2px;
  height: 2px;
  background: #ff5e00;
  box-shadow:
    0 0 10px #ff5e00,
    0 0 20px #ff5e00;
  animation: float-up 15s linear infinite;
}

/* =========================================
   NAVEGACIÓN (Altura y diseño originales)
   ========================================= */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 20px 50px;
  background: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(10px);
  z-index: 1000;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(255, 94, 0, 0.1);
  line-height: 1; /* CLAVE: Evita que el interlineado del body estire la barra */
}

nav.scrolled {
  padding: 15px 50px;
  background: rgba(10, 10, 10, 0.95);
  box-shadow: 0 5px 30px rgba(255, 94, 0, 0.2);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 10px;
}

.logo-text {
  font-family: "Orbitron", monospace;
  font-size: 24px;
  font-weight: 900;
  background: linear-gradient(45deg, #ff5e00, #00b2ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: glow 2s ease-in-out infinite;
  text-shadow: 0 0 30px rgba(255, 94, 0, 0.5);
  line-height: 1.2; /* Ajuste fino para el logo */
}

@keyframes glow {
  0%,
  100% {
    filter: brightness(1);
    text-shadow: 0 0 30px rgba(255, 94, 0, 0.5);
  }
  50% {
    filter: brightness(1.5);
    text-shadow: 0 0 40px rgba(255, 94, 0, 0.8);
  }
}

.nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  color: #ffffff;
  position: relative;
  transition: all 0.3s ease;
  padding: 8px 16px;
  font-family: "Orbitron", monospace;
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.7;
  line-height: 1.5; /* Ajuste fino para los links */
}

.nav-links a.active {
  opacity: 1;
  color: #ff5e00;
}

.nav-links a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid transparent;
  transition: all 0.3s ease;
}

.nav-links a:hover::before,
.nav-links a.active::before {
  border-color: #ff5e00;
  box-shadow: inset 0 0 10px rgba(255, 94, 0, 0.5);
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #ff5e00, #00b2ff);
  transition: width 0.3s ease;
  box-shadow: 0 0 10px rgba(255, 94, 0, 0.8);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

/* Botón hamburguesa (Solo Móvil) */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  padding: 5px;
  z-index: 1002;
  background: transparent;
  border: none;
}

.menu-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  background: #ff5e00;
  transition: all 0.3s ease;
  border-radius: 2px;
}

/* =========================================
   MÓVIL: Sobreescribe SOLO en pantallas pequeñas
   ========================================= */
@media (max-width: 768px) {
  nav {
    padding: 15px 20px;
  }

  nav.scrolled {
    padding: 15px 20px;
  }

  .menu-toggle {
    display: flex;
  }

  .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }

  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 320px;
    height: 100vh;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 80px 20px 20px;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 1px solid rgba(255, 94, 0, 0.2);
    z-index: 1001;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links a {
    width: 100%;
    text-align: center;
    padding: 15px;
    font-size: 1.1rem;
    border-radius: 6px;
    border: 1px solid transparent;
  }

  .nav-links a:hover,
  .nav-links a.active {
    background: rgba(255, 94, 0, 0.1);
    border-color: rgba(255, 94, 0, 0.3);
  }

  .nav-links a::before,
  .nav-links a::after {
    display: none;
  }
}

/* =========================================
   4. HERO SECTION (Mobile First)
   ========================================= */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 120px 20px 60px;
  text-align: center;
}

.hero-content {
  width: 100%;
  max-width: 800px;
  animation: fade-in-up 1s ease-out;
  z-index: 10;
  margin-bottom: 40px;
}

.text-rotator {
  position: relative;
  min-height: 140px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.text-set {
  position: absolute;
  width: 100%;
  opacity: 0;
  display: none;
  transition: opacity 0.5s ease;
}

.text-set.active {
  opacity: 1;
  display: block;
}

.glitch-text {
  font-family: "Orbitron", monospace;
  font-size: clamp(1rem, 8vw, 3.5rem);
  font-weight: 900;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-shadow: 0 0 20px rgba(255, 94, 0, 0.5);
  line-height: 1.2;
}

.glitch-text::before,
.glitch-text::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.glitch-text::before {
  animation: glitch-1 0.5s infinite;
  color: #ff5e00;
  z-index: -1;
  text-shadow: -2px 0 #ff5e00;
}

.glitch-text::after {
  animation: glitch-2 0.5s infinite;
  color: #00b2ff;
  z-index: -1;
  text-shadow: 2px 0 #00b2ff;
}

.subtitle {
  font-size: 1.1rem;
  margin: 20px 0 0;
  opacity: 0.7;
  font-weight: 300;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
  animation: fade-in 1s ease-out 0.5s both;
}

.cta-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
  justify-content: center;
  width: 100%;
  max-width: 320px;
  z-index: 100;
}

.cta-button {
  padding: 14px 28px;
  border: none;
  font-size: 1rem;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-family: "Orbitron", monospace;
  font-weight: 700;
  border-radius: 4px;
  min-height: 48px; /* Touch target */
}

.cta-primary {
  background: linear-gradient(45deg, #ff5e00, #00b2ff);
  color: white;
  animation: pulse 2s infinite;
  box-shadow: 0 0 20px rgba(255, 94, 0, 0.4);
}

.cta-secondary {
  background: transparent;
  color: #ff5e00;
  border: 2px solid #ff5e00;
  box-shadow: inset 0 0 15px rgba(255, 94, 0, 0.1);
}

.cta-button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition:
    width 0.6s,
    height 0.6s;
}

.cta-button:hover::before {
  width: 300px;
  height: 300px;
}

.cta-secondary:hover {
  background: rgba(255, 94, 0, 0.15);
  color: white;
  transform: translateY(-2px);
  box-shadow:
    0 10px 30px rgba(255, 94, 0, 0.3),
    inset 0 0 20px rgba(255, 94, 0, 0.2);
  border-color: #ffffff;
}

/* =========================================
   5. FEATURES SECTION (Mobile First)
   ========================================= */
.features {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  font-family: "Orbitron", monospace;
  font-size: clamp(1.8rem, 6vw, 3rem);
  font-weight: 900;
  text-align: center;
  margin-bottom: 40px;
  background: linear-gradient(45deg, #ff5e00, #00b2ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
}

.features-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.feature-tabs {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 94, 0, 0.2);
  border-radius: 10px;
  padding: 15px;
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tab-item {
  padding: 14px 16px;
  cursor: pointer;
  border: 1px solid transparent;
  border-radius: 6px;
  transition: all 0.3s ease;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  min-height: 48px; /* Touch target */
}

.tab-item:hover {
  background: rgba(255, 94, 0, 0.1);
  border-color: rgba(255, 94, 0, 0.3);
}

.tab-item.active {
  background: linear-gradient(
    45deg,
    rgba(255, 94, 0, 0.2),
    rgba(0, 178, 255, 0.2)
  );
  border-color: #ff5e00;
  box-shadow: 0 0 15px rgba(255, 94, 0, 0.2);
}

.feature-content {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 94, 0, 0.2);
  border-radius: 10px;
  padding: 25px 20px;
  backdrop-filter: blur(10px);
  min-height: 300px;
}

.content-panel {
  display: none;
  animation: fadeIn 0.5s ease;
}

.content-panel.active {
  display: block;
}

.content-panel h3 {
  font-family: "Orbitron", monospace;
  font-size: 1.5rem;
  margin-bottom: 15px;
  background: linear-gradient(45deg, #ffffff, #ff5e00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.content-panel p {
  line-height: 1.7;
  opacity: 0.85;
  margin-bottom: 20px;
  font-size: 1rem;
}

.feature-list {
  list-style: none;
  margin-top: 15px;
}

.feature-list li {
  padding: 8px 0 8px 28px;
  position: relative;
  opacity: 0.85;
  font-size: 0.95rem;
}

.feature-list li::before {
  content: "▸";
  position: absolute;
  left: 0;
  color: #ff5e00;
  font-size: 1.2rem;
  line-height: 1.4;
}

/* =========================================
   6. ABOUT SECTION (Mobile First)
   ========================================= */
.about {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.about-text h2 {
  font-family: "Orbitron", monospace;
  font-size: 1.8rem;
  margin-bottom: 20px;
  background: linear-gradient(45deg, #ff5e00, #00b2ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-text p {
  line-height: 1.7;
  opacity: 0.85;
  margin-bottom: 15px;
  font-size: 1rem;
}

.about-visual {
  position: relative;
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-graphic {
  width: 200px;
  height: 200px;
  position: relative;
  animation: float 6s ease-in-out infinite;
}

.about-graphic::before,
.about-graphic::after {
  content: "";
  position: absolute;
  border: 2px solid #ff5e00;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(255, 94, 0, 0.4);
}

.about-graphic::before {
  width: 100%;
  height: 100%;
  animation: rotate 20s linear infinite;
}

.about-graphic::after {
  width: 80%;
  height: 80%;
  top: 10%;
  left: 10%;
  border-color: #00b2ff;
  animation: rotate 15s linear infinite reverse;
  box-shadow: 0 0 20px rgba(0, 178, 255, 0.4);
}

/* =========================================
   7. CONTACT SECTION (Mobile First)
   ========================================= */
.contact {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-container {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.contact-form {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 94, 0, 0.2);
  border-radius: 10px;
  padding: 25px 20px;
  backdrop-filter: blur(10px);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: #ff5e00;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 1px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 94, 0, 0.3);
  color: white;
  font-size: 1rem;
  border-radius: 6px;
  transition: all 0.3s ease;
  font-family: "Rajdhani", sans-serif;
  min-height: 48px; /* Touch target */
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #ff5e00;
  box-shadow: 0 0 15px rgba(255, 94, 0, 0.2);
  background: rgba(255, 255, 255, 0.08);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.submit-btn {
  width: 100%;
  padding: 16px;
  background: linear-gradient(45deg, #ff5e00, #00b2ff);
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Orbitron", monospace;
  min-height: 48px;
  margin-top: 10px;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255, 94, 0, 0.4);
}

.contact-info {
  padding: 10px;
}

.contact-info h3 {
  font-family: "Orbitron", monospace;
  font-size: 1.6rem;
  margin-bottom: 25px;
  background: linear-gradient(45deg, #ffffff, #ff5e00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.info-item {
  margin-bottom: 25px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.info-details h4 {
  color: #ff5e00;
  margin-bottom: 4px;
  font-size: 1.05rem;
  font-weight: 600;
}

.info-details p {
  opacity: 0.8;
  font-size: 0.95rem;
}

/* =========================================
   8. FOOTER (Mobile First)
   ========================================= */
footer {
  background: rgba(0, 0, 0, 0.9);
  border-top: 1px solid rgba(255, 94, 0, 0.2);
  padding: 30px 20px;
  text-align: center;
}

.copyright {
  opacity: 0.7;
  font-size: 0.85rem;
}

/* =========================================
   9. hCAPTCHA RESPONSIVE
   ========================================= */
.h-captcha {
  max-width: 100% !important;
  overflow: hidden !important;
  display: flex;
  justify-content: center;
  margin: 15px 0;
  transform-origin: center;
}

.h-captcha > div,
.h-captcha > div > iframe {
  max-width: 100% !important;
  width: 100% !important;
}

/* =========================================
   10. ANIMATIONS (Preserved & Optimized)
   ========================================= */
@keyframes grid-move {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(80px, 80px);
  }
}

@keyframes gradient-shift {
  0%,
  100% {
    transform: scale(1) rotate(0deg);
  }
  50% {
    transform: scale(1.1) rotate(180deg);
  }
}

@keyframes float-up {
  0% {
    transform: translateY(100vh) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-100vh) rotate(720deg);
    opacity: 0;
  }
}

@keyframes glow {
  0%,
  100% {
    filter: brightness(1);
    text-shadow: 0 0 30px rgba(255, 94, 0, 0.5);
  }
  50% {
    filter: brightness(1.3);
    text-shadow: 0 0 40px rgba(255, 94, 0, 0.8);
  }
}

@keyframes glitch-1 {
  0%,
  100% {
    clip-path: inset(0 0 0 0);
    transform: translate(0);
  }
  20% {
    clip-path: inset(33% 0 33% 0);
    transform: translate(-2px);
  }
  40% {
    clip-path: inset(66% 0 0 0);
    transform: translate(2px);
  }
  60% {
    clip-path: inset(0 0 66% 0);
    transform: translate(1px);
  }
  80% {
    clip-path: inset(25% 0 50% 0);
    transform: translate(-1px);
  }
}

@keyframes glitch-2 {
  0%,
  100% {
    clip-path: inset(0 0 0 0);
    transform: translate(0);
  }
  20% {
    clip-path: inset(50% 0 25% 0);
    transform: translate(2px);
  }
  40% {
    clip-path: inset(0 0 75% 0);
    transform: translate(-2px);
  }
  60% {
    clip-path: inset(75% 0 0 0);
    transform: translate(-1px);
  }
  80% {
    clip-path: inset(40% 0 40% 0);
    transform: translate(1px);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 20px rgba(255, 94, 0, 0.4);
  }
  50% {
    transform: scale(1.03);
    box-shadow: 0 0 30px rgba(255, 94, 0, 0.6);
  }
}

@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 0.7;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
    box-shadow: 0 0 20px rgba(255, 94, 0, 0.4);
  }
  50% {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(255, 94, 0, 0.6);
  }
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes scanlines {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(4px);
  }
}

/* =========================================
   11. MEDIA QUERIES (Tablet & Desktop)
   ========================================= */

/* Tablet (min-width: 768px) */
@media (min-width: 768px) {
  .menu-toggle {
    display: none;
  }

  .nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
  }

  .nav-links a {
    text-decoration: none;
    color: #ffffff;
    position: relative;
    transition: all 0.3s ease;
    padding: 8px 16px;
    font-family: "Orbitron", monospace;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.7;
  }

  .nav-links a.active {
    opacity: 1;
    color: #ff5e00;
  }

  .nav-links a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 1px solid transparent;
    transition: all 0.3s ease;
  }

  .nav-links a:hover::before,
  .nav-links a.active::before {
    border-color: #ff5e00;
    box-shadow: inset 0 0 10px rgba(255, 94, 0, 0.5);
  }

  .nav-links a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ff5e00, #00b2ff);
    transition: width 0.3s ease;
    box-shadow: 0 0 10px rgba(255, 94, 0, 0.8);
  }

  .nav-links a:hover::after,
  .nav-links a.active::after {
    width: 100%;
  }

  .hero {
    padding: 140px 40px 80px;
  }

  .text-rotator {
    min-height: 160px;
  }

  .subtitle {
    font-size: 1.3rem;
  }

  .cta-container {
    flex-direction: row;
    max-width: none;
  }

  .features-container {
    flex-direction: row;
    align-items: flex-start;
  }

  .feature-tabs {
    width: 280px;
    flex-shrink: 0;
    padding: 20px;
  }

  .feature-content {
    padding: 35px;
    flex-grow: 1;
  }

  .about-content {
    flex-direction: row;
    align-items: center;
    gap: 60px;
  }

  .about-visual {
    height: 350px;
  }

  .about-graphic {
    width: 280px;
    height: 280px;
  }

  .contact-container {
    flex-direction: row;
    align-items: flex-start;
  }

  .contact-form,
  .contact-info {
    flex: 1;
  }

  .contact-form {
    padding: 35px;
  }
}

/* Desktop (min-width: 1024px) */
@media (min-width: 1024px) {
  nav {
    padding: 20px 50px;
  }

  nav.scrolled {
    padding: 15px 50px;
  }

  .logo-text {
    //font-size: 1.8rem;
  }

  .nav-links {
    gap: 20px;
  }

  .nav-links a {
    font-size: 1rem;
    //padding: 10px 20px;
  }

  .hero {
    padding: 160px 20px 100px;
  }

  .glitch-text {
    font-size: clamp(3rem, 6vw, 4.5rem);
    letter-spacing: 0.1em;
  }

  .subtitle {
    font-size: 1.5rem;
    margin-top: 25px;
  }

  .cta-button {
    padding: 16px 40px;
    font-size: 1.1rem;
  }

  .features {
    padding: 100px 20px;
  }

  .section-title {
    margin-bottom: 60px;
  }

  .feature-tabs {
    width: 320px;
  }

  .tab-item {
    padding: 18px 20px;
    font-size: 1.1rem;
  }

  .feature-content {
    padding: 50px;
    min-height: 450px;
  }

  .content-panel h3 {
    font-size: 2rem;
  }

  .content-panel p {
    font-size: 1.1rem;
  }

  .about {
    padding: 100px 20px;
  }

  .about-text h2 {
    font-size: 2.5rem;
  }

  .about-text p {
    font-size: 1.1rem;
  }

  .about-visual {
    height: 400px;
  }

  .about-graphic {
    width: 320px;
    height: 320px;
  }

  .contact {
    padding: 100px 20px;
  }

  .contact-info h3 {
    font-size: 2rem;
  }

  .info-item {
    gap: 20px;
  }
}

/* Reduce motion for accessibility (Optional but recommended) */
@media (prefers-reduced-motion: reduce) {
  .grid-bg,
  .gradient-overlay,
  .scanlines,
  .about-graphic,
  .glitch-text::before,
  .glitch-text::after,
  .cta-primary {
    animation: none !important;
  }
  .glitch-text::before,
  .glitch-text::after {
    text-shadow: none;
  }
}
