:root {
  --bg: #eef1f5;
  --card-bg: #ffffff;
  --text-primary: #0f1419;
  --text-secondary: #55606b;
  --text-muted: #8a94a0;
  --accent: #1877f2;
  --accent-dark: #135ec4;
  --border: #e4e8ed;
  --radius: 16px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: linear-gradient(180deg, #f4f6f9 0%, #e9edf2 100%);
  color: var(--text-primary);
  display: flex;
  justify-content: center;
  padding: 56px 20px;
}

.page {
  width: 100%;
  max-width: 920px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}

.brand-name {
  font-weight: 600;
  font-size: 15px;
  color: var(--text-secondary);
  letter-spacing: 0.2px;
}

.card {
  position: relative;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 1px 2px rgba(15, 20, 25, 0.04), 0 12px 32px rgba(15, 20, 25, 0.06);
  padding: 48px 64px;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent) 0%, #6bb6ff 100%);
}

.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(24, 119, 242, 0.08);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 14px;
}

h1 {
  font-size: 28px;
  line-height: 1.25;
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}

.lede {
  font-size: 16px;
  color: var(--text-secondary);
  margin: 0 0 32px;
  line-height: 1.6;
}

.button {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  padding: 12px 22px;
  border-radius: 8px;
  transition: background 0.15s ease;
}

.button:hover {
  background: var(--accent-dark);
  text-decoration: none;
}

.fine-print {
  margin-top: 18px;
  font-size: 13px;
  color: var(--text-muted);
}

.section {
  padding-top: 28px;
  margin-top: 28px;
  border-top: 1px solid var(--border);
}

.section:first-of-type {
  padding-top: 0;
  margin-top: 8px;
  border-top: none;
}

h2 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 12px;
  color: var(--text-primary);
}

h2 .icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(24, 119, 242, 0.1);
  color: var(--accent);
}

h2 .icon svg {
  width: 15px;
  height: 15px;
}

p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0 0 12px;
}

ul {
  margin: 0 0 12px;
  padding-left: 0;
  list-style: none;
}

li {
  position: relative;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 8px;
  padding-left: 26px;
}

li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--accent);
  opacity: 0.75;
}

a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
}

a:hover {
  color: var(--accent-dark);
  text-decoration: underline;
}

.callout {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #f6f8fb;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px 18px;
  margin: 20px 0 0;
}

.callout-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(24, 119, 242, 0.1);
  color: var(--accent);
}

.callout-icon svg {
  width: 16px;
  height: 16px;
}

.callout p {
  margin: 0;
  color: var(--text-primary);
  font-size: 14px;
  line-height: 1.55;
}

.divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 32px 0 20px;
}

.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--text-muted);
}

.footer a {
  color: var(--text-muted);
  font-weight: 400;
}

.footer a:hover {
  color: var(--accent);
}

@media (max-width: 560px) {
  .card {
    padding: 32px 24px;
  }
  h1 {
    font-size: 24px;
  }
}
