:root {
  --bg-black: #050505;
  --bg-dark: #0a0a0a;
  --text-white: #f0f0f0;
  --text-gray: #888888;
  --neon-cyan: #00f3ff;
  --neon-purple: #bc13fe;
  --neon-blue: #4d4dff;
  --grid-line: rgba(255, 255, 255, 0.05);
  --border-light: rgba(255, 255, 255, 0.1);

  --font-main: "Rajdhani", sans-serif;
  --font-tech: "Orbitron", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-black);
  color: var(--text-white);
  font-family: var(--font-main);
  overflow-x: hidden;
  line-height: 1.6;
}

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

ul {
  list-style: none;
}

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

/* HEADER */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: rgba(5, 5, 5, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-light);
  z-index: 1000;
}

.header-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-tech);
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.logo-glyph {
  color: var(--neon-cyan);
  font-size: 1.5rem;
  border: 1px solid var(--neon-cyan);
  padding: 2px 5px;
}

.desktop-nav {
  display: flex;
  gap: 40px;
}

.nav-link {
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  position: relative;
  color: var(--text-gray);
}

.nav-link:hover,
.nav-link.active {
  color: var(--text-white);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--neon-purple);
  transition: 0.3s;
  box-shadow: 0 0 10px var(--neon-purple);
}

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

.burger-btn {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
}

.burger-btn .line {
  width: 30px;
  height: 2px;
  background: var(--neon-cyan);
  box-shadow: 0 0 5px var(--neon-cyan);
  transition: 0.3s;
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--bg-black);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transform: translateY(-100%);
  transition: 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}

.mobile-menu.active {
  transform: translateY(0);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 30px;
  text-align: center;
}

.mobile-link {
  font-family: var(--font-tech);
  font-size: 2rem;
  text-transform: uppercase;
  color: var(--text-white);
  letter-spacing: 3px;
  position: relative;
}

.mobile-link:hover {
  color: var(--neon-cyan);
  text-shadow: 0 0 10px var(--neon-cyan);
}

.close-menu {
  position: absolute;
  top: 30px;
  right: 30px;
  background: none;
  border: 1px solid var(--neon-purple);
  color: var(--neon-purple);
  padding: 10px;
  cursor: pointer;
  transition: 0.3s;
}

.close-menu:hover {
  background: var(--neon-purple);
  color: var(--bg-black);
}

/* HERO */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 80px;
}

.hero-bg-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(var(--grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
  background-size: 50px 50px;
  z-index: -1;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  height: 100%;
  position: relative;
}

.ui-panel {
  position: absolute;
  font-family: var(--font-tech);
  font-size: 0.8rem;
  color: var(--neon-blue);
  border: 1px solid var(--neon-blue);
  padding: 5px 10px;
  letter-spacing: 1px;
}

.top-left {
  top: 20px;
  left: 0;
}
.bottom-right {
  bottom: 20px;
  right: 0;
}

.hero-subtitle {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--neon-cyan);
  font-family: var(--font-tech);
  letter-spacing: 2px;
  margin-bottom: 20px;
}

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

.hero-title {
  font-family: var(--font-tech);
  font-size: 4rem;
  line-height: 1.1;
  margin-bottom: 30px;
  text-transform: uppercase;
}

.neon-text {
  color: transparent;
  -webkit-text-stroke: 1px var(--neon-purple);
  text-shadow: 0 0 5px rgba(188, 19, 254, 0.5);
}

.hero-text-block {
  border-left: 2px solid var(--neon-blue);
  padding-left: 20px;
  margin-bottom: 40px;
  max-width: 600px;
}

.section-footer-text p {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 32px;
}

