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

body {
  font-family: 'Space Grotesk', monospace;
  background: #050505;
  color: #eef2ff;
  overflow-x: hidden;
  cursor: default;
}

.cursor-glow {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(59,130,246,0.08) 0%, transparent 70%);
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.05s linear;
}

.floating-shapes {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.shape {
  position: absolute;
  background: rgba(59,130,246,0.03);
  border: 1px solid rgba(59,130,246,0.15);
  border-radius: 50%;
  animation: float 20s infinite ease-in-out;
}

.shape-1 {
  width: 300px;
  height: 300px;
  top: 10%;
  left: -100px;
}

.shape-2 {
  width: 500px;
  height: 500px;
  bottom: 0;
  right: -200px;
  animation-duration: 25s;
}

.shape-3 {
  width: 200px;
  height: 200px;
  top: 40%;
  right: 20%;
  animation-duration: 15s;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(30px, -30px) rotate(180deg); }
}

.navbar {
  position: sticky;
  top: 20px;
  z-index: 100;
  padding: 0 2rem;
  margin-top: 20px;
}

.nav-container {
  max-width: 1300px;
  margin: 0 auto;
  background: rgba(5,5,5,0.85);
  backdrop-filter: blur(12px);
  border-radius: 80px;
  padding: 0.8rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid rgba(59,130,246,0.3);
  flex-wrap: wrap;
  gap: 1rem;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: -0.5px;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.nav-links a {
  color: #b9c7d9;
  text-decoration: none;
  font-weight: 500;
  transition: 0.2s;
  font-size: 0.85rem;
}

.nav-links a:hover { color: #3b82f6; }

.nav-mirror {
  background: rgba(59,130,246,0.15);
  padding: 6px 14px;
  border-radius: 40px;
  font-size: 0.75rem;
  font-family: monospace;
}

/* Hero Split */
.hero-split {
  display: flex;
  min-height: 90vh;
  padding: 4rem 5%;
  position: relative;
  z-index: 2;
}

.hero-left {
  flex: 1;
  padding: 2rem;
}

.hero-label {
  font-size: 0.75rem;
  letter-spacing: 3px;
  color: #3b82f6;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 2rem;
}

.blue-gradient {
  background: linear-gradient(135deg, #3b82f6, #60a5fa);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.glitch-text {
  background: linear-gradient(135deg, #3b82f6, #60a5fa);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
  display: inline-block;
}

.hero-stats {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
}

.stat-number {
  font-size: 1.6rem;
  font-weight: 700;
  color: #3b82f6;
  display: block;
}

.stat-label {
  font-size: 0.7rem;
  color: #8ba0b0;
}

.hero-desc {
  max-width: 600px;
  margin-bottom: 2rem;
  line-height: 1.6;
  color: #cbd5e6;
}

.btn-primary-glow {
  background: linear-gradient(95deg, #3b82f6, #2563eb);
  padding: 14px 32px;
  border-radius: 60px;
  text-decoration: none;
  color: white;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s;
  box-shadow: 0 0 15px rgba(59,130,246,0.4);
}

.btn-primary-glow:hover {
  transform: scale(1.02);
  box-shadow: 0 0 25px rgba(59,130,246,0.6);
}

.onion-hint {
  margin-top: 1.5rem;
  font-family: monospace;
  background: #0f1215;
  padding: 8px 16px;
  border-radius: 40px;
  width: fit-content;
  font-size: 0.8rem;
}

.hero-right {
  flex: 1;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.orb {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, #3b82f620, transparent);
  border-radius: 50%;
  filter: blur(40px);
}

.hex-grid {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath d='M50 10 L80 25 L80 50 L50 65 L20 50 L20 25 Z' fill='none' stroke='%233b82f620' stroke-width='1'/%3E%3C/svg%3E");
  background-size: 50px;
  opacity: 0.4;
}

/* Essence Section */
.essence {
  padding: 6rem 5%;
  background: #070b0e;
  position: relative;
}

.section-tag {
  font-size: 0.7rem;
  letter-spacing: 3px;
  color: #3b82f6;
  margin-bottom: 2rem;
  text-align: center;
}

.section-tag.light {
  color: #60a5fa;
}

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

.essence-block {
  display: flex;
  margin-bottom: 3rem;
  gap: 2rem;
  align-items: flex-start;
  flex-wrap: wrap;
}

.essence-block.left { justify-content: flex-start; }
.essence-block.right { justify-content: flex-end; text-align: right; }

.essence-year {
  font-size: 2rem;
  font-weight: 800;
  color: #3b82f6;
  min-width: 100px;
}

.essence-content {
  max-width: 500px;
  background: #0f1519;
  padding: 1.5rem;
  border-radius: 24px;
  border-left: 3px solid #3b82f6;
}

.essence-block.right .essence-content {
  border-left: none;
  border-right: 3px solid #3b82f6;
}

/* About Deep Section */
.about-deep {
  padding: 5rem 5%;
  background: #030507;
}

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

.about-deep h2 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 2rem;
}

.about-deep h2 strong { color: #3b82f6; }

.about-deep-grid {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
}

.about-deep-text {
  flex: 2;
  line-height: 1.7;
}

.about-deep-text p {
  margin-bottom: 1.2rem;
  color: #cbd5e6;
}

.about-deep-stats {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.stat-card {
  background: #0f1519;
  padding: 1.5rem;
  border-radius: 24px;
  text-align: center;
  border: 1px solid #1f2a30;
}

.stat-card i {
  font-size: 2rem;
  color: #3b82f6;
  margin-bottom: 0.5rem;
}

.stat-card h4 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #3b82f6;
}

/* Flow Section */
.flow {
  padding: 5rem 5%;
  background: #030507;
}

.flow-main-title {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 3rem;
}

.flow-main-title span { color: #3b82f6; }

.flow-architecture {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.flow-architecture.expanded .flow-node {
  width: 260px;
}

.flow-node {
  background: #0f1519;
  padding: 1.5rem;
  border-radius: 24px;
  width: 260px;
  text-align: center;
  border: 1px solid #1f2a30;
}

.node-icon {
  font-size: 2rem;
  color: #3b82f6;
  margin-bottom: 0.8rem;
}

.node-title {
  font-weight: 700;
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.node-desc {
  font-size: 0.85rem;
  color: #b9c7d4;
}

.flow-connector {
  font-size: 1.5rem;
  color: #3b82f6;
}

.flow-note {
  text-align: center;
  background: #0a0f12;
  width: fit-content;
  margin: 0 auto;
  padding: 1rem 2rem;
  border-radius: 60px;
  font-size: 0.9rem;
}

/* Merchants */
.merchants {
  position: relative;
  padding: 5rem 5%;
  background: linear-gradient(145deg, #070b0e, #030507);
}

.merchants-stats-grid {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.merchant-stat-card {
  text-align: center;
  background: rgba(59,130,246,0.08);
  padding: 1.2rem;
  border-radius: 24px;
  min-width: 150px;
}

.ms-number {
  font-size: 1.6rem;
  font-weight: 800;
  color: #3b82f6;
}

.merchants-content h2 {
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 1rem;
}

.merchants-content h2 span { color: #3b82f6; }

.merchants-content p {
  max-width: 800px;
  margin: 0 auto 1rem;
  text-align: center;
  line-height: 1.6;
}

.vendor-features {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.vendor-features span {
  background: #0f1519;
  padding: 5px 12px;
  border-radius: 40px;
  font-size: 0.75rem;
}

/* Fortress */
.fortress {
  display: flex;
  padding: 5rem 5%;
  gap: 3rem;
  flex-wrap: wrap;
}

.fortress-left { flex: 1.2; }
.fortress-right { flex: 0.8; text-align: center; }

.security-badge-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 1.5rem 0;
}

.sec-badge {
  background: #0f1519;
  padding: 6px 14px;
  border-radius: 40px;
  font-size: 0.75rem;
}

.security-quote {
  margin-top: 1.5rem;
  font-style: italic;
  border-left: 3px solid #3b82f6;
  padding-left: 1rem;
  color: #b9c7d4;
}

.shield-animation {
  font-size: 6rem;
  color: #3b82f6;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0.6; transform: scale(1);}
  50% { opacity: 1; transform: scale(1.05);}
}

.crypto-list {
  margin-top: 2rem;
  font-family: monospace;
  font-size: 0.8rem;
}

.crypto-item {
  background: #0f1519;
  padding: 0.5rem;
  margin: 0.5rem 0;
  border-radius: 12px;
}

/* Why Torzon Deep */
.why-torzon-deep {
  padding: 5rem 5%;
  background: #070b0e;
}

.why-torzon-deep h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 3rem;
}

.why-torzon-deep h2 strong { color: #3b82f6; }

.reasons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.reason-item {
  background: #0f1519;
  padding: 1.5rem;
  border-radius: 24px;
  transition: 0.2s;
}

.reason-item i {
  font-size: 2rem;
  color: #3b82f6;
  margin-bottom: 0.8rem;
}

.reason-item h4 {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.reason-item p {
  font-size: 0.85rem;
  color: #b9c7d4;
  line-height: 1.5;
}

/* Genesis Guide */
.genesis-guide {
  padding: 5rem 5%;
  background: #030507;
}

.genesis-guide h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
}

.genesis-guide h2 span { color: #3b82f6; }

.guide-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.guide-card {
  background: #0f1519;
  padding: 1.5rem;
  border-radius: 20px;
  transition: 0.2s;
}

.guide-num {
  font-size: 1.8rem;
  font-weight: 800;
  color: #3b82f6;
  margin-bottom: 0.8rem;
}

.guide-card h4 {
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.guide-card p {
  font-size: 0.8rem;
  color: #b9c7d4;
  line-height: 1.5;
}

.warning-banner {
  margin-top: 2.5rem;
  background: rgba(220,38,38,0.1);
  padding: 1rem;
  border-radius: 60px;
  text-align: center;
  border: 1px solid #ef444430;
  font-size: 0.85rem;
}

/* FAQ Section */
.faq-section {
  padding: 5rem 5%;
  background: #070b0e;
}

.faq-section h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
}

.faq-section h2 strong { color: #3b82f6; }

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.faq-item {
  background: #0f1519;
  padding: 1.5rem;
  border-radius: 20px;
}

.faq-item h4 {
  color: #3b82f6;
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.faq-item p {
  font-size: 0.85rem;
  color: #b9c7d4;
  line-height: 1.5;
}

/* Comparison Matrix */
.comparison {
  padding: 5rem 5%;
  background: #030507;
}

.comparison-inner h2 {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 2rem;
}

.comparison-inner h2 span { color: #3b82f6; }

.matrix {
  max-width: 1000px;
  margin: 2rem auto;
  border: 1px solid #1f2a30;
  border-radius: 24px;
  overflow-x: auto;
}

.matrix-row {
  display: grid;
  grid-template-columns: 1.5fr 1.5fr 1fr;
  padding: 0.8rem 1rem;
  border-bottom: 1px solid #1f2a30;
  font-size: 0.85rem;
}

.matrix-row.header {
  background: #0f1519;
  font-weight: 700;
}

.win { color: #3b82f6; font-weight: 600; }

.matrix-note {
  text-align: center;
  margin-top: 1.5rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Trust Signals */
.trust-signals {
  padding: 5rem 5%;
  background: linear-gradient(145deg, #070b0e, #030507);
}

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

.trust-item {
  background: #0f1519;
  padding: 1.5rem;
  border-radius: 24px;
  text-align: center;
}

.trust-item i {
  font-size: 2rem;
  color: #3b82f6;
  margin-bottom: 0.8rem;
}

.trust-item h4 {
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.trust-item p {
  font-size: 0.8rem;
  color: #b9c7d4;
  line-height: 1.4;
}

.trust-item small {
  font-size: 0.7rem;
  color: #6b8c9e;
  display: block;
  margin-top: 0.5rem;
}

/* Footer */
.footer-unique {
  background: #020304;
  padding: 3rem 5%;
  border-top: 1px solid #1f2a30;
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-brand small {
  display: block;
  font-size: 0.7rem;
  color: #3b82f6;
}

.footer-brand .onion-foot {
  font-size: 0.65rem;
  color: #6b8c9e;
  margin-top: 0.3rem;
}

.footer-disclaimer {
  flex: 1;
  font-size: 0.7rem;
  color: #6b8c9e;
  line-height: 1.5;
}

.footer-disclaimer p {
  margin-bottom: 0.5rem;
}

.copyright {
  margin-top: 0.5rem;
  color: #4a5e6e;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-split { flex-direction: column; }
  .hero-title { font-size: 2.5rem; }
  .hero-stats { justify-content: center; }
  .flow-architecture { flex-direction: column; align-items: center; }
  .flow-connector { transform: rotate(90deg); }
  .navbar .nav-links { display: none; }
  .matrix-row { grid-template-columns: 1fr; gap: 5px; }
  .essence-block { flex-direction: column; text-align: left; }
  .essence-block.right { text-align: left; }
  .essence-block.right .essence-content { border-right: none; border-left: 3px solid #3b82f6; }
  .fortress-left, .fortress-right { flex: 1; }
  .reasons-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .guide-grid { grid-template-columns: 1fr; }
}