/* Static / marketing pages — OpenAI typography + Stripe full-width layout */

.page-shell {
  background: var(--shell-bg);
  min-height: 100vh;
  color: var(--kit-font-content-body, var(--color-body));
  font-family: var(--font-stack-body);
}

.page-content.static-page {
  flex: 1;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: var(--shell-gutter);
  background: var(--shell-frame-bg);
  box-sizing: border-box;
}

.static-page__layout {
  width: 100%;
  max-width: none;
  margin: 0;
}

.static-page__layout--docs {
  display: grid;
  grid-template-columns: minmax(11rem, 16rem) minmax(0, 1fr);
  gap: clamp(var(--space-4), 4vw, var(--space-6));
  align-items: start;
}

.static-page__layout--split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(17.5rem, 22.5rem);
  gap: clamp(var(--space-4), 4vw, var(--space-6));
  align-items: start;
}

.static-page__hero {
  padding-bottom: var(--space-5);
  margin-bottom: var(--space-5);
  border-bottom: 1px solid var(--shell-border);
  text-align: left;
}

.static-page__hero--center {
  display: flex;
  justify-content: center;
  text-align: center;
}

.static-page__hero-intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
  width: 100%;
  max-width: 42rem;
  min-width: 0;
  margin: 0 auto;
  text-align: center;
}

.static-page__hero--center .static-page__lead {
  max-width: 60ch;
  text-align: center;
}

.static-page__aside {
  position: sticky;
  top: calc(var(--topbar-height, 52px) + var(--space-4));
}

.static-page__eyebrow {
  margin: 0 0 var(--space-2);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: var(--font-medium);
  line-height: 1.5;
  letter-spacing: -0.01em;
  color: var(--color-muted);
}

.static-page__title {
  margin: 0 0 var(--space-3);
  font-family: var(--font-body);
  font-size: var(--kit-fs-display);
  font-weight: var(--font-medium);
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--kit-font-content-heading, var(--color-body));
}

.static-page__meta {
  margin: 0 0 var(--space-4);
  font-size: var(--text-sm);
  line-height: 1.5;
  color: var(--color-muted);
}

.static-page__lead {
  margin: 0;
  max-width: 65ch;
  font-family: var(--font-body);
  font-size: var(--kit-fs-body-lg);
  line-height: 1.65;
  letter-spacing: -0.01em;
  color: var(--kit-font-content-body, var(--color-body));
}

.static-page__body {
  min-width: 0;
}

.static-page__sections {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.static-page__sections--grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-4);
}

.static-section {
  padding: clamp(1.4rem, 3.2vw, 2.1rem);
  border: 1px solid var(--kit-tile-hairline, var(--shell-chrome-hairline));
  border-radius: 4px;
  background: var(--shell-card-bg);
  box-shadow: none;
}

.static-section--full {
  grid-column: 1 / -1;
}

.static-section__title {
  margin: 0 0 var(--space-3);
  padding-bottom: var(--space-3);
  border-bottom: 1px solid var(--kit-tile-hairline, var(--shell-chrome-hairline));
  font-family: var(--font-body);
  font-size: var(--kit-fs-title);
  font-weight: var(--font-medium);
  line-height: 1.4;
  letter-spacing: normal;
  color: var(--kit-font-content-heading, var(--color-body));
}

.static-section p,
.static-section li {
  margin: 0 0 var(--space-3);
  font-size: var(--kit-fs-body);
  line-height: 1.65;
  letter-spacing: -0.01em;
  color: var(--kit-font-content-body, var(--color-body));
}

.static-section p:last-child,
.static-section ul:last-child,
.static-section li:last-child {
  margin-bottom: 0;
}

.static-section ul {
  margin: 0;
  padding-left: var(--space-4);
}

