:root{
  --bg: #f6f8fc;
  --surface: #ffffff;
  --surface-2: #f1f4fb;

  --text: #0f172a;
  --muted: #475569;
  --border: rgba(15, 23, 42, 0.10);

  --primary: #0a84ff;
  --primary-2: #0f5fd6;

  --shadow: 0 18px 48px rgba(2, 6, 23, 0.10);
  --shadow-soft: 0 10px 26px rgba(2, 6, 23, 0.08);

  --radius: 18px;
  --radius-sm: 14px;

  --max: 1120px;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  background:
    radial-gradient(1000px 600px at 20% 10%, rgba(10,132,255,0.12), transparent 55%),
    radial-gradient(900px 520px at 75% 0%, rgba(15,95,214,0.10), transparent 45%),
    var(--bg);
  color: var(--text);
}

img{ max-width:100%; height:auto; display:block; }
a{ color:inherit; text-decoration:none; }
a:hover{ text-decoration:underline; text-decoration-thickness:2px; text-underline-offset:3px; }

.container{
  width: min(var(--max), calc(100vw - 40px));
  margin: 0 auto;
}

.no-scroll{ overflow:hidden; }

.section{
  padding: 64px 0;
}
.section.alt{
  background: rgba(255,255,255,0.55);
  border-top: 1px solid rgba(15,23,42,0.06);
  border-bottom: 1px solid rgba(15,23,42,0.06);
}

.section-head{
  display:grid;
  gap:10px;
  margin-bottom: 26px;
}
.section-head h2{
  margin:0;
  font-size: 30px;
  letter-spacing: -0.02em;
}
.section-head p{
  margin:0;
  color: var(--muted);
  line-height:1.65;
  max-width: 72ch;
}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 750;
  font-size: 14px;
  border: 1px solid transparent;
  text-decoration:none !important;
  cursor:pointer;
  user-select:none;
  transition: transform .12s ease, box-shadow .12s ease, background .12s ease, border-color .12s ease;
}
.btn:active{ transform: translateY(1px); }
.btn-lg{ padding: 12px 16px; font-size: 15px; }

.btn-primary{
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color:#fff;
  box-shadow: 0 16px 36px rgba(10,132,255,0.22);
}
.btn-primary:hover{
  box-shadow: 0 18px 44px rgba(10,132,255,0.26);
  transform: translateY(-1px);
  text-decoration:none;
}

.btn-ghost{
  background: rgba(255,255,255,0.70);
  border-color: rgba(15,23,42,0.10);
  color: var(--text);
  box-shadow: 0 10px 24px rgba(2,6,23,0.06);
}
.btn-ghost:hover{
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(2,6,23,0.08);
  text-decoration:none;
}

.fine{ color: var(--muted); font-size: 12px; line-height:1.5; margin:0; }

/* Common cards/grids */
.grid-3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.card{
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(15,23,42,0.08);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow-soft);
}
.card.subtle{ background: rgba(241,244,251,0.68); }
.card h3{ margin:0 0 8px; font-size: 18px; }
.card p{ margin:0; color: var(--muted); line-height:1.6; }

.checklist{
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.7;
}
