@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Space+Grotesk:wght@500;600;700&display=swap");
:root {
  --ink: #101114;
  --muted: #5c6370;
  --blue: #1f4fd8;
  --blue-soft: #edf3ff;
  --gold: #ffc107;
  --gold-ink: #191204;
  --line: #e2e5eb;
  --bg: #f3f4f6;
  --white: #fff;
  --shell: #0b0b0f;
  font-family: "DM Sans", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  font-synthesis: none;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
}
button,
input,
textarea,
select {
  font: inherit;
}
button,
a,
input,
textarea,
select {
  -webkit-tap-highlight-color: transparent;
}
button,
a {
  touch-action: manipulation;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  cursor: pointer;
}
button:disabled {
  opacity: 0.5;
  cursor: wait;
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid #ffc107;
  outline-offset: 3px;
}
h1,
h2,
h3 {
  font-family: "Space Grotesk", Manrope, Arial, sans-serif;
  letter-spacing: -0.04em;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
p {
  line-height: 1.7;
  color: var(--muted);
}
.rb-width {
  max-width: 1260px;
  margin: auto;
  padding-left: 44px;
  padding-right: 44px;
}
.topbar {
  min-height: 64px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 28px;
  gap: 20px;
  background: var(--shell);
  color: #f5f6fa;
  position: sticky;
  top: 0;
  z-index: 20;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}
.brand img {
  width: 32px;
  height: 32px;
  border-radius: 8px;
}
.brand span {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.brand small {
  display: block;
  font-size: 10px;
  letter-spacing: 0.08em;
  font-weight: 600;
  color: var(--gold);
  margin-top: 1px;
  text-transform: uppercase;
}
.topbar nav {
  display: flex;
  gap: 22px;
  font-size: 14px;
  font-weight: 500;
  margin-left: auto;
}
.topbar nav a {
  padding: 8px 0;
  color: #b4b8c4;
}
.topbar nav a:hover {
  color: #fff;
}
.topbar nav .active {
  color: var(--gold);
  box-shadow: inset 0 -2px 0 var(--gold);
}
.local-notice {
  display: none;
  background: #fff8e8;
  color: #6b5420;
  padding: 8px 20px;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
}
.local-notice.is-local,
.local-notice:not([hidden]).is-local {
  display: block;
}
.local-notice[hidden] {
  display: none !important;
}
.local-notice span {
  font-weight: 400;
  margin-left: 10px;
}
.button {
  border: 1px solid var(--gold);
  border-radius: 999px;
  background: var(--gold);
  color: var(--gold-ink);
  padding: 13px 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  white-space: nowrap;
  box-shadow: 0 8px 22px rgba(255, 193, 7, 0.28);
}
.button:hover {
  background: #ffd23f;
}
.button.secondary {
  background: #fff;
  border-color: var(--line);
  color: var(--ink);
  box-shadow: none;
}
.button.secondary:hover {
  background: #fff;
  border-color: #c5c9d2;
}
.topbar .button.secondary {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--gold-ink);
}
.topbar .button.secondary:hover {
  background: #ffd23f;
}
.button.danger {
  box-shadow: none;
}
.button.small {
  padding: 10px 16px;
  font-size: 13px;
}
.button.danger {
  background: #fff1f1;
  color: #a92e36;
  border-color: #f1cace;
}
.text-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}
.text-link:hover {
  color: var(--blue);
}
.actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.hero {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 60px;
  align-items: center;
  padding-top: 65px;
  padding-bottom: 65px;
  min-height: 620px;
}
.eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--blue);
  margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(36px, 4vw, 55px);
  font-weight: 700;
  line-height: 1.13;
  margin-bottom: 25px;
  letter-spacing: -0.055em;
}
.hero h1 em {
  font-style: normal;
  color: var(--blue);
}
.hero > div > p {
  font-size: 16px;
  max-width: 480px;
  margin-bottom: 28px;
}
.hero-notes {
  display: flex;
  gap: 19px;
  margin-top: 24px;
  font-size: 12px;
  color: var(--muted);
}
.hero-preview {
  background: #eaf0fa;
  position: relative;
  padding: 20px 46px 35px;
  border-radius: 3px;
  min-height: 485px;
  background-image: radial-gradient(#c8d5eb 0.7px, transparent 0.7px);
  background-size: 15px 15px;
}
.paper-title {
  display: flex;
  justify-content: space-between;
  font-size: 9px;
  letter-spacing: 0.1em;
  color: #647b99;
  padding-bottom: 18px;
}
.hero-paper {
  background: #fff;
  padding: 36px 31px 25px;
  box-shadow: 0 14px 36px #29476b1a;
  transform: rotate(-3deg);
  min-height: 405px;
  color: #2e4051;
}
.sample-name {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.06em;
}
.sample-role {
  font-size: 11px;
  margin-top: 6px;
}
.hero-paper .sample-contact {
  font-size: 8px;
  border-bottom: 1px solid #bccadd;
  padding-bottom: 14px;
}
.hero-paper h3 {
  font: 700 9px Arial;
  letter-spacing: 0.12em;
  border-bottom: 1px solid #d8e0ea;
  padding-bottom: 5px;
  margin: 16px 0 7px;
}
.hero-paper p,
.hero-paper li {
  font-size: 8px;
  line-height: 1.6;
  color: #526271;
  margin-bottom: 4px;
}
.hero-paper strong {
  font-size: 9px;
}
.hero-paper ul {
  padding-left: 15px;
  margin: 5px 0;
}
.preview-caption {
  position: absolute;
  bottom: 13px;
  right: -18px;
  background: white;
  border: 1px solid var(--line);
  box-shadow: 0 6px 24px #112b4510;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 8px;
}
.preview-caption small {
  display: block;
  font-size: 10px;
  color: var(--muted);
  font-weight: 400;
  margin-top: 4px;
}
.check-icon {
  background: #eaf6f0;
  color: #1b8259;
  border-radius: 50%;
  padding: 6px 9px;
}
.benefit-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: center;
  gap: 0;
  padding: 25px 30px;
  background: #fcfdff;
}
.benefit-strip > div {
  padding: 0 55px;
  border-right: 1px solid var(--line);
}
.benefit-strip > div:last-child {
  border: 0;
}
.benefit-strip strong {
  font: 700 20px Manrope;
  display: block;
  margin-bottom: 5px;
}
.benefit-strip span {
  font-size: 12px;
  color: var(--muted);
}
.section {
  padding-top: 64px;
  padding-bottom: 64px;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  margin-bottom: 30px;
}
.section-heading .eyebrow {
  margin-bottom: 13px;
}
.section-heading h2,
.steps-section h2,
.final-call h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.22;
}
.section-heading p {
  font-size: 14px;
  margin: 0;
}
.template-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}
.template-card {
  min-width: 0;
}
.template-image {
  width: 100%;
  aspect-ratio: 0.78;
  background: linear-gradient(180deg, #eef2f7, #e4e9f0);
  border: 1px solid #e4e9f0;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  padding: 22px 26px 18px;
  box-shadow: 0 10px 28px #1218200d;
}
.template-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 5px 10px #24344a14);
  transition: transform 0.25s;
}
.template-image:hover img {
  transform: translateY(-4px);
}
.template-badge {
  position: absolute;
  right: 12px;
  top: 12px;
  background: #fff;
  padding: 5px 9px;
  border: 1px solid var(--line);
  border-radius: 5px;
  font-size: 10px;
  font-weight: 700;
  z-index: 1;
}
.template-badge.premium {
  color: #926124;
  background: #fffbef;
  border-color: #eadcbe;
}
.template-info {
  display: flex;
  justify-content: space-between;
  align-items: start;
  padding: 16px 2px;
  gap: 12px;
}
.template-info h3 {
  font-size: 16px;
  margin: 0 0 5px;
  letter-spacing: -0.02em;
}
.template-info p {
  font-size: 12px;
  margin: 0;
}
.template-use {
  border: 1px solid var(--line);
  background: white;
  border-radius: 6px;
  width: 32px;
  height: 32px;
  font-size: 20px;
}
.template-use:hover {
  color: var(--blue);
  border-color: var(--blue);
}
.steps-section {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  padding-top: 55px;
  padding-bottom: 55px;
  border-top: 1px solid var(--line);
}
.steps-section h2 {
  font-size: 36px;
  margin-bottom: 26px;
}
.steps {
  list-style: none;
  margin: 0;
  padding: 0;
}
.steps li {
  display: flex;
  gap: 24px;
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
}
.steps li:first-child {
  padding-top: 0;
}
.steps li:last-child {
  border: 0;
}
.steps li > span {
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
  padding-top: 4px;
}
.steps h3 {
  font-size: 17px;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}
