:root {
  color-scheme: light;
  --bg: #ffffff;
  --bg-soft: #f4f7f6;
  --surface: #ffffff;
  --surface-strong: #eef4f3;
  --ink: #172321;
  --muted: #61716d;
  --line: #dbe5e2;
  --line-strong: #b8cbc6;
  --teal: #0f6f69;
  --teal-dark: #0a4f4b;
  --amber: #b86b2b;
  --amber-soft: #fff4e8;
  --red: #a33b3b;
  --green: #24775c;
  --shadow: 0 16px 38px rgba(23, 35, 33, 0.08);
  --radius: 8px;
  --z-header: 20;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family:
    -apple-system, BlinkMacSystemFont, "Hiragino Sans",
    "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

svg {
  display: block;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: var(--z-header);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 72px;
  padding: 14px clamp(20px, 4vw, 44px);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid transparent;
}

.site-header[data-elevated="true"] {
  border-bottom-color: var(--line);
  box-shadow: 0 8px 24px rgba(23, 35, 33, 0.06);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 190px;
  text-decoration: none;
}

.brand-logo {
  display: block;
  flex: 0 0 auto;
  width: clamp(50px, 5vw, 58px);
  height: clamp(50px, 5vw, 58px);
  border-radius: 50%;
  object-fit: cover;
}

.brand-text {
  display: grid;
  gap: 2px;
}

.brand-text strong,
.brand-text small {
  display: block;
}

.brand-text strong {
  color: var(--ink);
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
}

.brand-text small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.2;
}

.header-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 2vw, 24px);
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.header-nav a {
  text-decoration: none;
}

.header-nav a:hover,
.header-nav a:focus-visible {
  color: var(--teal-dark);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
}

.header-cta,
.button.primary {
  background: var(--teal);
  color: #ffffff;
}

.button.secondary {
  background: var(--surface);
  color: var(--teal-dark);
  border-color: var(--line-strong);
}

.header-cta svg,
.button svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 2.2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-section {
  padding: clamp(36px, 7vw, 80px) 0 46px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(430px, 0.92fr);
  gap: clamp(30px, 6vw, 72px);
  align-items: center;
}

.hero-copy h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(34px, 4.4vw, 56px);
  font-weight: 850;
  line-height: 1.16;
  text-wrap: balance;
}

.hero-copy h1 span {
  display: block;
  white-space: nowrap;
}

.hero-lead {
  margin: 24px 0 0;
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(16px, 1.8vw, 20px);
  line-height: 1.8;
  text-wrap: pretty;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 680px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.hero-proof li {
  min-height: 88px;
  padding: 14px 15px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-strong);
}

.hero-proof strong,
.hero-proof span {
  display: block;
}

.hero-proof strong {
  color: var(--teal-dark);
  font-size: 17px;
  font-weight: 900;
  line-height: 1.2;
}

.hero-proof span {
  margin-top: 7px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.45;
  text-wrap: pretty;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin: 24px 0 0;
  padding: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  list-style: none;
}

.hero-points li {
  position: relative;
  padding-left: 18px;
}

.hero-points li::before {
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--amber);
  content: "";
}

.hero-visual {
  position: relative;
  min-height: 440px;
}

.profile-card,
.phone-mock,
.hero-note {
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.profile-card {
  width: min(372px, 74%);
  overflow: hidden;
}

.profile-media {
  display: grid;
  grid-template-columns: 1fr 0.86fr;
  gap: 8px;
  padding: 8px;
  background: var(--surface-strong);
}

.profile-media img {
  width: 100%;
  height: 106px;
  object-fit: cover;
  border-radius: 6px;
}

.map-tile {
  position: relative;
  min-height: 106px;
  overflow: hidden;
  border-radius: 6px;
  background: #edf4f3;
}

.map-tile span {
  position: absolute;
  display: block;
  background: #c8d9d5;
}

.map-tile span:nth-child(1) {
  left: 16px;
  top: -12px;
  width: 2px;
  height: 150px;
  transform: rotate(42deg);
}

.map-tile span:nth-child(2) {
  left: 64px;
  top: -16px;
  width: 2px;
  height: 150px;
  transform: rotate(-28deg);
}

.map-tile span:nth-child(3) {
  left: -10px;
  top: 60px;
  width: 150px;
  height: 2px;
  transform: rotate(-12deg);
}

.map-tile b {
  position: absolute;
  right: 32px;
  top: 30px;
  width: 20px;
  height: 20px;
  border: 4px solid #ffffff;
  border-radius: 50% 50% 50% 0;
  background: var(--red);
  transform: rotate(-45deg);
  box-shadow: 0 8px 16px rgba(23, 35, 33, 0.12);
}

.profile-body {
  padding: 18px;
}

.profile-body h2 {
  margin: 0;
  font-size: 22px;
  line-height: 1.2;
}

.rating {
  margin: 8px 0 0;
  color: var(--amber);
  font-size: 13px;
  font-weight: 900;
}

.rating span,
.category {
  color: var(--muted);
  font-weight: 700;
}

.category {
  margin: 0;
  font-size: 12px;
}

.profile-tabs,
.profile-actions {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-top: 14px;
  color: var(--teal-dark);
  font-size: 11px;
  font-weight: 900;
  text-align: center;
}

.profile-tabs {
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}

.profile-actions span {
  display: grid;
  place-items: center;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-soft);
}

