:root {
  --ink: #10202c;
  --muted: #6b7785;
  --line: #dfe6e9;
  --paper: #f7faf8;
  --surface: #ffffff;
  --green-900: #022f27;
  --green-800: #053f34;
  --green-700: #0a6f4e;
  --green-600: #0f8a5f;
  --green-100: #e9f7ef;
  --amber: #e78a21;
  --red: #d84a3a;
  --blue: #2f6ca3;
  --shadow: 0 18px 44px rgba(15, 45, 35, 0.08);
  --radius: 8px;
  font-family: Inter, "PingFang SC", "Microsoft YaHei", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
}

body {
  overflow-x: clip;
  max-width: 100%;
}

button,
input,
select,
textarea {
  font: inherit;
  min-width: 0;
}

button {
  cursor: pointer;
}

button:disabled {
  cursor: wait;
  opacity: 0.62;
}

.app-shell {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  min-height: 100vh;
}

.sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 24px 16px;
  background:
    linear-gradient(160deg, rgba(11, 111, 78, 0.24), transparent 34%),
    var(--green-900);
  color: #f4fff9;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 8px;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 8px;
  background: #f5fff8;
  color: var(--green-700);
}

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

.brand strong {
  font-size: 16px;
}

.brand span {
  margin-top: 3px;
  color: rgba(244, 255, 249, 0.68);
  font-size: 11px;
}

.side-nav {
  display: grid;
  gap: 6px;
}

.side-nav a {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 48px;
  padding: 0 13px;
  border: 1px solid transparent;
  border-radius: 8px;
  color: rgba(244, 255, 249, 0.86);
  text-decoration: none;
  font-size: 15px;
  font-weight: 650;
}

.side-nav a.active,
.side-nav a:hover {
  background: linear-gradient(135deg, #0d8c61, #08704e);
  border-color: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.side-nav svg,
.icon-button svg,
.round-button svg {
  width: 18px;
  height: 18px;
  stroke-width: 2;
}

.sidebar-status {
  margin-top: auto;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.sidebar-status span {
  color: rgba(244, 255, 249, 0.68);
  font-size: 12px;
}

.sidebar-status strong {
  display: block;
  margin: 8px 0;
  font-size: 18px;
}

.sidebar-status p {
  margin: 0;
  color: rgba(244, 255, 249, 0.72);
  font-size: 12px;
  line-height: 1.55;
}

.workspace {
  min-width: 0;
  max-width: 100%;
  padding: 0 24px 36px;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  border-bottom: 1px solid var(--line);
  background: rgba(247, 250, 248, 0.92);
  backdrop-filter: blur(14px);
}

.topbar > div:first-child {
  min-width: 0;
}

.topbar h1 {
  margin: 0;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: 0;
}

.topbar p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 13px;
  overflow-wrap: anywhere;
}

.top-actions,
.button-row,
.quick-prompts {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.icon-button,
.text-button,
.round-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid #cbd8d1;
  border-radius: 8px;
  background: #ffffff;
  color: var(--green-800);
  font-size: 13px;
  font-weight: 700;
}

.icon-button {
  min-height: 40px;
  padding: 0 14px;
}

.icon-button.primary,
.round-button {
  background: var(--green-700);
  border-color: var(--green-700);
  color: #ffffff;
}

.text-button {
  min-height: 32px;
  padding: 0 10px;
}

.section {
  margin-top: 22px;
}

.main-grid {
  display: grid;
  grid-template-columns: minmax(300px, 1.05fr) minmax(280px, 0.85fr) minmax(300px, 1fr);
  gap: 16px;
  align-items: start;
}

.lower-grid {
  display: grid;
  grid-template-columns: minmax(360px, 1fr) minmax(320px, 0.9fr);
  gap: 16px;
  align-items: stretch;
  min-width: 0;
  max-width: 100%;
}

.panel {
  min-width: 0;
  max-width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
  overflow-wrap: anywhere;
}

.panel-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 20px 14px;
  border-bottom: 1px solid #edf1f2;
}

.panel-head span {
  color: var(--green-700);
  font-size: 12px;
  font-weight: 800;
}

.panel-head h2 {
  margin: 6px 0 0;
  font-size: 18px;
  line-height: 1.25;
  letter-spacing: 0;
}

.input-panel {
  padding-bottom: 18px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

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

form label,
.channel-set {
  display: grid;
  gap: 7px;
  margin: 14px 20px 0;
}

label span,
.channel-set legend {
  color: #42515d;
  font-size: 12px;
  font-weight: 760;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #ccd8d2;
  border-radius: 8px;
  background: #fbfdfc;
  color: var(--ink);
  font-size: 13px;
  line-height: 1.35;
  outline: none;
}

input,
select {
  height: 40px;
  padding: 0 12px;
}

textarea {
  min-height: 82px;
  padding: 11px 12px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--green-600);
  box-shadow: 0 0 0 3px rgba(15, 138, 95, 0.12);
}

.channel-set {
  grid-template-columns: repeat(auto-fit, minmax(96px, 1fr));
  margin-top: 16px;
  padding: 0;
  border: 0;
}

.channel-set legend {
  grid-column: 1 / -1;
  padding: 0;
}

.channel-set label {
  display: flex;
  align-items: center;
  gap: 7px;
  min-height: 34px;
  margin: 0;
  padding: 0 10px;
  border: 1px solid #d8e5df;
  border-radius: 8px;
  background: #f8fbf9;
  font-size: 12px;
  font-weight: 700;
}

.channel-set input {
  width: 14px;
  height: 14px;
  accent-color: var(--green-700);
}

.button-row {
  margin: 18px 20px 0;
}

#saveState {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 9px;
  border-radius: 8px;
  background: #e8f2ff;
  color: var(--blue);
  font-size: 12px;
  white-space: nowrap;
}

