/* ===================================
   TASK-X51 LANDING PAGE STYLES
   =================================== */

/* CSS Variables */
:root {
  --cyan: #00f2fa;
  --khaki: #c8c8b4;
  --orange: #ff5101;
  --bg: #0a0a0f;
  --bg-dark: #050508;
  --card: #0d0d14;
  --card2: #111119;
  --border: rgba(0, 242, 250, 0.15);
  --border-orange: rgba(255, 81, 1, 0.2);
  --glow: 0 0 10px rgba(0, 242, 250, 0.3);
  --glow-orange: 0 0 10px rgba(255, 81, 1, 0.3);
  --font-mono: "Share Tech Mono", monospace;
  --font-display: "Orbitron", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-mono);
  background: var(--bg);
  color: var(--khaki);
  overflow-x: hidden;
  line-height: 1.6;
}

/* Scanlines Effect */
.scanlines {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
  background: repeating-linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.15),
    rgba(0, 0, 0, 0.15) 1px,
    transparent 1px,
    transparent 2px
  );
  animation: scanline-flicker 0.15s infinite;
}

@keyframes scanline-flicker {
  0% {
    opacity: 0.9;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.9;
  }
}

/* Boot Screen */
#boot-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  transition:
    opacity 0.8s ease,
    visibility 0.8s ease;
}

#boot-overlay.hidden {
  opacity: 0;
  visibility: hidden;
}

#boot-logo {
  width: 150px;
  height: 150px;
  animation: boot-logo-pulse 2s ease-in-out infinite;
}

@keyframes boot-logo-pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.02);
    opacity: 0.9;
  }
}

#boot-terminal {
  margin-top: 30px;
  font-size: 12px;
  color: var(--cyan);
  text-align: left;
  min-height: 80px;
  width: 300px;
}

#boot-terminal span {
  display: block;
  opacity: 0;
  animation: terminal-typing 0.3s forwards;
}

@keyframes terminal-typing {
  to {
    opacity: 1;
  }
}

#boot-bar {
  width: 300px;
  height: 4px;
  background: rgba(0, 242, 250, 0.1);
  margin-top: 25px;
  border-radius: 2px;
  overflow: hidden;
}

#boot-bar-inner {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--cyan), var(--orange));
  transition: width 0.3s ease;
  box-shadow: var(--glow);
}

/* Navigation */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 15px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1000;
  background: rgba(10, 10, 15, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s ease;
}

.nav.scrolled {
  padding: 10px 40px;
  background: rgba(5, 5, 8, 0.95);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--khaki);
}

.nav-logo svg {
  width: 40px;
  height: 40px;
  filter: drop-shadow(0 0 5px var(--cyan));
}

.logo-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--cyan);
  letter-spacing: 2px;
}

.logo-sub {
  font-size: 9px;
  color: var(--orange);
  letter-spacing: 1px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-links a {
  color: var(--khaki);
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 1px;
  transition: color 0.3s ease;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--cyan);
  transition: width 0.3s ease;
}

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

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

