@font-face {
  font-family: "Hanken Grotesk";
  src: url("/fonts/HankenGrotesk-var.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  color-scheme: light;
  --navy-950: #07182a;
  --navy-900: #102b4e;
  --navy-800: #173c68;
  --blue: #467ed3;
  --blue-deep: #224e91;
  --mint: #bee9e0;
  --mint-soft: #e4f6f2;
  --paper: #fbf7ef;
  --paper-deep: #f1eadc;
  --white: #ffffff;
  --ink: #153455;
  --body: #4f6878;
  --line: #d9e3e1;
  --coral: #ff9072;
  --sun: #facd63;
  --violet: #a99ae7;
  --shadow: 0 28px 70px rgba(21, 52, 85, .1);
  --focus: #ffb95d;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Hanken Grotesk", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  font-weight: 480;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
}

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 15px;
  border-radius: 10px;
  background: var(--white);
  color: var(--navy-900);
  font-size: 14px;
  font-weight: 750;
  transform: translateY(-180%);
  transition: transform .2s ease;
}

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

.site-header {
  position: relative;
  z-index: 20;
  background: rgba(251, 247, 239, .92);
  border-bottom: 1px solid rgba(21, 52, 85, .09);
}

.header-inner {
  width: min(1240px, calc(100% - 48px));
  min-height: 78px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
}

.brand {
  width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--navy-900);
  font-size: 19px;
  font-weight: 820;
  line-height: 1;
  text-decoration: none;
}

.brand img {
  display: block;
  border-radius: 12px;
  box-shadow: 0 8px 22px rgba(21, 52, 85, .13);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  font-weight: 670;
}

.site-nav a {
  position: relative;
  color: #5a7180;
  text-decoration: none;
}

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

.site-nav a[aria-current="page"]::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -10px;
  left: 0;
  height: 3px;
  border-radius: 99px;
  background: var(--blue);
}

.header-action,
.primary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: max-content;
  border-radius: 999px;
  background: var(--navy-900);
  color: var(--white);
  font-size: 14px;
  font-weight: 760;
  line-height: 1;
  text-decoration: none;
  box-shadow: 0 12px 26px rgba(16, 43, 78, .18);
  transition: transform .2s ease, background-color .2s ease, box-shadow .2s ease;
}

.header-action {
  justify-self: end;
  padding: 13px 18px;
}

.header-inner > .locale-switcher {
  position: relative;
  justify-self: end;
  color: var(--body);
  font-size: 13px;
  font-weight: 700;
}

.header-inner > .locale-switcher summary {
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  list-style: none;
}

.header-inner > .locale-switcher summary::-webkit-details-marker { display: none; }

.header-inner > .locale-switcher > div {
  position: absolute;
  z-index: 30;
  top: calc(100% + 8px);
  right: 0;
  min-width: 180px;
  display: grid;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.header-inner > .locale-switcher a {
  padding: 8px 10px;
  border-radius: 9px;
  text-decoration: none;
}

.header-inner > .locale-switcher a:hover,
.header-inner > .locale-switcher a[aria-current="page"] { background: var(--mint-soft); }

.header-inner:has(> .locale-switcher) {
  grid-template-columns: 1fr auto auto auto;
}

.header-action:hover,
.primary-action:hover {
  background: var(--blue-deep);
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(16, 43, 78, .23);
}

.legal-hero {
  position: relative;
  isolation: isolate;
  min-height: 520px;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 15%, rgba(70, 126, 211, .24), transparent 32%),
    linear-gradient(135deg, var(--navy-950), var(--navy-900) 56%, #173f72);
  color: var(--white);
}

.legal-hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: .2;
  background-image:
    linear-gradient(rgba(255,255,255,.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.09) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(to right, transparent, black 60%, transparent);
}

.legal-hero-delete {
  background:
    radial-gradient(circle at 81% 18%, rgba(255, 144, 114, .2), transparent 29%),
    linear-gradient(135deg, #0b2139, var(--navy-900) 59%, #3f456a);
}

.legal-hero-terms {
  background:
    radial-gradient(circle at 81% 18%, rgba(190, 233, 224, .18), transparent 31%),
    radial-gradient(circle at 18% 105%, rgba(250, 205, 99, .13), transparent 34%),
    linear-gradient(135deg, #0a2038, var(--navy-900) 57%, #304f79);
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(1050px, calc(100% - 48px));
  margin: 0 auto;
  padding: 52px 0 82px;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 42px;
  color: #c5d6e6;
  font-size: 14px;
  font-weight: 680;
  text-decoration: none;
}

.back-link:hover {
  color: var(--white);
}

.eyebrow {
  margin: 0 0 14px;
  color: inherit;
  font-size: 12px;
  font-weight: 820;
  letter-spacing: .13em;
  line-height: 1.2;
  text-transform: uppercase;
}

.legal-hero .eyebrow {
  color: var(--mint);
}

.legal-hero h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(52px, 7vw, 86px);
  font-weight: 790;
  letter-spacing: -.058em;
  line-height: .97;
}

.hero-lede {
  max-width: 710px;
  margin: 25px 0 0;
  color: #c9d7e4;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 13px 27px;
  margin-top: 34px;
  color: #edf5fb;
  font-size: 13px;
  font-weight: 670;
}

.hero-facts span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.hero-facts i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--sun);
  box-shadow: 0 0 0 5px rgba(250, 205, 99, .1);
}

