/* ===============================
   GLOBAL RESET
=============================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body {
  overflow: hidden;
  color: white;
  background: black;
  user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
}

img,
canvas {
  -webkit-user-drag: none;
  user-drag: none;
}

.terminal-access-modal {
  border: 1px solid rgba(0, 255, 153, 0.36);
  background: radial-gradient(circle at top, #10233d 0%, #050914 58%);
  color: #f4fffa;
  box-shadow: 0 0 38px rgba(0, 255, 153, 0.18);
}

.terminal-access-title {
  font-weight: 300;
  letter-spacing: 0.06em;
}

.secure-handshake {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 14px 0 18px;
}

.secure-handshake span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #00ff99;
  box-shadow: 0 0 18px rgba(0, 255, 153, 0.85);
  animation: handshakePulse 1.1s ease-in-out infinite;
}

.secure-handshake span:nth-child(2) {
  animation-delay: 0.18s;
}

.secure-handshake span:nth-child(3) {
  animation-delay: 0.36s;
}

.secure-handshake-copy {
  margin: 0 0 8px;
  color: #d9ffe9;
  font-weight: 500;
}

.secure-handshake-note {
  margin: 0;
  color: rgba(244, 255, 250, 0.72);
  font-size: 0.92rem;
}

.terminal-access-confirm {
  background: #00ff99 !important;
  color: #03110c !important;
  border-radius: 4px !important;
  font-weight: 700 !important;
}

.access-denied-seal {
  display: inline-block;
  margin: 14px 0 12px;
  padding: 10px 18px;
  border: 1px solid rgba(255, 72, 72, 0.78);
  color: #ff5c5c;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  box-shadow: 0 0 24px rgba(255, 72, 72, 0.22);
  animation: accessDeniedFlash 0.8s ease-in-out infinite;
}

.terminal-access-hide {
  animation: terminalFadeAway 0.9s ease forwards !important;
}

@keyframes handshakePulse {
  0%,
  100% {
    transform: translateY(0) scale(0.75);
    opacity: 0.45;
  }

  50% {
    transform: translateY(-6px) scale(1);
    opacity: 1;
  }
}

@keyframes accessDeniedFlash {
  0%,
  100% {
    opacity: 0.68;
    transform: scale(0.98);
  }

  50% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes terminalFadeAway {
  from {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }

  to {
    opacity: 0;
    transform: translateY(10px) scale(0.96);
    filter: blur(5px);
  }
}

/* ===============================
   HERO COVER (EARTH IMAGE)
=============================== */
.hero {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../assets/india-earth-cover.png");
  background-size: 110% 100%;
  background-position: 0% center;
  background-repeat: no-repeat;
  animation: earthShift 80s ease-in-out infinite;
  z-index: 1;
}

@keyframes earthShift {
  0% {
    background-position: -5% center;
  }
  50% {
    background-position: 5% center;
  }
  100% {
    background-position: -5% center;
  }
}

/* Responsive Earth Animation */
@media (max-width: 1024px) {
  .hero::before {
    background-size: 115% 100%;
  }
}

@media (max-width: 768px) {
  .hero::before {
    background-size: auto 100%;
    background-position: 46% bottom;
    animation: none;
  }
}

@media (max-width: 480px) {
  .hero::before {
    background-size: auto 100%;
    background-position: 44% bottom;
    animation: none;
  }
}

/* ===============================
   ATMOSPHERIC VIGNETTE
=============================== */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;

  background: radial-gradient(
    ellipse at bottom center,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.35) 55%,
    rgba(0, 0, 0, 0.75) 100%
  );

  z-index: 4;
  pointer-events: none;
}

/* ===============================
   LOGIN BUTTON
=============================== */
.login-btn {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 10;

  padding: 10px 24px;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.5px;

  color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: transparent;
  border-radius: 4px;

  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.login-btn:hover {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.05);
}

