:root {
  color-scheme: light;
  --ink: #23282f;
  --ink-2: #15191f;
  --lime: #b7d538;
  --lime-dark: #8aa81f;
  --soft: #f3f6ea;
  --paper: #fffdf7;
  --line: #e1e6dc;
  --muted: #68717a;
  --danger-soft: #fbf3f1;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding-bottom: 78px;
  background: #fff;
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Noto Sans JP", sans-serif;
  line-height: 1.8;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

a {
  color: inherit;
}

.wrap {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
}

.narrow {
  max-width: 780px;
}

.center {
  max-width: 820px;
  text-align: center;
}

.section-soft {
  background: var(--soft);
}

section {
  padding: clamp(54px, 8vw, 92px) 0;
}

h1,
h2 {
  margin: 0;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.12;
  overflow-wrap: anywhere;
}

h1 {
  font-size: clamp(48px, 7.6vw, 92px);
}

h1 span,
.answer h2 span {
  color: var(--lime-dark);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 4.8vw, 56px);
}

p {
  margin: 0 0 16px;
}

.lead {
  color: var(--muted);
  font-size: clamp(16px, 1.6vw, 19px);
}

.section-label {
  margin: 0 0 12px;
  color: var(--lime-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.sticky-cta {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 20;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 -8px 24px rgba(35, 40, 47, 0.13);
}

.sticky-cta a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(420px, 100%);
  min-height: 50px;
  margin: 0 auto;
  border-radius: 10px;
  background: var(--ink);
  color: var(--lime);
  text-decoration: none;
  font-weight: 900;
}

.hero {
  min-height: 100vh;
  padding: clamp(44px, 7vw, 76px) 0 clamp(58px, 8vw, 94px);
  background:
    radial-gradient(circle at 84% 20%, rgba(183, 213, 56, 0.22), transparent 34%),
    linear-gradient(180deg, #fbfcf6 0%, #fff 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.personal {
  display: inline-block;
  max-width: 100%;
  margin: 0 0 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.78);
  color: #5d6670;
  font-size: 13px;
  font-weight: 800;
  white-space: normal;
  overflow-wrap: anywhere;
}

.hero-icon {
  display: block;
  width: 72px;
  height: 72px;
  margin-bottom: 16px;
  border-radius: 18px;
  box-shadow: 0 12px 28px rgba(35, 40, 47, 0.16);
}

.tagline {
  margin: 0 0 8px;
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 900;
}

.sub {
  max-width: 700px;
  margin: 22px 0 22px;
  color: #4f5963;
  font-size: clamp(17px, 1.8vw, 21px);
}

.hero-promise {
  max-width: 640px;
  margin: 0 0 22px;
  border-left: 5px solid var(--lime);
  border-radius: 12px;
  padding: 14px 16px;
  background: #f7fbe8;
  color: var(--ink-2);
  font-size: clamp(15px, 1.5vw, 18px);
  font-weight: 900;
  line-height: 1.65;
}

.checks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.checks li {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 10px 12px;
  background: #fff;
  font-weight: 900;
}

.checks span {
  margin-right: 7px;
  color: var(--lime-dark);
}

.hero-benefits {
  display: grid;
  gap: 10px;
  max-width: 640px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.hero-benefits li {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 13px 18px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 34px rgba(35, 40, 47, 0.08);
}

.hero-benefits b {
  color: var(--ink-2);
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.3;
  text-align: center;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.center-actions {
  justify-content: center;
}

.cta-btn,
.ghost-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  border-radius: 12px;
  padding: 0 20px;
  text-decoration: none;
  font-weight: 900;
}

.cta-btn {
  background: var(--ink);
  color: var(--lime);
  box-shadow: 0 10px 28px rgba(35, 40, 47, 0.2);
}

.ghost-btn {
  border: 2px solid var(--ink);
  background: #fff;
  color: var(--ink);
}

.ghost-btn.light {
  border-color: rgba(255, 255, 255, 0.44);
  background: transparent;
  color: #fff;
}

.cta-sub {
  margin-top: 12px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.phone-demo {
  justify-self: center;
  width: min(430px, 100%);
  overflow: hidden;
  border: 12px solid var(--ink);
  border-radius: 32px;
  background: #aebdca;
  box-shadow: 0 28px 80px rgba(35, 40, 47, 0.24);
}

.phone-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px;
  background: var(--ink);
  color: #fff;
}

.phone-head img {
  width: 42px;
  height: 42px;
  border-radius: 12px;
}

.phone-head b,
.phone-head span {
  display: block;
}

.phone-head b {
  line-height: 1.25;
}

.phone-head span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
}

.source-pills {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 7px;
  padding: 12px 12px 0;
  background: #aebdca;
}

.source-pills span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: #31404d;
  font-size: 11px;
  font-weight: 900;
}

