/* --- CORE RESET & GLOBAL --- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background: #0a0a0a;
  color: #f2f2f2;
  font-family: "Courier New", monospace;
  line-height: 1.6;
  padding: 20px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* --- HEADER --- */
header {
  border-bottom: 1px solid #444;
  padding-bottom: 20px;
  margin-bottom: 40px;
}

.top-bar {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  opacity: 0.8;
  margin-bottom: 20px;
}

h1 {
  font-size: 2.2rem;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.subtitle {
  font-size: 0.95rem;
  opacity: 0.75;
}
/* --- 3D RENDER CONTAINER --- */
#hero-3d {
  width: 80%;         
  height: 500px;     
  margin: 0 auto 40px auto; 
  position: relative;
  overflow: hidden;
  background: none !important; 
  border: none !important;   
}

#hero-3d canvas {
  display: block;
  width: 100% !important;
  height: 100% !important;
}

@media (max-width: 768px) {
  #hero-3d {
    width: 80%; 
    height: 400px;
  }
}
/* --- PRODUCT GRID --- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 60px;
}

.product-card {
  border: 1px solid #333;
  padding: 20px;
  display: flex;
  flex-direction: column;
  background: #0d0d0d;
}

.product-card h3 {
  margin-bottom: 20px;
  font-size: 1.1rem;
  border-bottom: 1px solid #222;
  padding-bottom: 10px;
  text-transform: uppercase;
}

/* Technical Data Rows (Shared by Cards & Reports) */
.spec-row, .report-row {
  display: flex;
  flex-direction: column;
  margin-bottom: 15px;
}

.spec-list {
  display: grid;
  grid-template-columns: 1fr 1fr; /* This forces two columns */
  gap: 15px 30px;
  margin-bottom: 40px;
}

.spec-item {
  font-size: 0.9rem;
  border-bottom: 1px solid #222;
  padding-bottom: 10px;
  display: flex;
  flex-direction: column; /* Keeps label above data within the item */
}

.label {
  font-size: 0.75rem;
  color: #ccc;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 5px;
}

.data {
  font-size: 0.85rem;
  font-weight: bold;
  color: #f2f2f2;
  line-height: 1.4;
}

/* --- BUTTONS & BADGES --- */
.buy-btn {
  display: block;
  margin-top: auto;
  padding: 10px 18px;
  border: 1px solid #fff;
  color: #fff;
  text-decoration: none;
  text-align: center;
  font-size: 0.9rem;
  transition: 0.2s ease;
}

.buy-btn:hover {
  background: #fff;
  color: #000;
}

.badge {
  display: inline-block;
  border: 1px solid #888;
  padding: 8px 14px;
  margin-top: 15px;
  font-size: 0.8rem;
  text-decoration: none;
  color: inherit;
}

/* --- THE INTEL BAR (NEW) --- */
.intel-clearance-bar {
  width: 100%;
  background: #0a0a0a;
  border: 1px solid #333;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  letter-spacing: 1px;
  margin-top: 40px;
}

.status-glitch {
  color: #888;
}

.intel-btn {
  color: #fff;
  text-decoration: none;
  border: 1px solid #444;
  padding: 5px 12px;
  margin-left: 10px;
  transition: all 0.2s ease;
  background: transparent;
  cursor: pointer;
  font-family: inherit;
}

.intel-btn:hover {
  border-color: #fff;
  background: #1a1a1a;
}

/* --- REPORT INDENTATION SYSTEM --- */
.report-indented {
  margin-top: 10px;
  padding-left: 10px;
}

.sub-line {
  display: block;
  margin: 5px 0;
  padding-left: 25px !important;
  text-indent: -15px;
  font-weight: normal; /* Breaks the bold from .data */
  color: #aaa;
  font-size: 0.85rem;
}

/* --- FOOTER & MISC --- */
footer {
  border-top: 1px solid #333;
  padding-top: 20px;
  margin-top: 60px;
  font-size: 0.8rem;
  opacity: 0.7;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
  .intel-clearance-bar {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  
  .access-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }
  
  .intel-btn {
    margin-left: 0;
  }

.decode-me {
  color: #444; /* Darker grey while scrambled */
  transition: color 0.1s;
}

/* Optional: Add a flickering cursor to the active decoding line */
.decoding::after {
  content: '_';
  animation: blink 0.5s infinite;
}

@keyframes blink {
  50% { opacity: 0; }
}
.system-cursor {
  display: inline-flex !important; /* Flex forces the browser to calculate geometry */
  align-items: center;
  min-width: 15px !important;    /* Gives the cursor a 'home' to sit in */
  min-height: 1.2em !important;  /* Prevents the line from collapsing */
  vertical-align: bottom;
  color: #f2f2f2 !important;     /* Ensures visibility */
}

.system-cursor::after {
  content: '|' !important;
  display: inline-block !important;
  color: #f2f2f2 !important;
  font-weight: bold !important;
  animation: blink-cursor 0.8s steps(2, start) infinite;
  /* Adding a tiny shadow makes it 'pop' against dark backgrounds on 4K monitors */
  text-shadow: 0 0 5px rgba(255,255,255,0.5); 
}

@keyframes blink-cursor {
  to { visibility: hidden; }
}
}