/* ===============================
   RADIAL MENU
=============================== */
.radial-menu {
  position: absolute;
  top: 96px;
  right: 32px;
  width: 248px;
  height: 248px;
  z-index: 12;
  pointer-events: auto;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(8, 14, 28, 0.68) 0%, rgba(8, 14, 28, 0.18) 58%, rgba(8, 14, 28, 0) 74%);
  backdrop-filter: blur(2px);
}

.radial-menu::before,
.radial-menu::after {
  content: "";
  position: absolute;
  inset: 50%;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0.45);
  opacity: 0;
  pointer-events: none;
}

.radial-menu::before {
  border: 1px solid rgba(0, 255, 153, 0.5);
  box-shadow: 0 0 22px rgba(0, 255, 153, 0.2);
}

.radial-menu::after {
  border: 1px solid rgba(140, 255, 213, 0.28);
  box-shadow: 0 0 30px rgba(0, 255, 153, 0.12);
}

.radial-menu.opening::before {
  animation: radarPulse 0.7s ease-out;
}

.radial-menu.opening::after {
  animation: radarPulse 0.9s ease-out 0.12s;
}

@keyframes radarPulse {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.45);
  }
  18% {
    opacity: 0.95;
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(3.35);
  }
}

.center-btn {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 68px;
  height: 68px;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(0, 255, 153, 0.28);
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(16, 28, 48, 0.96), rgba(9, 18, 34, 0.96));
  color: #00ff99;
  font-size: 22px;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 0 22px rgba(0, 255, 153, 0.22), inset 0 0 18px rgba(255, 255, 255, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.center-btn:hover {
  transform: translate(-50%, -50%) scale(1.05);
  box-shadow: 0 0 26px rgba(0, 255, 153, 0.36), inset 0 0 18px rgba(255, 255, 255, 0.1);
}

.menu-item {
  position: absolute;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0);
  border: 1px solid rgba(0, 255, 153, 0.14);
  background: rgba(15, 26, 44, 0.96);
  color: #f4fffa;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition:
    transform 0.48s cubic-bezier(0.2, 0.8, 0.2, 1),
    opacity 0.28s ease,
    box-shadow 0.25s ease,
    color 0.25s ease;
  opacity: 0;
  pointer-events: none;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.05);
}

.menu-item i {
  font-size: 16px;
}

.menu-item span {
  position: absolute;
  top: 64px;
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  white-space: nowrap;
  font-size: 9px;
  letter-spacing: 0.08em;
  color: #d9ffe9;
  opacity: 0;
  transition: opacity 0.24s ease, transform 0.24s ease, color 0.2s ease;
}

.menu-item:hover {
  color: #00ff99;
  box-shadow: 0 0 12px #00ff99, 0 0 24px rgba(0, 255, 153, 0.2);
}

.menu-item:hover span {
  opacity: 1;
  color: #ffffff;
}

.radial-menu.open .menu-item {
  opacity: 1;
  pointer-events: auto;
}

.radial-menu.is-spinning .menu-item {
  transition: opacity 0.18s ease,
              box-shadow 0.25s ease,
              color 0.25s ease;
}

.radial-menu.open .menu-item span {
  opacity: 0.88;
  transform: translateX(-50%) translateY(0);
}

.title {
  position: absolute;
  bottom: -28px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  text-align: center;
  color: #00ff99;
  font-size: 10px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  text-shadow: 0 0 10px rgba(0, 255, 153, 0.18);
}

/* ===============================
   BRAND CONTENT
=============================== */
.content {
  position: absolute;
  left: 6%;
  top: 35%;
  transform: translateY(-50%);
  z-index: 4;

  padding: 0;
  border-radius: 0;

  background: none;
}


/* ===============================
   BRAND ROW (NAME + LEGAL)
=============================== */
.brand-row {
  display: flex;
  align-items: baseline;
  gap: 16px;
  flex-wrap: wrap;
}

.brand-row h1 {
  font-size: 3rem;
  font-weight: 100;
  letter-spacing: 0.3px;
  color: #ffffff;

  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.65);
}

/* ===============================
   PRIVATE LIMITED (RIGHT SIDE)
=============================== */
.legal-tag {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.8px;
  text-transform: uppercase;

  color: rgba(255, 255, 255, 0.75);

  padding-left: 14px;
  border-left: 1px solid rgba(255, 255, 255, 0.35);

  white-space: nowrap;
}

