/* LadderCloud style.css */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;800&family=Noto+Sans+SC:wght@300;400;700&display=swap');

:root {
  --color-bg: #05070b;
  --color-surface: #0b0f19;
  --color-surface-hover: #172554;
  --color-primary: #06b6d4; /* Cyan */
  --color-primary-rgb: 6, 182, 212;
  --color-primary-glow: rgba(6, 182, 212, 0.2);
  --color-secondary: #2563eb; /* Blue */
  --color-secondary-rgb: 37, 99, 235;
  --color-text-white: #ffffff;
  --color-text-gray: #94a3b8;
  --color-border: #1e293b;
  --font-family: 'Outfit', 'Noto Sans SC', sans-serif;
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  background-color: var(--color-bg);
}

body {
  font-family: var(--font-family);
  color: var(--color-text-white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Background Image Overlay (Instruction 5) */
.background-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: radial-gradient(circle at 50% 50%, rgba(5, 7, 11, 0.5) 0%, rgba(5, 7, 11, 0.98) 100%), url('../images/ladder_cloud_bg.jpg') no-repeat center center fixed;
  background-size: cover;
  z-index: -10;
  pointer-events: none;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--color-bg);
}
::-webkit-scrollbar-thumb {
  background: var(--color-border);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-primary);
}

/* Cursor Trail Particles */
.trail-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  background: linear-gradient(135deg, #ffffff, var(--color-primary));
  box-shadow: 0 0 10px var(--color-primary), 0 0 20px var(--color-secondary);
  transform: translate(-50%, -50%);
  opacity: 0.8;
  mix-blend-mode: screen;
}

/* Header & Navigation */
header {
  position: fixed;
  top: 36px; /* Shift down to make room for top live stats bar */
  left: 0;
  width: 100%;
  padding: 1.1rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  background: rgba(5, 7, 11, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition-smooth);
}

/* Top Live Stats Bar (Instruction 3) */
.top-stats-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 36px;
  background: linear-gradient(90deg, rgba(6, 182, 212, 0.18) 0%, rgba(37, 99, 235, 0.18) 100%);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  z-index: 1001;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
  font-family: monospace;
  font-size: 0.75rem;
  color: #cbd5e1;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.stat-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #10b981;
  box-shadow: 0 0 8px #10b981;
  animation: blink 1.5s infinite alternate;
}

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