.nav-cta {
  background: linear-gradient(135deg, var(--cyan), #00c8d1);
  color: var(--bg-dark) !important;
  padding: 8px 20px;
  border-radius: 3px;
  font-weight: 600;
}

.nav-cta::after {
  display: none;
}

.nav-cta:hover {
  box-shadow: var(--glow);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.nav-toggle span {
  width: 25px;
  height: 2px;
  background: var(--cyan);
  transition: all 0.3s ease;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 40px 80px;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 50px 50px;
  background-position: center center;
  opacity: 0.3;
  animation: grid-move 20s linear infinite;
}

@keyframes grid-move {
  0% {
    transform: perspective(500px) rotateX(60deg) translateY(0);
  }
  100% {
    transform: perspective(500px) rotateX(60deg) translateY(50px);
  }
}

.hero-content {
  max-width: 800px;
  text-align: center;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 242, 250, 0.1);
  border: 1px solid var(--cyan);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 11px;
  letter-spacing: 1px;
  margin-bottom: 30px;
  animation: badge-pulse 2s ease-in-out infinite;
}

.hero-badge .dot {
  width: 6px;
  height: 6px;
  background: var(--cyan);
  border-radius: 50%;
  animation: dot-blink 1s ease-in-out infinite;
}

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

@keyframes badge-pulse {
  0%,
  100% {
    box-shadow: 0 0 10px rgba(0, 242, 250, 0.2);
  }
  50% {
    box-shadow: 0 0 20px rgba(0, 242, 250, 0.4);
  }
}

.hero-title {
  font-family: var(--font-display);
  font-size: 72px;
  font-weight: 900;
  color: var(--cyan);
  letter-spacing: 8px;
  margin-bottom: 20px;
  text-shadow: 0 0 30px rgba(0, 242, 250, 0.5);
  animation: title-glow 3s ease-in-out infinite;
}

@keyframes title-glow {
  0%,
  100% {
    text-shadow: 0 0 30px rgba(0, 242, 250, 0.5);
  }
  50% {
    text-shadow: 0 0 50px rgba(0, 242, 250, 0.8);
  }
}

.hero-subtitle {
  font-size: 18px;
  color: var(--orange);
  letter-spacing: 3px;
  margin-bottom: 15px;
}

.hero-desc {
  font-size: 16px;
  color: var(--khaki);
  margin-bottom: 40px;
  opacity: 0.9;
}

.hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 3px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.btn svg {
  width: 18px;
  height: 18px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--cyan), #00c8d1);
  color: var(--bg-dark);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 242, 250, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--cyan);
  border: 1px solid var(--cyan);
}

.btn-secondary:hover {
  background: rgba(0, 242, 250, 0.1);
  transform: translateY(-3px);
}

.hero-stats {
  display: flex;
  gap: 50px;
  justify-content: center;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
}

.stat-val {
  display: block;
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--orange);
}

.stat-label {
  font-size: 10px;
  letter-spacing: 2px;
  opacity: 0.7;
}

/* Sections Common */
section {
  padding: 100px 40px;
  position: relative;
}

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

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 242, 250, 0.1);
  border: 1px solid var(--cyan);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--cyan);
  margin-bottom: 20px;
}

.section-badge.orange {
  background: rgba(255, 81, 1, 0.1);
  border-color: var(--orange);
  color: var(--orange);
}

.section-badge.cyan {
  background: rgba(0, 242, 250, 0.1);
  border-color: var(--cyan);
  color: var(--cyan);
}

.section-badge svg {
  width: 14px;
  height: 14px;
}

.section-title {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 700;
  color: var(--khaki);
  margin-bottom: 15px;
  letter-spacing: 3px;
}

.section-title .cyan {
  color: var(--cyan);
}

.section-title .orange {
  color: var(--orange);
}

.section-desc {
  font-size: 15px;
  opacity: 0.8;
  line-height: 1.8;
}

/* About Matrix Section (For Investors) */
.about-matrix {
  background: linear-gradient(180deg, var(--bg-dark) 0%, var(--card) 100%);
  padding: 100px 40px;
}

.am-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.am-content .section-badge {
  margin-bottom: 20px;
}

.am-intro {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 30px;
  padding-left: 20px;
  border-left: 2px solid var(--orange);
}

.am-history {
  margin-bottom: 35px;
}

.am-history h3 {
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--cyan);
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.am-history p {
  font-size: 13px;
  line-height: 1.8;
  opacity: 0.85;
  margin-bottom: 12px;
}

.am-quadrants {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 35px;
}

.amq-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 15px;
  background: var(--card2);
  border: 1px solid var(--border);
  border-radius: 6px;
  transition: all 0.3s ease;
}

.amq-item:hover {
  border-color: var(--cyan);
  transform: translateX(5px);
}