.matrix-text p {
  margin-top: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-text-block p {
  margin-bottom: 15px;
  color: #ccc;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  background: var(--neon-blue);
  color: var(--text-white);
  padding: 15px 40px;
  font-family: var(--font-tech);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  clip-path: polygon(
    10px 0,
    100% 0,
    100% calc(100% - 10px),
    calc(100% - 10px) 100%,
    0 100%,
    0 10px
  );
  transition: 0.3s;
}

.cta-btn:hover {
  background: var(--neon-purple);
  box-shadow: 0 0 20px rgba(188, 19, 254, 0.4);
}

.hero-visual {
  position: relative;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.abstract-glyph {
  font-size: 15rem;
  font-family: var(--font-tech);
  font-weight: 900;
  color: rgba(255, 255, 255, 0.02);
  border: 2px solid rgba(0, 243, 255, 0.2);
  border-radius: 50%;
  width: 400px;
  height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: rotate 20s linear infinite;
}

.vertical-lines {
  position: absolute;
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: space-around;
  z-index: -1;
}

.vertical-lines span {
  width: 1px;
  height: 100%;
  background: linear-gradient(
    to bottom,
    transparent,
    var(--neon-cyan),
    transparent
  );
  opacity: 0.2;
}

/* SECTIONS GENERAL */
.section {
  padding: 100px 0;
  position: relative;
  border-top: 1px solid var(--border-light);
}

.section-title {
  font-family: var(--font-tech);
  font-size: 2.5rem;
  margin-bottom: 60px;
  letter-spacing: 2px;
  position: relative;
  display: inline-block;
}

.section-title::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--neon-cyan);
}

/* S1: NEO CARDS */
.neo-cards-grid .grid-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.neo-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-light);
  padding: 30px;
  transition: 0.3s;
  position: relative;
  overflow: hidden;
}

.neo-card:hover {
  border-color: var(--neon-cyan);
  box-shadow: 0 0 15px rgba(0, 243, 255, 0.1);
  transform: translateY(-5px);
}

.card-icon {
  color: var(--neon-purple);
  margin-bottom: 20px;
  width: 40px;
  height: 40px;
}

.neo-card h3 {
  font-family: var(--font-tech);
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.card-footer {
  margin-top: 20px;
  font-size: 0.8rem;
  color: var(--neon-cyan);
  font-family: var(--font-tech);
}

/* S2: VERTICAL DATA */
.data-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.stats-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.stat-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 10px;
}

.stat-label {
  font-family: var(--font-tech);
  color: var(--text-gray);
}

.stat-val {
  font-family: var(--font-tech);
  font-size: 1.5rem;
  font-weight: 700;
}

.neon-cyan {
  color: var(--neon-cyan);
  text-shadow: 0 0 5px var(--neon-cyan);
}
.neon-purple {
  color: var(--neon-purple);
  text-shadow: 0 0 5px var(--neon-purple);
}
.neon-blue {
  color: var(--neon-blue);
  text-shadow: 0 0 5px var(--neon-blue);
}

/* S3: TIMELINE */
.timeline {
  position: relative;
  padding-left: 50px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 1px;
  background: var(--neon-blue);
  box-shadow: 0 0 5px var(--neon-blue);
}

.timeline-item {
  position: relative;
  margin-bottom: 60px;
}

.time-marker {
  position: absolute;
  left: -70px;
  width: 40px;
  height: 40px;
  background: var(--bg-black);
  border: 1px solid var(--neon-blue);
  color: var(--neon-blue);
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: var(--font-tech);
  font-weight: 700;
}

.time-content {
  background: rgba(255, 255, 255, 0.02);
  padding: 20px;
  border-left: 2px solid var(--neon-purple);
}

/* S4: SKILL MATRIX */
.matrix-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.matrix-cell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px;
  border: 1px solid var(--border-light);
}

.matrix-bar {
  flex-grow: 1;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  position: relative;
}

.matrix-bar .fill {
  height: 100%;
  background: var(--neon-cyan);
  box-shadow: 0 0 5px var(--neon-cyan);
}

/* S5: HOLOGRAM PANELS */
.panels-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.holo-panel {
  background: linear-gradient(135deg, rgba(77, 77, 255, 0.1), transparent);
  border: 1px solid var(--neon-blue);
  padding: 40px;
  text-align: center;
  position: relative;
}

