.hero {
  background: none;
  padding: 56px 40px 76px;
  text-align: center;
}

@media (max-width:600px) {
  .hero {
    padding: 40px 20px 60px;
  }
}

.hero h1 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 12px;
}

.hero h1 .brand {
  font-style: italic;
}

.brand {
  color: var(--brand-auro);
  /* 稍深的品牌黄，更利于阅读 */
}

@media (max-width:600px) {
  .hero h1 {
    font-size: 28px;
  }
}

.hero p {
  color: #555;
  font-size: 16px;
  margin-bottom: 32px;
}

.prompt-box {
  max-width: 860px;
  margin: 0 auto;
  background: var(--card);
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 20px rgba(0, 0, 0, .10);
  padding: 18px;
}

.prompt-box textarea {
  width: 100%;
  min-height: 108px;
  border: none;
  outline: none;
  resize: none;
  font-size: 15px;
  color: var(--text);
  font-family: inherit;
}

.prompt-box textarea::placeholder {
  color: #999;
}

.prompt-actions {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

.icon-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  color: #888;
  cursor: pointer;
  font-size: 14px;
}

.icon-btn svg {
  width: 20px;
  height: 20px;
}

.right-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-left: auto;
}

.check {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #777;
  font-size: 14px;
}

.check input {
  accent-color: var(--brand-yellow);
}

.submit-btn {
  width: 120px;
  height: 45px;
  /* ⭐ 关键 */
  padding: 0 28px;

  border-radius: 8px;
  background: #f2c94c;
  border: none;
  cursor: pointer;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  font-size: 18px;
  font-weight: 700;
  color: #2b2100;

  gap: 10px;

  box-shadow: 0 4px 10px rgba(0, 0, 0, .15);
  transition: all .15s ease;
}

.submit-btn:hover {
  background: #f5d35c;
  transform: translateY(-1px);
}

.submit-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(0, 0, 0, .15);
}

.terms {
  margin-top: 12px;
  font-size: 12px;
  color: #777;
}

.terms a {
  color: var(--brand-auro);
  font-weight: 600;
  text-decoration: none;
}

.terms a:hover {
  text-decoration: underline;
}

.main {
  display: flex;
  gap: 30px;
  max-width: 1200px;
  margin: -42px auto 48px;
  padding: 0 40px;
}

@media (max-width:900px) {
  .main {
    flex-direction: column;
  }
}

@media (max-width:600px) {
  .main {
    padding: 0 20px;
  }
}

.section-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 18px;
}

.left {
  flex: 1;
}

.right {
  flex: 1;
  max-width: 460px;
}

@media (max-width:900px) {
  .right {
    max-width: 100%;
  }
}

.card {
  background: var(--card);
  border-radius: var(--radius-md);
  box-shadow: 0 2px 10px rgba(0, 0, 0, .05);
}

.prompt-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.prompt-card {
  padding: 18px 20px;
  display: flex;
  gap: 14px;
  cursor: pointer;
  transition: transform .15s, box-shadow .15s;
}

.prompt-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, .10);
}

.picon {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  flex: 0 0 auto;
  background: linear-gradient(135deg, var(--brand-yellow) 0%, var(--brand-yellow-2) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.picon svg {
  width: 20px;
  height: 20px;
}

.pbody h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
}

.pbody p {
  font-size: 13px;
  color: #888;
  line-height: 1.5;
}

.dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}

.dots button {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: none;
  background: #ddd;
  cursor: pointer;
}

.dots button.active {
  background: #111;
}

.report {
  padding: 22px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.report-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
}

.meta {
  font-size: 12px;
  color: #888;
}

.actions {
  display: flex;
  gap: 10px;
}

.actions button {
  background: none;
  border: none;
  color: #888;
  cursor: pointer;
  padding: 6px;
}

.actions button:hover {
  color: #111;
}

.report h2 {
  font-size: 20px;
  font-weight: 800;
  margin: 6px 0 8px;
}

.author {
  font-size: 13px;
  color: #888;
  margin-bottom: 18px;
}

.author span {
  background: #f0f0f0;
  border-radius: 999px;
  padding: 2px 8px;
  margin-left: 6px;
}

.h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 10px;
}

.p {
  font-size: 13px;
  color: #666;
  line-height: 1.7;
  margin-bottom: 16px;
}

.stats {
  display: flex;
  gap: 14px;
  margin-bottom: 16px;
}

.stat {
  flex: 1;
  border-radius: 12px;
  padding: 14px;
  text-align: center;
  background: linear-gradient(135deg, var(--brand-yellow) 0%, var(--brand-yellow-2) 100%);
}

.stat .label {
  font-size: 12px;
  color: #555;
  margin-bottom: 4px;
}

.stat .value {
  font-size: 28px;
  font-weight: 800;
}

.stat .sub {
  font-size: 11px;
  color: #666;
}

.insights {
  background: linear-gradient(135deg, #fffbeb 0%, #fef9e7 100%);
  border-radius: 12px;
  padding: 14px;
}

.insights .title {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 8px;
}

.insights .text {
  font-size: 13px;
  color: #666;
  line-height: 1.6;
}

.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 28px 40px 60px;
}

@media (max-width:600px) {
  .page {
    padding: 18px 20px 40px;
  }
}

.two-col {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 26px;
  align-items: start;
}

@media (max-width:1000px) {
  .two-col {
    grid-template-columns: 1fr;
  }
}

.side {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, .06);
  padding: 18px;
}

.side .item {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border-radius: 12px;
  cursor: pointer;
  color: #444;
}

.side .item.active {
  background: #f6f6f6;
  font-weight: 700;
}

.side .item .ico {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #f1f1f1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.side .profile {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.badge {
  font-size: 12px;
  color: #666;
  background: #f1f1f1;
  border-radius: 999px;
  padding: 4px 10px;
}
