:root {
  color-scheme: dark;
  --page-bg: #050809;
  --surface: rgba(13, 19, 20, 0.96);
  --surface-soft: rgba(20, 29, 31, 0.88);
  --text: #f8f3ea;
  --muted: rgba(248, 243, 234, 0.68);
  --border: rgba(248, 243, 234, 0.16);
  --accent: #f3c969;
  --danger: #d84f4f;
  --max-width: 920px;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--page-bg);
}

body {
  margin: 0;
  color: var(--text);
  background:
    linear-gradient(135deg, rgba(216, 79, 79, 0.11), transparent 36%),
    radial-gradient(circle at 82% 8%, rgba(243, 201, 105, 0.09), transparent 28%),
    var(--page-bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans KR", sans-serif;
  line-height: 1.7;
}

a {
  color: var(--accent);
}

.policy-header {
  border-bottom: 1px solid var(--border);
  background: rgba(5, 8, 9, 0.92);
  backdrop-filter: blur(12px);
}

.policy-header__inner,
.policy-main,
.policy-footer {
  width: min(calc(100% - 32px), var(--max-width));
  margin-inline: auto;
}

.policy-header__inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.policy-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-size: 20px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-decoration: none;
}

.policy-brand::before {
  content: "RT";
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(216, 79, 79, 0.7);
  color: #ffffff;
  background: rgba(216, 79, 79, 0.18);
  font-size: 11px;
}

.policy-brand span {
  color: var(--danger);
}

.policy-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.policy-nav a {
  color: var(--muted);
  text-decoration: none;
}

.policy-nav a[aria-current="page"],
.policy-nav a:hover {
  color: var(--accent);
}

.policy-main {
  padding: 54px 0 72px;
}

.policy-hero {
  border-left: 4px solid var(--danger);
  padding: 6px 0 8px 20px;
}

.policy-hero h1 {
  margin: 0;
  font-size: clamp(2.2rem, 7vw, 4.5rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
  text-transform: uppercase;
}

.policy-hero p {
  max-width: 720px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 16px;
}

.policy-meta {
  display: inline-flex;
  margin-top: 16px;
  border-left: 3px solid var(--accent);
  padding: 5px 10px;
  color: var(--accent);
  background: rgba(243, 201, 105, 0.08);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.policy-section,
.contact-panel {
  margin-top: 18px;
  border-top: 1px solid var(--border);
  padding: clamp(22px, 4vw, 34px);
  background: var(--surface);
}

.policy-section h2,
.contact-panel h2 {
  margin: 0 0 12px;
  color: #ffffff;
  font-size: 20px;
  line-height: 1.3;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.policy-section h3 {
  margin: 26px 0 8px;
  color: var(--accent);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.policy-section p,
.policy-section ul,
.contact-panel p {
  margin-block: 10px;
  color: var(--muted);
}

.policy-section ul {
  padding-left: 22px;
}

.policy-section strong {
  color: var(--text);
}

.policy-note {
  border-left: 3px solid #78d7ff;
  padding: 14px 16px;
  color: rgba(226, 248, 255, 0.85) !important;
  background: rgba(120, 215, 255, 0.08);
}

.contact-address {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  margin-top: 8px;
  border: 1px solid rgba(243, 201, 105, 0.65);
  border-bottom-width: 3px;
  padding: 0 18px;
  color: #1a1205;
  background: var(--accent);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.05em;
  text-decoration: none;
  text-transform: uppercase;
}

.policy-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  border-top: 1px solid var(--border);
  padding: 26px 0 42px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.policy-footer nav {
  display: flex;
  gap: 14px;
}

@media (max-width: 680px) {
  .policy-header__inner {
    align-items: flex-start;
    flex-direction: column;
    padding-block: 15px;
  }

  .policy-main {
    padding-top: 38px;
  }

  .policy-section,
  .contact-panel {
    padding-inline: 20px;
  }
}