.profile-info {
  display: grid;
  gap: 10px;
  margin: 16px 0 0;
}

.profile-info div {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 10px;
  color: var(--muted);
  font-size: 12px;
}

.profile-info dt {
  color: var(--teal-dark);
  font-weight: 900;
}

.profile-info dd {
  margin: 0;
}

.phone-mock {
  position: absolute;
  right: 0;
  top: 62px;
  width: 218px;
  padding: 16px 12px 14px;
  border-color: #172321;
  box-shadow:
    0 18px 38px rgba(23, 35, 33, 0.16),
    inset 0 0 0 5px #172321;
}

.phone-speaker {
  width: 58px;
  height: 5px;
  margin: 0 auto 14px;
  border-radius: 999px;
  background: #172321;
}

.phone-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin: 0 6px 12px;
  font-size: 12px;
}

.phone-header strong {
  color: var(--ink);
}

.phone-header span {
  color: var(--muted);
  font-weight: 800;
}

.chat-bubble {
  margin: 0 6px 10px;
  padding: 12px;
  border-radius: var(--radius);
  background: var(--surface-strong);
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.55;
}

.phone-cta {
  display: grid;
  place-items: center;
  width: calc(100% - 12px);
  min-height: 38px;
  margin: 0 6px 12px;
  border-radius: var(--radius);
  background: var(--green);
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
}

.phone-menu {
  display: grid;
  gap: 8px;
  margin: 0 6px;
}

.phone-menu span {
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
}

.hero-note {
  position: absolute;
  left: 28px;
  bottom: 0;
  display: grid;
  gap: 2px;
  width: min(320px, 68%);
  padding: 14px 16px;
  border-color: var(--teal);
}

.hero-note strong {
  color: var(--teal-dark);
  font-size: 15px;
  line-height: 1.35;
}

.hero-note span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.trust-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-soft);
}

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

.strip-grid p {
  margin: 0;
  color: var(--teal-dark);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.55;
  text-wrap: pretty;
}

.operator-section {
  background: #ffffff;
}

.operator-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.78fr);
  gap: clamp(30px, 6vw, 78px);
  align-items: center;
}

.operator-copy h2 {
  margin: 0;
  font-size: clamp(30px, 4.4vw, 54px);
  font-weight: 850;
  line-height: 1.12;
  text-wrap: balance;
}

.operator-copy p {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.85;
  text-wrap: pretty;
}

.operator-copy blockquote {
  margin: 28px 0 0;
  padding: 18px 22px;
  border-left: 4px solid var(--amber);
  background: var(--amber-soft);
  color: var(--teal-dark);
  font-size: clamp(19px, 2.2vw, 26px);
  font-weight: 850;
  line-height: 1.45;
}

