/* extracted from inline <style> block 1 in terms.html */
* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    :root {
      --bg-primary: #0f172a;
      --bg-secondary: #1e293b;
      --accent: #10b981;
      --accent-blue: #3b82f6;
      --text-primary: #f8fafc;
      --text-secondary: #94a3b8;
      --border: rgba(255,255,255,0.1);
    }

    body {
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
      background: var(--bg-primary);
      color: var(--text-primary);
      line-height: 1.7;
      min-height: 100vh;
      -webkit-font-smoothing: antialiased;
    }

    .container {
      max-width: 920px;
      margin: 0 auto;
      padding: 0 24px;
    }

    nav {
      padding: 20px 0;
      border-bottom: 1px solid var(--border);
      position: sticky;
      top: 0;
      z-index: 1000;
      background: rgba(15, 23, 42, 0.95);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
    }

    .nav-content {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 20px;
    }

    .logo {
      font-size: 1.5rem;
      font-weight: 800;
      color: var(--accent);
      text-decoration: none;
    }

    .nav-link {
      color: var(--text-secondary);
      text-decoration: none;
      font-weight: 500;
      transition: color 0.2s;
    }

    .nav-link:hover {
      color: var(--text-primary);
    }

    main {
      padding: 72px 0 88px;
      background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(16, 185, 129, 0.08), transparent);
    }

    .legal-header {
      margin-bottom: 32px;
    }

    .label {
      color: var(--accent);
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      margin-bottom: 10px;
    }

    h1 {
      font-size: clamp(2.2rem, 6vw, 4rem);
      font-weight: 900;
      letter-spacing: -0.02em;
      line-height: 1.08;
      margin-bottom: 14px;
      background: linear-gradient(135deg, var(--accent), var(--accent-blue));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .meta,
    .intro {
      color: var(--text-secondary);
      font-size: 1rem;
    }

    .intro {
      max-width: 760px;
      margin-top: 14px;
    }

    .legal-card {
      background: rgba(30, 41, 59, 0.78);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 40px;
      box-shadow: 0 18px 44px rgba(0, 0, 0, 0.24);
    }

    section {
      margin-bottom: 34px;
    }

    section:last-child {
      margin-bottom: 0;
    }

    h2 {
      font-size: 1.1rem;
      font-weight: 800;
      margin-bottom: 12px;
      padding-bottom: 10px;
      border-bottom: 1px solid var(--border);
    }

    p {
      color: var(--text-secondary);
      margin-bottom: 12px;
    }

    p:last-child {
      margin-bottom: 0;
    }

    ul {
      list-style: none;
      margin: 10px 0 14px;
    }

    li {
      color: var(--text-secondary);
      padding: 5px 0 5px 22px;
      position: relative;
    }

    li::before {
      content: '';
      position: absolute;
      left: 0;
      top: 16px;
      width: 6px;
      height: 6px;
      border-radius: 999px;
      background: var(--accent);
      opacity: 0.7;
    }

    strong {
      color: var(--text-primary);
    }

    a {
      color: var(--accent);
      text-decoration: none;
    }

    a:hover {
      text-decoration: underline;
    }

    .callout {
      background: rgba(16, 185, 129, 0.12);
      border: 1px solid rgba(16, 185, 129, 0.28);
      border-radius: 8px;
      padding: 16px 18px;
      margin: 16px 0;
    }

    footer {
      border-top: 1px solid var(--border);
      padding: 28px 0;
      color: var(--text-secondary);
      font-size: 0.9rem;
    }

    .footer-links {
      display: flex;
      gap: 18px;
      flex-wrap: wrap;
      margin-top: 8px;
    }

    @media (max-width: 640px) {
      .nav-content {
        align-items: flex-start;
        flex-direction: column;
      }

      main {
        padding: 52px 0 64px;
      }

      .legal-card {
        padding: 26px 22px;
      }
    }

