:root {
  --bg: #f5f7fc;
  --card-bg: #ffffff;
  --accent: #1b7be3;
  --accent-soft: rgba(27,123,227,0.10);
  --text-main: #111827;
  --text-muted: #6b7280;
  --danger: #e11d48;
  --font-main: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  font-family: var(--font-main);
  background: radial-gradient(circle at top, #d5e3ff 0, #f5f7fc 55%, #e5e7f0 100%);
  color: var(--text-main);
}

main { width: 100%; max-width: 860px; }

.card {
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid rgba(15,23,42,0.08);
  box-shadow: 0 18px 40px rgba(15,23,42,0.15);
  padding: 28px 24px 24px;
}

@media (min-width: 720px) { .card { padding: 32px 36px 30px; } }

.brand-row {
  display: flex; align-items: center;
  justify-content: space-between;
  gap: 16px; margin-bottom: 12px;
}

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

.logo-pill {
  width: 38px; height: 38px; border-radius: 50%;
  background: radial-gradient(circle at 30% 20%, #1b7be3, #34d399);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 18px; color: #f9fafb;
  box-shadow: 0 0 18px rgba(37,99,235,0.65);
}

.brand-text { display: flex; flex-direction: column; gap: 2px; }

.brand-text span:first-child {
  font-size: 16px; font-weight: 650;
  letter-spacing: 0.06em; text-transform: uppercase;
}

.brand-text span:last-child { font-size: 12px; color: var(--text-muted); }

.tag-pill {
  font-size: 11px; text-transform: uppercase;
  letter-spacing: 0.14em; border-radius: 999px;
  padding: 6px 12px;
  background: var(--accent-soft);
  color: var(--accent);
  border: 1px solid rgba(27,123,227,0.5);
  white-space: nowrap;
}

h1 {
  margin: 4px 0 12px;
  font-size: clamp(26px, 4vw, 34px);
  line-height: 1.15;
}

.subtitle {
  margin: 0 0 18px;
  color: var(--text-muted);
  font-size: 15px;
  max-width: 650px;
}

.grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr);
  gap: 20px;
  margin-top: 10px;
}

@media (min-width: 880px) {
  .grid { grid-template-columns: minmax(0, 3fr) minmax(0, 2.3fr); }
}

.section {
  border-radius: 16px;
  border: 1px solid rgba(148,163,184,0.4);
  padding: 16px 16px 18px;
  background: radial-gradient(circle at top left, rgba(243,244,246,0.9), transparent 65%);
}

.section h2 {
  margin: 0 0 8px;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 650;
  color: var(--text-muted);
}

.section p {
  margin: 0 0 10px;
  font-size: 14px;
  color: var(--text-main);
}

.bullets {
  list-style: none;
  margin: 0; padding: 0;
  font-size: 14px;
}

.bullets li {
  display: flex; align-items: flex-start;
  gap: 8px; margin-bottom: 6px;
}

.bullets span.bullet-dot {
  width: 7px; height: 7px;
  border-radius: 999px;
  margin-top: 6px;
  background: var(--accent);
  flex-shrink: 0;
}

.badge-row {
  display: flex; flex-wrap: wrap;
  gap: 6px; margin-top: 10px;
}

.badge {
  font-size: 11px;
  padding: 5px 9px;
  border-radius: 999px;
  border: 1px solid rgba(148,163,184,0.7);
  color: var(--text-muted);
  background: #f9fafb;
}

.highlight { color: var(--accent); font-weight: 600; }

.cta-block {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px dashed rgba(209,213,219,0.9);
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.btn-primary,
.btn-ghost {
  border-radius: 999px;
  padding: 9px 16px;
  font-size: 13px;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.15s ease, transform 0.08s ease, border-color 0.15s ease;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, #1b7be3, #2563eb);
  color: #f9fafb;
  font-weight: 600;
  box-shadow: 0 10px 22px rgba(15,23,42,0.35);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 26px rgba(15,23,42,0.45);
}

.btn-ghost {
  background: #f9fafb;
  border-color: rgba(148,163,184,0.9);
  color: var(--text-muted);
}

.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn-pill-icon {
  width: 16px; height: 16px;
  border-radius: 999px;
  border: 1px solid rgba(148,163,184,0.9);
  background: rgba(229,231,235,0.9);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
}

footer {
  margin-top: 14px;
  font-size: 11px;
  color: var(--text-muted);
  display: flex;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

@media (max-width: 640px) {
  .brand-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .tag-pill {
    align-self: flex-start;
  }
}
