/* ===============================
   TERMS PAGE STYLE
=============================== */

.terms-hero{
  min-height:60vh;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:140px 20px 60px;
  background:
    radial-gradient(circle at top,#1e293b,#020617);
}

.terms-hero h1{
  font-size:clamp(44px,6vw,72px);
  font-weight:800;
}

.terms-hero h1 span{
  background:linear-gradient(135deg,#6366f1,#a855f7);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

.terms-sub{
  margin-top:20px;
  color:#94a3b8;
  max-width:600px;
}

/* CONTENT */

.terms-content{
  padding:100px 6%;
}

.terms-box{
  max-width:900px;
  margin:auto;
  background:#0f172a;
  border:1px solid #1e293b;
  padding:60px;
  border-radius:22px;
}

.updated{
  color:#94a3b8;
  font-size:14px;
  margin-bottom:30px;
}

.terms-box h2{
  font-size:22px;
  margin-top:40px;
  margin-bottom:15px;
}

.terms-box p{
  color:#cbd5f5;
  line-height:1.7;
}

.terms-box ul{
  margin-left:20px;
  margin-top:10px;
}

.terms-box li{
  color:#94a3b8;
  margin-bottom:8px;
}

/* RESPONSIVE */

@media(max-width:700px){
  .terms-box{
    padding:30px;
  }
}


/* ===== PROSIGNAL AI NAVBAR ===== */
.tok-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 8%;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  background: rgba(2, 6, 23, 0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.tok-logo {
  font-size: 22px;
  font-weight: 900;
  color: #fff;
}

.tok-nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
}

.tok-nav ul li a {
  text-decoration: none;
  color: #94a3b8;
  font-size: 14px;
  font-weight: 600;
  transition: 0.3s;
}

.tok-nav ul li a.active, .tok-nav ul li a:hover {
  color: #3b82f6;
}

/* ===== QTV TERMS — TERMINAL SCAN STYLE ===== */

:root {
  --neon-cyan: #00f2ff;
  --terminal-bg: #050505;
  --line-dim: rgba(0, 242, 255, 0.1);
}

body.dark {
  background-color: var(--terminal-bg);
  color: #a0a0a0;
  font-family: 'Inter', sans-serif;
  /* Thin vertical scanlines effect */
  background-image: linear-gradient(90deg, rgba(255,255,255,0.01) 1px, transparent 1px);
  background-size: 40px 100%;
}

/* --- HERO --- */
.terms-hero {
  padding: 180px 10% 60px;
  position: relative;
}

.terms-hero::before {
  content: '001 // LEGAL';
  position: absolute;
  top: 150px;
  left: 10%;
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  color: var(--neon-cyan);
  letter-spacing: 2px;
}

.terms-hero h1 {
  font-size: clamp(40px, 10vw, 110px);
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: -8px;
  line-height: 0.8;
  color: #fff;
  margin: 0;
}

.terms-hero h1 span {
  display: block;
  opacity: 0.2;
}

.terms-sub {
  margin-top: 30px;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-left: 1px solid var(--neon-cyan);
  padding-left: 20px;
}

/* --- THE DATA BLOCKS --- */
.terms-content {
  padding: 100px 10%;
}

.terms-box {
  max-width: 1000px;
}

.updated {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  background: var(--neon-cyan);
  color: #000;
  display: inline-block;
  padding: 2px 8px;
  margin-bottom: 80px;
}

/* Section Styling */
.terms-box h2 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--neon-cyan);
  margin-top: 100px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

.terms-box h2::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--line-dim);
  margin-left: 20px;
}

.terms-box p {
  font-size: 18px;
  color: #e0e0e0;
  line-height: 1.6;
  margin-bottom: 30px;
  max-width: 800px;
}

/* List Styling (The "Data Array") */
.terms-box ul {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 15px;
  margin-bottom: 60px;
}

.terms-box ul li {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 20px;
  font-size: 14px;
  color: #fff;
  position: relative;
  transition: 0.3s;
}

.terms-box ul li:hover {
  background: rgba(0, 242, 255, 0.05);
  border-color: var(--neon-cyan);
}

.terms-box ul li::before {
  content: '[';
  color: var(--neon-cyan);
  margin-right: 10px;
}

.terms-box ul li::after {
  content: ']';
  color: var(--neon-cyan);
  margin-left: 10px;
}

/* --- FOOTER-ISH CONTACT --- */
.terms-box p:last-of-type {
  border: 1px dashed var(--line-dim);
  padding: 30px;
  font-family: 'Space Mono', monospace;
  font-size: 14px;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
  .terms-hero h1 { letter-spacing: -3px; }
  .terms-box p { font-size: 16px; }
}



/* ======================================
   FINAL MOBILE STABILIZER – TERMS
====================================== */

@media (max-width:768px){

/* HERO */
.terms-hero{
  padding:140px 20px 60px !important;
}

.terms-hero::before{
  top:120px;
  left:20px;
}

.terms-hero h1{
  font-size:42px !important;
  letter-spacing:-2px !important;
  line-height:0.9;
}

.terms-sub{
  font-size:13px;
  padding-left:14px;
}

/* CONTENT */
.terms-content{
  padding:70px 20px !important;
}

.updated{
  margin-bottom:40px;
}

.terms-box h2{
  font-size:12px;
  letter-spacing:2px;
  margin-top:60px;
}

.terms-box p{
  font-size:15px !important;
  line-height:1.6;
}

.terms-box ul{
  grid-template-columns:1fr !important;
  gap:12px;
}

.terms-box ul li{
  padding:16px;
  font-size:13px;
}

/* NAV */
.tok-nav{
  padding:14px 20px;
}

.tok-nav ul{
  gap:16px;
  flex-wrap:wrap;
  justify-content:center;
}

.tok-logo{
  font-size:18px;
}

/* Prevent horizontal scroll */
body{
  overflow-x:hidden;
}

}