/* Numbered detail tiles (moved from homepage → guide pages) */
.static-section--detail {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.static-detail-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.static-detail-list__item {
  display: grid;
  grid-template-columns: 1.5rem minmax(0, 1fr);
  column-gap: var(--space-3);
  align-items: start;
  margin: 0;
}

.static-section--detail .static-detail-list__item {
  margin-bottom: 0;
}

.static-section--detail .static-detail-list__label,
.static-section--detail .static-detail-list__desc {
  margin-bottom: 0;
}

.static-section--detail .static-detail-list__label {
  margin-bottom: var(--space-1);
}

.static-detail-list__index {
  font-family: var(--font-numerals, var(--font-body));
  font-variant-numeric: tabular-nums;
  font-size: 13px;
  font-weight: var(--font-medium);
  line-height: 1.55;
  color: var(--color-muted);
  text-align: right;
  padding-top: 2px;
}

.static-detail-list__content {
  min-width: 0;
}

.static-detail-list__label {
  margin: 0 0 var(--space-1);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--font-medium);
  line-height: 1.5;
  letter-spacing: -0.01em;
  color: var(--color-black);
}

.static-detail-list__desc {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--font-regular);
  line-height: 1.65;
  color: var(--color-muted);
}

.static-detail-list__note {
  margin: 0;
  padding-top: var(--space-3);
  border-top: 1px solid var(--shell-border);
  font-size: var(--text-sm);
  line-height: 1.5;
  color: var(--color-muted);
  text-align: center;
}

@media (min-width: 960px) {
  .static-detail-list--trio {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--space-3) var(--space-4);
  }
}

.page-back {
  display: inline-flex;
  align-items: center;
  margin-bottom: var(--space-4);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  line-height: 1.5;
  color: var(--color-muted);
  text-decoration: none;
  transition: color 140ms ease;
}

.page-back:hover {
  color: var(--color-black);
}

.static-page h2 {
  margin: var(--space-5) 0 var(--space-3);
  font-family: var(--font-stack-heading);
  font-size: var(--text-md);
  font-weight: var(--font-medium);
  line-height: 1.4;
  letter-spacing: -0.02em;
  color: var(--color-black);
}

.static-page__body > h2:first-of-type,
.static-page__sections + .static-page__body h2:first-child {
  margin-top: 0;
}

.static-page p,
.static-page li {
  margin: 0 0 var(--space-3);
  font-size: var(--text-sm);
  line-height: 1.6;
  color: var(--color-body);
}

.static-page ul {
  margin: 0 0 var(--space-4);
  padding-left: var(--space-4);
}

.static-page a:not(.btn):not(.page-back) {
  color: var(--color-black);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Pricing — Stripe rhythm: fixed label column, uniform section gaps */
.page-content--pricing {
  --pricing-label-col: 15rem;
  --pricing-gutter: clamp(1rem, 2.5vw, 1.5rem);
  --pricing-section-y: clamp(2rem, 4vw, 2.5rem);
  max-width: none;
}

.page-content--pricing.static-page {
  padding: var(--pricing-gutter);
}

.page-content--pricing .static-page__layout {
  max-width: var(--shell-content-max);
}

.page-content--pricing .page-back {
  margin-bottom: var(--space-5);
}

.pricing-hero {
  display: flex;
  justify-content: center;
  padding-bottom: var(--pricing-section-y);
  margin-bottom: var(--pricing-section-y);
  border-bottom: 1px solid var(--shell-border);
  text-align: center;
}

.pricing-hero__intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-4);
  width: 100%;
  max-width: 42rem;
  min-width: 0;
  margin: 0 auto;
  text-align: center;
}

.pricing-hero__lead {
  margin: 0;
  max-width: 60ch;
  font-size: clamp(1rem, 1.6vw, 1.0625rem);
  line-height: 1.65;
  letter-spacing: -0.015em;
  color: var(--color-body);
  text-align: center;
}

.pricing-hero__title {
  margin: 0;
  font-family: var(--font-stack-heading);
  font-size: clamp(2rem, 4.5vw, 2.75rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.04em;
  color: var(--color-black);
  text-align: center;
}

.pricing-hero__cta {
  display: inline-flex;
  margin-top: var(--space-1);
  border-radius: 999px;
}

.pricing-section {
  margin-bottom: var(--pricing-section-y);
  padding-bottom: var(--pricing-section-y);
  border-bottom: 1px solid var(--shell-border);
}

.pricing-section:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: var(--pricing-section-y);
}

.page-content--pricing .pricing-section h2 {
  margin: 0 0 var(--space-3);
}