.amq-icon {
  width: 45px;
  height: 45px;
  flex-shrink: 0;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.amq-icon svg {
  width: 24px;
  height: 24px;
}

.amq-icon.q1 {
  background: rgba(255, 81, 1, 0.15);
}

.amq-icon.q1 svg {
  stroke: var(--orange);
}

.amq-icon.q2 {
  background: rgba(0, 242, 250, 0.15);
}

.amq-icon.q2 svg {
  stroke: var(--cyan);
}

.amq-icon.q3 {
  background: rgba(245, 197, 66, 0.15);
}

.amq-icon.q3 svg {
  stroke: #f5c542;
}

.amq-icon.q4 {
  background: rgba(102, 102, 102, 0.15);
}

.amq-icon.q4 svg {
  stroke: #666;
}

.amq-text h4 {
  font-family: var(--font-display);
  font-size: 12px;
  color: var(--khaki);
  letter-spacing: 1px;
  margin-bottom: 5px;
}

.amq-text p {
  font-size: 11px;
  opacity: 0.75;
  line-height: 1.5;
}

.am-stats {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.ams-item {
  text-align: center;
}

.ams-val {
  display: block;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--cyan);
}

.ams-label {
  font-size: 9px;
  letter-spacing: 1px;
  opacity: 0.6;
}

/* Matrix Visual */
.am-visual {
  position: relative;
}

.amv-diagram {
  position: relative;
  margin-bottom: 30px;
}

.amv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  aspect-ratio: 1;
  max-width: 400px;
  margin: 0 auto;
}

.amv-q {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  position: relative;
  transition: all 0.3s ease;
}

.amv-q:hover {
  transform: scale(1.05);
}

.amv-label {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  opacity: 0.3;
}

.amv-desc {
  font-size: 11px;
  letter-spacing: 2px;
  font-weight: 600;
  margin-top: 10px;
}

.amv-q.q1 {
  background: linear-gradient(
    135deg,
    rgba(255, 81, 1, 0.2),
    rgba(255, 81, 1, 0.1)
  );
  border: 1px solid rgba(255, 81, 1, 0.4);
}

.amv-q.q1 .amv-desc {
  color: var(--orange);
}

.amv-q.q2 {
  background: linear-gradient(
    135deg,
    rgba(0, 242, 250, 0.2),
    rgba(0, 242, 250, 0.1)
  );
  border: 1px solid rgba(0, 242, 250, 0.4);
}

.amv-q.q2 .amv-desc {
  color: var(--cyan);
}

.amv-q.q3 {
  background: linear-gradient(
    135deg,
    rgba(245, 197, 66, 0.2),
    rgba(245, 197, 66, 0.1)
  );
  border: 1px solid rgba(245, 197, 66, 0.4);
}

.amv-q.q3 .amv-desc {
  color: #f5c542;
}

.amv-q.q4 {
  background: linear-gradient(
    135deg,
    rgba(102, 102, 102, 0.2),
    rgba(102, 102, 102, 0.1)
  );
  border: 1px solid rgba(102, 102, 102, 0.4);
}

.amv-q.q4 .amv-desc {
  color: #666;
}

.amv-axis {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.amv-axis-v-top,
.amv-axis-v-bottom,
.amv-axis-h-left,
.amv-axis-h-right {
  position: absolute;
  font-size: 9px;
  letter-spacing: 2px;
  opacity: 0.5;
}

.amv-axis-v-top {
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--cyan);
}

.amv-axis-v-bottom {
  bottom: -25px;
  left: 50%;
  transform: translateX(-50%);
  color: #666;
}