#auditState {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 9px;
  border-radius: 8px;
  background: #f8ead8;
  color: var(--amber);
  font-size: 12px;
  white-space: nowrap;
}

.launch-grid {
  display: grid;
  grid-template-columns: minmax(340px, 0.86fr) minmax(420px, 1.14fr);
  gap: 16px;
  align-items: start;
}

.output-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: start;
}

.launch-output-panel {
  position: sticky;
  top: 98px;
}

.positioning-card,
.hero-brief,
.story-card,
.diagnostic-summary {
  display: grid;
  gap: 12px;
  margin: 16px 18px 18px;
}

.positioning-card {
  padding: 18px;
  border: 1px solid #cfe3db;
  border-left: 5px solid var(--green-700);
  border-radius: 8px;
  background: linear-gradient(180deg, #f8fcfb, #eef8f4);
}

.positioning-card span,
.hero-brief span,
.diagnostic-summary span {
  color: var(--green-700);
  font-size: 12px;
  font-weight: 820;
}

.positioning-card strong {
  color: var(--green-900);
  font-size: clamp(20px, 3vw, 32px);
  line-height: 1.16;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.positioning-card p,
.hero-brief p,
.story-card p,
.diagnostic-summary p {
  margin: 0;
  color: #2f4550;
  font-size: 13px;
  line-height: 1.6;
}

.positioning-card dl,
.positioning-card dd {
  margin: 0;
}

.positioning-card dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.positioning-card dt {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}

.positioning-card dd {
  margin-top: 4px;
  color: var(--ink);
  font-size: 12px;
  line-height: 1.45;
}

.positioning-card .api-error {
  padding-top: 10px;
  border-top: 1px solid #efc8c0;
  color: var(--red);
  font-weight: 760;
}

.hero-brief {
  padding: 16px;
  border: 1px solid #d8e2de;
  border-radius: 8px;
  background: #fbfdfc;
}

.hero-brief h3 {
  margin: 6px 0 8px;
  font-size: 24px;
  line-height: 1.18;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.hero-brief footer {
  display: grid;
  gap: 7px;
  padding-top: 12px;
  border-top: 1px solid #e5ece9;
}

.hero-brief footer strong {
  justify-self: start;
  padding: 8px 11px;
  border-radius: 8px;
  background: var(--green-700);
  color: #ffffff;
  font-size: 13px;
}

.hero-brief footer span {
  color: var(--muted);
  font-weight: 680;
  line-height: 1.45;
}

.module-list,
.keyword-groups,
.image-plan-list,
.brief-list,
.email-flow-list {
  display: grid;
  gap: 10px;
  padding: 16px 18px 18px;
}

.module-row {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 12px;
  padding: 13px;
  border: 1px solid #d8e2de;
  border-radius: 8px;
  background: #fbfdfc;
}

.module-row > span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 8px;
  background: #fff5e7;
  color: var(--amber);
  font-size: 12px;
  font-weight: 850;
}

.module-row div {
  min-width: 0;
}

.module-row strong,
.brief-row strong,
.email-row strong,
.image-plan-row strong,
.keyword-group strong {
  display: block;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.35;
}

.module-row em {
  display: block;
  margin-top: 4px;
  color: var(--green-700);
  font-size: 12px;
  font-style: normal;
  font-weight: 760;
}

.module-row p,
.brief-row p,
.email-row p,
.image-plan-row p {
  margin: 7px 0 0;
  color: #314751;
  font-size: 12.5px;
  line-height: 1.55;
}

.module-row small,
.brief-row small,
.email-row small,
.image-plan-row small,
.story-card footer {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.keyword-group {
  display: grid;
  gap: 10px;
  padding: 13px;
  border: 1px solid #d8e2de;
  border-radius: 8px;
  background: #fbfdfc;
}

.keyword-group div {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.keyword-group div span {
  max-width: 100%;
  padding: 6px 8px;
  border: 1px solid #d5e2dd;
  border-radius: 8px;
  background: #ffffff;
  color: #27404d;
  font-size: 12px;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.image-plan-row,
.brief-row,
.email-row {
  padding: 13px;
  border: 1px solid #d8e2de;
  border-radius: 8px;
  background: #fbfdfc;
}

.image-plan-row header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.image-plan-row header span,
.brief-row span,
.email-row > span {
  flex: 0 0 auto;
  padding: 4px 7px;
  border-radius: 8px;
  background: #e8f2ff;
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
}

.image-plan-row p {
  color: #263b46;
  overflow-wrap: anywhere;
}

.story-card {
  padding: 16px;
  border: 1px solid #d8e2de;
  border-radius: 8px;
  background: #fbfdfc;
}

.plain-list {
  display: grid;
  gap: 7px;
  margin: 0;
  padding-left: 18px;
  color: #304652;
  font-size: 12.5px;
  line-height: 1.55;
}

.diagnostic-summary section {
  display: grid;
  gap: 8px;
  padding: 13px;
  border: 1px solid #d8e2de;
  border-radius: 8px;
  background: #fbfdfc;
}

.follow-up-list {
  display: grid;
  gap: 10px;
}

.follow-up-card {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 12px;
  border: 1px solid #dce8e2;
  border-radius: 8px;
  background: #ffffff;
}

.follow-up-card strong {
  color: #243b47;
  font-size: 13px;
  line-height: 1.45;
}

.follow-up-card textarea {
  min-height: 74px;
}

.inline-actions {
  margin: 2px 0 0;
}

.diagnosis-note {
  border-color: #f0d7bd !important;
  background: #fff8ef !important;
}

.site-audit-panel {
  display: grid;
  gap: 12px;
  padding: 16px 18px 18px;
  min-width: 0;
  max-width: 100%;
}

.site-audit-panel section,
.audit-empty,
.audit-overall,
.audit-score-row {
  display: grid;
  gap: 9px;
  min-width: 0;
  max-width: 100%;
  padding: 13px;
  border: 1px solid #d8e2de;
  border-radius: 8px;
  background: #fbfdfc;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.audit-overall {
  border-left: 5px solid var(--amber);
  background: #fffaf3;
}

.audit-overall span,
.site-audit-panel section > span {
  color: var(--green-700);
  font-size: 12px;
  font-weight: 820;
}

.audit-overall strong {
  color: var(--amber);
  font-size: 34px;
  line-height: 1;
}

.audit-overall p,
.audit-empty p,
.audit-score-row p {
  margin: 0;
  color: #314751;
  font-size: 13px;
  line-height: 1.55;
}

.audit-overall .api-error {
  color: var(--red);
  font-weight: 760;
}

.audit-scorecard {
  display: grid;
  gap: 10px;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
}

.audit-score-row header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  min-width: 0;
}

.audit-score-row header strong {
  min-width: 0;
  color: var(--ink);
  font-size: 14px;
  overflow-wrap: anywhere;
}

.audit-score-row header span {
  color: var(--amber);
  font-size: 14px;
  font-weight: 850;
}

.audit-score-row i {
  display: block;
  height: 7px;
  overflow: hidden;
  border-radius: 99px;
  background: #edf2f0;
}

.audit-score-row i b {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--green-700);
}

.audit-score-row small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.overall-score {
  display: flex;
  align-items: baseline;
  gap: 3px;
  color: var(--amber);
}

.overall-score strong {
  font-size: 34px;
  line-height: 1;
}

.score-list {
  display: grid;
  gap: 7px;
  padding: 16px 18px;
}

.score-row {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 42px;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 10px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: #fbfdfc;
  text-align: left;
}

.score-row:hover {
  border-color: #cde1d8;
  background: #f6fbf8;
}

.score-icon {
  display: grid;
  height: 36px;
  place-items: center;
  border-radius: 8px;
  background: var(--green-100);
  color: var(--green-700);
  font-size: 12px;
  font-weight: 800;
}

.score-main {
  display: grid;
  gap: 5px;
}

.score-main strong {
  font-size: 13px;
}

.score-main span {
  overflow: hidden;
  color: var(--muted);
  font-size: 11px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.score-main i {
  display: block;
  height: 6px;
  border-radius: 99px;
  background: var(--green-700);
}

.score-row.warn .score-main i {
  background: var(--amber);
}

.score-row.risk .score-main i {
  background: var(--red);
}

.score-value {
  color: var(--green-700);
  font-size: 16px;
  font-weight: 800;
  text-align: right;
}

.score-row.warn .score-value {
  color: var(--amber);
}

.score-row.risk .score-value {
  color: var(--red);
}

.diagnosis-summary {
  margin: 0 18px 18px;
  padding: 14px;
  border: 1px solid #cfe4d9;
  border-radius: 8px;
  background: var(--green-100);
}

.diagnosis-summary span {
  color: var(--green-700);
  font-size: 12px;
  font-weight: 800;
}

.diagnosis-summary strong {
  display: block;
  margin-top: 6px;
  font-size: 18px;
}

.diagnosis-summary p {
  margin: 8px 0 0;
  color: #324652;
  font-size: 13px;
  line-height: 1.55;
}

.diagnosis-summary small {
  display: inline-block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}

.diagnosis-summary .api-error {
  border-top: 1px solid #f1c7bd;
  color: var(--red);
  font-weight: 700;
}

.plan-table {
  display: grid;
  max-height: 675px;
  overflow: auto;
  padding: 14px 16px 18px;
  gap: 10px;
}

.plan-row {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr);
  gap: 14px;
  padding: 13px;
  border: 1px solid #d8e2de;
  border-left: 5px solid var(--green-700);
  border-radius: 8px;
  background: #fbfdfc;
}

.plan-row.mid {
  border-left-color: var(--blue);
}

.plan-row div span {
  display: block;
  color: var(--muted);
  font-size: 12px;
}

.plan-row div strong {
  display: block;
  margin-top: 6px;
  font-size: 14px;
  line-height: 1.35;
}

.plan-row ul {
  margin: 0;
  padding-left: 17px;
  color: #2b3e49;
  font-size: 12.5px;
  line-height: 1.55;
}

.plan-row footer {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr);
  gap: 14px;
  padding-top: 9px;
  border-top: 1px solid #e7edeb;
  color: var(--muted);
  font-size: 12px;
}

.chat-panel {
  min-height: 520px;
}

.chat-messages {
  display: grid;
  align-content: start;
  max-height: 315px;
  min-height: 250px;
  overflow: auto;
  padding: 18px 20px 8px;
  gap: 12px;
}

.message {
  display: grid;
  max-width: 78%;
  gap: 5px;
}

.message.user {
  justify-self: end;
}

.message span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 750;
}

.message p {
  margin: 0;
  padding: 12px 14px;
  border-radius: 8px;
  background: #f0f4f2;
  color: #233742;
  font-size: 13px;
  line-height: 1.55;
}

.message.user p {
  background: #dff4e8;
  color: #073b2e;
}

.message.pending p {
  color: var(--muted);
}

.message.error p {
  background: #fff2ef;
  color: var(--red);
}

.quick-prompts {
  padding: 0 20px 12px;
}

.quick-prompts button {
  min-height: 30px;
  border: 1px solid #bddccc;
  border-radius: 8px;
  background: #ffffff;
  color: var(--green-700);
  font-size: 12px;
  font-weight: 750;
}

.chat-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 42px;
  gap: 10px;
  padding: 0 20px 20px;
}

