/* Orbitron */
@font-face {
  font-family: "Orbitron";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/Orbitron.woff2") format("woff2");
}
@font-face {
  font-family: "Orbitron";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/Orbitron.woff2") format("woff2");
}
@font-face {
  font-family: "Orbitron";
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url("../fonts/Orbitron.woff2") format("woff2");
}
/* Rajdhani */
@font-face {
  font-family: "Rajdhani";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("../fonts/Rajdhani.woff2") format("woff2");
}
@font-face {
  font-family: "Rajdhani";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/Rajdhani.woff2") format("woff2");
}
@font-face {
  font-family: "Rajdhani";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/Rajdhani.woff2") format("woff2");
}
/* Variables */
/* Obsidian / Deep Charcoal */
/* Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --fluid-font-base: clamp(1rem, 2vw, 1.2rem);
  --fluid-font-h1: clamp(2.5rem, 5vw, 4rem);
  --fluid-font-h2: clamp(2rem, 4vw, 3rem);
  --fluid-font-h3: clamp(1.5rem, 3vw, 2rem);
}

body {
  background-color: #050505;
  color: #e0e0e0;
  font-family: "Rajdhani", sans-serif;
  font-size: var(--fluid-font-base);
  overflow-x: hidden;
  line-height: 1.6;
  cursor: none; /* Hide default cursor for custom one */
  /* Mesh Gradient Background - Cyan & Electric Blue */
  background-image: radial-gradient(at 10% 10%, rgba(0, 255, 204, 0.08) 0, transparent 50%), radial-gradient(at 90% 20%, rgba(0, 119, 255, 0.1) 0, transparent 50%), radial-gradient(at 50% 80%, rgba(0, 255, 204, 0.05) 0, transparent 60%);
  background-size: 200% 200%;
  animation: gradient-animation 20s ease infinite;
}

@keyframes gradient-animation {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: "Orbitron", sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
}

h1 {
  font-size: var(--fluid-font-h1);
}

h2 {
  font-size: var(--fluid-font-h2);
}

h3 {
  font-size: var(--fluid-font-h3);
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s;
  cursor: none;
}

a:hover {
  color: #00ffcc;
  text-shadow: 0 0 10px rgba(0, 255, 204, 0.5);
}

/* Utilities */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.split-text {
  opacity: 0;
} /* Initial state for animation */
.glass-panel {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  background: rgba(5, 5, 5, 0.7);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.logo {
  font-family: "Orbitron", sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: #fff;
  z-index: 1002;
  text-shadow: 0 0 15px rgba(0, 255, 204, 0.3);
}

/* Connect Wallet Button */
.btn-connect-wallet {
  font-family: "Orbitron", sans-serif;
  background: rgba(0, 119, 255, 0.1);
  border: 1px solid #0077ff;
  color: #00ffcc;
  padding: 10px 20px;
  font-size: 0.9rem;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  clip-path: polygon(10% 0, 100% 0, 100% 70%, 90% 100%, 0 100%, 0 30%);
  position: relative;
  overflow: hidden;
}
.btn-connect-wallet:hover {
  background: rgba(0, 119, 255, 0.3);
  box-shadow: 0 0 20px rgba(0, 119, 255, 0.4);
  text-shadow: 0 0 5px #00ffcc;
}

/* Desktop Menu */
.main-nav {
  display: block;
}

.main-nav ul {
  display: flex;
  gap: 30px;
  list-style: none;
  align-items: center;
}

.main-nav a {
  position: relative;
  padding: 5px 0;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 1px;
}

.main-nav a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 1px;
  bottom: 0;
  left: 0;
  background-color: #00ffcc;
  transition: width 0.3s ease;
  box-shadow: 0 0 8px #00ffcc;
}

.main-nav a:hover::after {
  width: 100%;
}

.lang-switcher {
  z-index: 1002;
  display: flex;
  align-items: center;
}

.lang-switcher a {
  margin-left: 10px;
  opacity: 0.5;
  font-size: 0.8rem;
  padding: 5px;
}

.lang-switcher a.active {
  opacity: 1;
  color: #00ffcc;
  font-weight: bold;
}

/* Hamburger Menu */
.hamburger-btn {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 40px;
  height: 30px;
  background: transparent;
  border: none;
  cursor: none;
  z-index: 1002;
}
.hamburger-btn span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #e0e0e0;
  transition: all 0.3s ease;
}

.mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(5, 5, 5, 0.95);
  backdrop-filter: blur(20px);
  z-index: 1001;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
}
.mobile-overlay.active {
  opacity: 1;
  pointer-events: all;
}
.mobile-overlay ul {
  list-style: none;
  text-align: center;
}
.mobile-overlay li {
  margin: 20px 0;
  opacity: 0;
  transform: translateY(20px);
}
.mobile-overlay a {
  font-family: "Orbitron", sans-serif;
  font-size: 2rem;
  color: #e0e0e0;
  padding: 10px;
  display: block;
}

