:root {
  --purple: #2E1A47;
  --purple-light: #4A2E6E;
  --gold: #D4AF37;
  --gold-dark: #B8942E;
  --ink: #1F2937;
  --muted: #6B7280;
  --bg: #FFFFFF;
  --bg-soft: #F7F5FA;
  --border: #E5E1EC;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: Montserrat, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }

.wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

header.site {
  border-bottom: 1px solid var(--border);
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 10;
}

header.site .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
}

.logo {
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.04em;
  color: var(--purple);
}

.logo span { color: var(--gold-dark); }

nav.main a {
  margin-left: 28px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
}

nav.main a:hover { color: var(--purple); }

.btn {
  display: inline-block;
  padding: 12px 26px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.02em;
}

.btn-gold {
  background: var(--gold);
  color: #1a1a1a;
}

.btn-gold:hover { background: var(--gold-dark); }

.btn-outline {
  border: 1.5px solid var(--purple);
  color: var(--purple);
}

.btn-outline:hover { background: var(--purple); color: #fff; }

.hero {
  background: linear-gradient(180deg, var(--bg-soft) 0%, #fff 100%);
  padding: 72px 0 56px;
  text-align: center;
}

.eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--gold-dark);
  text-transform: uppercase;
  margin-bottom: 14px;
}

h1 {
  font-size: 42px;
  color: var(--purple);
  margin: 0 0 18px;
  font-weight: 700;
}

h2 {
  font-size: 28px;
  color: var(--purple);
  margin: 0 0 16px;
  font-weight: 700;
}

h3 {
  font-size: 18px;
  color: var(--purple);
  margin: 0 0 10px;
  font-weight: 700;
}

.lede {
  font-size: 18px;
  color: var(--muted);
  max-width: 640px;
  margin: 0 auto 32px;
}

.cta-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

section { padding: 56px 0; }
section.soft { background: var(--bg-soft); }

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.card {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 26px;
  background: #fff;
}

.card ul { padding-left: 18px; margin: 10px 0 0; color: var(--muted); font-size: 14px; }
.card ul li { margin-bottom: 6px; }

table.compare {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
}

table.compare th, table.compare td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}

table.compare th { background: var(--bg-soft); color: var(--purple); }

footer.site {
  background: var(--purple);
  color: #E9E4F2;
  padding: 40px 0;
  margin-top: 40px;
}

footer.site a { color: #E9E4F2; opacity: 0.85; }
footer.site a:hover { opacity: 1; }
footer.site .foot-links { display: flex; gap: 22px; flex-wrap: wrap; margin-top: 14px; font-size: 13px; }

.pill {
  display: inline-block;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  color: var(--purple);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 999px;
  margin: 3px 6px 3px 0;
}

.logo-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.pill-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 96px;
  height: 68px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px;
}

.pill-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.pill-logo.lg {
  width: 96px;
  height: 68px;
  padding: 8px;
}

.pill-logo.lg img {
  transform: scale(1.6);
}

.pill-logo .icon-mask {
  display: block;
  width: 44px;
  height: 44px;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  background-color: currentColor;
}

.pill-logo.mono {
  color: var(--purple);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.5px;
}

.callout {
  border: 1px solid var(--gold);
  background: #FFFBEF;
  border-radius: 10px;
  padding: 22px 26px;
}

.two-col {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

@media (max-width: 760px) {
  .two-col { grid-template-columns: 1fr; }
  nav.main { display: none; }
  h1 { font-size: 32px; }
}