/* ===============================
   TAGLINE
=============================== */
.tagline {
  margin-top: 10px;
  font-size: 1rem;
  opacity: 0.9;

  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.6);
  font-family: 'Courier New', monospace;
  min-height: 1.5rem;
}

.tagline::after {
  content: "|";
  animation: blink 0.7s infinite;
  margin-left: 2px;
}

.tagline.typing-complete::after {
  animation: none;
  opacity: 0;
}

@keyframes blink {
  0%, 49% {
    opacity: 1;
  }
  50%, 100% {
    opacity: 0;
  }
}

/* ===============================
   SATELLITE CONTAINER
=============================== */
.satellite-container {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.satellite {
  width: 480px;
  height: 480px;
  object-fit: contain;
  animation: satelliteFloat 25s ease-in-out infinite,
             panelShimmer 4s ease-in-out infinite;
  pointer-events: auto;
}

.launchpad-message {
  position: absolute;
  top: calc(50% + 250px);
  left: 50%;
  transform: translateX(-50%);
  width: min(760px, calc(100vw - 48px));
  color: #f4fffa;
  font-size: clamp(1rem, 1.55vw, 1.45rem);
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
  text-shadow: 0 0 16px rgba(0, 255, 153, 0.72),
               0 2px 14px rgba(0, 0, 0, 0.72);
}

/* Mobile responsive */
@media (max-width: 1024px) {
  .satellite {
    width: 150px;
    height: 150px;
  }

  .launchpad-message {
    top: calc(50% + 92px);
    width: min(620px, calc(100vw - 40px));
  }
}

@media (max-width: 768px) {
  .satellite {
    width: 120px;
    height: 120px;
  }

  .launchpad-message {
    top: calc(50% + 78px);
    font-size: 0.92rem;
    letter-spacing: 0.06em;
  }
}

@media (max-width: 480px) {
  .satellite {
    width: 100px;
    height: 100px;
  }

  .launchpad-message {
    top: calc(50% + 68px);
    width: calc(100vw - 28px);
    font-size: 0.82rem;
    letter-spacing: 0.04em;
  }
}

@keyframes satelliteFloat {
  0%, 100% {
    transform: translateY(0) scale(1);
    opacity: 0.95;
  }
  50% {
    transform: translateY(3px) scale(1);
    opacity: 0.93;
  }
}

@keyframes panelShimmer {
  0%, 100% {
    filter: brightness(1);
  }
  50% {
    filter: brightness(1.08);
  }
}

/* ===============================
   BACKGROUND SATELLITES
=============================== */
.bg-satellites {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}

.bg-satellite {
  position: absolute;
  width: 90px;
  height: 90px;
  object-fit: contain;
  opacity: 0.4;
}

.bg-satellite:nth-child(1) {
  top: 25%;
  animation: moveLeft 20s linear infinite;
}

.bg-satellite:nth-child(2) {
  top: 70%;
  animation: moveRight 18s linear infinite;
  animation-delay: 2s;
}

@keyframes moveLeft {
  0% {
    left: -80px;
  }
  100% {
    left: 100%;
  }
}

@keyframes moveRight {
  0% {
    right: -80px;
  }
  100% {
    right: 100%;
  }
}

/* ===============================
   SATELLITE TOOLTIP BUBBLE
=============================== */
.satellite-tooltip {
  position: fixed;
  top: -9999px;
  left: -9999px;
  
  background: rgba(0, 255, 120, 0.95);
  color: #000;
  padding: 12px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-align: center;
  white-space: nowrap;
  
  z-index: 15;
  pointer-events: none;
  
  box-shadow: 0 0 20px rgba(0, 255, 120, 0.8),
              0 0 40px rgba(0, 255, 120, 0.4);
  
  animation: heartbeatPulse 1.2s ease-in-out infinite;
  transform-origin: center;
  transition: opacity 0.8s ease-out;
  opacity: 1;
}

.satellite-tooltip.hidden {
  opacity: 0;
  pointer-events: none;
}

@keyframes heartbeatPulse {
  0% {
    transform: scale(1) translateX(-50%);
    box-shadow: 0 0 20px rgba(0, 255, 120, 0.8),
                0 0 40px rgba(0, 255, 120, 0.4);
  }
  15% {
    transform: scale(1.15) translateX(-50%);
    box-shadow: 0 0 30px rgba(0, 255, 120, 1),
                0 0 60px rgba(0, 255, 120, 0.6);
  }
  30% {
    transform: scale(1) translateX(-50%);
    box-shadow: 0 0 20px rgba(0, 255, 120, 0.8),
                0 0 40px rgba(0, 255, 120, 0.4);
  }
  40% {
    transform: scale(1.1) translateX(-50%);
    box-shadow: 0 0 25px rgba(0, 255, 120, 0.9),
                0 0 50px rgba(0, 255, 120, 0.5);
  }
  55% {
    transform: scale(1) translateX(-50%);
    box-shadow: 0 0 20px rgba(0, 255, 120, 0.8),
                0 0 40px rgba(0, 255, 120, 0.4);
  }
  100% {
    transform: scale(1) translateX(-50%);
    box-shadow: 0 0 20px rgba(0, 255, 120, 0.8),
                0 0 40px rgba(0, 255, 120, 0.4);
  }
}

/* ===============================
   INDIA SCAN (SATELLITE PASS)
=============================== */
.india-scan {
  position: absolute;

  /* Anchored to India's center - constrained to borders */
  left: 57%;
  bottom: 40%;
  transform: translate(-50%, 50%);

  width: 380px;
  height: 240px;
  border-radius: 50%;

  background: radial-gradient(
    ellipse,
    rgba(0, 255, 120, 0.7) 0%,
    rgba(0, 255, 120, 0.5) 15%,
    rgba(0, 255, 120, 0.3) 35%,
    rgba(0, 255, 120, 0.15) 55%,
    rgba(0, 255, 120, 0) 75%
  );

  opacity: 0;
  transition: opacity 0.6s ease-in-out;

  filter: blur(16px);
  mix-blend-mode: screen;

  pointer-events: none;
  z-index: 2;
  
  /* Clip to match India's boundaries */
  clip-path: ellipse(45% 40% at 50% 50%);
}

@keyframes scanPulse {
  0%, 100% {
    transform: scale(1);
    filter: blur(18px);
  }
  50% {
    transform: scale(1.08);
    filter: blur(22px);
  }
}

/* ===============================
   INDIA BACKGROUND PING (MASKED TO BORDERS)
=============================== */
.india-ping {
  position: absolute;
  inset: 0;

  background: radial-gradient(
    ellipse at 57% 40%,
    rgba(0, 255, 120, 0.6) 0%,
    rgba(0, 255, 120, 0.4) 15%,
    rgba(0, 255, 120, 0.22) 28%,
    rgba(0, 255, 120, 0.1) 40%,
    rgba(0, 255, 120, 0) 55%
  );

  animation: indiaPing 7s cubic-bezier(0.2, 0.8, 0.2, 1) infinite;

  filter: blur(1.5px);
  mix-blend-mode: screen;

  pointer-events: none;
  z-index: 1;

  /* Geo mask: India boundaries only */
  -webkit-mask-image: url("assets/india-mask-coast.png");
  -webkit-mask-size: cover;
  -webkit-mask-position: center bottom;
  -webkit-mask-repeat: no-repeat;

  mask-image: url("assets/india-mask-coast.png");
  mask-size: cover;
  mask-position: center bottom;
  mask-repeat: no-repeat;
}

/* ===============================
   PING ANIMATION
=============================== */
@keyframes indiaPing {
  0% {
    transform: scale(0.3);
    opacity: 0;
  }
  12% {
    opacity: 0.6;
  }
  45% {
    opacity: 0.35;
  }
  70% {
    transform: scale(6);
    opacity: 0.12;
  }
  100% {
    transform: scale(7);
    opacity: 0;
  }
}

/* ===============================
   CITY PING SIGNALS
=============================== */
.city-pings {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.city-ping {
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(0, 255, 120, 0.85);
  box-shadow: 0 0 12px rgba(0, 255, 120, 0.9),
              0 0 24px rgba(0, 255, 120, 0.7),
              0 0 36px rgba(0, 255, 120, 0.5);
  
  animation: cityPulse 3s ease-in-out infinite;
}

.city-ping::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid rgba(0, 255, 120, 0.6);
  animation: cityRipple 3s ease-out infinite;
}

.city-ping:nth-child(2) {
  animation-delay: 0.5s;
}

.city-ping:nth-child(3) {
  animation-delay: 1s;
}

.city-ping:nth-child(4) {
  animation-delay: 1.5s;
}

.city-ping:nth-child(5) {
  animation-delay: 2s;
}

.city-ping:nth-child(6) {
  animation-delay: 0.3s;
}

.city-ping:nth-child(7) {
  animation-delay: 0.8s;
}

.city-ping:nth-child(8) {
  animation-delay: 1.3s;
}

@keyframes cityPulse {
  0%, 100% {
    opacity: 0.6;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.3);
  }
}

