:root {
  --ink: #0b1421;
  --ink-soft: #253246;
  --navy: #06111d;
  --navy-2: #0d1f31;
  --gold: #d7a63a;
  --gold-soft: #f5e0a3;
  --cta: #e84b37;
  --cta-dark: #b92f22;
  --green: #12884a;
  --red: #c5463b;
  --blue: #176b97;
  --paper: #fffdf7;
  --paper-2: #f6f1e7;
  --line: #e6d8bd;
  --muted: #667389;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(10, 19, 33, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Noto Sans JP", "Yu Gothic", "Hiragino Sans", Arial, sans-serif;
  line-height: 1.8;
  letter-spacing: 0;
  overflow-wrap: anywhere;
  word-break: keep-all;
}

img {
  display: block;
  max-width: 100%;
}

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

.keep {
  display: inline-block;
}

#diagnosis,
#result-launch,
#result-growth,
#result-exit,
#result-buy {
  scroll-margin-top: 86px;
}

.lp-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 6vw;
  background: rgba(255, 253, 247, 0.94);
  border-bottom: 1px solid rgba(215, 166, 58, 0.24);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--white);
  background: var(--gold);
  border-radius: 6px;
  font-size: 12px;
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1.3;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.header-cta {
  color: var(--white);
  min-height: 54px;
  padding: 0 26px;
  background: linear-gradient(135deg, #ff5a32, #ff8b2f);
  border: 2px solid rgba(255, 255, 255, 0.68);
  font-size: 16px;
  font-weight: 900;
  box-shadow: 0 16px 34px rgba(232, 75, 55, 0.44);
  animation: ctaPulse 2.8s ease-in-out infinite;
}

.header-cta span,
.button span {
  margin-left: 8px;
}

.button.primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--cta), #ff7a3d);
  box-shadow: 0 18px 38px rgba(232, 75, 55, 0.34);
}

.header-cta:hover,
.button:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, var(--cta-dark), #ea5c23);
}

@keyframes ctaPulse {
  0%, 100% {
    box-shadow: 0 12px 26px rgba(232, 75, 55, 0.28);
    transform: translateY(0) scale(1);
  }
  50% {
    box-shadow: 0 18px 38px rgba(232, 75, 55, 0.42);
    transform: translateY(-1px) scale(1.02);
  }
}

.hero {
  position: relative;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(6, 17, 29, 0.98), rgba(6, 17, 29, 0.9)),
    url("./assets/gym-diagnosis-conversion.png") center / cover;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 120px;
  background: linear-gradient(180deg, rgba(6, 17, 29, 0), var(--paper));
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(330px, 0.78fr);
  gap: 44px;
  align-items: center;
  width: min(1160px, calc(100% - 40px));
  min-height: 660px;
  margin: 0 auto;
  padding: 88px 0 126px;
}

.hero-copy {
  max-width: 760px;
  text-align: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-size: 54px;
  line-height: 1.26;
  font-weight: 900;
}

.hero-sub {
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.94);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.9;
}

.hero-sub strong {
  color: var(--gold-soft);
}

.hero-checks {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 28px 0 0;
}

.hero-checks span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 7px 12px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(245, 224, 163, 0.72);
  border-radius: 999px;
  font-size: 15px;
  font-weight: 900;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.16);
}

.hero-checks span::before,
.lead-benefits li::before {
  content: "✓";
  margin-right: 8px;
  color: var(--gold);
  font-weight: 900;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 38px;
}

.hero-main-cta {
  min-height: 68px;
  padding: 0 38px;
  font-size: 20px;
  animation: ctaPulse 2.8s ease-in-out infinite;
}

.hero-widget {
  position: relative;
  display: grid;
  gap: 14px;
  max-width: 380px;
  margin-left: auto;
  padding: 28px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(245, 224, 163, 0.7);
  border-radius: 8px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-widget:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.26);
}

.widget-eyebrow {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-widget strong {
  color: var(--navy);
  font-size: 28px;
  line-height: 1.2;
  font-weight: 900;
}

.hero-widget p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 17px;
  font-weight: 900;
}

.widget-options {
  display: grid;
  gap: 10px;
}

