/* Public Career Editorial layouts. Shared controls and color tokens live in design-system.css. */
a {
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
main {
  min-width: 0;
}
h1,
h2 {
  font-family: var(--font-editorial);
  font-weight: 500;
  letter-spacing: -0.035em;
}
h1 em {
  font-style: normal;
  color: var(--cobalt);
}
.nav {
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 max(32px, calc((100vw - 1320px) / 2));
  border-bottom: 1px solid var(--border);
  position: relative;
  z-index: 100;
  background: var(--paper);
}
.nav-logo,
.logo,
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.6px;
  text-decoration: none;
}
.nav-logo:hover {
  text-decoration: none;
}
.logo-mark,
.logo-icon {
  width: 32px;
  height: 32px;
  background: var(--cobalt);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-radius: 3px;
  flex-shrink: 0;
  font-size: 13px;
}
.logo-mark::after {
  content: "";
  width: 100%;
  height: 100%;
  background: url("/assets/career-editorial/brand-mark.48f9ecc250948ebebf439a6a01db18674d6fca8c6a01614513568299e09e73ac.svg") center/contain no-repeat;
}
.nav-center,
.nav-right,
.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
}
.nav-link-login,
.nav-item-link,
.nav-link {
  font-size: 13px;
  color: var(--ink);
  font-weight: 600;
}
.nav-menu {
  position: relative;
}
.nav-menu summary {
  list-style: none;
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 600;
}
.nav-menu summary::-webkit-details-marker {
  display: none;
}
.nav-menu summary::after {
  content: "⌄";
  font-size: 15px;
}
.nav-menu[open] summary {
  color: var(--cobalt);
}
.nav-dropdown {
  position: absolute;
  left: -20px;
  top: 44px;
  min-width: 260px;
  padding: 14px;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  border-radius: 6px;
  display: grid;
  gap: 2px;
}
.nav-dropdown a {
  color: var(--ink);
  font-size: 14px;
  padding: 10px;
  border-radius: 3px;
}
.nav-dropdown a:hover {
  background: var(--paper);
  text-decoration: none;
}
.nav-mobile {
  display: none;
  background: none;
  border: 1px solid var(--control-border);
  border-radius: 4px;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  color: var(--ink);
}
.nav-mobile svg {
  width: 20px;
  height: 20px;
}
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: var(--paper);
  overflow-y: auto;
  padding: 20px 24px;
  padding-bottom: max(32px, env(safe-area-inset-bottom));
}
.mobile-overlay.open {
  display: block;
}
.mobile-overlay-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.mobile-overlay-close {
  height: 44px;
  width: 44px;
  border: 1px solid var(--control-border);
  background: transparent;
  border-radius: 4px;
}
.mobile-nav-list {
  padding-top: 20px;
  display: grid;
  gap: 8px;
}
.mobile-nav-list a {
  display: block;
  min-height: 44px;
  padding: 10px 0;
  color: var(--ink);
  font-size: 16px;
}
.mobile-nav-heading {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin: 24px 0 6px;
}
.mobile-nav-ctas {
  display: grid;
  gap: 12px;
  padding-top: 24px;
}
.mobile-nav-ctas a {
  text-align: center;
}
.mobile-nav-ctas .btn-primary {
  color: #fff;
}
/* The preparation desk: readable product evidence, not a miniature dashboard. */
.editorial-hero {
  max-width: 1384px;
  margin: auto;
  padding: 76px 32px 88px;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 48px;
  align-items: center;
}
.hero-copy {
  min-width: 0;
  padding: 8px 0;
}
.eyebrow,
.section-label,
.question-number,
.paper-topline,
.stage-caption,
.hero-chapter {
  font: 700 10px/1.5 var(--font);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 28px;
}
.edition-dot {
  height: 7px;
  width: 7px;
  border-radius: 50%;
  background: var(--cobalt);
}
.editorial-hero h1 {
  font-size: clamp(66px, 6.7vw, 104px);
  line-height: 0.98;
  letter-spacing: -0.055em;
  margin: 0 0 26px;
}
.editorial-hero h1 em {
  display: inline-block;
}
.hero-sub {
  font-size: 17px;
  line-height: 1.75;
  color: var(--text-secondary);
  max-width: 465px;
  margin: 0 0 28px;
}
.hero-ctas {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}
.hero-secondary {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  padding: 12px 0;
}
.hero-secondary span {
  margin-left: 8px;
}
.hero-ctas .btn {
  font-size: 13px;
}
.hero-ctas .btn span {
  font-size: 21px;
}
.hero-note {
  font-size: 11px;
  color: var(--text-secondary);
  margin: 14px 0 0;
}
.hero-chapter {
  border-top: 1px solid var(--border);
  margin-top: 48px;
  padding-top: 16px;
  display: flex;
  justify-content: space-between;
  color: var(--text-secondary);
  max-width: 490px;
  font-size: 9px;
}
.hero-chapter > span:last-child {
  font-size: 24px;
  color: var(--ink);
  line-height: 0.8;
}
.practice-stage {
  background: var(--cobalt);
  padding: 24px 34px 20px;
  position: relative;
  min-height: 576px;
  isolation: isolate;
}
.stage-caption {
  color: #fff;
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  margin-bottom: 24px;
  letter-spacing: 0.17em;
}
.practice-paper {
  background: #fffef8;
  padding: 30px 30px 20px;
  transform: rotate(-3deg);
  position: relative;
  z-index: 1;
  box-shadow: 12px 15px 0 #1736b3;
  max-width: 470px;
  margin: 0 auto 24px;
}
.paper-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 10px;
  color: var(--text-secondary);
}
.paper-mark {
  font-size: 32px;
  line-height: 1;
  color: var(--cobalt);
}
.sample-select-label {
  display: block;
  font-size: 11px;
  margin-top: 13px;
  color: var(--text-secondary);
  font-weight: 500;
}
.practice-paper select {
  margin-top: 4px;
  border: 0;
  border-bottom: 1px solid var(--control-border);
  border-radius: 0;
  background: transparent;
  width: 100%;
  font-size: 16px;
  font-weight: 700;
  padding: 8px 0;
  min-height: 40px;
  color: var(--ink);
}
.paper-rule {
  margin: 20px 0;
  border-top: 1px solid var(--border);
}
.question-number {
  font-size: 8px;
  color: var(--cobalt);
  margin-bottom: 12px;
}
.practice-paper h2 {
  font-size: 36px;
  line-height: 1.08;
  letter-spacing: -0.035em;
  margin: 0 0 12px;
  max-width: 330px;
}
.sample-context {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 22px;
}
.framework {
  background: var(--paper);
  padding: 15px 16px;
}
.framework > p {
  font-size: 8px;
  letter-spacing: 0.1em;
  font-weight: 800;
  margin: 0 0 13px;
}
.framework ol {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}
.framework li {
  display: flex;
  gap: 12px;
  font-size: 11px;
  line-height: 1.5;
}
.framework li span {
  font-size: 9px;
  font-weight: 700;
  color: var(--cobalt);
  line-height: 1.8;
}
.sample-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 18px;
}
.sample-pill {
  font-size: 9px;
  border: 1px solid var(--control-border);
  padding: 4px 9px;
  border-radius: 20px;
}
.sample-footer > span:last-child {
  font-size: 20px;
  color: var(--cobalt);
}
.desk-note {
  position: absolute;
  right: -12px;
  bottom: 58px;
  z-index: 2;
  background: var(--mint);
  padding: 15px 20px;
  transform: rotate(5deg);
  display: flex;
  gap: 16px;
  box-shadow: 0 6px 14px #17212616;
}
.desk-note > span {
  font-size: 28px;
}
.desk-note p {
  font-family: var(--font-editorial);
  font-size: 20px;
  line-height: 1.1;
  margin: 0;
}
.desk-note strong {
  font-weight: 500;
}
.sample-disclaimer {
  color: #fff;
  font-size: 12px;
  letter-spacing: 0.025em;
  margin: 15px 0 0;
  text-align: center;
}
.hero-glow,
.hero-badge-dot {
  display: none;
}
/* Full-width chapters establish rhythm; existing generator IDs and form behavior remain. */
.section,
.hiw-section {
  max-width: 1240px;
  padding: 80px 32px;
  margin: 0 auto;
}
.section-label {
  color: var(--cobalt);
  margin-bottom: 20px;
  font-size: 10px;
}
.section-title {
  font-size: clamp(38px, 4vw, 60px);
  max-width: 720px;
  margin: 0 0 20px;
}
.section-subtitle {
  max-width: 610px;
  margin: 0 0 40px;
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.75;
}
.reveal {
  opacity: 1;
  transform: none;
}
.generator-chapter {
  background: var(--ink);
  color: #fff;
}
.generator-chapter .section-title {
  color: #fff;
}
.generator-chapter .section-label {
  color: var(--mint);
}
.generator-chapter .section-subtitle {
  color: #cbd6d8;
}
.generator-chapter .section {
  max-width: 1240px;
}
.preview-card {
  background: #fff;
  padding: 32px;
  color: var(--ink);
  border-top: 5px solid var(--cobalt);
}
.preview-inputs {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: end;
  gap: 18px;
}
.preview-field {
  display: grid;
  gap: 9px;
  min-width: 0;
}
.preview-field label {
  font-size: 13px;
}
.preview-field input {
  width: 100%;
}
.preview-btn {
  min-height: 46px;
}
.preview-error {
  background: #ffebe7;
  color: #b42318;
  margin-top: 18px;
  padding: 14px;
  border-left: 3px solid #b42318;
  font-size: 14px;
}
.preview-results {
  margin-top: 28px;
}
.preview-questions {
  display: grid;
  gap: 16px;
}
.preview-q-card {
  border-top: 1px solid var(--border);
  padding: 18px 0;
}
.preview-q-badge {
  font-size: 10px;
  font-weight: 700;
  color: var(--cobalt);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.preview-q-text {
  overflow-wrap: anywhere;
  font-family: var(--font-editorial);
  font-size: 24px;
  margin: 8px 0;
}
.preview-q-header {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}
.preview-q-category {
  font-size: 11px;
  color: var(--text-secondary);
}
.preview-cta {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.preview-cta p {
  max-width: 800px;
  font-size: 14px;
}
.preview-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.preview-share-status {
  font-size: 13px;
  color: var(--success);
  margin-top: 14px;
}
.hiw-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
  margin-top: 40px;
}
.hiw-step {
  border-top: 1px solid var(--control-border);
  padding-top: 20px;
  position: relative;
}
.hiw-step-num {
  font-family: var(--font-editorial);
  font-size: 42px;
  color: var(--cobalt);
  margin-bottom: 26px;
}
.hiw-step-icon {
  display: none;
}
.hiw-step h3 {
  font-size: 19px;
  line-height: 1.4;
  margin: 0 0 14px;
}
.hiw-step > p {
  font-size: 14px;
  color: var(--text-secondary);
}
.hiw-mini-ui {
  background: #eeece5;
  padding: 20px;
  margin-top: 24px;
  font-size: 12px;
  min-height: 120px;
}
.hiw-mini-title {
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 800;
  margin-bottom: 14px;
}
.hiw-mini-row {
  display: flex;
  gap: 8px;
  padding: 8px 0;
  border-top: 1px solid var(--border);
}
.hiw-mini-row svg {
  width: 14px;
  height: 14px;
}
.hiw-connector {
  display: none;
}
.role-chapter {
  background: var(--mint);
  padding: 72px max(32px, calc((100vw - 1176px) / 2));
}
.role-chapter h2 {
  font-size: clamp(36px, 4vw, 60px);
  max-width: 650px;
}
.role-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid #7b9588;
  margin-top: 36px;
}
.role-links a {
  color: var(--ink);
  padding: 24px 20px 20px 0;
  border-bottom: 1px solid #7b9588;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 150px;
}
.role-links a span:first-child {
  font-size: 10px;
  letter-spacing: 0.12em;
}
.role-links a strong {
  font-family: var(--font-editorial);
  font-size: 27px;
  font-weight: 500;
}
.role-links a span:last-child {
  font-size: 12px;
}
.role-aside {
  font-size: 13px;
  margin-top: 26px;
  max-width: 760px;
}
.bento-grid,
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--control-border);
}
.bento-card,
.feature-card {
  padding: 32px 28px 32px 0;
  border-bottom: 1px solid var(--border);
  min-width: 0;
  background: transparent;
}
.bento-card:nth-child(even),
.feature-card:nth-child(even) {
  padding-left: 32px;
  border-left: 1px solid var(--border);
}
.bento-card.span-2 {
  grid-column: auto;
}
.bento-card h3,
.feature-card h3 {
  font-family: var(--font-editorial);
  font-size: 31px;
  font-weight: 500;
  margin: 15px 0;
}
.bento-card > p,
.feature-card > p {
  color: var(--text-secondary);
  font-size: 14px;
}
.bento-icon,
.feature-icon {
  width: 32px;
  height: 32px;
  color: var(--cobalt);
}
.bento-icon svg,
.feature-icon svg {
  width: 26px;
  height: 26px;
}
.bento-mock {
  padding: 18px;
  background: #eeece5;
  margin-top: 20px;
}
.bento-mock-item {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 12px;
  display: flex;
  gap: 10px;
  justify-content: space-between;
}
.bento-mock-item:last-child {
  border-bottom: 0;
}
.bento-mock-tag,
.tag {
  font-size: 10px;
  color: var(--cobalt);
}
.pricing-grid,
.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 32px;
}
.pricing-card {
  position: relative;
  padding: 30px;
  background: #fff;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  border-radius: 4px;
}
.pricing-card.featured,
.pricing-card.popular {
  border: 2px solid var(--cobalt);
}
.pricing-card .popular-badge,
.pricing-badge,
.recommended {
  position: absolute;
  left: 24px;
  top: -15px;
  background: var(--cobalt);
  color: #fff;
  padding: 6px 12px;
  font-size: 9px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.pricing-name {
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 22px;
}
.pricing-price {
  font-family: var(--font-editorial);
  font-size: 53px;
  line-height: 1.1;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.pricing-price span {
  font: 500 13px var(--font);
  letter-spacing: 0;
}
.pricing-period {
  font-size: 12px;
  color: var(--text-secondary);
  min-height: 42px;
  margin: 14px 0 20px;
}
.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  flex: 1;
}
.pricing-features li {
  display: flex;
  gap: 10px;
  font-size: 13px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-subtle);
}
.pricing-features svg {
  width: 14px;
  height: 14px;
  color: var(--success);
  margin-top: 3px;
}
.pricing-btn {
  width: 100%;
}
.pricing-toggle-wrap {
  display: flex;
  align-items: center;
  gap: 13px;
  margin: 28px 0;
  font-size: 13px;
}
.pricing-toggle {
  width: 44px;
  height: 26px;
  border: 1px solid var(--control-border);
  border-radius: 20px;
  background: #fff;
  position: relative;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}
