:root{
  --bg: #0b1220;
  --card: rgba(255,255,255,.06);
  --card2: rgba(255,255,255,.09);
  --text: rgba(255,255,255,.92);
  --muted: rgba(255,255,255,.72);
  --line: rgba(255,255,255,.14);

  --accent: #2d7ef7;
  --accent2: #f2d45c;

  --shadow: 0 18px 45px rgba(0,0,0,.35);
  --radius: 18px;
  --radius2: 26px;

  --pad: 20px;
}

*{ box-sizing: border-box; }
html, body{ height: 100%; }

body{
  margin: 0;
  font-size: 18px;     /* was effectively ~16px */
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  color: var(--text);
  background:
    radial-gradient(900px 550px at 15% 10%, rgba(45,126,247,.28), transparent 70%),
    radial-gradient(900px 600px at 90% 25%, rgba(242,212,92,.22), transparent 70%),
    var(--bg);
  line-height: 1.65;
}


h1{
  font-size: clamp(34px, 3.2vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.6px;
  margin-bottom: 14px;
}

h2{
  font-size: clamp(24px, 2.0vw, 34px);
  line-height: 1.18;
  letter-spacing: -0.3px;
  margin-bottom: 10px;
}

h3{
  font-size: clamp(18px, 1.4vw, 22px);
  line-height: 1.25;
  margin-bottom: 8px;
}

p, li{
  font-size: 24px;
  line-height: 1.7;
}

.small{
  font-size: 14.5px;  /* was a bit tiny */
  line-height: 1.55;
}

a{ color: inherit; text-decoration: none; }
a:hover{ text-decoration: underline; }

.wrap{
  width: 80vw;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 var(--pad);
}

/* HEADER / NAV */
header{
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(11,18,32,.62);
  border-bottom: 1px solid var(--line);
}

.nav{
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16.5px;
  padding: 11px 14px;  gap: 16px;
}

.brand{
  display: flex;
  align-items: center;
  gap: 16px;
}

/* LOGO — NOW 3× BIGGER */
.brand img{
  width: 200px;
  height: 200px;
  object-fit: contain;
}

.brand .name{
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand .name strong{
  font-size: 48px;
  font-weight: 700;
  letter-spacing: -0.3px;
}

.brand .name span{
  font-size: 24px;
  color: var(--muted);
  margin-top: 4px;
}


nav ul{
  list-style: none;
  display: flex;
  gap: 14px;
  margin: 0;
  padding: 0;
}

nav a{
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--muted);
}

nav a:hover{
  background: rgba(255,255,255,.08);
  color: var(--text);
  text-decoration: none;
}

.btn{
  padding: 11px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.05);
  font-size: 16.5px;
}

.btn.primary{
  background: linear-gradient(135deg, var(--accent), rgba(45,126,247,.7));
  border-color: rgba(45,126,247,.7);
}

/* PAGE CONTENT */
section{
  padding: 48px 0;
}

/* Prevent overly long lines of text */
section p{
  max-width: 75ch;
}

.card{
  background: rgba(255,255,255,.05);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
}

h1, h2, h3{
  margin-top: 0;
}

footer{
  border-top: 1px solid var(--line);
  padding: 24px 0;
  color: var(--muted);
  margin-top: 40px;
  text-align: center;
  font-size: 24px;
}

/* RESPONSIVE */
@media (max-width: 900px){
  .nav{
    flex-direction: column;
    align-items: flex-start;
  }

  nav ul{
    flex-wrap: wrap;
  }

  .brand img{
    width: 96px;
    height: 96px;
  }
}

/* Active tab highlighting */
nav a.active{
  background: rgba(255,255,255,.10);
  color: var(--text);
  border: 1px solid rgba(255,255,255,.18);
  text-decoration: none;
}