.round-button {
  width: 42px;
  height: 42px;
  padding: 0;
  border-radius: 50%;
}

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

.case-card {
  display: grid;
  gap: 7px;
}

.case-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border: 1px solid #dce6e1;
  border-radius: 8px;
  background: #f6faf8;
}

.case-card strong {
  font-size: 13px;
}

.case-card span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.count-label {
  color: var(--muted) !important;
  font-size: 12px !important;
}

.skills-panel {
  box-shadow: none;
}

.skill-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 12px;
  padding: 16px 18px 18px;
}

.skill-card {
  min-width: 0;
  padding: 14px;
  border: 1px solid #dbe7e1;
  border-radius: 8px;
  background: #fbfdfc;
}

.skill-card.active {
  border-color: var(--green-700);
  background: var(--green-100);
}

.skill-card header {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) auto;
  align-items: center;
  gap: 8px;
}

.skill-card header span {
  display: grid;
  height: 30px;
  place-items: center;
  border-radius: 8px;
  background: #ffffff;
  color: var(--green-700);
  font-size: 11px;
  font-weight: 800;
}

.skill-card strong {
  font-size: 14px;
}

.skill-card em {
  color: var(--green-700);
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
}

.skill-card p {
  min-height: 54px;
  margin: 12px 0;
  color: #2d414d;
  font-size: 12.5px;
  line-height: 1.45;
}