.hero-facts span:nth-child(2) i {
  background: var(--mint);
  box-shadow: 0 0 0 5px rgba(190, 233, 224, .1);
}

.hero-facts span:nth-child(3) i {
  background: var(--coral);
  box-shadow: 0 0 0 5px rgba(255, 144, 114, .1);
}

.effective-date {
  margin: 25px 0 0;
  color: #9fb4c7;
  font-size: 13px;
}

.hero-orb {
  position: absolute;
  z-index: 1;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%;
  pointer-events: none;
}

.hero-orb-one {
  top: -330px;
  right: -170px;
  width: 690px;
  height: 690px;
}

.hero-orb-two {
  right: 240px;
  bottom: -330px;
  width: 470px;
  height: 470px;
}

.legal-layout {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 88px 0 120px;
  display: grid;
  grid-template-columns: 250px minmax(0, 780px);
  justify-content: space-between;
  gap: 74px;
}

.legal-sidebar {
  align-self: start;
  position: sticky;
  top: 24px;
  display: grid;
  gap: 18px;
}

.sidebar-panel,
.support-panel {
  border: 1px solid rgba(21, 52, 85, .1);
  border-radius: 22px;
  background: rgba(255,255,255,.62);
  box-shadow: 0 18px 45px rgba(21, 52, 85, .055);
}

.sidebar-panel {
  padding: 25px;
}

.sidebar-label {
  margin: 0 0 13px;
  color: var(--navy-900);
  font-size: 12px;
  font-weight: 820;
  letter-spacing: .11em;
  line-height: 1.2;
  text-transform: uppercase;
}

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

.contents a {
  margin: 0 -12px;
  padding: 8px 12px;
  border-radius: 9px;
  color: #637986;
  font-size: 14px;
  font-weight: 590;
  line-height: 1.35;
  text-decoration: none;
}

.contents a:hover {
  background: var(--mint-soft);
  color: var(--blue-deep);
}

.support-panel {
  padding: 23px;
  background: var(--mint-soft);
}

.support-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  border-radius: 12px;
  background: var(--navy-900);
  color: var(--white);
  font-size: 18px;
  font-weight: 760;
}

.support-panel p:not(.sidebar-label) {
  margin: 0 0 15px;
  color: #57717c;
  font-size: 14px;
  line-height: 1.5;
}

.support-panel a,
.text-action {
  color: var(--blue-deep);
  font-size: 14px;
  font-weight: 760;
  text-decoration: none;
}

.legal-article {
  min-width: 0;
  padding: 54px clamp(30px, 5vw, 68px) 64px;
  border: 1px solid rgba(21, 52, 85, .09);
  border-radius: 34px;
  background: rgba(255,255,255,.82);
  box-shadow: var(--shadow);
}

.legal-article > p,
.legal-section > p,
.legal-section > ul,
.legal-section > ol {
  max-width: 68ch;
}

.legal-article a:not(.primary-action):not(.text-action) {
  color: var(--blue-deep);
  font-weight: 650;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.plain-summary {
  position: relative;
  margin: -18px 0 42px;
  padding: 26px 28px 27px 31px;
  overflow: hidden;
  border-radius: 19px;
  background: var(--mint-soft);
}

.plain-summary::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 5px;
  background: linear-gradient(var(--blue), var(--mint));
}

