:root {
  --ink: #151529;
  --muted: #676781;
  --soft: #f7f7ff;
  --paper: #ffffff;
  --purple: #5b45f0;
  --purple-2: #8b7bff;
  --blue: #dfeaff;
  --line: rgba(121, 112, 176, .16);
  --shadow: 0 24px 70px rgba(45, 38, 100, .12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background: linear-gradient(180deg, #f6f7ff 0%, #ffffff 36%, #f5f6ff 100%);
  font-family: "Poppins", Arial, sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

.policy-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px min(5vw, 58px);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, .82);
  backdrop-filter: blur(18px);
}

.policy-brand {
  display: inline-flex;
  align-items: center;
  width: 148px;
  min-height: 54px;
}

.policy-brand img {
  width: 148px;
  height: auto;
  max-height: 58px;
  object-fit: contain;
}

.policy-header nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.policy-header nav a {
  padding: 8px 12px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}

.policy-header nav a:hover,
.policy-header nav a.active {
  color: var(--purple);
  border-color: rgba(91, 69, 240, .18);
  background: #f0eeff;
}

.policy-page {
  overflow: hidden;
}

.policy-hero {
  width: min(1120px, calc(100% - 36px));
  margin: 34px auto 24px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(260px, .72fr);
  align-items: center;
  gap: 34px;
}

.policy-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: var(--purple);
  font-size: 11px;
  font-weight: 900;
}

.policy-kicker span,
.policy-number {
  display: inline-grid;
  place-items: center;
  min-width: 26px;
  height: 26px;
  border-radius: 8px;
  color: var(--purple);
  background: #efedff;
  font-size: 12px;
  font-weight: 900;
}

.policy-hero h1 {
  margin: 0;
  max-width: 660px;
  font-size: clamp(36px, 6vw, 68px);
  line-height: .96;
  letter-spacing: 0;
}

.policy-hero h1 mark {
  color: var(--purple);
  background: transparent;
}

.policy-hero p {
  max-width: 640px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
  font-weight: 500;
}

.policy-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.policy-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid rgba(91, 69, 240, .14);
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
  box-shadow: 0 12px 24px rgba(45, 38, 100, .08);
}

.policy-button.primary {
  color: #fff;
  border-color: var(--purple);
  background: var(--purple);
}

.hero-visual {
  min-height: 250px;
  display: grid;
  place-items: center;
}

.policy-art {
  position: relative;
  width: min(310px, 82vw);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(145deg, #ffffff, #ecebff);
  box-shadow: var(--shadow);
}

.policy-art::before,
.policy-art::after {
  content: "";
  position: absolute;
  border-radius: inherit;
}

.policy-art::before {
  width: 48%;
  height: 62%;
  transform: rotate(-10deg);
  background: linear-gradient(160deg, #fefeff, #d7d1ff);
  box-shadow: 0 20px 48px rgba(91, 69, 240, .2);
}

.policy-art::after {
  width: 38%;
  height: 50%;
  transform: translate(34px, 12px) rotate(13deg);
  background: linear-gradient(160deg, #806cff, #4d37df);
  box-shadow: 0 22px 42px rgba(61, 45, 166, .28);
}

.art-label {
  position: relative;
  z-index: 2;
  width: 104px;
  color: #fff;
  text-align: center;
  font-size: 16px;
  line-height: 1.12;
  font-weight: 900;
  transform: translate(28px, 12px) rotate(13deg);
}

.policy-container {
  width: min(960px, calc(100% - 36px));
  margin: 0 auto 72px;
}

.policy-section {
  margin: 42px 0;
  text-align: center;
}

.policy-section h2 {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  font-size: clamp(22px, 3vw, 32px);
  line-height: 1.15;
}

.policy-section > p {
  max-width: 760px;
  margin: 0 auto 20px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
  font-weight: 500;
}

.policy-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.policy-card,
.policy-note,
.policy-band {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 16px 42px rgba(45, 38, 100, .07);
}

.policy-card {
  padding: 22px;
  text-align: left;
}

.card-icon {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 12px;
  border-radius: 10px;
  color: var(--purple);
  background: #efedff;
  font-size: 16px;
  font-weight: 900;
}

.policy-card h3,
.policy-note h3 {
  margin: 0 0 8px;
  font-size: 16px;
}

.policy-card p,
.policy-card li,
.policy-note p,
.policy-note li {
  margin: 0;
  color: #595872;
  font-size: 12px;
  line-height: 1.7;
  font-weight: 500;
}

.policy-list {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.policy-note {
  padding: 18px 20px;
  text-align: left;
}

.policy-note.accent {
  border-left: 4px solid var(--purple);
  background: #f1f5ff;
}

.policy-band {
  padding: 24px;
}

.dark-band {
  color: #fff;
  background: #111827;
  text-align: left;
  box-shadow: 0 20px 44px rgba(17, 24, 39, .22);
}

.dark-band h3 {
  margin: 0 0 12px;
  font-size: 18px;
}

.dark-band ul,
.simple-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.dark-band li,
.simple-list li {
  position: relative;
  padding-left: 22px;
  margin: 10px 0;
  font-size: 12px;
  line-height: 1.65;
  font-weight: 700;
}

.dark-band li::before,
.simple-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .65em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--purple);
}

.dark-band li::before {
  background: #ff5f6d;
}

.blue-panel {
  background: #eaf2ff;
}

.purple-panel {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(135deg, #654cf5, #4b35df);
  box-shadow: 0 24px 54px rgba(91, 69, 240, .3);
}

.purple-panel h3,
.purple-panel p,
.purple-panel li {
  color: #fff;
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.mini-card {
  padding: 18px 10px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  font-size: 12px;
  font-weight: 900;
  box-shadow: 0 14px 34px rgba(45, 38, 100, .06);
}

.contact-cta {
  margin: 54px auto 36px;
  padding: 34px 24px;
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(135deg, #654cf5, #4b35df);
  text-align: center;
  box-shadow: 0 24px 58px rgba(91, 69, 240, .32);
}

.contact-cta h2 {
  margin: 0 0 10px;
  font-size: clamp(24px, 5vw, 42px);
}

.contact-cta p {
  margin: 0 auto 18px;
  max-width: 620px;
  color: rgba(255, 255, 255, .82);
  font-size: 13px;
  line-height: 1.7;
}

.contact-cta .policy-button {
  border-color: #fff;
  color: var(--purple);
}

.policy-footer {
  padding: 26px min(6vw, 72px);
  color: var(--muted);
  text-align: center;
  font-size: 12px;
  font-weight: 700;
}

@media (max-width: 820px) {
  .policy-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .policy-header nav {
    justify-content: flex-start;
  }

  .policy-hero {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 26px;
  }

  .hero-visual {
    min-height: 190px;
  }

  .policy-art {
    width: min(230px, 72vw);
  }

  .policy-grid,
  .mini-grid {
    grid-template-columns: 1fr;
  }

  .policy-section {
    margin: 34px 0;
  }
}
