:root {
  --legal-bg: #050506;
  --legal-panel: #0c0c0e;
  --legal-panel-soft: #101012;
  --legal-text: #f4f2ef;
  --legal-soft: #c9c7c4;
  --legal-muted: #858287;
  --legal-line: rgba(255, 255, 255, .085);
  --legal-red: #ff4655;
  --legal-shell: min(1080px, calc(100vw - 72px));
  --legal-sans: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --legal-serif: "Source Serif 4", Georgia, serif;
  --legal-mono: "DM Mono", monospace;
}

html { scroll-behavior: smooth; background: var(--legal-bg); }
body {
  min-width: 320px;
  margin: 0;
  color: var(--legal-text);
  background:
    radial-gradient(circle at 82% 8%, rgba(255, 70, 85, .09), transparent 24rem),
    var(--legal-bg);
  font-family: var(--legal-sans);
  line-height: 1.7;
  letter-spacing: -.018em;
  overflow-x: hidden;
}

a { color: inherit; }

.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 16px 0;
  border: 0;
  background: linear-gradient(180deg, rgba(5, 5, 6, .94), rgba(5, 5, 6, .72));
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.nav-container {
  width: var(--legal-shell);
  max-width: none;
  margin: 0 auto;
  padding: 0;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--legal-text);
  text-decoration: none;
}

.logo img {
  width: 38px;
  height: 38px;
  padding: 3px;
  object-fit: contain;
  border: 1px solid var(--legal-line);
  border-radius: 12px;
  background: rgba(255, 255, 255, .035);
  box-shadow: inset 0 1px rgba(255, 255, 255, .05), 0 10px 28px rgba(0, 0, 0, .2);
}

.logo-name {
  color: var(--legal-text);
  font-family: var(--legal-sans);
  font-size: 17px;
  font-weight: 650;
  letter-spacing: -.055em;
}

.back-link {
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid var(--legal-line);
  border-radius: 999px;
  color: #aaa7aa;
  background: rgba(255, 255, 255, .025);
  font-family: var(--legal-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: -.02em;
  text-transform: none;
  transition: .2s ease;
}

.back-link:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, .16);
  background: rgba(255, 255, 255, .05);
  transform: translateY(-1px);
}

.back-link span { font-size: 16px; }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.play-download {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  transition: transform .2s ease, filter .2s ease;
}

.play-download img {
  display: block;
  width: 136px;
  height: auto;
}

.play-download:hover {
  filter: brightness(1.12);
  transform: translateY(-1px);
}

.page-header {
  position: relative;
  padding: 110px max(36px, calc((100vw - 1080px) / 2)) 82px;
  overflow: hidden;
  border: 0;
  border-bottom: 1px solid var(--legal-line);
  background: transparent;
  text-align: left;
}

.page-header::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  right: -190px;
  top: -250px;
  border: 1px solid rgba(255, 255, 255, .045);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(255, 255, 255, .009), 0 0 0 140px rgba(255, 255, 255, .005);
  pointer-events: none;
}

.page-header::after {
  content: "Legal & account";
  position: absolute;
  inset: 62px auto auto max(36px, calc((100vw - 1080px) / 2));
  color: #767378;
  font-family: var(--legal-mono);
  font-size: 9px;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.page-header h1 {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 0 16px;
  color: var(--legal-text);
  font-family: var(--legal-sans);
  font-size: clamp(58px, 7vw, 92px);
  font-weight: 620;
  line-height: .96;
  letter-spacing: -.075em;
  text-transform: none;
  text-wrap: balance;
}

.page-header .text-red {
  color: var(--legal-red);
  font-family: var(--legal-serif);
  font-style: italic;
  font-weight: 600;
  letter-spacing: -.07em;
}

.last-updated,
.page-header .subtitle {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #777479;
  font-family: var(--legal-mono);
  font-size: 9px;
  letter-spacing: .055em;
  text-transform: uppercase;
}

.content-container {
  width: var(--legal-shell);
  max-width: none;
  margin: 0 auto;
  padding: 72px 0 120px;
}

.content-card {
  position: relative;
  padding: clamp(30px, 5vw, 68px);
  border: 1px solid var(--legal-line);
  border-radius: 30px;
  background: linear-gradient(155deg, rgba(17, 17, 20, .96), rgba(9, 9, 11, .96) 74%);
  box-shadow: inset 0 1px rgba(255, 255, 255, .035), 0 34px 80px rgba(0, 0, 0, .25);
  backdrop-filter: none;
}

.content-card > :first-child { margin-top: 0; }
.content-card > :last-child { margin-bottom: 0; }

.content-card p,
.content-card li {
  color: #aaa7aa;
  font-size: 14px;
  line-height: 1.72;
}

.content-card p { margin: 0 0 1.25rem; }

.content-card h2 {
  margin: 3.5rem 0 1.25rem;
  padding: 0 0 .85rem;
  border: 0;
  border-bottom: 1px solid var(--legal-line);
  color: var(--legal-text);
  font-family: var(--legal-sans);
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -.055em;
  text-transform: none;
}

.content-card h2::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin: 0 11px 4px 0;
  border-radius: 50%;
  background: var(--legal-red);
  box-shadow: 0 0 18px rgba(255, 70, 85, .55);
}

