:root {
  color-scheme: dark;
  --ink: #f6f7fb;
  --ink-muted: #b8bdc9;
  --ink-quiet: #848b99;
  --night: #010418;
  --night-raised: #060a1e;
  --line: rgba(255, 255, 255, 0.13);
  --line-strong: rgba(255, 255, 255, 0.24);
  --open-blue: #5d8cff;
  --open-violet: #b89af8;
  --open-amber: #f3b85b;
  --focus: #9db9ff;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  background: var(--night);
  color: var(--ink);
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  background: var(--night);
  color: var(--ink);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration-color: rgba(157, 185, 255, 0.6);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

a:hover {
  color: #ffffff;
  text-decoration-color: var(--focus);
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 10;
  padding: 10px 14px;
  border-radius: 6px;
  background: #ffffff;
  color: #090c13;
  font-size: 14px;
  font-weight: 700;
  transform: translateY(-160%);
}

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

.trust-main {
  width: min(100% - 48px, 1120px);
  margin: 0 auto;
  padding: 144px 0 84px;
}

.trust-hero {
  max-width: 780px;
  margin-bottom: 68px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 38px;
  color: var(--open-blue);
  font-size: 13px;
  font-weight: 760;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 22px;
  height: 2px;
  background: var(--open-blue);
  content: "";
}

h1,
h2,
h3,
p,
ul,
ol,
dl,
dt,
dd {
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  margin: 0 0 28px;
  color: #ffffff;
  font-size: 56px;
  font-weight: 400;
  line-height: 1.05;
}

.lede {
  max-width: 710px;
  margin: 0;
  color: var(--ink-muted);
  font-size: 21px;
  line-height: 1.55;
}

.document-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 760px;
  margin: 30px 0 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.document-meta div {
  min-width: 0;
}

.document-meta dt {
  margin-bottom: 4px;
  color: var(--ink-quiet);
  font-size: 10px;
  font-weight: 760;
  line-height: 1.4;
  text-transform: uppercase;
}

.document-meta dd {
  margin: 0;
  color: #c9b48f;
  font-size: 12px;
  font-weight: 620;
  line-height: 1.5;
}

.trust-layout {
  display: grid;
  grid-template-columns: 210px minmax(0, 760px);
  gap: 88px;
  align-items: start;
}

.page-index {
  position: sticky;
  top: 28px;
  padding-left: 18px;
  border-left: 1px solid var(--line-strong);
}

.page-index-title {
  margin: 0 0 16px;
  color: var(--ink-quiet);
  font-size: 12px;
  font-weight: 760;
  text-transform: uppercase;
}

.page-index ol {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-index a {
  min-height: 36px;
  display: flex;
  align-items: center;
  color: var(--ink-muted);
  font-size: 14px;
  line-height: 1.4;
  text-decoration: none;
}

.page-index a:hover {
  color: #ffffff;
}

.page-index a[aria-current="location"] {
  color: #ffffff;
  font-weight: 680;
}

.page-index a[aria-current="location"]::before {
  width: 5px;
  height: 5px;
  margin-right: 9px;
  border-radius: 50%;
  background: var(--open-blue);
  content: "";
  flex: 0 0 auto;
}

.trust-content > section {
  padding: 40px 0 6px;
  border-top: 1px solid var(--line);
}

.trust-content > section:first-child {
  padding-top: 0;
  border-top: 0;
}

h2 {
  margin: 0 0 20px;
  color: #ffffff;
  font-size: 32px;
  font-weight: 400;
  line-height: 1.18;
}

h3 {
  margin: 30px 0 10px;
  color: var(--ink);
  font-size: 17px;
  font-weight: 680;
  line-height: 1.4;
}

p,
li {
  color: var(--ink-muted);
  font-size: 17px;
  line-height: 1.7;
}

p {
  margin: 0 0 20px;
}

strong {
  color: var(--ink);
  font-weight: 700;
}

ul,
ol {
  margin: 18px 0 24px;
  padding-left: 22px;
}

li + li {
  margin-top: 9px;
}

.plain-list {
  padding: 0;
  list-style: none;
}

.plain-list li {
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.plain-list li:last-child {
  border-bottom: 1px solid var(--line);
}

.plain-list strong {
  display: block;
  margin-bottom: 4px;
}

.principle {
  margin: 32px 0 12px;
  padding: 2px 0 2px 22px;
  border-left: 2px solid var(--open-violet);
  color: var(--ink);
  font-size: 19px;
  line-height: 1.55;
}

.closing-note {
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.closing-note p {
  margin-bottom: 6px;
  color: var(--ink);
}

.closing-note p:first-child {
  font-weight: 700;
}

.review-note {
  margin: 36px 0 8px;
  padding: 22px 24px;
  border: 1px solid rgba(243, 184, 91, 0.36);
  border-radius: 6px;
  background: rgba(243, 184, 91, 0.06);
}

.review-note h3 {
  margin-top: 0;
  color: var(--open-amber);
}

.review-note p,
.review-note li {
  color: #d4c5ad;
  font-size: 14px;
  line-height: 1.65;
}

.review-note p:last-child,
.review-note ul:last-child {
  margin-bottom: 0;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 34px;
}

.trust-button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 18px;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  background: var(--night-raised);
  color: var(--ink);
  font-size: 15px;
  font-weight: 690;
  text-align: center;
  text-decoration: none;
}

.trust-button.primary {
  border-color: #ffffff;
  background: #ffffff;
  color: #090c13;
}

.trust-button:hover {
  border-color: #ffffff;
  color: #ffffff;
}

.trust-button.primary:hover {
  background: #dfe7ff;
  color: #090c13;
}

.support-target {
  color: var(--open-amber);
  font-weight: 680;
}

.support-main {
  width: min(100% - 48px, 1120px);
}

.support-main .trust-hero {
  margin-bottom: 48px;
}

.support-content {
  max-width: 900px;
}

.support-content section {
  padding: 46px 0;
  border-top: 1px solid var(--line);
}

.support-content section:last-child {
  border-bottom: 1px solid var(--line);
}

.support-number {
  margin-bottom: 18px;
  color: var(--ink-quiet);
  font-size: 12px;
}

.support-content h2 {
  max-width: 620px;
  font-size: 38px;
}

.support-content p {
  max-width: 560px;
}

.support-content section > p:not(.support-number) {
  margin-top: 18px;
}

.support-contact-link {
  display: inline-block;
  color: #ffffff;
  font-size: 18px;
}

.support-question-list {
  max-width: 760px;
  margin-top: 28px;
  border-top: 1px solid var(--line);
}

.support-question-list details {
  border-bottom: 1px solid var(--line);
}

.support-question-list summary {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--ink);
  cursor: pointer;
  font-size: 17px;
  list-style: none;
}

.support-question-list summary::-webkit-details-marker {
  display: none;
}

.support-question-list summary::after {
  color: var(--ink-quiet);
  content: "+";
  font-size: 22px;
  font-weight: 300;
}

.support-question-list details[open] summary::after {
  content: "−";
}

.support-question-list details p {
  margin: -2px 0 22px;
  color: var(--ink-muted);
  font-size: 16px;
  line-height: 1.6;
}

.support-email {
  display: grid;
  gap: 7px;
  margin-top: 30px;
}

.support-email > span {
  color: var(--ink-quiet);
  font-size: 13px;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.support-email > p {
  margin: 0;
  color: var(--ink-quiet);
  font-size: 15px;
}

.support-content .support-ending {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 72px 0;
  border-bottom: 1px solid var(--line);
}

.support-ending h2 {
  max-width: 720px;
  font-size: 46px;
  line-height: 1.05;
}

.support-ending .trust-button {
  margin-top: 30px;
}

.privacy-page .trust-hero {
  max-width: 820px;
  margin-bottom: 52px;
}

.privacy-page .trust-hero .lede {
  max-width: 700px;
  font-size: 18px;
  line-height: 1.7;
}

.privacy-principles {
  max-width: 920px;
  border-top: 1px solid var(--line);
}

.privacy-principle {
  display: grid;
  grid-template-columns: minmax(0, 0.44fr) minmax(0, 0.56fr);
  gap: 56px;
  align-items: start;
  padding: 38px 0;
  border-bottom: 1px solid var(--line);
}

.privacy-principle h2 {
  max-width: 440px;
  margin: 0;
  font-size: 38px;
  line-height: 1.08;
}

.privacy-principle p {
  max-width: 540px;
  margin: 2px 0 0;
  font-size: 18px;
  line-height: 1.7;
}

.privacy-legal-intro {
  max-width: 920px;
  padding: 66px 0 48px;
}

.privacy-legal-intro h2 {
  margin: 0;
  font-size: 38px;
  line-height: 1.08;
}

.privacy-page .privacy-legal-intro .document-meta {
  margin-top: 28px;
}

.privacy-page .trust-layout {
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 60px;
}

.privacy-page .trust-content > section {
  padding: 22px 0 0;
}

.privacy-page .trust-content h2 {
  margin-bottom: 14px;
  font-size: 30px;
  line-height: 1.14;
}

.privacy-page .trust-content p,
.privacy-page .trust-content li {
  font-size: 16px;
  line-height: 1.55;
}

.privacy-page .trust-content p {
  margin-bottom: 10px;
}

.privacy-page .trust-content ul,
.privacy-page .trust-content ol {
  margin-block: 10px 14px;
}

.privacy-page .trust-content li + li {
  margin-top: 6px;
}

.privacy-page .closing-note {
  margin-top: 24px;
  padding-top: 18px;
}

.account-deletion-page .trust-hero {
  max-width: 780px;
  margin-bottom: 52px;
}

.account-deletion-page .trust-hero .lede {
  max-width: 660px;
  font-size: 18px;
  line-height: 1.7;
}

.deletion-principles {
  max-width: 920px;
  border-top: 1px solid var(--line);
}

.deletion-principle {
  display: grid;
  grid-template-columns: minmax(0, 0.44fr) minmax(0, 0.56fr);
  gap: 56px;
  align-items: start;
  padding: 38px 0;
  border-bottom: 1px solid var(--line);
}

.deletion-principle h2 {
  max-width: 440px;
  margin: 0;
  font-size: 38px;
  line-height: 1.08;
}

.deletion-principle p {
  max-width: 540px;
  margin: 2px 0 10px;
  font-size: 18px;
  line-height: 1.7;
}

.deletion-principle p:last-child {
  margin-bottom: 0;
}

.deletion-action {
  padding-block: 46px;
}

.deletion-action .trust-button {
  margin-top: 20px;
}

.trust-button.danger {
  border-color: rgba(252, 72, 110, 0.52);
  background: rgba(252, 72, 110, 0.07);
  color: #ff91a9;
}

.trust-button.danger:hover {
  border-color: #fc486e;
  background: rgba(252, 72, 110, 0.13);
  color: #ffffff;
}

.deletion-details {
  max-width: 920px;
  padding: 66px 0 0;
}

.deletion-details-header {
  margin-bottom: 34px;
}

.deletion-details-header h2 {
  margin: 0;
  font-size: 38px;
  line-height: 1.08;
}

.deletion-details-header .document-meta {
  margin-top: 28px;
}

.deletion-accordion {
  border-top: 1px solid var(--line);
}

.deletion-accordion details {
  border-bottom: 1px solid var(--line);
}

.deletion-accordion summary {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--ink);
  cursor: pointer;
  font-size: 17px;
  font-weight: 620;
  list-style: none;
}

.deletion-accordion summary::-webkit-details-marker {
  display: none;
}

.deletion-accordion summary::after {
  color: var(--ink-quiet);
  content: "+";
  font-size: 22px;
  font-weight: 300;
}

.deletion-accordion details[open] summary::after {
  content: "−";
}

.deletion-answer {
  max-width: 720px;
  padding: 0 0 24px;
}

.deletion-answer p,
.deletion-answer li {
  font-size: 16px;
  line-height: 1.6;
}

.deletion-answer p {
  margin-bottom: 10px;
}

.deletion-answer ul {
  margin-block: 12px 0;
}

@media (max-width: 1100px) {
  h1 {
    font-size: 48px;
  }
}

@media (max-width: 820px) {
  .trust-main {
    padding-top: 132px;
  }

  .trust-hero {
    margin-bottom: 56px;
  }

  h1 {
    font-size: 48px;
  }

  .trust-layout {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .page-index {
    position: static;
    padding: 0 0 24px;
    border-bottom: 1px solid var(--line);
    border-left: 0;
  }

  .page-index ol {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 24px;
  }

  .support-content {
    max-width: none;
  }

  .privacy-principle {
    gap: 38px;
  }

  .privacy-page .trust-layout {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .deletion-principle {
    gap: 38px;
  }

}

@media (max-width: 560px) {
  .trust-main {
    width: min(100% - 40px, 1120px);
  }

  .trust-main {
    padding: 116px 0 72px;
  }

  .trust-hero {
    margin-bottom: 52px;
  }

  h1 {
    font-size: 40px;
    line-height: 1.08;
  }

  .document-meta {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .lede {
    font-size: 18px;
  }

  .page-index a {
    min-height: 44px;
  }

  .trust-content > section {
    padding-top: 36px;
  }

  h2 {
    font-size: 28px;
  }

  .support-content section {
    padding: 36px 0;
  }

  .support-content h2 {
    font-size: 32px;
  }

  .support-content .support-ending {
    min-height: 300px;
    padding: 60px 0;
  }

  .support-ending h2 {
    font-size: 38px;
  }

  .privacy-page .trust-hero {
    margin-bottom: 44px;
  }

  .privacy-principle {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 34px 0;
  }

  .privacy-principle h2,
  .privacy-legal-intro h2 {
    font-size: 32px;
  }

  .privacy-principle p {
    font-size: 17px;
  }

  .privacy-legal-intro {
    padding: 54px 0 40px;
  }

  .account-deletion-page .trust-hero {
    margin-bottom: 44px;
  }

  .deletion-principle {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 34px 0;
  }

  .deletion-principle h2,
  .deletion-details-header h2 {
    font-size: 32px;
  }

  .deletion-principle p {
    font-size: 17px;
  }

  .deletion-details {
    padding-top: 54px;
  }

  .contact-actions {
    display: grid;
  }

  .trust-button {
    width: 100%;
  }
}

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