:root{
  --brand:#2563eb;
  --brand2:#1d4ed8;
  --text:#0f172a;
  --muted:#64748b;
  --line:#e5e7eb;
  --radius:18px;
}

*{box-sizing:border-box}

body{
  margin:0;
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial;
  background:#f5f7fb;
  color:var(--text);
  line-height:1.65;
}

a{color:var(--brand);text-decoration:none}
.wrap{max-width:980px;margin:0 auto;padding:16px}

/* Header */
header{
  position:sticky;top:0;z-index:10;
  background:#f5f7fbcc;
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--line);
}
.topbar{
  max-width:980px;margin:0 auto;
  padding:12px 16px;
  display:flex;gap:12px;
  justify-content:space-between;align-items:center;
  flex-wrap:wrap;
}
.brand{display:flex;gap:10px;align-items:center;font-weight:800}
.logo{
  width:34px;height:34px;border-radius:10px;
  background:linear-gradient(135deg,var(--brand),#60a5fa);
}
.nav{display:flex;gap:8px;flex-wrap:wrap}
.nav a{padding:8px 10px;border-radius:12px}
.ctaTop{display:flex;gap:10px;flex-wrap:wrap}
.pill{
  font-size:12px;padding:6px 10px;
  border-radius:999px;background:#eef2ff;
}
.btn{
  padding:12px 18px;border-radius:14px;
  background:linear-gradient(135deg,var(--brand),var(--brand2));
  color:#fff;font-weight:800;border:none;
}

@media(max-width:640px){
  .topbar{flex-direction:column}
  .ctaTop .btn{width:100%}
}

/* Hero */
.hero{
  margin-top:16px;padding:22px;
  border-radius:var(--radius);
  background:linear-gradient(135deg,#0b1220,#0f1a30);
  color:#e5e7eb;
}
.adLabel{
  display:inline-flex;gap:8px;
  font-size:12px;text-transform:uppercase;
  background:#111827;
  padding:6px 10px;border-radius:999px;
}
.adDot{width:8px;height:8px;border-radius:50%;background:#22c55e}
.meta{margin-top:10px;display:flex;gap:10px;flex-wrap:wrap}
.tag{
  font-size:12px;padding:6px 10px;border-radius:999px;
  background:rgba(255,255,255,.12);
}

/* Content */
.content{max-width:780px;margin:0 auto;padding:18px 0}
.card{
  background:#fff;border-radius:var(--radius);
  padding:22px;border:1px solid var(--line);
}
.lead{font-size:18px}
.divider{height:1px;background:var(--line);margin:18px 0}

.center-actions{
  display:flex;justify-content:center;
  gap:12px;flex-wrap:wrap;margin-top:12px;
}

.callout{
  margin:18px 0;padding:16px;
  border-radius:16px;
  background:#f1f5ff;border:1px solid #c7d2fe;
}

.finalCta{
  margin:18px 0;padding:16px;
  border-radius:16px;text-align:center;
  background:#eef2ff;border:1px solid #c7d2fe;
}

/* Quiz */
.quiz{
  margin-top:20px;padding:16px;
  border-radius:16px;
  background:#fff;border:1px solid var(--line);
  text-align:center;
}
.progressBar{height:10px;background:#e5e7eb;border-radius:999px}
.progressFill{height:100%;width:0;background:var(--brand)}
.choices{max-width:520px;margin:0 auto;display:grid;gap:10px}
.choice{
  padding:12px;border-radius:14px;
  border:1px solid var(--line);
  background:#f8fafc;font-weight:700;
}

.result{
  display:none;margin-top:16px;
  padding:16px;border-radius:16px;
  background:#ecfdf5;border:1px solid #86efac;
}

/* Footer */
footer{
  text-align:center;font-size:13px;
  color:#475569;padding:20px 0;
}
footer a{margin:0 10px;color:#475569}


/* Australia footer tweaks */
.siteFooter{
  text-align:center;
  font-size:13px;
  color:#475569;
  padding:22px 0;
}
.siteFooter .footerLinks{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
  margin-bottom:8px;
}
.siteFooter .footerMeta{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
  opacity:.95;
}
.siteFooter a{color:#475569}
.siteFooter .sep{opacity:.6}