.steps p {
  font-size: 14px;
  margin: 0;
}
.final-call {
  margin: 30px auto 50px;
  background: #edf3ff;
  border-radius: 12px;
  padding-top: 40px;
  padding-bottom: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.final-call .eyebrow {
  font-size: 10px;
  margin-bottom: 12px;
}
.final-call p {
  margin: 0;
  font-size: 14px;
}
.footer {
  border-top: 0;
  background: var(--shell);
  color: #9aa0ae;
  max-width: none;
  padding: 28px 44px 36px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 13px;
}
.footer a:hover {
  color: var(--gold);
}
.footer > div {
  display: flex;
  gap: 24px;
}
.page-head {
  padding-top: 28px;
  padding-bottom: 16px;
}
.page-head h1 {
  font-size: 28px;
  margin: 0 0 8px;
  letter-spacing: -0.04em;
}
.page-head p {
  margin: 0;
  font-size: 15px;
}
.subnav {
  display: flex;
  gap: 22px;
  padding: 12px 28px;
  border-bottom: 1px solid var(--line);
  background: #fff;
  font-size: 13px;
  overflow: auto;
  white-space: nowrap;
}
.subnav .active {
  color: var(--gold-ink);
  font-weight: 700;
  box-shadow: inset 0 -2px 0 var(--gold);
}
.filters {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  margin: 10px 0 24px;
}
.chips {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
}
.chip {
  padding: 9px 13px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 6px;
  font-size: 12px;
  white-space: nowrap;
}
.chip.active {
  background: var(--ink);
  color: white;
  border-color: var(--ink);
}
input,
select,
textarea {
  border: 1px solid #d6dfe8;
  border-radius: 7px;
  background: white;
  color: var(--ink);
  padding: 12px 13px;
  width: 100%;
  font-size: 14px;
  line-height: 1.4;
}
input[type="checkbox"] {
  width: auto;
  padding: 0;
}
textarea {
  resize: vertical;
  min-height: 95px;
}
label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 7px;
}
.field {
  margin-bottom: 19px;
}
.field small {
  color: var(--muted);
  font-size: 11px;
  display: block;
  margin-top: 6px;
}
.filter-search {
  display: flex;
  gap: 8px;
  margin: 20px 0;
}
.filter-search input {
  max-width: 340px;
}
.filter-search select {
  width: 150px;
}
.count {
  font-size: 12px;
  color: var(--muted);
  margin: 15px 0 24px;
}
.page-bg {
  background: transparent;
  min-height: 70vh;
}
.empty {
  padding: 60px 25px;
  text-align: center;
  border: 1px dashed #c9d4e1;
  border-radius: 12px;
  background: white;
}
.empty h2 {
  font-size: 25px;
}
.empty p {
  font-size: 14px;
}
.card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 28px;
}
.auth-wrap {
  max-width: 470px;
  margin: 50px auto 70px;
  padding: 0 20px;
}
.auth-wrap h1 {
  font-size: 28px;
}
.auth-wrap p {
  font-size: 14px;
}
.auth-wrap .button {
  width: 100%;
}
.divider {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  color: var(--muted);
  margin: 21px 0;
}
.divider:before,
.divider:after {
  content: "";
  height: 1px;
  background: var(--line);
  flex: 1;
}
.error {
  color: #aa3444;
  font-size: 13px;
  background: #fff0f2;
  padding: 12px;
  border-radius: 6px;
  margin-bottom: 16px;
}
.hint {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.6;
}
.auth-switch {
  border: 0;
  background: none;
  color: var(--blue);
  font-size: 13px;
  padding: 14px 0;
}
.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  padding-bottom: 50px;
}
.resume-card {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: white;
  padding: 25px;
}
.resume-card h2 {
  font-size: 20px;
  margin-bottom: 8px;
  overflow-wrap: anywhere;
}
.resume-card p {
  font-size: 12px;
}
.resume-card .actions {
  gap: 8px;
  margin-top: 25px;
  flex-wrap: wrap;
}
.document-icon {
  font-size: 30px;
  background: var(--blue-soft);
  width: 52px;
  height: 60px;
  border-radius: 7px;
  display: grid;
  place-items: center;
  color: var(--blue);
  margin-bottom: 24px;
}
.icon-button {
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 8px 10px;
  font-size: 12px;
  color: var(--muted);
}
.icon-button:hover {
  color: var(--blue);
  background: var(--blue-soft);
}
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 850px;
  margin: 15px auto 50px;
}
.price-card {
  padding: 35px;
}
.price-card.pro {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px #eaf0ff;
}
.price {
  font: 700 48px Manrope;
  margin: 20px 0;
}
.price small {
  font: 400 13px "DM Sans";
  color: var(--muted);
}
.price-card ul {
  padding: 0;
  list-style: none;
  font-size: 14px;
  line-height: 2.5;
  margin-bottom: 28px;
}
.price-card li:before {
  content: "✓";
  margin-right: 12px;
  color: var(--blue);
}
.price-card .button {
  width: 100%;
}
.account-layout {
  max-width: 800px;
  padding-bottom: 45px;
}
.account-layout .card {
  margin-bottom: 20px;
}
.account-layout h2 {
  font-size: 21px;
}
.purchase {
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  gap: 15px;
}
.status-card {
  max-width: 580px;
  margin: 50px auto;
  text-align: center;
}
.status-symbol {
  font-size: 35px;
  color: var(--blue);
  background: var(--blue-soft);
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  margin: 0 auto 20px;
  border-radius: 50%;
}
.editor-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 28px;
  border-bottom: 1px solid var(--line);
  gap: 16px;
  background: white;
}
.editor-toolbar input {
  font-size: 17px;
  font-weight: 600;
  border-color: transparent;
  max-width: 290px;
  padding: 5px;
}
.save-status {
  font-size: 11px;
  color: var(--muted);
  padding-left: 6px;
}
.editor-layout {
  display: grid;
  grid-template-columns: 208px 380px minmax(0, 1fr);
  height: calc(100vh - 207px);
  min-height: 570px;
}
.section-nav {
  background: #fbfcfe;
  border-right: 1px solid var(--line);
  padding: 23px 14px;
  overflow: auto;
}
.section-nav > p {
  font-size: 10px;
  letter-spacing: 0.12em;
  margin-left: 12px;
  font-weight: 700;
}
.section-nav button {
  display: flex;
  align-items: center;
  gap: 11px;
  width: 100%;
  padding: 13px 10px;
  border: 0;
  background: transparent;
  text-align: left;
  font-size: 12px;
  border-radius: 6px;
  color: #5b6c7e;
  margin-bottom: 3px;
}
.section-nav button.active {
  color: var(--blue);
  background: #eaf1ff;
  font-weight: 600;
}
.section-nav .num {
  font-size: 10px;
  opacity: 0.7;
}
.section-nav .settings-button {
  margin-top: 20px;
  border-top: 1px solid var(--line);
  border-radius: 0;
}
.edit-panel {
  padding: 28px 26px;
  overflow: auto;
  background: white;
  border-right: 1px solid var(--line);
}
.edit-panel h2 {
  font-size: 22px;
  margin-bottom: 7px;
}
.edit-panel > p {
  font-size: 12px;
  margin-bottom: 26px;
}
.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 14px;
}
.field-grid .full {
  grid-column: 1/-1;
}
.entry-form {
  border: 1px solid var(--line);
  padding: 18px;
  border-radius: 8px;
  margin: 20px 0;
}
.entry-form .field {
  margin-bottom: 14px;
}
.entry-form-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 12px;
}
.preview-panel {
  background: #e8edf3;
  overflow: auto;
  padding: 18px 26px 45px;
  text-align: center;
}
.preview-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  color: #5e7186;
  margin-bottom: 18px;
}
.preview-toolbar select {
  width: auto;
  font-size: 11px;
  padding: 6px;
  background: transparent;
  border-color: #ccd6e1;
}
.preview-canvas {
  width: 100%;
  overflow: hidden;
  position: relative;
  min-height: 550px;
}
.preview-canvas iframe {
  border: 0;
  background: white;
  transform-origin: top left;
  position: absolute;
  left: 50%;
  box-shadow: 0 3px 20px #25334a17;
}
.preview-canvas img {
  width: 100%;
  max-width: 794px;
  box-shadow: 0 3px 20px #25334a17;
}
.preview-note {
  font-size: 10px;
  margin-top: 13px;
  color: #66788a;
}
.add-entry {
  border: 1px dashed #bdcfe9;
  color: var(--blue);
  background: #f6f9ff;
  border-radius: 7px;
  padding: 13px;
  width: 100%;
  font-size: 13px;
}
.mobile-editor-tabs {
  display: none;
}
.editor-footer {
  border-top: 1px solid var(--line);
  padding: 10px 28px;
  font-size: 11px;
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  background: white;
}
.template-dialog {
  width: min(1020px, 94vw);
}
dialog {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 28px;
  width: min(540px, 94vw);
  max-height: 90vh;
  color: var(--ink);
  box-shadow: 0 25px 80px #10253d3b;
}
dialog::backdrop {
  background: #11223880;
  backdrop-filter: blur(3px);
}
.dialog-head {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 20px;
  margin-bottom: 24px;
}
.dialog-head h2 {
  margin: 0;
  font-size: 23px;
}
.dialog-close {
  border: 0;
  background: #edf1f6;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  font-size: 18px;
}
.dialog-body > p {
  font-size: 14px;
}
.dialog-templates {
  grid-template-columns: repeat(3, 1fr);
}
.dialog-templates .template-image {
  padding: 18px;
}
.warning {
  background: #fff8e9;
  border: 1px solid #eee0bb;
  border-radius: 8px;
  padding: 15px;
  color: #7f5d26;
  font-size: 13px;
  line-height: 1.6;
  margin: 18px 0;
}
#toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--ink);
  color: white;
  padding: 14px 24px;
  border-radius: 8px;
  font-size: 13px;
  box-shadow: 0 5px 20px #1233;
  z-index: 20;
  max-width: 90vw;
  display: none;
}
#toast.visible {
  display: block;
}
.skip {
  position: fixed;
  left: 10px;
  top: -100px;
  background: white;
  padding: 15px;
  z-index: 100;
}
.skip:focus {
  top: 10px;
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.admin-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 30px;
  padding-bottom: 60px;
}
.admin-list {
  max-height: 700px;
  overflow: auto;
}
.admin-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
  gap: 15px;
  font-size: 13px;
}
.admin-row small {
  display: block;
  color: var(--muted);
  margin-top: 4px;
}
.loading {
  padding: 60px;
  text-align: center;
  color: var(--muted);
}
@media (min-width: 1500px) {
  .editor-layout {
    grid-template-columns: 225px 450px 1fr;
  }
  .preview-canvas {
    max-width: 700px;
    margin: auto;
  }
}
@media (max-width: 1100px) {
  .topbar {
    padding: 0 25px;
  }
  .topbar nav {
    gap: 20px;
  }
  .rb-width {
    padding-left: 30px;
    padding-right: 30px;
  }
  .hero {
    gap: 35px;
  }
  .hero-preview {
    padding: 20px 30px 35px;
  }
  .benefit-strip > div {
    padding: 0 32px;
  }
  .editor-layout {
    grid-template-columns: 170px 330px minmax(0, 1fr);
  }
  .edit-panel {
    padding: 25px 20px;
  }
  .section-nav {
    padding: 20px 7px;
  }
  .section-nav button {
    font-size: 11px;
  }
  .preview-panel {
    padding: 18px 16px;
  }
  .hero h1 {
    font-size: 43px;
  }
  .template-image {
    padding: 22px;
  }
  .editor-toolbar .button {
    padding: 10px 12px;
    font-size: 12px;
  }
  .steps-section {
    gap: 50px;
  }
}
@media (max-width: 800px) {
  .topbar {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    height: auto;
    min-height: 0;
    padding: 10px 16px 0;
    gap: 8px 12px;
  }
  .topbar .brand {
    grid-column: 1;
    grid-row: 1;
  }
  .topbar #account-nav {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
  }
  .topbar nav {
    display: flex;
    grid-column: 1 / -1;
    grid-row: 2;
    gap: 16px;
    margin: 0;
    overflow: auto;
    font-size: 13px;
  }
  .topbar nav a {
    padding: 8px 0 10px;
    flex: 0 0 auto;
  }
  .brand span {
    font-size: 13px;
  }
  .brand img {
    width: 30px;
    height: 30px;
  }
  .local-notice {
    font-size: 10px;
    padding: 8px;
  }
  .local-notice span {
    font-size: 10px;
    margin-left: 7px;
  }
  .hero {
    grid-template-columns: 1fr;
    gap: 35px;
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .hero h1 {
    font-size: 43px;
  }
  .hero-preview {
    max-width: 470px;
    width: 100%;
    margin: auto;
  }
  .hero > div > p {
    max-width: 580px;
  }
  .hero-notes {
    font-size: 11px;
    gap: 12px;
  }
  .benefit-strip {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    padding: 25px;
  }
  .benefit-strip > div {
    padding: 0 20px;
    border: 0;
  }
  .benefit-strip strong {
    font-size: 19px;
  }
  .section {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .section-heading h2 {
    font-size: 27px;
  }
  .section-heading {
    align-items: start;
  }
  .section-heading > .text-link {
    white-space: nowrap;
    font-size: 12px;
    margin-top: 30px;
  }
  .template-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }
  .featured .template-card:last-child {
    display: none;
  }
  .template-image {
    padding: 20px;
  }
  .steps-section {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .final-call {
    border-radius: 0;
    margin: 20px 0;
    display: block;
  }
  .final-call .button {
    margin-top: 20px;
  }
  .footer {
    font-size: 11px;
    flex-wrap: wrap;
  }
  .dashboard-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .subnav {
    padding: 14px 24px;
  }
  .editor-toolbar {
    padding: 12px 16px;
    align-items: start;
  }
  .editor-toolbar input {
    font-size: 15px;
    max-width: 210px;
  }
  .editor-toolbar .actions {
    gap: 6px;
  }
  .editor-toolbar .button {
    font-size: 11px;
    padding: 9px;
  }
  .editor-layout {
    display: grid;
    grid-template-columns: 155px 1fr;
    height: calc(100vh - 260px);
    min-height: 500px;
  }
  .preview-panel {
    display: none;
    grid-column: 1/-1;
  }
  .editor-layout.show-preview .preview-panel {
    display: block;
  }
  .editor-layout.show-preview .section-nav,
  .editor-layout.show-preview .edit-panel {
    display: none;
  }
  .mobile-editor-tabs {
    display: flex;
    padding: 8px 16px;
    gap: 8px;
    border-bottom: 1px solid var(--line);
  }
  .mobile-editor-tabs button {
    flex: 1;
  }
  .preview-canvas {
    max-width: 550px;
    margin: auto;
  }
  .dialog-templates {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .admin-grid {
    grid-template-columns: 1fr;
  }
  .admin-list {
    max-height: none;
  }
  .pricing-grid {
    gap: 20px;
  }
  .price-card {
    padding: 25px;
  }
  .filter-search {
    margin-top: 5px;
  }
}
@media (max-width: 480px) {
  .rb-width {
    padding-left: 20px;
    padding-right: 20px;
  }
  .hero h1 {
    font-size: 37px;
  }
  .hero-preview {
    min-height: 440px;
    padding: 18px 27px 28px;
  }
  .hero-paper {
    padding: 26px 25px;
    min-height: 365px;
  }
  .preview-caption {
    right: -5px;
    font-size: 10px;
  }
  .sample-name {
    font-size: 19px;
  }
  .hero-paper h3 {
    margin-top: 12px;
  }
  .hero .actions {
    gap: 15px;
  }
  .hero .actions .text-link {
    font-size: 12px;
  }
  .hero-notes {
    gap: 9px;
    font-size: 10px;
  }
  .section-heading {
    display: block;
  }
  .section-heading > .text-link {
    display: inline-block;
    margin-top: 16px;
  }
  .template-grid {
    gap: 14px;
  }
  .template-image {
    padding: 14px 13px;
  }
  .template-badge {
    font-size: 9px;
    top: 7px;
    right: 7px;
    padding: 3px 6px;
  }
  .template-info h3 {
    font-size: 13px;
  }
  .template-info p {
    font-size: 10px;
  }
  .template-use {
    width: 27px;
    height: 27px;
    font-size: 17px;
  }
  .template-info {
    gap: 5px;
  }
  .page-head h1 {
    font-size: 30px;
  }
  .page-head .actions {
    gap: 14px;
  }
  .pricing-grid,
  .dashboard-grid {
    grid-template-columns: 1fr;
  }
  .page-head .section-heading {
    display: block;
  }
  .filters {
    display: block;
  }
  .chips {
    gap: 6px;
  }
  .chip {
    padding: 8px 10px;
    font-size: 11px;
  }
  .field-grid {
    display: block;
  }
  .editor-layout {
    grid-template-columns: 125px 1fr;
  }
  .section-nav button {
    font-size: 10px;
    gap: 5px;
    padding: 12px 6px;
  }
  .section-nav .num {
    font-size: 9px;
  }
  .edit-panel {
    padding: 22px 15px;
  }
  .edit-panel h2 {
    font-size: 19px;
  }
  .edit-panel input,
  .edit-panel textarea,
  .edit-panel select {
    font-size: 13px;
  }
  .editor-toolbar {
    flex-wrap: wrap;
  }
  .editor-toolbar .actions {
    width: 100%;
    justify-content: space-between;
  }
  .editor-layout {
    height: calc(100vh - 305px);
  }
  .entry-form {
    padding: 12px;
  }
  .editor-footer {
    padding: 10px;
    font-size: 9px;
  }
  .editor-footer span:last-child {
    display: none;
  }
  .topbar .button {
    font-size: 11px;
    padding: 9px 12px;
  }
  .final-call h2 {
    font-size: 27px;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}

body.career-tools-auth {
  background: transparent;
}
body.career-tools-auth .footer {
  display: none;
}
.auth-page {
  background: transparent;
  min-height: calc(100vh - 58px);
}
.auth-shell {
  max-width: 440px;
  margin: 0 auto;
  padding: 36px 20px 64px;
}
.auth-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px 28px 24px;
}
.auth-card h1 {
  font-size: 28px;
  letter-spacing: -0.045em;
  margin: 0 0 8px;
}
.auth-lead {
  font-size: 14px;
  line-height: 1.6;
  margin: 0 0 20px;
}
.auth-mode-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  padding: 4px;
  margin: 0 0 20px;
  background: var(--bg);
  border-radius: 10px;
}
.auth-mode-tabs button {
  border: 0;
  background: transparent;
  padding: 10px 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  border-radius: 8px;
}
.auth-mode-tabs button.active {
  background: #fff;
  color: var(--ink);
  box-shadow: 0 1px 3px #13263914;
}
.auth-google {
  width: 100%;
}
.auth-or {
  text-align: center;
  font-size: 12px;
  color: var(--muted);
  margin: 16px 0 14px;
  position: relative;
}
.auth-card .field {
  margin-bottom: 14px;
}
.auth-card .field small:empty {
  display: none;
}
.auth-card label {
  font-size: 13px;
  font-weight: 600;
  display: block;
  margin-bottom: 6px;
}
.auth-card input[type="email"],
.auth-card input[type="password"],
.auth-card input[type="text"],
.auth-card input:not([type]) {
  width: 100%;
  height: 46px;
  font-size: 14px;
  border-radius: 8px;
  border: 1px solid var(--line);
  padding: 0 12px;
  background: #fff;
}
.password-field {
  position: relative;
}
.password-field input {
  padding-right: 64px;
}
.password-field button {
  position: absolute;
  right: 10px;
  top: 0;
  height: 46px;
  border: 0;
  background: none;
  font-size: 12px;
  color: #4e637a;
  padding: 0 4px;
}
.auth-form-options {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 20px;
  margin: 4px 0 16px;
}
.check-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  margin: 0;
  font-weight: 400;
  color: var(--muted);
  flex-wrap: wrap;
  line-height: 1.45;
}
.check-label a {
  color: #9a7400;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.auth-card .check-label input {
  width: 15px;
  height: 15px;
  flex: 0 0 15px;
  accent-color: var(--blue);
  margin: 0;
}
.auth-help-link {
  font-size: 13px;
  color: var(--blue);
  background: none;
  border: 0;
  white-space: nowrap;
  padding: 0;
}
.auth-primary {
  width: 100%;
  justify-content: center;
  padding: 13px 20px;
  font-size: 14px;
  min-height: 46px;
}
.auth-card .auth-switch {
  display: block;
  width: 100%;
  text-align: center;
  margin-top: 8px;
}
.auth-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-size: 12px;
  color: var(--muted);
  line-height: 1.55;
}
.auth-note p {
  margin: 0;
  font-size: 12px;
}
.auth-local-tag {
  white-space: nowrap;
  font-size: 10px;
  letter-spacing: 0.06em;
  background: #fff8e8;
  color: #6b5420;
  border-radius: 4px;
  padding: 4px 6px;
  font-weight: 700;
}
.preview-tools {
  margin-top: 14px;
  font-size: 12px;
  color: #687d90;
}
.preview-tools summary {
  cursor: pointer;
  font-size: 12px;
}
.preview-tools p {
  font-size: 12px;
  margin: 10px 0;
}
.auth-bottom-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin-top: 18px;
  color: #62768a;
  font-size: 12px;
}
.auth-bottom-links a:hover {
  color: var(--blue);
}
.auth-card #auth-error {
  background: #fff1f1;
  color: #a92e36;
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 13px;
  margin-bottom: 14px;
}
.auth-card #auth-error:empty {
  display: none;
}
@media (max-width: 480px) {
  .auth-shell {
    padding: 20px 16px 48px;
  }
  .auth-card {
    padding: 22px 18px 18px;
    border-radius: 14px;
  }
}
.continue-draft {
  padding: 30px;
  background: #eaf1fd;
  border: 1px solid #cddcf3;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 23px;
  margin: 0 0 37px;
}
.continue-icon {
  font-size: 40px;
  line-height: 1;
  color: var(--blue);
  background: #fff;
  border: 1px solid #d8e4f4;
  border-radius: 9px;
  padding: 15px 18px;
}
.continue-draft .eyebrow {
  margin-bottom: 9px;
  font-size: 10px;
}
.continue-draft h2 {
  font-size: 24px;
  margin: 0 0 8px;
  overflow-wrap: anywhere;
}
.continue-draft p {
  font-size: 12px;
  margin: 0;
}
.continue-draft > div:nth-child(2) {
  flex: 1;
  min-width: 0;
}
.dashboard-section-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.dashboard-section-title h2 {
  font-size: 20px;
  margin: 0;
}
.dashboard-section-title > span {
  font-size: 12px;
  color: var(--muted);
}
.member-table-wrap {
  overflow: auto;
  margin-bottom: 45px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
}
.member-table {
  border-collapse: collapse;
  width: 100%;
  font-size: 13px;
  text-align: left;
  white-space: nowrap;
}
.member-table th {
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #677c8f;
  background: #f7f9fc;
  padding: 17px 20px;
}
.member-table td {
  padding: 17px 20px;
  border-top: 1px solid var(--line);
}
.member-table small {
  display: block;
  color: var(--muted);
  font-size: 11px;
  margin-top: 5px;
}
.member-role {
  background: #edf2f7;
  padding: 5px 8px;
  border-radius: 4px;
  font-size: 11px;
}
.studio-tag {
  font-size: 10px;
  color: var(--blue);
  font-weight: 600;
  margin-top: 5px;
  display: block;
}
@media (max-width: 1050px) {
  .continue-draft {
    padding: 24px;
    gap: 16px;
  }
  .continue-draft h2 {
    font-size: 21px;
  }
}
@media (max-width: 760px) {
  .continue-draft {
    flex-wrap: wrap;
  }
  .continue-draft > .button {
    width: 100%;
  }
  .continue-icon {
    font-size: 30px;
    padding: 13px;
  }
  .continue-draft h2 {
    font-size: 20px;
  }
}

