:root {
  color-scheme: light;
  --bg: #f4f1ec;
  --bg-2: #f0ece5;
  --surface: rgba(255, 252, 248, 0.94);
  --surface-soft: rgba(255, 250, 245, 0.82);
  --surface-strong: rgba(255, 255, 255, 0.98);
  --text: #342d40;
  --text-soft: #655d72;
  --muted: #8f8599;
  --line: rgba(74, 61, 92, 0.12);
  --line-strong: rgba(74, 61, 92, 0.2);
  --accent: #d7b4c7;
  --accent-2: #8f7ad8;
  --accent-3: #c57c9c;
  --button: #5d517d;
  --button-hover: #6a5c8c;
  --danger: #ff8cb2;
  --shadow: 0 24px 70px rgba(50, 43, 68, 0.08);
  --shadow-soft: 0 16px 30px rgba(50, 43, 68, 0.1);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Zen Kaku Gothic New", -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic", sans-serif;
  background:
    radial-gradient(circle at 14% 10%, rgba(156, 122, 214, 0.1), transparent 18%),
    radial-gradient(circle at 82% 12%, rgba(215, 180, 199, 0.12), transparent 20%),
    radial-gradient(circle at 72% 86%, rgba(120, 98, 183, 0.08), transparent 22%),
    linear-gradient(180deg, #f7f3ee 0%, #f4f1ec 46%, #efebe4 100%);
}

.page-shell {
  width: min(100%, 1180px);
  margin: 0 auto;
  padding: 18px 14px 88px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: 1080px;
  margin: 0 auto;
  padding: clamp(18px, 3vw, 28px) clamp(20px, 4vw, 32px);
}

.top-links {
  display: flex;
  gap: clamp(14px, 3vw, 28px);
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
}

.brand-mark,
.faq-link,
.secondary-link-button {
  text-decoration: none;
}

.brand-mark {
  color: #332c42;
  font-family: "Shippori Mincho", "Yu Mincho", serif;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1;
  letter-spacing: 0.08em;
  font-weight: 500;
}

.topbar-link,
.faq-link {
  color: #6e687a;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-decoration: none;
  transition: color 0.18s ease;
}

.topbar-link:hover,
.faq-link:hover,
.faq-link.is-current {
  color: #4a3d5c;
}

.topbar-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 10px 20px;
  border-radius: 999px;
  text-decoration: none;
  background: #3a3050;
  color: #f4f1ec;
  font-size: 13px;
  letter-spacing: 0.1em;
  white-space: nowrap;
  transition: transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.topbar-cta:hover {
  transform: translateY(-1px);
  background: #4a3d5c;
  box-shadow: 0 10px 28px rgba(58, 48, 80, 0.24);
}

.screen,
.faq-page-card {
  position: relative;
  display: none;
  overflow: hidden;
  margin-bottom: 22px;
  padding: 28px 22px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 252, 248, 0.98), rgba(245, 241, 235, 0.98)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.38), rgba(255, 255, 255, 0));
  box-shadow: var(--shadow);
}

.screen.is-active,
.faq-page-card.is-active,
.faq-page-card {
  display: block;
}

.hero-card {
  min-height: auto;
  padding-top: 0;
  background: #f4f1ec;
  text-align: center;
}

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

h1,
h2 {
  font-family: "Shippori Mincho", "Yu Mincho", serif;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-wrap: balance;
}

h1 {
  font-size: clamp(42px, 9vw, 74px);
  line-height: 1.26;
  margin-bottom: 22px;
}

h2 {
  font-size: clamp(28px, 6vw, 40px);
  line-height: 1.3;
  margin-bottom: 18px;
}

h3 {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #8c8098;
  margin-bottom: 12px;
}