.chat {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 330px;
  padding: 18px 14px;
}

.bubble {
  max-width: 86%;
  border-radius: 17px;
  padding: 12px 14px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.65;
}

.bubble.user {
  align-self: flex-end;
  border-bottom-right-radius: 5px;
  background: #8de055;
  color: #16310a;
}

.bubble.ai {
  align-self: flex-start;
  border-bottom-left-radius: 5px;
  background: #fff;
}

.photo {
  border-radius: 10px;
  padding: 28px 18px;
  background: #d4dde6;
  color: #526270;
  text-align: center;
}

.mini-card {
  margin-top: 9px;
  border: 1px solid #d7e6a8;
  border-radius: 10px;
  padding: 10px;
  background: #f7fbe8;
}

.task-board {
  display: grid;
  gap: 7px;
  padding: 0 12px 13px;
  background: #aebdca;
}

.task-board div {
  display: grid;
  grid-template-columns: 38px 1fr;
  align-items: center;
  gap: 9px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.88);
  padding: 8px 10px;
  box-shadow: 0 6px 16px rgba(35, 40, 47, 0.1);
}

.task-board b {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--lime);
  font-size: 12px;
  font-weight: 900;
}

.task-board span {
  color: #31404d;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.45;
}

.rich-menu {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 2px solid rgba(183, 213, 56, 0.8);
  background: #f7f9f1;
}

.rich-menu span {
  padding: 12px 6px;
  text-align: center;
  font-size: 12px;
  font-weight: 900;
}

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 1fr);
  gap: clamp(24px, 5vw, 60px);
  align-items: start;
}

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

.pain-list li {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 16px;
  background: #fff;
  font-weight: 800;
}

.answer {
  background: var(--ink);
  color: #fff;
}

.answer p {
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(16px, 1.8vw, 20px);
}

.build-points {
  background: var(--soft);
}

.point-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.point-grid article {
  min-height: 190px;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 20px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(35, 40, 47, 0.06);
}

.point-grid b,
.point-grid span {
  display: block;
}

.point-grid b {
  margin-bottom: 8px;
  color: var(--ink-2);
  font-size: 18px;
  line-height: 1.45;
}

.point-grid span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.work-examples h2 {
  max-width: 820px;
}

.work-examples .lead {
  max-width: 820px;
}

.example-carousel {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(300px, 32%);
  gap: 14px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  margin: 26px -18px 0;
  padding: 0 18px 18px;
}

.example-carousel article {
  scroll-snap-align: start;
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 230px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  padding: 20px;
  box-shadow: 0 10px 28px rgba(35, 40, 47, 0.08);
}

.example-carousel em {
  justify-self: start;
  border-radius: 999px;
  background: var(--lime);
  color: var(--ink);
  padding: 5px 10px;
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
}

.example-carousel b {
  color: var(--ink-2);
  font-size: 19px;
  line-height: 1.38;
}