.skill-card dl,
.skill-card dd {
  margin: 0;
}

.skill-card dl {
  display: grid;
  gap: 8px;
}

.skill-card dt {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}

.skill-card dd {
  margin-top: 3px;
  color: #263b46;
  font-size: 12px;
  line-height: 1.4;
}

.skill-card footer {
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid #dce8e2;
  color: var(--green-800);
  font-size: 12px;
  line-height: 1.45;
}

@media (max-width: 1180px) {
  .app-shell {
    grid-template-columns: 220px minmax(0, 1fr);
  }

  .main-grid,
  .launch-grid,
  .output-grid,
  .lower-grid {
    grid-template-columns: 1fr;
  }

  .launch-output-panel {
    position: static;
  }

  .plan-table {
    max-height: none;
  }
}

@media (min-width: 1460px) {
  .form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .app-shell {
    display: block;
  }

  .sidebar {
    position: static;
    height: auto;
    padding: 18px 14px;
  }

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

  .side-nav a {
    min-height: 42px;
    font-size: 13px;
  }

  .sidebar-status {
    margin-top: 0;
  }

  .workspace {
    padding: 0 14px 24px;
  }

  .topbar {
    position: static;
    display: grid;
    gap: 14px;
    padding: 16px 0;
  }

  .top-actions {
    width: 100%;
  }

  .icon-button {
    flex: 1;
  }

  .form-grid,
  .launch-grid,
  .output-grid,
  .channel-set,
  .plan-row,
  .plan-row footer,
  .case-grid,
  .skill-grid,
  .positioning-card dl {
    grid-template-columns: 1fr;
  }

  .module-row {
    grid-template-columns: 1fr;
  }

  .image-plan-row header {
    display: grid;
  }

  .message {
    max-width: 100%;
  }
}