@keyframes cityRipple {
  0% {
    width: 100%;
    height: 100%;
    opacity: 0.8;
  }
  100% {
    width: 300%;
    height: 300%;
    opacity: 0;
  }
}

/* ===============================
   EXTENDED FOOTER
=============================== */
.deep-footer-drawer {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: min(68vh, 520px);
  padding: 92px 24px 38px;
  background: linear-gradient(180deg, rgba(1, 4, 6, 0.18) 0%, rgba(3, 7, 11, 0.84) 18%, rgba(2, 2, 2, 0.98) 100%);
  color: #f3f5f7;
  overflow: hidden;
  transform: translateY(calc(100% - 12px));
  transition: transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
  z-index: 14;
}

.deep-footer-drawer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 10%, rgba(0, 255, 153, 0.08), transparent 30%),
    radial-gradient(circle at 78% 12%, rgba(255, 255, 255, 0.05), transparent 24%);
  opacity: 0.8;
  pointer-events: none;
}

.deep-footer-drawer.is-visible {
  transform: translateY(0);
}

.drawer-grab {
  position: absolute;
  top: 16px;
  left: 50%;
  width: 64px;
  height: 4px;
  border-radius: 999px;
  transform: translateX(-50%);
  background: rgba(159, 255, 218, 0.68);
  box-shadow: 0 0 14px rgba(0, 255, 153, 0.28);
}

