﻿:root {
  --bg: #071a1c;
  --panel: #f5fbf8;
  --panel-soft: #eaf7f1;
  --text: #112326;
  --muted: #607174;
  --line: rgba(245, 251, 248, 0.15);
  --green: #8af0b3;
  --cyan: #69d9e8;
  --blue: #4e82ff;
  --shadow: 0 26px 90px rgba(0, 0, 0, 0.3);
  --radius: 30px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  color: var(--panel);
  background:
    radial-gradient(circle at 12% 4%, rgba(105, 217, 232, 0.18), transparent 26rem),
    radial-gradient(circle at 88% 10%, rgba(138, 240, 179, 0.16), transparent 24rem),
    linear-gradient(145deg, #061416, var(--bg));
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 1.68;
}
body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background: linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, black, transparent 86%);
}
a { color: inherit; }
a:focus-visible { outline: 3px solid rgba(138, 240, 179, 0.42); outline-offset: 4px; }
.policy-page {
  width: min(calc(100% - 32px), 1120px);
  margin: clamp(18px, 4vw, 62px) auto clamp(36px, 8vw, 96px);
}
.hero {
  min-height: clamp(360px, 48vw, 520px);
  display: grid;
  align-content: end;
  margin-bottom: 14px;
  padding: clamp(26px, 5vw, 64px);
  border: 1px solid var(--line);
  border-radius: 38px;
  background: linear-gradient(135deg, rgba(105, 217, 232, 0.14), rgba(138, 240, 179, 0.06)), rgba(255,255,255,.045);
  box-shadow: var(--shadow);
}
.badge {
  width: fit-content;
  margin: 0 0 18px;
  padding: 8px 13px;
  border: 1px solid rgba(138, 240, 179, 0.34);
  border-radius: 999px;
  color: var(--green);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}
h1, h2, p, ul { margin-top: 0; }
h1 {
  max-width: 820px;
  margin-bottom: 18px;
  font-size: clamp(2.45rem, 8vw, 6.4rem);
  line-height: .9;
  letter-spacing: -.08em;
}
h2 {
  margin-bottom: 14px;
  color: var(--text);
  font-size: clamp(1.35rem, 2.9vw, 2.25rem);
  line-height: 1.08;
  letter-spacing: -.04em;
}
.hero p:not(.badge) {
  max-width: 760px;
  margin-bottom: 0;
  color: rgba(245, 251, 248, 0.72);
  font-size: clamp(1rem, 1.45vw, 1.12rem);
}
.notice-card, .wide-section, .policy-grid article, .contact-section {
  border: 1px solid rgba(17, 35, 38, 0.08);
  border-radius: var(--radius);
  background: var(--panel);
  color: var(--text);
  box-shadow: var(--shadow);
}
.notice-card, .wide-section, .contact-section { padding: clamp(22px, 4vw, 44px); margin-top: 14px; }
.policy-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 14px;
}
.policy-grid article { min-width: 0; padding: clamp(20px, 3.6vw, 34px); }
.policy-grid article:nth-child(3n) { background: #eef4ff; }
.policy-grid article:nth-child(3n + 2), .muted-section { background: var(--panel-soft); }
p, li { color: var(--muted); font-size: clamp(.98rem, 1.35vw, 1.06rem); }
p { max-width: 880px; margin-bottom: 15px; }
p:last-child, ul:last-child { margin-bottom: 0; }
ul { max-width: 900px; padding-left: 1.15rem; }
li + li { margin-top: 9px; }
strong { color: var(--text); }
.contact-section {
  background: linear-gradient(135deg, var(--green), var(--cyan));
}
.contact-section h2, .contact-section p, .contact-section a { color: #071a1c; }
.contact-section p { color: rgba(7, 26, 28, .72); }
.contact-section a { display: inline-flex; max-width: 100%; overflow-wrap: anywhere; font-size: clamp(1.08rem, 2.2vw, 1.5rem); font-weight: 900; text-underline-offset: 6px; }
@media (max-width: 820px) {
  .policy-grid { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
}
@media (max-width: 480px) {
  body { line-height: 1.58; }
  .policy-page { width: min(calc(100% - 20px), 1120px); margin-top: 10px; }
  .hero, .notice-card, .wide-section, .policy-grid article, .contact-section { border-radius: 22px; padding: 20px 16px; }
  .badge { font-size: .68rem; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}