.amv-axis-h-left {
  left: -70px;
  top: 25%;
  color: var(--orange);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.amv-axis-h-right {
  right: -70px;
  top: 25%;
  color: #999;
  writing-mode: vertical-rl;
}

.amv-quote {
  background: var(--card2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 25px;
  text-align: center;
  position: relative;
}

.amv-quote svg {
  width: 40px;
  height: 40px;
  margin-bottom: 15px;
  color: var(--orange);
}

.amv-quote p {
  font-size: 13px;
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 15px;
  opacity: 0.9;
}

.amv-quote span {
  font-size: 11px;
  color: var(--cyan);
  letter-spacing: 1px;
}

/* Features Section */
.features {
  background: var(--card);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  max-width: 1400px;
  margin: 0 auto;
}

@media (max-width: 1200px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

.feature-card {
  background: var(--card2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 30px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--cyan), var(--orange));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
  border-color: var(--cyan);
  box-shadow: 0 10px 40px rgba(0, 242, 250, 0.15);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.card-icon {
  width: 50px;
  height: 50px;
  background: rgba(0, 242, 250, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.card-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--cyan);
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--cyan);
  margin-bottom: 12px;
  letter-spacing: 1px;
}

.feature-card p {
  font-size: 13px;
  opacity: 0.8;
  margin-bottom: 20px;
  line-height: 1.7;
}

.feature-list {
  list-style: none;
  margin-bottom: 20px;
}

.feature-list li {
  font-size: 11px;
  padding: 6px 0;
  padding-left: 20px;
  position: relative;
  opacity: 0.7;
}

.feature-list li::before {
  content: "▸";
  position: absolute;
  left: 0;
  color: var(--orange);
}

.feature-preview {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 15px;
  margin-top: 20px;
}

/* Matrix Preview */
.fp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.fp-q {
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 600;
  border-radius: 3px;
  position: relative;
}

.fp-q span {
  z-index: 1;
}

.fp-q::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 3px;
  opacity: 0.3;
}

.fp-q.q1 {
  background: rgba(255, 81, 1, 0.2);
}
.fp-q.q1::after {
  background: var(--orange);
}
.fp-q.q2 {
  background: rgba(0, 242, 250, 0.2);
}
.fp-q.q2::after {
  background: var(--cyan);
}
.fp-q.q3 {
  background: rgba(245, 197, 66, 0.2);
}
.fp-q.q3::after {
  background: #f5c542;
}
.fp-q.q4 {
  background: rgba(102, 102, 102, 0.2);
}
.fp-q.q4::after {
  background: #666;
}

/* Kanban Preview */
.kp-cols {
  display: flex;
  gap: 6px;
}

.kp-col {
  flex: 1;
  height: 60px;
  background: rgba(0, 242, 250, 0.05);
  border: 1px solid var(--border);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  color: var(--cyan);
}

/* Calendar Preview */
.cp-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.cp-day {
  height: 35px;
  background: rgba(0, 242, 250, 0.05);
  border: 1px solid var(--border);
  border-radius: 3px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  position: relative;
}

.cp-task {
  width: 4px;
  height: 4px;
  background: var(--orange);
  border-radius: 50%;
  margin-top: 2px;
}

/* Planner Preview */
.pp-timeline {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.pp-slot {
  height: 25px;
  background: rgba(0, 242, 250, 0.05);
  border: 1px solid var(--border);
  border-radius: 3px;
  display: flex;
  align-items: center;
  padding: 0 10px;
  font-size: 9px;
  position: relative;
}

.pp-slot.active {
  background: rgba(255, 81, 1, 0.15);
  border-color: var(--orange);
}

.pp-task {
  position: absolute;
  right: 10px;
  width: 30px;
  height: 4px;
  background: var(--cyan);
  border-radius: 2px;
}

/* Additional Features */
.additional-features {
  max-width: 1000px;
  margin: 60px auto 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.feature-row {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background: var(--card2);
  border: 1px solid var(--border);
  border-radius: 6px;
  transition: all 0.3s ease;
}

.feature-row:hover {
  border-color: var(--cyan);
  transform: translateX(5px);
}

.feature-icon-box {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background: rgba(255, 81, 1, 0.1);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon-box svg {
  width: 22px;
  height: 22px;
  stroke: var(--orange);
}

.feature-text h4 {
  font-size: 13px;
  color: var(--cyan);
  margin-bottom: 5px;
  letter-spacing: 1px;
}

.feature-text p {
  font-size: 12px;
  opacity: 0.7;
  line-height: 1.5;
}

/* Network Section */
.network {
  background: linear-gradient(180deg, var(--bg) 0%, var(--card) 100%);
}

.network-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto 60px;
}

.network-card {
  background: var(--card2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 35px;
  transition: all 0.3s ease;
  position: relative;
}

.network-card:hover {
  transform: translateY(-5px);
  border-color: var(--cyan);
  box-shadow: 0 10px 40px rgba(0, 242, 250, 0.1);
}

.network-card.featured {
  border-color: var(--cyan);
  background: linear-gradient(
    135deg,
    rgba(0, 242, 250, 0.05),
    rgba(0, 242, 250, 0.1)
  );
}

.network-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--cyan);
  color: var(--bg-dark);
  font-size: 9px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: 1px;
}

.nc-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
}

.nc-icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--orange);
}

