  :root {
    --bg: #05060a;
    --panel: rgba(255,255,255,.055);
    --panel-strong: rgba(255,255,255,.085);
    --text: #f5f7fb;
    --muted: rgba(245,247,251,.68);
    --subtle: rgba(245,247,251,.46);
    --line: rgba(255,255,255,.11);
    --blue: #0a84ff;
    --blue-soft: rgba(10,132,255,.16);
    --shadow: 0 32px 80px rgba(0,0,0,.38);
  }

  * { box-sizing: border-box; }
  html, body { margin: 0; padding: 0; overflow-x: hidden; }
  body {
    min-height: 100vh;
    color: var(--text);
    background:
      radial-gradient(circle at 15% -10%, rgba(10,132,255,.20), transparent 32%),
      radial-gradient(circle at 90% 8%, rgba(184,129,79,.12), transparent 34%),
      linear-gradient(180deg, #070910 0%, #030409 100%);
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", Inter, Helvetica, Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    line-height: 1.55;
  }

  body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    background-image: radial-gradient(rgba(255,255,255,.08) 1px, transparent 1px);
    background-size: 34px 34px;
    mask-image: radial-gradient(ellipse 70% 58% at 50% 20%, black 22%, transparent 78%);
    -webkit-mask-image: radial-gradient(ellipse 70% 58% at 50% 20%, black 22%, transparent 78%);
  }

  a { color: inherit; }
  .container {
    width: min(980px, calc(100vw - 48px));
    margin: 0 auto;
  }

  .legal-nav {
    border-bottom: 1px solid var(--line);
    background: rgba(5,6,10,.72);
    backdrop-filter: blur(18px) saturate(160%);
    -webkit-backdrop-filter: blur(18px) saturate(160%);
  }
  .nav-inner {
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
  }
  .brand,
  .back-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
  }
  .brand {
    gap: 10px;
    font-size: 16px;
    font-weight: 650;
    letter-spacing: -.02em;
  }
  .brand img {
    width: 32px;
    height: 32px;
    border-radius: 9px;
    box-shadow: 0 12px 30px rgba(0,0,0,.38);
  }
  .back-link {
    min-height: 36px;
    padding: 0 14px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--muted);
    font-size: 14px;
    font-weight: 560;
  }
  .back-link:hover { color: var(--text); border-color: rgba(255,255,255,.24); }

  main {
    padding: 74px 0 48px;
  }
  .eyebrow {
    color: #7ab8ff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
  }
  h1 {
    margin: 14px 0 14px;
    font-size: clamp(40px, 7vw, 68px);
    line-height: 1.02;
    letter-spacing: -.055em;
  }
  .lede {
    max-width: 720px;
    margin: 0;
    color: var(--muted);
    font-size: clamp(18px, 2.4vw, 22px);
    line-height: 1.48;
  }
  .lede-small {
    margin-top: 8px;
  }
  .updated {
    margin-top: 22px;
    color: var(--subtle);
    font-size: 13px;
  }

  .content-card {
    margin-top: 44px;
    width: 100%;
    max-width: 100%;
    border: 1px solid var(--line);
    border-radius: 28px;
    background:
      linear-gradient(180deg, rgba(255,255,255,.075), rgba(255,255,255,.035)),
      var(--panel);
    box-shadow: var(--shadow);
    overflow: hidden;
  }
  .section {
    padding: 30px 32px;
    border-top: 1px solid var(--line);
  }
  .section:first-child { border-top: 0; }
  h2 {
    margin: 0 0 10px;
    font-size: 23px;
    line-height: 1.2;
    letter-spacing: -.025em;
  }
  p {
    margin: 0 0 12px;
    color: var(--muted);
    font-size: 16px;
    overflow-wrap: anywhere;
    word-break: break-word;
  }
  p:last-child { margin-bottom: 0; }
  ul {
    margin: 12px 0 0;
    padding-left: 20px;
    color: var(--muted);
  }
  li {
    margin: 8px 0;
    overflow-wrap: anywhere;
    word-break: break-word;
  }
  strong { color: var(--text); font-weight: 650; }
  .email {
    color: #8ec5ff;
    text-decoration: none;
    font-weight: 620;
    overflow-wrap: anywhere;
    word-break: break-word;
  }
  .email:hover { color: #fff; }

  .faq-list {
    display: grid;
    gap: 12px;
    margin-top: 16px;
    min-width: 0;
  }
  details {
    border: 1px solid var(--line);
    border-radius: 16px;
    background: var(--panel);
    padding: 16px 18px;
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
  }
  summary {
    cursor: pointer;
    font-weight: 650;
    letter-spacing: -.01em;
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: break-word;
  }
  details p { margin-top: 10px; }

  footer {
    border-top: 1px solid var(--line);
    padding: 24px 0 30px;
    color: var(--subtle);
  }
  .footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
  }
  .footer-inner > span {
    overflow-wrap: anywhere;
    word-break: break-word;
  }
  .footer-links {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    flex-wrap: wrap;
  }
  .footer-links a {
    color: var(--muted);
    text-decoration: none;
    font-size: 13.5px;
    white-space: nowrap;
    overflow-wrap: anywhere;
  }
  .footer-links a:hover { color: var(--text); }
  .footer-links a + a::before {
    content: "·";
    margin-right: 12px;
    color: var(--subtle);
  }

  @media (max-width: 640px) {
    .container {
      width: min(360px, calc(100vw - 36px));
      max-width: min(360px, calc(100vw - 36px));
      padding: 0;
    }
    .nav-inner { height: auto; min-height: 62px; padding: 12px 0; align-items: flex-start; flex-direction: column; }
    main { padding: 48px 0 36px; }
    .content-card { margin-top: 32px; border-radius: 22px; }
    .section { min-width: 0; }
    .section { padding: 24px 20px; }
    h1 { font-size: 40px; }
    .footer-inner { align-items: flex-start; flex-direction: column; }
    .footer-links { align-items: flex-start; flex-direction: column; justify-content: flex-start; gap: 8px; }
    .footer-links a { white-space: normal; }
    .footer-links a + a::before { content: none; }
  }
