@font-face {
  font-family: "Clash Grotesk";
  src: url("https://framerusercontent.com/third-party-assets/fontshare/wf/2SAK53YLUN7RMYJU4MYLSBV6SSSJEJZB/RXS4DPGJRKOUFZMF5X5BVUGNNKJT65XZ/DJS4RYGIUYUXJQOHY5VCZPKSTXUSHTSP.woff2") format('woff2');
  font-display: swap;
  font-style: normal;
  font-weight: 500;
}

@font-face {
  font-family: "Clash Grotesk";
  src: url("https://framerusercontent.com/third-party-assets/fontshare/wf/P6VJ47S3OYMUC7HYSJLTK7PEIK5O2NPQ/TK62VLUWA76PMTK2XWBNDZB7QVXJGYE3/I5W5NEJGYVFUC5I4XOXVET63OE5PSVHJ.woff2") format('woff2');
  font-display: swap;
  font-style: normal;
  font-weight: 700;
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.header {
  background: #1a1a74;
  padding: 0 24px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
}

.header-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-logo {
  height: 28px;
  display: block;
  filter: brightness(0) invert(1);
}

.header-divider {
  width: 1px;
  height: 24px;
  background: rgba(255, 255, 255, 0.25);
}

.header-title {
  color: #ffffff;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.header-badge {
  background: #e7f255;
  color: #1a1a74;
  font-size: 11px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 10px;
  letter-spacing: 0.02em;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  transition: color 0.15s;
}

.header-link:hover {
  color: #ffffff;
}

.header-cta {
  background: #e7f255;
  color: #1a1a74;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 6px;
  transition: background 0.15s;
}

.header-cta:hover {
  background: #dce844;
}

/* Redoc heading differentiation — theme doesn't support per-level styling */
/* Tag group headings: "Accounts", "Beneficiaries", etc. */
[id^="tag/"] > div > div > h2 {
  font-family: 'Clash Grotesk', sans-serif;
  font-size: 5em;
  font-weight: 500;
  color: #1d1d1d;
}
/* Tag description text beneath heading */
[id^="tag/"] > div > div > div {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 400;
}
/* Operation summary headings: "List accounts for the tenant.", etc. */
[id*="/operation/"] > div > div > h2 {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 1.35em;
  color: #1d1d1d;
  font-weight: 600;
}

@media (max-width: 600px) {
  .header { padding: 0 16px; }
  .header-right { gap: 12px; }
  .header-link { display: none; }
  .header-title { font-size: 13px; }
}