.nc-icon.cyan svg {
  stroke: var(--cyan);
}

.network-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--khaki);
  margin-bottom: 12px;
}

.network-card p {
  font-size: 13px;
  opacity: 0.8;
  margin-bottom: 20px;
  line-height: 1.7;
}

.network-card ul {
  list-style: none;
}

.network-card li {
  font-size: 11px;
  padding: 6px 0;
  padding-left: 18px;
  position: relative;
  opacity: 0.7;
}

.network-card li::before {
  content: "▹";
  position: absolute;
  left: 0;
  color: var(--cyan);
}

/* Network Diagram */
.network-diagram {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px;
  background: var(--card2);
  border: 1px solid var(--border);
  border-radius: 8px;
}

.nd-title {
  text-align: center;
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--orange);
  margin-bottom: 30px;
}

.nd-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.nd-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.nd-node svg {
  width: 50px;
  height: 50px;
  stroke: var(--cyan);
}

.nd-node span {
  font-size: 10px;
  letter-spacing: 1px;
}

.nd-node.center svg {
  stroke: var(--orange);
}

.nd-connection {
  width: 100px;
  height: 20px;
}

.nd-connection svg {
  width: 100%;
  height: 100%;
  stroke: var(--border);
}

.nd-caption {
  text-align: center;
  font-size: 10px;
  opacity: 0.6;
  margin-top: 25px;
  letter-spacing: 1px;
}

/* Roadmap Section */
.roadmap {
  background: var(--card);
}

.roadmap-timeline {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.roadmap-timeline::before {
  content: "";
  position: absolute;
  left: 30px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(
    180deg,
    var(--orange),
    var(--cyan),
    rgba(0, 242, 250, 0.2)
  );
}

.timeline-item {
  display: flex;
  gap: 30px;
  padding-bottom: 50px;
  position: relative;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.ti-marker {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  background: var(--bg);
  border: 2px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.ti-marker svg {
  width: 24px;
  height: 24px;
  stroke: var(--orange);
}

.ti-marker.pulse {
  border-color: var(--cyan);
  animation: marker-pulse 2s ease-in-out infinite;
}

.ti-marker.pulse svg {
  stroke: var(--cyan);
}

@keyframes marker-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(0, 242, 250, 0.4);
  }
  50% {
    box-shadow: 0 0 0 15px rgba(0, 242, 250, 0);
  }
}

.ti-marker span {
  font-size: 20px;
  color: var(--khaki);
}

.ti-content {
  flex: 1;
  background: var(--card2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 25px;
  transition: all 0.3s ease;
}

.ti-content:hover {
  border-color: var(--cyan);
  transform: translateX(10px);
}

.ti-version {
  font-size: 10px;
  color: var(--orange);
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.ti-version.current {
  color: var(--cyan);
}

.ti-content h3 {
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--khaki);
  margin-bottom: 12px;
}

.ti-content ul {
  list-style: none;
}

.ti-content li {
  font-size: 12px;
  padding: 4px 0;
  padding-left: 15px;
  position: relative;
  opacity: 0.7;
}

.ti-content li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--cyan);
}

