:root {
  --arm-green: #809d2d;
  --arm-green-dark: #627b1d;
  --arm-green-soft: #e9f3c9;
  --pink: #f878a7;
  --pink-dark: #dd5688;
  --pink-soft: #ffe8f0;
  --yellow: #ffd769;
  --yellow-soft: #fff5c9;
  --mint: #bfe6d6;
  --mint-soft: #eaf8f1;
  --lavender: #a990dc;
  --lavender-soft: #f1ebfb;
  --cream: #fffaf3;
  --paper: #ffffff;
  --ink: #343747;
  --muted: #77798a;
  --line: #e8e5e1;
  --shadow: 0 18px 50px rgba(70, 63, 52, 0.11);
  --shadow-soft: 0 10px 28px rgba(70, 63, 52, 0.08);
  --radius-large: 32px;
  --radius-card: 22px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--cream);
  color: var(--ink);
  font-family:
    "Hiragino Maru Gothic ProN",
    "BIZ UDPGothic",
    "Yu Gothic Medium",
    "Yu Gothic",
    Meiryo,
    sans-serif;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.75;
  overflow-wrap: anywhere;
  -webkit-font-smoothing: antialiased;
}

button,
input,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
}

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

h1,
h2,
h3,
p,
ul,
ol {
  margin-top: 0;
}

button {
  border: 0;
}

[hidden] {
  display: none !important;
}

.skip-link,
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}

.skip-link:focus {
  z-index: 1000;
  top: 12px;
  left: 12px;
  width: auto !important;
  height: auto !important;
  padding: 10px 16px;
  clip: auto !important;
  clip-path: none !important;
  border-radius: 999px;
  background: var(--paper);
  color: var(--ink);
}

:focus-visible {
  outline: 3px solid var(--pink);
  outline-offset: 3px;
}

.mobile-only {
  display: none;
}

/* Hero */
.hero {
  position: relative;
  min-height: calc(100svh - 43px);
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 22%, rgba(255, 215, 105, 0.38) 0 85px, transparent 86px),
    radial-gradient(circle at 88% 20%, rgba(248, 120, 167, 0.17) 0 160px, transparent 161px),
    linear-gradient(135deg, #fffdf8 0%, #fff4e9 48%, #f4f8df 100%);
  transition: opacity 180ms ease;
}

.hero::after {
  position: absolute;
  z-index: 5;
  right: -10%;
  bottom: -50px;
  left: -10%;
  height: 96px;
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  background: var(--paper);
  content: "";
  pointer-events: none;
}

.hero.is-hidden {
  display: none;
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  width: min(1180px, calc(100% - 48px));
  min-height: calc(100svh - 43px);
  grid-template-columns: minmax(0, 1fr) minmax(460px, 1fr);
  align-items: center;
  gap: 44px;
  margin: 0 auto;
  padding: 42px 0 48px;
}

.hero__copy {
  max-width: 590px;
}

.hero__kicker {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  gap: 7px;
  margin-bottom: 18px;
  padding: 7px 15px;
  border: 2px solid rgba(128, 157, 45, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--arm-green-dark);
  font-size: 15px;
  font-weight: 800;
}

.hero h1 {
  margin-bottom: 22px;
  color: var(--ink);
  font-size: clamp(48px, 5.4vw, 76px);
  font-weight: 900;
  letter-spacing: -0.065em;
  line-height: 1.18;
}

.hero h1 > span {
  display: inline-block;
}

.hero h1 em {
  position: relative;
  color: var(--pink-dark);
  font-style: normal;
}

.hero h1 em::after {
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 10px;
  border-radius: 999px;
  background: var(--yellow);
  content: "";
  opacity: 0.72;
  transform: rotate(-2deg);
  z-index: -1;
}

.hero__lead {
  margin-bottom: 23px;
  color: #5e6170;
  font-size: 20px;
  line-height: 1.8;
}

.hero__lead strong {
  color: var(--arm-green-dark);
  font-weight: 900;
}

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin: 0 0 27px;
  padding: 0;
  list-style: none;
}

