/* ===== RESET & VARIABLES ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg-dark: #0c0712;
  --bg-card: #140b1e;
  --bg-elevated: #1e1129;
  --accent-primary: #a855f7;
  --accent-glow: #c084fc;
  --accent-cyan: #22d3ee;
  --text-primary: #f3e8ff;
  --text-secondary: #cbb2e6;
  --text-muted: #8a6e9e;
  --border-subtle: #2a1a38;
  --success: #10b981;
  --warning: #f59e0b;
  --gradient-1: linear-gradient(145deg, #1e1129 0%, #140b1e 100%);
  --shadow-glow: 0 0 20px rgba(168, 85, 247, 0.2);
  --font-main: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Space Grotesk', var(--font-main);
}

.status-note{
  margin-top: 20px;
}
body {
  background-color: var(--bg-dark);
  color: var(--text-primary);
  font-family: var(--font-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  background-image: 
    radial-gradient(circle at 20% 20%, rgba(168, 85, 247, 0.03) 0%, transparent 30%),
    radial-gradient(circle at 80% 70%, rgba(34, 211, 238, 0.03) 0%, transparent 40%);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.02em;
}

h1 {
  font-size: 2.5rem;
  background: linear-gradient(135deg, #fff, var(--accent-glow));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 0.5rem;
}

h2 {
  font-size: 2.2rem;
  margin: 2.5rem 0 1.5rem;
  background: linear-gradient(135deg, #fff 0%, var(--accent-glow) 80%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
  border-bottom: 2px solid var(--accent-primary);
  padding-bottom: 0.4rem;
}

h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

a {
  color: var(--accent-primary);
  text-decoration: none;
  transition: all 0.2s;
  font-weight: 500;
}

a:hover {
  color: var(--accent-cyan);
  text-shadow: 0 0 8px rgba(34, 211, 238, 0.3);
}

/* ===== LAYOUT ===== */
.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
}

/* ===== HEADER ===== */
header {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border-subtle);
  backdrop-filter: blur(12px);
  background-color: rgba(12, 7, 18, 0.7);
  position: sticky;
  top: 0;
  z-index: 10;
}

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

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

.logo-icon {
  width: 40px;
  height: 40px;
  background: var(--gradient-1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--accent-primary);
  box-shadow: var(--shadow-glow);
}

.logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.6rem;
  background: linear-gradient(135deg, #fff, var(--accent-glow));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  font-weight: 500;
}

.nav-links a {
  color: var(--text-secondary);
  font-size: 1.1rem;
}

.nav-links a.active {
  color: var(--accent-primary);
  border-bottom: 2px solid var(--accent-primary);
  padding-bottom: 4px;
}

.status-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(16, 185, 129, 0.1);
  padding: 0.4rem 1rem;
  border-radius: 40px;
  border: 1px solid rgba(16, 185, 129, 0.3);
  font-size: 0.9rem;
}

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

@keyframes pulse {
  0% { opacity: 1; }
  50% { opacity: 0.5; }
  100% { opacity: 1; }
}

/* ===== MAIN ===== */
main {
  flex: 1;
  padding: 3rem 0;
}

.lead {
  font-size: 1.2rem;
  color: var(--text-secondary);
}

/* ===== CARDS ===== */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.card {
  background: var(--gradient-1);
  border: 1px solid var(--border-subtle);
  border-radius: 24px;
  padding: 2rem 1.8rem;
  backdrop-filter: blur(4px);
  box-shadow: 0 10px 25px -10px rgba(0,0,0,0.5);
  transition: transform 0.2s, border-color 0.2s;
}

.card:hover {
  border-color: var(--accent-primary);
  transform: translateY(-4px);
}

.card-link {
  display: inline-block;
  margin-top: 1.5rem;
  font-weight: 600;
}

/* ===== ONION LINKS BOX ===== */
.onion-link-box {
  background: #0d0614;
  border-radius: 24px;
  padding: 2rem;
  border-left: 6px solid var(--accent-primary);
  margin: 2rem 0;
}

.onion-links-list {
  margin: 2rem 0;
}

.onion-links-list div {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.big-onion {
  font-size: 1.6rem;
  color: var(--accent-cyan);
  font-family: 'SF Mono', 'Menlo', monospace;
  word-break: break-all;
}

.badge {
  background: #1a0b2e;
  padding: 0.2rem 1rem;
  border-radius: 30px;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.badge.success {
  background: rgba(16, 185, 129, 0.15);
  color: var(--success);
}

.pgp-block {
  margin-top: 1.5rem;
  background: #0a0410;
  padding: 1rem;
  border-radius: 12px;
  font-family: monospace;
}

.pgp-preview {
  background: #0d0614;
  border-radius: 8px;
  padding: 0.8rem;
  margin-top: 1rem;
  font-size: 0.8rem;
  overflow-x: auto;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  background: transparent;
  border: 1.5px solid var(--accent-primary);
  color: var(--accent-primary);
  padding: 0.8rem 1.8rem;
  border-radius: 40px;
  font-weight: 600;
  transition: 0.2s;
  text-align: center;
}

.btn-primary {
  background: var(--accent-primary);
  color: #0c0712;
  box-shadow: 0 0 15px rgba(168, 85, 247, 0.4);
}

.btn-primary:hover {
  background: var(--accent-glow);
  color: #0c0712;
}

.btn-outline:hover {
  background: rgba(168, 85, 247, 0.1);
}

.flex-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ===== TESTIMONIALS ===== */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.testimonial {
  background: var(--bg-elevated);
  border-radius: 20px;
  padding: 1.8rem;
  border: 1px solid var(--border-subtle);
}

.testimonial p {
  font-style: italic;
  margin-bottom: 1rem;
}

.testimonial-author {
  color: var(--accent-primary);
  font-weight: 600;
}

/* ===== HISTORY & DISCLAIMER ===== */
.history-block, .about-content {
  background: var(--bg-card);
  border-radius: 24px;
  padding: 2rem;
  border: 1px solid var(--border-subtle);
  margin: 2rem 0;
}

.disclaimer-block {
  background: rgba(245, 158, 11, 0.05);
  border: 1px dashed var(--warning);
  border-radius: 20px;
  padding: 2rem;
  margin: 3rem 0;
}

.disclaimer-block h3 {
  color: var(--warning);
  margin-top: 0;
}

/* ===== GUIDE STEPS ===== */
.guide-steps {
  display: grid;
  gap: 1.5rem;
}

.step-card {
  background: var(--bg-elevated);
  padding: 2rem;
  border-radius: 20px;
}

/* ===== FOOTER ===== */
footer {
  border-top: 1px solid var(--border-subtle);
  padding: 2.5rem 0;
  margin-top: 3rem;
  background-color: #08030e;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
  align-items: center;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.seo-keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
}

.seo-keywords span {
  opacity: 0.7;
}

.footer-disclaimer {
  text-align: center;
  margin-top: 1.5rem;
  color: var(--text-muted);
  font-size: 0.8rem;
}

/* ===== UTILS ===== */
.text-center { text-align: center; }
.mt-4 { margin-top: 2.5rem; }
.availability { margin-top: 1.5rem; display: flex; align-items: center; gap: 0.5rem; }

/* ===== RESPONSIVE ===== */
@media (max-width: 700px) {
  .header-inner { flex-direction: column; gap: 1rem; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.8rem; }
  .container { padding: 0 1.5rem; }
  .big-onion { font-size: 1.2rem; }
}