.operator-panel {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.operator-profile {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 18px;
  align-items: center;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.operator-profile img {
  display: block;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  object-fit: cover;
}

.operator-profile span,
.operator-profile strong,
.operator-profile small {
  display: block;
}

.operator-profile span {
  color: var(--amber);
  font-size: 12px;
  font-weight: 900;
}

.operator-profile strong {
  margin-top: 3px;
  color: var(--ink);
  font-size: 21px;
  font-weight: 900;
  line-height: 1.25;
}

.operator-profile small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.operator-list {
  display: grid;
  gap: 14px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.operator-list li {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 0 12px;
}

.operator-list li > span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 28px;
  border-radius: 999px;
  background: var(--surface-strong);
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
}

.operator-list strong {
  color: var(--ink);
  font-size: 15px;
  font-weight: 900;
  line-height: 1.45;
}

.operator-list p {
  grid-column: 2;
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
  text-wrap: pretty;
}

.section-block {
  padding: clamp(58px, 8vw, 96px) 0;
}

.muted-band {
  background: var(--bg-soft);
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.72fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
  margin-bottom: 34px;
}

.split-heading h2,
.safety-grid h2,
.contact-grid h2 {
  margin: 0;
  font-size: clamp(30px, 4.4vw, 54px);
  font-weight: 850;
  line-height: 1.12;
  text-wrap: balance;
}

.split-heading p,
.safety-grid p,
.contact-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  text-wrap: pretty;
}

.problem-section {
  background: linear-gradient(180deg, #ffffff 0%, var(--bg-soft) 100%);
}

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

.problem-item {
  min-height: 260px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 10px 28px rgba(23, 35, 33, 0.05);
}

.problem-item span,
.flow-step span {
  display: inline-grid;
  place-items: center;
  min-width: 34px;
  height: 28px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: var(--surface-strong);
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
}

.problem-item h3 {
  margin: 0 0 12px;
  font-size: 19px;
  line-height: 1.38;
}

.problem-item p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
  text-wrap: pretty;
}

.empathy-note {
  margin-top: 18px;
  padding: 18px 22px;
  border-left: 4px solid var(--teal);
  background: var(--surface);
}

.empathy-note p {
  margin: 0;
  color: var(--teal-dark);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.75;
  text-wrap: pretty;
}

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

.scope-item {
  min-height: 292px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.scope-visual {
  position: relative;
  display: grid;
  min-height: 116px;
  margin-bottom: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-soft);
}

.scope-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.map-preview {
  grid-template-columns: 1fr 0.9fr;
}

.map-preview span {
  position: relative;
  background: #eef5f3;
}

.map-preview span::before,
.map-preview span::after {
  position: absolute;
  content: "";
}

.map-preview span::before {
  left: 32%;
  top: 18%;
  width: 18px;
  height: 18px;
  border: 4px solid #ffffff;
  border-radius: 50% 50% 50% 0;
  background: var(--red);
  transform: rotate(-45deg);
}

.map-preview span::after {
  inset: 18px 12px auto;
  height: 2px;
  background: #c8d9d5;
  box-shadow:
    0 28px 0 #c8d9d5,
    0 56px 0 #c8d9d5;
}

.review-preview {
  align-content: start;
  gap: 8px;
  padding: 14px;
}

.review-preview span {
  color: var(--amber);
  font-size: 15px;
  font-weight: 900;
}

.review-preview p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.55;
}

.faq-preview {
  gap: 8px;
  padding: 14px;
}

.faq-preview span,
.line-preview span {
  display: block;
  padding: 9px 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}

.line-preview {
  align-content: center;
  padding: 14px;
  background: #eaf6ef;
}

.line-preview i {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin: 0 auto 8px;
  border-radius: 50%;
  background: #06c755;
}

.line-preview i::before {
  color: #ffffff;
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
  content: "LINE";
}

.ai-preview {
  align-content: start;
  gap: 8px;
  padding: 14px;
}

.ai-preview strong {
  color: var(--teal-dark);
  font-size: 12px;
  line-height: 1.45;
}

.ai-preview span {
  display: block;
  height: 8px;
  border-radius: 999px;
  background: var(--line);
}

.ai-preview span:nth-child(3) {
  width: 82%;
}

.ai-preview span:nth-child(4) {
  width: 68%;
}

.scope-item h3 {
  margin: 0 0 10px;
  font-size: 20px;
  line-height: 1.25;
}

.scope-item p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
  text-wrap: pretty;
}

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

.diagnosis-memo {
  margin-bottom: 24px;
  padding: 26px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(15, 111, 105, 0.07) 0 5px, transparent 5px),
    #ffffff;
  box-shadow: var(--shadow);
}

.memo-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.memo-top p {
  margin: 0 0 4px;
  color: var(--amber);
  font-size: 12px;
  font-weight: 900;
}

.memo-top h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(21px, 2.4vw, 30px);
  font-weight: 900;
  line-height: 1.25;
}

.memo-top > span {
  flex: 0 0 auto;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-strong);
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.3;
}

.memo-summary {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 22px;
  align-items: stretch;
  padding: 22px 0;
}