.example-carousel span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.industry-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.industry-strip span {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: #46505a;
  padding: 7px 12px;
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

.industry-example-grid {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(270px, 30%);
  gap: 12px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  margin: 18px -18px 0;
  padding: 0 18px 18px;
}

.industry-example-grid article {
  scroll-snap-align: start;
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 190px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  padding: 18px;
  box-shadow: 0 8px 24px rgba(35, 40, 47, 0.06);
}

.industry-example-grid em {
  justify-self: start;
  border-radius: 999px;
  background: var(--lime);
  color: var(--ink);
  padding: 5px 10px;
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
}

.industry-example-grid b {
  color: var(--ink-2);
  font-size: 18px;
  line-height: 1.42;
}

.industry-example-grid span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

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

.feature-grid article {
  min-height: 178px;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 20px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(35, 40, 47, 0.06);
}

.feature-grid b,
.feature-grid span {
  display: block;
}

.feature-grid b {
  margin-bottom: 8px;
  font-size: 19px;
}

.feature-grid span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.field-design {
  background: #fff;
}

.field-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(24px, 5vw, 60px);
  align-items: start;
}

.field-cards,
.diagnosis-grid {
  display: grid;
  gap: 14px;
}

.field-cards article,
.diagnosis-grid article {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 20px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(35, 40, 47, 0.06);
}

.field-cards b,
.field-cards span,
.diagnosis-grid b,
.diagnosis-grid span {
  display: block;
}

.field-cards b,
.diagnosis-grid b {
  margin-bottom: 8px;
  font-size: 19px;
}

.field-cards span,
.diagnosis-grid span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.diagnosis {
  background: #fff;
}

.diagnosis-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 24px;
}

.role-grid,
.entry-grid {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

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

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

.role-grid article,
.entry-grid article {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 20px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(35, 40, 47, 0.06);
}

.role-grid em {
  display: inline-flex;
  margin-bottom: 12px;
  border-radius: 999px;
  padding: 5px 10px;
  background: var(--lime);
  color: var(--ink);
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
}

.role-grid b,
.role-grid span,
.entry-grid b,
.entry-grid span {
  display: block;
}

.role-grid b,
.entry-grid b {
  margin-bottom: 8px;
  font-size: 19px;
}

.role-grid span,
.entry-grid span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

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

.flow-side {
  display: grid;
  gap: 10px;
  border-radius: 14px;
  padding: 22px;
}

.flow-side b {
  display: inline-flex;
  width: fit-content;
  border-radius: 8px;
  padding: 5px 12px;
  color: #fff;
  font-size: 13px;
}

.flow-side span {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 13px 14px 13px 38px;
  background: #fff;
  font-weight: 800;
}

.flow-side span::before {
  position: absolute;
  left: 14px;
  top: 13px;
  font-weight: 900;
}

.before-flow {
  border: 1px solid #efd6d1;
  background: var(--danger-soft);
}

.before-flow b {
  background: #c47b72;
}

.before-flow span::before {
  content: "×";
  color: #bd483f;
}

.after-flow {
  border: 2px solid var(--lime);
  background: #f7fbe8;
}

.after-flow b {
  background: var(--lime);
  color: var(--ink);
}

.after-flow span::before {
  content: "○";
  color: var(--lime-dark);
}

.zitan-entry {
  background: #fff;
}

.zitan-card {
  border-radius: 18px;
  padding: clamp(24px, 4vw, 34px);
  background: var(--ink);
  color: #fff;
  box-shadow: 0 24px 70px rgba(35, 40, 47, 0.18);
}

.zitan-card b,
.zitan-card span {
  display: block;
}

.zitan-card b {
  color: var(--lime);
  font-size: 14px;
  text-transform: uppercase;
}

.zitan-card span {
  margin: 8px 0 18px;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 900;
  line-height: 1.15;
}

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

.zitan-card li {
  position: relative;
  padding-left: 22px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
}

.zitan-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--lime);
}

