:root{
  --purple:#4F36B1;
  --purple2:#482D70;
  --gold:#F5BD69;
  --ink:#252D37;
  --slate:#41494F;
  --bg:#F1F1F2;
  --card:#ffffff;
  --border: rgba(37,45,55,.12);
  --shadow: 0 10px 30px rgba(37,45,55,.10);
  --radius: 18px;
}

*{ box-sizing:border-box; }
html,body{ margin:0; padding:0; }
body{
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, "Helvetica Neue", Helvetica, "Noto Sans", "Liberation Sans", sans-serif;
  color: var(--ink);
  background: #fff;
}

a{ color: inherit; }
.container{ max-width: 1120px; margin: 0 auto; padding: 0 16px; }

.topbar{
  position: sticky; top:0; z-index: 50;
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  padding: 12px 0;
  gap: 14px;
}
.brand{
  display:flex; align-items:center; gap: 10px;
  text-decoration:none;
}
.brand img{ width: 34px; height: 34px; border-radius: 10px; }
.brand strong{ font-size: 14px; letter-spacing: -0.01em; }
.brand span{ display:block; font-size: 12px; color: var(--slate); margin-top: 1px; }

.navlinks{
  display:flex; gap: 14px; flex-wrap: wrap; align-items:center;
}
.navlinks a{
  text-decoration:none;
  padding: 8px 10px;
  border-radius: 999px;
  color: var(--slate);
  font-weight: 700;
  font-size: 13px;
}
.navlinks a:hover{ background: rgba(79,54,177,.08); color: var(--purple2); }

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding: 12px 16px;
  border-radius: 999px;
  text-decoration:none;
  font-weight: 800;
  font-size: 14px;
  border: 1px solid transparent;
  transition: transform .12s ease, box-shadow .12s ease, background .12s ease, border-color .12s ease;
  gap: 10px;
  line-height: 1;
}
.btn-primary{
  background: var(--purple);
  color: #fff !important;
  box-shadow: 0 12px 26px rgba(79,54,177,.22);
}
.btn-primary:hover{ transform: translateY(-1px); box-shadow: 0 16px 32px rgba(79,54,177,.26); }
.btn-ghost{
  background:#fff;
  border-color: rgba(79,54,177,.26);
  color: var(--purple2) !important;
}
.btn-ghost:hover{ transform: translateY(-1px); border-color: rgba(79,54,177,.38); }

.hero{
  padding: 48px 0 24px;
  background:
    radial-gradient(1000px 450px at 12% 10%, rgba(245,189,105,.28), transparent 60%),
    radial-gradient(900px 520px at 92% 20%, rgba(79,54,177,.18), transparent 55%),
    linear-gradient(180deg, rgba(79,54,177,.05), rgba(79,54,177,.01));
  border-bottom: 1px solid var(--border);
}
.badge{
  display:inline-flex; align-items:center; gap:10px;
  padding: 8px 12px;
  background: rgba(79,54,177,.10);
  border: 1px solid rgba(79,54,177,.18);
  border-radius: 999px;
  color: var(--purple2);
  font-weight: 800;
  font-size: 13px;
}
.dot{ width:10px;height:10px;border-radius:999px;background:var(--gold); display:inline-block; }

.h1{
  margin: 14px 0 10px;
  font-size: clamp(30px, 3.5vw, 50px);
  line-height: 1.05;
  letter-spacing: -0.03em;
}
.sub{
  margin: 0 0 18px;
  color: var(--slate);
  font-size: 16px;
  line-height: 1.55;
  max-width: 72ch;
}
.ctas{ display:flex; gap:10px; flex-wrap:wrap; margin-top: 12px; }

.section{ padding: 28px 0; }
.section h2{
  margin: 0 0 10px;
  font-size: 26px;
  letter-spacing: -0.02em;
}
.section p{ margin: 0 0 12px; color: var(--slate); line-height: 1.6; }

.grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 16px;
}
.card{
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px;
}
.card h3{ margin: 0 0 10px; font-size: 18px; letter-spacing:-0.01em; }
.small{ font-size: 13px; color: var(--slate); line-height: 1.55; }

.list{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 16px;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}
.list li{
  display:flex; gap: 10px; align-items:flex-start;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background:#fff;
}
.check{
  width: 22px; height: 22px; border-radius: 999px;
  background: rgba(79,54,177,.14);
  border: 1px solid rgba(79,54,177,.22);
  display:flex; align-items:center; justify-content:center;
  flex: 0 0 auto;
  margin-top: 1px;
}
.check svg{ width: 14px; height: 14px; fill: var(--purple); }
.list b{ display:block; margin-bottom: 4px; }
.list span{ color: var(--slate); font-size: 13px; line-height: 1.45; }

.tablewrap{
  overflow:auto;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  background: #fff;
}
table{ width:100%; border-collapse: collapse; min-width: 760px; }
th{
  text-align:left;
  font-size: 13px;
  padding: 14px 16px;
  color: #fff;
  background: linear-gradient(90deg, var(--purple2), var(--purple));
}
td{
  padding: 14px 16px;
  border-top: 1px solid rgba(37,45,55,.10);
  font-size: 14px;
}
tr:hover td{ background: rgba(245,189,105,.12); }
.pill{
  display:inline-flex; align-items:center; gap:8px;
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 12px;
  border: 1px solid rgba(245,189,105,.45);
  background: rgba(245,189,105,.22);
  color: #5a3a00;
  margin-left: 8px;
}

.steps{ margin: 12px 0 0; padding: 0; list-style: none; display:grid; gap: 10px; }
.step{
  display:flex; gap: 12px;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fff;
}
.num{
  width: 30px; height: 30px;
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(79,54,177,.16), rgba(79,54,177,.06));
  border: 1px solid rgba(79,54,177,.20);
  display:flex; align-items:center; justify-content:center;
  font-weight: 900;
  color: var(--purple2);
  flex: 0 0 auto;
}

.footer{
  padding: 24px 0 40px;
  border-top: 1px solid var(--border);
  color: var(--slate);
  font-size: 13px;
}
.footer a{ color: var(--purple2); }

@media (max-width: 900px){
  .grid{ grid-template-columns: 1fr; }
  .list{ grid-template-columns: 1fr; }
}