.hero-badge,
.type-pill {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(74, 61, 92, 0.1);
  background: rgba(255, 255, 255, 0.8);
  color: #8b7a99;
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.hero-center {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  padding: clamp(72px, 12vw, 130px) clamp(24px, 5vw, 32px) clamp(80px, 12vw, 140px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(22px, 4vw, 32px);
}

.hero-copy {
  max-width: 440px;
  font-size: clamp(14px, 2.2vw, 15px);
  line-height: 2.2;
  letter-spacing: 0.05em;
  color: #5f5969;
  margin: 0;
}

.hero-primary-link {
  text-decoration: none;
}

.note-text,
.cta-text,
.result-block p,
.comparison-box li,
.price-card p,
.faq-list p,
.bullet-list li,
.prose-stack p,
.face-caption,
.legal-value,
.legal-list li,
.hero-meta-note {
  color: var(--text-soft);
  line-height: 1.9;
}

.hero-markline-text,
.pref-kicker,
.stage-overline,
.stage-note-label {
  display: inline-flex;
  font-size: 12px;
  letter-spacing: 0.3em;
  color: #8b7a99;
}

.hero-markline {
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero-markline-line {
  display: block;
  width: 28px;
  height: 1px;
  background: #b98e96;
}

.pref-block {
  display: grid;
  gap: 8px;
}

.pref-label {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #afa0b7;
  font-weight: 600;
}

.pref-select,
.pref-input {
  width: 100%;
  min-height: 52px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  padding: 0 14px;
  font-size: 15px;
}

.pref-select:focus,
.pref-input:focus {
  outline: none;
  border-color: rgba(215, 180, 199, 0.24);
  box-shadow: 0 0 0 4px rgba(143, 122, 216, 0.12);
}

.pref-input::placeholder {
  color: #8f8498;
}

.primary-button,
.secondary-button,
.secondary-link-button {
  appearance: none;
  border: 0;
  border-radius: 999px;
  padding: 17px 22px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease, background 0.18s ease;
}

.primary-button {
  width: 100%;
  color: #f7f1f8;
  background: linear-gradient(135deg, #5c537a 0%, #695d89 42%, #815c7e 100%);
  box-shadow: 0 20px 38px rgba(17, 13, 29, 0.32);
  letter-spacing: 0.03em;
}

.primary-button:hover {
  background: linear-gradient(135deg, #655a85 0%, #70638e 42%, #8b6488 100%);
}

.secondary-button,
.secondary-link-button {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.primary-button:hover,
.secondary-button:hover,
.secondary-link-button:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-soft);
}

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

.hero-actions--center {
  justify-items: center;
  margin-top: 6px;
}

.hero-meta-note {
  margin: 0;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: #918b9b;
}

.hero-ghost-link {
  max-width: 240px;
  padding-inline: 18px;
}

.hero-ring {
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.hero-ring-outer {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -54%);
  width: min(720px, 130vw);
  aspect-ratio: 1;
  border: 1px solid rgba(107, 91, 126, 0.18);
}

.hero-ring-inner {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -54%);
  width: min(520px, 100vw);
  aspect-ratio: 1;
  border: 1px solid rgba(185, 142, 150, 0.2);
}

.trust-strip,
.legal-grid {
  display: grid;
  gap: 14px;
  margin-top: 26px;
}

.metric-band {
  display: grid;
  gap: 0;
  margin-top: 0;
  border-top: 1px solid #e4dfd6;
  border-bottom: 1px solid #e4dfd6;
  background: #f0ece5;
}

.metric-band-item {
  padding: clamp(36px, 6vw, 48px) clamp(24px, 5vw, 32px);
  border-bottom: 1px solid #cfc6bb;
  text-align: left;
}

.metric-band-item:last-child {
  border-bottom: 0;
}

.metric-band-value {
  display: inline-block;
  margin-right: 8px;
  font-family: "Shippori Mincho", "Yu Mincho", serif;
  font-size: 32px;
  color: #4a3d5c;
}

.metric-band-key {
  font-size: 13px;
  letter-spacing: 0.12em;
  color: #8b8494;
  text-transform: lowercase;
}

.metric-band-item p {
  margin: 6px 0 0;
  color: #6e687a;
  line-height: 1.8;
  font-size: 13px;
}

.section-kicker {
  display: inline-flex;
  margin-bottom: 10px;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #8b7a99;
}

.section-title {
  margin-bottom: 0;
  font-size: clamp(26px, 5vw, 38px);
  line-height: 1.55;
}

.section-title-light {
  color: #f1edf4;
}

.flow-section,
.report-section,
.inline-faq-section,
.final-cta {
  margin-top: 82px;
}

.flow-grid {
  display: grid;
  gap: 24px;
  margin-top: 34px;
}

.flow-card {
  padding: 34px 26px;
  border-radius: 4px;
  border: 1px solid #e4dfd6;
  background: #fbf9f5;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.flow-card-accent {
  background: #35304a;
  box-shadow: 0 16px 40px rgba(53, 48, 74, 0.18);
}

.flow-label-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.flow-step {
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.2em;
  color: #b98e96;
}

.flow-tag {
  padding: 3px 12px;
  border-radius: 999px;
  border: 1px solid #d8d2c8;
  color: #8b8494;
  font-size: 11px;
  letter-spacing: 0.12em;
}

.flow-tag-accent {
  color: #d8d2e4;
  border-color: #5a5472;
}

.flow-title {
  margin: 0;
  font-family: "Shippori Mincho", "Yu Mincho", serif;
  font-size: 24px;
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: #3a3247;
}

.flow-card p {
  margin: 0;
  color: #5f5969;
  line-height: 1.95;
}

.flow-visual-placeholder {
  margin-top: auto;
  min-height: 118px;
  border-radius: 4px;
  display: grid;
  place-items: center;
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.06em;
}

.flow-visual-light {
  background: repeating-linear-gradient(-45deg, #eee9e1, #eee9e1 8px, #f4f1ec 8px, #f4f1ec 16px);
  color: #9a93a4;
}

.flow-visual-dark {
  background: repeating-linear-gradient(-45deg, #3e3856, #3e3856 8px, #35304a 8px, #35304a 16px);
  color: #8b84a6;
}

.begin-section {
  position: relative;
  margin-top: 88px;
  padding: 88px 24px 94px;
  border-radius: 4px;
  background: linear-gradient(180deg, #2f2a43 0%, #353049 100%);
  overflow: hidden;
}

.begin-orbit {
  position: absolute;
  top: 34px;
  right: 10%;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  border: 1px solid rgba(201, 163, 168, 0.16);
}

.begin-head {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 760px;
  margin: 0 auto 40px;
}

.begin-head p {
  margin: 12px 0 0;
  color: #9f97b0;
}

.begin-form {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 28px;
  max-width: 760px;
  margin: 0 auto;
}

.begin-action {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
  justify-items: center;
  margin-top: 34px;
}

.begin-button {
  width: auto;
  min-width: 280px;
  padding-inline: 42px;
}

.begin-note {
  margin: 0;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: #9187a2;
}

.report-section {
  display: grid;
  gap: 34px;
}

.report-copy p {
  margin: 18px 0 0;
  max-width: 420px;
  color: #5f5969;
}

.report-list {
  display: grid;
}

.report-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 22px 4px;
  border-top: 1px solid #e0dacf;
}

.report-row:last-child {
  border-bottom: 1px solid #e0dacf;
}

.report-row span {
  font-family: "Shippori Mincho", "Yu Mincho", serif;
  font-size: 18px;
  color: #3a3247;
}

.report-row small {
  color: #918b9b;
  font-size: 12px;
  letter-spacing: 0.05em;
}

.inline-faq-list {
  margin-top: 28px;
}

.inline-faq-list details {
  border-top: 1px solid #dcd5c9;
  padding: 0;
}

.inline-faq-list details:last-child {
  border-bottom: 1px solid #dcd5c9;
}

.inline-faq-list summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 4px;
  font-size: 15px;
  letter-spacing: 0.05em;
  color: #3a3247;
}

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

.inline-faq-list p {
  margin: 0;
  padding: 0 4px 24px;
  max-width: 720px;
}

.final-cta {
  padding: 34px 0 14px;
  display: grid;
  gap: 24px;
  justify-items: center;
  text-align: center;
}

.final-cta-button {
  width: auto;
  min-width: 240px;
}

.trust-item {
  padding: 20px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(74, 61, 92, 0.1);
  background: rgba(255, 255, 255, 0.78);
}

.trust-item p,
.trust-item .legal-value {
  margin: 0;
}

.legal-shortcuts {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.progress-row {
  margin-bottom: 24px;
}

.progress-row span {
  display: block;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 12px;
  letter-spacing: 0.06em;
}

.progress-bar {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 999px;
  overflow: hidden;
}

#progress-fill {
  width: 0;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, #8f7ad8, #d7b4c7);
}

.answer-list {
  display: grid;
  gap: 12px;
  margin: 24px 0;
}

.answer-option {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 2px;
  padding: 20px 18px;
  background: rgba(255, 255, 255, 0.04);
  text-align: left;
  color: #f0edf4;
  font-size: 14px;
  line-height: 1.9;
  cursor: pointer;
  transition: border-color 0.18s ease, background 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.answer-option:hover {
  transform: translateY(-1px);
  border-color: rgba(215, 180, 199, 0.18);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.16);
}

.answer-option.is-selected {
  border-color: rgba(201, 163, 168, 0.72);
  background: rgba(201, 163, 168, 0.14);
}

.nav-row {
  display: grid;
  gap: 10px;
}

.nav-row.stacked {
  margin-top: 18px;
}

.error-text {
  color: var(--danger);
  min-height: 22px;
  margin-top: 12px;
}

.loading-card,
.quiz-card {
  background:
    linear-gradient(180deg, rgba(31, 27, 49, 0.98), rgba(24, 21, 39, 0.98)),
    radial-gradient(circle at top right, rgba(143, 122, 216, 0.1), transparent 28%);
}

.loading-card,
.quiz-card,
.loading-card h2,
.quiz-card h2,
  color: #f4edf4;
}

.loading-card p,
.quiz-card p,
.loading-card li,
.quiz-card li,
.loading-card .selection-chip,
.quiz-card .selection-chip {
  color: #d5cbda;
}

.result-card,
.paywall-card,
.detail-card {
  background:
    linear-gradient(180deg, rgba(255, 252, 248, 0.99), rgba(244, 241, 236, 0.99)),
    radial-gradient(circle at top left, rgba(143, 122, 216, 0.05), transparent 30%);
}

.result-page-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
}

.result-page-brand {
  color: #3a3247;
  text-decoration: none;
  font-family: "Shippori Mincho", "Yu Mincho", serif;
  font-size: 18px;
  letter-spacing: 0.12em;
}

.result-page-brand--dark {
  color: #d8d2e4;
}

.result-page-mode {
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #a79eb3;
}

.result-page-mode--soft {
  color: #c9a3a8;
}

.result-page-mode--dark {
  color: #8b84a6;
}

.free-result-hero {
  max-width: 720px;
  margin: 0 auto;
  padding: clamp(24px, 3vw, 48px) 0 clamp(22px, 3vw, 40px);
  text-align: center;
}

.free-result-hero .type-pill {
  margin-inline: auto;
}

.free-result-hero h2 {
  max-width: 14em;
  margin-inline: auto;
}

.free-hero-prose {
  max-width: 540px;
  margin: 0 auto;
}

.free-outline-section {
  display: grid;
  gap: 36px;
  align-items: center;
}

.free-outline-copy {
  display: grid;
}

.outline-row {
  display: grid;
  gap: 10px;
  padding: 18px 2px;
  border-top: 1px solid #e0dacf;
}

.outline-row:last-child {
  border-bottom: 1px solid #e0dacf;
}

.outline-label {
  font-size: 11px;
  letter-spacing: 0.16em;
  color: #918b9b;
}

.free-outline-visual-card {
  background: transparent;
  border: 0;
  padding: 0;
  box-shadow: none;
}

.free-upgrade-card {
  margin-top: 44px;
  padding: clamp(34px, 5vw, 56px);
  border-radius: 4px;
  background: linear-gradient(165deg, #322c48 0%, #2a2540 100%);
  box-shadow: 0 20px 52px rgba(46, 42, 64, 0.24);
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 26px;
}

.free-upgrade-card::before {
  content: "";
  position: absolute;
  top: -90px;
  right: -70px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  border: 1px solid rgba(201, 163, 168, 0.16);
}

.free-upgrade-copy {
  position: relative;
  display: grid;
  gap: 14px;
}

.free-upgrade-copy h3 {
  margin: 0;
  font-family: "Shippori Mincho", "Yu Mincho", serif;
  font-size: clamp(22px, 4vw, 28px);
  line-height: 1.7;
  letter-spacing: 0.05em;
  color: #f0edf4;
}

.free-upgrade-copy .cta-text,
.free-upgrade-copy li {
  color: #b9b3c9;
}

.free-upgrade-button {
  width: auto;
  min-width: 280px;
  justify-self: start;
}

.paywall-shell {
  max-width: 840px;
  margin: 0 auto;
  padding: clamp(18px, 2vw, 24px) 0;
}

.paywall-copy {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 28px;
  display: grid;
  gap: 16px;
}

.paywall-copy h2 {
  margin-bottom: 0;
}

.paywall-copy p {
  margin: 0;
}

.paywall-actions {
  margin-top: 24px;
}

.paywall-note {
  text-align: center;
  margin-top: 18px;
}

.paid-cover {
  margin: -28px -22px 0;
  padding: 18px 22px 42px;
  background: linear-gradient(180deg, #2a2540 0%, #322c48 100%);
  position: relative;
  overflow: hidden;
}

.paid-cover::before {
  content: "";
  position: absolute;
  top: -120px;
  left: -100px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  border: 1px solid rgba(201, 163, 168, 0.12);
}

.paid-cover-copy {
  position: relative;
  max-width: 720px;
  margin: 18px auto 28px;
  text-align: center;
}

.paid-cover-copy .type-pill {
  margin-inline: auto;
  background: rgba(244, 241, 236, 0.08);
  border-color: rgba(201, 163, 168, 0.16);
  color: #d8d2e4;
}

.paid-cover-copy h2 {
  color: #f0edf4;
}

.paid-report-shell {
  max-width: 680px;
  margin: 0 auto;
  padding: clamp(40px, 6vw, 68px) 0 8px;
  display: grid;
  gap: 20px;
}

.paid-result-actions {
  max-width: 320px;
  margin: 10px auto 0;
}

.result-card h2,
.paywall-card h2,
.detail-card h2,
.result-card p,
.paywall-card p,
.detail-card p,
.result-card li,
.paywall-card li,
.detail-card li,
.result-card .selection-chip,
.paywall-card .selection-chip,
.detail-card .selection-chip {
  color: var(--text);
}

.result-card > .type-pill,
.detail-card > .type-pill {
  margin-inline: auto;
}

.result-card > h2,
.paywall-card > h2,
.detail-card > h2 {
  text-align: center;
  max-width: 14em;
  margin-inline: auto;
  margin-bottom: 28px;
}

.loader-orb {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  margin: 12px auto 24px;
  background: linear-gradient(135deg, rgba(143, 122, 216, 0.95), rgba(197, 124, 156, 0.82));
  box-shadow: 0 0 0 18px rgba(143, 122, 216, 0.1);
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.08);
  }
}

.result-block,
.image-tease-card,
.comparison-box,
.message-card {
  padding: 28px 24px;
  border-radius: 3px;
  border: 1px solid #e0dacf;
  background: #fbf9f5;
}

.price-card,
.detail-face-card {
  border-radius: 3px;
}

.result-block h3,
.comparison-box h3,
.image-tease-copy h3,
.detail-face-card h3,
.message-card h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #8b7a99;
}

.result-block h3::before,
.comparison-box h3::before,
.image-tease-copy h3::before,
.message-card h3::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 1px;
  background: linear-gradient(90deg, rgba(215, 180, 199, 0.55), rgba(215, 180, 199, 0));
}

