:root {
  --cream: #f4f0e8;
  --ink: #142033;
  --ink-soft: #3d4a5c;
  --line: #d8d0c2;
  --white: #fffcf7;
  --gold: #9a7b3c;
  --navy: #10233a;
  --shadow: 0 18px 40px rgba(16, 35, 58, 0.06);
  --radius: 18px;
  --nav-height: 72px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "DM Sans", system-ui, sans-serif;
  line-height: 1.5;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

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

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0;
}

p {
  margin: 0;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(244, 240, 232, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  position: relative;
  max-width: 1120px;
  margin: 0 auto;
  min-height: var(--nav-height);
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink-soft);
}

.nav-links a:hover {
  color: var(--ink);
}

.nav-signin,
.nav-links button.nav-signin {
  padding: 10px 18px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  color: var(--ink) !important;
  background: transparent;
  font: inherit;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
}

.nav-signin:hover,
.nav-links button.nav-signin:hover,
.nav-links button.nav-signin:hover {
  background: var(--navy);
  color: var(--white) !important;
}

.site-status {
  margin: 0;
  padding: 12px 24px;
  border-bottom: 1px solid var(--line);
  background: var(--white);
  color: var(--navy);
  font-weight: 600;
  text-align: center;
}

.site-status[hidden] {
  display: none;
}

.page-loading {
  max-width: 42rem;
  color: var(--ink-soft);
}

.job-detail > .page-loading {
  margin: 0;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  cursor: pointer;
}

.menu-icon {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 18px;
  height: 14px;
  margin: 0 auto;
}

.menu-icon span {
  display: block;
  height: 1.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-icon.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.menu-icon.open span:nth-child(2) {
  opacity: 0;
}

.menu-icon.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

main {
  flex: 1;
}

.hero {
  max-width: 1120px;
  margin: 0 auto;
  padding: 88px 24px 56px;
}

.eyebrow {
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 16ch;
  font-size: clamp(2.4rem, 6vw, 4.4rem);
}

.lede {
  max-width: 42rem;
  margin-top: 24px;
  color: var(--ink-soft);
  font-size: 1.15rem;
}

.paths {
  max-width: 1120px;
  margin: 0 auto;
  padding: 24px 24px 96px;
}

.paths-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.paths-header h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
}

.paths-header p {
  max-width: 28rem;
  color: var(--ink-soft);
}