/* Career Tools: on-device resume analysis workspace. */
.career-ats {
  --ats-blue: #2563eb; --ats-blue-ink: #1d4ed8; --ats-soft: #eff6ff;
  --ats-ink: #132639; --ats-muted: #647383; --ats-line: #e0e7ed;
  --ats-bg: #f6f8fb; --ats-card: #fff; --ats-track: #e2e8f0;
  --ats-error: #b91c1c; --ats-shadow: 0 8px 30px #13263908;
  --display: "Manrope", Arial, sans-serif;
  scroll-margin-top: 100px;
}
.career-ats .section-heading p { max-width: 700px; }
.career-ats .ats-layout { margin-top: 24px; }
.career-ats .ats-head { max-width: none; }
.career-ats-guide { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; margin: 32px 0; }
.career-ats-guide article { padding: 24px; background: var(--bg); border: 1px solid var(--line); border-radius: 16px; }
.career-ats-guide h3 { font-size: 19px; margin: 12px 0; }
.career-ats-guide p, .career-ats-faq p { color: var(--muted); font-size: 15px; line-height: 1.7; }
.career-ats-faq { border: 1px solid var(--line); border-radius: 16px; padding: 24px; }
.career-ats-faq h3 { margin: 0 0 12px; }
.career-ats-faq details { border-top: 1px solid var(--line); padding: 16px 0; }
.career-ats-faq summary { cursor: pointer; font-weight: 700; line-height: 1.5; }
.career-ats-faq p { max-width: 850px; margin-bottom: 0; }
@media (max-width: 760px) { .career-ats-guide { grid-template-columns: 1fr; } }