/* Hero */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px; /* Header offset */
}
.hero-section::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background-image: linear-gradient(rgba(0, 255, 204, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 119, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  transform: perspective(500px) rotateX(60deg);
  z-index: -1;
  animation: grid-move 20s linear infinite;
}

@keyframes grid-move {
  0% {
    transform: perspective(500px) rotateX(60deg) translateY(0);
  }
  100% {
    transform: perspective(500px) rotateX(60deg) translateY(60px);
  }
}
.hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.hero-content {
  flex: 1;
  z-index: 2;
  padding-right: 50px;
}

.hero-section h1 {
  margin-bottom: 20px;
  line-height: 1.1;
  background: linear-gradient(90deg, #fff, #00ffcc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 30px rgba(0, 255, 204, 0.2);
}

.hero-subtitle {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 20px;
}

.seo-loc {
  color: #0077ff;
  font-family: monospace;
  font-size: 0.9rem;
  margin-bottom: 30px;
  opacity: 0.7;
  letter-spacing: 1px;
}

.hero-graphic {
  flex: 1;
  position: relative;
  height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Data Widgets / Glass Cards */
.data-widget {
  background: rgba(10, 10, 10, 0.6);
  border: 1px solid rgba(0, 255, 204, 0.2);
  padding: 15px;
  border-radius: 4px;
  backdrop-filter: blur(10px);
  font-family: "Rajdhani", monospace;
  color: #fff;
  position: absolute;
  box-shadow: 0 0 15px rgba(0, 255, 204, 0.05);
}
.data-widget .label {
  font-size: 0.7rem;
  color: #0077ff;
  text-transform: uppercase;
  display: block;
  margin-bottom: 5px;
}
.data-widget .value {
  font-size: 1.2rem;
  font-weight: bold;
  color: #00ffcc;
}

.widget-1 {
  top: 20%;
  right: 10%;
  width: 150px;
}

.widget-2 {
  bottom: 20%;
  left: 10%;
  width: 180px;
}

.widget-3 {
  top: 50%;
  right: -5%;
  width: 120px;
}

/* Buttons */
.btn-custom {
  display: inline-block;
  background: transparent;
  color: #00ffcc;
  padding: 15px 35px;
  font-family: "Orbitron", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  border: 1px solid #00ffcc;
  transition: all 0.3s ease;
  letter-spacing: 2px;
  cursor: pointer;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.btn-custom::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 255, 204, 0.2), transparent);
  transition: 0.5s;
}
.btn-custom:hover {
  background: rgba(0, 255, 204, 0.1);
  box-shadow: 0 0 25px rgba(0, 255, 204, 0.4);
  transform: translateY(-2px);
  color: #fff;
}
.btn-custom:hover::before {
  left: 100%;
}

/* Expertise / Services Cards */
.expertise-list {
  padding: 50px 0 100px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  justify-content: center;
}

.service-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 40px;
  border-radius: 2px; /* Sharper corners for tech look */
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}
.service-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #00ffcc;
  transition: width 0.4s ease;
}
.service-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(0, 255, 204, 0.3);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.service-card:hover::after {
  width: 100%;
}
.service-card:hover h3 {
  color: #fff;
  text-shadow: 0 0 10px #00ffcc;
}
.service-card h3 {
  color: #00ffcc;
  margin-bottom: 15px;
  transition: color 0.3s;
}

/* Cursor */
.cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 6px;
  height: 6px;
  background-color: #00ffcc;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 9999;
  box-shadow: 0 0 10px #00ffcc;
}

.cursor-outline {
  position: fixed;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(0, 255, 204, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 9999;
  transition: width 0.2s, height 0.2s, background 0.2s;
}

/* Footer */
.site-footer {
  padding: 60px 0;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background: black;
}

/* Media Queries */
@media (max-width: 1024px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
  }
  .hero-content {
    padding-right: 0;
    margin-bottom: 50px;
  }
  .hero-graphic {
    width: 100%;
    height: 400px;
  }
}
@media (max-width: 768px) {
  .main-nav, .btn-connect-wallet {
    display: none;
  } /* Hide desktop nav and connect button on mobile? Or keep button? */
  /* Let's keep button in hamburger or separate?
     For now, hide in header, maybe show in overlay if needed, but hamburger handles nav.
     Wait, prompt says "Connect Wallet button in the header".
     On mobile it might crowd. Let's hide it in header row and maybe add to menu later if requested.
  */
  .hamburger-btn {
    display: flex;
  }
  .hero-section h1 {
    font-size: 2.5rem;
  }
  .data-widget {
    display: none;
  } /* Too cluttered for mobile */
}
/* Page Specifics preserved but updated with new vars implicitly */
.manifesto-item:hover {
  border-left-color: #00ffcc;
}

.reassurance-block {
  background: rgba(0, 255, 204, 0.03);
  border-color: rgba(0, 255, 204, 0.1);
}

.text-accent {
  color: #00ffcc !important;
}

.text-accent-secondary {
  color: #0077ff !important;
}

/* Network Map Graphic CSS (Placeholder for the visual) */
.network-node {
  position: absolute;
  width: 8px;
  height: 8px;
  background: #00ffcc;
  border-radius: 50%;
  box-shadow: 0 0 10px #00ffcc;
  z-index: 2;
}

.network-line {
  position: absolute;
  height: 1px;
  background: rgba(0, 119, 255, 0.5);
  z-index: 1;
  transform-origin: 0 50%;
}

/*# sourceMappingURL=style.css.map */
