:root {
      --primary: #4A90E2;
      --primary-soft: #6BB7F2;
      --primary-dark: #2F6FCF;
      --aqua: #41D4FF;
      --mint: #41D4A8;
      --sun: #FFD166;
      --coral: #FF7A85;
      --bg: #F5FAFF;
      --bg-soft: #EAF6FF;
      --white: #FFFFFF;
      --text: #102033;
      --muted: #5D728A;
      --border: #D7E8F6;
      --shadow: 0 18px 45px rgba(47, 111, 207, 0.12);
      --radius: 28px;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
      font-family: "Nunito", sans-serif;
    }

    *::before,
    *::after,
    button,
    input,
    textarea,
    select,
    a,
    span,
    p,
    h1,
    h2,
    h3,
    h4,
    h5,
    h6,
    li {
      font-family: "Nunito", sans-serif;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      background: var(--bg);
      color: var(--text);
      overflow-x: hidden;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    .page {
      position: relative;
      min-height: 100vh;
      overflow: hidden;
    }

    .blob {
      position: absolute;
      border-radius: 999px;
      filter: blur(10px);
      opacity: 0.18;
      z-index: 0;
    }

    .blob.blue {
      width: 460px;
      height: 460px;
      background: var(--primary-soft);
      top: -200px;
      left: -160px;
    }

    .blob.mint {
      width: 540px;
      height: 540px;
      background: var(--mint);
      right: -240px;
      bottom: -200px;
    }

    .blob.coral {
      width: 240px;
      height: 240px;
      background: var(--coral);
      top: 38%;
      left: 3%;
      opacity: 0.08;
    }

    .container {
      width: min(1020px, calc(100% - 40px));
      margin: 0 auto;
      position: relative;
      z-index: 1;
    }

    header {
      padding: 26px 0;
    }

    .nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 12px;
      font-weight: 900;
      font-size: 25px;
      letter-spacing: -0.04em;
    }

    .brand-icon img {
      width: 40px;
      height: 40px;
      object-fit: cover;
      border-radius: 10px;
      display: block;
    }

    .brand .drop { color: var(--primary-dark); }
    .brand .i { color: var(--mint); }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 18px;
      font-size: 15px;
      font-weight: 800;
      color: var(--muted);
    }

    .nav-links a {
      padding: 10px 14px;
      border-radius: 999px;
    }

    .nav-links a:hover {
      color: var(--primary-dark);
      background: rgba(74, 144, 226, 0.08);
    }

    .hero {
      padding: 64px 0 42px;
      text-align: center;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 9px 14px;
      border: 1px solid rgba(74, 144, 226, 0.22);
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.78);
      color: var(--primary-dark);
      font-weight: 900;
      font-size: 14px;
      box-shadow: 0 10px 30px rgba(47, 111, 207, 0.06);
    }

    h1 {
      margin: 24px auto 0;
      max-width: 850px;
      font-size: clamp(42px, 7vw, 76px);
      line-height: 0.96;
      letter-spacing: -0.08em;
      font-weight: 900;
    }

    .gradient-text {
      background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-soft) 45%, var(--mint) 100%);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }

    .hero p {
      margin: 22px auto 0;
      max-width: 760px;
      font-size: 20px;
      line-height: 1.7;
      color: var(--muted);
      font-weight: 600;
    }

    .updated-pill {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-top: 24px;
      padding: 11px 16px;
      border-radius: 999px;
      background: white;
      color: var(--muted);
      border: 1px solid var(--border);
      box-shadow: 0 12px 28px rgba(47, 111, 207, 0.07);
      font-weight: 800;
      font-size: 15px;
    }

    .policy-shell {
      display: grid;
      grid-template-columns: 260px 1fr;
      gap: 24px;
      align-items: start;
      padding: 36px 0 88px;
    }

    .toc {
      position: sticky;
      top: 22px;
      padding: 20px;
      border-radius: 26px;
      background: rgba(255, 255, 255, 0.82);
      border: 1px solid rgba(215, 232, 246, 0.95);
      box-shadow: 0 14px 35px rgba(47, 111, 207, 0.07);
    }

    .toc strong {
      display: block;
      margin-bottom: 12px;
      font-size: 15px;
      color: var(--text);
    }

    .toc a {
      display: block;
      padding: 8px 0;
      color: var(--muted);
      font-size: 14px;
      font-weight: 800;
      line-height: 1.25;
    }

    .toc a:hover {
      color: var(--primary-dark);
    }

    .policy-card {
      padding: 34px;
      border-radius: 34px;
      background: rgba(255, 255, 255, 0.9);
      border: 1px solid rgba(215, 232, 246, 0.95);
      box-shadow: var(--shadow);
    }

    .intro-card {
      margin-bottom: 18px;
      padding: 26px;
      border-radius: 26px;
      background: linear-gradient(135deg, #FFFFFF 0%, #EAF7FF 100%);
      border: 1px solid var(--border);
    }

    .intro-card p {
      color: var(--muted);
      font-size: 17px;
      line-height: 1.75;
      font-weight: 650;
    }

    .policy-section {
      padding: 28px 0;
      border-top: 1px solid var(--border);
      scroll-margin-top: 30px;
    }

    .policy-section:first-of-type {
      border-top: none;
      padding-top: 6px;
    }

    .policy-section h2 {
      font-size: clamp(26px, 4vw, 36px);
      line-height: 1.05;
      letter-spacing: -0.05em;
      font-weight: 900;
      margin-bottom: 14px;
      color: var(--text);
    }

    .policy-section h3 {
      margin-top: 20px;
      margin-bottom: 8px;
      font-size: 20px;
      letter-spacing: -0.03em;
      color: var(--primary-dark);
    }

    .policy-section p,
    .policy-section li {
      color: var(--muted);
      font-size: 17px;
      line-height: 1.78;
      font-weight: 600;
    }

    .policy-section p + p {
      margin-top: 12px;
    }

    ul {
      margin-top: 12px;
      padding-left: 22px;
    }

    li + li {
      margin-top: 5px;
    }

    .contact-box {
      margin-top: 14px;
      padding: 18px 20px;
      border-radius: 22px;
      background: var(--bg-soft);
      border: 1px solid var(--border);
      color: var(--text);
      font-weight: 900;
      word-break: break-word;
    }

    .contact-box a {
      color: var(--primary-dark);
    }

    .cta {
      margin-top: 22px;
      padding: 34px;
      border-radius: 32px;
      text-align: center;
      color: white;
      background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-soft) 52%, var(--mint) 100%);
      box-shadow: 0 28px 60px rgba(74, 144, 226, 0.24);
      position: relative;
      overflow: hidden;
    }

    .cta::before {
      content: "";
      position: absolute;
      width: 260px;
      height: 260px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.16);
      top: -130px;
      left: -80px;
    }

    .cta h2 {
      position: relative;
      font-size: clamp(30px, 5vw, 46px);
      line-height: 1;
      letter-spacing: -0.06em;
      font-weight: 900;
      margin-bottom: 12px;
    }

    .cta p {
      position: relative;
      max-width: 620px;
      margin: 0 auto 20px;
      font-size: 18px;
      line-height: 1.6;
      opacity: 0.94;
      font-weight: 700;
    }

    .btn {
      position: relative;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 50px;
      padding: 0 20px;
      border-radius: 16px;
      background: white;
      color: var(--text);
      font-weight: 900;
      box-shadow: 0 14px 28px rgba(16, 32, 51, 0.14);
    }

    footer {
      padding: 32px 0 44px;
      color: var(--muted);
      font-weight: 800;
      text-align: center;
    }

    @media (max-width: 900px) {
      .nav-links {
        display: none;
      }

      .hero {
        padding-top: 40px;
      }

      .policy-shell {
        grid-template-columns: 1fr;
      }

      .toc {
        position: relative;
        top: auto;
      }
    }

    @media (max-width: 560px) {
      .container {
        width: min(100% - 28px, 1020px);
      }

      h1 {
        font-size: clamp(42px, 13vw, 60px);
      }

      .hero p,
      .policy-section p,
      .policy-section li {
        font-size: 16px;
      }

      .policy-card {
        padding: 22px;
        border-radius: 28px;
      }

      .intro-card,
      .cta {
        padding: 24px;
      }
    }