.pricing-toggle::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--ink);
  top: 3px;
  left: 3px;
}
.pricing-toggle.on {
  background: var(--cobalt);
  border-color: var(--cobalt);
}
.pricing-toggle.on::after {
  left: 21px;
  background: #fff;
}
.pricing-toggle-label {
  color: var(--text-secondary);
}
.pricing-toggle-label.active {
  color: var(--ink);
  font-weight: 800;
}
.annual-badge {
  font-size: 10px;
  background: var(--mint);
  color: var(--ink);
  padding: 4px 8px;
  border-radius: 3px;
}
.pricing-compare {
  font-size: 12px;
  color: var(--text-secondary);
  margin: 24px 0;
}
.comparison-table-section {
  max-width: 1176px;
  margin: 0 auto 70px;
  padding: 0 32px;
}
.comparison-table-section h2 {
  font-size: 30px;
}
.comparison-table-wrap,
.table-wrap,
.table-wrapper {
  max-width: 100%;
  overflow-x: auto;
  border: 1px solid var(--border);
}
.comparison-table {
  width: 100%;
  font-size: 13px;
  min-width: 550px;
}
.comparison-table th,
.comparison-table td {
  padding: 15px;
  border-bottom: 1px solid var(--border);
}
.comparison-table th {
  font-weight: 800;
  background: #eeece5;
}
.check {
  color: var(--success);
}
.dash,
.cross {
  color: var(--text-secondary);
}
.cta-section {
  background: var(--cobalt);
  color: #fff;
  text-align: center;
  padding: 80px 24px;
}
.cta-section h2 {
  font-size: clamp(40px, 5vw, 66px);
  color: #fff;
  max-width: 720px;
  margin: 0 auto 20px;
}
.cta-section > p {
  max-width: 590px;
  margin: 0 auto 28px;
  color: #eef0ff;
  font-size: 16px;
}
.cta-section .btn-primary {
  background: #fff;
  color: var(--cobalt);
  border-color: #fff;
}
.cta-section .btn-ghost {
  color: #fff;
  border-color: #fff;
}
.footer {
  max-width: 1320px;
  margin: 0 auto;
  padding: 64px 32px 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 36px;
}
.footer-brand-text {
  color: var(--text-secondary);
  font-size: 13px;
  max-width: 280px;
  margin-top: 18px;
}
.footer-col-title {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 800;
  margin-bottom: 18px;
}
.footer-col a {
  display: block;
  color: var(--text-secondary);
  font-size: 13px;
  margin-bottom: 12px;
}
.footer-newsletter {
  display: flex;
  gap: 6px;
}
.footer-newsletter input {
  min-width: 0;
  width: 100%;
  font-size: 12px;
}
.footer-newsletter button {
  border: 0;
  background: var(--ink);
  color: #fff;
  border-radius: 4px;
  padding: 10px;
  font-size: 11px;
}
.footer-bottom {
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 40px;
  padding-top: 24px;
  font-size: 11px;
  color: var(--text-secondary);
}
.footer-trust {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.footer-trust span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.footer-trust svg {
  width: 13px;
  height: 13px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 13px;
}
.footer-links a {
  color: var(--text-secondary);
}
/* Reading, persona and utility families. */
.page-persona .hero {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
  max-width: 1240px;
  margin: auto;
  padding: 84px 32px;
}
.page-persona .hero h1 {
  font-size: clamp(48px, 5.8vw, 82px);
  line-height: 1.02;
}
.page-persona .hero p {
  color: var(--text-secondary);
  font-size: 17px;
  max-width: 600px;
}
.hero-badge {
  font-size: 10px;
  color: var(--cobalt);
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.gradient,
.gradient-text {
  color: var(--cobalt);
}
.persona-example {
  background: var(--mint);
  padding: 32px;
  border-top: 5px solid var(--ink);
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.persona-example .eyebrow {
  font-size: 10px;
}
.persona-example h2 {
  font-size: 42px;
}
.persona-example p {
  font-size: 14px !important;
  color: var(--ink) !important;
}
.persona-example ol {
  padding-left: 20px;
  font-size: 14px;
  line-height: 2;
}
.persona-example small {
  font-size: 10px;
  margin-top: 16px;
}
.question-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--border);
}
.question-item {
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.question-item h3 {
  font-size: 18px;
}
.question-item p {
  font-size: 14px;
  color: var(--text-secondary);
}
.pricing-preview {
  background: var(--mint);
  padding: 64px max(32px, calc((100vw - 1176px) / 2));
  margin-top: 28px;
}
.pricing-preview h2 {
  font-family: var(--font-editorial);
  font-size: 40px;
  margin-bottom: 16px;
}
.pricing-preview .pricing-cards {
  margin-top: 32px;
}
.pricing-mini {
  padding: 24px 0;
  border-top: 1px solid var(--ink);
}
.pricing-mini h3 {
  font-family: var(--font);
  font-size: 14px;
}
.pricing-mini .price {
  font-family: var(--font-editorial);
  font-size: 42px;
}
.pricing-mini .note {
  font-size: 12px;
  color: var(--text-secondary);
}
.blog-hero,
.changelog-hero,
.page-pricing > .hero,
.page-pricing main > .hero {
  max-width: 1240px;
  margin: auto;
  padding: 74px 32px 50px;
}
.blog-hero h1,
.changelog-hero h1,
.page-pricing h1 {
  font-size: clamp(48px, 5.5vw, 78px);
  max-width: 900px;
}
.blog-hero p,
.changelog-hero p {
  color: var(--text-secondary);
  font-size: 17px;
  max-width: 640px;
}
.articles {
  max-width: 1240px;
  margin: auto;
  padding: 0 32px 70px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 48px;
}
.article-card {
  display: block;
  color: var(--ink);
  border-top: 1px solid var(--control-border);
  padding: 26px 0 32px;
  position: relative;
}
.article-card:hover {
  text-decoration: none;
}
.article-card:first-child {
  grid-column: 1/-1;
  background: var(--mint);
  padding: 42px;
  margin: 0 0 36px;
}
.article-card:first-child .article-title {
  font-size: 43px;
  max-width: 900px;
}
.article-meta-top,
.article-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  font-size: 11px;
  color: var(--text-secondary);
  margin-bottom: 16px;
}
.article-tag {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--cobalt);
}
.article-title {
  font-family: var(--font-editorial);
  font-size: 28px;
  line-height: 1.15;
  font-weight: 500;
  letter-spacing: -0.025em;
  margin: 0 0 14px;
}
.article-excerpt {
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-secondary);
}
.article-chevron {
  position: absolute;
  right: 0;
  top: 26px;
  width: 16px;
  color: var(--cobalt);
}
.article-card:first-child .article-chevron {
  right: 24px;
  top: 44px;
}
.blog-cta {
  grid-column: 1/-1;
  background: var(--ink);
  color: #fff;
  padding: 38px;
}
.blog-cta h2 {
  color: #fff;
  font-size: 36px;
}
.article-container {
  max-width: 900px;
  padding: 56px 32px 80px;
  margin: 0 auto;
}
.article-breadcrumb {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 12px;
  margin-bottom: 26px;
  line-height: 1.7;
}
.article-header {
  padding-bottom: 32px;
  border-bottom: 1px solid var(--control-border);
  margin-bottom: 36px;
}
.article-container > h1,
.article-header h1 {
  font-size: clamp(42px, 4.5vw, 68px);
  line-height: 1.04;
  margin: 20px 0;
}
.article-author-line {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--text-secondary);
  padding: 18px 0;
  border-bottom: 1px solid var(--control-border);
  margin-bottom: 24px;
}
.article-body {
  font-size: 17px;
  line-height: 1.8;
  color: #34434b;
}
.article-body p {
  margin: 0 0 24px;
}
.article-body h2 {
  font-size: 38px;
  margin: 50px 0 20px;
  scroll-margin-top: 28px;
}
.article-body h3 {
  font-size: 23px;
  margin: 32px 0 16px;
  line-height: 1.35;
}
.article-body h4 {
  font-size: 18px;
  margin: 24px 0 12px;
}
.article-body li {
  padding: 4px 0;
}
.article-body a {
  text-decoration: underline;
}
.article-body strong {
  color: var(--ink);
}
.article-body blockquote {
  margin: 28px 0;
  border-left: 3px solid var(--cobalt);
  padding: 18px 24px;
  background: #eeece5;
  font-family: var(--font-editorial);
  font-size: 25px;
  color: var(--ink);
}
.article-body table {
  display: block;
  max-width: 100%;
  overflow: auto;
  font-size: 13px;
  line-height: 1.6;
}
.article-body th,
.article-body td {
  padding: 12px;
  border: 1px solid var(--border);
  min-width: 120px;
}
.article-body th {
  background: #e7e9e3;
}
.article-body pre {
  padding: 24px;
  background: #e7e9e3;
  font-size: 13px;
  line-height: 1.7;
}
.article-body code {
  font-size: 0.85em;
  background: #e7e9e3;
  padding: 2px 4px;
}
.article-body hr {
  border: 0;
  border-top: 1px solid var(--border);
  margin: 40px 0;
}
.callout,
.info-box,
.highlight-box,
.stat-callout,
.key-takeaway,
.tldr,
.summary-box,
.toc {
  background: #eeece5;
  border-left: 3px solid var(--cobalt);
  padding: 24px;
  margin: 28px 0;
}
.article-cta,
.article-cta-mid {
  background: var(--ink);
  color: #fff;
  padding: 32px;
  margin: 36px 0;
}
.article-cta h2,
.article-cta h3,
.article-cta-mid h2,
.article-cta-mid h3 {
  color: #fff;
  margin-top: 0;
}
.article-cta p,
.article-cta-mid p {
  color: #d2dcdd;
}
.article-cta .btn,
.article-cta-mid .btn {
  color: #fff;
}
.related-articles {
  border-top: 1px solid var(--border);
  margin-top: 40px;
  padding-top: 28px;
}
.related-articles h3 {
  font-family: var(--font-editorial);
  font-size: 32px;
}
.page-legal .content {
  max-width: 860px;
  padding: 70px 32px 90px;
  margin: auto;
  font-size: 16px;
  line-height: 1.85;
}
.page-legal h1 {
  font-size: 64px;
  margin-bottom: 14px;
}
.page-legal h2 {
  font-size: 32px;
  margin-top: 40px;
}
.updated {
  font-size: 12px;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border);
  padding-bottom: 28px;
  margin-bottom: 32px;
}
.page-legal .content a {
  text-decoration: underline;
}
.faq-section,
.faq {
  max-width: 900px;
  margin: 0 auto;
  padding: 50px 32px;
}
.faq h2,
.faq-section h2 {
  font-size: 40px;
}
.faq-item {
  padding: 20px 0;
  border-top: 1px solid var(--border);
}
.faq-item summary {
  font-size: 16px;
  font-weight: 700;
}
.faq-item p,
.faq-answer {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-top: 16px;
}
.faq-icon {
  float: right;
}
.changelog-list,
.timeline {
  max-width: 860px;
  margin: auto;
  padding: 0 32px 64px;
}
.changelog-entry,
.release {
  border-top: 1px solid var(--control-border);
  padding: 32px 0;
}
.changelog-entry h2,
.release h2 {
  font-size: 32px;
}
.changelog-date,
.release-date {
  font-size: 11px;
  color: var(--text-secondary);
}
.changelog-entry li,
.release li {
  font-size: 15px;
  margin-bottom: 10px;
}
.version-badge,
.tag-new,
.tag-improved,
.tag-fixed {
  font-size: 10px;
  background: var(--mint);
  padding: 4px 8px;
  border-radius: 3px;
}
.page-auth {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 84px 9%;
  gap: 9%;
  position: relative;
}
.page-auth::before {
  content: "A little preparation.\A A clearer next chapter.";
  white-space: pre-line;
  font-family: var(--font-editorial);
  font-size: clamp(46px, 5vw, 76px);
  line-height: 1.06;
  letter-spacing: -0.04em;
  max-width: 520px;
  color: var(--ink);
}
.page-auth::after {
  content: "YOUR EXPERIENCE. YOUR NEXT MOVE.";
  position: absolute;
  left: 9%;
  bottom: 70px;
  letter-spacing: 0.14em;
  font-size: 9px;
  font-weight: 800;
  color: var(--cobalt);
}
.page-auth .home-link {
  position: absolute;
  top: 30px;
  left: 32px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--ink);
  padding: 8px;
}
.home-link svg {
  width: 17px;
  height: 17px;
}
.page-auth > .card {
  background: #fff;
  padding: 42px;
  border-top: 5px solid var(--cobalt);
  max-width: 470px;
  width: 100%;
  margin: auto;
  box-shadow: var(--shadow);
}
.page-auth .logo {
  font-size: 16px;
  margin-bottom: 26px;
}
.page-auth .card-title {
  font-family: var(--font-editorial);
  font-size: 35px;
  letter-spacing: -0.025em;
  margin-bottom: 26px;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  margin-bottom: 8px;
  font-size: 13px;
}
.form-group input {
  width: 100%;
}
.form-error,
.global-error {
  font-size: 12px;
  color: var(--danger);
  margin-top: 8px;
}
.global-error:not(:empty) {
  padding: 14px;
  border-left: 3px solid var(--danger);
  background: var(--danger-dim);
  margin-bottom: 20px;
}
.page-auth > .card .btn {
  width: 100%;
  background: var(--cobalt);
  color: #fff;
  border-color: var(--cobalt);
}
.footer-link {
  font-size: 12px;
  text-align: center;
  margin-top: 20px;
}
.success-message,
.success-state {
  padding: 22px;
  background: var(--mint);
  color: var(--ink);
  line-height: 1.7;
}
.password-requirements,
.password-hint,
.hint {
  font-size: 12px;
  color: var(--text-secondary);
}
.page-error {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px;
}
.page-error .container {
  max-width: 600px;
  text-align: center;
}
.page-error .code {
  font-family: var(--font-editorial);
  font-size: 140px;
  color: var(--cobalt);
  line-height: 1;
}
.page-error h1 {
  font-size: 48px;
}
.page-error p {
  font-size: 17px;
  color: var(--text-secondary);
}
@media (min-width: 1200px) {
  .editorial-hero {
    gap: 60px;
  }
  .hero-copy {
    padding-right: 6px;
  }
}
@media (max-width: 1100px) {
  .nav {
    padding: 0 24px;
    gap: 18px;
  }
  .nav-center {
    gap: 15px;
  }
  .editorial-hero {
    gap: 32px;
    padding: 60px 28px;
  }
  .editorial-hero h1 {
    font-size: 72px;
  }
  .practice-stage {
    padding: 22px 26px;
  }
  .practice-paper {
    padding: 24px;
  }
  .hero-ctas {
    gap: 12px;
  }
  .hero-ctas .btn {
    padding: 13px;
  }
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }
  .footer-col:last-child {
    grid-column: 1/-1;
    max-width: 460px;
  }
  .preview-inputs {
    grid-template-columns: 1fr 1fr;
  }
  .preview-btn {
    grid-column: 1/-1;
    justify-self: start;
  }
  .pricing-card {
    padding: 24px;
  }
  .pricing-price {
    font-size: 44px;
  }
}
@media (max-width: 767px) {
  .nav {
    height: 76px;
    padding: 0 20px;
    gap: 12px;
  }
  .nav-logo {
    font-size: 14px;
    gap: 8px;
    letter-spacing: -0.4px;
  }
  .logo-mark {
    width: 27px;
    height: 27px;
  }
  .nav-center,
  .nav-right > .nav-link-login,
  .nav-links {
    display: none;
  }
  .nav-right {
    gap: 12px;
  }
  .nav-right > .btn {
    font-size: 11px;
    padding: 9px 11px;
    min-height: 40px;
  }
  .nav-mobile {
    display: inline-flex;
  }
  .editorial-hero {
    display: flex;
    flex-direction: column;
    gap: 38px;
    padding: 42px 20px 54px;
    align-items: stretch;
  }
  .hero-copy {
    padding: 0;
  }
  .eyebrow {
    font-size: 9px;
    margin-bottom: 24px;
  }
  .editorial-hero h1 {
    font-size: clamp(44px, 12.7vw, 66px);
    line-height: 1.02;
    letter-spacing: -0.045em;
    margin-bottom: 22px;
  }
  .hero-sub {
    font-size: 15px;
    line-height: 1.75;
    max-width: 480px;
    margin-bottom: 23px;
  }
  .hero-ctas {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
  .hero-ctas .btn {
    font-size: 12px;
    min-height: 48px;
    padding: 12px 17px;
  }
  .hero-secondary {
    font-size: 12px;
    padding: 8px 0;
  }
  .hero-note {
    font-size: 10px;
    margin-top: 12px;
  }
  .hero-chapter {
    margin-top: 25px;
    font-size: 8px;
  }
  .practice-stage {
    min-height: 0;
    padding: 20px 24px 19px;
    margin-right: 6px;
  }
  .stage-caption {
    font-size: 9px;
    margin-bottom: 20px;
  }
  .practice-paper {
    padding: 22px 20px 18px;
    transform: rotate(-2deg);
    box-shadow: 7px 9px 0 #1736b3;
  }
  .practice-paper h2 {
    font-size: 33px;
  }
  .practice-paper select {
    font-size: 14px;
  }
  .desk-note {
    right: -6px;
    bottom: 48px;
    padding: 11px 14px;
    gap: 10px;
  }
  .desk-note p {
    font-size: 17px;
  }
  .sample-disclaimer {
    font-size: 11px;
    margin-top: 30px;
  }
  .sample-footer {
    padding-bottom: 16px;
  }
  .section,
  .hiw-section {
    padding: 52px 20px;
  }
  .section-title {
    font-size: 39px;
    line-height: 1.1;
  }
  .section-subtitle {
    font-size: 15px;
    margin-bottom: 30px;
  }
  .preview-card {
    padding: 22px 18px;
  }
  .preview-inputs {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .preview-btn {
    width: 100%;
  }
  .preview-actions {
    flex-direction: column;
  }
  .hiw-steps {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .hiw-step {
    display: grid;
    grid-template-columns: 46px 1fr;
    column-gap: 14px;
    padding-top: 22px;
  }
  .hiw-step-num {
    grid-row: 1/4;
    font-size: 36px;
  }
  .hiw-step h3 {
    font-size: 18px;
  }
  .hiw-mini-ui {
    grid-column: 2;
    margin-top: 8px;
  }
  .role-chapter {
    padding: 52px 20px;
  }
  .role-chapter h2 {
    font-size: 40px;
  }
  .role-links {
    grid-template-columns: 1fr 1fr;
    column-gap: 20px;
  }
  .role-links a {
    padding: 20px 0;
    min-height: 130px;
  }
  .role-links a strong {
    font-size: 25px;
  }
  .role-aside {
    font-size: 12px;
  }
  .bento-grid,
  .feature-grid {
    grid-template-columns: 1fr;
  }
  .bento-card,
  .feature-card,
  .bento-card:nth-child(even),
  .feature-card:nth-child(even) {
    padding: 25px 0;
    border-left: 0;
  }
  .bento-card h3,
  .feature-card h3 {
    font-size: 30px;
  }
  .pricing-grid,
  .pricing-cards {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .pricing-card {
    padding: 28px;
  }
  .pricing-price {
    font-size: 56px;
  }
  .pricing-features li {
    font-size: 14px;
  }
  .pricing-period {
    min-height: 0;
  }
  .comparison-table-section {
    padding: 0 20px;
    margin-bottom: 52px;
  }
  .cta-section {
    padding: 58px 20px;
  }
  .cta-section h2 {
    font-size: 42px;
  }
  .cta-section > p {
    font-size: 14px;
  }
  .footer {
    padding: 42px 20px 24px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  .footer-col:first-child,
  .footer-col:last-child {
    grid-column: 1/-1;
  }
  .footer-top {
    flex-direction: column;
  }
  .footer-bottom {
    font-size: 10px;
    gap: 18px;
  }
  .footer-trust {
    gap: 12px;
  }
  .page-persona .hero {
    display: flex;
    flex-direction: column;
    gap: 35px;
    padding: 48px 20px;
  }
  .page-persona .hero h1 {
    font-size: 51px;
  }
  .page-persona .hero p {
    font-size: 15px;
  }
  .persona-example {
    padding: 26px;
  }
  .persona-example h2 {
    font-size: 37px;
  }
  .blog-hero,
  .changelog-hero,
  .page-pricing > .hero,
  .page-pricing main > .hero {
    padding: 46px 20px 32px;
  }
  .blog-hero h1,
  .changelog-hero h1,
  .page-pricing h1 {
    font-size: 48px;
  }
  .blog-hero p,
  .changelog-hero p {
    font-size: 15px;
  }
  .articles {
    grid-template-columns: 1fr;
    padding: 0 20px 48px;
  }
  .article-card:first-child {
    padding: 25px;
    margin-bottom: 20px;
  }
  .article-card:first-child .article-title {
    font-size: 31px;
  }
  .article-title {
    font-size: 29px;
  }
  .article-card:first-child .article-chevron {
    display: none;
  }
  .article-excerpt {
    font-size: 14px;
  }
  .article-container {
    padding: 32px 20px 52px;
  }
  .article-container > h1,
  .article-header h1 {
    font-size: 43px;
  }
  .article-body {
    font-size: 16px;
  }
  .article-body h2 {
    font-size: 32px;
    line-height: 1.18;
  }
  .article-body h3 {
    font-size: 23px;
  }
  .article-meta {
    font-size: 10px;
    gap: 10px;
  }
  .article-body pre {
    padding: 16px;
  }
  .article-cta,
  .article-cta-mid {
    padding: 24px;
  }
  .page-legal .content {
    padding: 45px 20px 60px;
  }
  .page-legal h1 {
    font-size: 48px;
  }
  .page-legal h2 {
    font-size: 29px;
  }
  .faq-section,
  .faq {
    padding: 35px 20px;
  }
  .changelog-list,
  .timeline {
    padding: 0 20px 50px;
  }
  .page-auth {
    display: block;
    padding: 94px 20px 40px;
  }
  .page-auth::before,
  .page-auth::after {
    display: none;
  }
  .page-auth > .card {
    padding: 28px 24px;
  }
  .page-auth .home-link {
    left: 16px;
    top: 20px;
  }
  .page-auth .card-title {
    font-size: 34px;
  }
  .page-auth .logo {
    font-size: 15px;
  }
  .page-error .code {
    font-size: 120px;
  }
  .page-error h1 {
    font-size: 42px;
  }
}
@media (max-width: 359px) {
  .nav {
    padding: 0 14px;
  }
  .nav-logo {
    font-size: 12px;
  }
  .nav-right > .btn {
    display: none;
  }
  .editorial-hero,
  .page-persona .hero {
    padding-left: 16px;
    padding-right: 16px;
  }
  .practice-stage {
    padding: 18px;
  }
  .practice-paper {
    padding: 18px 16px;
  }
  .practice-paper h2 {
    font-size: 29px;
  }
  .desk-note {
    padding: 9px 12px;
  }
  .desk-note p {
    font-size: 15px;
  }
}

.example-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 40px;
}
.example-card {
  padding: 26px 0;
  border-top: 1px solid var(--control-border);
}
.example-label {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--cobalt);
  margin-bottom: 12px;
}
.example-card h3 {
  font-family: var(--font-editorial);
  font-size: 28px;
  margin: 12px 0;
}
.example-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.75;
}
@media (max-width: 767px) {
  .example-grid {
    grid-template-columns: 1fr;
  }
  .pricing-preview {
    padding: 40px 20px;
  }
  .pricing-preview h2 {
    font-size: 36px;
  }
  .pricing-preview .pricing-cards {
    gap: 24px;
  }
  .pricing-mini {
    padding: 20px 0;
  }
}

.page-og {
  width: 1200px;
  height: 630px;
  overflow: hidden;
}
.og-composition {
  height: 100%;
  padding: 52px 60px;
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  gap: 50px;
  align-items: center;
}
.og-copy .nav-logo {
  margin-bottom: 52px;
}
.og-copy h1 {
  font: 500 80px/0.98 var(--font-editorial);
  letter-spacing: -0.055em;
  margin-bottom: 26px;
}
.og-copy h1 span {
  color: var(--cobalt);
}
.og-copy p {
  font-size: 18px;
  max-width: 440px;
  color: var(--text-secondary);
}
.og-domain {
  font-size: 14px;
  margin-top: 42px;
  color: var(--cobalt);
}
.og-art {
  height: 470px;
  background: var(--cobalt);
  padding: 44px 28px;
  display: flex;
  align-items: center;
}
.og-paper {
  background: #fffef8;
  padding: 34px 26px;
  transform: rotate(-4deg);
  box-shadow: 10px 14px 0 #17212638;
}
.og-paper .logo-mark {
  width: 56px;
  height: 56px;
  margin-bottom: 42px;
}
.og-paper p {
  font: 500 40px/1.08 var(--font-editorial);
  margin: 0;
}
.og-paper small {
  display: block;
  margin-top: 38px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.before-after {
  margin: 28px 0;
  border-top: 1px solid var(--control-border);
}
.before-after > .label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  margin: 18px 0;
}
.before-after .before,
.before-after .after {
  display: block;
  max-width: 100%;
  overflow: auto;
  padding: 20px;
  margin: 12px 0;
  font-size: 15px;
  line-height: 1.7;
  background: #eeece5;
}
.before-after .after {
  background: var(--mint);
}
.before-after .before::before,
.before-after .after::before {
  display: block;
  margin-bottom: 10px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.before-after .before::before {
  content: "Before";
}
.before-after .after::before {
  content: "After";
}

.share-links {
  display: flex;
  flex-shrink: 0;
  gap: 12px;
  margin: 12px 0;
}
.share-links a {
  display: inline-flex;
  flex: 0 0 44px;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--control-border);
  border-radius: 50%;
  color: var(--ink);
}
.share-links a:hover {
  background: var(--mint);
}
.share-links svg {
  width: 18px;
  height: 18px;
}
.article-card:first-child .article-tag {
  color: var(--accent-light);
}
.bento-demo {
  background: #eeece5;
  padding: 14px 20px;
  margin-top: 22px;
}
.bento-demo-row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 12px;
}
.bento-demo-row:last-child {
  border: 0;
}
.bento-demo-pct {
  color: var(--cobalt);
  font-size: 10px;
  white-space: nowrap;
}
.related {
  border-top: 1px solid var(--control-border);
  margin-top: 48px;
  padding-top: 32px;
}
.related h2 {
  font-family: var(--font-editorial);
  font-size: 36px;
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}
.related-card {
  color: var(--ink);
  padding: 22px 0;
  border-top: 1px solid var(--border);
  text-decoration: none;
}
.r-tag {
  font-size: 10px;
  color: var(--cobalt);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.r-title {
  font-family: var(--font-editorial);
  font-size: 25px;
  line-height: 1.2;
  margin: 12px 0;
}
.r-excerpt {
  font-size: 13px;
  color: var(--text-secondary);
}
[tabindex="0"]:focus-visible {
  outline: 3px solid var(--cobalt);
  outline-offset: 4px;
}
@media (max-width: 767px) {
  .related-grid {
    grid-template-columns: 1fr;
  }
  .bento-demo {
    padding: 12px;
  }
  .bento-demo-row {
    display: block;
  }
  .bento-demo-pct {
    display: block;
    margin-top: 5px;
  }
}
