@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("fonts/Inter-400.ttf") format("truetype");
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("fonts/Inter-500.ttf") format("truetype");
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("fonts/Inter-600.ttf") format("truetype");
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("fonts/Inter-700.ttf") format("truetype");
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("fonts/Inter-800.ttf") format("truetype");
}

:root {
  --bg: #f6f7fb;
  --panel: #ffffff;
  --text: #172033;
  --muted: #667085;
  --line: #d9dee8;
  --brand: #6d35f6;
  --brand-dark: #5725d9;
  --soft: #f0e8ff;
  --green: #15803d;
  --orange: #b45309;
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", Arial, "Microsoft YaHei", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
}

body:has(.fixed-template-tip) {
  padding-bottom: 58px;
}

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

.topbar {
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.nav {
  max-width: 1180px;
  margin: 0 auto;
  padding: 14px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 7px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(180deg, #7c3cff 0%, #5f2eea 100%);
  font-size: 13px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
  flex-wrap: wrap;
}

.nav-links a {
  padding: 8px 10px;
  border-radius: 6px;
}

.nav-links a:hover {
  background: var(--soft);
  color: var(--brand);
}

.menu-toggle {
  display: none;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fff;
  cursor: pointer;
  place-items: center;
  padding: 8px;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
}

.hero {
  position: relative;
  overflow: hidden;
  color: #050505;
  background: #ffffff;
  border-bottom: 1px solid var(--line);
}

.hero::before,
.page-head::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(109, 53, 246, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(109, 53, 246, 0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
  padding: 86px 22px 62px;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 36px;
  align-items: center;
}

.hero-inner.hero-tool {
  grid-template-columns: 1fr;
}

.hero-intro {
  max-width: 930px;
  margin: 0 auto;
  text-align: center;
}

.eyebrow {
  margin-bottom: 10px;
  color: var(--brand);
  font-size: 14px;
  font-weight: 800;
}

h1 {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  margin: 0 0 16px;
  font-size: 58px;
  line-height: 1.08;
  color: #050505;
  font-weight: 800;
}

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

.mobile-title,
.mobile-lead {
  display: none;
}

.lead {
  max-width: 720px;
  margin: 0 auto 26px;
  color: #344054;
  font-size: 19px;
  line-height: 1.6;
}

.hero-platforms {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: 820px;
  margin: 0 auto;
}

.hero-platform {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid #e1d3ff;
  border-radius: 999px;
  background: #fff;
  color: #344054;
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(23, 32, 51, 0.06);
}

.hero-platform img {
  width: 18px;
  height: 18px;
  display: block;
}

.trust-bar {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin: 0 0 14px;
  padding: 8px 12px;
  border: 1px solid #e1d3ff;
  border-radius: 999px;
  background: var(--soft);
  color: var(--brand);
  font-size: 14px;
  font-weight: 800;
}

.trust-dot {
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: rgba(109, 53, 246, 0.45);
}

.search-box {
  display: flex;
  max-width: 700px;
  padding: 8px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.18);
}

.search-box input {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: 0;
  padding: 13px 14px;
  color: var(--text);
  font-size: 16px;
}

.search-box button,
.copy-btn {
  border: 0;
  border-radius: 6px;
  background: var(--brand);
  color: #fff;
  padding: 12px 16px;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
}

.hero-card,
.card,
.article,
.side-card,
.template-box {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.hero-card {
  padding: 22px;
  color: var(--text);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.14);
}

.generator {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 1fr);
  gap: 22px;
  align-items: stretch;
}

#home-generator .generator {
  align-items: start;
}

.generator-panel,
.result-panel {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.hero .generator-panel,
.hero .result-panel {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 18px 45px rgba(15, 23, 42, 0.16);
}

.generator-panel {
  padding: 22px;
}

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

.field label {
  display: block;
  margin-bottom: 7px;
  color: var(--text);
  font-weight: 800;
  font-size: 14px;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  padding: 12px 13px;
  color: var(--text);
  background: #fff;
  font: inherit;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: 0;
  border-color: rgba(109, 53, 246, 0.55);
  box-shadow: 0 0 0 3px rgba(109, 53, 246, 0.1);
}

.field textarea {
  min-height: 88px;
  resize: vertical;
}

.generate-btn {
  width: 100%;
  border: 0;
  border-radius: 7px;
  padding: 13px 16px;
  background: var(--brand);
  color: #fff;
  font-weight: 900;
  font-size: 16px;
  cursor: pointer;
}

.result-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 16px;
  background: #1f2937;
  color: #fff;
}

