@charset "UTF-8";

:root
{
  --bg: #f4f6f8;
  --card: #ffffff;
  --ink: #0f172a;
  --muted: #64748b;
  --border: #e5e7eb;
  --brand: #1f6feb;
  --brand-2: #0ea5e9;
  --danger: #ef4444;
  --ok: #16a34a;
  --shadow: 0 14px 40px rgba(2, 6, 23, 0.08);
  --shadow-soft: 0 10px 28px rgba(2, 6, 23, 0.06);
  --radius: 16px;
  --radius-sm: 12px;
  --wrap: 980px;
  --focus: rgba(31, 111, 235, 0.28);
  --header-bg: rgba(255, 255, 255, 0.88);
}

*
{
  box-sizing: border-box;
}

html
{
  height: 100%;
  scroll-behavior: smooth;
}

body
{
  min-height: 100%;
  margin: 0;
  background: radial-gradient(1200px 500px at 20% 0%, #eef5ff 0%, transparent 55%),
              radial-gradient(900px 460px at 90% 10%, #ecfeff 0%, transparent 60%),
              var(--bg);
  color: var(--ink);
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img
{
  max-width: 100%;
  height: auto;
  display: block;
}

a
{
  color: var(--brand);
  text-decoration: none;
}

a:hover
{
  text-decoration: underline;
}

a:focus-visible
{
  outline: 3px solid var(--focus);
  outline-offset: 2px;
  border-radius: 10px;
}

.pol-wrap
{
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 18px;
}

.pol-main
{
  padding: 22px 0 34px 0;
}

/* =========================
   Header
   ========================= */

.pol-header
{
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--header-bg);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(10px);
}

.pol-header .pol-wrap
{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 18px;
}

.pol-brand
{
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.pol-title
{
  font-weight: 900;
  letter-spacing: -0.03em;
  font-size: 1.05rem;
  color: var(--ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pol-sub
{
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.25;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pol-nav
{
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.pol-nav a
{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 12px;
  border-radius: 999px;
  border: 1px solid transparent;
  color: var(--ink);
  font-weight: 800;
  font-size: 0.95rem;
  background: transparent;
  transition: background 140ms ease, border-color 140ms ease, transform 140ms ease;
}

.pol-nav a:hover
{
  background: #f1f5f9;
  border-color: #e2e8f0;
  text-decoration: none;
}

.pol-nav a:active
{
  transform: translateY(1px);
}

.pol-nav a:focus-visible
{
  outline: 3px solid var(--focus);
  outline-offset: 2px;
}

/* =========================
   Hero
   ========================= */

.pol-hero
{
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px;
}

.pol-hero h1
{
  margin: 0;
  font-size: 1.85rem;
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.pol-lead
{
  margin: 10px 0 0 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.pol-cards
{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 16px;
}

.pol-card
{
  display: block;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: #ffffff;
  padding: 14px;
  box-shadow: var(--shadow-soft);
  transition: transform 140ms ease, box-shadow 140ms ease, border-color 140ms ease;
}

.pol-card:hover
{
  transform: translateY(-2px);
  border-color: #dbeafe;
  box-shadow: 0 18px 40px rgba(2, 6, 23, 0.10);
  text-decoration: none;
}

.pol-card-title
{
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.pol-card-sub
{
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.96rem;
}

.pol-meta
{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.95rem;
}

.pol-meta strong
{
  color: var(--ink);
}

/* =========================
   Sections
   ========================= */

.pol-section
{
  margin-top: 18px;
  scroll-margin-top: 90px;
}

.pol-section-head
{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 6px 2px;
}

.pol-section-head h2
{
  margin: 0;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.pol-copy
{
  appearance: none;
  border: 1px solid var(--border);
  background: #ffffff;
  color: var(--ink);
  padding: 9px 12px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 900;
  font-size: 0.92rem;
  transition: background 140ms ease, border-color 140ms ease, transform 140ms ease;
}

.pol-copy:hover
{
  background: #f8fafc;
  border-color: #dbeafe;
}

.pol-copy:active
{
  transform: translateY(1px);
}

.pol-copy:focus-visible
{
  outline: 3px solid var(--focus);
  outline-offset: 2px;
}

.pol-box
{
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px;
}

.pol-box p
{
  margin: 10px 0;
  color: var(--ink);
}

.pol-box p strong
{
  color: var(--ink);
}

.pol-box h3
{
  margin: 18px 0 8px 0;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.pol-box ul
{
  margin: 10px 0 14px 0;
  padding: 0;
  list-style: none;
}

.pol-box li
{
  position: relative;
  padding-left: 26px;
  margin: 10px 0;
  color: var(--ink);
}

.pol-box li::before
{
  content: "";
  position: absolute;
  left: 8px;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--brand);
  box-shadow: 0 0 0 4px rgba(31, 111, 235, 0.10);
}

.pol-box p,
.pol-box li
{
  font-size: 1rem;
}

/* =========================
   Footer note
   ========================= */

.pol-footer-note
{
  margin-top: 18px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px dashed #d7dee8;
  border-radius: var(--radius);
  padding: 14px 16px;
  backdrop-filter: blur(6px);
}

.pol-note
{
  margin: 6px 0;
  color: var(--muted);
}

/* =========================
   Site footer (fallback)
   ========================= */

.pol-site-footer
{
  border-top: 1px solid var(--border);
  background: #ffffff;
  padding: 16px 0;
}

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

.pol-foot-left
{
  color: var(--muted);
}

.pol-foot-right
{
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.pol-foot-right a
{
  color: var(--ink);
  font-weight: 800;
}

/* =========================
   Toast
   ========================= */

.pol-toast
{
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 14px;
  background: rgba(15, 23, 42, 0.96);
  color: #ffffff;
  padding: 12px 14px;
  border-radius: 14px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 160ms ease, transform 160ms ease;
  box-shadow: 0 18px 45px rgba(2, 6, 23, 0.25);
  z-index: 100;
  font-weight: 900;
  font-size: 0.96rem;
  text-align: center;
}

.pol-toast-show
{
  opacity: 1;
  transform: translateY(0px);
}

/* =========================
   Mobile
   ========================= */

@media (max-width: 720px)
{
  .pol-header .pol-wrap
  {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 10px;
    padding: 12px 18px;
  }

  .pol-brand
  {
    width: 100%;
  }

  .pol-title
  {
    white-space: normal;
  }

  .pol-sub
  {
    white-space: normal;
    font-size: 0.90rem;
    line-height: 1.35;
  }

  .pol-nav
  {
    width: 100%;
    justify-content: flex-start;
    gap: 8px;
    padding-top: 10px;
    border-top: 1px solid var(--border);
  }

  .pol-nav a
  {
    padding: 10px 12px;
    font-size: 0.95rem;
    background: #ffffff;
    border-color: var(--border);
  }

  .pol-hero
  {
    padding: 18px;
  }

  .pol-hero h1
  {
    font-size: 1.55rem;
  }

  .pol-lead
  {
    font-size: 1rem;
  }

  .pol-cards
  {
    grid-template-columns: 1fr;
  }

  .pol-meta
  {
    grid-template-columns: 1fr;
  }

  .pol-section-head
  {
    flex-wrap: wrap;
    align-items: flex-start;
  }

  .pol-copy
  {
    width: 100%;
    justify-content: center;
  }

  .pol-box
  {
    padding: 16px;
  }

  .pol-box li
  {
    padding-left: 24px;
  }

  .pol-box li::before
  {
    left: 7px;
  }
}

/* =========================
   Small phones
   ========================= */

@media (max-width: 380px)
{
  .pol-wrap
  {
    padding: 0 14px;
  }

  .pol-hero
  {
    padding: 16px;
  }

  .pol-hero h1
  {
    font-size: 1.45rem;
  }

  .pol-nav a
  {
    padding: 9px 11px;
    font-size: 0.93rem;
  }

  .pol-toast
  {
    font-size: 0.94rem;
    padding: 11px 12px;
  }
}
