:root {
  --bg: #f7fbf8;
  --surface: #ffffff;
  --surface-strong: #eef6f2;
  --ink: #18201c;
  --muted: #56645d;
  --line: #dce6df;
  --green: #227c57;
  --green-dark: #14583d;
  --blue: #235d8f;
  --coral: #d25b45;
  --yellow: #f1b84b;
  --shadow: 0 18px 45px rgba(22, 45, 34, 0.11);
  --radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    linear-gradient(180deg, #f7fbf8 0%, #ffffff 52%, #f3f8f5 100%);
  color: var(--ink);
}

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

button,
input,
select {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  z-index: 10;
  padding: 10px 14px;
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius);
}

.skip-link:focus {
  top: 12px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 5;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  width: 100%;
  padding: 12px clamp(18px, 5vw, 56px);
  background: rgba(247, 251, 248, 0.92);
  border-bottom: 1px solid rgba(220, 230, 223, 0.8);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 7px;
  background: var(--green);
  color: #fff;
  font-weight: 900;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(12px, 3vw, 28px);
  color: var(--muted);
  font-size: 0.96rem;
}

.main-nav a,
.site-footer a {
  border-bottom: 1px solid transparent;
}

.main-nav a:hover,
.site-footer a:hover {
  border-color: currentColor;
}

.legal-topline {
  display: flex;
  justify-content: flex-end;
  gap: 14px;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 8px 0 0;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 750;
}

.legal-topline a {
  border-bottom: 1px solid currentColor;
}

.header-action,
.primary-action,
.secondary-action,
.add-item-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: var(--radius);
  font-weight: 800;
  line-height: 1;
}

.header-action {
  padding: 0 16px;
  background: var(--ink);
  color: #fff;
}

.hero-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(20px, 3vw, 32px);
  align-items: start;
  width: min(1180px, calc(100% - 36px));
  min-height: auto;
  margin: 0 auto;
  padding: clamp(24px, 4vw, 44px) 0 clamp(18px, 3vw, 30px);
}

.hero-copy {
  max-width: 920px;
  padding-top: 6px;
}