.result-head strong {
  display: block;
  line-height: 1.25;
}

.result-copy {
  min-width: 120px;
  border: 0;
  border-radius: 5px;
  background: #374151;
  color: #fff;
  padding: 8px 12px;
  font-weight: 800;
  cursor: pointer;
}

.result-body {
  min-height: 360px;
  padding: 24px;
  width: 100%;
  border: 0;
  background: #fff;
  color: #111827;
  white-space: pre-line;
  font-family: "Inter", Arial, "Microsoft YaHei", sans-serif;
  font-size: 15px;
  line-height: 1.65;
}

.editable-result {
  display: block;
  resize: vertical;
  min-height: 430px;
  outline: 0;
}

.editable-result:focus {
  box-shadow: inset 0 0 0 2px rgba(109, 53, 246, 0.25);
}

.result-cta {
  padding: 12px 16px;
  border-top: 1px solid var(--line);
  background: #f8fafc;
  color: var(--muted);
  font-size: 14px;
}

.result-cta a {
  color: var(--brand-dark);
  font-weight: 900;
}

.reply-preview {
  margin-top: 12px;
  padding: 14px;
  border-radius: 7px;
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  color: #344054;
  font-size: 14px;
}

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 42px 22px;
}

.section-band {
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
}

.section-band.white {
  background: #fff;
}

.section-band.gray {
  background: #f8fafc;
  border-color: #edf1f7;
}

.section-band.purple {
  background: #fbf8ff;
  border-color: #eee5ff;
}

.section-band .wrap {
  padding-top: 48px;
  padding-bottom: 48px;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 18px;
  margin-bottom: 18px;
}

h2 {
  margin: 0;
  font-size: 34px;
  line-height: 1.25;
  letter-spacing: 0;
}

.section-head p,
.page-head p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}

.tool-section .section-head {
  display: block;
  text-align: center;
}

.tool-section .section-head > div {
  max-width: 680px;
  margin: 0 auto;
}

.centered-head {
  display: block;
  text-align: center;
}

.centered-head > div {
  max-width: 760px;
  margin: 0 auto;
}

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

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

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

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

.value-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  transition: border-color 0.16s ease, box-shadow 0.16s ease, transform 0.16s ease;
}

.value-card:hover {
  border-color: rgba(109, 53, 246, 0.55);
  box-shadow: 0 14px 34px rgba(23, 32, 51, 0.1);
  transform: translateY(-2px);
}

.value-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  margin-bottom: 18px;
  background: var(--soft);
  color: var(--brand-dark);
}

.value-icon img {
  width: 24px;
  height: 24px;
  display: block;
}

.value-card strong {
  display: block;
  margin-bottom: 8px;
  color: #050505;
  font-size: 19px;
  line-height: 1.3;
  font-weight: 800;
}

.value-card p {
  margin: 0;
  color: #525866;
  font-size: 15px;
  line-height: 1.55;
}

.how-it-works {
  text-align: center;
}

.section-centered {
  text-align: left;
}

.section-centered .section-head {
  display: block;
  text-align: center;
}

.workflow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  margin-top: 42px;
}

.workflow::before {
  content: "";
  position: absolute;
  top: 24px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: var(--line);
}

.workflow-step {
  position: relative;
  z-index: 1;
  text-align: center;
}

.step-number {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
  border: 2px solid var(--brand);
  border-radius: 999px;
  color: var(--brand);
  background: #fff;
  font-weight: 900;
  font-size: 18px;
}

.workflow-step h3 {
  margin: 0 0 10px;
  font-size: 17px;
}

.workflow-step p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

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

