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

:root {
  --bg:            #0a0e14;
  --surface:       #10151e;
  --surface2:      #151b26;
  --accent:        #274372;
  --accent-soft:   #2f4f7a;
  --accent-dim:    #1e355c;
  --text:          #e8f0ff;
  --text2:         #a8b9d9;
  --text3:         #7a8db5;
  --border:        rgba(39, 67, 114, 0.24);
  --grid:          rgba(39, 67, 114, 0.065);
  --shadow:        0 14px 38px rgba(0,0,0,0.72);
  --glow:          0 0 12px rgba(39,67,114,0.28);
}

html, body {
  height: 100%;
  background: var(--bg);
  color: var(--text);
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  line-height: 1.48;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.void-container {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 260px 1fr;
  background:
    var(--bg)
    repeating-linear-gradient(
      135deg,
      transparent 0,
      transparent 60px,
      var(--grid) 60px,
      var(--grid) 120px
    );
}

@media (max-width: 920px) {
  .void-container {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
  }
}

.prism-spine {
  background: rgba(12, 17, 26, 0.78);
  border-right: 1px solid var(--border);
  padding: 2.4rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 2.6rem;
  backdrop-filter: blur(1.2px);
}

.logo-zone {
  font-size: 2.8rem;
  font-weight: 800;
  letter-spacing: -0.06em;
  color: white;
  text-shadow: var(--glow);
}

.subscript {
  display: block;
  font-size: 0.74rem;
  font-weight: 400;
  opacity: 0.52;
  margin-top: 0.3rem;
  letter-spacing: 0.02em;
}

.status-pill {
  font-size: 0.81rem;
  padding: 0.42rem 1rem;
  border-radius: 999px;
  background: rgba(39,67,114,0.14);
  color: #8aa4e0;
  width: fit-content;
  border: 1px solid rgba(39,67,114,0.22);
}

.status-pill.live {
  background: rgba(46, 110, 68, 0.16);
  color: #9fe8b5;
  border-color: rgba(46,110,68,0.28);
}

.spine-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.spine-links h4 {
  font-size: 0.84rem;
  font-weight: 600;
  opacity: 0.62;
  margin-bottom: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.spine-links a {
  color: var(--text2);
  text-decoration: none;
  font-size: 0.96rem;
  line-height: 1.38;
  word-break: break-all;
  transition: color 0.18s ease;
}

.spine-links a:hover {
  color: #94b0ff;
}

.wallet-mini {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.coin-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.7rem 1rem;
  background: rgba(39,67,114,0.09);
  border-radius: 8px;
  border: 1px solid rgba(39,67,114,0.18);
  font-size: 0.94rem;
}

.coin-row.btc { border-left: 3px solid #f7931a1f; }
.coin-row.xmr { border-left: 3px solid #ff6a001f; }

.prism-main {
  padding: 3.5rem 3rem;
  background: linear-gradient(145deg, rgba(39,67,114,0.035) 0%, transparent 65%);
}

.hero-void {
  margin-bottom: 5rem;
}

.hero-void h1 {
  font-size: 5.2rem;
  font-weight: 900;
  letter-spacing: -0.09em;
  background: linear-gradient(90deg, #ffffff 30%, #b8d0ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 0.9;
}

.tagline {
  font-size: 1.42rem;
  opacity: 0.74;
  margin: 0.7rem 0 2.8rem;
  font-weight: 300;
}

.ad-slot {
  margin: 3rem 0 4.5rem;
  text-align: center;
}

.ad-slot img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2.8rem;
}

.card {
  background: rgba(16, 21, 30, 0.72);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  backdrop-filter: blur(1px);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.card h2 {
  font-size: 1.9rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
  color: #d2e0ff;
}

.card h3 {
  font-size: 1.48rem;
  margin-bottom: 1rem;
  color: #c0d4ff;
}

.card img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
  margin: 1.2rem 0;
  border: 1px solid var(--border);
}

.card ul {
  margin: 1.2rem 0;
  padding-left: 1.6rem;
  list-style: disc;
}

.card ul li {
  margin: 0.6rem 0;
  color: var(--text2);
}

.login-card  { grid-column: span 1; }
.market-card { grid-column: span 2; }
.wallet-card { grid-column: span 2; }

.wallet-card.dual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.why-prime,
.security,
.mirrors-again,
.intro-card {
  grid-column: 1 / -1;
}

.void-footer {
  margin-top: 6rem;
  padding: 2.5rem 0;
  text-align: center;
  font-size: 0.92rem;
  opacity: 0.58;
  border-top: 1px solid var(--border);
}

.void-footer p {
  margin: 0.5rem 0;
}

@media (max-width: 920px) {
  .prism-main {
    padding: 2.2rem 1.4rem;
  }

  .hero-void h1 {
    font-size: 3.9rem;
  }

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

  .wallet-card.dual {
    grid-template-columns: 1fr;
    gap: 2.2rem;
  }
}

@media (max-width: 560px) {
  .hero-void h1 {
    font-size: 3.2rem;
  }

  .prism-spine {
    padding: 2rem 1.2rem;
  }
}

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

:root {
  --bg:            #0a0e14;
  --surface:       #10151e;
  --accent:        #274372;
  --accent-dim:    #1e355c;
  --text:          #e8f0ff;
  --text2:         #a8b9d9;
  --text3:         #7a8db5;
  --border:        rgba(39,67,114,0.22);
  --grid:          rgba(39,67,114,0.05);
  --shadow-sm:     0 6px 16px rgba(0,0,0,0.5);
  --glow:          0 0 10px rgba(39,67,114,0.18);
}

html, body {
  height: 100%;
  background: var(--bg);
  color: var(--text);
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

.void-container {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 260px 1fr;
  background:
    var(--bg)
    repeating-linear-gradient(
      135deg,
      transparent 0,
      transparent 80px,
      var(--grid) 80px,
      var(--grid) 160px
    );
}

@media (max-width: 920px) {
  .void-container {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
  }
}

.prism-spine {
  background: rgba(12,17,26,0.75);
  border-right: 1px solid var(--border);
  padding: 2.2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}

.logo-zone {
  font-size: 2.7rem;
  font-weight: 800;
  letter-spacing: -0.05em;
  color: white;
  text-shadow: var(--glow);
}

.subscript {
  display: block;
  font-size: 0.78rem;
  opacity: 0.55;
  margin-top: 0.3rem;
}

.status-pill {
  font-size: 0.82rem;
  padding: 0.4rem 1rem;
  border-radius: 2rem;
  background: rgba(39,67,114,0.12);
  color: #8aa4e0;
  width: fit-content;
  border: 1px solid rgba(39,67,114,0.2);
}

.status-pill.live {
  background: rgba(46,110,68,0.14);
  color: #a0e8b8;
}

.spine-links {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.spine-links h4 {
  font-size: 0.86rem;
  opacity: 0.65;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.spine-links a {
  color: var(--text2);
  text-decoration: none;
  font-size: 0.95rem;
  line-height: 1.4;
  word-break: break-all;
}

.spine-links a:hover {
  color: #98b4ff;
}

.wallet-mini {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.coin-row {
  display: flex;
  justify-content: space-between;
  padding: 0.65rem 1rem;
  background: rgba(39,67,114,0.08);
  border-radius: 7px;
  border: 1px solid rgba(39,67,114,0.16);
  font-size: 0.93rem;
}

.prism-main {
  padding: 3.2rem 2.8rem;
  background: linear-gradient(145deg, rgba(39,67,114,0.03) 0%, transparent 70%);
}

.hero-void {
  margin-bottom: 4.5rem;
}

.hero-void h1 {
  font-size: 5rem;
  font-weight: 900;
  letter-spacing: -0.08em;
  background: linear-gradient(90deg, #ffffff, #c0d8ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 0.92;
}

.tagline {
  font-size: 1.38rem;
  opacity: 0.76;
  margin: 0.6rem 0 2.5rem;
}

.ad-slot {
  margin: 2.8rem 0 4rem;
  text-align: center;
}

.ad-slot img {
  max-width: 100%;
  height: auto;
  border-radius: 9px;
  box-shadow: var(--shadow-sm);
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(390px, 1fr));
  gap: 2.6rem;
}

.card {
  background: rgba(16,21,30,0.68);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.9rem;
  backdrop-filter: blur(0.8px);
}

.card h2 {
  font-size: 1.85rem;
  font-weight: 600;
  margin-bottom: 1.1rem;
  color: #d0e0ff;
}

.card h3 {
  font-size: 1.45rem;
  margin-bottom: 0.95rem;
  color: #c0d4ff;
}

.card img {
  width: 100%;
  height: auto;
  border-radius: 7px;
  display: block;
  margin: 1.1rem 0;
  border: 1px solid var(--border);
}

.card ul, .card ol {
  margin: 1.1rem 0;
  padding-left: 1.5rem;
}

.card ul li, .card ol li {
  margin: 0.55rem 0;
  color: var(--text2);
}

.card dl dt {
  font-weight: 600;
  margin: 1.2rem 0 0.4rem;
  color: #b8ccff;
}

.card dl dd {
  margin: 0 0 0.8rem 1.2rem;
  color: var(--text2);
}

.login-card  { grid-column: span 1; }
.market-card { grid-column: span 2; }
.wallet-card { grid-column: span 2; }

.wallet-card.dual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.9rem;
}

.why-prime,
.access-guide,
.seller-info,
.opsec,
.faq-section,
.mirrors-block,
.intro-card {
  grid-column: 1 / -1;
}

.void-footer {
  margin-top: 5.5rem;
  padding: 2.2rem 0;
  text-align: center;
  font-size: 0.9rem;
  opacity: 0.6;
  border-top: 1px solid var(--border);
}

.void-footer p {
  margin: 0.45rem 0;
}

@media (max-width: 920px) {
  .prism-main {
    padding: 2rem 1.3rem;
  }

  .hero-void h1 {
    font-size: 3.8rem;
  }

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

  .wallet-card.dual {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 560px) {
  .hero-void h1 {
    font-size: 3.1rem;
  }

  .prism-spine {
    padding: 1.8rem 1.1rem;
  }
}

a {
  color: #9db7ff;
  text-decoration: none;
  position: relative;
  transition: color 0.2s ease, text-shadow 0.2s ease;
}

a:visited {
  color: #8fa8f0;
}

a:hover {
  color: #c4d6ff;
  text-shadow: 0 0 6px rgba(120,150,255,0.35);
}

a:active {
  color: #ffffff;
}

a:focus-visible {
  outline: 1px solid rgba(120,150,255,0.45);
  outline-offset: 3px;
  border-radius: 3px;
}

/* underline animation */

a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0%;
  height: 1px;
  background: linear-gradient(90deg,#7fa6ff,#bcd0ff);
  transition: width 0.25s ease;
}

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

/* links inside cards */

.card a {
  color: #a9c3ff;
  font-weight: 500;
}

.card a:hover {
  color: #d5e4ff;
}

/* footer links */

.void-footer a {
  color: var(--text3);
}

.void-footer a:hover {
  color: #9fbaff;
}