body.career-tools-ats .final-call .actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
body.career-tools-ats #ats-tool {
  scroll-margin-top: 12px;
}

body.career-tools {
  background: var(--bg);
  color: var(--ink);
  min-height: 100vh;
}
body.career-tools .ct-kicker {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 12px;
}
.ct-stage {
  padding: 48px 0 20px;
}
.ct-stage-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: 40px;
  align-items: center;
}
.ct-stage-copy h1,
.ct-page-intro h1 {
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.05em;
  margin: 0 0 16px;
  max-width: 14ch;
  text-wrap: balance;
}
.ct-lede,
.ct-page-intro > p {
  font-size: 18px;
  line-height: 1.65;
  max-width: 38rem;
  margin: 0 0 24px;
  color: var(--muted);
}
.ct-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-bottom: 22px;
}
.ct-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.ct-pills li {
  font-size: 12px;
  font-weight: 600;
  color: #3f4d5c;
  background: #fff;
  border: 1px solid rgba(18, 24, 32, 0.08);
  border-radius: 999px;
  padding: 6px 12px;
}
.ct-stack {
  position: relative;
  height: 430px;
  max-width: 430px;
  margin-left: auto;
}
.ct-sheet {
  position: absolute;
  width: 58%;
  min-height: 300px;
  margin: 0;
  background: #fff;
  border-radius: 10px;
  padding: 10px 10px 12px;
  box-shadow: 0 22px 50px rgba(18, 24, 32, 0.14);
  border: 1px solid rgba(18, 24, 32, 0.06);
}
.ct-sheet img {
  display: block;
  width: 100%;
  height: auto;
}
.ct-sheet-0 {
  left: 4%;
  top: 36px;
  transform: rotate(-9deg);
  z-index: 1;
}
.ct-sheet-1 {
  left: 24%;
  top: 8px;
  transform: rotate(1.5deg);
  z-index: 2;
}
.ct-sheet-2 {
  left: 42%;
  top: 52px;
  transform: rotate(8deg);
  z-index: 3;
}
.ct-paths {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  padding: 12px 44px 8px;
  max-width: 1260px;
  margin: 0 auto 28px;
}
.ct-path {
  display: flex;
  flex-direction: column;
  min-height: 240px;
  padding: 26px 26px 22px;
  background: #fff;
  border: 1px solid rgba(14, 23, 38, 0.06);
  border-radius: 20px;
  box-shadow: 0 1px 2px rgba(14, 23, 38, 0.04), 0 18px 40px rgba(14, 23, 38, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.ct-path:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 44px rgba(18, 24, 32, 0.08);
  border-color: #d5deee;
}
.ct-path-mark {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 13px;
  margin-bottom: 16px;
  background: #edf2ff;
  color: var(--blue);
}
.ct-path:nth-child(2) .ct-path-mark {
  background: #edf2ff;
  color: var(--gold);
}
.ct-path h2 {
  font-size: 24px;
  margin: 0 0 8px;
}
.ct-path p {
  font-size: 15px;
  margin: 0 0 16px;
}
.ct-path ul {
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
  font-size: 14px;
  color: var(--muted);
  display: grid;
  gap: 6px;
}
.ct-path ul li::before {
  content: "– ";
  color: #9aa7b5;
}
.ct-path .ct-tool-go {
  margin-top: auto;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
}
.ct-path:hover .ct-tool-go {
  color: var(--blue);
}
.ct-band {
  padding: 56px 0;
}
.ct-band h2 {
  font-size: clamp(26px, 3vw, 34px);
  margin: 0 0 8px;
}
.ct-how {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: how;
}
.ct-how li {
  padding: 8px 28px 8px 0;
  border-right: 1px solid var(--line);
}
.ct-how li:last-child {
  border-right: 0;
  padding-right: 0;
  padding-left: 28px;
}
.ct-how li:nth-child(2) {
  padding-left: 28px;
}
.ct-how span {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 10px;
}
.ct-how h3 {
  font-size: 20px;
  margin: 0 0 8px;
}
.ct-how p {
  font-size: 15px;
  margin: 0;
  max-width: 32ch;
}
.ct-split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
  padding: 28px 32px;
  background: #121820;
  color: #f4f1ea;
  border-radius: 24px;
  margin: 12px 0 48px;
}
.ct-split h2 {
  color: #fff;
  font-size: 30px;
  margin: 0 0 10px;
}
.ct-split p {
  color: #c5cdd6;
  margin: 0 0 20px;
  font-size: 15px;
}
.ct-split ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
  font-size: 14px;
  color: #d7dde4;
}
.ct-split .button {
  background: var(--gold);
  color: var(--gold-ink);
  border-color: var(--gold);
  box-shadow: 0 8px 22px rgba(255, 193, 7, 0.22);
}
.ct-split .button:hover {
  background: #ffd23f;
}
.ct-page-intro {
  padding-top: 36px;
  padding-bottom: 12px;
}
body.career-tools .section {
  padding-top: 28px;
  padding-bottom: 48px;
}
body.career-tools .ats-actions {
  position: static;
  background: none;
}
@media (max-width: 960px) {
  .ct-stage-inner,
  .ct-paths,
  .ct-split {
    grid-template-columns: 1fr;
  }
  .ct-stack {
    height: 340px;
    margin: 0 auto;
  }
  .ct-stage-copy h1,
  .ct-page-intro h1 {
    max-width: none;
  }
}
@media (max-width: 760px) {
  .ct-stage {
    padding-top: 28px;
  }
  .ct-stage-art {
    overflow: visible;
    max-height: none;
    display: flex;
    justify-content: center;
  }
  .ct-stack {
    height: 280px;
    width: min(340px, 100%);
    margin: 0 auto;
  }
  .ct-sheet {
    min-height: 210px;
    width: 48%;
  }
  .ct-paths {
    padding: 0 16px;
    gap: 12px;
  }
  .ct-how {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .ct-how li,
  .ct-how li:nth-child(2),
  .ct-how li:last-child {
    border: 0;
    padding: 0;
  }
  .ct-split {
    padding: 24px 20px;
    margin-bottom: 32px;
  }
}

.ats-app-head {
  padding: 28px 44px 8px;
}
.ats-app-head h1 {
  font-size: clamp(32px, 4vw, 44px);
  margin: 0 0 10px;
  max-width: none;
}
.ats-app-head p {
  max-width: 40rem;
  margin: 0;
  font-size: 16px;
}
body.career-tools-ats .ats-check {
  background: var(--gold);
  color: var(--gold-ink);
  box-shadow: 0 8px 22px rgba(255, 193, 7, 0.28);
  border-radius: 999px;
  font-weight: 800;
}
body.career-tools-ats .ats-check:hover {
  background: #ffd23f;
}
body.career-tools-ats .ats-drop {
  border-color: #e8c547;
  background: #fffdf5;
}
body.career-tools-ats .ats-flow li.is-active {
  border-color: #f5d56a;
  background: #fffbeb;
  color: #7c5c00;
}
body.career-tools-ats .ats-flow li.is-active span {
  background: var(--gold);
  color: var(--gold-ink);
}
body.career-tools-ats .ats-layout,
body.career-tools-ats .ats-layout.is-scored {
  display: flex !important;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  grid-template-columns: none !important;
}
body.career-tools-ats .ats-layout.is-scored .ats-panel,
body.career-tools-ats .ats-layout.is-scored .ats-result {
  max-width: none !important;
  margin: 0 !important;
  width: 100% !important;
}
body.career-tools-ats .ats-panel {
  position: static;
  max-height: none;
  max-width: none !important;
  width: 100%;
  overflow: visible;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
}
body.career-tools-ats .ats-result {
  display: none !important;
  min-height: 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}
body.career-tools-ats .ats-result #ats-result-body {
  padding: 0;
}
body.career-tools-ats .ats-empty {
  min-height: 420px;
  height: auto;
  place-content: start;
  justify-items: start;
  text-align: left;
  padding: 8px 4px 12px;
}
body.career-tools-ats .ats-empty-gauge {
  display: none;
}
.ats-empty-kicker {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 10px;
}
body.career-tools-ats .ats-empty h2 {
  font-size: 28px;
  letter-spacing: -0.04em;
  color: var(--ink);
  margin: 0 0 10px;
}
body.career-tools-ats .ats-empty p {
  max-width: 36rem;
  font-size: 16px;
  line-height: 1.6;
}
body.career-tools-ats .ats-empty-points {
  text-align: left;
  width: min(100%, 28rem);
}
body.career-tools-ats .ats-report-block,
body.career-tools-ats .ats-report-head {
  box-shadow: none;
  border-color: #e8eef5;
}
.ats-help {
  margin: 0 auto 40px;
  padding: 0 44px;
  max-width: 1260px;
}
.ats-help summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 14px;
  padding: 16px 20px;
  background: #fff;
  border-radius: 14px;
  border: 1px solid rgba(14, 23, 38, 0.06);
}
.ats-help[open] summary {
  border-radius: 14px 14px 0 0;
}
.ats-help-grid {
  display: grid;
  gap: 12px;
  padding: 8px 20px 20px;
  background: #fff;
  border: 1px solid rgba(14, 23, 38, 0.06);
  border-top: 0;
  border-radius: 0 0 14px 14px;
}
.ats-help-grid p {
  margin: 0;
  font-size: 14px;
}
@media (max-width: 980px) {
  body.career-tools-ats .ats-layout,
  body.career-tools-ats .ats-layout.is-scored {
    grid-template-columns: 1fr !important;
  }
  body.career-tools-ats .ats-panel {
    position: static;
    max-height: none;
  }
  .ats-app-head,
  .ats-help {
    padding-left: 20px;
    padding-right: 20px;
  }
}