.table-wrap {
  overflow-x: auto;
  border-radius: 14px;
  box-shadow: 0 12px 34px rgba(35, 40, 47, 0.08);
}

table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  background: #fff;
}

th,
td {
  border: 1px solid var(--line);
  padding: 15px 14px;
  text-align: center;
  vertical-align: middle;
}

thead th {
  background: var(--ink);
  color: #fff;
}

thead th:nth-child(2) {
  background: var(--lime);
  color: var(--ink);
}

tbody td:first-child {
  background: var(--soft);
  font-weight: 900;
  text-align: left;
}

tbody td:nth-child(2) {
  color: #4d5660;
}

tbody td:nth-child(5) {
  background: #f7fbe8;
  font-weight: 900;
}

tbody td:nth-child(2),
tbody td:nth-child(3),
tbody td:nth-child(4) {
  color: var(--muted);
}

.process {
  background: #fff;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.process-steps article {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 20px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(35, 40, 47, 0.06);
}

.process-steps em {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: var(--lime);
  color: var(--ink);
  font-style: normal;
  font-weight: 900;
}

.process-steps b,
.process-steps span {
  display: block;
}

.process-steps b {
  margin-bottom: 6px;
  color: var(--ink-2);
  font-size: 18px;
}

.process-steps span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.faq h2 {
  max-width: 820px;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 860px;
  margin-top: 24px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(35, 40, 47, 0.05);
  overflow: hidden;
}

.faq-list summary {
  cursor: pointer;
  padding: 16px 20px;
  color: var(--ink-2);
  font-size: 16px;
  font-weight: 900;
  line-height: 1.55;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  float: right;
  color: var(--lime-dark);
  font-size: 22px;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list p {
  margin: 0;
  border-top: 1px solid var(--line);
  padding: 16px 20px 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.proof {
  background: #fff;
}

.proof-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(24px, 5vw, 60px);
  align-items: center;
}

.numbers {
  display: grid;
  gap: 12px;
}

.numbers div {
  border-radius: 14px;
  padding: 20px;
  background: var(--ink);
  color: #fff;
}

.numbers b,
.numbers span {
  display: block;
}

.numbers b {
  color: var(--lime);
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.1;
}

.numbers span {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 700;
}

.ba-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 22px;
}

.ba-card {
  border-radius: 14px;
  padding: 22px;
}

.ba-card.before {
  border: 1px solid #efd6d1;
  background: var(--danger-soft);
}

.ba-card.after {
  border: 2px solid var(--lime);
  background: #f7fbe8;
}

.ba-card span {
  display: inline-flex;
  margin-bottom: 10px;
  border-radius: 7px;
  padding: 4px 12px;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
}

.ba-card.before span {
  background: #c47b72;
}

.ba-card.after span {
  background: var(--lime);
  color: var(--ink);
}

.ba-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.ba-card li {
  position: relative;
  margin: 10px 0;
  padding-left: 24px;
  font-weight: 800;
}

.ba-card.before li::before {
  content: "×";
  position: absolute;
  left: 0;
  color: #bd483f;
}

