:root {
      --bg-paper: #fafafc;
      --card-bg: #ffffff;
      --ink-main: #0f172a;
      --ink-muted: #475569;
      --line: #e2e8f0;
      --accent: #4f46e5;
      --accent-hover: #4338ca;
      --accent-soft: #eef2ff;
      --accent-text: #3730a3;
      --amber-soft: #fffbeb;
      --amber-border: #fde68a;
      --amber-text: #92400e;
      --emerald-soft: #ecfdf5;
      --emerald-text: #065f46;
      --emerald-accent: #10b981;

        /* Platform Official Colors */
      --brand-whatsapp: #25d366;
      --brand-gmail: #ea4335;
      --brand-discord: #5865f2;
      --brand-slack: #e01e5a;
      --brand-youtube: #ff0000;
    }

    * {
      box-sizing: border-box;
    }
    html {
      scroll-behavior: smooth;
    }
    html, body {
      max-width: 100%;
      overflow-x: hidden;
    }
    body {
      margin: 0;
      background: var(--bg-paper);
      color: var(--ink-main);
      font-family: "Plus Jakarta Sans", sans-serif;
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
    }

    h1, h2, h3 {
      color: var(--ink-main);
      letter-spacing: -0.02em;
    }
    a {
      color: var(--accent);
      text-decoration: none;
    }
    .wrap {
      max-width: 1080px;
      margin: 0 auto;
      padding: 0 24px;
    }

    /* Header */
    header.nav {
      border-bottom: 1px solid var(--line);
      padding: 16px 0;
      position: sticky;
      top: 0;
      background: rgba(250, 250, 252, 0.9);
      backdrop-filter: blur(12px);
      z-index: 1;
    }
    .nav .wrap {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
    }
    .brand {
      display: flex;
      align-items: center;
      gap: 12px;
      font-weight: 700;
      font-size: 21px;
      color: var(--ink-main);
      min-width: 0;
      flex-shrink: 1;
    }
    .brand span {
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    .brand-logo {
      width: 36px;
      height: 36px;
      border-radius: 10px;
      object-fit: cover;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
      border: 1px solid var(--line);
    }
    .nav-links {
      display: flex;
      gap: 24px;
      align-items: center;
      font-size: 14px;
      font-weight: 500;
      flex-shrink: 0;
    }
    .nav-links a {
      color: var(--ink-muted);
      transition: color 0.2s;
    }
    .nav-links a:hover {
      color: var(--accent);
    }
    .btn-install {
      background: var(--accent);
      color: #fff !important;
      padding: 9px 18px;
      border-radius: 100px;
      font-weight: 600;
      transition: background-color 0.2s, box-shadow 0.2s;
    }
    .btn-install:hover {
      background: var(--accent-hover);
      box-shadow: 0 4px 12px rgba(79, 70, 229, 0.25);
    }

    /* Hero Section */
    section.hero {
      padding: 80px 0 60px;
      text-align: center;
    }
    .hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 13px;
      font-weight: 600;
      color: var(--accent-text);
      background: var(--accent-soft);
      padding: 6px 16px;
      border-radius: 20px;
      margin-bottom: 24px;
    }
    h1.hero-title {
      font-size: 52px;
      line-height: 1.15;
      max-width: 22ch;
      margin: 0 auto 20px;
      font-weight: 700;
    }
    h1.hero-title em {
      font-family: "Playfair Display", serif;
      font-style: italic;
      font-weight: 500;
      color: var(--accent);
    }
    p.hero-sub {
      font-size: 19px;
      color: var(--ink-muted);
      max-width: 58ch;
      margin: 0 auto 36px;
    }

    /* Interactive Features Section */
    section.features {
      padding: 40px 0 80px;
    }
    .section-head {
      text-align: center;
      margin-bottom: 48px;
    }
    .section-head h2 {
      font-size: 32px;
      font-weight: 700;
      margin: 0 0 12px;
    }
    .section-head p {
      color: var(--ink-muted);
      font-size: 16px;
      margin: 0;
    }

    .features-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 32px;
    }

       /* --- INTERACTIVE DEMO CONTAINER --- */
      .demo-box {
        margin-top: 40px;
        background: #1a1d21;
        border: 1px solid var(--line);
        border-radius: 18px;
        padding: 20px;
        box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
        max-width: 540px;
      }
      .demo-header {
        font-size: 12px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        color: #94a3b8;
        margin-bottom: 16px;
        display: flex;
        align-items: center;
        gap: 8px;
      }
      .demo-header .dot {
        width: 8px;
        height: 8px;
        background: #10b981;
        border-radius: 50%;
        display: inline-block;
      }

      #chat-log {
        margin-bottom: 16px;
        width: 100%;
        height: 190px;
        display: flex;
        flex-direction: column;
        gap: 10px;
        overflow-y: auto;
        padding: 6px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
      }

      .bubble {
        padding: 10px 16px;
        border-radius: 16px;
        font-size: 13.5px;
        max-width: 85%;
        opacity: 0;
        transform: translateY(8px);
        animation: fadeIn 0.3s forwards;
        line-height: 1.4;
      }

      .bubble.user {
        background-color: var(--accent);
        color: #ffffff;
        align-self: flex-end;
        border-bottom-right-radius: 4px;
        font-weight: 500;
      }

      @keyframes fadeIn {
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }

      .chat-input-container {
        position: relative;
        display: flex;
        align-items: center;
        width: 100%;
        height: 48px;
        background-color: #2a2e33;
        border-radius: 24px;
        padding: 0 14px;
        pointer-events: none;
      }

      .left-actions {
        display: flex;
        align-items: center;
        gap: 8px;
        margin-right: 8px;
      }
      .action-btn {
        background: none;
        border: none;
        color: #64748b;
        font-size: 18px;
      }

      .text-input-area {
        flex-grow: 1;
        position: relative;
      }
      #chat-input {
        width: 100%;
        height: 100%;
        background: none;
        border: none;
        color: #ffffff;
        font-size: 14px;
        outline: none;
        font-family: inherit;
      }
      #chat-input.translated {
        color: #34d399;
        font-weight: 600;
      }

      .right-actions {
        display: flex;
        align-items: center;
        gap: 8px;
        margin-left: 8px;
      }
       .custom-logo {
        width: 20px;
        height: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
      }
      .custom-logo img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        filter: invert(1);
      }

      .lang-selector {
        background-color: rgba(255, 255, 255, 0.12);
        color: #ffffff;
        border: none;
        padding: 4px 8px;
        border-radius: 8px;
        font-size: 11px;
        font-weight: 700;
        text-transform: uppercase;
      }

      .send-mic-btn {
        background: none;
        border: none;
        color: #64748b;
        font-size: 14px;
        border-radius: 50%;
        width: 28px;
        height: 28px;
        display: flex;
        justify-content: center;
        align-items: center;
        transition: background-color 0.2s;
      }
      .send-mic-btn.active {
        background-color: #10b981;
        color: #ffffff;
      }

      .lang-dropdown {
        position: absolute;
        bottom: 58px;
        right: 10px;
        width: 170px;
        background-color: #2a2e33;
        border-radius: 10px;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
        display: none;
        flex-direction: column;
        overflow: hidden;
        z-index: 10;
        border: 1px solid rgba(255, 255, 255, 0.08);
      }
      .lang-dropdown.show {
        display: flex;
      }
      .lang-item {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 9px 12px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
      }
      .lang-item:last-child {
        border-bottom: none;
      }
      .lang-name {
        font-size: 12px;
        color: #cbd5e1;
      }
      .lang-code {
        font-size: 11px;
        color: #64748b;
        font-weight: 700;
      }
      .lang-item.selected .lang-name,
      .lang-item.selected .lang-code {
        color: #34d399;
      }

    /* Platforms Section */
      section.platforms {
        padding: 48px 0;
        border-top: 1px solid var(--line);
      }
      section.platforms h2 {
        font-size: 24px;
        margin: 0 0 8px 0;
      }
      .platform-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 14px;
        margin-top: 24px;
      }
      .platform-card {
        background: var(--card-bg);
        border: 1px solid var(--line);
        border-radius: 14px;
        padding: 18px 14px;
        text-align: center;
        font-size: 14.5px;
        font-weight: 600;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
        transition:
          transform 0.2s ease,
          box-shadow 0.2s ease;
      }
      .platform-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.04);
      }
      .platform-card .platform-icon {
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
      }
      .platform-card .platform-icon svg {
        width: 100%;
        height: 100%;
      }

      /* Specific Brand Colors */
      .platform-card.whatsapp .platform-icon {
        color: var(--brand-whatsapp);
        fill: var(--brand-whatsapp);
      }
      .platform-card.gmail .platform-icon {
        color: var(--brand-gmail);
        fill: var(--brand-gmail);
      }
      .platform-card.discord .platform-icon {
        color: var(--brand-discord);
        fill: var(--brand-discord);
      }
      .platform-card.slack .platform-icon {
        color: var(--brand-slack);
        fill: var(--brand-slack);
      }
      .platform-card.youtube .platform-icon {
        color: var(--brand-youtube);
        fill: var(--brand-youtube);
      }

      .platform-card.active {
        border-color: var(--accent);
        background: var(--accent-soft);
        color: var(--accent-text);
      }
      .platform-card.upcoming {
        opacity: 0.75;
        border-style: dashed;
        color: var(--ink-main);
      }
      .platform-card .status {
        display: block;
        font-size: 11.5px;
        font-weight: 500;
        margin-top: 2px;
        color: var(--ink-muted);
      }
      .platform-card.active .status {
        color: var(--accent-text);
        font-weight: 600;
      }
          /* Waitlist Section */
      section.waitlist {
        padding: 60px 24px;
        border: 1px solid var(--line);
        background: var(--accent-soft);
        margin-top: 40px;
        border-radius: 20px;
        text-align: center;
      }
      .waitlist-box {
        max-width: 480px;
        margin: 0 auto;
      }
      .waitlist-box h2 {
        font-size: 28px;
        margin: 0 0 10px 0;
        font-weight: 700;
      }
      .waitlist-box p {
        color: var(--ink-muted);
        font-size: 15px;
        margin: 0 0 24px 0;
      }
      .waitlist-form {
        display: flex;
        gap: 10px;
      }
      .waitlist-form input[type="email"] {
        flex: 1;
        padding: 13px 16px;
        border-radius: 12px;
        border: 1px solid var(--line);
        font-size: 14.5px;
        outline: none;
        font-family: inherit;
      }
      .waitlist-form input[type="email"]:focus {
        border-color: var(--accent);
        box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.15);
      }

    @media (max-width: 860px) {
      .features-grid {
        grid-template-columns: 1fr;
      }
    }

    .feature-card {
      background: var(--card-bg);
      border: 1px solid var(--line);
      border-radius: 20px;
      padding: 32px;
      display: flex;
      flex-direction: column;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
      transition: box-shadow 0.25s ease, transform 0.25s ease;
    }
    .feature-card:hover {
      box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
    }

    .feature-card-tag {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--accent);
      background: var(--accent-soft);
      padding: 4px 10px;
      border-radius: 6px;
      width: fit-content;
      margin-bottom: 14px;
    }

    .feature-card h3 {
      font-size: 22px;
      font-weight: 700;
      margin: 0 0 10px;
    }

    .feature-card p.desc {
      color: var(--ink-muted);
      font-size: 15px;
      line-height: 1.6;
      margin: 0 0 28px;
    }

    /* Interactive Demo 1: WhatsApp Compose Box */
    .demo-container {
      margin-top: auto;
      background: #111827;
      border-radius: 16px;
      padding: 20px;
      border: 1px solid #1f2937;
    }
    .demo-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 14px;
      font-size: 12px;
      color: #9ca3af;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }
    .demo-wa-bar {
      background: #1f2937;
      border-radius: 100px;
      padding: 8px 8px 8px 18px;
      display: flex;
      align-items: center;
      gap: 12px;
      border: 1px solid #374151;
    }
    .demo-wa-bar .msg-area {
      flex: 1;
      font-size: 14px;
      color: #f9fafb;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    .demo-wa-bar .lang-tag {
      font-size: 10px;
      font-weight: 700;
      padding: 3px 8px;
      border-radius: 6px;
      margin-right: 6px;
      transition: all 0.2s;
    }
    .demo-wa-bar .btn-trans {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      border: none;
      background: var(--accent);
      color: #fff;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      transition: transform 0.15s ease, background-color 0.2s;
    }
    .demo-wa-bar .btn-trans:hover {
      transform: scale(1.08);
      background: var(--accent-hover);
    }
    .demo-wa-bar .btn-trans.active {
      background: var(--emerald-accent);
    }
    .demo-wa-bar .btn-trans svg {
      width: 18px;
      height: 18px;
    }

    /* Interactive Demo 2: Select to Translate Box */
    .select-interactive-box {
      margin-top: auto;
      background: #f8fafc;
      border: 1.5px dashed #cbd5e1;
      border-radius: 16px;
      padding: 24px;
      position: relative;
      user-select: text;
    }
    .select-interactive-box::selection {
      background: #c7d2fe;
      color: #1e1b4b;
    }
    .select-sample-text {
      font-size: 14.5px;
      color: var(--ink-main);
      line-height: 1.6;
    }
    .select-sample-text::selection {
      background: #c7d2fe;
      color: #1e1b4b;
    }

  .demo-article-container {
  position: relative;
  padding: 20px;
  background: #ffffff;
  border-radius: 8px;
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

/* Simulasi Teks di-Highlight */
#target-text.highlighted {
  background-color: #b3d7ff;
  color: #000;
  transition: background-color 0.3s ease;
}