/* Career Tools product chrome — gold on dark, no leftover blue. */
body.career-tools .text-link:hover,
body.career-tools .ct-path:hover .ct-tool-go,
body.career-tools .template-use:hover,
body.career-tools .icon-button:hover,
body.career-tools .auth-switch,
body.career-tools .auth-help-link,
body.career-tools .auth-bottom-links a:hover {
  color: #9a7400;
}
body.career-tools .ct-path-mark {
  background: #fff6d6;
  color: var(--gold-ink);
}
body.career-tools .ct-path:nth-child(2) .ct-path-mark {
  background: #fff6d6;
  color: var(--gold-ink);
}
body.career-tools .ct-kicker-on-dark {
  color: var(--gold);
}
body.career-tools .subnav {
  background: transparent;
  border-bottom: 1px solid rgba(16, 17, 20, 0.08);
  padding: 14px 44px 12px;
  color: var(--muted);
}
body.career-tools .subnav a {
  color: var(--muted);
}
body.career-tools .subnav a:hover {
  color: var(--ink);
}
body.career-tools .subnav .active {
  color: var(--ink);
  font-weight: 700;
  box-shadow: inset 0 -2px 0 var(--gold);
}
body.career-tools .page-head {
  padding-top: 12px;
  padding-bottom: 8px;
}
body.career-tools .page-head .ct-kicker {
  margin-bottom: 8px;
}
body.career-tools .page-head h1 {
  font-size: clamp(32px, 4vw, 44px);
  margin: 0 0 8px;
}
body.career-tools .page-head .section-heading {
  align-items: flex-end;
  margin-bottom: 8px;
}
body.career-tools .page-head .section-heading p {
  font-size: 16px;
  max-width: 40rem;
}
body.career-tools .eyebrow {
  color: var(--gold);
  letter-spacing: 0.12em;
}
body.career-tools .chip {
  border-radius: 999px;
  padding: 8px 14px;
  font-weight: 600;
}
body.career-tools .chip.active {
  background: var(--ink);
  border-color: var(--ink);
}
body.career-tools .filter-search input,
body.career-tools .filter-search select {
  border-radius: 999px;
  background: #fff;
  border-color: var(--line);
}
body.career-tools .template-image {
  background: #fff;
  border-radius: 18px;
  border-color: rgba(14, 23, 38, 0.06);
  box-shadow: 0 1px 2px rgba(14, 23, 38, 0.04), 0 16px 36px rgba(14, 23, 38, 0.07);
}
body.career-tools .template-badge.premium {
  color: var(--gold-ink);
  background: var(--gold);
  border-color: var(--gold);
}
body.career-tools .template-use:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--gold-ink);
}
body.career-tools .studio-tag {
  color: #9a7400;
}
body.career-tools .card,
body.career-tools .resume-card,
body.career-tools .empty {
  border-radius: 20px;
  border-color: rgba(14, 23, 38, 0.06);
  box-shadow: 0 1px 2px rgba(14, 23, 38, 0.04), 0 18px 40px rgba(14, 23, 38, 0.05);
}
body.career-tools .price-card .eyebrow {
  font-size: 11px;
  margin-bottom: 10px;
}
body.career-tools .price-card li:before {
  color: #9a7400;
}
body.career-tools .price-card.pro {
  background: var(--shell);
  color: #f5f6fa;
  border-color: var(--shell);
  box-shadow: 0 24px 50px rgba(11, 11, 15, 0.28);
}
body.career-tools .price-card.pro h2,
body.career-tools .price-card.pro .price {
  color: #fff;
}
body.career-tools .price-card.pro p,
body.career-tools .price-card.pro .hint,
body.career-tools .price-card.pro small,
body.career-tools .price-card.pro li {
  color: #c5c9d4;
}
body.career-tools .price-card.pro .eyebrow {
  color: var(--gold);
}
body.career-tools .price-card.pro li:before {
  color: var(--gold);
}
body.career-tools .continue-draft {
  background: #fff;
  border: 1px solid rgba(14, 23, 38, 0.06);
  border-radius: 20px;
  box-shadow: 0 1px 2px rgba(14, 23, 38, 0.04), 0 18px 40px rgba(14, 23, 38, 0.05);
}
body.career-tools .continue-icon,
body.career-tools .document-icon,
body.career-tools .status-symbol {
  background: #fff6d6;
  color: var(--gold-ink);
  border-color: #f0d56a;
}
body.career-tools .icon-button:hover {
  background: #fff6d6;
}
body.career-tools .auth-card .check-label input {
  accent-color: var(--gold);
}
body.career-tools .auth-mode-tabs button.active {
  color: var(--gold-ink);
  box-shadow: 0 1px 3px #13263914, inset 0 -2px 0 var(--gold);
}
body.career-tools .auth-google {
  background: #fff;
  border-color: var(--line);
  color: var(--ink);
  box-shadow: none;
}
body.career-tools .auth-google:hover {
  border-color: #c5c9d2;
}
body.career-tools .editor-toolbar,
body.career-tools .editor-footer {
  background: #fff;
}
body.career-tools .section-nav {
  background: #f7f7f8;
}
body.career-tools .section-nav button.active {
  color: var(--gold-ink);
  background: #fff6d6;
}
body.career-tools .add-entry {
  color: var(--gold-ink);
  background: #fffdf5;
  border-color: #e8c547;
}
body.career-tools .preview-panel {
  background: #eceef2;
}
body.career-tools .member-table th {
  background: #f3f4f6;
  color: var(--muted);
}
body.career-tools-ats .ats-icon {
  background: var(--gold);
  color: var(--gold-ink);
}
body.career-tools-ats .ats-drop strong,
body.career-tools-ats .ats-paste-details[open] summary {
  color: #9a7400;
}
body.career-tools-ats .ats-opt {
  background: #fff6d6;
  color: #7c5c00;
}
body.career-tools-ats .ats-panel textarea:focus,
body.career-tools-ats .ats-paste-details textarea:focus {
  outline-color: var(--gold);
  border-color: #e8c547;
}
body.career-tools-ats .ats-actions {
  background: #fff;
}
body.career-tools-ats .ats-check:disabled {
  opacity: 1;
  background: #f4e7b0;
  color: #7a5a00;
  cursor: not-allowed;
  box-shadow: none;
}
@media (max-width: 760px) {
  body.career-tools .subnav {
    padding-left: 16px;
    padding-right: 16px;
  }
}

