:root {
      --navy: #0B1D36;
      --navy-light: #0F2444;
      --gold: #C9A84C;
      --gold-dark: #D4AF37;
      --gold-dim: rgba(201, 168, 76, 0.15);
      --teal: #00C2B2;
      --white: #FFFFFF;
      --gray-200: #D1D5DC;
      --gray-400: #8B93A0;
      --border-subtle: rgba(201, 168, 76, 0.12);
      --page-gutter: clamp(16px, 4vw, 48px);
      --heading-font: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
      --body-font: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
      --font-heading: var(--heading-font);
      --font-body: var(--body-font);
      --text-dark: #111827;
      --text-gray: #6B7280;
    }

    *,
    *::before,
    *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
    }

    html,
    body {
      overflow-x: hidden;
      width: 100%;
      position: relative;
    }

    body {
      font: 15px/1.75 var(--body-font);
      background: var(--navy);
      color: var(--gray-200);
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
      font-family: var(--heading-font);
      font-weight: 700;
      line-height: 1.2;
      color: var(--text-dark);
    }

    p {
      font-family: var(--body-font);
      font-size: clamp(1rem, 1.5vw, 1.125rem);
      line-height: 1.7;
      color: var(--text-gray);
    }

    .component-frame {
      display: block;
      width: 100%;
      border: 0;
      background: transparent;
      overflow: hidden;
    }

    .component-frame--nav {
      position: fixed;
      inset: 0 0 auto;
      z-index: 1000;
      height: 82px;
    }

    .component-frame--footer {
      min-height: 300px;
    }

    .component-shell--footer {
      position: relative;
      width: 100%;
      overflow: hidden;
    }

    @media (max-width: 768px) {
      .component-frame--nav {
        height: 64px;
      }
    }

    .page-header {
      max-width: 860px;
      margin: 0 auto;
      padding: 120px var(--page-gutter) 48px;
      text-align: center;
    }

    .breadcrumbs {
      margin-bottom: 20px;
    }

    .breadcrumbs ol {
      list-style: none;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 0;
      margin: 0;
      flex-wrap: wrap;
      justify-content: center;
    }

    .breadcrumbs li {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      color: var(--gray-400);
      font-size: 13px;
      letter-spacing: 0.04em;
      text-transform: uppercase;
    }

    .breadcrumbs li + li::before {
      content: "/";
      color: rgba(201, 168, 76, 0.55);
      margin-right: 10px;
    }

    .breadcrumbs a {
      color: var(--gray-200);
    }

    .breadcrumbs [aria-current="page"] {
      color: var(--gold);
    }

    .page-header h3 {
      font-size: clamp(28px, 4vw, 40px);
      color: var(--white);
      margin-bottom: 12px;
      letter-spacing: -0.02em;
    }

    .version-tag {
      display: inline-block;
      font-size: 12px;
      font-weight: 600;
      color: var(--gold);
      background: var(--gold-dim);
      padding: 4px 14px;
      margin-bottom: 16px;
      letter-spacing: 0.06em;
      text-transform: uppercase;
    }

    .page-header .effective {
      font-size: 14px;
      color: var(--gray-400);
    }

    .toc,
    .tos-content {
      max-width: 780px;
      margin: 0 auto;
      padding-inline: var(--page-gutter);
    }

    .tos-content {
      padding-bottom: 96px;
    }

    .tos-section {
      padding: 5px 10px;
      margin-bottom: 48px;
      padding-bottom: 48px;
      border-bottom: 1px solid var(--border-subtle);
    }

    .tos-section:last-of-type {
      border-bottom: none;
      margin-bottom: 0;
    }

    .tos-section h2 {
      font-size: clamp(18px, 2.5vw, 22px);
      color: var(--gold-dark);
      margin-bottom: 16px;
      letter-spacing: -0.01em;
    }

    .tos-section p {
      margin-bottom: 14px;
      color: var(--gray-200);
      line-height: 1.8;
    }

    .tos-section p:last-child {
      margin-bottom: 0;
    }

    .tos-section ul {
      margin: 12px 0 14px 24px;
      list-style: none;
    }

    .tos-section ul li {
      position: relative;
      padding-left: 16px;
      margin-bottom: 8px;
      color: var(--gray-200);
      line-height: 1.7;
    }

    .tos-section ul li::before {
      content: '';
      position: absolute;
      left: 0;
      top: 10px;
      width: 5px;
      height: 5px;
      background: var(--gold);
      opacity: 0.6;
      transform: rotate(45deg);
    }

    .tos-section a {
      border-bottom: 1px solid rgba(0, 194, 178, 0.3);
      color: var(--teal);
      text-decoration: none;
      transition: border-color 0.2s;
    }

    .tos-section a:hover {
      border-color: var(--teal);
    }

    .page-version {
      margin-top: 24px;
      font-size: 13px;
      color: var(--gray-400);
    }

    .tos-content address {
      font-style: normal;
    }

    .toc {
      margin: 0 auto 48px;
    }

    .toc-inner {
      background: var(--navy-light);
      border: 1px solid var(--border-subtle);
      padding: 28px 32px;
    }

    .toc h2 {
      font-size: 13px;
      color: var(--gold);
      text-transform: uppercase;
      letter-spacing: 0.1em;
      margin-bottom: 16px;
    }

    .toc ol {
      list-style: none;
      counter-reset: toc-counter;
      columns: 2;
      column-gap: 32px;
    }

    .toc ol li {
      counter-increment: toc-counter;
      margin-bottom: 6px;
    }

    .toc ol li a {
      color: var(--gray-400);
      text-decoration: none;
      font-size: 14px;
      transition: color 0.2s;
      display: flex;
      gap: 8px;
    }

    .toc ol li a::before {
      content: counter(toc-counter) ".";
      color: var(--gold);
      font-weight: 600;
      min-width: 24px;
    }

    .toc ol li a:hover {
      color: var(--white);
    }

    @media (max-width: 768px) {
      .toc ol {
        columns: 1;
      }
    }