.memo-score {
  display: grid;
  place-items: center;
  align-content: center;
  min-height: 150px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: radial-gradient(circle at center, #ffffff 48%, var(--surface-strong) 49%);
  color: var(--teal-dark);
  text-align: center;
}

.memo-score strong {
  font-size: 54px;
  font-weight: 850;
  line-height: 0.95;
  font-variant-numeric: tabular-nums;
}

.memo-score span {
  margin-top: 2px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.memo-score small {
  margin-top: 8px;
  color: var(--amber);
  font-size: 12px;
  font-weight: 900;
}

.memo-focus {
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-strong);
}

.memo-focus h4 {
  margin: 0 0 12px;
  color: var(--teal-dark);
  font-size: 16px;
  font-weight: 900;
}

.memo-focus ol {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 22px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.6;
}

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

.memo-findings div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.priority {
  display: inline-grid;
  place-items: center;
  min-width: 34px;
  height: 26px;
  margin-bottom: 12px;
  border-radius: 999px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
}

.priority.high {
  background: var(--red);
}

.priority.medium {
  background: var(--amber);
}

.memo-findings strong {
  display: block;
  color: var(--ink);
  font-size: 15px;
  font-weight: 900;
  line-height: 1.45;
}

.memo-findings p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
  text-wrap: pretty;
}

.memo-footer {
  margin: 16px 0 0;
  padding: 13px 15px;
  border-left: 3px solid var(--teal);
  background: var(--surface-strong);
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.65;
  text-wrap: pretty;
}

.deliverable-preview {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 10px 28px rgba(23, 35, 33, 0.06);
}

.preview-header {
  margin-bottom: 22px;
  align-items: flex-start;
}

.preview-header strong {
  color: var(--ink);
  font-size: 18px;
  line-height: 1.35;
}

.preview-header span {
  flex: 0 0 auto;
  color: var(--amber);
}

.check-row {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  padding: 12px 0;
  border-top: 1px solid var(--line);
}

.check-row p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.check {
  width: 16px;
  height: 16px;
  margin-top: 4px;
  border-radius: 50%;
}

.check.ok {
  background: var(--green);
}

.check.warn {
  background: var(--amber);
}

.preview-note {
  margin-top: 18px;
  padding: 12px 14px;
  border-left: 3px solid var(--teal);
  background: var(--surface-strong);
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.6;
}

.faq-table {
  width: 100%;
  border-collapse: collapse;
  color: var(--muted);
  font-size: 14px;
}

.faq-table th,
.faq-table td {
  padding: 12px 0;
  border-top: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.faq-table th {
  width: 58px;
  color: var(--teal-dark);
}

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

.score-list p {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 0;
  padding: 11px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.score-list strong {
  color: var(--teal-dark);
  font-size: 13px;
  white-space: nowrap;
}

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

.price-item {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.price-item.featured {
  border-color: var(--teal);
  box-shadow: var(--shadow);
}

.price-item h3 {
  margin: 0 0 18px;
  font-size: 22px;
}

.price {
  margin: 0 0 12px;
  color: var(--teal-dark);
  font-size: clamp(30px, 4vw, 42px);
  font-weight: 850;
  line-height: 1.05;
  font-variant-numeric: tabular-nums;
}

.price-item p:not(.price) {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  min-height: 78px;
  text-wrap: pretty;
}

.price-item a {
  display: inline-flex;
  margin-top: 24px;
  color: var(--teal-dark);
  font-size: 14px;
  font-weight: 900;
  text-decoration-color: var(--line-strong);
  text-underline-offset: 5px;
}

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

.flow-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  counter-reset: flow;
}

.flow-step {
  position: relative;
  padding: 22px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.flow-step::after {
  position: absolute;
  right: -12px;
  top: 44px;
  z-index: 1;
  width: 20px;
  height: 2px;
  background: var(--line-strong);
  content: "";
}

.flow-step:last-child::after {
  display: none;
}

.flow-step h3 {
  margin: 0 0 10px;
  font-size: 18px;
  line-height: 1.3;
}

.flow-step p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
  text-wrap: pretty;
}

.safety-band {
  background: var(--teal-dark);
  color: #ffffff;
}

.safety-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: start;
}

.safety-grid p {
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.78);
}

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

.boundary-list li {
  position: relative;
  padding: 16px 20px 16px 48px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.boundary-list li::before {
  position: absolute;
  left: 20px;
  top: 22px;
  width: 12px;
  height: 12px;
  border: 2px solid var(--amber);
  border-radius: 50%;
  content: "";
}

.boundary-list strong,
.boundary-list span {
  display: block;
}

.boundary-list strong {
  font-size: 15px;
  font-weight: 900;
  line-height: 1.45;
}

.boundary-list span {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.65;
  text-wrap: pretty;
}

.faq-section {
  background: var(--surface);
}

.faq-list {
  display: grid;
  gap: 10px;
  max-width: 920px;
}

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

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 64px;
  padding: 18px 22px;
  color: var(--ink);
  font-size: 16px;
  font-weight: 900;
  line-height: 1.45;
  cursor: pointer;
  list-style: none;
}

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

