/* ===== Basis ===== */
:root{
  --bg: #0b0f19;
  --panel: #121a2b;
  --text: #e8eefc;
  --muted: #a9b5d1;
  --line: rgba(255,255,255,0.10);
  --shadow: 0 10px 30px rgba(0,0,0,0.35);
  --radius: 18px;

  --accent: #6ea8ff;
  --accent-2: #8fe1ff;
}

*{box-sizing:border-box}

body{
  margin:0;
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  background: radial-gradient(1200px 800px at 30% 0%, #142042 0%, var(--bg) 60%);
  color:var(--text);
  line-height:1.5;
  padding-top:60px;
}

/* Container */
.container{
  width:min(1040px,calc(100% - 40px));
  margin:0 auto;
}

/* ===== Header ===== */

.site-header{
  position:sticky;
  top:0;
  backdrop-filter:blur(10px);
  background:rgba(11,15,25,0.75);
  border-bottom:1px solid var(--line);
  z-index:50;
}

.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:10px 0;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
  color:white;
  font-weight:700;
  font-size:26px;
}

.brand img{
  height:120px;
	width: auto;

}

/* Nav */

.nav{
  display:flex;
  gap:14px;
}

.nav-link{
  text-decoration:none;
  color:var(--muted);
  padding:8px 10px;
  border-radius:10px;
}

.nav-link:hover{
  color:var(--text);
  background:rgba(255,255,255,0.06);
}

/* ===== Hero ===== */

.hero{
  padding:42px 0 18px;
}

.hero h1{
  margin:0 0 8px;
  font-size:clamp(1.8rem,3.2vw,2.6rem);
}

.hero p{
  margin:0 0 18px;
  max-width:60ch;
}

.hero-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

/* ===== Grid ===== */

.grid{
  margin-top:16px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
}

@media (max-width:900px){
  .grid{
    grid-template-columns:1fr;
  }
}

/* ===== Cards ===== */

.card{
  background:linear-gradient(180deg,rgba(255,255,255,0.06),rgba(255,255,255,0.03));
  border:1px solid var(--line);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  padding:16px;
  transition:transform 0.2s ease;
}

.card:hover{
  transform:translateY(-6px);
}

.card-head{
  display:flex;
  justify-content:space-between;
  align-items:baseline;
}

.card h3{
  margin:0;
}

.tag{
  font-size:0.78rem;
  color:rgba(110,168,255,0.85);
  background:rgba(110,168,255,0.18);
  border:1px solid rgba(110,168,255,0.35);
  padding:4px 8px;
  border-radius:999px;
}

/* ===== Buttons ===== */

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  color:#071026;
  background:linear-gradient(135deg,var(--accent),var(--accent-2));
  border-radius:14px;
  padding:10px 14px;
  font-weight:650;
  border:0;
  cursor:pointer;
}

.btn:hover{
  filter:brightness(1.05);
}

.btn-ghost{
  background:transparent;
  color:var(--text);
  border:1px solid var(--line);
}

.btn-small{
  padding:8px 12px;
  font-size:0.9rem;
}

/* ===== Footer ===== */

.site-footer{
  margin-top:30px;
  border-top:1px solid var(--line);
  background:rgba(11,15,25,0.55);
}

.footer-inner{
  display:flex;
  justify-content:space-between;
  padding:16px 0;
  flex-wrap:wrap;
}

/* ===== Ticker ===== */

.ticker{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  background:#0b0f19;
  color:white;
  overflow:hidden;
  padding:10px 0;
  border-bottom:1px solid rgba(255,255,255,0.15);
  z-index:9999;
}

.ticker__track{
  display:inline-block;
  white-space:nowrap;
  animation:scroll 20s linear infinite;
}

.ticker__track span{
  margin-right:60px;
  font-weight:bold;
}

@keyframes scroll{
  from{transform:translateX(100%)}
  to{transform:translateX(-100%)}
}