.roadmap-cta {
  text-align: center;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

.roadmap-cta p {
  font-size: 14px;
  margin-bottom: 20px;
}

.btn-outline {
  background: transparent;
  color: var(--cyan);
  border: 1px solid var(--cyan);
}

.btn-outline:hover {
  background: rgba(0, 242, 250, 0.1);
}

.btn-outline svg {
  width: 20px;
  height: 20px;
}

/* Tech Stack Section */
.tech {
  background: var(--bg);
}

/* Investment Section */
.investment {
  background: linear-gradient(180deg, var(--card) 0%, var(--bg-dark) 100%);
}

.invest-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.invest-card {
  background: var(--card2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 30px;
  transition: all 0.3s ease;
  position: relative;
}

.invest-card:hover {
  border-color: var(--cyan);
  transform: translateY(-5px);
}

.invest-card.featured {
  border-color: var(--orange);
  background: linear-gradient(
    135deg,
    rgba(255, 81, 1, 0.05),
    rgba(255, 81, 1, 0.1)
  );
}

.monetization-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--orange);
  color: var(--bg-dark);
  font-size: 8px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: 1px;
}

.invest-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 20px;
}

.invest-icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--cyan);
}

.invest-card h3 {
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--khaki);
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.invest-stat {
  display: block;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.invest-val {
  display: block;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--cyan);
  margin-bottom: 8px;
}

.invest-card.featured .invest-val {
  color: var(--orange);
}

.invest-label {
  font-size: 11px;
  opacity: 0.6;
  letter-spacing: 0.5px;
}

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

.invest-list li {
  font-size: 12px;
  padding: 6px 0;
  padding-left: 18px;
  position: relative;
  opacity: 0.75;
}

.invest-list li::before {
  content: "▹";
  position: absolute;
  left: 0;
  color: var(--orange);
}

/* Competition Table */
.competition-section {
  margin-top: 40px;
}

.comp-title {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--khaki);
  text-align: center;
  margin-bottom: 25px;
  letter-spacing: 2px;
}

.comp-table {
  background: var(--card2);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}

.comp-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  border-bottom: 1px solid var(--border);
}

.comp-row:last-child {
  border-bottom: none;
}

.comp-row.header {
  background: rgba(0, 242, 250, 0.05);
}

.comp-cell {
  padding: 15px 12px;
  font-size: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.comp-cell:first-child {
  justify-content: flex-start;
  font-weight: 600;
  color: var(--khaki);
}

.comp-cell.highlight {
  background: rgba(0, 242, 250, 0.1);
  color: var(--cyan);
  font-weight: 600;
}

/* Contact Section */
.contact {
  background: var(--bg-dark);
  padding: 100px 40px;
}

.contact-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.contact-content .section-badge {
  margin-bottom: 20px;
}

.contact-title {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--khaki);
  margin-bottom: 15px;
  letter-spacing: 2px;
}

.contact-desc {
  font-size: 14px;
  opacity: 0.8;
  margin-bottom: 35px;
  line-height: 1.7;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 35px;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  background: var(--card2);
  border: 1px solid var(--border);
  border-radius: 6px;
  transition: all 0.3s ease;
}

.contact-method:hover {
  border-color: var(--cyan);
  transform: translateX(5px);
}

.cm-icon {
  width: 45px;
  height: 45px;
  flex-shrink: 0;
  background: rgba(0, 242, 250, 0.1);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cm-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--cyan);
}

.cm-text h4 {
  font-size: 10px;
  color: var(--orange);
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.cm-text a,
.cm-text p {
  font-size: 13px;
  color: var(--khaki);
  text-decoration: none;
  transition: color 0.3s ease;
}

.cm-text a:hover {
  color: var(--cyan);
}

.contact-cta {
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.contact-cta p {
  font-size: 13px;
  margin-bottom: 15px;
  opacity: 0.8;
}

/* Contact Visual */
.contact-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
}

.cv-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.2;
}