/* ATS full page: same Career Tools language as Resume home. */
body.career-tools-ats {
  background: var(--bg);
  color: var(--ink);
}
body.career-tools-ats .ats-hero {
  padding-top: 36px;
  padding-bottom: 12px;
}
body.career-tools-ats .ats-hero-art {
  position: relative;
  min-height: 340px;
}
body.career-tools-ats .ats-hero-sheet {
  position: absolute;
  right: 4%;
  top: 12px;
  width: min(340px, 90%);
  background: #fff;
  border-radius: 24px;
  padding: 28px 26px;
  box-shadow: 0 22px 50px rgba(18, 24, 32, 0.14);
  border: 1px solid rgba(18, 24, 32, 0.06);
  transform: rotate(3deg);
}
body.career-tools-ats .ats-hero-score {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 18px;
}
body.career-tools-ats .ats-hero-score strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 48px;
  letter-spacing: -0.06em;
  line-height: 1;
  color: var(--ink);
}
body.career-tools-ats .ats-hero-score span {
  font-size: 13px;
  font-weight: 700;
  color: #9a7400;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
body.career-tools-ats .ats-hero-sheet ul {
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
}
body.career-tools-ats .ats-hero-sheet li::before {
  content: "– ";
  color: #9aa7b5;
}
body.career-tools-ats .ats-hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
body.career-tools-ats .ats-hero-chips span {
  background: #fff6d6;
  color: var(--gold-ink);
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 700;
}
body.career-tools-ats .ats-stage {
  padding-top: 12px;
  padding-bottom: 28px;
}
body.career-tools-ats .ats-stage-head {
  margin: 0 0 18px;
}
body.career-tools-ats .ats-stage-head h2 {
  font-size: 28px;
  margin: 0 0 6px;
}
body.career-tools-ats .ats-stage-head p {
  margin: 0;
  font-size: 16px;
}
body.career-tools-ats .ats-layout,
body.career-tools-ats .ats-layout.is-scored {
  display: flex !important;
  flex-direction: column;
  gap: 20px;
  grid-template-columns: none;
}
body.career-tools-ats .ats-panel {
  position: static;
  max-height: none;
  overflow: visible;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
body.career-tools-ats .ats-bench-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
  width: 100%;
}
body.career-tools-ats .ats-pane {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 340px;
  width: 100%;
  height: 100%;
  padding: 20px;
  background: #fff;
  border: 1px solid rgba(14, 23, 38, 0.06);
  border-radius: 24px;
  box-shadow: 0 1px 2px rgba(14, 23, 38, 0.04), 0 18px 40px rgba(14, 23, 38, 0.06);
}
body.career-tools-ats .ats-block {
  background: transparent;
  border: 0;
}
body.career-tools-ats .ats-step {
  color: var(--muted);
}
body.career-tools-ats .ats-status {
  background: #f3f4f6;
  color: var(--muted);
}
body.career-tools-ats .ats-status.is-ready {
  background: #fff6d6;
  color: #7c5c00;
}
body.career-tools-ats .ats-opt {
  background: #fff6d6;
  color: #7c5c00;
}
body.career-tools-ats .ats-drop {
  flex: 1 1 auto;
  min-height: 220px;
  height: auto;
  border-radius: 18px;
  border: 1.5px dashed #e8c547;
  background: #fffdf5;
  color: var(--muted);
  gap: 8px;
}
body.career-tools-ats .ats-drop p {
  color: var(--muted);
  margin: 0;
}
body.career-tools-ats .ats-drop strong {
  color: #9a7400;
}
body.career-tools-ats .ats-icon {
  width: 44px;
  height: 44px;
  background: var(--gold);
  color: var(--gold-ink);
  font-size: 1.15rem;
  margin-bottom: 2px;
}
body.career-tools-ats .ats-drop.is-ready {
  border-color: #4ade80;
  background: #f0fdf4;
}
body.career-tools-ats .ats-drop.is-drag {
  border-color: var(--gold);
  background: #fff6d6;
}
body.career-tools-ats .ats-paste-details {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 12px;
  padding: 10px 14px;
}
body.career-tools-ats .ats-paste-details summary {
  cursor: pointer;
  font-weight: 650;
  font-size: 14px;
}
body.career-tools-ats .ats-pane textarea,
body.career-tools-ats .ats-panel textarea,
body.career-tools-ats #ats-jd {
  flex: 1 1 auto;
  background: #fafafa;
  border-color: var(--line);
  color: var(--ink);
  min-height: 220px !important;
  height: auto;
}
body.career-tools-ats .ats-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 16px;
  padding: 16px 20px;
  background: #fff;
  border: 1px solid rgba(14, 23, 38, 0.06);
  border-radius: 18px;
  box-shadow: 0 1px 2px rgba(14, 23, 38, 0.04);
}
body.career-tools-ats .ats-check {
  width: auto;
  min-width: 220px;
  min-height: 52px;
  border-radius: 999px;
  font-size: 15px;
  flex: 0 0 auto;
  background: var(--gold);
  color: var(--gold-ink);
  box-shadow: 0 8px 22px rgba(255, 193, 7, 0.28);
}
body.career-tools-ats .ats-check:hover {
  background: #ffd23f;
}
body.career-tools-ats .ats-check:disabled {
  opacity: 1;
  background: #f4e7b0;
  color: #7a5a00;
  cursor: not-allowed;
  box-shadow: none;
}
body.career-tools-ats .ats-secure {
  color: var(--muted);
  text-align: left;
  margin: 0;
  max-width: 42rem;
  font-size: 13px;
  line-height: 1.5;
}
body.career-tools-ats .ats-result {
  display: none;
  min-height: 0;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}