.stat-num-val {
  font-weight: 700;
  color: var(--color-primary);
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.logo-img {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  filter: drop-shadow(0 0 6px rgba(var(--color-primary-rgb), 0.6));
}

.logo-text {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  background: linear-gradient(135deg, #ffffff 40%, #00d2ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

nav {
  display: flex;
  gap: 2rem;
}

nav a {
  color: var(--color-text-gray);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: var(--transition-smooth);
  position: relative;
  padding: 0.25rem 0;
  cursor: pointer;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-primary);
  transition: var(--transition-smooth);
}

nav a:hover {
  color: var(--color-text-white);
}

nav a:hover::after {
  width: 100%;
}

.btn-header {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  color: var(--color-text-white);
  padding: 0.55rem 1.4rem;
  border-radius: 9999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 15px rgba(var(--color-primary-rgb), 0.3);
  transition: var(--transition-smooth);
  cursor: pointer;
}

.btn-header:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(var(--color-primary-rgb), 0.5);
}

/* COMPACT SPACING FOR SECTIONS */
section {
  padding: 5.5rem 5% 2.5rem;
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
}

/* Text Gradient Effect */
.gradient-text {
  background: linear-gradient(135deg, #ffffff 30%, var(--color-primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* H1 Hero Section - Compact Height */
.hero {
  min-height: 65vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-top: 8.5rem;
}

.hero-tag {
  background: rgba(6, 182, 212, 0.1);
  border: 1px solid rgba(6, 182, 212, 0.3);
  color: #00f5ff;
  padding: 0.4rem 1.1rem;
  border-radius: 9999px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  animation: pulseGlow 2s infinite alternate;
}

@keyframes pulseGlow {
  0% { box-shadow: 0 0 5px rgba(6, 182, 212, 0.1); }
  100% { box-shadow: 0 0 15px rgba(6, 182, 212, 0.3); }
}

.hero h1 {
  font-size: 3.25rem;
  line-height: 1.15;
  font-weight: 800;
  margin-bottom: 1.25rem;
  max-width: 800px;
  letter-spacing: -0.5px;
}

.hero p {
  font-size: 1.15rem;
  color: var(--color-text-gray);
  max-width: 600px;
  margin-bottom: 2.25rem;
  font-weight: 300;
}

.hero-cta {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  color: var(--color-text-white);
  padding: 0.95rem 2.2rem;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.05rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 20px rgba(var(--color-primary-rgb), 0.35);
  transition: var(--transition-smooth);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(var(--color-primary-rgb), 0.5);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--color-text-white);
  padding: 0.95rem 2.2rem;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05rem;
  border: 1px solid var(--color-border);
  transition: var(--transition-smooth);
  cursor: pointer;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.3);
}

/* H2 Section Header */
.section-header {
  margin-bottom: 2.5rem;
  text-align: center;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.section-header p {
  color: var(--color-text-gray);
  font-size: 1.05rem;
}

/* H2 NEW TEMPLATE (Instruction 1): Holographic Terminal Console Reader */
.terminal-reader-container {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2.5rem;
  background: rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(20px);
  border: 1px solid var(--color-border);
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.7);
  align-items: stretch;
}

.terminal-directory {
  display: flex;
  flex-direction: column;
  background: rgba(2, 6, 23, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 1.5rem;
}

.directory-title {
  font-family: monospace;
  font-size: 0.75rem;
  color: var(--color-primary);
  letter-spacing: 2px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 0.75rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.directory-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.directory-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid rgba(255, 255, 255, 0.02);
  border-radius: 10px;
  transition: var(--transition-smooth);
  cursor: pointer;
  position: relative;
}

.directory-item:hover {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(6, 182, 212, 0.3);
}

.dir-indicator {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #475569;
  transition: var(--transition-smooth);
}

.dir-num {
  font-family: monospace;
  font-size: 0.9rem;
  font-weight: 700;
  color: #475569;
}

.dir-name {
  flex-grow: 1;
  font-size: 0.9rem;
  font-weight: 600;
  color: #cbd5e1;
  text-align: left;
}

.dir-size {
  font-family: monospace;
  font-size: 0.75rem;
  color: #64748b;
}

/* Directory active state */
.directory-item.active {
  background: rgba(6, 182, 212, 0.08);
  border-color: var(--color-primary);
  box-shadow: 0 0 15px rgba(6, 182, 212, 0.15);
}

.directory-item.active .dir-indicator {
  background: var(--color-primary);
  box-shadow: 0 0 8px var(--color-primary);
}

.directory-item.active .dir-num {
  color: var(--color-primary);
}

.directory-item.active .dir-name {
  color: #fff;
}

/* Right Side: Terminal monitor screen */
.terminal-screen-panel {
  background: #020617;
  border: 1px solid var(--color-primary);
  box-shadow: 0 0 25px rgba(6, 182, 212, 0.25);
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
}

.screen-header {
  background: rgba(15, 23, 42, 0.8);
  border-bottom: 1px solid rgba(6, 182, 212, 0.3);
  padding: 0.85rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.screen-status-block {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.screen-title {
  font-family: monospace;
  font-size: 0.8rem;
  color: var(--color-primary);
  font-weight: 700;
  letter-spacing: 1px;
}

.screen-signal {
  font-family: monospace;
  font-size: 0.7rem;
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
  padding: 1px 6px;
  border-radius: 4px;
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.screen-dots {
  display: flex;
  gap: 0.4rem;
}

.screen-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.screen-dots .dot.red { background: #ef4444; }
.screen-dots .dot.yellow { background: #f59e0b; }
.screen-dots .dot.green { background: #10b981; }

.screen-body {
  flex-grow: 1;
  padding: 2.25rem 2rem;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.scanline {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: rgba(6, 182, 212, 0.15);
  opacity: 0.7;
  pointer-events: none;
  animation: scan 4s linear infinite;
}

/* Decryption loading screen */
.decryption-loader {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.loader-title {
  font-family: monospace;
  font-size: 0.85rem;
  color: var(--color-primary);
  letter-spacing: 2px;
}

.loader-progress-bar {
  width: 100%;
  max-width: 320px;
  height: 6px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 3px;
  overflow: hidden;
  border: 1px solid rgba(6, 182, 212, 0.2);
}

.loader-progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--color-secondary), var(--color-primary));
  border-radius: 3px;
  transition: width 0.1s linear;
}

.loader-percent {
  font-family: monospace;
  font-size: 0.9rem;
  color: var(--color-primary);
  font-weight: 700;
}

/* Screen content styling */
.screen-content-box {
  text-align: left;
}

.terminal-article-title {
  font-size: 1.45rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  color: #00f5ff;
}

.terminal-meta-row {
  display: flex;
  gap: 1.25rem;
  font-family: monospace;
  font-size: 0.75rem;
  color: #475569;
  margin-bottom: 1.25rem;
  border-bottom: 1px dashed rgba(6, 182, 212, 0.2);
  padding-bottom: 0.75rem;
}

.terminal-summary-text {
  font-size: 0.95rem;
  color: #cbd5e1;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  min-height: 100px;
}

.terminal-tags-row {
  font-family: monospace;
  font-size: 0.8rem;
  color: var(--color-primary);
}

.screen-footer {
  background: rgba(15, 23, 42, 0.5);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1.25rem 2rem;
  display: flex;
  justify-content: flex-end;
}

.btn-terminal-read {
  font-size: 0.9rem;
  padding: 0.75rem 1.75rem;
}

/* H3 NEW TEMPLATE (Instruction 2): Holographic Category Selector Console */
.pricing-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 1.5rem 0 2.5rem;
  flex-wrap: wrap;
}

.pricing-tab-btn {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--color-border);
  color: var(--color-text-gray);
  padding: 0.65rem 1.65rem;
  border-radius: 9999px;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 0.9rem;
  transition: var(--transition-smooth);
  cursor: pointer;
  letter-spacing: 0.5px;
}

.pricing-tab-btn:hover {
  background: rgba(6, 182, 212, 0.05);
  border-color: rgba(6, 182, 212, 0.3);
  color: #fff;
}

.pricing-tab-btn.active {
  background: rgba(6, 182, 212, 0.12);
  border-color: var(--color-primary);
  color: #00f5ff;
  box-shadow: 0 0 15px rgba(6, 182, 212, 0.2);
}

.pricing-tab-contents {
  position: relative;
  width: 100%;
}

.tab-content-panel {
  display: none;
  animation: fadeInPanel 0.4s ease forwards;
}

.tab-content-panel.active {
  display: block;
}

@keyframes fadeInPanel {
  from { opacity: 0; transform: translateY(15px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Cards grid layouts */
.pricing-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}

.pricing-cards-grid.three-cols {
  grid-template-columns: repeat(3, 1fr);
  max-width: 1080px;
  margin: 0 auto;
}

.pricing-cards-grid.two-cols {
  grid-template-columns: repeat(2, 1fr);
  max-width: 760px;
  margin: 0 auto;
}

/* Sleek Cyber Card */
.pricing-card {
  background: rgba(11, 15, 25, 0.55);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 2.25rem 1.75rem;
  position: relative;
  transition: transform 0.15s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.pricing-card:hover {
  border-color: var(--color-primary);
  box-shadow: 0 0 25px rgba(6, 182, 212, 0.25);
  transform: translateY(-5px);
}

.pricing-card.popular {
  border-color: rgba(6, 182, 212, 0.5);
  background: linear-gradient(180deg, rgba(6, 182, 212, 0.1) 0%, rgba(11, 15, 25, 0.65) 100%);
  box-shadow: 0 12px 30px rgba(6, 182, 212, 0.1);
}

.pricing-card.popular:hover {
  border-color: #00f5ff;
  box-shadow: 0 0 35px rgba(6, 182, 212, 0.4);
}

.card-status-light {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-secondary);
  box-shadow: 0 0 8px var(--color-secondary);
}

.card-glow-reflection {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(6, 182, 212, 0.15) 0%, transparent 60%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.pricing-card:hover .card-glow-reflection {
  opacity: 1;
}

.price-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #fff;
}

.price-desc {
  color: var(--color-text-gray);
  font-size: 0.82rem;
  line-height: 1.4;
  margin-bottom: 1.5rem;
  min-height: 38px;
}

.price-value-container {
  display: flex;
  justify-content: center;
  align-items: baseline;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 1.25rem;
}

.price-value {
  display: flex;
  align-items: baseline;
  gap: 2px;
}

.price-currency {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-primary);
}

.price-num {
  font-size: 2.35rem;
  font-weight: 800;
  line-height: 1;
  color: #fff;
}

.price-period {
  color: var(--color-text-gray);
  font-size: 0.85rem;
}

/* Billing option pills inside cards */
.billing-pills {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.35rem;
  margin-bottom: 1.5rem;
  background: rgba(0, 0, 0, 0.2);
  padding: 0.3rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.02);
}

.pill-btn {
  background: transparent;
  border: none;
  color: #64748b;
  padding: 0.35rem 0.25rem;
  border-radius: 6px;
  font-family: monospace;
  font-weight: 700;
  font-size: 0.75rem;
  transition: var(--transition-smooth);
  cursor: pointer;
  text-align: center;
}

.pill-btn:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.03);
}

.pill-btn.active {
  background: var(--color-primary);
  color: #020617;
  box-shadow: 0 2px 8px rgba(6, 182, 212, 0.3);
}

.price-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 2rem;
  flex-grow: 1;
  text-align: left;
}

.price-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: #cbd5e1;
}

.price-features svg {
  width: 14px;
  height: 14px;
  color: var(--color-primary);
  flex-shrink: 0;
}

.btn-price {
  width: 100%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--color-border);
  color: var(--color-text-white);
  padding: 0.75rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.85rem;
  text-align: center;
  transition: var(--transition-smooth);
  cursor: pointer;
}

