
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --bg:            #faf9f6;
    --white:         #ffffff;
    --border:        #e8e4db;
    --text:          #1c1917;
    --muted:         #78716c;
    --light:         #a8a29e;
    --accent:        #2563eb;
    --accent-bg:     #eff6ff;
    --accent-border: #bfdbfe;
    --green:         #16a34a;
    --green-bg:      #f0fdf4;
    --green-border:  #bbf7d0;
    --sans:          'DM Sans', sans-serif;
    --mono:          'JetBrains Mono', monospace;
    --radius:        12px;
  }

  html { scroll-behavior: smooth; }

  body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.7;
  }

  /* ── NAV ─────────────────────────────── */
  nav {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 0 2rem;
    display: flex; align-items: center; justify-content: space-between;
    height: 58px;
  }
  .nav-logo {
    font-family: var(--mono); font-size: 0.9rem;
    font-weight: 600; color: var(--accent);
  }
  .nav-badge {
    font-size: 0.72rem; color: var(--muted);
    background: var(--bg); border: 1px solid var(--border);
    border-radius: 20px; padding: 4px 12px;
  }

  /* ── HERO ────────────────────────────── */
  .hero {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 3rem 2rem 2.5rem;
    text-align: center;
  }
  .hero-icon {
    width: 64px; height: 64px;
    background: var(--accent-bg);
    border: 1px solid var(--accent-border);
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1.25rem;
    font-size: 1.75rem;
  }
  .hero h1 {
    font-size: clamp(1.6rem, 4vw, 2.2rem);
    font-weight: 700; letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
  }
  .hero-app {
    font-family: var(--mono); font-size: 0.85rem;
    color: var(--accent); margin-bottom: 1rem;
  }
  .hero p {
    color: var(--muted); font-size: 0.95rem;
    max-width: 520px; margin: 0 auto 1.5rem;
    line-height: 1.8;
  }
  .hero-date {
    display: inline-block;
    font-size: 0.75rem; color: var(--light);
    background: var(--bg); border: 1px solid var(--border);
    border-radius: 20px; padding: 4px 14px;
  }

  /* ── LAYOUT ──────────────────────────── */
  .container {
    max-width: 780px;
    margin: 0 auto;
    padding: 3rem 2rem 5rem;
  }

  /* ── NO DATA BANNER ──────────────────── */
  .no-data-banner {
    background: var(--green-bg);
    border: 1px solid var(--green-border);
    border-radius: var(--radius);
    padding: 1.5rem 2rem;
    display: flex; gap: 1rem; align-items: flex-start;
    margin-bottom: 3rem;
  }
  .no-data-icon { font-size: 1.5rem; flex-shrink: 0; }
  .no-data-title { font-size: 1rem; font-weight: 700; color: #14532d; margin-bottom: 4px; }
  .no-data-text  { font-size: 0.88rem; color: #15803d; line-height: 1.7; }

  /* ── SECTIONS ────────────────────────── */
  .section { margin-bottom: 2.5rem; }
  .section-num {
    font-family: var(--mono); font-size: 0.7rem;
    color: var(--accent); font-weight: 600;
    letter-spacing: 0.08em; margin-bottom: 0.4rem;
  }
  h2 {
    font-size: 1.15rem; font-weight: 700;
    margin-bottom: 0.85rem; color: var(--text);
  }
  p { color: #44403c; line-height: 1.8; margin-bottom: 0.75rem; }
  p:last-child { margin-bottom: 0; }

  /* ── DIVIDER ─────────────────────────── */
  hr { border: none; border-top: 1px solid var(--border); margin: 2.5rem 0; }

  /* ── INFO CARD ───────────────────────── */
  .info-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    margin: 1.25rem 0;
  }
  .info-row {
    display: flex; align-items: flex-start;
    padding: 0.85rem 1.25rem;
    border-bottom: 1px solid var(--border);
    gap: 1rem;
  }
  .info-row:last-child { border-bottom: none; }
  .info-icon { font-size: 1rem; flex-shrink: 0; margin-top: 2px; }
  .info-content { flex: 1; }
  .info-label { font-size: 0.75rem; font-weight: 600; color: var(--light); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 2px; }
  .info-value { font-size: 0.88rem; color: var(--text); line-height: 1.6; }
  .badge-no {
    display: inline-block; font-size: 0.72rem; font-weight: 600;
    background: var(--green-bg); color: var(--green);
    border: 1px solid var(--green-border);
    border-radius: 20px; padding: 2px 10px;
  }

  /* ── PERMISSIONS TABLE ───────────────── */
  .perm-table {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    margin: 1.25rem 0;
    width: 100%;
  }
  .perm-row {
    display: flex; align-items: center;
    padding: 0.85rem 1.25rem;
    border-bottom: 1px solid var(--border);
    gap: 1rem;
  }
  .perm-row:last-child { border-bottom: none; }
  .perm-name { font-family: var(--mono); font-size: 0.8rem; color: var(--accent); flex: 1; }
  .perm-desc { font-size: 0.82rem; color: var(--muted); flex: 2; }
  .badge-required {
    font-size: 0.68rem; font-weight: 600;
    background: var(--accent-bg); color: var(--accent);
    border: 1px solid var(--accent-border);
    border-radius: 20px; padding: 2px 8px;
    white-space: nowrap;
  }
  .badge-none {
    font-size: 0.68rem; font-weight: 600;
    background: var(--green-bg); color: var(--green);
    border: 1px solid var(--green-border);
    border-radius: 20px; padding: 2px 8px;
    white-space: nowrap;
  }

  /* ── CONTACT CARD ────────────────────── */
  .contact-card {
    background: var(--accent-bg);
    border: 1px solid var(--accent-border);
    border-radius: var(--radius);
    padding: 1.5rem 1.75rem;
    margin: 1.25rem 0;
  }
  .contact-card h3 { font-size: 0.95rem; font-weight: 700; color: #1e40af; margin-bottom: 0.75rem; }
  .contact-row { display: flex; align-items: center; gap: 0.6rem; margin-bottom: 0.5rem; font-size: 0.88rem; color: #1d4ed8; }
  .contact-row:last-child { margin-bottom: 0; }
  .contact-row a { color: var(--accent); text-decoration: none; }
  .contact-row a:hover { text-decoration: underline; }

  /* ── FOOTER ──────────────────────────── */
  footer {
    background: var(--white);
    border-top: 1px solid var(--border);
    padding: 1.25rem 2rem;
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 0.5rem;
    font-size: 0.78rem; color: var(--light);
  }
  footer strong { color: var(--text); }

  /* ── RESPONSIVE ──────────────────────── */
  @media (max-width: 600px) {
    nav { padding: 0 1rem; }
    .hero { padding: 2rem 1.25rem 2rem; }
    .container { padding: 2rem 1.25rem 4rem; }
    .no-data-banner { flex-direction: column; gap: 0.5rem; padding: 1.25rem; }
    .perm-row { flex-direction: column; gap: 6px; align-items: flex-start; }
    .perm-desc { font-size: 0.8rem; }
    footer { flex-direction: column; text-align: center; padding: 1rem; }
    .info-row { flex-wrap: wrap; }
  }