.ba-card.after li::before {
  content: "○";
  position: absolute;
  left: 0;
  color: var(--lime-dark);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.steps article {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 20px;
  background: #fff;
}

.steps em {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: var(--lime);
  color: var(--ink);
  font-style: normal;
  font-weight: 900;
}

.steps b,
.steps span {
  display: block;
}

.steps b {
  margin-bottom: 6px;
  font-size: 18px;
}

.steps span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.story p {
  color: #46505a;
  font-size: 17px;
}

.story .sign {
  margin-top: 22px;
  color: var(--ink);
  text-align: right;
  font-weight: 900;
}

.offer {
  background: var(--ink);
  color: #fff;
}

.offer p {
  color: rgba(255, 255, 255, 0.76);
  font-size: 17px;
}

.free {
  display: inline-flex;
  margin-bottom: 14px;
  border-radius: 8px;
  padding: 6px 16px;
  background: var(--lime);
  color: var(--ink);
  font-weight: 900;
}

footer {
  padding: 30px 0 96px;
  background: #191e24;
  color: rgba(255, 255, 255, 0.62);
  text-align: center;
}

footer b,
footer span,
footer small {
  display: block;
}

footer b {
  color: var(--lime);
}

footer small {
  margin-top: 8px;
  font-size: 12px;
}

@media (max-width: 900px) {
  .wrap {
    width: min(600px, calc(100% - 36px));
  }

  .hero-grid,
  .two-col,
  .field-grid,
  .proof-grid,
  .ba-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    min-width: 0;
    text-align: center;
    overflow-wrap: anywhere;
  }

  .hero-icon,
  .personal {
    margin-right: auto;
    margin-left: auto;
  }

  .checks,
  .hero-actions {
    justify-content: center;
  }

  .feature-grid,
  .point-grid,
  .diagnosis-grid,
  .role-grid,
  .entry-grid,
  .workflow-map,
  .steps,
  .process-steps {
    grid-template-columns: 1fr;
  }

  .example-carousel {
    grid-auto-columns: minmax(280px, 78%);
  }

  .industry-example-grid {
    grid-auto-columns: minmax(260px, 76%);
  }
}

@media (max-width: 560px) {
  body {
    padding-bottom: 74px;
  }

  .wrap {
    width: min(354px, calc(100% - 36px));
  }

  .hero .wrap {
    width: min(354px, calc(100% - 36px));
  }

  section {
    padding: 54px 0;
  }

  h1 {
    font-size: clamp(30px, 8.4vw, 34px);
    line-height: 1.16;
    overflow-wrap: anywhere;
  }

  h2 {
    font-size: clamp(28px, 9vw, 40px);
  }

  .hero {
    min-height: auto;
    padding-top: 38px;
  }

  .checks,
  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .personal,
  .sub,
  .cta-sub {
    width: 100%;
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .personal {
    border-radius: 12px;
    font-size: 12px;
  }

  .checks li,
  .cta-btn,
  .ghost-btn {
    width: 100%;
    min-width: 0;
    text-align: center;
    overflow-wrap: anywhere;
  }

  .phone-demo {
    border-width: 9px;
    border-radius: 28px;
  }

  .chat {
    min-height: 300px;
  }

  .source-pills {
    gap: 5px;
    padding-right: 9px;
    padding-left: 9px;
  }

  .source-pills span {
    font-size: 10.5px;
  }

  .example-carousel {
    grid-auto-columns: minmax(270px, 88%);
    margin-right: -18px;
    margin-left: -18px;
  }

  .industry-example-grid {
    grid-auto-columns: minmax(260px, 88%);
    margin-right: -18px;
    margin-left: -18px;
  }

  .industry-strip {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 8px;
  }

  .table-wrap {
    overflow: visible;
    margin-right: 0;
    margin-left: 0;
    border-radius: 14px;
  }

  table {
    min-width: 0;
  }

  thead {
    display: none;
  }

  tbody,
  tr,
  td {
    display: block;
    width: 100%;
  }

  tr {
    margin-bottom: 12px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #fff;
  }

  th,
  td {
    border: 0;
    text-align: left;
  }

  tbody td:first-child {
    background: var(--ink);
    color: #fff;
  }

  tbody td:nth-child(2)::before {
    content: attr(data-label) ": ";
    color: var(--muted);
    font-weight: 900;
  }

  tbody td:nth-child(3)::before,
  tbody td:nth-child(4)::before {
    content: attr(data-label) ": ";
    color: var(--muted);
    font-weight: 900;
  }

  tbody td:nth-child(5)::before {
    content: attr(data-label) ": ";
    color: var(--lime-dark);
    font-weight: 900;
  }
}