.pricing-card.popular .btn-price {
  background: var(--color-primary);
  color: #020617;
  border-color: transparent;
}

.pricing-card.popular .btn-price:hover {
  background: #00e5ff;
  box-shadow: 0 4px 12px rgba(6, 182, 212, 0.4);
}

.pricing-card:not(.popular) .btn-price:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.3);
}

/* Responsive Grid */
@media (max-width: 1200px) {
  .pricing-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .pricing-cards-grid {
    grid-template-columns: 1fr;
  }
  .pricing-cards-grid.three-cols {
    grid-template-columns: 1fr;
  }
  .pricing-cards-grid.two-cols {
    grid-template-columns: 1fr;
  }
  .pricing-tab-btn {
    padding: 0.5rem 1.15rem;
    font-size: 0.8rem;
  }
}



/* H4 NEW TEMPLATE (Instruction 3): Live Decryption Transmission Feed */
.feedback-speed-section {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3.5rem;
  align-items: stretch;
}

.transmission-feed-panel {
  background: rgba(15, 23, 42, 0.5);
  backdrop-filter: blur(20px);
  border: 1px solid var(--color-border);
  border-radius: 20px;
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.feed-header-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 0.85rem;
  margin-bottom: 0.85rem;
}

.feed-header-left {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.feed-online-light {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 8px #10b981;
  animation: blink 1.2s infinite alternate;
}

.feed-title {
  font-family: monospace;
  font-size: 0.85rem;
  color: var(--color-primary);
  font-weight: 700;
  letter-spacing: 1px;
}

.feed-badge-live {
  font-family: monospace;
  font-size: 0.7rem;
  background: rgba(6, 182, 212, 0.1);
  color: var(--color-primary);
  border: 1px solid rgba(6, 182, 212, 0.2);
  padding: 1px 6px;
  border-radius: 4px;
}

.feed-desc-text {
  font-size: 0.85rem;
  color: var(--color-text-gray);
  margin-bottom: 1.5rem;
  text-align: left;
}

.transmission-container {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
  overflow-y: auto;
  max-height: 380px;
  padding-right: 0.5rem;
}

.transmission-container::-webkit-scrollbar {
  width: 4px;
}
.transmission-container::-webkit-scrollbar-thumb {
  background: rgba(6, 182, 212, 0.2);
  border-radius: 2px;
}

.feed-message {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  animation: slideInMsg 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  opacity: 0;
  transform: translateY(15px);
  text-align: left;
}

@keyframes slideInMsg {
  100% { opacity: 1; transform: translateY(0); }
}

/* Micro-neon indicators on messages */
.feed-message:hover {
  border-color: rgba(6, 182, 212, 0.25);
  background: rgba(255, 255, 255, 0.03);
}

.msg-meta {
  display: flex;
  justify-content: space-between;
  font-family: monospace;
  font-size: 0.75rem;
}

.msg-user {
  color: #00f5ff;
  font-weight: 700;
}

.msg-time {
  color: #475569;
}

.msg-content {
  font-size: 0.85rem;
  color: #cbd5e1;
  line-height: 1.5;
}

/* Speed Test Terminal Panel (Right Column) */
.speed-test-panel {
  background: rgba(15, 23, 42, 0.5);
  backdrop-filter: blur(20px);
  border: 1px solid var(--color-border);
  border-radius: 20px;
  padding: 1.75rem;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.speed-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.speed-badge {
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
  font-size: 0.7rem;
  padding: 0.2rem 0.6rem;
  border-radius: 9999px;
  border: 1px solid rgba(16, 185, 129, 0.2);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.node-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.node-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid rgba(255, 255, 255, 0.03);
  padding: 0.75rem 1.15rem;
  border-radius: 10px;
  transition: var(--transition-smooth);
}

.node-item:hover {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.08);
}

.node-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.node-flag {
  font-size: 1.15rem;
}

.node-name {
  font-size: 0.9rem;
  font-weight: 600;
}

.node-type {
  font-size: 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  padding: 1px 6px;
  border-radius: 4px;
  color: var(--color-text-gray);
  margin-left: 0.5rem;
}

.node-stats {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.node-ping {
  font-family: monospace;
  font-size: 0.85rem;
  font-weight: 600;
  transition: var(--transition-smooth);
}

.node-ping.excellent { color: #10b981; }
.node-ping.good { color: #fbbf24; }
.node-ping.poor { color: #ef4444; }

.node-load-bar {
  width: 40px;
  height: 4px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 2px;
  overflow: hidden;
}

.node-load-fill {
  height: 100%;
  background: #10b981;
  width: 35%;
  transition: var(--transition-smooth);
}

/* Online status updates counter */
.online-counter-card {
  margin-top: 1.5rem;
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.05) 0%, rgba(0, 0, 0, 0) 100%);
  border: 1px dashed rgba(6, 182, 212, 0.2);
  border-radius: 12px;
  padding: 1.15rem;
  text-align: center;
}

.online-counter-title {
  color: var(--color-text-gray);
  font-size: 0.8rem;
  margin-bottom: 0.25rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.online-counter-num {
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--color-text-white);
  font-family: monospace;
  letter-spacing: -0.5px;
}

/* H5 NEW TEMPLATE (Instruction 4): Collapsible Holographic Accordion */
.accordion-container {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.accordion-item {
  background: rgba(15, 23, 42, 0.5);
  backdrop-filter: blur(20px);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  overflow: hidden;
  transition: var(--transition-smooth);
  position: relative;
}

.accordion-item:hover {
  border-color: rgba(6, 182, 212, 0.35);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.accordion-item.active {
  border-color: var(--color-primary);
  box-shadow: 0 0 20px rgba(6, 182, 212, 0.15);
}

.accordion-header {
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.accordion-q-title {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.crosshair {
  font-family: monospace;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--color-primary);
  transition: var(--transition-smooth);
  display: inline-block;
  width: 20px;
  height: 20px;
  line-height: 18px;
  text-align: center;
}

.accordion-item.active .crosshair {
  transform: rotate(45deg);
  color: #ff4d4d; /* Changes to red X when opened */
}

.accordion-header h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  transition: var(--transition-smooth);
  text-align: left;
}

.accordion-item.active .accordion-header h3 {
  color: #00f5ff;
}

.accordion-arrow {
  font-size: 0.8rem;
  color: var(--color-text-gray);
  transition: var(--transition-smooth);
}

.accordion-item.active .accordion-arrow {
  transform: rotate(180deg);
  color: var(--color-primary);
}

/* Accordion slide animation */
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 0 2rem;
  position: relative;
  text-align: left;
}

.accordion-item.active .accordion-content {
  max-height: 200px; /* Safe upper bound for text content */
  padding-bottom: 1.75rem;
}

.accordion-content p {
  color: #cbd5e1;
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 0;
}

/* Scanning laser line (tech scan effect) */
.scanner-bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
  opacity: 0;
  pointer-events: none;
}

.accordion-item.active .scanner-bar {
  animation: scanLaser 2.5s ease-in-out infinite;
}

@keyframes scanLaser {
  0% { top: 0%; opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { top: 100%; opacity: 0; }
}

/* H6 Protection Band Section */
.protection-section {
  text-align: center;
  background: linear-gradient(180deg, rgba(5, 7, 11, 0) 0%, rgba(6, 182, 212, 0.05) 50%, rgba(5, 7, 11, 0) 100%);
  padding: 4.5rem 5%;
}

.protection-title {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 1.25rem;
  letter-spacing: -0.5px;
}

.unlocked-grid {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

.unlocked-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
}

.unlocked-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  transition: var(--transition-smooth);
}

.unlocked-item:hover .unlocked-icon {
  background: rgba(6, 182, 212, 0.1);
  border-color: rgba(6, 182, 212, 0.3);
  transform: translateY(-5px);
  color: var(--color-primary);
}

.unlocked-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-text-gray);
}

/* Footer & PBN Links */
footer {
  background-color: #020617;
  border-top: 1px solid var(--color-border);
  padding: 3.5rem 5% 2.5rem;
  text-align: center;
}

.footer-content {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.75rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-logo img {
  width: 30px;
  height: 30px;
  border-radius: 6px;
}

.footer-logo span {
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.5px;
}

.footer-desc {
  max-width: 500px;
  color: var(--color-text-gray);
  font-size: 0.85rem;
  line-height: 1.5;
}

.footer-links {
  display: flex;
  gap: 1.75rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  color: var(--color-text-gray);
  text-decoration: none;
  font-size: 0.85rem;
  transition: var(--transition-smooth);
}

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

/* PBN Weight Injection Links Style (Low-key, integrated) */
.pbn-links-area {
  margin-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 1.25rem;
  width: 100%;
  max-width: 600px;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  font-size: 0.75rem;
}

.pbn-link {
  color: rgba(255, 255, 255, 0.15) !important;
  text-decoration: none;
  transition: var(--transition-smooth);
  font-weight: 400;
  font-family: inherit;
}

.pbn-link:hover {
  color: var(--color-primary) !important;
}

.copyright {
  margin-top: 1.75rem;
  color: rgba(255, 255, 255, 0.2);
  font-size: 0.75rem;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
  .hero h1 {
    font-size: 2.75rem;
  }
  .pricing-card.tilt-card {
    flex: 0 0 calc(50% - 1rem);
  }
  .feedback-speed-section {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .terminal-reader-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  header {
    padding: 1rem 5%;
    top: 36px;
  }
  nav {
    display: none;
  }
  .hero h1 {
    font-size: 2.25rem;
  }
  .hero p {
    font-size: 1rem;
    margin-bottom: 1.75rem;
  }
  .section-header h2 {
    font-size: 2rem;
  }
  .pricing-card.tilt-card {
    flex: 0 0 100%;
  }
  .accordion-header {
    padding: 1.25rem 1.5rem;
  }
  .accordion-content {
    padding: 0 1.5rem;
  }
  .accordion-item.active .accordion-content {
    padding-bottom: 1.5rem;
    max-height: 300px;
  }
  .unlocked-grid {
    gap: 1.25rem;
  }
}
