:root {
  color-scheme: light dark;
  --page: #f4f6f8;
  --surface: rgba(255, 255, 255, 0.78);
  --surface-strong: #ffffff;
  --navy: #111a2b;
  --heading: #111a2b;
  --text: #344054;
  --muted: #667085;
  --accent: #d8664d;
  --accent-soft: #fff0ec;
  --line: rgba(17, 26, 43, 0.13);
  --mark-text: #ffffff;
  --focus: rgba(216, 102, 77, 0.55);
  --shadow: 0 24px 60px rgba(17, 26, 43, 0.08);
  --radius-lg: 28px;
  --radius-md: 18px;
}

@media (prefers-color-scheme: dark) {
  :root {
    --page: #0b111d;
    --surface: rgba(22, 31, 49, 0.82);
    --surface-strong: #161f31;
    --navy: #eaf0f8;
    --heading: #f2f5f9;
    --text: #c3ccda;
    --muted: #95a2b5;
    --accent: #f18c73;
    --accent-soft: rgba(241, 140, 115, 0.12);
    --line: rgba(226, 232, 240, 0.13);
    --mark-text: #0b111d;
    --focus: rgba(241, 140, 115, 0.62);
    --shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 32px;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 92% 2%, var(--accent-soft), transparent 27rem),
    var(--page);
  color: var(--text);
  font-family: "Avenir Next", Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
  text-decoration-color: var(--accent);
  text-underline-offset: 4px;
}

a:hover {
  color: var(--heading);
}

.skip-link {
  position: fixed;
  z-index: 20;
  top: 12px;
  left: 12px;
  padding: 11px 15px;
  border-radius: 10px;
  background: var(--heading);
  color: var(--page);
  text-decoration: none;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header,
main,
footer {
  width: min(1180px, calc(100% - 64px));
  margin-inline: auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 90px;
  border-bottom: 1px solid var(--line);
}

.product {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--heading);
  font-size: 18px;
  font-weight: 750;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.product-mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 11px;
  background: var(--navy);
  color: var(--mark-text);
  font-size: 16px;
  font-weight: 800;
  transform: rotate(-3deg);
}

.header-label {
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
}

.intro {
  padding: 88px 0 56px;
}

.eyebrow,
.section-number,
.contents > p {
  margin: 0;
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1 {
  max-width: 860px;
  margin: 12px 0 20px;
  color: var(--heading);
  font-size: clamp(54px, 8vw, 92px);
  font-weight: 680;
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.intro-copy {
  max-width: 690px;
  margin: 0;
  color: var(--text);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(20px, 2.5vw, 27px);
  line-height: 1.5;
}

.effective-date {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
}

.summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 58px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.summary > div {
  min-height: 205px;
  padding: 28px;
  border-right: 1px solid var(--line);
}

.summary > div:last-child {
  border-right: 0;
}

.summary-number {
  display: block;
  margin-bottom: 28px;
  color: var(--accent);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
  font-weight: 750;
}

.summary strong {
  display: block;
  color: var(--heading);
  font-size: 16px;
}

.summary p {
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.policy-layout {
  display: grid;
  grid-template-columns: 230px minmax(0, 760px);
  gap: 76px;
  align-items: start;
  justify-content: space-between;
  padding: 54px 0 96px;
}

.contents {
  position: sticky;
  top: 28px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
}

.contents > p {
  margin-bottom: 16px;
}

.contents nav {
  display: grid;
  gap: 3px;
}

.contents a {
  padding: 7px 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
}

.contents a:hover {
  color: var(--accent);
}

.policy-content {
  min-width: 0;
  counter-reset: policy-section;
}

.policy-content > section {
  padding: 0 0 54px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 54px;
}

.policy-content > section:last-child {
  margin-bottom: 0;
}

.section-number {
  margin-bottom: 10px;
}

h2 {
  margin: 0 0 22px;
  color: var(--heading);
  font-size: clamp(27px, 3vw, 36px);
  font-weight: 680;
  letter-spacing: -0.04em;
  line-height: 1.15;
}

h3 {
  margin: 30px 0 10px;
  color: var(--heading);
  font-size: 17px;
  letter-spacing: -0.015em;
}

.policy-content p,
.policy-content li {
  font-size: 15px;
  line-height: 1.75;
}

.policy-content p {
  margin: 0 0 17px;
}

.policy-content ul {
  margin: 0 0 20px;
  padding-left: 21px;
}

.policy-content li {
  padding-left: 5px;
  margin-bottom: 7px;
}

.policy-content li::marker {
  color: var(--accent);
}

.policy-content strong {
  color: var(--heading);
}

.notice {
  margin-top: 28px;
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--accent);
  border-radius: 14px;
  background: var(--surface);
}

.notice strong {
  display: block;
  margin-bottom: 6px;
}

.notice p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.table-wrap {
  margin: 26px 0;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
}

table {
  width: 100%;
  min-width: 650px;
  border-collapse: collapse;
  font-size: 13px;
  line-height: 1.5;
}

th,
td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

th {
  color: var(--heading);
  font-size: 11px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

td:first-child {
  width: 30%;
  color: var(--heading);
  font-weight: 650;
}

td:last-child {
  width: 76px;
  color: var(--heading);
  font-weight: 700;
}

tbody tr:last-child td {
  border-bottom: 0;
}

.contact {
  padding: 34px !important;
  border: 1px solid var(--line) !important;
  border-radius: var(--radius-lg);
  background: var(--surface);
  color: var(--text);
  box-shadow: var(--shadow);
}

.contact .section-number {
  color: var(--accent);
}

.contact h2,
.contact strong {
  color: var(--heading);
}

address {
  font-size: 15px;
  font-style: normal;
  line-height: 1.75;
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 82px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.03em;
}

footer span:last-child {
  text-align: right;
}

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 4px;
}

@media (max-width: 860px) {
  .site-header,
  main,
  footer {
    width: min(100% - 40px, 720px);
  }

  .intro {
    padding-top: 68px;
  }

  .summary {
    grid-template-columns: 1fr;
  }

  .summary > div {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .summary > div:last-child {
    border-bottom: 0;
  }

  .summary-number {
    margin-bottom: 14px;
  }

  .policy-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 48px;
    padding-top: 28px;
  }

  .contents {
    position: static;
  }

  .contents nav {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 24px;
  }
}

@media (max-width: 540px) {
  .site-header,
  main,
  footer {
    width: calc(100% - 28px);
  }

  .site-header {
    min-height: 76px;
  }

  .header-label {
    display: none;
  }

  .intro {
    padding: 52px 0 42px;
  }

  h1 {
    font-size: clamp(46px, 15vw, 66px);
  }

  .intro-copy {
    font-size: 19px;
  }

  .summary {
    margin-top: 40px;
    border-radius: 20px;
  }

  .summary > div {
    padding: 23px 21px;
  }

  .contents {
    padding: 20px;
  }

  .contents nav {
    grid-template-columns: 1fr;
  }

  .policy-content > section {
    padding-bottom: 42px;
    margin-bottom: 42px;
  }

  .policy-content p,
  .policy-content li {
    font-size: 14px;
    line-height: 1.72;
  }

  .contact {
    padding: 26px 22px !important;
    border-radius: 20px;
  }

  footer {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 7px;
  }

  footer span:last-child {
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