.result-block + .result-block,
.result-block + .image-tease-card,
.image-tease-card + .cta-text,
.comparison-grid + .price-card,
.detail-face-card + .result-block,
.result-block + .message-card {
  margin-top: 18px;
}

.attention {
  background: linear-gradient(180deg, rgba(201, 163, 168, 0.08), rgba(251, 249, 245, 1));
}

.image-tease-card {
  display: grid;
  grid-template-columns: minmax(170px, 220px) 1fr;
  gap: 28px;
  align-items: center;
}

.image-tease-face,
.detail-face-visual {
  aspect-ratio: 3 / 4;
  border-radius: 2px;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center 16%;
  box-shadow: 0 18px 40px rgba(58, 50, 71, 0.14);
}

.image-tease-face::before,
.detail-face-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 24%, rgba(255, 255, 255, 0.16) 0 10%, transparent 11%),
    radial-gradient(circle at 50% 62%, rgba(255, 255, 255, 0.1) 0 22%, transparent 23%),
    linear-gradient(180deg, rgba(8, 7, 14, 0.12), rgba(8, 7, 14, 0.24));
}

.image-tease-face.has-photo::before,
.detail-face-visual.has-photo::before {
  background: linear-gradient(180deg, rgba(12, 10, 18, 0.06), rgba(12, 10, 18, 0.18));
}