.use-case-card {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 14px;
  align-items: start;
  min-height: 104px;
  padding: 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.use-case-card img {
  width: 22px;
  height: 22px;
  margin-top: 2px;
}

.use-case-card strong {
  display: block;
  color: #050505;
  font-size: 16px;
  line-height: 1.35;
  font-weight: 800;
}

.use-case-card p {
  margin: 10px 0 0;
  color: #525866;
  font-size: 14px;
  line-height: 1.55;
}

.action-demo {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 56px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  margin-top: 24px;
}

.demo-card {
  min-height: 420px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
}

.demo-card.after {
  border-color: #d8c7ff;
  box-shadow: 0 0 0 1px rgba(109, 53, 246, 0.12);
}

.demo-head {
  padding: 12px 18px;
  border-bottom: 1px solid var(--line);
  background: #f8fafc;
  color: #344054;
  font-weight: 900;
  font-size: 14px;
}

.demo-card.after .demo-head {
  background: #f8f3ff;
  color: var(--brand);
}

.demo-body {
  padding: 20px;
  color: #344054;
  font-size: 16px;
}

.demo-body p {
  margin: 0 0 18px;
}

.demo-arrow {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--soft);
  color: var(--brand);
  font-size: 24px;
  font-weight: 900;
}

.card {
  padding: 18px;
  transition: border-color 0.16s ease, box-shadow 0.16s ease, transform 0.16s ease;
}

.card:hover {
  border-color: rgba(109, 53, 246, 0.55);
  box-shadow: 0 14px 34px rgba(23, 32, 51, 0.1);
  transform: translateY(-2px);
}

.card strong {
  display: block;
  margin-bottom: 6px;
  font-size: 17px;
}

.card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.badge {
  display: inline-flex;
  padding: 5px 10px;
  border-radius: 999px;
  background: #f0e8ff;
  border: 1px solid #e1d2ff;
  color: var(--brand-dark);
  font-size: 13px;
  font-weight: 800;
}

.breadcrumb-bar {
  background: #f8fafc;
  border-bottom: 1px solid var(--line);
}

.breadcrumb {
  max-width: 1180px;
  margin: 0 auto;
  padding: 10px 22px;
  color: var(--muted);
  font-size: 14px;
}

.breadcrumb a {
  color: var(--brand-dark);
}

.page-head {
  position: relative;
  overflow: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at 18% 12%, rgba(124, 60, 255, 0.1), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f7f3ff 100%);
}

.page-head-inner {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
  padding: 50px 22px 34px;
}

.category-hero .page-head-inner {
  max-width: 940px;
  text-align: center;
  padding: 70px 22px 58px;
}

.category-hero h1 {
  max-width: 920px;
  margin: 0 auto 16px;
}

.category-hero .trust-bar {
  justify-content: center;
}

.page-head .lead,
.page-head .eyebrow {
  color: #344054;
}

.page-head .badge {
  background: var(--soft);
  color: var(--brand);
}

.layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 22px;
  align-items: start;
}

.content-layout {
  display: block;
  max-width: 1180px;
  margin: 0 auto;
}

.article {
  padding: 30px;
}

.content-article {
  padding: 0;
  background: transparent;
  border: 0;
}