.widget-options span {
  display: flex;
  min-height: 48px;
  align-items: center;
  padding: 10px 14px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 900;
}

.hero-widget em {
  display: grid;
  min-height: 54px;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--cta), #ff7a3d);
  border-radius: 999px;
  font-style: normal;
  font-weight: 900;
}

.hero-actions > span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 700;
}

.diagnosis-start {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1fr);
  gap: 32px;
  align-items: start;
  width: min(1040px, calc(100% - 40px));
  margin: -70px auto 0;
  padding: 34px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  position: relative;
  z-index: 4;
}

.diagnosis-intro h2 {
  margin: 0;
  font-size: 38px;
  line-height: 1.45;
  font-weight: 900;
}

.diagnosis-intro p:not(.eyebrow) {
  margin: 18px 0 0;
  color: var(--muted);
  font-weight: 700;
}

.diagnosis-panel {
  padding: 26px;
  color: var(--ink);
  background: rgba(255, 253, 247, 0.97);
  border: 1px solid rgba(215, 166, 58, 0.38);
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(10, 19, 33, 0.08);
}

.hero-diagnosis {
  width: min(100%, 430px);
  margin-left: auto;
  background: rgba(255, 253, 247, 0.98);
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(14px);
}

.panel-head {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.panel-head p {
  margin: 0 0 8px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.panel-head h2 {
  margin: 0;
  font-size: 25px;
  line-height: 1.45;
  font-weight: 900;
}

.progress {
  margin: 20px 0;
}

.progress span {
  display: block;
  margin-bottom: 10px;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 900;
}

.progress-track {
  height: 8px;
  overflow: hidden;
  background: #e8ddc8;
  border-radius: 999px;
}

.progress-track span {
  display: block;
  width: 0;
  height: 100%;
  margin: 0;
  background: linear-gradient(90deg, var(--green), var(--gold));
  border-radius: inherit;
  transition: width 0.25s ease;
}

.question-title {
  margin: 0 0 16px;
  font-size: 20px;
  line-height: 1.5;
}

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

.option-button {
  width: 100%;
  min-height: 54px;
  padding: 12px 16px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
  font-weight: 800;
  line-height: 1.45;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.option-button:hover {
  border-color: var(--gold);
  box-shadow: 0 10px 24px rgba(11, 20, 33, 0.08);
  transform: translateY(-1px);
}

.quiz-actions {
  margin-top: 18px;
}

.nav-button {
  padding: 0;
  color: var(--muted);
  background: transparent;
  border: 0;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.answer-section,
.section,
.faq-section,
.final-cta,
.mid-cta {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.answer-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 430px;
  gap: 34px;
  align-items: center;
  padding: 74px 0;
}

.section {
  padding: 86px 0;
}

.section-title {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-title.left {
  margin-right: 0;
  margin-left: 0;
  text-align: left;
}

.section-title h2,
.about-copy h2,
.final-cta h2 {
  margin: 0;
  font-size: 40px;
  line-height: 1.45;
  font-weight: 900;
}

.section-title p:not(.eyebrow),
.about-copy > p,
.final-cta p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 17px;
  font-weight: 700;
}

.section-title em {
  color: var(--red);
  font-style: normal;
}

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

.answer-map a {
  display: grid;
  gap: 4px;
  min-height: 92px;
  place-items: center;
  color: var(--white);
  background: var(--navy);
  border: 1px solid rgba(215, 166, 58, 0.35);
  border-radius: 8px;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.answer-map a:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 30px rgba(11, 20, 33, 0.16);
}

.answer-map strong {
  font-size: 20px;
  line-height: 1.35;
}

.answer-map small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 800;
}

.answer-map a:nth-child(2) {
  background: var(--blue);
}

.answer-map a:nth-child(3) {
  background: #362a59;
}

.answer-map a:nth-child(4) {
  background: #6c4a08;
}

.why-section,
.flow-section,
.faq-section {
  border-top: 1px solid var(--line);
}

.branch-list {
  display: grid;
  gap: 18px;
}

.branch-card {
  display: grid;
  gap: 16px;
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 40px rgba(11, 20, 33, 0.06);
}

.number,
.stance-grid span,
.expertise-grid span,
.flow-list span,
.result-list span {
  color: var(--gold);
  font-weight: 900;
  letter-spacing: 0.08em;
}

.branch-card .number {
  flex: 0 0 auto;
  font-size: 28px;
  line-height: 1;
  padding-top: 4px;
}

.branch-alert {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.shock {
  display: inline-flex;
  margin: 0;
  padding: 2px 0 5px;
  color: #b7281d;
  background: linear-gradient(180deg, transparent 58%, rgba(255, 199, 79, 0.42) 0);
  border: 0;
  border-radius: 0;
  font-size: 23px;
  font-weight: 900;
  line-height: 1.35;
}

.branch-card h3,
.stance-grid h3,
.expertise-grid h3,
.flow-list h3,
.result-list h3 {
  margin: 0;
  font-size: 24px;
  line-height: 1.5;
  font-weight: 900;
}

.branch-card p:not(.shock),
.stance-grid p,
.stance-compact p,
.expertise-grid p,
.flow-list p,
.result-list p,
.partner-box p {
  margin: 12px 0 0;
  color: var(--muted);
  font-weight: 700;
}

.mid-cta {
  display: grid;
  gap: 12px;
  justify-items: center;
  margin-top: 6px;
  margin-bottom: 18px;
  padding: 34px 24px;
  color: var(--white);
  text-align: center;
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.mid-cta p,
.mid-cta h2 {
  margin: 0;
}

.mid-cta p {
  color: var(--gold-soft);
  font-weight: 900;
}

.mid-cta h2 {
  font-size: 28px;
  line-height: 1.5;
}

.mid-cta .button {
  margin-top: 8px;
  width: min(720px, 70%);
  min-height: 72px;
  padding: 0 36px;
  font-size: 20px;
}

.mid-cta small {
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 800;
}

.about-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 34px;
  align-items: start;
}

.about-stance-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 24px;
  align-items: stretch;
}

.about-copy {
  padding: 36px;
  color: var(--white);
  background: var(--navy);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.about-copy > p {
  color: rgba(255, 255, 255, 0.78);
}

.partner-box {
  margin-top: 28px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(215, 166, 58, 0.28);
  border-radius: 8px;
}

.partner-box strong {
  color: var(--gold-soft);
}

.partner-box p {
  color: rgba(255, 255, 255, 0.8);
}

.expertise-grid,
.stance-grid,
.flow-list {
  display: grid;
  gap: 16px;
}

.stance-compact {
  display: grid;
  gap: 12px;
}

.stance-compact > div,
.stance-compact article {
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.stance-compact h2 {
  margin: 0;
  font-size: 31px;
  line-height: 1.45;
}

.stance-compact h3 {
  margin: 4px 0 0;
  font-size: 20px;
  line-height: 1.45;
}

.stance-compact span {
  color: var(--gold);
  font-weight: 900;
  letter-spacing: 0.08em;
}

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

.expertise-grid article,
.stance-grid article,
.flow-list article {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.stance-section {
  width: 100%;
  max-width: none;
  padding-right: max(20px, calc((100% - 1160px) / 2));
  padding-left: max(20px, calc((100% - 1160px) / 2));
  color: var(--white);
  background: var(--navy);
}

.stance-section .section-title p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
}

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

.stance-grid article {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(215, 166, 58, 0.28);
}

.stance-grid p {
  color: rgba(255, 255, 255, 0.76);
}

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

.result-section {
  width: 100%;
  max-width: none;
  padding-right: max(20px, calc((100% - 1160px) / 2));
  padding-left: max(20px, calc((100% - 1160px) / 2));
  background: var(--paper-2);
}

.result-list {
  display: grid;
  gap: 18px;
}

.result-list article {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 36px rgba(11, 20, 33, 0.06);
}

.result-list img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 6px;
}

.result-visual {
  position: relative;
  display: grid;
  gap: 4px;
  min-height: 164px;
  place-items: center;
  overflow: hidden;
  border-radius: 8px;
  color: var(--white);
  isolation: isolate;
}

.result-visual::before,
.result-visual::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
}

.result-visual::before {
  width: 150px;
  height: 150px;
  right: -42px;
  top: -42px;
}

.result-visual::after {
  width: 78px;
  height: 78px;
  left: 24px;
  bottom: 22px;
}

.result-visual svg {
  position: relative;
  z-index: 2;
  width: 54px;
  height: 54px;
  fill: none;
  stroke: rgba(255, 255, 255, 0.94);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.result-visual small {
  position: relative;
  z-index: 2;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.result-visual strong {
  position: relative;
  z-index: 2;
  color: var(--white);
  font-size: 34px;
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: 0;
}

.result-visual i {
  position: absolute;
  inset: auto 30px 34px 30px;
  height: 5px;
  background: rgba(255, 255, 255, 0.72);
  border-radius: 999px;
}

.result-launch .result-visual {
  background: linear-gradient(135deg, #125c92, #0b2744);
}

.result-growth .result-visual {
  background: linear-gradient(135deg, #12884a, #064526);
}

.result-exit .result-visual {
  background: linear-gradient(135deg, #523a86, #21153f);
}

.result-buy .result-visual {
  background: linear-gradient(135deg, #c48a1d, #6c4a08);
}

.result-catch {
  color: var(--ink) !important;
  font-size: 20px;
  font-weight: 900 !important;
}

.result-benefits {
  margin-top: 18px;
  padding: 16px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.result-benefits strong {
  display: block;
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
}

.result-benefits ul {
  display: grid;
  gap: 4px;
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
}

.result-benefits li {
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.result-benefits li::before {
  content: "・";
  color: var(--gold);
  font-weight: 900;
}

.faq-section {
  padding: 86px 0;
}

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

.faq-list details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  font-size: 17px;
  font-weight: 900;
  cursor: pointer;
}

.faq-list summary span {
  flex: 0 0 auto;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.faq-list p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
  font-weight: 700;
}

.final-cta {
  margin-bottom: 70px;
  padding: 48px 24px;
  color: var(--white);
  text-align: center;
  background: var(--navy);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.final-cta h2 {
  margin-bottom: 18px;
}

.final-cta > p:last-of-type {
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
}

.cta-proof {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 22px;
}

.cta-proof span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 4px 12px;
  color: var(--gold-soft);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(215, 166, 58, 0.28);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 22px;
}

.trust-row span {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  padding: 4px 10px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.lp-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 28px 6vw;
  color: var(--white);
  background: #030911;
}

.lp-footer p {
  margin: 0;
  font-weight: 900;
}

.lp-footer a {
  color: var(--gold-soft);
  font-weight: 800;
}

.diagnosis-result {
  display: grid;
  gap: 16px;
}

.result-hero {
  position: relative;
  display: grid;
  align-items: end;
  overflow: hidden;
  min-height: 220px;
  border-radius: 8px;
  background: var(--navy);
}

.result-hero::before,
.result-hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
}

.result-hero::before {
  width: 190px;
  height: 190px;
  right: -52px;
  top: -54px;
}

.result-hero::after {
  width: 92px;
  height: 92px;
  left: 28px;
  bottom: 32px;
}

.result-hero-opening {
  background: linear-gradient(135deg, #125c92, #0b2744);
}

.result-hero-growth {
  background: linear-gradient(135deg, #12884a, #064526);
}

.result-hero-sell {
  background: linear-gradient(135deg, #523a86, #21153f);
}

.result-hero-buy {
  background: linear-gradient(135deg, #c48a1d, #6c4a08);
}

.result-hero-overlay {
  position: relative;
  z-index: 2;
  padding: 22px;
  color: var(--white);
  background: linear-gradient(180deg, rgba(6, 17, 29, 0), rgba(6, 17, 29, 0.35));
}

.result-hero-overlay span,
.type-label {
  display: inline-flex;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.result-hero-overlay h3,
.diagnosis-result > h3 {
  margin: 6px 0 0;
  font-size: 24px;
  line-height: 1.45;
}

.result-hero-overlay p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-weight: 800;
}

.diagnosis-result > p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.result-intro {
  color: var(--ink) !important;
  font-weight: 900 !important;
}

.reason-box,
.lead-form {
  padding: 20px;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.reason-box strong,
.lead-form h4 {
  display: block;
  margin: 0 0 8px;
  font-size: 18px;
  line-height: 1.5;
}

.reason-box p,
.lead-form p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.lead-benefits {
  display: grid;
  gap: 6px;
  margin: 16px 0;
  padding: 0;
  list-style: none;
}

.lead-benefits li {
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.lead-form label {
  display: grid;
  gap: 6px;
  margin-top: 14px;
  font-weight: 900;
}

.lead-form input {
  width: 100%;
  min-height: 48px;
  padding: 10px 12px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
}

.lead-form button {
  width: 100%;
  margin-top: 18px;
  border: 0;
  cursor: pointer;
}

.lead-form button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.form-error {
  margin-top: 12px !important;
  color: var(--red) !important;
}

@media (max-width: 980px) {
  .hero-inner,
  .diagnosis-start,
  .answer-section,
  .about-section,
  .about-stance-section {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 56px;
  }

  .hero-widget {
    width: min(100%, 520px);
    margin: 0 auto;
  }

  .hero-diagnosis {
    margin: 0 auto;
  }

  .diagnosis-panel {
    width: 100%;
  }

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

  .result-list article {
    grid-template-columns: 180px minmax(0, 1fr);
  }
}

@media (max-width: 720px) {
  body {
    line-height: 1.75;
  }

  .lp-header {
    padding: 12px 16px;
  }

  .brand {
    font-size: 12px;
  }

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

  .header-cta {
    min-height: 38px;
    padding: 0 12px;
    font-size: 12px;
  }

  .hero-inner,
  .diagnosis-start,
  .answer-section,
  .section,
  .faq-section,
  .final-cta,
  .mid-cta {
    width: min(100% - 28px, 1160px);
  }

  .hero-inner {
    gap: 28px;
    padding: 42px 0 72px;
  }

  .hero h1 {
    font-size: 34px;
  }

  .hero-sub {
    font-size: 16px;
  }

  .hero-checks {
    display: grid;
  }

  .hero-checks span {
    width: 100%;
  }

  .hero-actions .button,
  .mid-cta .button {
    width: 100%;
  }

  .hero-main-cta {
    min-height: 62px;
    padding: 0 22px;
    font-size: 17px;
  }

  .diagnosis-start {
    margin-top: -42px;
    padding: 22px;
  }

  .diagnosis-intro h2 {
    font-size: 28px;
  }

  .diagnosis-panel {
    padding: 20px;
  }

  .panel-head h2 {
    font-size: 22px;
  }

  .answer-section,
  .section,
  .faq-section {
    padding: 60px 0;
  }

  .section-title {
    margin-bottom: 28px;
  }

  .section-title h2,
  .about-copy h2,
  .final-cta h2 {
    font-size: 29px;
  }

  .section-title p:not(.eyebrow),
  .about-copy > p {
    font-size: 15px;
  }

  .answer-map,
  .expertise-grid {
    grid-template-columns: 1fr;
  }

  .answer-map a {
    min-height: 66px;
  }

  .answer-map strong {
    font-size: 18px;
  }

  .branch-card {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 22px;
  }

  .branch-card h3,
  .stance-grid h3,
  .expertise-grid h3,
  .flow-list h3,
  .result-list h3 {
    font-size: 21px;
  }

  .about-copy {
    padding: 26px 22px;
  }

  .stance-section,
  .result-section {
    padding-right: 14px;
    padding-left: 14px;
  }

  .result-list article {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .result-visual {
    min-height: 132px;
  }

  .result-visual strong {
    font-size: 30px;
  }

  .faq-list summary {
    align-items: flex-start;
  }

  .faq-list summary span {
    padding-top: 3px;
  }

  .result-catch {
    font-size: 18px;
  }

  .final-cta {
    margin-bottom: 42px;
  }

  .final-cta .button {
    width: 100%;
  }

  .lp-footer {
    display: grid;
    padding: 24px 16px;
  }
}

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

  .section-title h2,
  .about-copy h2,
  .final-cta h2 {
    font-size: 27px;
  }

  .question-title {
    font-size: 18px;
  }
}

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

  .header-cta,
  .button.primary,
  .hero-main-cta {
    animation: none;
  }
}