.hero__badges li {
  display: inline-flex;
  min-height: 45px;
  align-items: center;
  gap: 5px;
  padding: 8px 16px;
  border: 1px solid rgba(52, 55, 71, 0.09);
  border-radius: 999px;
  background: var(--paper);
  box-shadow: 0 5px 15px rgba(70, 63, 52, 0.06);
  color: #5e6170;
  font-size: 16px;
  font-weight: 800;
}

.hero__age {
  width: 285px;
  margin: 10px 0 0;
  color: #8a8b96;
  font-size: 12px;
  text-align: center;
}

.hero-shape {
  position: absolute;
  z-index: 1;
  display: block;
  border-radius: 999px;
  filter: blur(0.2px);
  opacity: 0.8;
}

.hero-shape--one {
  top: 14%;
  left: 4%;
  width: 22px;
  height: 22px;
  background: var(--pink);
}

.hero-shape--two {
  right: 6%;
  bottom: 27%;
  width: 42px;
  height: 42px;
  border: 10px solid var(--yellow);
  background: transparent;
}

.hero-shape--three {
  bottom: 20%;
  left: 43%;
  width: 18px;
  height: 18px;
  background: var(--mint);
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 13px;
  padding: 12px 24px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 900;
  line-height: 1.35;
  text-align: center;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button--primary {
  background: linear-gradient(135deg, var(--pink) 0%, var(--pink-dark) 100%);
  box-shadow: 0 13px 25px rgba(221, 86, 136, 0.27);
  color: #fff;
}

.button--hero {
  min-width: 285px;
  min-height: 62px;
  padding: 15px 30px;
  font-size: 18px;
}

.button--hero span {
  font-size: 24px;
}

.button--secondary {
  border: 2px solid var(--arm-green);
  background: var(--paper);
  color: var(--arm-green-dark);
}

.button--line {
  background: #16bf5b;
  box-shadow: 0 12px 24px rgba(22, 191, 91, 0.22);
  color: #fff;
}

.button--mail {
  background: linear-gradient(135deg, var(--pink) 0%, var(--pink-dark) 100%);
  box-shadow: 0 12px 24px rgba(221, 86, 136, 0.22);
  color: #fff;
}

.button--official {
  border: 2px solid var(--arm-green-dark);
  background: var(--paper);
  color: var(--arm-green-dark);
  font-size: 14px;
  white-space: nowrap;
}

.button--share {
  border: 2px solid var(--pink);
  background: var(--paper);
  color: var(--pink-dark);
}

.button--back {
  min-height: 48px;
  padding: 10px 18px;
  background: #f0eee9;
  color: #6d6e78;
}

.button--next {
  min-width: 150px;
  min-height: 50px;
  background: var(--arm-green);
  box-shadow: 0 9px 20px rgba(128, 157, 45, 0.2);
  color: #fff;
}

/* Decorative hero artwork */
.hero-art {
  position: relative;
  width: 100%;
  height: min(540px, 68vh);
}

.hero-art::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 460px;
  height: 460px;
  border-radius: 48% 52% 44% 56%;
  background: linear-gradient(145deg, var(--arm-green-soft), #fff0b8);
  content: "";
  transform: translate(-50%, -50%) rotate(-7deg);
}

.hero-art__phone {
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  width: 250px;
  height: 390px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 9px solid var(--paper);
  border-radius: 42px;
  background:
    radial-gradient(circle at 70% 28%, rgba(255, 255, 255, 0.8) 0 42px, transparent 43px),
    linear-gradient(155deg, var(--pink) 0%, #ffad94 48%, var(--yellow) 100%);
  box-shadow: 0 25px 55px rgba(74, 65, 54, 0.2);
  color: #fff;
  transform: translate(-50%, -50%) rotate(5deg);
}

.hero-art__phone > span {
  position: absolute;
  top: 30px;
  left: 35px;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.hero-art__phone > b {
  font-size: 31px;
  letter-spacing: -0.04em;
}

.hero-art__phone > div {
  display: flex;
  gap: 9px;
  margin-top: 19px;
}

.hero-art__phone i {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.88);
  animation: dot-bounce 900ms ease-in-out infinite alternate;
}

.hero-art__phone i:nth-child(2) {
  animation-delay: 180ms;
}

.hero-art__phone i:nth-child(3) {
  animation-delay: 360ms;
}

.hero-art__bubble {
  position: absolute;
  z-index: 3;
  min-width: 152px;
  padding: 16px 18px;
  border: 5px solid var(--paper);
  border-radius: 23px;
  box-shadow: var(--shadow-soft);
  font-size: 14px;
  line-height: 1.35;
  transform: rotate(-5deg);
}

.hero-art__bubble b {
  font-size: 20px;
}

.hero-art__bubble--pink {
  top: 72px;
  left: 0;
  background: var(--pink-soft);
  color: var(--pink-dark);
}

.hero-art__bubble--green {
  right: 0;
  bottom: 82px;
  background: var(--mint-soft);
  color: var(--arm-green-dark);
  transform: rotate(6deg);
}

.hero-art__spark {
  position: absolute;
  z-index: 4;
  font-weight: 900;
}

.hero-art__spark--one {
  top: 36px;
  right: 78px;
  color: var(--yellow);
  font-size: 45px;
  transform: rotate(15deg);
}

.hero-art__spark--two {
  bottom: 50px;
  left: 65px;
  color: var(--pink);
  font-size: 46px;
  transform: rotate(-15deg);
}

.hero-art__spark--three {
  top: 48%;
  right: 5px;
  color: var(--lavender);
  font-size: 33px;
}

@keyframes dot-bounce {
  to {
    transform: translateY(-8px);
    opacity: 0.55;
  }
}

/* Compact benefits */
.quick-points {
  position: relative;
  z-index: 4;
  display: grid;
  width: min(820px, calc(100% - 40px));
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: -20px auto 64px;
}

.quick-points div {
  display: flex;
  min-height: 102px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 17px;
  border: 1px solid rgba(128, 157, 45, 0.12);
  border-radius: var(--radius-card);
  background: var(--paper);
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.quick-points span {
  font-size: 31px;
}

.quick-points b {
  font-size: 16px;
}

/* Diagnosis */
.diagnosis-shell {
  width: min(850px, calc(100% - 40px));
  margin: 38px auto 78px;
  scroll-margin-top: 24px;
}

.diagnosis-progress {
  margin-bottom: 16px;
  padding: 0 6px;
}

.diagnosis-progress__text {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 9px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.diagnosis-progress__text span:first-child {
  color: var(--pink-dark);
  font-size: 16px;
}

.diagnosis-progress__track {
  height: 12px;
  overflow: hidden;
  border-radius: 999px;
  background: #ece9e4;
}

.diagnosis-progress__track > span {
  display: block;
  width: 11.111%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--pink), var(--yellow), var(--arm-green));
  transition: width 280ms ease;
}

.question-area,
.processing-panel,
.blocked-panel {
  border: 1px solid rgba(69, 66, 60, 0.08);
  border-radius: var(--radius-large);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.question-area {
  min-height: 470px;
  padding: 42px 48px 36px;
}

.question-form {
  animation: card-in 220ms ease both;
}

@keyframes card-in {
  from {
    opacity: 0;
    transform: translateY(7px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.question-heading {
  margin-bottom: 30px;
  text-align: center;
}

.question-eyebrow {
  margin-bottom: 7px;
  color: var(--pink-dark);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.question-heading h3 {
  margin-bottom: 8px;
  color: var(--ink);
  font-size: clamp(27px, 4vw, 36px);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1.4;
}

.question-note {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.choice-group {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.choice-group + .choice-group {
  margin-top: 28px;
}

.choice-group legend:not(.visually-hidden) {
  margin-bottom: 10px;
  color: var(--arm-green-dark);
  font-size: 15px;
  font-weight: 900;
}

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

.choice-card {
  position: relative;
  display: block;
  cursor: pointer;
}

.choice-card input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.choice-card__content {
  display: flex;
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 13px 17px;
  border: 2px solid #ece9e3;
  border-radius: 17px;
  background: #fffdfa;
  color: #575966;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.45;
  transition: border-color 150ms ease, background 150ms ease, transform 150ms ease, box-shadow 150ms ease;
}

.choice-card:hover .choice-card__content {
  border-color: #d7e5ab;
  transform: translateY(-1px);
}

.choice-card__check {
  display: grid;
  width: 27px;
  height: 27px;
  flex: 0 0 auto;
  place-items: center;
  border: 2px solid #dbd8d1;
  border-radius: 50%;
  color: transparent;
  font-size: 14px;
}

.choice-card.is-selected .choice-card__content {
  border-color: var(--arm-green);
  background: var(--arm-green-soft);
  box-shadow: 0 7px 18px rgba(128, 157, 45, 0.12);
  color: var(--arm-green-dark);
}

.choice-card.is-selected .choice-card__check {
  border-color: var(--arm-green);
  background: var(--arm-green);
  color: #fff;
}

.choice-card input:focus-visible + .choice-card__content {
  outline: 3px solid var(--pink);
  outline-offset: 3px;
}

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

.body-input-grid label {
  display: grid;
  gap: 8px;
  color: #5b5d69;
  font-size: 14px;
  font-weight: 900;
}

.body-input-grid .select-field {
  grid-column: 1 / -1;
}

.number-field__control {
  display: flex;
  min-height: 62px;
  align-items: center;
  gap: 8px;
  padding: 0 17px;
  border: 2px solid #e8e5df;
  border-radius: 17px;
  background: #fffdfa;
}

.number-field__control:focus-within,
.select-field select:focus {
  border-color: var(--arm-green);
  outline: 0;
  box-shadow: 0 0 0 4px rgba(128, 157, 45, 0.12);
}

.number-field input {
  width: 100%;
  min-width: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-size: 20px;
  font-weight: 800;
  outline: 0;
}

.number-field b {
  color: var(--muted);
}

.select-field select {
  width: 100%;
  min-height: 62px;
  padding: 0 17px;
  border: 2px solid #e8e5df;
  border-radius: 17px;
  background: #fffdfa;
  color: var(--ink);
  font-size: 17px;
  font-weight: 800;
}

.question-error {
  min-height: 26px;
  margin: 15px 0 0;
  color: #cf416f;
  font-size: 14px;
  font-weight: 800;
  text-align: center;
}

.question-navigation {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 12px;
  margin-top: 15px;
}

.question-navigation .button--back {
  justify-self: start;
}

.question-navigation .button--next,
.auto-next-note {
  justify-self: end;
}

.auto-next-note {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

/* Processing and age gate */
.processing-panel,
.blocked-panel {
  min-height: 450px;
  padding: 62px 32px;
  text-align: center;
}

.processing-emoji {
  margin-bottom: 8px;
  font-size: 70px;
  animation: float-soft 1s ease-in-out infinite alternate;
}

.processing-panel h2,
.blocked-panel h2 {
  margin-bottom: 13px;
  font-size: 34px;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.4;
}

.processing-panel p,
.blocked-panel p {
  color: var(--muted);
}

.processing-visual {
  display: flex;
  justify-content: center;
  gap: 9px;
  margin-bottom: 22px;
}

.processing-visual span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--pink);
  animation: dot-bounce 680ms ease-in-out infinite alternate;
}

.processing-visual span:nth-child(2) {
  background: var(--yellow);
  animation-delay: 120ms;
}

.processing-visual span:nth-child(3) {
  background: var(--arm-green);
  animation-delay: 240ms;
}

@keyframes float-soft {
  to {
    transform: translateY(-8px) rotate(4deg);
  }
}

.blocked-panel__icon {
  display: grid;
  width: 92px;
  height: 92px;
  place-items: center;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff !important;
  font-size: 26px;
  font-weight: 900;
}

.blocked-panel .button {
  margin-top: 12px;
}

/* Results */
.result-panel {
  overflow: hidden;
  border: 1px solid rgba(69, 66, 60, 0.08);
  border-radius: var(--radius-large);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.result-hero {
  position: relative;
  overflow: hidden;
  padding: 52px 40px 42px;
  background:
    radial-gradient(circle at 14% 20%, rgba(255, 215, 105, 0.8) 0 60px, transparent 61px),
    radial-gradient(circle at 88% 35%, rgba(191, 230, 214, 0.78) 0 90px, transparent 91px),
    linear-gradient(145deg, #fff7da 0%, #ffe8f0 52%, #ecf5cf 100%);
  text-align: center;
}

.result-hero::before,
.result-hero::after {
  position: absolute;
  color: var(--pink);
  content: "✦";
  font-size: 44px;
}

.result-hero::before {
  top: 45px;
  left: 14%;
}

.result-hero::after {
  right: 12%;
  bottom: 34%;
  color: var(--arm-green);
  font-size: 30px;
}

.result-hero__emoji {
  display: block;
  margin-bottom: 3px;
  font-size: 54px;
}

.result-hero__eyebrow {
  margin-bottom: 7px;
  color: var(--pink-dark);
  font-size: 14px;
  font-weight: 900;
}

.result-hero > h2 {
  margin-bottom: 10px;
  font-size: 28px;
  font-weight: 900;
  line-height: 1.45;
}

.result-income {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  margin: 10px 0 5px;
  color: var(--pink-dark);
}

.result-income span {
  font-size: clamp(66px, 13vw, 112px);
  font-weight: 900;
  letter-spacing: -0.065em;
  line-height: 1;
}

.result-income b {
  font-size: 28px;
}

.result-range {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  margin-bottom: 8px;
  padding: 5px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  color: #6f6b68;
  font-size: 14px;
  font-weight: 800;
}

.result-disclaimer {
  margin-bottom: 24px;
  color: #88868a;
  font-size: 12px;
}

.result-type-card {
  position: relative;
  z-index: 2;
  width: min(570px, 100%);
  margin: 0 auto;
  padding: 24px 26px;
  border: 4px solid #fff;
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-soft);
}

.result-type-card > span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.result-type-card h3 {
  margin: 4px 0 5px;
  color: var(--ink);
  font-size: clamp(27px, 5vw, 40px);
  font-weight: 900;
  line-height: 1.35;
}

.result-type-card p {
  margin: 0;
  color: var(--pink-dark);
  font-size: 16px;
  font-weight: 900;
}

.result-body {
  padding: 34px 38px 42px;
}

.result-position,
.result-section,
.result-metrics,
.result-cta,
.result-more,
.share-tools {
  width: min(680px, 100%);
  margin-right: auto;
  margin-left: auto;
}

.result-position {
  padding: 24px 26px;
  border-radius: var(--radius-card);
  background: var(--mint-soft);
}

.result-section-label {
  margin-bottom: 3px;
  color: var(--arm-green-dark);
  font-size: 13px;
  font-weight: 900;
}

.result-position h3,
.result-section h3,
.assessment-difference h3 {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 23px;
  font-weight: 900;
  line-height: 1.45;
}

.result-position > p:not(.result-section-label) {
  margin-bottom: 7px;
  color: #5e625f;
}

.result-position__narrative {
  font-size: 15px;
}

.result-section--attributes {
  margin-top: 28px;
  text-align: center;
}

.attribute-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.attribute-chips li {
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--pink-soft);
  color: var(--pink-dark);
  font-size: 14px;
  font-weight: 900;
}

.result-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 26px;
}

.result-metrics section {
  padding: 18px;
  border: 2px solid var(--yellow-soft);
  border-radius: 18px;
  background: #fffdf4;
}

.result-metrics span {
  display: block;
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.result-metrics strong {
  color: var(--ink);
  font-size: 18px;
  line-height: 1.45;
}

.result-cta {
  margin-top: 32px;
  padding: 30px;
  border-radius: 27px;
  background: linear-gradient(145deg, #f5f8e7, var(--arm-green-soft));
  text-align: center;
}

.result-cta__icon {
  display: block;
  margin-bottom: 5px;
  font-size: 39px;
}

.result-cta h3 {
  margin-bottom: 7px;
  font-size: 27px;
  font-weight: 900;
}

.result-cta > p {
  margin-bottom: 19px;
  color: #65675f;
  font-size: 15px;
}

.result-cta .button {
  width: min(430px, 100%);
  margin: 0 auto 11px;
}

.text-button {
  display: block;
  margin: 5px auto 0;
  padding: 8px 12px;
  background: transparent;
  color: #686a73;
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.result-more,
.share-tools {
  margin-top: 17px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fffdfa;
}

.result-more summary,
.share-tools summary {
  display: flex;
  min-height: 60px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 18px;
  cursor: pointer;
  color: #5b5d67;
  font-size: 15px;
  font-weight: 900;
  list-style: none;
}

.result-more summary::-webkit-details-marker,
.share-tools summary::-webkit-details-marker,
.faq-list summary::-webkit-details-marker {
  display: none;
}

.result-more[open] summary span {
  transform: rotate(45deg);
}

.result-more__content {
  padding: 2px 20px 22px;
}

.result-more__content .result-section {
  padding: 20px 0;
  border-top: 1px solid var(--line);
}

.result-number-list,
.result-bullet-list {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.result-number-list {
  counter-reset: result-list;
}

.result-number-list li,
.result-bullet-list li {
  position: relative;
  padding: 12px 13px 12px 46px;
  border-radius: 14px;
  background: #f8f7f3;
  color: #60626b;
  font-size: 14px;
}

.result-number-list li {
  counter-increment: result-list;
}

.result-number-list li::before,
.result-bullet-list li::before {
  position: absolute;
  top: 12px;
  left: 13px;
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  background: var(--pink);
  color: #fff;
  content: counter(result-list);
  font-size: 11px;
  font-weight: 900;
}

.result-bullet-list li::before {
  background: var(--yellow);
  color: var(--ink);
  content: "!";
}

.assessment-difference {
  padding: 19px;
  border-radius: 16px;
  background: var(--lavender-soft);
}

.assessment-difference h3 {
  font-size: 18px;
}

.assessment-difference p {
  margin: 0;
  color: #666473;
  font-size: 14px;
}

.share-tools {
  text-align: left;
}

.share-tools > p {
  margin: 0;
  padding: 0 18px 10px;
  color: var(--muted);
  font-size: 12px;
}

.share-tools > div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 18px 18px;
}

.share-tools button {
  min-height: 42px;
  padding: 8px 13px;
  border: 1px solid #dedad3;
  border-radius: 999px;
  background: var(--paper);
  color: #60616b;
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
}

.noscript-message {
  margin: 15px 0 0;
  padding: 14px;
  border-radius: 14px;
  background: var(--yellow-soft);
  text-align: center;
}

/* FAQ */
.mini-faq {
  width: min(760px, calc(100% - 40px));
  margin: 0 auto 80px;
  text-align: center;
}

.mini-faq__icon {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  margin: 0 auto 10px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--ink);
  font-size: 29px;
  font-weight: 900;
}

.mini-faq h2 {
  margin-bottom: 20px;
  font-size: 30px;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.faq-list {
  display: grid;
  gap: 10px;
  text-align: left;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 17px;
  background: var(--paper);
  box-shadow: 0 6px 18px rgba(70, 63, 52, 0.04);
}

.faq-list summary {
  position: relative;
  display: flex;
  min-height: 60px;
  align-items: center;
  padding: 13px 50px 13px 18px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 900;
  list-style: none;
}

.faq-list summary::after {
  position: absolute;
  right: 18px;
  color: var(--pink);
  content: "＋";
  font-size: 22px;
}

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

.faq-list p {
  margin: 0;
  padding: 0 18px 17px;
  color: var(--muted);
  font-size: 14px;
}

.page-copyright {
  display: flex;
  min-height: 43px;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  background: var(--paper);
  color: var(--muted);
  font-size: 11px;
  text-align: center;
}

@media (max-width: 900px) {
  .hero {
    min-height: calc(100svh - 43px);
  }

  .hero__inner {
    min-height: calc(100svh - 43px);
    grid-template-columns: 1fr minmax(300px, 0.7fr);
    gap: 20px;
  }

  .hero-art {
    height: 390px;
    transform: scale(0.88);
  }

  .hero-art__bubble--pink {
    left: -25px;
  }

  .hero-art__bubble--green {
    right: -28px;
  }
}

@media (max-width: 820px) {
  body {
    font-size: 16px;
  }

  .mobile-only {
    display: inline;
  }

  .hero {
    min-height: calc(100svh - 43px);
    background:
      radial-gradient(circle at 9% 10%, rgba(255, 215, 105, 0.34) 0 56px, transparent 57px),
      radial-gradient(circle at 94% 16%, rgba(248, 120, 167, 0.14) 0 100px, transparent 101px),
      linear-gradient(155deg, #fffdf8 0%, #fff4e9 58%, #f2f7da 100%);
  }

  .hero__inner {
    display: flex;
    width: min(100% - 34px, 560px);
    min-height: calc(100svh - 43px);
    flex-direction: column;
    padding: 28px 0 22px;
  }

  .hero__copy {
    position: relative;
    z-index: 3;
    max-width: none;
    text-align: center;
  }

  .hero__kicker {
    margin-bottom: 12px;
    font-size: 13px;
  }

  .hero h1 {
    margin-bottom: 15px;
    font-size: clamp(38px, 11vw, 52px);
    line-height: 1.22;
  }

  .hero__lead {
    margin-bottom: 17px;
    font-size: 17px;
    line-height: 1.7;
  }

  .hero__badges {
    justify-content: center;
    gap: 7px;
    margin-bottom: 21px;
  }

  .hero__badges li {
    min-height: 40px;
    padding: 7px 12px;
    font-size: 14px;
  }

  .button--hero {
    width: min(310px, 100%);
    min-height: 58px;
    font-size: 17px;
  }

  .hero__age {
    width: min(310px, 100%);
    margin-right: auto;
    margin-left: auto;
  }

  .hero-art {
    position: absolute;
    right: 50%;
    bottom: 8px;
    width: min(420px, 82vw);
    height: min(420px, 82vw);
    opacity: 0.72;
    transform: translateX(50%);
  }

  .hero-art::before {
    width: 92%;
    height: 92%;
  }

  .hero-art__phone {
    width: clamp(150px, 30vw, 200px);
    height: clamp(235px, 47vw, 312px);
    border-width: 6px;
    border-radius: 29px;
  }

  .hero-art__phone > span {
    top: 18px;
    left: 21px;
    font-size: 10px;
  }

  .hero-art__phone > b {
    font-size: 18px;
  }

  .hero-art__phone > div {
    gap: 5px;
    margin-top: 9px;
  }

  .hero-art__phone i {
    width: 8px;
    height: 8px;
  }

  .hero-art__bubble {
    min-width: 108px;
    padding: 9px 10px;
    border-width: 3px;
    border-radius: 15px;
    font-size: 9px;
  }

  .hero-art__bubble b {
    font-size: 13px;
  }

  .hero-art__bubble--pink {
    top: 46px;
    left: 3px;
  }

  .hero-art__bubble--green {
    right: 2px;
    bottom: 49px;
  }

  .hero-art__spark--one {
    top: 16px;
    right: 29px;
    font-size: 30px;
  }

  .hero-art__spark--two {
    bottom: 20px;
    left: 28px;
    font-size: 32px;
  }

  .hero-art__spark--three {
    font-size: 24px;
  }

  .quick-points {
    width: min(100% - 28px, 560px);
    gap: 8px;
    margin: -9px auto 45px;
  }

  .quick-points div {
    min-height: 86px;
    flex-direction: column;
    gap: 4px;
    padding: 10px 5px;
    border-radius: 17px;
  }

  .quick-points span {
    font-size: 25px;
  }

  .quick-points b {
    font-size: 12px;
    line-height: 1.4;
  }

  .diagnosis-shell {
    width: min(100% - 22px, 600px);
    margin-top: 18px;
    margin-bottom: 55px;
  }

  .question-area {
    min-height: 430px;
    padding: 29px 18px 23px;
    border-radius: 25px;
  }

  .question-heading {
    margin-bottom: 22px;
  }

  .question-heading h3 {
    font-size: 25px;
  }

  .question-note {
    font-size: 12px;
  }

  .choice-grid {
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .choice-card__content {
    min-height: 57px;
    padding: 11px 14px;
    border-radius: 15px;
    font-size: 15px;
  }

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

  .body-input-grid .select-field {
    grid-column: auto;
  }

  .question-navigation {
    grid-template-columns: auto 1fr;
  }

  .button--back {
    min-height: 44px;
    padding: 8px 13px;
    font-size: 13px;
  }

  .auto-next-note {
    font-size: 12px;
  }

  .processing-panel,
  .blocked-panel {
    min-height: 410px;
    padding: 48px 20px;
    border-radius: 25px;
  }

  .processing-panel h2,
  .blocked-panel h2 {
    font-size: 29px;
  }

  .result-panel {
    border-radius: 25px;
  }

  .result-hero {
    padding: 39px 16px 30px;
  }

  .result-hero__emoji {
    font-size: 46px;
  }

  .result-hero > h2 {
    font-size: 22px;
  }

  .result-income span {
    font-size: 68px;
  }

  .result-income b {
    font-size: 22px;
  }

  .result-type-card {
    padding: 20px 15px;
    border-radius: 21px;
  }

  .result-type-card h3 {
    font-size: 27px;
  }

  .result-body {
    padding: 22px 14px 30px;
  }

  .result-position {
    padding: 20px 17px;
  }

  .result-position h3,
  .result-section h3 {
    font-size: 21px;
  }

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

  .result-cta {
    padding: 24px 16px;
  }

  .result-cta h3 {
    font-size: 23px;
  }

  .result-more__content {
    padding: 2px 13px 16px;
  }

  .mini-faq {
    width: min(100% - 28px, 600px);
    margin-bottom: 55px;
  }

  .mini-faq h2 {
    font-size: 25px;
  }
}

@media (max-width: 390px) {
  .hero__inner {
    min-height: calc(100svh - 43px);
  }

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

  .hero__badges li {
    padding: 5px 8px;
  }

  .quick-points b {
    font-size: 11px;
  }

  .result-income span {
    font-size: 61px;
  }
}

@media (max-width: 820px) and (max-height: 740px) {
  .hero__inner {
    padding-top: 18px;
  }

  .hero__kicker {
    margin-bottom: 7px;
  }

  .hero h1 {
    margin-bottom: 9px;
    font-size: 36px;
  }

  .hero__lead {
    margin-bottom: 10px;
    font-size: 15px;
  }

  .hero__badges {
    margin-bottom: 12px;
  }

  .hero__badges li {
    min-height: 34px;
    padding: 4px 8px;
    font-size: 12px;
  }

  .button--hero {
    min-height: 52px;
  }

  .hero-art {
    right: -10px;
    bottom: -16px;
    width: 200px;
    height: 185px;
    opacity: 0.46;
    transform: rotate(7deg);
  }

  .hero-art::before {
    width: 180px;
    height: 180px;
  }

  .hero-art__phone {
    width: 90px;
    height: 140px;
    border-width: 5px;
    border-radius: 23px;
  }

  .hero-art__bubble {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