#cv-logo {
  width: 250px;
  height: 250px;
  z-index: 2;
  animation: logo-float 4s ease-in-out infinite;
}

.cv-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
}

/* Tech Stack Section */
.tech {
  background: var(--bg);
}

.tech-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  visibility: visible !important;
  opacity: 1 !important;
}

.tech-card {
  background: var(--card2);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 25px;
  text-align: center;
  transition: all 0.3s ease;
  visibility: visible !important;
  opacity: 1 !important;
}

.tech-card:hover {
  border-color: var(--cyan);
  transform: translateY(-5px);
}

.tech-icon {
  font-size: 36px;
  margin-bottom: 15px;
}

.tech-card h4 {
  font-family: var(--font-display);
  font-size: 13px;
  color: var(--cyan);
  margin-bottom: 8px;
  letter-spacing: 1px;
}

.tech-card p {
  font-size: 11px;
  opacity: 0.7;
  line-height: 1.5;
}

/* Tech Details */
.tech-details {
  max-width: 1200px;
  margin-top: 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.tech-detail-card {
  background: var(--card2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 30px;
}

.tdc-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.tdc-header svg {
  width: 30px;
  height: 30px;
  stroke: var(--orange);
}

.tdc-header h3 {
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--khaki);
  letter-spacing: 1px;
}

.tdc-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.tdc-item h4 {
  font-size: 12px;
  color: var(--cyan);
  margin-bottom: 8px;
  letter-spacing: 1px;
}

.tdc-item p {
  font-size: 12px;
  opacity: 0.75;
  line-height: 1.6;
}

/* Tech Comparison */
.tech-comparison {
  background: var(--card2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 30px;
}

.tech-comparison h3 {
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--khaki);
  text-align: center;
  margin-bottom: 30px;
  letter-spacing: 1px;
}

.tc-grid {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.tc-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tc-label {
  font-size: 11px;
  color: var(--khaki);
  opacity: 0.8;
  letter-spacing: 1px;
}

.tc-bar-wrap {
  background: var(--bg);
  border-radius: 4px;
  height: 35px;
  overflow: hidden;
  position: relative;
}

.tc-bar {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 15px;
  font-size: 11px;
  font-weight: 600;
  border-radius: 4px;
  transition: width 1s ease;
}

.tc-bar.tauri {
  width: 30%;
  background: linear-gradient(90deg, var(--cyan), #00c8d1);
  color: var(--bg-dark);
}

.tc-bar.electron {
  width: 100%;
  background: linear-gradient(90deg, #666, #999);
  color: var(--bg-dark);
}

.tc-note {
  font-size: 10px;
  opacity: 0.6;
  text-align: right;
}

/* Animation for tech cards */
.tech-card.animate-in,
.feature-card.animate-in,
.network-card.animate-in,
.timeline-item.animate-in {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* Download Section */
.download {
  background: linear-gradient(180deg, var(--card) 0%, var(--bg-dark) 100%);
}

.download-card {
  max-width: 1000px;
  margin: 0 auto;
  background: var(--card2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.download-card::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(0, 242, 250, 0.1), transparent 70%);
  animation: download-glow 4s ease-in-out infinite;
}

@keyframes download-glow {
  0%,
  100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}

.download-content {
  position: relative;
  z-index: 1;
}

.download-content h2 {
  font-family: var(--font-display);
  font-size: 36px;
  color: var(--cyan);
  margin-bottom: 15px;
  letter-spacing: 2px;
}

.download-content > p {
  font-size: 14px;
  opacity: 0.8;
  margin-bottom: 30px;
  line-height: 1.7;
}

.download-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 25px;
}

.btn-large {
  padding: 18px 35px;
  font-size: 14px;
}

.btn-sub {
  display: block;
  font-size: 9px;
  opacity: 0.7;
  margin-top: 3px;
  letter-spacing: 0;
}

.download-info {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.di-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
}

.di-item svg {
  width: 14px;
  height: 14px;
  stroke: var(--orange);
}

.download-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
}

#dv-logo {
  width: 200px;
  height: 200px;
  z-index: 2;
  animation: logo-float 3s ease-in-out infinite;
}

@keyframes logo-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

.dv-circle {
  position: absolute;
  border: 1px dashed var(--border);
  border-radius: 50%;
  animation: circle-rotate 20s linear infinite;
}

.dv-circle:nth-child(1) {
  width: 250px;
  height: 250px;
  border-color: rgba(0, 242, 250, 0.2);
}

.dv-circle:nth-child(2) {
  width: 300px;
  height: 300px;
  border-color: rgba(255, 81, 1, 0.15);
  animation-direction: reverse;
}

.dv-circle:nth-child(3) {
  width: 350px;
  height: 350px;
  border-color: rgba(0, 242, 250, 0.1);
}

@keyframes circle-rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Footer */
.site-footer {
  background: var(--bg-dark);
  padding: 50px 40px 20px;
  border-top: 1px solid var(--border);
}

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

.footer-brand {
  display: flex;
  align-items: center;
  gap: 15px;
}

.footer-brand svg {
  width: 45px;
  height: 45px;
}

.footer-title {
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--cyan);
  letter-spacing: 2px;
}

.footer-sub {
  font-size: 9px;
  color: var(--orange);
  letter-spacing: 1px;
}

.footer-links {
  display: flex;
  gap: 25px;
}

.footer-links a {
  color: var(--khaki);
  text-decoration: none;
  font-size: 11px;
  letter-spacing: 1px;
  transition: color 0.3s ease;
}

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

.footer-status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  letter-spacing: 1px;
}