.path-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.path-card {
  scroll-margin-top: calc(var(--nav-height) + 16px);
  min-height: 240px;
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.path-card:hover {
  border-color: #cfc6b4;
  transform: translateY(-2px);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.path-label {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.path-card h3 {
  font-size: 1.65rem;
}

.path-card p:last-child {
  color: var(--ink-soft);
  max-width: 34ch;
}

.footer {
  border-top: 1px solid var(--line);
  padding: 24px;
  text-align: center;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 20px;
  margin-top: 10px;
}

.footer-links a {
  color: var(--ink-soft);
  font-weight: 500;
}

.footer-links a:hover,
.footer-links a[aria-current="page"] {
  color: var(--ink);
}

.hero .analyzer-disclaimer {
  margin-top: 20px;
  max-width: 42rem;
  text-align: left;
}

.jobs-hero h1 {
  max-width: 14ch;
}

.own-hero h1 {
  max-width: 16ch;
}

.own-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.own-actions .job-apply {
  margin-top: 0;
}

.own-actions .listing-compare,
.own-panel .listing-compare {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.own-board {
  max-width: 1120px;
  margin: 0 auto;
  padding: 8px 24px 96px;
  display: grid;
  gap: 20px;
}

.own-panel {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.own-panel h2 {
  margin-bottom: 12px;
  font-size: 1.45rem;
}

.own-panel > p {
  max-width: 42rem;
  color: var(--ink-soft);
}

.own-preview-stats {
  margin-top: 22px;
}

.own-preview-stats dd {
  color: var(--ink-soft);
  font-weight: 500;
}

.own-panel .listing-compare {
  margin-top: 22px;
}

.own-panel-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 22px;
}

.own-panel-actions .listing-compare {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 0;
  flex: none;
  height: auto;
  min-height: 44px;
  padding: 12px 16px;
  text-align: center;
  line-height: 1.3;
  white-space: normal;
}

.listing-status {
  display: inline-block;
  margin: 0 0 8px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.my-listing-card h2 {
  font-size: 1.65rem;
}

.my-listings-empty .job-apply {
  margin-top: 22px;
}

.buy-dashboard-link {
  margin-top: 20px;
}

.buy-dashboard-link a {
  font-weight: 600;
}

.buy-dashboard-link a:hover {
  color: var(--gold);
}

.dashboard {
  max-width: 1120px;
  margin: 0 auto;
  padding: 8px 24px 96px;
  display: grid;
  gap: 40px;
}

.dashboard-section h2,
.dashboard-next h2 {
  margin-bottom: 16px;
  font-size: 1.45rem;
}

.dashboard-section-lede {
  margin: -4px 0 16px;
  max-width: 42rem;
  color: var(--ink-soft);
}

.dashboard-section .job-apply {
  margin-top: 20px;
}

.dashboard-next {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.dashboard-next p:not(.eyebrow) {
  max-width: 42rem;
  color: var(--ink-soft);
}

.dashboard-next .job-apply {
  margin-top: 22px;
}

.next-move-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.next-move-card {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: grid;
  gap: 12px;
  align-content: start;
}

.next-move-card h3 {
  font-size: 1.45rem;
}

.next-move-card p {
  color: var(--ink-soft);
}

.next-move-card .job-apply {
  margin-top: 8px;
  justify-self: start;
}

.buying-goal-panel {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.buying-goal-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.buying-goal-stats {
  margin-top: 22px;
}

.buying-goal-progress {
  margin-top: 22px;
}

.buying-goal-progress h3 {
  font-size: 1.25rem;
}

.buying-goal-milestones-block {
  margin-top: 28px;
}

.buying-goal-milestones-block h3 {
  margin-bottom: 8px;
  font-size: 1.25rem;
}

.buying-goal-milestones-block > p {
  margin-bottom: 16px;
  max-width: 42rem;
  color: var(--ink-soft);
}

.buying-goal-milestones {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.buying-goal-milestones li {
  display: grid;
  gap: 6px;
  padding: 16px 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--cream);
  text-align: center;
}

.buying-goal-milestones li p:nth-child(2) {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 600;
}

.buying-goal-milestones [data-milestone-state] {
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.buying-goal-milestones li.is-reached {
  border-color: var(--navy);
  background: var(--white);
}

.buying-goal-milestones li.is-reached [data-milestone-state] {
  color: var(--gold);
}

.buying-goal-afford {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.buying-goal-afford h3 {
  margin: 6px 0 12px;
  font-size: 1.45rem;
}

.buying-goal-afford p {
  max-width: 42rem;
  color: var(--ink-soft);
}

.buying-goal-caution {
  margin-top: 14px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--cream);
  color: var(--ink);
}

.buying-goal-afford .buying-goal-caution {
  color: var(--ink);
}

.manage-hero h1 {
  max-width: 18ch;
}

.bought-hero h1 {
  max-width: 16ch;
}

.bought-progress {
  margin-top: 8px;
  margin-bottom: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.next-move-card .dd-section-header {
  width: 100%;
}

.next-move-card p.path-label {
  color: var(--gold);
}

.next-move-card .dd-section-count {
  color: var(--gold);
}

.next-move-card .dd-checklist {
  margin-top: 4px;
  width: 100%;
}

#create-job {
  scroll-margin-top: calc(var(--nav-height) + 16px);
}

.manage-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.manage-card {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: grid;
  gap: 10px;
}

.manage-card h3 {
  font-size: 1.45rem;
}

.manage-card p:last-child {
  color: var(--ink-soft);
}

a.manage-card {
  color: inherit;
  text-decoration: none;
}

a.manage-card:hover {
  border-color: #cfc6b4;
  transform: translateY(-2px);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.manage-next-list {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

.manage-next-list li {
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--cream);
}

.manage-next-list h3 {
  margin: 6px 0 8px;
  font-size: 1.2rem;
}

.manage-next-list p:last-child {
  color: var(--ink-soft);
}

.jobs-board,
.buy-board {
  max-width: 1120px;
  margin: 0 auto;
  padding: 8px 24px 48px;
}

.buy-board {
  padding-bottom: 96px;
}

.job-search {
  display: grid;
  grid-template-columns: 1.4fr 1fr auto;
  gap: 12px;
  margin-bottom: 28px;
  padding: 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

#business-search .job-search {
  margin-bottom: 14px;
}

.job-search-field input {
  width: 100%;
  height: 48px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--cream);
  color: var(--ink);
  font: inherit;
}

.job-search-field input::placeholder {
  color: #7a8492;
}

.job-search-field input:focus {
  outline: 2px solid var(--navy);
  outline-offset: 1px;
}

.job-search-submit {
  height: 48px;
  padding: 0 22px;
  border: 0;
  border-radius: 12px;
  background: var(--navy);
  color: var(--white);
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
}

.job-search-submit:hover {
  background: #0c1b2d;
}

.buy-filters {
  margin-bottom: 28px;
  padding: 18px 16px 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.buy-filters h2 {
  margin-bottom: 8px;
  font-size: 1.15rem;
}

.buy-filters-lede {
  margin-bottom: 14px;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.buy-filters-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 12px;
}

.buy-filter {
  display: grid;
  gap: 6px;
}

.buy-filter span {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink-soft);
}

.buy-filter-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.buy-filter input,
.buy-filter select {
  width: 100%;
  height: 48px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--cream);
  color: var(--ink);
  font: inherit;
}

.buy-filter select {
  padding-right: 36px;
}

.buy-filter input:focus,
.buy-filter select:focus {
  outline: 2px solid var(--navy);
  outline-offset: 1px;
}

.buy-results-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: end;
  gap: 12px 20px;
  margin-bottom: 16px;
}

.buy-results-copy {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 16px;
}

.buy-results-copy p {
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.buy-clear-filters {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--navy);
  font: inherit;
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
}

.buy-clear-filters:hover {
  color: var(--gold);
}

.buy-clear-filters[hidden] {
  display: none;
}

.buy-sort {
  width: min(280px, 100%);
}

.job-list {
  display: grid;
  gap: 14px;
}

.job-card,
.business-card {
  padding: 24px 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: block;
  color: inherit;
}

.job-card > a {
  color: inherit;
  text-decoration: none;
  display: block;
}

.job-card:hover,
a.business-card:hover {
  border-color: #cfc6b4;
  transform: translateY(-2px);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.business-card .job-apply {
  margin-top: 20px;
  height: 44px;
}

.listing-card {
  display: grid;
  gap: 0;
}

.listing-location {
  margin-top: 6px;
  color: var(--ink-soft);
}

.listing-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px 18px;
  margin: 16px 0 0;
  padding: 16px 0 0;
  border-top: 1px solid var(--line);
}

.listing-stats div {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.listing-stats dt {
  color: var(--ink-soft);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.listing-stats dd {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.22rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.listing-score-max {
  margin-left: 2px;
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-weight: 500;
}

.listing-score-grade {
  display: block;
  margin-top: 4px;
  color: var(--gold);
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.listing-score[data-label="Needs Review"] .listing-score-grade {
  color: #8a3b32;
}

.listing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.listing-actions .job-apply {
  margin-top: 0;
  flex: 1;
}

.listing-compare,
.listing-save {
  height: 44px;
  padding: 0 22px;
  border: 1px solid var(--navy);
  border-radius: 12px;
  background: transparent;
  color: var(--navy);
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  flex: 1;
}

a.listing-compare {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-sizing: border-box;
}

.listing-compare:hover,
.listing-save:hover {
  background: rgba(16, 35, 58, 0.06);
}

.listing-compare.is-selected,
.listing-save.is-selected {
  background: var(--navy);
  color: var(--white);
}

.listing-compare:disabled,
.listing-save:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.compare-bar {
  position: sticky;
  top: 12px;
  z-index: 20;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 20px;
  margin-bottom: 20px;
  padding: 16px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.compare-bar[hidden] {
  display: none;
}

.compare-bar-copy {
  display: grid;
  gap: 4px;
}

.compare-note:empty {
  display: none;
}

.compare-note {
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.compare-bar-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.compare-bar .job-apply {
  margin-top: 0;
}

.compare-bar .job-apply.is-disabled {
  background: #8a94a3;
  pointer-events: none;
}

.compare-table thead th:first-child,
.compare-table tbody th {
  position: sticky;
  left: 0;
  z-index: 1;
  background: var(--white);
}

.compare-page {
  max-width: 1120px;
}

.compare-table-wrap {
  overflow-x: auto;
  margin-top: 28px;
}

.compare-table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
}

.compare-table th,
.compare-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.compare-table thead th {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.15rem;
  font-weight: 600;
}

.compare-table thead a:hover {
  color: var(--gold);
}

.compare-table tbody th {
  width: 11rem;
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.compare-table tbody td {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.05rem;
  font-weight: 600;
}

.job-card h3,
.business-card h3 {
  font-size: 1.35rem;
}

.job-company {
  margin-top: 6px;
  font-weight: 600;
}

.job-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin-top: 12px;
  color: var(--ink-soft);
}

.business-industry {
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.job-card[hidden],
.business-card[hidden] {
  display: none;
}

.jobs-empty {
  margin-top: 8px;
  color: var(--ink-soft);
}

.job-detail {
  flex: 1;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 24px 96px;
}

.back-link {
  display: inline-block;
  margin-bottom: 22px;
  color: var(--ink-soft);
  font-weight: 500;
}

.listing-page-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-bottom: 22px;
}

.listing-page-nav .back-link {
  margin-bottom: 0;
}

.back-link:hover {
  color: var(--ink);
}

.job-detail-panel {
  padding: 36px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.job-detail-panel .business-industry {
  margin: 10px 0 8px;
}

.job-detail-panel h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
}

.job-detail-panel .job-company {
  font-size: 1.05rem;
}

.job-detail-panel .listing-location {
  margin-top: 8px;
}

.business-detail-stats,
.business-detail-facts {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.business-detail-stats {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.business-detail-facts {
  grid-template-columns: 1fr 1fr;
}

.business-detail-stats section,
.business-detail-facts section {
  min-width: 0;
  padding: 16px 18px;
  background: var(--cream);
  border-radius: 14px;
}

.business-detail-stats h2,
.business-detail-facts h2 {
  margin-bottom: 8px;
  color: var(--ink-soft);
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.business-detail-stats p {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.28rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.business-detail-facts p {
  margin: 0;
  color: var(--ink);
  font-size: 0.98rem;
}

.job-section {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.job-section h2 {
  margin-bottom: 12px;
  font-size: 1.25rem;
}

.job-section p,
.job-section li {
  color: var(--ink-soft);
}

.job-section p + p {
  margin-top: 12px;
}

.job-section ul {
  margin: 0;
  padding-left: 1.2rem;
  display: grid;
  gap: 8px;
}

.job-apply {
  margin-top: 32px;
  height: 48px;
  padding: 0 22px;
  border: 0;
  border-radius: 12px;
  background: var(--navy);
  color: var(--white);
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}

a.job-apply {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.job-apply:hover {
  background: #0c1b2d;
}

.analyzer {
  max-width: 960px;
}

.due-diligence .lede {
  margin-top: 16px;
  max-width: 42rem;
}

.dd-snapshot,
.dd-priority {
  margin-top: 28px;
  padding: 24px 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream);
}

.dd-snapshot h2,
.dd-priority h2 {
  font-size: 1.25rem;
}

.dd-snapshot-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.dd-snapshot-stat {
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
}

.dd-snapshot-stat p:last-child {
  margin-top: 6px;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.6rem, 3vw, 2rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.dd-snapshot-reminder {
  margin-top: 16px;
  max-width: 42rem;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.dd-priority-list {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.dd-priority-card {
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
}

.dd-priority-card p:nth-child(2) {
  margin-top: 6px;
}

.dd-priority-link {
  display: inline-block;
  margin-top: 10px;
  color: var(--navy);
  font-weight: 600;
  font-size: 0.92rem;
}

.dd-priority-link:hover {
  color: var(--gold);
}

.dd-priority-empty {
  margin-top: 12px;
  color: var(--ink-soft);
}

.dd-progress {
  display: grid;
  gap: 18px;
  margin-top: 28px;
  padding: 24px 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream);
}

.dd-progress-copy h2 {
  font-size: 1.25rem;
}

.dd-progress-value {
  margin-top: 8px;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.dd-progress-max {
  margin-left: 6px;
  color: var(--ink-soft);
  font-size: 1.05rem;
  font-weight: 500;
}

.dd-progress-label {
  margin-top: 10px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.dd-progress-note {
  margin-top: 10px;
  max-width: 42rem;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.dd-progress-track {
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid var(--line);
}

.dd-progress-fill {
  display: block;
  height: 100%;
  width: 0;
  border-radius: inherit;
  background: var(--navy);
  transition: width 0.2s ease;
}

.dd-section {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.dd-section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.dd-section-header h2 {
  font-size: 1.25rem;
}

.dd-section-count {
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.dd-section-intro {
  margin-top: 8px;
  color: var(--ink-soft);
}

.dd-industry-label {
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.dd-checklist {
  margin-top: 16px;
  display: grid;
}

.dd-item {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  align-items: start;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  scroll-margin-top: calc(var(--nav-height) + 16px);
}

.dd-item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.dd-item span {
  color: var(--ink);
}

.dd-item:has(input:checked) span {
  color: var(--ink-soft);
}

#request-info .dd-item:has(input:checked) span {
  color: var(--ink);
}

.dd-item input {
  appearance: none;
  width: 20px;
  height: 20px;
  margin: 2px 0 0;
  flex-shrink: 0;
  border: 1.5px solid var(--ink);
  border-radius: 6px;
  background: var(--white);
  cursor: pointer;
  scroll-margin-top: calc(var(--nav-height) + 16px);
}

.dd-item input:checked {
  border-color: var(--navy);
  background-color: var(--navy);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23fffcf7' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3.5 8.2 6.4 11.2 12.5 4.8'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 14px 14px;
}

.dd-item input:focus-visible {
  outline: 2px solid var(--navy);
  outline-offset: 2px;
}

.dd-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.dd-actions .job-apply {
  margin-top: 0;
}

.dd-actions .listing-compare {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.financing-balance {
  margin: 0;
  min-height: 1.4em;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.financing-scenarios {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

#financing-reset {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 4px;
}

.deal-score {
  display: grid;
  grid-template-columns: minmax(160px, 0.7fr) 1.3fr;
  gap: 28px;
  align-items: start;
  margin-top: 28px;
  padding: 24px 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream);
}

.deal-score-summary h2 {
  font-size: 1.25rem;
}

.deal-score-value {
  margin-top: 8px;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(2.6rem, 5vw, 3.4rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1;
}

.deal-score-max {
  margin-left: 4px;
  color: var(--ink-soft);
  font-size: 1.05rem;
  font-weight: 500;
}

.deal-score-label {
  margin-top: 10px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.deal-score[data-label="Needs Review"] .deal-score-label {
  color: #8a3b32;
}

.deal-score-note {
  margin-top: 10px;
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.deal-score-reasons {
  margin: 6px 0 0;
  padding-left: 1.15rem;
  display: grid;
  gap: 10px;
  color: var(--ink-soft);
}

.deal-score-reasons .helps::marker {
  color: var(--gold);
}

.deal-score-reasons .hurts::marker {
  color: #8a3b32;
}

.analyzer-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  align-items: start;
}

.analyzer-form,
.analyzer-results {
  display: grid;
  gap: 14px;
}

.analyzer-form h2,
.analyzer-results h2 {
  font-size: 1.25rem;
}

.analyzer-field {
  display: grid;
  gap: 6px;
}

.analyzer-field span {
  font-size: 0.92rem;
  font-weight: 600;
}

.analyzer-field input,
.analyzer-field select,
.analyzer-field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--cream);
  color: var(--ink);
  font: inherit;
}

.analyzer-field input,
.analyzer-field select {
  height: 48px;
  padding: 0 16px;
}

.analyzer-field input[type="file"] {
  height: auto;
  padding: 12px 16px;
  background: var(--white);
}

.analyzer-field textarea {
  min-height: 120px;
  padding: 12px 16px;
  resize: vertical;
}

.analyzer-field textarea.listing-description {
  min-height: 160px;
}

.analyzer-field input:focus,
.analyzer-field select:focus,
.analyzer-field textarea:focus {
  outline: 2px solid var(--navy);
  outline-offset: 1px;
}

.analyzer-field input.is-invalid,
.analyzer-field select.is-invalid,
.analyzer-field textarea.is-invalid {
  border-color: #8a3b32;
}

.listing-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 28px;
}

.listing-form .listing-field-wide {
  grid-column: 1 / -1;
}

.listing-city-state {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 120px;
  gap: 8px;
}

.listing-form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.listing-form-actions .job-apply,
.listing-form-actions .listing-compare {
  margin-top: 0;
  flex: 1;
}

.listing-clear-draft {
  flex-basis: 100%;
  width: auto;
  height: auto;
  padding: 6px 0;
  border: 0;
  background: transparent;
  color: var(--ink-soft);
  font: inherit;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
}

.listing-clear-draft:hover {
  color: var(--ink);
}

.listing-draft-status {
  grid-column: 1 / -1;
  margin: 0;
  min-height: 1.4em;
  color: var(--navy);
  font-weight: 600;
}

.listing-draft-status:not(:empty) {
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--cream);
}

.listing-draft-status.is-cleared {
  color: var(--ink-soft);
  font-weight: 500;
}

.listing-draft-status.is-error {
  color: #8a3b32;
}

.listing-draft-note {
  margin: 0 0 18px;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--cream);
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.listing-draft-note + .analyzer-disclaimer {
  margin-top: 12px;
}

.listing-preview-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.listing-preview-actions .job-apply,
.listing-preview-actions .listing-compare {
  margin-top: 0;
  flex: 0 0 auto;
}

.analyzer-results-lede {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.analyzer-results dl {
  margin: 0;
  display: grid;
  gap: 4px;
}

.analyzer-result {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.analyzer-result:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.analyzer-result dt {
  font-weight: 600;
}

.analyzer-result dd {
  margin: 6px 0 8px;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.7rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.analyzer-result dd.is-negative {
  color: #8a3b32;
}

.analyzer-result p {
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.analyzer-result-note {
  margin-top: 6px;
  color: var(--ink);
}

.analyzer-disclaimer {
  margin-top: 28px;
  padding: 16px 18px;
  border-radius: 12px;
  background: var(--cream);
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.job-detail-panel > .analyzer-disclaimer:first-of-type {
  margin-top: 16px;
}

.deal-challenge {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.deal-challenge h2 {
  font-size: 1.25rem;
}

.deal-challenge-lede {
  margin-top: 10px;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.deal-challenge .job-apply {
  margin-top: 18px;
}

.deal-challenge-summary {
  margin-top: 22px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--cream);
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.deal-challenge-block {
  margin-top: 22px;
}

.deal-challenge-block h3 {
  font-size: 1.15rem;
}

.deal-challenge-block .deal-challenge-list {
  margin-top: 12px;
}

.deal-challenge-note {
  margin-top: 18px;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.deal-challenge-list {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

.deal-challenge-list li {
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--cream);
}

.deal-challenge-kicker {
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.deal-challenge-kicker:not(:first-child) {
  margin-top: 12px;
}

.deal-challenge-list p:last-child {
  color: var(--ink-soft);
}

.deal-change {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.deal-change h2 {
  font-size: 1.25rem;
}

.deal-change-scenarios {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 20px;
}

.deal-change-card {
  display: grid;
  gap: 10px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--cream);
}

.deal-change-card h3 {
  font-size: 1.15rem;
}

.deal-change-card p {
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.deal-change-current {
  color: var(--ink) !important;
  font-size: 0.9rem;
  font-weight: 600;
}

.deal-change-card .listing-compare {
  width: 100%;
  margin-top: 4px;
}

.deal-change-impact {
  margin-top: 22px;
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream);
}

.deal-change-impact h3 {
  font-size: 1.15rem;
}

.deal-change-impact-lede {
  margin-top: 8px;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.deal-change-metrics {
  margin: 16px 0 0;
  display: grid;
  gap: 12px;
}

.deal-change-metric {
  display: grid;
  grid-template-columns: minmax(8rem, 0.9fr) 1.1fr;
  gap: 12px;
  align-items: baseline;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.deal-change-metric:first-child {
  padding-top: 0;
  border-top: 0;
}

.deal-change-metric dt {
  font-size: 0.92rem;
  font-weight: 600;
}

.deal-change-metric dd {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 10px;
  align-items: baseline;
}

.deal-change-now {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 600;
}

.deal-change-was {
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.deal-change-delta {
  font-size: 0.88rem;
  font-weight: 600;
}

.deal-change-metric[data-direction="better"] .deal-change-delta {
  color: var(--gold);
}

.deal-change-metric[data-direction="worse"] .deal-change-delta {
  color: #8a3b32;
}

.deal-change-metric[data-direction="same"] .deal-change-now {
  color: var(--ink);
}

#deal-change-reset {
  margin-top: 16px;
}

.back-link-bottom {
  display: block;
  margin-top: 20px;
}

.bigger-goal {
  max-width: 1120px;
  margin: 0 auto;
  padding: 8px 24px 96px;
}

.bigger-goal-copy {
  max-width: 42rem;
  margin-bottom: 28px;
}

.bigger-goal-copy h2 {
  margin-bottom: 14px;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
}

.bigger-goal-copy p:last-child {
  color: var(--ink-soft);
}

.goal-path {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.goal-path li {
  display: flex;
  flex: 1;
  align-items: center;
  min-width: 0;
}

.goal-path li:not(:last-child)::after {
  content: "→";
  flex: 0 0 auto;
  margin: 0 8px;
  color: var(--gold);
  font-size: 1.15rem;
  font-weight: 600;
}

.goal-step {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 8px;
  min-height: 108px;
  padding: 16px 12px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
  text-align: center;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.25;
}

.goal-step-label {
  color: var(--gold);
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.goal-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 22px;
  border-radius: 12px;
  background: var(--navy);
  color: var(--white);
  font-weight: 600;
}

.goal-cta:hover {
  background: #0c1b2d;
}

@media (max-width: 980px) {
  .goal-path {
    flex-direction: column;
  }

  .goal-path li {
    flex-direction: column;
  }

  .goal-path li:not(:last-child)::after {
    content: "↓";
    margin: 8px 0;
  }

  .goal-step {
    width: 100%;
    min-height: 0;
  }

  .goal-cta {
    width: 100%;
  }
}

@media (max-width: 800px) {
  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: calc(var(--nav-height) + 1px);
    left: 0;
    right: 0;
    padding: 12px 24px 24px;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 12px 4px;
  }

  .nav-signin {
    text-align: center;
    margin-top: 8px;
  }

  .hero {
    padding: 56px 20px 40px;
  }

  .paths {
    padding: 8px 20px 72px;
  }

  .paths-header {
    flex-direction: column;
    align-items: start;
  }

  .path-grid {
    grid-template-columns: 1fr;
  }

  .path-card {
    min-height: 0;
    padding: 28px 24px;
  }

  .jobs-board,
  .buy-board {
    padding: 8px 20px 36px;
  }

  .buy-board {
    padding-bottom: 72px;
  }

  .dashboard {
    padding: 8px 20px 72px;
    gap: 32px;
  }

  .own-board {
    padding: 8px 20px 72px;
  }

  .own-panel {
    padding: 24px 20px;
  }

  .own-panel-actions {
    grid-template-columns: 1fr;
  }

  .dashboard-next {
    padding: 24px 20px;
  }

  .buying-goal-panel {
    padding: 24px 20px;
  }

  .buying-goal-form {
    grid-template-columns: 1fr;
  }

  .buying-goal-milestones {
    grid-template-columns: 1fr 1fr;
  }

  .next-move-grid {
    grid-template-columns: 1fr;
  }

  .next-move-card {
    padding: 24px 20px;
  }

  .next-move-card .job-apply {
    width: 100%;
    justify-self: stretch;
  }

  .manage-grid {
    grid-template-columns: 1fr;
  }

  .manage-card {
    padding: 24px 20px;
  }

  .job-search {
    grid-template-columns: 1fr;
    padding: 14px;
  }

  .job-search-submit {
    width: 100%;
  }

  .buy-filters-grid {
    grid-template-columns: 1fr;
  }

  .buy-results-bar {
    align-items: stretch;
  }

  .buy-sort {
    width: 100%;
  }

  .job-card,
  .business-card {
    padding: 22px 20px;
  }

  .listing-stats {
    grid-template-columns: 1fr 1fr;
  }

  .listing-actions .job-apply,
  .listing-compare,
  .listing-save,
  .compare-bar .job-apply,
  .compare-bar .listing-compare,
  .own-actions .job-apply,
  .own-actions .listing-compare,
  .own-panel-actions .listing-compare,
  .my-listing-card .listing-clear-draft {
    width: 100%;
  }

  .own-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .own-actions .job-apply,
  .own-actions .listing-compare {
    flex: none;
    height: auto;
    min-height: 44px;
    padding: 12px 16px;
    text-align: center;
    justify-content: center;
  }

  .compare-bar {
    align-items: stretch;
  }

  .compare-bar-actions {
    width: 100%;
  }

  .job-detail {
    padding: 28px 20px 72px;
  }

  .job-detail-panel {
    padding: 24px 20px;
  }

  .dd-progress {
    padding: 20px;
  }

  .dd-snapshot,
  .dd-priority {
    padding: 20px;
  }

  .dd-snapshot-stats {
    grid-template-columns: 1fr;
  }

  .dd-section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .dd-actions .job-apply,
  .dd-actions .listing-compare {
    width: 100%;
  }

  .business-detail-stats,
  .business-detail-facts {
    grid-template-columns: 1fr;
  }

  .job-apply {
    width: 100%;
  }

  .listing-form,
  .analyzer-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .listing-form {
    gap: 14px;
  }

  .listing-city-state {
    grid-template-columns: 1fr;
  }

  .listing-form-actions .job-apply,
  .listing-form-actions .listing-compare,
  .listing-preview-actions .job-apply,
  .listing-preview-actions .listing-compare {
    width: 100%;
  }

  .deal-score {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 20px;
  }

  .deal-challenge-list li {
    padding: 16px;
  }

  .deal-change-scenarios {
    grid-template-columns: 1fr;
  }

  .financing-scenarios {
    grid-template-columns: 1fr;
  }

  .deal-change-metric {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  #deal-change-reset {
    width: 100%;
  }

  .bigger-goal {
    padding: 8px 20px 72px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    max-width: none;
  }

  .lede {
    font-size: 1.05rem;
  }
}