.blur-mask {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 11px;
  letter-spacing: 0.14em;
  font-weight: 700;
  color: #efe7f2;
  background: rgba(22, 17, 34, 0.44);
  backdrop-filter: blur(8px);
}

.bullet-list {
  display: grid;
  gap: 10px;
  padding-left: 18px;
  margin: 14px 0 0;
}

.prose-stack {
  display: grid;
  gap: 14px;
}

.prose-stack p:last-child {
  margin-bottom: 0;
}

.selection-chip {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  margin: 0 0 10px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(201, 163, 168, 0.08);
  color: #7f6a77;
  font-size: 12px;
  border: 1px solid rgba(185, 142, 150, 0.18);
}

.comparison-grid {
  display: grid;
  gap: 16px;
}

.comparison-box.accent {
  background: linear-gradient(165deg, #322c48 0%, #2a2540 100%);
  border-color: rgba(201, 163, 168, 0.22);
}

.comparison-box.accent h3,
.comparison-box.accent li {
  color: #f0edf4;
}

.comparison-box.accent h3::before {
  background: linear-gradient(90deg, rgba(201, 163, 168, 0.8), rgba(201, 163, 168, 0));
}

.teaser-block {
  background: linear-gradient(180deg, rgba(201, 163, 168, 0.08), rgba(251, 249, 245, 1));
}

.detail-face-card {
  display: grid;
  gap: 18px;
  justify-items: center;
  text-align: center;
  padding: 48px 24px 32px;
  background: linear-gradient(180deg, #2a2540 0%, #322c48 100%);
  border: 1px solid rgba(201, 163, 168, 0.22);
  box-shadow: 0 20px 52px rgba(46, 42, 64, 0.2);
}

.detail-face-visual {
  width: min(100%, 360px);
  min-height: 480px;
  justify-self: center;
  border: 1px solid rgba(201, 163, 168, 0.36);
  padding: 6px;
  background-clip: content-box;
}

.detail-face-card .selection-chip,
.detail-face-card .face-caption {
  color: #d8d2e4;
}

.detail-face-card .selection-chip {
  background: rgba(244, 241, 236, 0.06);
  border-color: rgba(201, 163, 168, 0.24);
}

.face-caption {
  max-width: 34rem;
  margin: 0;
  font-size: 14px;
}

.comparison-box ul,
.result-block ul {
  padding-left: 18px;
  margin: 0;
}

.price-card {
  text-align: center;
  margin-top: 18px;
  background: linear-gradient(165deg, #322c48 0%, #2a2540 100%);
  border: 1px solid rgba(201, 163, 168, 0.2);
}

.price-label {
  display: block;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}

.price-card strong {
  display: block;
  font-family: "Shippori Mincho", "Yu Mincho", serif;
  font-size: 54px;
  line-height: 1;
  margin-bottom: 12px;
  color: #f0e5f1;
}

.message-card {
  background: #f0ece5;
  border-color: #e0dacf;
}

.footer-note {
  text-align: center;
  padding: 10px 0 0;
}

.footer-note--links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  justify-content: center;
}

.footer-note a {
  color: var(--muted);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 2px;
  font-size: 14px;
}

.faq-page-card,
.legal-page-card {
  min-height: 70vh;
}

.faq-page-card,
.legal-page-card {
  background:
    linear-gradient(180deg, rgba(255, 252, 248, 0.98), rgba(245, 241, 235, 0.98)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.38), rgba(255, 255, 255, 0));
}

.faq-list details,
.legal-section {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 18px 0;
}

.faq-list details:first-of-type,
.legal-section:first-of-type {
  border-top: 0;
  padding-top: 4px;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
  color: var(--text);
}

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

.faq-back-row {
  margin-top: 24px;
}

.legal-row {
  display: grid;
  gap: 6px;
}

.legal-label {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8b7a99;
  font-weight: 700;
}

.placeholder-field {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px dashed rgba(74, 61, 92, 0.24);
  background: rgba(255, 255, 255, 0.85);
  color: #8b6d7f;
  font-size: 12px;
}

.legal-list {
  margin: 0;
  padding-left: 18px;
}

.palette-gentle {
  background:
    linear-gradient(180deg, rgba(12, 10, 18, 0.12), rgba(12, 10, 18, 0.16)),
    url("./assets/faces/anshin_female_same.png") center 20% / cover no-repeat;
}

.palette-vivid {
  background:
    linear-gradient(180deg, rgba(12, 10, 18, 0.12), rgba(12, 10, 18, 0.16)),
    url("./assets/faces/geki_male_same.png") center 20% / cover no-repeat;
}

.palette-clear {
  background:
    linear-gradient(180deg, rgba(12, 10, 18, 0.12), rgba(12, 10, 18, 0.16)),
    url("./assets/faces/kyomei_neutral_same.png") center 20% / cover no-repeat;
}

.palette-calm {
  background:
    linear-gradient(180deg, rgba(12, 10, 18, 0.12), rgba(12, 10, 18, 0.16)),
    url("./assets/faces/genjitsu_male_same.png") center 20% / cover no-repeat;
}

#screen-free-result .result-block,
#screen-paid-result .result-block {
  line-height: 1.95;
}