.status-dot {
  width: 8px;
  height: 8px;
  background: var(--cyan);
  border-radius: 50%;
  animation: status-blink 2s ease-in-out infinite;
}

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

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
  font-size: 10px;
  opacity: 0.5;
  margin: 3px 0;
}

/* Landing Status Bar */
.landing-status-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--bg-dark);
  border-top: 1px solid var(--border);
  padding: 8px 40px;
  z-index: 100;
}

.lsb-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.lsb-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  letter-spacing: 1px;
}

.lsb-dot {
  width: 6px;
  height: 6px;
  background: var(--cyan);
  border-radius: 50%;
}

.lsb-time {
  font-family: var(--font-display);
  font-size: 12px;
  color: var(--orange);
}

/* Responsive */
@media (max-width: 900px) {
  .hero-title {
    font-size: 48px;
    letter-spacing: 4px;
  }

  .am-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .amv-axis-h-left,
  .amv-axis-h-right {
    display: none;
  }

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

  .comp-table {
    overflow-x: auto;
  }

  .comp-row {
    grid-template-columns: 1.5fr 1fr 1fr;
  }

  .comp-row .comp-cell:nth-child(4),
  .comp-row .comp-cell:nth-child(5) {
    display: none;
  }

  .contact-card {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-visual {
    min-height: 300px;
  }

  .tech-details {
    grid-template-columns: 1fr;
  }

  .nav-links {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: var(--bg-dark);
    flex-direction: column;
    padding: 30px;
    gap: 20px;
    transform: translateY(-150%);
    transition: transform 0.3s ease;
    border-bottom: 1px solid var(--border);
  }

  .nav-links.active {
    transform: translateY(0);
  }

  .nav-toggle {
    display: flex;
  }

  .download-card {
    grid-template-columns: 1fr;
    padding: 40px;
    gap: 40px;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .hero {
    padding: 100px 20px 60px;
  }

  .hero-title {
    font-size: 32px;
    letter-spacing: 2px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .hero-stats {
    gap: 30px;
  }

  section {
    padding: 60px 20px;
  }

  .section-title {
    font-size: 28px;
  }

  .nav {
    padding: 15px 20px;
  }

  .landing-status-bar {
    padding: 8px 20px;
  }
}

/* Utility Classes */
.hidden {
  display: none !important;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.text-cyan {
  color: var(--cyan);
}

.text-orange {
  color: var(--orange);
}