body.career-tools-ats .ats-layout.is-scored .ats-result,
body.career-tools-ats.ats-has-report .ats-result {
  display: block !important;
  width: 100%;
}
body.career-tools-ats.ats-has-report .ats-hero,
body.career-tools-ats.ats-has-report .ats-how,
body.career-tools-ats.ats-has-report .ats-split-wrap {
  display: none;
}
body.career-tools-ats.ats-has-report .ats-pane,
body.career-tools-ats.ats-has-report .ats-drop,
body.career-tools-ats.ats-has-report #ats-jd {
  min-height: 220px;
}
body.career-tools-ats .ats-empty {
  display: none !important;
}
body.career-tools-ats .ats-report {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
body.career-tools-ats .ats-report-head,
body.career-tools-ats .ats-report-foot,
body.career-tools-ats .ats-report-block:first-of-type {
  grid-column: 1 / -1;
}
body.career-tools-ats .ats-report-head,
body.career-tools-ats .ats-report-block {
  background: #fff;
  border: 1px solid rgba(14, 23, 38, 0.06);
  color: var(--ink);
  box-shadow: 0 1px 2px rgba(14, 23, 38, 0.04);
}
body.career-tools-ats .ats-report-verdict h2,
body.career-tools-ats .ats-report-block h3 {
  color: var(--ink);
}
body.career-tools-ats .ats-jobs-link {
  color: #9a7400;
  font-weight: 700;
}
body.career-tools-ats .ats-help {
  display: none;
}
@media (max-width: 980px) {
  body.career-tools-ats .ats-hero-art {
    min-height: 220px;
  }
  body.career-tools-ats .ats-hero-sheet {
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    margin: 0 auto;
  }
  body.career-tools-ats .ats-bench-grid,
  body.career-tools-ats .ats-report {
    grid-template-columns: 1fr;
  }
  body.career-tools-ats .ats-pane,
  body.career-tools-ats .ats-drop,
  body.career-tools-ats #ats-jd {
    min-height: 200px;
  }
  body.career-tools-ats .ats-actions {
    flex-direction: column;
    align-items: stretch;
  }
  body.career-tools-ats .ats-check {
    width: 100%;
  }
}