.plain-summary .eyebrow {
  color: var(--blue-deep);
}

.plain-summary > p:last-child {
  margin: 0;
  color: var(--ink);
  font-size: 20px;
  font-weight: 610;
  line-height: 1.5;
}

.legal-section {
  position: relative;
  margin-top: 64px;
  padding-top: 60px;
  border-top: 1px solid var(--line);
  scroll-margin-top: 28px;
}

.legal-section.first-section {
  margin-top: 36px;
}

.section-number {
  margin: 0 0 11px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 840;
  letter-spacing: .14em;
  line-height: 1;
}

.legal-section h2 {
  margin: 0 0 18px;
  color: var(--navy-900);
  font-size: clamp(30px, 4vw, 42px);
  font-weight: 760;
  letter-spacing: -.035em;
  line-height: 1.08;
}

.legal-section p {
  color: var(--body);
}

.legal-section ul:not(.data-list) {
  padding-left: 1.25em;
}

.legal-section li {
  margin: 13px 0;
  color: var(--body);
}

.legal-section li::marker {
  color: var(--blue);
}

.legal-section strong,
.step-list strong {
  color: var(--ink);
  font-weight: 720;
}

.data-list {
  margin: 27px 0 0;
  padding: 0;
  list-style: none;
}

.data-list li {
  position: relative;
  margin: 0;
  padding: 18px 0 18px 25px;
  border-bottom: 1px solid rgba(21, 52, 85, .09);
}

.data-list li::before {
  content: "";
  position: absolute;
  top: 29px;
  left: 2px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 5px rgba(70, 126, 211, .09);
}

.data-list li:nth-child(3n + 2)::before {
  background: #4aafa2;
  box-shadow: 0 0 0 5px rgba(74, 175, 162, .09);
}

.data-list li:nth-child(3n)::before {
  background: var(--coral);
  box-shadow: 0 0 0 5px rgba(255, 144, 114, .09);
}

.note-card {
  margin-top: 29px;
  padding: 25px 27px;
  border: 1px solid #c7e6df;
  border-radius: 18px;
  background: var(--mint-soft);
}

.note-card-warm {
  border-color: #ecdcb8;
  background: #fff7df;
}

.note-card strong {
  display: block;
  margin-bottom: 5px;
  color: var(--navy-900);
  font-size: 16px;
}

.note-card p {
  margin: 0;
  color: #4f6975;
  font-size: 15px;
}

.safety-grid {
  display: grid;
  gap: 14px;
  margin-top: 26px;
}

.safety-grid .note-card {
  margin-top: 0;
}

.external {
  display: inline-block;
  font-size: .8em;
  text-decoration: none;
}

.step-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 30px;
  padding: 0;
  list-style: none;
}

.step-list li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
  align-items: start;
  margin: 0;
  padding: 20px;
  border: 1px solid rgba(21, 52, 85, .1);
  border-radius: 17px;
  background: #fffdfa;
}

.step-number {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 13px;
  background: var(--mint-soft);
  color: var(--blue-deep);
  font-weight: 820;
}

.step-list li:nth-child(2) .step-number {
  background: #fff1d2;
  color: #795b15;
}

.step-list li:nth-child(3) .step-number {
  background: #f5e9ff;
  color: #684c8d;
}

.step-list p {
  margin: 3px 0 0;
  color: var(--body);
  font-size: 15px;
  line-height: 1.55;
}

.primary-action {
  padding: 15px 20px;
}

.article-end {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin: 70px -20px -29px;
  padding: 29px 31px;
  border-radius: 20px;
  background: var(--paper);
}

.article-end p {
  margin: 0;
  color: #5a7180;
  font-size: 14px;
  line-height: 1.45;
}

.article-end strong {
  color: var(--navy-900);
  font-size: 16px;
}

.text-action {
  flex: 0 0 auto;
}

.legal-footer {
  background: var(--navy-950);
  color: #aebfd0;
}

.footer-inner {
  width: min(1240px, calc(100% - 48px));
  min-height: 120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 26px;
  font-size: 13px;
}

.footer-brand {
  color: var(--white);
}