.pricing-section > p {
  margin: 0 0 var(--space-4);
  max-width: 72ch;
  line-height: 1.65;
}

.pricing-section--why {
  text-align: center;
}

.pricing-section--why > p {
  margin-inline: auto;
  max-width: 58ch;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-4);
  margin-top: var(--space-4);
}

.pricing-card {
  padding: var(--space-4);
  border: 1px solid var(--shell-border);
  border-radius: 4px;
  background: var(--shell-card-bg);
  box-shadow: var(--shell-shadow);
}

.pricing-card__num {
  margin: 0 0 var(--space-2);
  font-family: var(--font-numerals);
  font-size: var(--text-sm);
  font-weight: var(--font-medium);
  font-variant-numeric: tabular-nums;
  color: var(--color-muted);
}

.pricing-card__title {
  margin: 0 0 var(--space-2);
  font-family: var(--font-stack-heading);
  font-size: var(--text-sm);
  font-weight: var(--font-medium);
  line-height: 1.4;
  letter-spacing: -0.02em;
  color: var(--color-black);
}

.pricing-card__text {
  margin: 0;
  font-size: var(--text-sm);
  line-height: 1.6;
  color: var(--color-body);
}

.pricing-list {
  margin: var(--space-3) 0 0;
  padding: 0;
  list-style: none;
  max-width: 72ch;
}

.pricing-list li {
  padding: var(--space-3) 0;
  border-bottom: 1px solid var(--shell-border);
  line-height: 1.65;
}

.pricing-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.pricing-list li:first-child {
  padding-top: 0;
}

.pricing-two-col {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-4);
  margin-top: var(--space-3);
}

.pricing-audience {
  padding: var(--space-4);
  border: 1px solid var(--shell-border);
  border-radius: 4px;
  background: var(--shell-card-bg);
  box-shadow: var(--shell-shadow);
}

.pricing-audience h3 {
  margin: 0 0 var(--space-2);
  font-family: var(--font-stack-heading);
  font-size: var(--text-sm);
  font-weight: var(--font-medium);
  color: var(--color-black);
}

.pricing-audience p {
  margin: 0;
  font-size: var(--text-sm);
  line-height: 1.6;
}

.pricing-table {
  width: 100%;
  max-width: 48rem;
  margin-top: var(--space-3);
  border-collapse: collapse;
  font-size: var(--text-sm);
}

.pricing-table th,
.pricing-table td {
  padding: var(--space-3) 0;
  border-bottom: 1px solid var(--shell-border);
  text-align: left;
  vertical-align: top;
  line-height: 1.55;
}

.pricing-table tr:last-child th,
.pricing-table tr:last-child td {
  border-bottom: none;
  padding-bottom: 0;
}

.pricing-table th {
  width: var(--pricing-label-col);
  padding-right: var(--space-4);
  font-weight: var(--font-medium);
  color: var(--color-black);
}

.pricing-table td {
  color: var(--color-body);
}

.pricing-footer-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  margin-top: 0;
  padding: var(--space-5);
  border: 1px solid var(--shell-border);
  border-radius: 4px;
  background: var(--shell-card-bg);
  box-shadow: var(--shell-shadow);
  text-align: left;
}

.pricing-footer-cta__text {
  margin: 0;
  max-width: 52ch;
  font-size: var(--text-sm);
  line-height: 1.6;
  color: var(--color-body);
}

.pricing-footer-cta .btn--block {
  width: auto;
  min-width: 12rem;
  border-radius: 999px;
}

.contact-block {
  padding: var(--space-4);
  border: 1px solid var(--shell-border);
  border-radius: 4px;
  background: var(--shell-card-bg);
  box-shadow: var(--shell-shadow);
}

.contact-block .section-label {
  margin-bottom: var(--space-2);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: var(--font-medium);
  letter-spacing: -0.01em;
  text-transform: none;
  color: var(--color-muted);
}

.contact-block p {
  margin: 0 0 var(--space-3);
}

.contact-block__group + .contact-block__group {
  margin-top: var(--space-4);
  padding-top: var(--space-4);
  border-top: 1px solid var(--shell-border);
}

.static-page__layout--split .static-page__hero {
  margin-bottom: var(--space-4);
  padding-bottom: 0;
  border-bottom: none;
}