/* Any-device layout: phone, tablet, landscape, notched screens. */
html {
  overflow-x: clip;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
body.career-tools,
body.career-tools-ats,
body.career-tools-auth {
  overflow-x: clip;
  max-width: 100%;
}
body.career-tools img,
body.career-tools-ats img {
  max-width: 100%;
}
.brand span {
  white-space: nowrap;
}
.template-image img,
.ct-sheet img,
.preview-canvas img {
  height: auto;
}

@media (max-width: 1100px) {
  .pricing-grid {
    gap: 20px;
  }
}

@media (max-width: 720px) {
  body.career-tools-ats #ats-tool,
  .ct-paths,
  .section,
  .page-head {
    scroll-margin-top: 88px;
  }
  .rb-width,
  .ats-app-head {
    padding-left: max(16px, env(safe-area-inset-left));
    padding-right: max(16px, env(safe-area-inset-right));
  }
  .topbar {
    padding-left: max(16px, env(safe-area-inset-left));
    padding-right: max(16px, env(safe-area-inset-right));
  }
  .ct-paths {
    padding-left: max(16px, env(safe-area-inset-left));
    padding-right: max(16px, env(safe-area-inset-right));
  }
  .footer {
    padding: 24px max(16px, env(safe-area-inset-left)) 32px max(16px, env(safe-area-inset-right));
    flex-direction: column;
    align-items: flex-start;
  }
  .footer > div {
    flex-wrap: wrap;
    gap: 12px 18px;
  }
  .subnav {
    padding-left: max(16px, env(safe-area-inset-left));
    padding-right: max(16px, env(safe-area-inset-right));
    -webkit-overflow-scrolling: touch;
  }
  .ct-cta,
  body.career-tools-ats .ats-hero .ats-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .ct-cta .button,
  body.career-tools-ats .ats-hero .ats-hero-actions .button {
    width: 100%;
  }
  .filter-search {
    flex-direction: column;
    align-items: stretch;
  }
  .filter-search input,
  .filter-search select {
    max-width: none;
    width: 100%;
  }
  .pricing-grid,
  .dashboard-grid {
    grid-template-columns: 1fr;
  }
  .price-card {
    padding: 24px 20px;
  }
  .price-card .button,
  .ct-split .button,
  .final-call .button {
    white-space: normal;
    min-height: 44px;
    text-align: center;
  }
  .price {
    font-size: 40px;
  }
  input,
  select,
  textarea {
    font-size: 16px;
  }
  .editor-toolbar {
    flex-direction: column;
    align-items: stretch;
    padding: 12px 16px;
  }
  .editor-toolbar input {
    max-width: none;
    width: 100%;
    font-size: 16px;
  }
  .editor-toolbar .actions {
    width: 100%;
    justify-content: stretch;
    gap: 8px;
  }
  .editor-toolbar .actions .button {
    flex: 1 1 calc(50% - 8px);
    white-space: normal;
    min-height: 40px;
  }
  .editor-layout,
  .editor-layout.show-preview {
    display: grid;
    grid-template-columns: 1fr;
    height: auto;
    min-height: 0;
  }
  .section-nav {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    overflow-x: auto;
    overflow-y: hidden;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 8px 12px;
    gap: 4px;
    -webkit-overflow-scrolling: touch;
  }
  .section-nav > p {
    display: none;
  }
  .section-nav button {
    flex: 0 0 auto;
    width: auto;
    white-space: nowrap;
    padding: 10px 12px;
    margin: 0;
    font-size: 12px;
  }
  .section-nav .settings-button {
    margin-top: 0;
    border-top: 0;
  }
  .edit-panel {
    padding: 18px 16px 28px;
  }
  .edit-panel input,
  .edit-panel textarea,
  .edit-panel select {
    font-size: 16px;
  }
  .editor-layout.show-preview .section-nav,
  .editor-layout.show-preview .edit-panel {
    display: none;
  }
  .auth-wrap,
  .auth-shell {
    padding-left: 16px;
    padding-right: 16px;
    margin-top: 16px;
  }
  .card,
  .resume-card {
    padding: 20px 16px;
  }
  .purchase {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
  .member-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .template-dialog {
    width: min(1020px, 100vw);
    max-height: 100dvh;
  }
  .dialog-templates {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  body.career-tools-ats .ats-hero-sheet {
    width: min(100%, 360px);
    transform: none;
    padding: 22px 18px;
  }
  body.career-tools-ats .ats-pane {
    min-height: 0;
    padding: 16px;
    border-radius: 18px;
  }
  body.career-tools-ats .ats-drop,
  body.career-tools-ats #ats-jd {
    min-height: 180px;
  }
  .ats-block-head {
    flex-wrap: wrap;
  }
}

@media (max-width: 480px) {
  .rb-width {
    padding-left: max(16px, env(safe-area-inset-left));
    padding-right: max(16px, env(safe-area-inset-right));
  }
  .ct-stage-copy h1,
  .ct-page-intro h1,
  body.career-tools-ats .ats-hero h1 {
    font-size: clamp(28px, 9vw, 36px);
  }
  .ct-lede,
  .ct-page-intro > p,
  body.career-tools-ats .ats-hero p {
    font-size: 16px;
  }
  .ct-stack {
    height: 240px;
  }
  .ct-path {
    min-height: 0;
    padding: 20px 18px 18px;
  }
  .ct-split {
    border-radius: 18px;
    margin-left: 0;
    margin-right: 0;
  }
  .ct-split h2,
  .ct-how h2,
  .section-heading h2 {
    font-size: 26px;
  }
  .template-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .featured .template-card:last-child {
    display: block;
  }
  .page-head h1 {
    font-size: 28px;
  }
  .chips {
    gap: 8px;
  }
  .chip {
    min-height: 36px;
  }
  .topbar .button {
    padding: 8px 12px;
    font-size: 12px;
  }
  .dialog-templates {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 360px) {
  .brand span {
    font-size: 12px;
  }
  .brand img {
    width: 28px;
    height: 28px;
  }
  .topbar {
    padding-left: max(12px, env(safe-area-inset-left));
    padding-right: max(12px, env(safe-area-inset-right));
    gap: 8px;
  }
}

@media (max-height: 500px) and (orientation: landscape) {
  .ct-stage-art,
  body.career-tools-ats .ats-hero-art {
    display: none;
  }
  .ct-stage-inner,
  body.career-tools-ats .ats-hero {
    grid-template-columns: 1fr;
  }
}