.content-block {
  margin-bottom: 54px;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.content-block:last-child {
  margin-bottom: 0;
}

.content-block .section-head {
  display: block;
  max-width: 760px;
  margin: 0 auto 20px;
  text-align: center;
}

.content-block .section-head > div {
  max-width: none;
  margin: 0 auto;
}

.content-block .section-head h2 {
  font-size: 34px;
  line-height: 1.2;
}

.content-block .section-head p {
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  font-size: 17px;
}

.answer-summary {
  margin: 0 0 18px;
  padding: 16px 18px;
  border: 1px solid #d9c6ff;
  border-left: 4px solid var(--brand);
  border-radius: var(--radius);
  background: #fbf8ff;
  color: #344054;
  font-size: 16px;
  line-height: 1.6;
}

.answer-summary strong {
  color: var(--brand-dark);
}

.template-tips {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  background: transparent;
  color: #344054;
  font-size: 14px;
  line-height: 1.5;
}

.template-tips strong {
  grid-column: 1 / -1;
  color: #050505;
  font-size: 16px;
}

.template-tips div {
  padding: 13px 14px;
  border: 1px solid #e6ddff;
  border-radius: var(--radius);
  background: #fbf8ff;
}

.tip-good,
.tip-avoid {
  font-weight: 800;
}

.tip-good {
  color: var(--brand-dark);
}

.tip-avoid {
  color: #7c2d12;
}

.article h2 {
  margin-top: 30px;
  font-size: 22px;
}

.article h2:first-child {
  margin-top: 0;
}

.article h3 {
  margin: 22px 0 8px;
  font-size: 18px;
}

.template-box {
  margin: 0 0 24px;
  overflow: hidden;
}

.featured-template,
.compact-template {
  margin-bottom: 0;
}

.featured-template {
  border-color: #d9c6ff;
  box-shadow: 0 18px 42px rgba(109, 53, 246, 0.08);
}

.version-tabs {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.platform-head {
  margin-bottom: 14px;
}

.platform-head h2 {
  font-size: 24px;
}

.platform-head p {
  font-size: 15px;
}

.tab-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.tab-button {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid #e1d2ff;
  border-radius: 999px;
  background: #fff;
  color: var(--brand-dark);
  padding: 9px 14px;
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
}

.tab-button img {
  width: 18px;
  height: 18px;
  display: block;
}

.tab-button.active {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}

.tab-button.active img {
  filter: brightness(0) invert(1);
}

.small-btn {
  padding: 8px 11px;
  font-size: 13px;
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
}

.template-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
  background: #f8fafc;
}

.template-body {
  padding: 22px;
  color: #344054;
  white-space: pre-line;
  font-size: 16px;
  line-height: 1.72;
}

.note-list {
  display: grid;
  gap: 12px;
}

.platform-notes-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.platform-note {
  padding: 16px;
  border: 1px solid #e6ddff;
  border-radius: var(--radius);
  background: #fff;
}

.platform-note img {
  width: 22px;
  height: 22px;
  display: block;
  margin-bottom: 12px;
}

.platform-note strong {
  display: block;
  color: #050505;
  font-size: 16px;
  line-height: 1.25;
  margin-bottom: 7px;
}

.platform-note p {
  margin: 0;
  color: #525866;
  font-size: 14px;
  line-height: 1.55;
}

.note {
  margin: 0;
  padding: 16px 18px;
  border: 1px solid #fed7aa;
  border-left: 4px solid var(--orange);
  border-radius: var(--radius);
  background: #fffaf5;
  color: #7c2d12;
  font-size: 15px;
  line-height: 1.55;
}

.note-list .note {
  margin: 0;
}

.decision-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 16px 0 24px;
}

.decision-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 18px;
}

.decision-card.good {
  border-left: 4px solid var(--green);
}

.decision-card.warn {
  border-left: 4px solid var(--orange);
}

.decision-card strong {
  display: block;
  margin-bottom: 8px;
}

.check-list {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  margin: 8px 0;
  padding-left: 24px;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 900;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
}

.faq-item h3 {
  margin: 0 0 8px;
  font-size: 17px;
}

.faq-item p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.proof-band {
  background: #7133ff;
}

.proof-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 34px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.proof-copy {
  max-width: 560px;
  color: #fff;
  font-size: 18px;
  line-height: 1.45;
  font-weight: 800;
}

.logo-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.logo-pill {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 999px;
  padding: 8px 13px;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  font-weight: 900;
  letter-spacing: 0;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease, transform 0.15s ease;
}

.logo-pill:hover {
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-1px);
}

.trust-highlight {
  color: var(--brand-dark);
  font-weight: 900;
}

.text-highlight {
  color: var(--brand-dark);
  font-weight: 800;
}

.side-card {
  padding: 18px;
  margin-bottom: 14px;
}

.sticky-card {
  position: sticky;
  top: 18px;
}

.side-card h3 {
  margin: 0 0 12px;
  font-size: 17px;
}

.side-card a {
  display: block;
  padding: 7px 0;
  border-bottom: 1px solid #eef2f7;
  color: var(--brand-dark);
  font-size: 14px;
}

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

.mini-list li {
  position: relative;
  padding-left: 20px;
  color: #344054;
  font-size: 14px;
  line-height: 1.45;
}

.mini-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--brand);
}

.footer {
  border-top: 1px solid #202020;
  background: #151515;
  color: rgba(255, 255, 255, 0.72);
}

.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 28px 22px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 14px;
}

.footer-inner span:first-child {
  color: #fff;
  font-weight: 800;
}

.fixed-template-tip {
  position: fixed;
  left: 50%;
  bottom: 16px;
  z-index: 30;
  transform: translateX(-50%);
  width: min(720px, calc(100% - 32px));
  padding: 12px 16px;
  border: 1px solid #d9c6ff;
  border-radius: 999px;
  background: #7133ff;
  color: #fff;
  box-shadow: 0 16px 34px rgba(49, 27, 146, 0.24);
  text-align: center;
  font-size: 14px;
  font-weight: 800;
}