.content-card h3 {
  margin: 2.2rem 0 .75rem;
  color: #d8d5d3;
  font-family: var(--legal-sans);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -.035em;
  text-transform: none;
}

.content-card ul { margin: 0 0 1.5rem; padding: 0; }
.content-card li { margin-bottom: .85rem; padding-left: 1.35rem; }
.content-card li::before { top: .72em; width: 5px; height: 5px; background: var(--legal-red); }
.content-card strong { color: #e6e3e1; font-weight: 650; }
.content-card a { color: #ff6b78; font-weight: 600; text-decoration: none; }
.content-card a:hover { color: #fff; opacity: 1; }

.step {
  min-height: 72px;
  margin: 0;
  padding: 18px 0;
  border-bottom: 1px solid var(--legal-line);
  align-items: flex-start;
}

.step-number {
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 70, 85, .25);
  border-radius: 12px;
  color: #fff;
  background: rgba(255, 70, 85, .09);
  font-family: var(--legal-mono);
  font-size: 11px;
}

.step p { margin: 3px 0 0; }

.email-box,
.warning-box {
  margin-top: 24px;
  padding: 22px;
  border-radius: 18px;
  border: 1px solid var(--legal-line);
  background: rgba(255, 255, 255, .025);
}

.warning-box {
  border-color: rgba(255, 70, 85, .2);
  background: rgba(255, 70, 85, .055);
}

.warning-icon {
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  color: #fff;
  background: var(--legal-red);
  font-family: var(--legal-mono);
  font-size: 14px;
  font-weight: 700;
}

.page-footer {
  padding: 0;
  border-top: 1px solid var(--legal-line);
  background: #060607;
  text-align: left;
}

.page-footer-inner,
.page-footer-bottom {
  width: var(--legal-shell);
  margin: 0 auto;
}

.page-footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: start;
  padding: 54px 0 46px;
}

.page-footer-brand p {
  max-width: 390px;
  margin: 16px 0 0;
  color: #656367;
  font-size: 11px;
  line-height: 1.55;
}

.page-footer .footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(120px, 1fr));
  gap: 10px 32px;
  margin: 0;
}

.page-footer .footer-links a {
  color: #aaa7aa;
  font-size: 11.5px;
  text-decoration: none;
}

.page-footer .footer-links a:hover { color: #fff; }

.page-footer-bottom {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 50px;
  align-items: end;
  padding: 22px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, .055);
}

.page-footer-bottom p {
  max-width: 720px;
  margin: 0;
  color: #5e5c60;
  font-size: 9px;
  line-height: 1.6;
}

.page-footer-bottom span {
  color: #5e5c60;
  font-family: var(--legal-mono);
  font-size: 8px;
  letter-spacing: .035em;
  white-space: nowrap;
}

@media (max-width: 760px) {
  :root { --legal-shell: calc(100% - 32px); }
  .navbar { padding: 12px 0; }
  .logo img { width: 36px; height: 36px; }
  .logo-name { font-size: 15px; }
  .back-link { min-height: 40px; padding: 0 13px; font-size: 11px; }
  .nav-actions { gap: 7px; }
  .play-download img { width: 124px; }
  .page-header { padding: 88px 16px 60px; }
  .page-header::after { inset: 42px auto auto 16px; }
  .page-header h1 { font-size: clamp(46px, 14vw, 64px); overflow-wrap: break-word; text-wrap: pretty; }
  .content-container { padding: 38px 0 80px; }
  .content-card { padding: 27px 20px; border-radius: 23px; }
  .content-card p,.content-card li { font-size: 13px; }
  .content-card h2 { margin-top: 2.8rem; font-size: 25px; }
  .page-footer-inner,.page-footer-bottom { grid-template-columns: 1fr; gap: 34px; }
  .page-footer-inner { padding: 44px 0 38px; }
  .page-footer .footer-links { grid-template-columns: 1fr 1fr; gap: 12px 20px; }
  .page-footer-bottom { gap: 15px; }
  .page-footer-bottom span { white-space: normal; }
}

@media (max-width: 430px) {
  .back-link { display: none; }
  .play-download img { width: 132px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,*::before,*::after { transition-duration: .01ms !important; }
}