.static-page__layout--split .contact-block {
  position: sticky;
  top: calc(var(--topbar-height, 52px) + var(--space-4));
  align-self: start;
}

@media (max-width: 960px) {
  .static-page__layout--docs,
  .static-page__layout--split {
    grid-template-columns: 1fr;
  }

  .static-page__aside {
    position: static;
  }

  .static-page__sections--grid,
  .pricing-grid,
  .pricing-two-col {
    grid-template-columns: 1fr;
  }

  .static-page__hero {
    padding-bottom: var(--space-4);
    margin-bottom: var(--space-4);
  }

  .static-page__title {
    font-size: clamp(1.375rem, 5vw, 1.75rem);
    text-wrap: balance;
  }

  .static-page__lead {
    font-size: var(--text-sm);
    text-wrap: pretty;
  }

  .pricing-hero__intro {
    max-width: none;
  }

  .pricing-table th {
    width: 42%;
  }

  .pricing-footer-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .pricing-footer-cta .btn--block {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .page-content.static-page {
    padding: var(--space-3);
  }

  .static-page__hero-intro {
    gap: var(--space-2);
  }

  .static-page__sections {
    gap: var(--space-4);
  }

  .pricing-card,
  .guide-card {
    padding: var(--space-3);
  }
}

/* Interview prep guides hub + sample blocks */
.page-content--guides .static-page__layout {
  max-width: none;
}

.guide-hub {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.guide-hub__category-title {
  margin: 0 0 var(--space-2);
  font-family: var(--font-stack-heading);
  font-size: var(--text-md);
  font-weight: var(--font-medium);
  letter-spacing: -0.02em;
  color: var(--color-black);
}

.guide-hub__category-desc {
  margin: 0 0 var(--space-4);
  font-size: var(--text-sm);
  line-height: 1.6;
  color: var(--shell-chrome-muted);
}

.guide-hub__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-3);
}

.guide-card {
  padding: var(--space-4);
  border: 1px solid var(--shell-border);
  border-radius: 4px;
  background: var(--shell-card-bg);
  box-shadow: var(--shell-shadow);
}

.guide-card__title {
  margin: 0 0 var(--space-2);
  font-family: var(--font-stack-heading);
  font-size: var(--text-sm);
  font-weight: var(--font-medium);
  line-height: 1.4;
  letter-spacing: -0.01em;
}

.guide-card__title a {
  color: var(--color-black);
  text-decoration: none;
}

.guide-card__title a:hover {
  text-decoration: underline;
}

.guide-card__text {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
  color: var(--shell-chrome-muted);
}

.guide-samples-section .guide-disclaimer {
  margin: 0 0 var(--space-4);
  font-size: var(--text-sm);
  line-height: 1.6;
  color: var(--shell-chrome-muted);
}

.guide-samples {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.guide-sample {
  padding: var(--space-3) var(--space-4);
  border: 1px solid var(--shell-border);
  border-radius: 4px;
  background: var(--shell-card-bg);
}

.guide-sample__label {
  margin: 0 0 var(--space-2);
  font-size: 11px;
  font-weight: var(--font-medium);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--shell-chrome-muted);
}

.guide-sample__question {
  margin: 0 0 var(--space-2);
  font-size: var(--text-sm);
  font-weight: var(--font-medium);
  line-height: 1.55;
  color: var(--color-body);
}

.guide-sample__outline {
  margin: 0;
  font-size: var(--text-sm);
  line-height: 1.6;
  color: var(--shell-chrome-muted);
}

.guide-related {
  margin: 0;
  font-size: var(--text-sm);
  line-height: 1.65;
}

.guide-related a {
  color: var(--color-body);
}

/* Breadcrumb */
.guide-breadcrumb {
  width: 100%;
  margin: 0 0 var(--space-3);
}

.guide-breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.45rem;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.8125rem;
  line-height: 1.4;
  color: var(--shell-chrome-muted);
}

.guide-breadcrumb__item:not(:last-child)::after {
  content: "/";
  margin-left: 0.45rem;
  opacity: 0.55;
}

.guide-breadcrumb a {
  color: var(--shell-chrome-muted);
  text-decoration: none;
}