.holo-panel::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(77, 77, 255, 0.05) 3px
  );
  pointer-events: none;
}

.panel-header {
  font-family: var(--font-tech);
  color: var(--neon-blue);
  margin-bottom: 20px;
}

/* S6: DIAGONAL INSIGHT */
.diagonal-insight {
  overflow: hidden;
}

.diagonal-bg {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent 45%,
    rgba(188, 19, 254, 0.1) 50%,
    transparent 55%
  );
  z-index: -1;
}

.insight-content {
  max-width: 600px;
  margin-left: auto;
  text-align: right;
  border-right: 2px solid var(--neon-purple);
  padding-right: 30px;
}

/* S7: NEO BANNER */
.banner-box {
  display: flex;
  align-items: center;
  gap: 50px;
  border: 1px solid var(--border-light);
  padding: 50px;
  background: radial-gradient(
    circle at center,
    rgba(0, 243, 255, 0.1),
    transparent
  );
}

.banner-glyph {
  font-size: 8rem;
  font-family: var(--font-tech);
  color: var(--neon-cyan);
  line-height: 1;
}

.btn-outline {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 30px;
  border: 1px solid var(--neon-cyan);
  color: var(--neon-cyan);
  font-family: var(--font-tech);
  text-transform: uppercase;
  transition: 0.3s;
}

.btn-outline:hover {
  background: var(--neon-cyan);
  color: var(--bg-black);
  box-shadow: 0 0 15px var(--neon-cyan);
}

/* FAQ CONSOLE */
.faq-grid {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 20px;
  border: 1px solid var(--border-light);
  background: rgba(0, 0, 0, 0.5);
}

.faq-question {
  padding: 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-tech);
  color: var(--text-white);
  transition: 0.3s;
}

.faq-question:hover {
  color: var(--neon-cyan);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  padding: 0 20px;
  border-top: 1px solid transparent;
}

.faq-item.active .faq-answer {
  padding: 20px;
  border-top: 1px solid var(--neon-purple);
}

.faq-item.active .faq-question {
  color: var(--neon-purple);
}

/* FORM CONSOLE */
.form-wrapper {
  max-width: 600px;
  margin: 0 auto;
  background: rgba(10, 10, 10, 0.9);
  border: 1px solid var(--neon-blue);
  padding: 40px;
  position: relative;
}

.form-header {
  font-family: var(--font-tech);
  color: var(--neon-blue);
  margin-bottom: 30px;
  font-size: 1.2rem;
}

.blink {
  animation: blink 1s infinite;
}

.input-group {
  position: relative;
  margin-bottom: 20px;
}

.input-group label,
.captcha-group label {
  display: block;
  font-family: var(--font-tech);
  font-size: 0.8rem;
  color: var(--text-gray);
  margin-bottom: 5px;
}

.input-group input,
.captcha-group input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border-light);
  color: var(--text-white);
  padding: 10px 0;
  font-family: var(--font-main);
  font-size: 1.1rem;
  outline: none;
}

.input-group input:focus,
.captcha-group input:focus {
  border-bottom: 1px solid var(--neon-cyan);
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 20px 0;
}

.checkbox-group label {
  font-size: 0.7rem;
  color: var(--text-gray);
  white-space: wrap;
}

.checkbox-group label a {
  color: var(--neon-cyan);
  text-decoration: underline;
}

.hero-content {
  margin-top: 40px;
}

.submit-btn {
  width: 100%;
  background: transparent;
  border: 1px solid var(--neon-cyan);
  color: var(--neon-cyan);
  padding: 15px;
  font-family: var(--font-tech);
  text-transform: uppercase;
  cursor: pointer;
  transition: 0.3s;
}

.submit-btn:hover {
  background: var(--neon-cyan);
  color: var(--bg-black);
  box-shadow: 0 0 20px var(--neon-cyan);
}

