/* Public policy / about / contact pages — landing brand */
.policy-page {
  padding: 28px 0 88px;
  max-width: 100%;
  overflow-x: clip;
  background:
    radial-gradient(900px 420px at 8% -10%, rgba(41, 98, 255, 0.08), transparent 55%),
    radial-gradient(640px 320px at 100% 8%, rgba(34, 197, 94, 0.05), transparent 50%),
    var(--bg, #fff);
}
.policy-page .container {
  width: min(var(--max, 1160px), calc(100% - 36px));
}
.policy-card {
  position: relative;
  max-width: 920px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--line, #E8EDF5);
  border-radius: 28px;
  padding: 28px 24px;
  box-shadow: var(--shadow, 0 12px 40px rgba(15, 23, 42, 0.08));
  overflow: hidden;
}
.policy-card::before {
  content: "";
  position: absolute;
  right: -60px;
  top: -60px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(41,98,255,.12), transparent 70%);
  pointer-events: none;
}
.policy-decor {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.policy-decor img {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  flex: 0 0 auto;
}
.policy-card h1 {
  margin: 0 0 16px;
  font-size: clamp(26px, 5vw, 36px);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--ink, #0B1220);
  line-height: 1.15;
  position: relative;
}
.policy-body {
  position: relative;
  color: var(--muted, #667085);
  line-height: 1.75;
  font-size: 16px;
  font-weight: 500;
}
.policy-body p { margin: 0 0 14px; }
.policy-body h2 {
  margin: 28px 0 12px;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink, #0B1220);
}
.policy-body h2:first-child { margin-top: 0; }
.policy-body ul,
.policy-body ol {
  margin: 0 0 16px;
  padding-left: 22px;
  color: var(--muted, #667085);
}
.policy-body li { margin-bottom: 8px; line-height: 1.65; }
.policy-body a { color: var(--brand, #2962FF); font-weight: 750; }
.policy-body form {
  display: grid;
  gap: 12px;
  max-width: 520px;
  margin: 16px 0;
}
.policy-body input,
.policy-body textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--line, #E8EDF5);
  border-radius: 14px;
  font: inherit;
  color: var(--text, #1A1F36);
  background: #fff;
  box-sizing: border-box;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.policy-body input:focus,
.policy-body textarea:focus {
  outline: none;
  border-color: #93C5FD;
  box-shadow: 0 0 0 4px rgba(41, 98, 255, 0.12);
}
.policy-body button[type="submit"],
.policy-body .policy-btn {
  border: 0;
  border-radius: 14px;
  background: linear-gradient(180deg, #3B72FF 0%, var(--brand, #2962FF) 100%);
  color: #fff;
  font-weight: 750;
  padding: 13px 16px;
  cursor: pointer;
  font: inherit;
  box-shadow: 0 10px 24px rgba(41, 98, 255, 0.25);
  transition: transform .15s ease, box-shadow .15s ease;
}
.policy-body button[type="submit"]:hover,
.policy-body .policy-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(41, 98, 255, 0.32);
}
.policy-alert {
  padding: 12px 14px;
  border-radius: 14px;
  font-weight: 750;
  margin-bottom: 14px;
}
.policy-alert.success { background: #ECFDF5; color: #047857; }
.policy-alert.error { background: #FEF2F2; color: #B91C1C; }

.policy-highlight {
  display: grid;
  gap: 10px;
  margin: 18px 0 8px;
}
.policy-highlight-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 16px;
  border-radius: 16px;
  background: linear-gradient(180deg, #F8FAFF, #fff);
  border: 1px solid var(--line, #E8EDF5);
}
.policy-highlight-item img {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  flex: 0 0 auto;
}
.policy-highlight-item strong {
  display: block;
  color: var(--ink, #0B1220);
  font-size: 14px;
  margin-bottom: 2px;
}
.policy-highlight-item span {
  color: var(--muted, #667085);
  font-size: 13px;
  line-height: 1.45;
}

@media (min-width: 720px) {
  .policy-card { padding: 40px 36px; }
  .policy-highlight { grid-template-columns: 1fr 1fr; }
}