.guide-breadcrumb a:hover {
  color: var(--color-body);
  text-decoration: underline;
}

.guide-breadcrumb [aria-current="page"] {
  color: var(--color-body);
}

/* Hub toolbar / jump / search */
.guide-hub__intro p {
  margin: 0 0 var(--space-3);
  font-size: var(--text-sm);
  line-height: 1.65;
  color: var(--color-body);
}

.guide-hub__intro p:last-child {
  margin-bottom: 0;
}

.guide-hub__jump {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.guide-hub__jump-link {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.35rem 0.75rem;
  border: 1px solid var(--shell-border);
  border-radius: 3px;
  background: var(--shell-card-bg);
  color: var(--color-body);
  font-size: 0.8125rem;
  font-weight: var(--font-medium);
  text-decoration: none;
}

.guide-hub__jump-link:hover {
  border-color: color-mix(in srgb, var(--color-body) 28%, var(--shell-border));
}

.guide-hub__toolbar {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  padding: var(--space-4);
  border: 1px solid var(--shell-border);
  border-radius: 4px;
  background: var(--shell-card-bg);
}

.guide-hub__search-label {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.guide-hub__search {
  width: 100%;
  min-height: 2.5rem;
  padding: 0.55rem 0.85rem;
  border: 1px solid var(--shell-border);
  border-radius: 4px;
  background: var(--shell-frame-bg, var(--color-white, #fff));
  color: var(--color-body);
  font-family: var(--font-body);
  font-size: var(--text-sm);
}

.guide-hub__search:focus {
  outline: 2px solid color-mix(in srgb, var(--color-body) 22%, transparent);
  outline-offset: 1px;
}

.guide-hub__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.guide-hub__filter {
  min-height: 2rem;
  padding: 0.3rem 0.7rem;
  border: 1px solid var(--shell-border);
  border-radius: 999px;
  background: transparent;
  color: var(--shell-chrome-muted);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: var(--font-medium);
  cursor: pointer;
}

.guide-hub__filter.is-active,
.guide-hub__filter:hover {
  color: var(--color-body);
  border-color: color-mix(in srgb, var(--color-body) 30%, var(--shell-border));
  background: color-mix(in srgb, var(--color-body) 4%, transparent);
}

.guide-hub__status {
  margin: 0;
  font-size: 0.75rem;
  line-height: 1.45;
  color: var(--shell-chrome-muted);
}

.guide-hub__category[hidden],
.guide-card[hidden] {
  display: none !important;
}

.guide-hub__cta p {
  margin: 0 0 var(--space-3);
  font-size: var(--text-sm);
  line-height: 1.65;
}

/* Round map */
.guide-round-map {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.guide-round-map__row {
  display: grid;
  grid-template-columns: minmax(7rem, 11rem) minmax(0, 1fr);
  gap: var(--space-3);
  padding: var(--space-3) 0;
  border-bottom: 1px solid color-mix(in srgb, var(--shell-border) 85%, transparent);
}

.guide-round-map__row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.guide-round-map__row dt {
  margin: 0;
  font-size: var(--text-sm);
  font-weight: var(--font-medium);
  color: var(--color-body);
}

.guide-round-map__row dd {
  margin: 0;
  font-size: var(--text-sm);
  line-height: 1.6;
  color: var(--shell-chrome-muted);
}

/* Playbook */
.guide-playbook {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.guide-playbook__step {
  display: grid;
  grid-template-columns: 1.75rem minmax(0, 1fr);
  gap: var(--space-3);
  align-items: start;
}

.guide-playbook__index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 3px;
  background: color-mix(in srgb, var(--color-body) 8%, var(--shell-card-bg));
  font-size: 0.75rem;
  font-weight: var(--font-medium);
  color: var(--shell-chrome-muted);
}

.guide-playbook__name {
  margin: 0 0 0.25rem;
  font-size: var(--text-sm);
  font-weight: var(--font-medium);
  color: var(--color-body);
}

.guide-playbook__text {
  margin: 0;
  font-size: var(--text-sm);
  line-height: 1.6;
  color: var(--shell-chrome-muted);
}

/* FAQ */
.guide-faq {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.guide-faq__item {
  padding: var(--space-3) var(--space-4);
  border: 1px solid var(--shell-border);
  border-radius: 4px;
  background: var(--shell-card-bg);
}

.guide-faq__question {
  cursor: pointer;
  font-size: var(--text-sm);
  font-weight: var(--font-medium);
  line-height: 1.45;
  color: var(--color-body);
  list-style: none;
}

.guide-faq__question::-webkit-details-marker {
  display: none;
}

.guide-faq__answer {
  margin: var(--space-2) 0 0;
  font-size: var(--text-sm);
  line-height: 1.65;
  color: var(--shell-chrome-muted);
}

.page-content--guide-detail .static-page__layout {
  max-width: 860px;
}

.page-content--guide-detail .static-section p {
  margin: 0 0 var(--space-3);
  font-size: var(--text-sm);
  line-height: 1.65;
  color: var(--color-body);
}

.page-content--guide-detail .static-section p:last-child {
  margin-bottom: 0;
}

@media (max-width: 720px) {
  .guide-hub__grid {
    grid-template-columns: 1fr;
  }

  .guide-round-map__row {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }
}

/* Guides hub — same tile, type, and rail as kit Role clarity / Learn */
.guides-hub-page .kit-surface-panel__header .kit-panel-header__section {
  width: 100%;
  max-width: none;
  margin-inline: 0;
  align-self: stretch;
  text-align: center;
  text-wrap: wrap;
}

.guides-hub-page .guide-hub__category-desc {
  width: 100%;
  max-width: none;
  margin: 0.15rem 0 var(--space-3);
  font-size: var(--role-body-size, var(--kit-fs-body));
  font-weight: var(--font-regular);
  line-height: 1.55;
  letter-spacing: -0.01em;
  text-wrap: wrap;
  color: var(--kit-font-content-body, var(--role-muted, var(--shell-chrome-muted)));
}

.guides-hub-page .guide-hub__toolbar {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin: var(--space-4) 0 0;
  padding: 0;
  border: none;
  background: transparent;
  box-shadow: none;
}

.guides-hub-page .guide-hub__search {
  width: 100%;
  min-height: 2.75rem;
  padding: 0.55rem 0.85rem;
  border: 1px solid var(--kit-tile-hairline, var(--shell-chrome-hairline));
  border-radius: 4px;
  background: var(--shell-bg);
  color: var(--kit-font-content-body, var(--color-body));
  font-family: var(--font-body);
  font-size: var(--kit-fs-body);
  line-height: 1.45;
  letter-spacing: -0.01em;
}

.guides-hub-page .guide-hub__search:focus {
  outline: 2px solid color-mix(in srgb, var(--shell-chrome-fg) 22%, transparent);
  outline-offset: 1px;
}

.guides-hub-page .guide-hub__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.guides-hub-page .guide-hub__filter {
  min-height: 2rem;
  padding: 0.3rem 0.7rem;
  border: 1px solid var(--kit-tile-hairline, var(--shell-chrome-hairline));
  border-radius: 4px;
  background: transparent;
  color: var(--kit-font-content-body, var(--shell-chrome-muted));
  font-family: var(--font-body);
  font-size: var(--kit-fs-md);
  font-weight: var(--font-regular);
  letter-spacing: -0.01em;
  cursor: pointer;
}

.guides-hub-page .guide-hub__filter.is-active,
.guides-hub-page .guide-hub__filter:hover {
  background: var(--kit-font-content-heading, #0a0a0a);
  color: #ffffff !important;
  border-color: var(--kit-font-content-heading, #0a0a0a);
}

[data-theme="dark"] .guides-hub-page .guide-hub__filter.is-active,
[data-theme="dark"] .guides-hub-page .guide-hub__filter:hover {
  background: #ececec;
  color: #0a0a0a !important;
  border-color: #ececec;
}

.guides-hub-page .guide-hub__status {
  margin: 0;
  font-size: var(--kit-fs-md);
  line-height: 1.45;
  color: var(--kit-font-content-body, var(--shell-chrome-muted));
}

.guides-hub-page .kit-role-detail__content a {
  color: var(--kit-font-content-heading, var(--role-fg));
}

.guides-hub-page [data-guide-card][hidden] {
  display: none;
}