.legal-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 22px;
}

.legal-footer nav a {
  color: #bed0df;
  text-decoration: none;
}

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

.footer-inner > p {
  justify-self: end;
}

@media (max-width: 960px) {
  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .header-inner:has(> .locale-switcher) {
    grid-template-columns: 1fr auto auto;
  }

  .site-nav {
    display: none;
  }

  .legal-layout {
    grid-template-columns: 1fr;
    gap: 30px;
    width: min(780px, calc(100% - 40px));
    padding-top: 54px;
  }

  .legal-sidebar {
    position: static;
    grid-template-columns: 1fr 1fr;
  }

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

  .footer-inner {
    grid-template-columns: 1fr;
    padding: 35px 0;
    text-align: center;
  }

  .footer-brand,
  .footer-inner > p {
    justify-self: center;
  }

  .footer-inner > p {
    margin: 0;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 16px;
    line-height: 1.65;
  }

  .header-inner {
    width: calc(100% - 32px);
    min-height: 68px;
  }

  .brand {
    font-size: 17px;
  }

  .brand img {
    width: 34px;
    height: 34px;
  }

  .header-action {
    padding: 12px 14px;
    font-size: 13px;
  }

  .header-inner:has(> .locale-switcher) {
    grid-template-columns: 1fr auto;
  }

  .header-inner:has(> .locale-switcher) .header-action {
    display: none;
  }

  .header-inner > .locale-switcher summary {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    padding: 0;
    overflow: hidden;
    font-size: 0;
  }

  .header-inner > .locale-switcher summary::before {
    content: "🌐";
    font-size: 16px;
  }

  .legal-hero {
    min-height: 0;
  }

  .hero-inner {
    width: calc(100% - 36px);
    padding: 34px 0 56px;
  }

  .back-link {
    margin-bottom: 35px;
  }

  .legal-hero h1 {
    font-size: clamp(43px, 13vw, 61px);
  }

  .hero-lede {
    margin-top: 20px;
    font-size: 18px;
  }

  .hero-facts {
    display: grid;
    gap: 10px;
    margin-top: 28px;
  }

  .legal-layout {
    width: calc(100% - 24px);
    padding: 30px 0 64px;
  }

  .legal-sidebar {
    grid-template-columns: 1fr;
  }

  .sidebar-panel {
    padding: 20px;
  }

  .contents {
    grid-template-columns: 1fr 1fr;
    column-gap: 7px;
  }

  .support-panel {
    display: none;
  }

  .legal-article {
    padding: 34px 22px 42px;
    border-radius: 25px;
  }

  .plain-summary {
    margin: -7px 0 32px;
    padding: 22px 20px 23px 24px;
  }

  .plain-summary > p:last-child {
    font-size: 18px;
  }

  .legal-section {
    margin-top: 47px;
    padding-top: 45px;
  }

  .legal-section h2 {
    font-size: 30px;
  }

  .data-list li {
    padding-left: 22px;
  }

  .step-list li {
    grid-template-columns: 36px 1fr;
    gap: 13px;
    padding: 17px;
  }

  .step-number {
    width: 36px;
    height: 36px;
  }

  .article-end {
    display: block;
    margin: 54px -8px -20px;
    padding: 24px;
  }

  .article-end .text-action {
    display: inline-block;
    margin-top: 16px;
  }

  .footer-inner {
    width: calc(100% - 32px);
  }

  .legal-footer nav {
    gap: 11px 18px;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}

@media print {
  body {
    background: white;
    font-size: 11pt;
  }

  .site-header,
  .legal-sidebar,
  .legal-footer,
  .back-link,
  .hero-facts,
  .hero-orb,
  .primary-action,
  .article-end {
    display: none !important;
  }

  .legal-hero {
    min-height: 0;
    background: white;
    color: black;
  }

  .hero-inner {
    width: 100%;
    padding: 0 0 24px;
  }

  .legal-hero .eyebrow,
  .hero-lede,
  .effective-date {
    color: #333;
  }

  .legal-hero h1 {
    font-size: 34pt;
  }

  .legal-layout {
    display: block;
    width: 100%;
    padding: 0;
  }

  .legal-article {
    padding: 0;
    border: 0;
    box-shadow: none;
  }

  .legal-section {
    break-inside: avoid;
  }
}