.faq-item summary::after {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 26px;
  height: 26px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--teal-dark);
  font-size: 18px;
  line-height: 1;
  content: "+";
}

.faq-item[open] summary {
  color: var(--teal-dark);
}

.faq-item[open] summary::after {
  background: var(--teal);
  color: #ffffff;
  content: "-";
}

.faq-item p {
  margin: 0;
  padding: 0 22px 20px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
  text-wrap: pretty;
}

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

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.62fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
}

.contact-grid p {
  margin-top: 20px;
  max-width: 660px;
}

.form-preview {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.form-preview p {
  margin: 0 0 14px;
  color: var(--ink);
}

.form-preview ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.form-preview small {
  display: block;
  margin-top: 20px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}

.site-footer {
  padding: 28px 0;
  border-top: 1px solid var(--line);
  background: var(--surface);
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.footer-brand img {
  display: block;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
}

.footer-brand span {
  display: grid;
  gap: 3px;
}

.footer-brand strong,
.footer-brand small {
  display: block;
}

.footer-brand strong {
  color: var(--ink);
  font-size: 17px;
  font-weight: 900;
  line-height: 1;
}

.footer-brand small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.25;
}

.footer-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

@media (max-width: 980px) {
  .header-nav {
    display: none;
  }

  .hero-grid,
  .split-heading,
  .operator-grid,
  .safety-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    width: 100%;
    max-width: 720px;
    justify-self: center;
  }

  .profile-card {
    width: min(470px, 74%);
  }

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

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

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

  .flow-step::after {
    display: none;
  }

  .deliverable-layout,
  .pricing-grid,
  .memo-findings,
  .strip-grid {
    grid-template-columns: 1fr;
  }

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

  .price-item p:not(.price) {
    min-height: auto;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, 1120px);
  }

  .site-header {
    gap: 12px;
    min-height: 64px;
    padding: 10px 14px;
  }

  .brand {
    min-width: 0;
  }

  .brand-logo {
    width: 42px;
    height: 42px;
  }

  .brand-text small {
    display: none;
  }

  .brand-text strong {
    font-size: 17px;
  }

  .header-cta {
    min-height: 40px;
    padding: 8px 12px;
  }

  .hero-section {
    padding-top: 32px;
  }

  .hero-copy h1 {
    font-size: clamp(30px, 8.2vw, 40px);
  }

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

  .hero-proof li {
    min-height: auto;
  }

  .hero-actions,
  .contact-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-points {
    display: grid;
    gap: 8px;
  }

  .hero-visual {
    display: grid;
    gap: 14px;
    min-height: auto;
  }

  .profile-card {
    width: 100%;
  }

  .phone-mock {
    position: relative;
    top: auto;
    right: auto;
    z-index: 2;
    justify-self: end;
    width: min(218px, 58%);
    margin-top: -206px;
  }

  .hero-note {
    position: relative;
    left: auto;
    bottom: auto;
    z-index: 3;
    width: 100%;
    margin-top: -10px;
  }

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

  .scope-item {
    min-height: auto;
  }

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

  .problem-item {
    min-height: auto;
    padding: 20px;
  }

  .empathy-note {
    padding: 16px 18px;
  }

  .operator-panel,
  .diagnosis-memo {
    padding: 20px;
  }

  .operator-profile {
    grid-template-columns: 58px 1fr;
    gap: 14px;
  }

  .operator-profile img {
    width: 58px;
    height: 58px;
  }

  .operator-profile strong {
    font-size: 18px;
  }

  .operator-list li {
    grid-template-columns: 30px 1fr;
    gap: 0 10px;
  }

  .operator-list li > span {
    width: 30px;
  }

  .memo-top {
    display: grid;
  }

  .memo-top > span {
    width: 100%;
  }

  .flow-step {
    padding: 20px;
  }

  .faq-item summary {
    min-height: 58px;
    padding: 16px 18px;
    font-size: 15px;
  }

  .faq-item p {
    padding: 0 18px 18px;
  }

  .split-heading h2,
  .safety-grid h2,
  .contact-grid h2 {
    font-size: clamp(29px, 9vw, 40px);
  }

  .footer-grid {
    display: grid;
  }

  .footer-brand img {
    width: 48px;
    height: 48px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
