/* ---------- Wilya look & feel (tweak here) ---------- */
:root{
  --bg: #0b1020;          /* page background */
  --bg-2: #0f172a;        /* section background (gradients) */
  --text: #e5e7eb;        /* base text */
  --muted: #9ca3af;       /* secondary text */
  --card: #0b1220;        /* cards */
  --border: rgba(255,255,255,.08);
  --primary: #2563eb;     /* CTA buttons */
  --primary-contrast: #ffffff;
  --accent: #60a5fa;      /* accents/focus */
  --radius: 18px;
}

/* ---------- Reset-ish ---------- */
* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial;
  color: var(--text);
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
}

/* ---------- Header / Nav ---------- */
.site-header{
  border-bottom: 1px solid var(--border);
  backdrop-filter: saturate(120%) blur(8px);
  position: sticky; top:0; z-index: 20;
  background: rgba(11,16,32,.7);
}
.container{ max-width: 1120px; margin: 0 auto; padding: 0 20px; }
.nav{
  display: flex; align-items: center; justify-content: space-between; padding: 14px 0;
}
.brand{
  display: flex; align-items: center; gap: 10px; font-weight: 800; letter-spacing: .2px;
}
.brand .dot{ width: 10px; height: 10px; border-radius: 999px; background: var(--accent); display:inline-block; }
.nav a{ color: var(--text); text-decoration: none; opacity:.9; margin-left: 18px; font-weight: 600; }
.nav a:hover{ opacity:1; }

/* ---------- Hero section ---------- */
.hero{
  padding: 36px 0 20px;
}
/* Stack hero content: text on top, widget below */
.hero-grid{
  display: grid;
  grid-template-columns: 1fr;   /* was: 1.05fr .95fr */
  gap: 28px;
}

/* Optional: make the widget card not stretch too wide on big monitors */
.hero-card{
  max-width: 920px;             /* tweak to taste */
  margin: 0 auto;               /* center it */
}
@media (max-width: 980px){ .hero-grid{ grid-template-columns: 1fr; } }
.hero-copy h1{ font-size: clamp(28px, 4vw, 44px); margin: 0 0 10px; }
.hero-copy p{ color: var(--muted); font-size: 18px; line-height: 1.5; margin: 0 0 18px; }
.cta-row{ display:flex; gap:12px; flex-wrap:wrap; }
.btn{
  border: 1px solid var(--border);
  background: var(--primary); color: var(--primary-contrast);
  font-weight: 800; padding: 12px 16px; border-radius: 12px; cursor: pointer; text-decoration: none;
}
.btn.ghost{ background: transparent; color: var(--text); }
.btn:hover{ filter: brightness(1.05); }

/* ---------- Card wrapper so widget matches site ---------- */
.hero-card{
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 10px;
  box-shadow: 0 20px 40px rgba(0,0,0,.35);
}

/* ---------- Section badges / small details ---------- */
.badges{ display:flex; gap:8px; flex-wrap:wrap; margin-top: 10px; }
.badge{ font-size: 12px; padding: 4px 10px; border-radius: 999px; background: #0d1a34; color:#c7d2fe; border:1px solid var(--border); }

/* ---------- Footer ---------- */
.site-footer{
  border-top:1px solid var(--border); margin-top: 40px; color: var(--muted);
}
.site-footer .row{ display:flex; align-items:center; justify-content:space-between; padding: 14px 0; }
.site-footer a{ color: var(--muted); text-decoration:none; }
.site-footer a:hover{ color: var(--text); }