@media (max-width: 900px) {
  .hero-inner,
  .layout,
  .generator,
  .action-demo {
    grid-template-columns: 1fr;
  }

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

  .demo-arrow {
    margin: 0 auto;
    transform: rotate(90deg);
  }

  .grid,
  .grid.four,
  .value-grid,
  .use-case-grid,
  .template-tips,
  .platform-notes-grid,
  .workflow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .workflow::before {
    display: none;
  }

  h1 {
    font-size: 36px;
    line-height: 1.12;
  }

  h2 {
    font-size: 28px;
  }

  .section-head p,
  .page-head p {
    font-size: 16px;
  }

  .hero-inner {
    padding-top: 56px;
    padding-bottom: 44px;
  }

  .lead {
    font-size: 17px;
  }

  .result-body {
    min-height: 300px;
  }

  .demo-card {
    min-height: 0;
  }
}

@media (max-width: 560px) {
  body {
    line-height: 1.55;
  }

  .nav {
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 12px 16px;
    position: relative;
    text-align: left;
  }

  .menu-toggle {
    display: grid;
    gap: 4px;
  }

  .menu-toggle[aria-expanded="true"] {
    border-color: #d9c6ff;
    background: var(--soft);
  }

  .logo-mark {
    width: 30px;
    height: 30px;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 8px);
    left: 16px;
    right: 16px;
    z-index: 20;
    display: none;
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 18px 34px rgba(23, 32, 51, 0.14);
    font-size: 14px;
  }

  .nav-links a {
    display: block;
    width: 100%;
    padding: 10px 11px;
  }

  .nav-links.open {
    display: grid;
    gap: 2px;
  }

  .hero::before,
  .page-head::before {
    background-size: 42px 42px;
  }

  .hero-inner {
    padding: 26px 16px 24px;
    overflow: hidden;
  }

  .trust-bar {
    gap: 6px;
    margin-bottom: 12px;
    padding: 6px 9px;
    font-size: 12px;
  }

  .trust-bar span:nth-of-type(5) {
    display: none;
  }

  .trust-dot {
    display: none;
  }

  .desktop-title,
  .desktop-lead {
    display: none;
  }

  .mobile-title,
  .mobile-lead {
    display: inline;
  }

  .mobile-lead {
    display: block;
  }

  h1 {
    margin-bottom: 12px;
    font-size: 28px;
    line-height: 1.1;
  }

  h2 {
    font-size: 24px;
    line-height: 1.2;
  }

  .lead {
    margin-bottom: 14px;
    font-size: 14px;
    line-height: 1.45;
  }

  .hero-platforms {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
    max-width: 100%;
    padding-bottom: 4px;
    overflow: hidden;
  }

  .hero-platform {
    justify-content: center;
    min-height: 30px;
    padding: 5px 8px;
    gap: 5px;
    font-size: 12px;
    box-shadow: none;
  }

  .hero-platform img {
    width: 15px;
    height: 15px;
  }

  .wrap,
  .section-band .wrap {
    padding: 24px 16px;
  }

  .section-head,
  .centered-head {
    margin-bottom: 14px;
  }

  .section-head p,
  .page-head p {
    margin-top: 8px;
    font-size: 14px;
    line-height: 1.5;
  }

  .generator {
    gap: 14px;
  }

  .generator-panel {
    padding: 14px;
  }

  .form-grid {
    gap: 11px;
  }

  .field label {
    margin-bottom: 5px;
    font-size: 13px;
  }

  .field input,
  .field textarea,
  .field select {
    padding: 10px 11px;
    font-size: 15px;
  }

  .field textarea {
    min-height: 74px;
  }

  .generate-btn {
    padding: 12px 14px;
    font-size: 15px;
  }

  .result-head {
    padding: 11px 12px;
  }

  .result-copy {
    min-width: 86px;
    padding: 7px 9px;
  }

  .result-body {
    min-height: 220px;
    padding: 16px;
    font-size: 14px;
    line-height: 1.58;
  }

  #home-generator .result-body {
    max-height: 340px;
    overflow: auto;
  }

  .result-cta {
    padding: 10px 12px;
    font-size: 13px;
  }

  .search-box {
    display: grid;
  }

  .grid.four,
  .use-case-grid,
  .template-tips,
  .platform-notes-grid,
  .workflow {
    grid-template-columns: 1fr;
  }

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

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

  .value-grid,
  .use-case-grid,
  .grid {
    gap: 10px;
  }

  .value-card,
  .card,
  .use-case-card {
    padding: 14px;
  }

  .value-icon {
    width: 34px;
    height: 34px;
    margin-bottom: 10px;
  }

  .value-card strong {
    font-size: 15px;
  }

  .value-card p {
    font-size: 13px;
    line-height: 1.45;
  }

  .workflow {
    gap: 14px;
    margin-top: 18px;
  }

  .step-number {
    width: 38px;
    height: 38px;
    margin-bottom: 10px;
    font-size: 15px;
  }

  .action-demo {
    gap: 12px;
    margin-top: 14px;
  }

  .demo-card {
    min-height: 0;
  }

  .demo-head {
    padding: 10px 14px;
  }

  .demo-body {
    padding: 14px;
    font-size: 14px;
    line-height: 1.5;
  }

  .action-demo .demo-body {
    max-height: 330px;
    overflow: auto;
  }

  .demo-body p {
    margin-bottom: 12px;
  }

  .use-case-card p {
    display: none;
  }

  .use-case-card {
    min-height: 0;
    align-items: center;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .use-case-card img {
    width: 18px;
    height: 18px;
    opacity: 0.72;
  }

  .demo-arrow {
    width: 34px;
    height: 34px;
    font-size: 19px;
  }

  .article {
    padding: 20px;
  }

  .proof-inner,
  .footer-inner {
    padding-left: 16px;
    padding-right: 16px;
  }
}

