:root{
  --bg1:#0b1020;
  --bg2:#121a33;

  /* glass */
  --glass: rgba(255,255,255,0.10);
  --glass2: rgba(255,255,255,0.14);
  --border: rgba(255,255,255,0.18);

  /* text */
  --text: rgba(255,255,255,0.92);
  --muted: rgba(255,255,255,0.72);

  /* accents */
  --blue: rgba(120,155,255,0.90);
  --blueSoft: rgba(120,155,255,0.25);

  --shadow: 0 18px 50px rgba(0,0,0,0.35);
  --radius: 18px;
  --max: 1100px;
}

*{ box-sizing:border-box; }
html, body{ height:100%; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color: var(--text);

  background:
    radial-gradient(1100px 600px at 18% 10%, rgba(120, 155, 255, 0.22), transparent 55%),
    radial-gradient(1000px 700px at 82% 32%, rgba(120, 210, 255, 0.14), transparent 60%),
    linear-gradient(160deg, var(--bg1), var(--bg2));
  overflow-x:hidden;
}

a{ color:inherit; text-decoration:none; }
img{ max-width:100%; display:block; }

/* Subtle animated background blobs */
.bg-blobs{
  position:fixed;
  inset:0;
  pointer-events:none;
  z-index:-1;
  filter: blur(44px);
  opacity:0.70;
}
.blob{
  position:absolute;
  width:420px; height:420px;
  border-radius:999px;
  background: rgba(255,255,255,0.08);
  mix-blend-mode: screen;
  animation: floaty 13s ease-in-out infinite;
}
.blob.b1{ left:-140px; top:80px; background: rgba(120,155,255,0.20); }
.blob.b2{ right:-160px; top:140px; background: rgba(120,210,255,0.15); animation-delay:-4s; }
.blob.b3{ left:26%; bottom:-200px; background: rgba(120,155,255,0.12); animation-delay:-7s; }

@keyframes floaty{
  0%,100%{ transform: translate(0,0) scale(1); }
  50%{ transform: translate(18px, -22px) scale(1.06); }
}

.container{
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
}

.nav{
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(10, 14, 28, 0.35);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.nav-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding: 14px 0;
}

.brand{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:700;
  letter-spacing:0.2px;
}
.brand .dot{
  width:12px; height:12px; border-radius:999px;
  background: rgba(255,255,255,0.92);
  box-shadow: 0 0 18px rgba(120,155,255,0.25);
}

.nav-links{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  justify-content:flex-end;
}
.nav-links a{
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid transparent;
  color: var(--muted);
  transition: 160ms ease;
}
.nav-links a:hover{
  color: var(--text);
  border-color: rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.06);
}
.nav-links a.active{
  color: var(--text);
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.16);
}

.glass{
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.section{ padding: 42px 0; }
.hero{ padding: 54px 0 28px; }

.hero-grid{
  display:grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
  align-items:stretch;
}
@media (max-width: 900px){
  .hero-grid{ grid-template-columns: 1fr; }
}

.hero-card{
  padding: 26px;
  position:relative;
  overflow:hidden;
}
.hero-card:before{
  content:"";
  position:absolute;
  inset:-70px -90px auto auto;
  width:260px; height:260px;
  border-radius:999px;
  background: rgba(120,155,255,0.10);
  filter: blur(1px);
}

.kicker{
  color: rgba(255,255,255,0.82);
  font-size: 13px;
  letter-spacing:0.12em;
  text-transform:uppercase;
  margin-bottom: 10px;
}

.h-title{
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.08;
  margin: 0 0 10px;
}
.h-sub{
  color: var(--muted);
  font-size: 16px;
  line-height:1.55;
  margin: 0 0 18px;
}

.badges{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:12px;
}
.badge{
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.86);
  font-size: 13px;
}

.actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:16px;
}

/* Buttons: subtle animation, not obnoxious */
.btn{
  position: relative;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding: 11px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.10);
  color: var(--text);
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
  user-select:none;
  -webkit-tap-highlight-color: transparent;
  overflow:hidden;
}
.btn:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.24);
  box-shadow: 0 14px 30px rgba(0,0,0,0.28);
}
.btn:active{
  transform: translateY(0px) scale(0.99);
  background: rgba(255,255,255,0.12);
}
.btn.secondary{
  background: rgba(255,255,255,0.06);
}

/* tiny shimmer highlight on hover */
.btn::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(120deg, transparent, rgba(120,155,255,0.14), transparent);
  transform: translateX(-120%);
  transition: transform 420ms ease;
  pointer-events:none;
}
.btn:hover::after{
  transform: translateX(120%);
}

/* Optional: keyboard focus */
.btn:focus-visible, .nav-links a:focus-visible, input:focus-visible, textarea:focus-visible{
  outline: none;
  box-shadow: 0 0 0 3px rgba(120,155,255,0.25);
  border-color: rgba(120,155,255,0.40);
}

.side-card{ padding: 22px; }
.side-card h3{ margin:0 0 10px; font-size: 18px; }
.side-card p{ margin:0 0 14px; color: var(--muted); line-height:1.55; }

.grid{ display:grid; gap: 14px; }
.grid.cols-3{ grid-template-columns: repeat(3, 1fr); }
@media (max-width: 900px){
  .grid.cols-3{ grid-template-columns: 1fr; }
}

.card{
  padding: 18px;
  position:relative;
  overflow:hidden;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}
.card:hover{
  transform: translateY(-2px);
  border-color: rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.12);
}

.card h4{ margin:0 0 8px; font-size: 16px; }
.card p{ margin:0; color: var(--muted); line-height:1.55; font-size: 14px; }

.page-title{ font-size: 28px; margin: 0 0 10px; }
.page-sub{ color: var(--muted); margin: 0 0 18px; line-height:1.55; }

.footer{
  padding: 30px 0 46px;
  color: rgba(255,255,255,0.62);
  font-size: 13px;
}

/* Reveal animations */
.reveal{
  opacity:0;
  transform: translateY(10px);
  transition: 520ms ease;
}
.reveal.show{
  opacity:1;
  transform: translateY(0);
}

/* Form fields (clean, glass) */
.field{
  padding:12px 12px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,0.18);
  background:rgba(255,255,255,0.08);
  color:white;
  outline:none;
}
.field::placeholder{ color: rgba(255,255,255,0.55); }