.deep-footer-inner {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  padding: 58px 56px 46px;
  background: rgba(0, 0, 0, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.45);
  transform: translateY(80px);
  opacity: 0;
  transition: transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.7s ease;
}

.deep-footer-drawer.is-visible .deep-footer-inner {
  transform: translateY(0);
  opacity: 1;
}

.deep-footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
}

.deep-footer-brand h2,
.deep-footer-column h3 {
  margin: 0 0 18px;
  color: #ffffff;
}

.deep-footer-brand h2 {
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.deep-footer-brand p,
.deep-footer-note {
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.7;
}

.deep-footer-column {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.deep-footer-column h3 {
  font-size: 0.95rem;
  font-weight: 600;
}

.deep-footer-column a,
.deep-footer-links a,
.deep-footer-socials a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  transition: color 0.25s ease, opacity 0.25s ease;
}

.deep-footer-column a:hover,
.deep-footer-links a:hover,
.deep-footer-socials a:hover {
  color: #ffffff;
}

.deep-footer-divider {
  margin: 42px 0 18px;
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
}

.deep-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.deep-footer-links,
.deep-footer-socials {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.deep-footer-socials a {
  font-size: 0.95rem;
  opacity: 0.85;
}

.deep-footer-note {
  margin: 30px 0 0;
  max-width: 720px;
  font-size: 0.82rem;
}

.copyright {
  position: absolute;
  bottom: 18px;
  right: 24px;
  font-size: 0.75rem;
  letter-spacing: 0.4px;
  color: rgba(255, 255, 255, 0.55);
  z-index: 4;
  pointer-events: auto;
}

.copyright a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.copyright a:hover {
  opacity: 0.8;
}
/* ===============================
   MOBILE & TABLET TUNING
=============================== */
@media (max-width: 1024px) {

  .deep-footer-drawer {
    height: min(70vh, 500px);
    padding: 84px 20px 28px;
  }

  .deep-footer-inner {
    padding: 42px 28px 34px;
  }

  .deep-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px 28px;
  }

  /* Shift brand slightly up */
  .content {
    left: 5%;
    top: 42%;
    padding: 18px 22px;
  }

  .brand-row h1 {
    font-size: 2.4rem;
  }

  .legal-tag {
    font-size: 0.8rem;
  }

  .tagline {
    font-size: 0.95rem;
  }
}

/* ===============================
   MOBILE PHONES
=============================== */
@media (max-width: 768px) {

  .deep-footer-drawer {
    height: min(76vh, 560px);
    padding: 76px 16px 22px;
  }

  .deep-footer-inner {
    padding: 34px 20px 28px;
  }

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

  .deep-footer-brand h2 {
    font-size: 1.55rem;
  }

  .deep-footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  /* Center brand for mobile */
  .content {
    left: 50%;
    top: 34%;
    transform: translateX(-50%);
    text-align: center;
    width: min(92vw, 560px);

    padding: 10px 12px;
    background: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.32),
      rgba(0, 0, 0, 0.14),
      rgba(0, 0, 0, 0)
    );
  }


  .brand-row {
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px 12px;
  }

  .brand-row h1 {
    font-size: clamp(1.85rem, 7vw, 2.35rem);
    white-space: nowrap;
  }

  .legal-tag {
    border-left: none;
    padding-left: 0;
    margin-top: 6px;
    display: block;
    font-size: 0.75rem;
  }

  .tagline {
    margin-top: 8px;
    font-size: 0.9rem;
  }

  /* Earth image reposition for mobile */
  .hero {
    background-position: center bottom;
  }

  /* Reduce scan & ping intensity */
  .india-scan {
    width: 260px;
    height: 160px;
    filter: blur(10px);
  }

  .india-ping {
    animation-duration: 8.5s;
  }

  /* Satellite motion toned down */
  #satelliteCanvas {
    opacity: 0.75;
  }

  /* Copyright moves to center bottom */
  .copyright {
    right: 50%;
    transform: translateX(50%);
    bottom: 12px;
    font-size: 0.7rem;
  }

  .radial-menu {
    top: 110px;
    right: 50%;
    left: auto;
    transform: translateX(50%);
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(8, 14, 28, 0.46) 0%, rgba(8, 14, 28, 0.12) 54%, rgba(8, 14, 28, 0) 72%);
  }

  .center-btn {
    width: 52px;
    height: 52px;
    font-size: 17px;
  }

  .menu-item {
    width: 38px;
    height: 38px;
  }

  .menu-item i {
    font-size: 14px;
  }

  .menu-item span {
    top: 48px;
    font-size: 8px;
  }
}

/* ===============================
   VERY SMALL DEVICES
=============================== */
@media (max-width: 480px) {

  .login-btn {
    top: 24px;
    right: 22px;
    padding: 9px 18px;
    font-size: 0.88rem;
  }

  .content {
    top: 33%;
    width: calc(100vw - 28px);
  }

  .brand-row h1 {
    font-size: clamp(1.72rem, 8vw, 2rem);
    white-space: nowrap;
  }

  .tagline {
    font-size: 0.82rem;
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .india-scan {
    width: 220px;
    height: 140px;
  }

  /* Keep Earth visible, avoid crop */
  .hero::before {
    background-size: auto 100%;
    background-position: 44% bottom;
  }

  .radial-menu {
    top: 112px;
    width: 132px;
    height: 132px;
  }

  .center-btn {
    width: 48px;
    height: 48px;
  }

  .title {
    bottom: -22px;
    font-size: 8px;
  }
}