@media (max-width: 560px) {
  .topbar {
    position: sticky;
    top: 0;
    z-index: 50;
  }

  .nav {
    min-height: 54px;
    padding-top: 9px;
    padding-bottom: 9px;
  }

  .logo {
    gap: 8px;
    font-size: 15px;
  }

  .menu-toggle {
    width: 36px;
    height: 36px;
  }

  .hero-inner {
    padding-top: 22px;
    padding-bottom: 20px;
  }

  .trust-bar {
    margin-bottom: 10px;
  }

  h1 {
    max-width: 340px;
    margin-bottom: 10px;
    font-size: 27px;
  }

  .mobile-lead {
    max-width: 340px;
  }

  .hero-platforms {
    max-width: 350px;
    gap: 5px;
  }

  .hero-platform {
    min-height: 27px;
    padding: 4px 7px;
    font-size: 11px;
  }

  .hero-platform img {
    width: 13px;
    height: 13px;
  }

  #home-generator .form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  #home-generator .field:nth-last-of-type(1),
  #home-generator .field:nth-of-type(1),
  #home-generator .field:nth-of-type(2),
  #home-generator .generate-btn {
    grid-column: 1 / -1;
  }

  #home-generator .field textarea {
    min-height: 66px;
  }

  #home-generator .generator-panel {
    padding: 13px;
  }

  #home-generator .result-body {
    max-height: 280px;
    min-height: 210px;
  }

  #home-generator .section-head {
    text-align: left;
  }

  #home-generator .section-head > div {
    margin-left: 0;
    margin-right: 0;
  }

  .value-card {
    min-height: 158px;
  }

  .card strong,
  .use-case-card strong {
    font-size: 15px;
    line-height: 1.32;
  }

  .use-case-card strong {
    color: #263145;
    font-weight: 650;
  }

  .card p {
    font-size: 13px;
    line-height: 1.45;
  }

  .badge-row {
    gap: 6px;
    margin-top: 10px;
  }

  .badge {
    padding: 4px 8px;
    font-size: 12px;
  }

  .workflow-step {
    display: grid;
    grid-template-columns: 38px 1fr;
    column-gap: 12px;
    text-align: left;
  }

  .workflow-step .step-number {
    grid-row: span 2;
    margin: 0;
  }

  .workflow-step h3 {
    margin-bottom: 4px;
  }

  .workflow-step p {
    font-size: 13px;
    line-height: 1.45;
  }

  .action-demo .demo-body {
    max-height: 260px;
  }

  .proof-inner {
    gap: 12px;
  }

  .proof-copy {
    font-size: 15px;
  }
}