.eyebrow,
.panel-kicker {
  margin: 0 0 12px;
  color: var(--green-dark);
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 15ch;
  margin: 0;
  font-size: clamp(3rem, 6vw, 5.7rem);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 1.22rem;
  line-height: 1.15;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 620px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.32rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.primary-action,
.secondary-action {
  padding: 0 18px;
}

.primary-action {
  background: var(--green);
  color: #fff;
}

.secondary-action {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
}

.trust-list li {
  min-height: 32px;
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
}

.audience-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.audience-strip div {
  min-height: 78px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
}

.audience-strip span,
.role-label {
  display: block;
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.audience-strip strong {
  display: block;
  margin-top: 8px;
  font-size: 1rem;
  line-height: 1.2;
}

.checklist-panel,
.dashboard-preview {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.checklist-panel {
  width: 100%;
  scroll-margin-top: 86px;
  padding: clamp(16px, 2.4vw, 22px);
}

.panel-header,
.dashboard-toolbar,
.progress-wrap,
.input-row,
.check-item,
.status-controls,
.site-footer {
  display: flex;
  align-items: center;
}

.panel-header,
.progress-wrap,
.dashboard-toolbar,
.site-footer {
  justify-content: space-between;
  gap: 16px;
}

.panel-header h2 {
  font-size: clamp(1.7rem, 3vw, 2.35rem);
}

.local-badge,
.status {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 9px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
  white-space: nowrap;
}

.local-badge {
  background: #fff2cf;
  color: #765119;
}

.progress-wrap {
  margin-top: 16px;
  padding: 12px;
  border-radius: var(--radius);
  background: var(--surface-strong);
}

.progress-wrap p {
  min-width: 88px;
  margin: 0;
  color: var(--muted);
  text-align: right;
}

.progress-line {
  position: relative;
  flex: 1;
  height: 12px;
  overflow: hidden;
  border-radius: 999px;
  background: #d5e6dc;
}

.progress-line span {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0%;
  border-radius: inherit;
  background: var(--green);
  transition: width 180ms ease;
}

.suggestion-bank,
.add-item-form,
.message-panel {
  margin-top: 14px;
}

.suggestion-head h3,
.selected-title,
.message-head h3 {
  margin: 0;
  font-size: 1.05rem;
}

.suggestion-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-top: 12px;
}

.suggestion-button {
  position: relative;
  display: inline-flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 8px;
  width: 100%;
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 8px 10px;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  font-weight: 760;
  line-height: 1.25;
  text-align: left;
}

.suggestion-icon {
  flex: 0 0 auto;
  width: 18px;
  text-align: center;
  font-weight: 900;
}

.suggestion-label {
  min-width: 0;
}

.suggestion-info {
  position: absolute;
  left: 8px;
  top: calc(100% + 8px);
  z-index: 8;
  width: min(360px, calc(100vw - 56px));
  padding: 10px 12px;
  border: 1px solid rgba(24, 32, 28, 0.14);
  border-radius: var(--radius);
  background: #18201c;
  color: #fff;
  box-shadow: 0 14px 34px rgba(22, 45, 34, 0.18);
  font-size: 0.84rem;
  font-weight: 650;
  line-height: 1.38;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-3px);
  transition: opacity 140ms ease, transform 140ms ease, visibility 140ms ease;
  visibility: hidden;
}

.suggestion-button:hover .suggestion-info,
.suggestion-button:focus-visible .suggestion-info,
.suggestion-info:hover {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
}

.suggestion-button:hover {
  border-color: #9db5a7;
  background: var(--surface-strong);
}

.suggestion-button.is-selected {
  border-color: rgba(34, 124, 87, 0.35);
  background: #dcf1e7;
  color: var(--green-dark);
}

.suggestion-button.is-selected:hover {
  border-color: rgba(210, 91, 69, 0.42);
  background: #fff3ef;
  color: var(--coral);
}

.suggestion-empty {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.add-item-form label {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.input-row {
  gap: 8px;
}

.input-row input {
  width: 100%;
  min-width: 0;
  min-height: 44px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
}

.add-item-form button {
  flex: 0 0 auto;
  border: 0;
  padding: 0 14px;
  background: var(--ink);
  color: #fff;
  cursor: pointer;
}

.checklist {
  display: grid;
  gap: 10px;
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
}

.selected-title {
  margin-top: 20px;
}

.check-item {
  position: relative;
  justify-content: space-between;
  gap: 12px;
  min-height: 58px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.item-copy {
  position: relative;
  flex: 1 1 280px;
  min-width: 0;
}

.item-title {
  display: inline-block;
  min-width: 0;
  font-weight: 850;
  cursor: help;
  outline-offset: 3px;
}

.item-meta {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 600;
}

.item-info {
  position: absolute;
  left: 0;
  top: calc(100% + 8px);
  z-index: 4;
  width: min(360px, calc(100vw - 56px));
  padding: 10px 12px;
  border: 1px solid rgba(24, 32, 28, 0.14);
  border-radius: var(--radius);
  background: #18201c;
  color: #fff;
  box-shadow: 0 14px 34px rgba(22, 45, 34, 0.18);
  font-size: 0.84rem;
  font-weight: 650;
  line-height: 1.38;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-3px);
  transition: opacity 140ms ease, transform 140ms ease, visibility 140ms ease;
  visibility: hidden;
}

.item-title:hover + .item-info,
.item-title:focus + .item-info,
.item-info:hover {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
}

.status-controls {
  flex: 0 0 auto;
  gap: 6px;
}

.status-field {
  display: grid;
  gap: 4px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 850;
}

.status-controls select {
  width: 150px;
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
}

.status-controls input[type="date"] {
  width: 150px;
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
}

.remove-button,
.icon-button,
.reset-defaults {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--muted);
  cursor: pointer;
}

.remove-button:hover,
.icon-button:hover,
.reset-defaults:hover {
  color: var(--ink);
  border-color: #b9c8bf;
}

.reset-defaults {
  width: 100%;
  height: 42px;
  margin-top: 12px;
  color: var(--green-dark);
  font-weight: 850;
}

.browser-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.message-panel {
  margin-top: 18px;
  padding: 14px;
  border: 1px solid #bfd4e6;
  border-left: 5px solid var(--blue);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #f2f8fd 0%, #ffffff 100%);
  box-shadow: 0 12px 28px rgba(35, 93, 143, 0.08);
}

.message-head {
  display: flex;
  align-items: center;
  gap: 10px;
}

.message-head::before {
  content: "";
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background:
    radial-gradient(circle at 11px 14px, #fff 0 2px, transparent 2.5px),
    radial-gradient(circle at 17px 14px, #fff 0 2px, transparent 2.5px),
    radial-gradient(circle at 23px 14px, #fff 0 2px, transparent 2.5px),
    var(--blue);
  box-shadow: 0 8px 18px rgba(35, 93, 143, 0.2);
}

.message-form {
  display: grid;
  gap: 8px;
  margin-top: 12px;
  padding: 12px;
  border: 1px solid rgba(35, 93, 143, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
}

.message-form label {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 850;
}

.message-form select,
.message-form textarea {
  width: 100%;
  border: 1px solid #b8ccdd;
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
}

.message-form select:focus,
.message-form textarea:focus {
  border-color: var(--blue);
  outline: 3px solid rgba(35, 93, 143, 0.16);
}

.message-form select {
  min-height: 42px;
  padding: 0 10px;
}

.message-form textarea {
  min-height: 82px;
  resize: vertical;
  padding: 10px;
  line-height: 1.45;
}

.message-form button {
  min-height: 42px;
  border: 0;
  border-radius: var(--radius);
  background: var(--blue);
  color: #fff;
  cursor: pointer;
  font-weight: 850;
}

.message-form button:hover {
  background: #1c4f7c;
}

.message-list {
  display: grid;
  gap: 8px;
  margin-top: 12px;
}

.message-item {
  padding: 10px;
  border: 1px solid rgba(35, 93, 143, 0.18);
  border-left: 4px solid var(--blue);
  border-radius: var(--radius);
  background: #fff;
}

.message-item strong {
  display: block;
  margin-bottom: 4px;
  font-size: 0.88rem;
}

.message-item span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.78rem;
}

.ad-band {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 0 0 clamp(28px, 5vw, 52px);
}

.ad-slot {
  display: grid;
  min-height: 74px;
  place-items: center;
  padding: 18px;
  border: 1px dashed #b9c8bf;
  border-radius: var(--radius);
  background: #fff;
  color: var(--muted);
  text-align: center;
}

.ad-slot span {
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.ad-slot strong {
  color: var(--ink);
}

.ad-slot p {
  margin: 0;
}

.section-wrap,
.split-section,
.price-section,
.faq-section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(30px, 5vw, 52px) 0;
}

.section-heading {
  max-width: 780px;
}

.section-heading.compact {
  max-width: 620px;
}

.section-heading p:not(.eyebrow) {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.5vw, 1.18rem);
  line-height: 1.65;
}

.steps-grid,
.price-grid,
.principles,
.role-grid {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

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

.step-card,
.price-card,
.principles div,
.role-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.role-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.role-card {
  min-height: 260px;
  padding: clamp(18px, 2.6vw, 24px);
}

.role-card h3 {
  margin-top: 10px;
  font-size: clamp(1.65rem, 3vw, 2.65rem);
  line-height: 1;
}

.role-card ul {
  display: grid;
  gap: 9px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.role-card li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
  line-height: 1.45;
}

.role-card li::before {
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  content: "";
}

.sector-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.sector-list span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font-weight: 850;
}

.subdomain-callout {
  margin-top: 18px;
  padding: 14px;
  border: 1px solid rgba(34, 124, 87, 0.28);
  border-radius: var(--radius);
  background: var(--surface-strong);
}

.subdomain-callout span {
  display: block;
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.subdomain-callout strong {
  display: block;
  margin-top: 8px;
  font-size: clamp(1.12rem, 2vw, 1.45rem);
  overflow-wrap: anywhere;
}

.subdomain-callout p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.45;
}

.trainee-card {
  background: #f8f3ea;
}

.trainee-card li::before {
  background: var(--coral);
}

.step-card {
  min-height: 172px;
  padding: 16px;
}

.step-card p,
.price-card p,
.principles span {
  color: var(--muted);
  line-height: 1.55;
}

.step-number {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-weight: 900;
}

.accent-green .step-number {
  background: var(--green);
}

.accent-coral .step-number {
  background: var(--coral);
}

.accent-ink .step-number {
  background: var(--ink);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(380px, 1.15fr);
  gap: clamp(24px, 5vw, 52px);
  align-items: center;
}

.dashboard-preview {
  padding: 14px;
}

.dashboard-toolbar {
  margin-bottom: 12px;
  color: var(--muted);
  font-weight: 900;
}

.trainee-row {
  display: grid;
  grid-template-columns: minmax(130px, 1fr) minmax(110px, 0.7fr) auto;
  gap: 12px;
  align-items: center;
  min-height: 64px;
  border-top: 1px solid var(--line);
}

.trainee-row strong,
.trainee-row span {
  display: block;
}

.trainee-row div span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.86rem;
}

meter {
  width: 100%;
  height: 12px;
}

.wait-trainee {
  background: #fff2cf;
  color: #6e4a11;
}

.wait-team {
  background: #e7eef8;
  color: #204e77;
}

.done {
  background: #dcf1e7;
  color: #14583d;
}

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

.principles div {
  min-height: 126px;
  padding: 16px;
}

.principles strong,
.principles span {
  display: block;
}

.principles strong {
  margin-bottom: 10px;
  font-size: 1.05rem;
}

.price-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

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

.price-card {
  min-height: 190px;
  padding: 16px;
}

.price-card.featured {
  border-color: rgba(34, 124, 87, 0.55);
  background: var(--surface-strong);
}

.price {
  margin: 12px 0;
  color: var(--ink);
  font-size: clamp(1.65rem, 2.6vw, 2rem);
  font-weight: 900;
}

.price span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
}

.quota-note {
  max-width: 780px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.faq-section details {
  border-top: 1px solid var(--line);
  background: transparent;
}

.faq-section details:last-child {
  border-bottom: 1px solid var(--line);
}

.faq-section summary {
  cursor: pointer;
  padding: 16px 0;
  font-weight: 900;
}

.faq-section details p {
  max-width: 760px;
  margin: 0 0 16px;
  color: var(--muted);
  line-height: 1.6;
}

.legal-main {
  width: min(980px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(30px, 5vw, 56px) 0;
}

.legal-hero {
  max-width: 820px;
  padding-bottom: 20px;
}

.legal-hero h1 {
  max-width: none;
  font-size: clamp(2.5rem, 5vw, 4.2rem);
}

.legal-hero p:not(.eyebrow) {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.7vw, 1.22rem);
  line-height: 1.6;
}

.legal-content {
  display: grid;
  gap: 12px;
}

.legal-card {
  padding: clamp(16px, 2.5vw, 22px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.legal-content--plain {
  gap: 0;
}

.legal-content--plain .legal-card {
  padding: 18px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
}

.legal-content--plain .legal-card:first-child {
  border-top: 1px solid var(--line);
}

.legal-card h2 {
  margin-bottom: 10px;
  font-size: clamp(1.28rem, 2vw, 1.7rem);
  line-height: 1.15;
}

.legal-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.legal-card p + p {
  margin-top: 12px;
}

.legal-card a {
  color: var(--green-dark);
  font-weight: 800;
  border-bottom: 1px solid currentColor;
}

.legal-list {
  display: grid;
  gap: 8px;
  margin: 0 0 12px;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.55;
}

.legal-updated {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.site-footer {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 26px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer strong {
  color: var(--ink);
}

.site-footer p {
  max-width: 520px;
  margin: 8px 0 0;
  line-height: 1.5;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .main-nav {
    display: none;
  }

  .hero-section,
  .split-section {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  h1 {
    max-width: 12ch;
  }

  .steps-grid,
  .price-grid,
  .principles,
  .role-grid,
  .suggestion-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .site-header {
    padding: 12px 18px;
  }

  .brand {
    font-size: 0.98rem;
  }

  .header-action {
    min-height: 40px;
    padding: 0 12px;
    font-size: 0.88rem;
  }

  .hero-section,
  .section-wrap,
  .split-section,
  .price-section,
  .faq-section,
  .ad-band,
  .site-footer,
  .legal-main,
  .legal-topline {
    width: min(100% - 28px, 1180px);
  }

  .legal-topline {
    justify-content: flex-start;
    padding-top: 10px;
  }

  .hero-section {
    padding: 24px 0 20px;
  }

  .section-wrap,
  .split-section,
  .price-section,
  .faq-section {
    padding: 32px 0;
  }

  .ad-band {
    padding-bottom: 28px;
  }

  h1 {
    font-size: clamp(2.7rem, 14vw, 4.2rem);
  }

  h2 {
    font-size: clamp(1.9rem, 9vw, 3rem);
  }

  .hero-actions,
  .input-row,
  .check-item,
  .status-controls,
  .progress-wrap,
  .site-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .primary-action,
  .secondary-action,
  .add-item-form button {
    width: 100%;
  }

  .check-item {
    min-height: 0;
  }

  .status-controls select {
    width: 100%;
  }

  .remove-button {
    width: 100%;
  }

  .steps-grid,
  .price-grid,
  .principles,
  .role-grid,
  .audience-strip,
  .suggestion-list {
    grid-template-columns: 1fr;
  }

  .trainee-row {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 10px 0;
  }

  .status {
    width: fit-content;
    white-space: normal;
  }

  .site-footer nav {
    justify-content: flex-start;
  }
}
