.kb-accounts-guide {
  --ink: #242424;
  --muted: #5f6872;
  --paper: #ffffff;
  --panel: #f2f2f2;
  --line: #d9dce0;
  --navy: #082d5b;
  --cyan: #10b5e8;
  --cyan-soft: #dff5fb;
  --coral: #e97963;
  --gold: #d69d3c;
  --shadow: 0 14px 34px rgba(8, 45, 91, .08);

  color: var(--ink);
  background: var(--paper);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

.kb-accounts-guide,
.kb-accounts-guide * {
  box-sizing: border-box;
}

.kb-accounts-guide .wrap {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.kb-accounts-guide header {
  padding: 48px 0 22px;
}

.kb-accounts-guide .kicker {
  margin-bottom: 24px;
  color: var(--navy);
  font: 800 12px/1.2 inherit;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.kb-accounts-guide h1 {
  max-width: none;
  margin: 0 0 18px;
  color: var(--navy);
  font-size: clamp(42px, 7vw, 82px);
  line-height: .96;
  font-weight: 800;
}

.kb-accounts-guide .intro {
  max-width: 660px;
  margin: 0;
  color: var(--muted);
  font-size: 20px;
}

.kb-accounts-guide main {
  padding-bottom: 80px;
}

.kb-accounts-guide section {
  margin: 54px 0;
}

.kb-accounts-guide main > section:first-child {
  margin-top: 22px;
}

.kb-accounts-guide h2 {
  margin: 0 0 20px;
  font-size: 35px;
  font-weight: 500;
}

.kb-accounts-guide h3 {
  margin: 0 0 7px;
  font-size: 22px;
  font-weight: 500;
}

.kb-accounts-guide .section-lead {
  max-width: 720px;
  color: var(--muted);
  font-size: 17px;
}

.kb-accounts-guide .levels,
.kb-accounts-guide .field-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.kb-accounts-guide .level,
.kb-accounts-guide .field-card {
  padding: 22px;
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.kb-accounts-guide .level {
  border-top: 5px solid var(--cyan);
}

.kb-accounts-guide .level.ask {
  border-top-color: var(--coral);
}

.kb-accounts-guide .level.work {
  border-top-color: var(--gold);
}

.kb-accounts-guide .level p,
.kb-accounts-guide .field-card p {
  margin: 0;
  color: var(--muted);
}

.kb-accounts-guide .tag {
  display: inline-block;
  margin-bottom: 12px;
  padding: 5px 8px;
  color: var(--navy);
  background: var(--cyan-soft);
  font: 700 11px/1 Arial, sans-serif;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.kb-accounts-guide .ask .tag {
  color: #8f3f2f;
  background: #f8dfd7;
}

.kb-accounts-guide .work .tag {
  color: #795812;
  background: #faedc9;
}

.kb-accounts-guide .controls {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 24px 0;
}

.kb-accounts-guide input,
.kb-accounts-guide select {
  min-height: 46px;
  padding: 0 13px;
  color: var(--ink);
  background: var(--panel);
  border: 1px solid var(--line);
  font: 15px Arial, sans-serif;
}

.kb-accounts-guide input {
  flex: 1 1 280px;
}

.kb-accounts-guide select {
  flex: 0 1 210px;
}

.kb-accounts-guide .field-card {
  box-shadow: none;
  border-left: 4px solid var(--cyan);
}

.kb-accounts-guide .field-card[data-level="Ask Before Changing"] {
  border-left-color: var(--coral);
}

.kb-accounts-guide .field-card[data-level="Update When You Own the Work"] {
  border-left-color: var(--gold);
}

.kb-accounts-guide .field-card h3 {
  font: 700 16px/1.25 Arial, sans-serif;
}

.kb-accounts-guide .api {
  display: block;
  margin: 5px 0 13px;
  color: var(--muted);
  font: 12px/1.3 Consolas, monospace;
  overflow-wrap: anywhere;
}

.kb-accounts-guide .meta {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.kb-accounts-guide .meta span {
  padding: 4px 7px;
  background: #edf0e9;
  color: var(--muted);
  font: 11px Arial, sans-serif;
}

.kb-accounts-guide .callout {
  padding: 28px;
  background: var(--navy);
  color: #f4fbf6;
}

.kb-accounts-guide .callout h2 {
  color: white;
}

.kb-accounts-guide .callout p {
  max-width: 760px;
  margin: 0;
  font-size: 19px;
}

.kb-accounts-guide .field-guidance {
  margin-top: 18px;
  padding-top: 15px;
  border-top: 1px solid var(--line);
  font-size: 13px;
}

.kb-accounts-guide .field-guidance strong {
  color: var(--navy);
}

.kb-accounts-guide footer {
  padding: 28px 0 50px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font: 12px Arial, sans-serif;
}

@media (max-width: 760px) {
  .kb-accounts-guide .wrap {
    width: min(100% - 28px, 620px);
  }

  .kb-accounts-guide .levels,
  .kb-accounts-guide .field-grid {
    grid-template-columns: 1fr;
  }

  .kb-accounts-guide h1 {
    font-size: 52px;
  }
}
/* Shared full-width layout for all knowledgebase pages */
.kb-page {
  position: relative;
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  overflow-x: clip;
}

.kb-page > .wrap {
  width: min(1180px, calc(100% - 64px));
  margin-right: auto;
  margin-left: auto;
}

@media (max-width: 760px) {
  .kb-page > .wrap {
    width: min(100% - 28px, 620px);
  }
}
.kb-accounts-guide {
  font-family: Arial, "Segoe UI", sans-serif !important;
  font-size: 16px;
  line-height: 1.5;
}

.kb-accounts-guide h1,
.kb-accounts-guide h2,
.kb-accounts-guide h3,
.kb-accounts-guide p,
.kb-accounts-guide span,
.kb-accounts-guide strong,
.kb-accounts-guide input,
.kb-accounts-guide select {
  font-family: Arial, "Segoe UI", sans-serif !important;
}

.kb-accounts-guide h1 {
  font-size: clamp(48px, 6vw, 78px) !important;
  line-height: .98 !important;
  letter-spacing: 0 !important;
  margin: 0 0 22px !important;
}

.kb-accounts-guide h2 {
  font-size: clamp(30px, 3vw, 40px) !important;
  line-height: 1.1 !important;
  margin: 0 0 22px !important;
}

.kb-accounts-guide h3 {
  font-size: 21px !important;
  line-height: 1.25 !important;
  margin: 0 0 10px !important;
}

.kb-accounts-guide p {
  line-height: 1.55 !important;
}

.kb-accounts-guide section {
  margin: 64px 0 !important;
}

.kb-accounts-guide .levels,
.kb-accounts-guide .field-grid {
  align-items: stretch;
  gap: 20px !important;
}

.kb-accounts-guide .level,
.kb-accounts-guide .field-card {
  min-width: 0;
  padding: 28px !important;
}

.kb-accounts-guide .level {
  min-height: 190px;
}

.kb-accounts-guide .field-card {
  min-height: 260px;
}

.kb-accounts-guide .section-lead {
  margin: 0 0 28px !important;
}

.kb-accounts-guide .tag {
  line-height: 1.2 !important;
  white-space: normal;
}

@media (max-width: 760px) {
  .kb-accounts-guide h1 {
    font-size: 48px !important;
  }

  .kb-accounts-guide .level,
  .kb-accounts-guide .field-card {
    min-height: 0;
    padding: 22px !important;
  }
}