.start-options {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 42px auto 24px;
  max-width: 820px;
  text-align: left;
}

.start-option {
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 14px 38px #10452b12;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  min-height: 240px;
  padding: 28px;
}

.start-option:hover,
.start-option:focus-visible {
  background: var(--soft);
  border-color: var(--brand);
}

.start-option strong { font-size: 22px; }
.start-option small { color: var(--muted); font-weight: 500; margin-top: 10px; }
.option-icon { font-size: 34px; margin-bottom: 20px; }
.option-action { color: var(--brand2); margin-top: auto; padding-top: 24px; }
.back-start { margin-top: 28px; }

.template-picker {
  margin: 46px auto 12px;
  max-width: 820px;
}

.template-picker h2 {
  font-size: clamp(25px, 4vw, 34px);
  margin: 6px 0 8px;
}

.divider {
  align-items: center;
  color: var(--muted);
  display: flex;
  gap: 14px;
  margin-bottom: 28px;
}

.divider::before,
.divider::after {
  background: var(--line);
  content: "";
  flex: 1;
  height: 1px;
}

.template-list {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 22px;
  text-align: left;
}

.template-option {
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 8px 24px #10452b0a;
  color: var(--ink);
  height: 100%;
  padding: 17px;
}

.template-filters {
  display: grid;
  gap: 12px;
  grid-template-columns: 2fr 1fr;
  margin: 18px 0 4px;
  text-align: left;
}

.template-filters label { margin: 0; }

.template-option:hover,
.template-option:focus-visible {
  background: var(--soft);
  border-color: var(--brand);
}

.template-option strong,
.template-option small {
  display: block;
}

.template-option small {
  color: var(--muted);
  font-weight: 500;
  line-height: 1.45;
  margin-top: 5px;
}

@media (max-width: 640px) {
  .start-options,
  .template-filters,
  .template-list { grid-template-columns: 1fr; }
  .start-option { min-height: 205px; }
}