/* Floating Vocca Button */
.vocca-floating-btn {
  position: absolute;
  display: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: #2563eb;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  align-items: center;
  justify-content: center;
  z-index: 10;
  transform: scale(0.8);
  transition: transform 0.2s ease, opacity 0.2s ease;
  opacity: 0;
}

.vocca-floating-btn.show {
  display: flex;
  opacity: 1;
  transform: scale(1);
}

.vocca-floating-btn.active {
  transform: scale(0.9);
  background-color: #1d4ed8;
}

.vocca-floating-btn img {
  width: 18px;
  height: 18px;
}

      /* Popup Translator */
      .vocca-translation-popup {
        position: absolute;
        display: none;
        width: 280px;
        max-width: calc(100% - 16px);
        background: #ffffff;
        border: 1px solid #e5e7eb;
        border-radius: 10px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        padding: 12px;
        z-index: 20;
        opacity: 0;
        transition: opacity 0.3s ease;
      }

      .vocca-translation-popup.show {
        display: block;
        opacity: 1;
      }

      .popup-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 8px;
      }

      .popup-title {
        display: flex;
        align-items: center;
        gap: 6px;
        font-size: 12px;
        font-weight: bold;
      }

      .popup-logo {
        width: 16px;
        height: 16px;
      }

      .popup-lang-select {
        font-size: 11px;
        padding: 2px 4px;
        border-radius: 4px;
        border: 1px solid #ccc;
      }

      .popup-body {
        font-size: 13px;
      }

      .popup-original {
        color: #6b7280;
        margin-bottom: 6px;
      }

      .popup-divider {
        height: 1px;
        background: #f3f4f6;
        margin: 6px 0;
      }

      .popup-result {
        color: #111827;
        font-weight: 500;
      }

      .typing-indicator {
        font-style: italic;
        color: #9ca3af;
      }

    /* Footer */
    footer {
      border-top: 1px solid var(--line);
      padding: 40px 0;
      margin-top: 60px;
    }
    footer .wrap {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      justify-content: space-between;
      align-items: center;
      font-size: 14px;
      color: var(--ink-muted);
    }
    footer a {
      color: var(--ink-muted);
    }
    footer a:hover {
      color: var(--accent);
    }

    @media (max-width: 640px) {
      /* Header / nav */
      header.nav {
        padding: 12px 0;
      }
      .brand {
        font-size: 16px;
        gap: 8px;
      }
      .brand-logo {
        width: 28px;
        height: 28px;
      }
      .nav-links {
        gap: 10px;
      }
      .nav-links a:not(.btn-install) {
        display: none;
      }
      .btn-install {
        padding: 8px 14px;
        font-size: 13px;
      }

      /* Hero */
      section.hero {
        padding: 48px 0 40px;
      }
      .hero-eyebrow {
        font-size: 12px;
        padding: 5px 12px;
        margin-bottom: 10px;
      }
      h1.hero-title {
        font-size: 32px;
      }
      p.hero-sub {
        font-size: 16px;
      }

      /* Feature cards & demo boxes */
      section.features {
        padding: 24px 0 56px;
      }
      .feature-card {
        padding: 20px;
        border-radius: 16px;
      }
      .feature-card h3 {
        font-size: 19px;
      }
      .demo-box {
        padding: 14px;
        border-radius: 14px;
      }

      /* WhatsApp compose demo: give the typed text more room */
      .chat-input-container {
        padding: 0 10px;
        height: 44px;
      }
      .left-actions {
        gap: 4px;
        margin-right: 4px;
      }
      .left-actions .action-btn:last-child {
        display: none;
      }
      .right-actions {
        gap: 5px;
        margin-left: 5px;
      }
      .custom-logo {
        width: 16px;
        height: 16px;
      }
      .lang-selector {
        padding: 3px 6px;
        font-size: 10px;
      }
      .send-mic-btn {
        width: 24px;
        height: 24px;
        font-size: 12px;
      }
      #chat-input {
        font-size: 13px;
      }

      /* Select-to-translate demo */
      .demo-article-container {
        padding: 14px;
      }
      .select-sample-text {
        font-size: 13.5px;
      }
      .vocca-translation-popup {
        width: 240px;
        padding: 10px;
      }

      /* Platforms */
      .platform-grid {
        gap: 10px;
      }
      .platform-card {
        padding: 14px 10px;
        font-size: 13px;
      }

      /* Waitlist */
      section.waitlist {
        padding: 40px 16px;
        margin-top: 24px;
      }
      .waitlist-box h2 {
        font-size: 22px;
      }
      .waitlist-form {
        flex-direction: column;
      }

      /* Footer */
      footer {
        margin-top: 40px;
        padding: 28px 0;
      }
      footer .wrap {
        justify-content: center;
        text-align: center;
      }
    }

    @media (max-width: 380px) {
      .nav-links {
        gap: 6px;
      }
      .btn-install {
        padding: 7px 12px;
        font-size: 12px;
      }
      h1.hero-title {
        font-size: 26px;
      }
    }