#screen-free-result .image-tease-copy h3,
#screen-paid-result .result-block h3,
#screen-paywall .comparison-box h3,
#screen-paywall .price-card h3 {
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

@media (max-width: 720px) {
  .page-shell {
    padding: 12px 12px 72px;
  }

  .topbar {
    align-items: flex-start;
    padding-bottom: 18px;
  }

  .brand-mark {
    font-size: 24px;
  }

  .hero-card {
    min-height: auto;
  }

  .top-links {
    gap: 12px 16px;
  }

  .image-tease-card {
    grid-template-columns: 1fr;
  }

  .result-page-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .detail-face-visual {
    width: 100%;
    min-height: 460px;
    max-height: 70vh;
  }

  .paid-cover {
    margin-inline: -22px;
    padding-inline: 18px;
  }

  .free-upgrade-button {
    width: 100%;
    justify-self: stretch;
  }

  .begin-section {
    margin-top: 64px;
    padding: 70px 18px 76px;
  }

  .begin-orbit {
    right: -30px;
    width: 170px;
    height: 170px;
  }
}

@media (min-width: 700px) {
  .page-shell {
    padding-top: 26px;
  }

  .screen,
  .faq-page-card {
    padding: 40px 36px;
  }

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

  .nav-row.stacked {
    grid-template-columns: 1fr;
    width: min(100%, 420px);
    margin-left: auto;
    margin-right: auto;
  }

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

  .free-outline-section {
    grid-template-columns: minmax(280px, 320px) minmax(0, 1fr);
  }

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

  .trust-strip,
  .legal-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }

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

  .metric-band-item {
    border-bottom: 0;
    border-right: 1px solid #cfc6bb;
    padding: clamp(36px, 6vw, 48px) 24px;
  }

  .metric-band-item:last-child {
    border-right: 0;
  }

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

  .paid-cover {
    margin: -40px -36px 0;
    padding: 22px 36px 52px;
  }
}

@media (min-width: 960px) {
  .report-section {
    grid-template-columns: minmax(300px, 0.95fr) minmax(360px, 1.05fr);
    align-items: start;
    gap: 64px;
  }
}