/* FOOTER */
.footer {
  border-top: 1px solid var(--neon-purple);
  padding: 60px 0 20px;
  background: linear-gradient(to top, rgba(188, 19, 254, 0.05), transparent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 40px;
}

.footer-logo {
  font-family: var(--font-tech);
  font-size: 1.5rem;
  color: var(--text-white);
  margin-bottom: 20px;
}

.legal-links {
  columns: 2;
}

.legal-links li {
  margin-bottom: 10px;
}

.legal-links a {
  color: var(--text-gray);
  font-size: 0.9rem;
}

.legal-links a:hover {
  color: var(--neon-cyan);
}

.contact-info p {
  color: var(--text-gray);
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.footer h4 {
  font-family: var(--font-tech);
  margin-bottom: 20px;
  color: var(--neon-purple);
}

/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 350px;
  background: var(--bg-dark);
  border: 1px solid var(--neon-cyan);
  padding: 20px;
  z-index: 9999;
  display: none;
  box-shadow: 0 0 20px rgba(0, 243, 255, 0.2);
}

.cookie-content h3 {
  font-family: var(--font-tech);
  color: var(--neon-cyan);
  margin-bottom: 10px;
}

.cookie-content p {
  font-size: 0.9rem;
  color: var(--text-gray);
  margin-bottom: 15px;
}

.cookie-btn {
  background: var(--neon-cyan);
  color: var(--bg-black);
  border: none;
  padding: 8px 20px;
  font-family: var(--font-tech);
  cursor: pointer;
  font-weight: 700;
}

/* ANIMATIONS */
@keyframes pulse {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.2);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .section-title {
    font-size: 1.5rem;
  }
  .hero-title {
    font-size: 3rem;
  }
  .panels-wrapper {
    grid-template-columns: 1fr;
  }
  .banner-box {
    flex-direction: column;
    text-align: center;
  }
  .desktop-nav {
    display: none;
  }
  .burger-btn {
    display: flex;
  }
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-text-block {
    border-left: none;
    padding-left: 0;
    margin: 0 auto 40px;
  }
  .hero-visual {
    display: none;
  }
  .hero-subtitle {
    justify-content: center;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .legal-links {
    columns: 1;
  }
  .neo-cards-grid .grid-wrapper {
    grid-template-columns: 1fr;
  }
  .data-layout {
    grid-template-columns: 1fr;
  }
  .checkbox-group label {
    white-space: normal;
  }
}

.pages {
  padding: 120px 0;
}

.pages-wrap {
  max-width: 1000px;
  padding: 0 20px;
  margin: 0 auto 20px;
}

.pages h1 {
  font-size: 40px;
  font-weight: 900;
  color: var(--accent);
  margin-bottom: 40px;
  text-align: center;
}

.text-wrapper {
  background: #f8fafc;
  padding: 50px 40px;
  border-radius: 20px;
  line-height: 1.8;
}

.text-wrapper h2 {
  font-size: 28px;
  font-weight: 700;
  color: #1e293b;
  margin-top: 40px;
  margin-bottom: 15px;
  border-bottom: 2px solid rgba(99, 102, 241, 0.2);
  padding-bottom: 5px;
}

.text-wrapper h3 {
  color: #000000;
  margin-bottom: 20px;
}

.text-wrapper p {
  color: #64748b;
  margin-bottom: 20px;
}

.text-wrapper ul {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.text-wrapper ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 15px;
  color: #1e293b;
}

.text-wrapper ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  font-size: 20px;
  line-height: 1;
  color: var(--primary);
  top: 0;
}

.text-wrapper strong {
  color: var(--color-error);
}

.text-wrapper a {
  color: #001eff;
  text-decoration: underline;
  font-weight: 600;
}

@media (max-width: 768px) {
  .pages {
    padding: 100px 0 60px;
  }
  .pages h1 {
    font-size: 28px;
    margin-bottom: 30px;
  }
  .text-wrapper {
    padding: 30px 20px;
  }
  .text-wrapper h2 {
    font-size: 24px;
    margin-top: 30px;
  }
}

.text-wrapper ol {
  display: flex;
  flex-direction: column;
  padding: 20px;
  color: #000000;
}

.margin {
  margin: 120px 0 50px;
}