/* ============================================================
   GET-STARTED PAGE — shared components unique to this page
   (previously lived only in get-started.html's inline <style>)
   ============================================================ */

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--emerald-text);
  background: var(--emerald-soft);
  padding: 5px 12px;
  border-radius: 20px;
  border: 1px solid #a7f3d0;
}
.status-badge svg {
  width: 14px;
  height: 14px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-text);
  background: var(--accent-soft);
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
}
h1.headline {
  font-size: 42px;
  line-height: 1.18;
  max-width: 20ch;
  font-weight: 700;
  margin: 0 0 16px;
}
.headline em {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-weight: 500;
  color: var(--accent);
  transition: all 0.3s ease;
}
.sub {
  font-size: 17px;
  color: var(--ink-muted);
  max-width: 52ch;
  margin: 0;
}

/* Disclaimer footnote under the WhatsApp compose demo */
.whatsapp-footnote {
  font-size: 12px;
  color: var(--ink-muted);
  margin-top: 14px;
  line-height: 1.5;
  padding-left: 4px;
  border-left: 2px solid var(--line);
}

/* Floating "pin the extension" card */
.floating-pin-widget {
  position: fixed;
  right: 24px;
  top: 20px;
  z-index: 3;
  background: var(--card-bg);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  padding: 16px 20px;
  max-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  animation: floatUp 0.5s ease-out;
}
@keyframes floatUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.floating-pin-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--accent-text);
}
.floating-pin-body {
  font-size: 12.5px;
  color: var(--ink-muted);
  line-height: 1.5;
}
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  background: var(--accent);
  color: #ffffff;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
  text-align: center;
}
.cta-btn:hover {
  background: var(--accent-hover);
  box-shadow: 0 4px 12px rgba(79, 70, 229, 0.25);
}

