:root {
  --paper: #f6f9fd;
  --surface: #ffffff;
  --ink: #10120e;
  --muted: #6f7478;
  --line: #dfe6ee;
  --blue: #dcecff;
  --blue-soft: #eef6ff;
  --blue-ink: #315f8e;
  --dark: #11130f;
  --font: "Schibsted Grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
a:focus-visible, button:focus-visible, summary:focus-visible { outline: 3px solid #91bceb; outline-offset: 3px; }

.legal-nav {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 4vw;
  border-bottom: 1px solid rgba(16,18,14,.08);
  background: rgba(255,255,255,.88);
  box-shadow: 0 8px 30px rgba(57,83,112,.04);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.legal-brand img { display: block; width: auto; height: 31px; }
.legal-nav-links { display: flex; align-items: center; gap: 7px; }
.legal-nav-links a {
  padding: 9px 12px;
  border-radius: 999px;
  color: #676d72;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}
.legal-nav-links a:hover, .legal-nav-links a[aria-current="page"] { background: var(--blue-soft); color: var(--ink); }
.legal-nav-links .nav-cta { margin-left: 5px; padding: 11px 18px; background: var(--dark); color: #fff; }
.legal-nav-links .nav-cta:hover { background: #2c2f29; color: #fff; }

.legal-hero {
  position: relative;
  overflow: hidden;
  min-height: 490px;
  padding: 100px 32px 112px;
  border-bottom: 1px solid var(--line);
  background-color: #f8fbff;
  background-image:
    linear-gradient(180deg, rgba(255,255,255,.98) 0%, rgba(250,252,255,.92) 36%, rgba(226,239,255,.74) 100%),
    url('/bg/clip1-poster.jpg');
  background-position: center, center 62%;
  background-size: cover;
}
.legal-hero::after {
  content: "";
  position: absolute;
  width: 410px;
  height: 410px;
  right: -145px;
  top: -190px;
  border-radius: 50%;
  background: rgba(189,219,252,.62);
  filter: blur(26px);
}
.hero-inner { position: relative; z-index: 1; max-width: 1120px; margin: 0 auto; }
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 23px;
  color: #73797f;
  font-size: 11px;
  font-weight: 650;
  letter-spacing: .17em;
  text-transform: uppercase;
}
.kicker::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: #7eafe0; box-shadow: 0 0 0 5px rgba(126,175,224,.14); }
.legal-hero h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(48px, 7vw, 88px);
  font-weight: 600;
  letter-spacing: -.06em;
  line-height: .98;
}
.hero-dek { max-width: 720px; margin: 29px 0 0; color: #656b70; font-size: clamp(18px, 2.1vw, 23px); line-height: 1.48; }
.updated { margin: 27px 0 0; color: #858c92; font-family: var(--mono); font-size: 11px; }

.summary-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 1120px;
  margin: -52px auto 0;
  padding: 0 32px;
  position: relative;
  z-index: 2;
}
.summary-card {
  min-height: 178px;
  padding: 26px;
  border: 1px solid rgba(181,205,230,.68);
  border-radius: 22px;
  background: rgba(255,255,255,.94);
  box-shadow: 0 18px 55px rgba(55,90,128,.09);
  backdrop-filter: blur(10px);
}
.summary-card .number { display: block; margin-bottom: 29px; color: #7596b8; font-family: var(--mono); font-size: 10px; }
.summary-card strong { display: block; margin-bottom: 7px; font-size: 16px; line-height: 1.3; }
.summary-card p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.5; }

.legal-shell {
  display: grid;
  grid-template-columns: 230px minmax(0, 760px);
  gap: 72px;
  max-width: 1120px;
  margin: 0 auto;
  padding: 96px 32px 120px;
}
.toc { align-self: start; position: sticky; top: 108px; }
.toc-label { margin-bottom: 17px; color: #87909a; font-family: var(--mono); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }
.toc nav { display: flex; flex-direction: column; gap: 3px; }
.toc a { padding: 7px 10px; border-radius: 8px; color: #737a80; font-size: 12px; line-height: 1.35; text-decoration: none; }
.toc a:hover { background: #e8f2fd; color: var(--ink); }
.toc-help { margin-top: 25px; padding-top: 22px; border-top: 1px solid var(--line); color: #7a8289; font-size: 12px; }
.toc-help a { display: inline-block; padding: 7px 0 0; color: var(--ink); font-weight: 650; text-decoration: underline; text-underline-offset: 3px; }

.legal-content section { scroll-margin-top: 104px; padding: 0 0 43px; margin: 0 0 43px; border-bottom: 1px solid var(--line); }
.legal-content section:last-child { border-bottom: 0; margin-bottom: 0; }
.section-label { display: block; margin-bottom: 10px; color: #7792ad; font-family: var(--mono); font-size: 10px; letter-spacing: .07em; }
.legal-content h2 { margin: 0 0 17px; font-size: clamp(27px, 3vw, 37px); font-weight: 600; letter-spacing: -.035em; line-height: 1.12; }
.legal-content h3 { margin: 27px 0 8px; font-size: 17px; letter-spacing: -.015em; }
.legal-content p { margin: 0 0 14px; color: #555c61; font-size: 15px; }
.legal-content li { margin-bottom: 9px; color: #555c61; font-size: 15px; }
.legal-content ul, .legal-content ol { padding-left: 21px; margin: 15px 0; }
.legal-content strong { color: var(--ink); }
.legal-content a { font-weight: 650; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.note {
  margin: 23px 0;
  padding: 19px 20px;
  border: 1px solid #c9def4;
  border-radius: 15px;
  background: var(--blue-soft);
  color: var(--blue-ink);
  font-size: 13.5px;
}
.note strong { color: #244d77; }
.warning { border-color: #ead8b9; background: #fff8eb; color: #654e26; }
.warning strong { color: #4b3819; }
.all-caps { font-size: 12.5px !important; line-height: 1.65; letter-spacing: .01em; }

.support-shell { max-width: 1120px; margin: 0 auto; padding: 82px 32px 118px; }
.support-actions { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.support-card {
  display: flex;
  min-height: 238px;
  flex-direction: column;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--surface);
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.support-card:hover { transform: translateY(-3px); border-color: #b9d4ef; box-shadow: 0 18px 45px rgba(55,90,128,.1); }
.support-icon { display: grid; width: 42px; height: 42px; place-items: center; margin-bottom: 34px; border-radius: 13px; background: var(--blue-soft); color: var(--blue-ink); font-family: var(--mono); font-size: 13px; }
.support-card strong { font-size: 19px; letter-spacing: -.02em; }
.support-card p { margin: 8px 0 19px; color: var(--muted); font-size: 13px; line-height: 1.5; }
.support-card span:last-child { margin-top: auto; font-size: 12px; font-weight: 700; }
.support-card.primary { background: var(--dark); color: #fff; border-color: var(--dark); }
.support-card.primary .support-icon { background: rgba(255,255,255,.12); color: #fff; }
.support-card.primary p { color: rgba(255,255,255,.67); }

.safety-banner { display: flex; align-items: center; justify-content: space-between; gap: 25px; margin: 56px 0 72px; padding: 27px 29px; border: 1px solid #e4d8c6; border-radius: 18px; background: #fff9ef; }
.safety-banner strong { display: block; font-size: 16px; }
.safety-banner p { margin: 4px 0 0; color: #716152; font-size: 13px; }
.safety-actions { display: flex; flex: 0 0 auto; gap: 8px; }
.safety-banner a { padding: 10px 15px; border: 1px solid #eee2d1; border-radius: 999px; background: #fff; font-size: 12px; font-weight: 700; text-decoration: none; }

.support-section { display: grid; grid-template-columns: 260px minmax(0, 1fr); gap: 65px; padding-top: 22px; }
.support-section h2 { margin: 0; font-size: 34px; line-height: 1.1; letter-spacing: -.04em; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { position: relative; padding: 21px 42px 21px 0; cursor: pointer; list-style: none; font-size: 15px; font-weight: 650; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: 8px; top: 18px; color: #7d8b99; font-family: var(--mono); font-size: 20px; font-weight: 400; }
.faq-list details[open] summary::after { content: "–"; }
.faq-list details p { margin: -5px 45px 21px 0; color: var(--muted); font-size: 13.5px; }

.legal-footer { padding: 34px 32px 46px; border-top: 1px solid var(--line); background: var(--surface); }
.footer-inner { display: flex; max-width: 1120px; align-items: center; justify-content: space-between; gap: 30px; margin: 0 auto; }
.footer-inner p { margin: 0; color: #828a91; font-size: 12px; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 18px; }
.footer-links a { color: #6d757b; font-size: 12px; text-decoration: none; }
.footer-links a:hover { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }

@media (max-width: 820px) {
  .legal-nav { min-height: 66px; padding: 0 18px; }
  .legal-brand img { height: 27px; }
  .legal-nav-links a:not(.nav-cta) { display: none; }
  .legal-nav-links .nav-cta { margin: 0; }
  .legal-hero { min-height: 420px; padding: 70px 20px 88px; background-position: center, 47% center; }
  .legal-hero::after { width: 280px; height: 280px; right: -120px; top: -155px; }
  .summary-grid { grid-template-columns: 1fr; margin-top: -32px; padding: 0 20px; }
  .summary-card { min-height: 0; padding: 21px; }
  .summary-card .number { margin-bottom: 18px; }
  .legal-shell { display: block; padding: 64px 20px 90px; }
  .toc { position: static; margin-bottom: 55px; padding: 20px; border: 1px solid var(--line); border-radius: 15px; background: var(--surface); }
  .toc nav { display: grid; grid-template-columns: 1fr 1fr; }
  .toc-help { display: none; }
  .support-shell { padding: 52px 20px 88px; }
  .support-actions { grid-template-columns: 1fr; }
  .support-card { min-height: 210px; }
  .safety-banner { align-items: flex-start; flex-direction: column; }
  .safety-actions { flex-wrap: wrap; }
  .support-section { grid-template-columns: 1fr; gap: 28px; }
  .footer-inner { align-items: flex-start; flex-direction: column; }
  .footer-links { justify-content: flex-start; gap: 13px 18px; }
}

@media (max-width: 430px) {
  .legal-nav-links .nav-cta { padding: 9px 13px; font-size: 12px; }
  .legal-hero h1 { font-size: clamp(42px, 14vw, 58px); }
  .toc nav { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .support-card { transition: none; }
}
