:root {
  --purple: #6e5c8c;
  --purple-light: #e8def8;
  --bg: #f6f6f6;
  --card: #ffffff;
  --text: #171717;
  --text-2: #3d3d3d;
  --muted: #747474;
  --border: #ececec;
}

* {
  box-sizing: border-box;
}

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

a {
  color: var(--purple);
}

.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.site-header {
  background: var(--purple);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
  text-decoration: none;
}

.logo {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  object-fit: cover;
}

.nav-link {
  color: #ffffff;
  text-decoration: none;
  font-size: 15px;
  opacity: 0.9;
}

/* Hero */
.hero {
  background: var(--purple);
  color: #ffffff;
  padding: 36px 0 64px;
}

.hero h1 {
  font-size: 40px;
  line-height: 1.15;
  margin: 0 0 14px;
  font-weight: 600;
}

.hero p {
  font-size: 18px;
  opacity: 0.92;
  max-width: 620px;
  margin: 0 0 28px;
}

.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 14px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
}

.btn-primary {
  background: #ffffff;
  color: var(--purple);
}

.btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: #ffffff;
  margin-left: 10px;
}

/* Sections */
section {
  padding: 56px 0;
}

h2 {
  font-size: 26px;
  color: var(--text);
  margin: 0 0 28px;
  font-weight: 600;
}

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

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
}

.card h3 {
  margin: 0 0 8px;
  font-size: 18px;
  color: var(--text);
  font-weight: 600;
}

.card p {
  margin: 0;
  font-size: 15px;
  color: var(--muted);
}

.price-card .tier {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 10px;
}

.price-card .price {
  font-size: 24px;
  font-weight: 600;
  color: var(--purple);
  margin-top: -8px;
}

/* Footer */
.site-footer {
  background: #fafafa;
  border-top: 1px solid var(--border);
  padding: 32px 0;
  color: var(--muted);
  font-size: 13px;
}

.site-footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  align-items: center;
  justify-content: space-between;
}

.site-footer a {
  color: var(--muted);
}

/* Privacy / content page */
.page {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  margin: 40px 0;
}

.page h1 {
  font-size: 28px;
  color: var(--text);
  margin: 0 0 6px;
  font-weight: 600;
}

.page .updated {
  color: var(--muted);
  font-size: 13px;
  margin: 0 0 24px;
}

.page h2 {
  font-size: 18px;
  margin: 28px 0 8px;
}

.page p,
.page li {
  font-size: 15px;
  color: var(--text-2);
}

.center {
  display: grid;
  place-items: center;
}