/* ============================================================
   PAGE-SCOPED OVERRIDES
   Same shared class, different values needed per page.
   Scoping by body class beats duplicating the whole file.
   ============================================================ */

body.page-start .wrap {
  max-width: 1056px;
}
body.page-start section.hero {
  padding: 56px 0 40px;
  text-align: left;
}
body.page-start footer .wrap {
  font-size: 13.5px;
}

@media (max-width: 768px) {
  body.page-start .floating-pin-widget {
    display: none; /* don't cover content on small screens */
  }
  body.page-start h1.headline {
    font-size: 32px;
  }
}


  /* privacy & policy */
.back-link { font-size: 14.5px; font-weight: 600; text-decoration: none; color: var(--ink-muted); }
  .back-link:hover { color: var(--accent); }

  /* Content */
  section.privacy { padding: 56px 0 80px; }
  section.privacy h1 { font-size: 38px; margin: 0 0 6px 0; font-weight: 700; }
  .updated { font-size: 13.5px; color: var(--ink-muted); margin-bottom: 36px; }
  section.privacy h3 { font-size: 18px; margin: 32px 0 10px 0; font-weight: 600; }
  section.privacy p, section.privacy li { font-size: 15px; color: var(--ink-muted); }
  section.privacy ul { padding-left: 22px; margin-bottom: 16px; }
  section.privacy li { margin-bottom: 8px; }
  code { background: #F1F5F9; padding: 2px 6px; border-radius: 6px; font-size: 13.5px; color: var(--ink-main); }

  footer { border-top: 1px solid var(--line); padding: 32px 0; }
  footer .wrap { display: flex; justify-content: space-between; align-items: center; font-size: 13.5px; color: var(--ink-muted); }