@charset "UTF-8";

:root {
  --bg: #fffaf8;
  --surface: #ffffff;
  --surface-soft: #fff3f1;
  --surface-strong: #fce9e7;
  --text: #312a2a;
  --text-soft: #6f6262;
  --text-faint: #958686;
  --line: rgba(96, 68, 68, 0.13);
  --line-strong: rgba(96, 68, 68, 0.22);
  --primary: #e77078;
  --primary-deep: #c85661;
  --primary-soft: #ffd9d8;
  --peach: #f4a77e;
  --cream: #fff0d9;
  --lilac: #c9b6e9;
  --sage: #aecdb8;
  --blue: #9fc6d8;
  --shadow-sm: 0 8px 24px rgba(89, 52, 55, 0.07);
  --shadow-md: 0 18px 48px rgba(89, 52, 55, 0.12);
  --shadow-lg: 0 28px 70px rgba(89, 52, 55, 0.16);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 30px;
  --radius-pill: 999px;
  --max: 1120px;
  --header-h: 66px;
  --bottom-nav-h: 72px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

:root[data-theme="dark"] {
  --bg: #1d191a;
  --surface: #272123;
  --surface-soft: #302527;
  --surface-strong: #3a2a2d;
  --text: #fff5f3;
  --text-soft: #d8c6c6;
  --text-faint: #ad9999;
  --line: rgba(255, 231, 231, 0.12);
  --line-strong: rgba(255, 231, 231, 0.22);
  --primary: #f1878e;
  --primary-deep: #ff9aa0;
  --primary-soft: #573237;
  --cream: #47382b;
  --shadow-sm: 0 8px 24px rgba(0, 0, 0, 0.2);
  --shadow-md: 0 18px 48px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 28px 70px rgba(0, 0, 0, 0.38);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); }
body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background: var(--bg);
  font-family: Pretendard, -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans KR", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  word-break: keep-all;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  padding-bottom: calc(var(--bottom-nav-h) + env(safe-area-inset-bottom));
}
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button { color: inherit; }
::selection { background: var(--primary-soft); color: var(--text); }

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--text);
  color: var(--bg);
  transform: translateY(-150%);
  transition: transform .2s;
}
.skip-link:focus { transform: translateY(0); }

.topbar {
  position: sticky;
  z-index: 100;
  top: 0;
  height: calc(var(--header-h) + env(safe-area-inset-top));
  padding: env(safe-area-inset-top) 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: color-mix(in srgb, var(--bg) 86%, transparent);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  transition: border-color .25s, box-shadow .25s;
}
.topbar.elevated { border-color: var(--line); box-shadow: 0 4px 18px rgba(70, 38, 40, .05); }
.brand { display: inline-flex; align-items: center; gap: 10px; min-height: 44px; }
.brand-mark {
  position: relative;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(145deg, #ffddd9, #fff0e5);
  box-shadow: inset 0 0 0 1px rgba(214, 106, 112, .1), 0 6px 14px rgba(206, 103, 111, .14);
  transform: rotate(-3deg);
}
:root[data-theme="dark"] .brand-mark { background: linear-gradient(145deg, #5c3438, #493038); }
.brand-mark span, .brand-mark span::before, .brand-mark span::after { position: absolute; width: 10px; height: 16px; background: var(--primary); }
.brand-mark span { transform: rotate(-45deg); border-radius: 8px 8px 2px 2px; top: 9px; }
.brand-mark span::before, .brand-mark span::after { content: ""; border-radius: 8px 8px 2px 2px; }
.brand-mark span::before { transform: rotate(90deg); left: 3px; top: 3px; }
.brand-mark span::after { display: none; }
.brand-copy { display: flex; flex-direction: column; line-height: 1.08; }
.brand-copy strong { font-size: 15px; letter-spacing: -.03em; }
.brand-copy small { margin-top: 4px; color: var(--text-faint); font-size: 9px; letter-spacing: .09em; text-transform: uppercase; }
.icon-button {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: color-mix(in srgb, var(--surface) 90%, transparent);
  cursor: pointer;
}
.icon-button svg { width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.moon-icon { display: none; }
:root[data-theme="dark"] .sun-icon { display: none; }
:root[data-theme="dark"] .moon-icon { display: block; }

.section { position: relative; padding: 76px 20px; overflow: clip; }
.section > * { width: min(100%, var(--max)); margin-inline: auto; }
.soft-section { background: var(--surface-soft); }
.section-heading { margin-bottom: 34px; }
.kicker {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--primary-deep);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
}
.section-heading h2 {
  margin: 0;
  font-size: clamp(30px, 8.5vw, 48px);
  line-height: 1.22;
  letter-spacing: -.055em;
}
.section-heading h2 em { color: var(--primary); font-style: normal; }
.section-heading > p { margin: 18px 0 0; max-width: 650px; color: var(--text-soft); font-size: 15px; line-height: 1.75; }

.hero { min-height: calc(100svh - var(--header-h)); padding-top: 44px; text-align: center; }
.hero-glow { position: absolute; z-index: -1; border-radius: 50%; filter: blur(1px); opacity: .65; pointer-events: none; }
.glow-one { width: 240px; height: 240px; top: 50px; right: -110px; background: radial-gradient(circle, rgba(255, 188, 181, .42), transparent 68%); }
.glow-two { width: 220px; height: 220px; top: 360px; left: -120px; background: radial-gradient(circle, rgba(205, 187, 236, .3), transparent 68%); }
.eyebrow {
  width: max-content;
  max-width: 100%;
  margin-bottom: 18px;
  padding: 7px 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  background: color-mix(in srgb, var(--surface) 72%, transparent);
  color: var(--text-soft);
  font-size: 11px;
  font-weight: 700;
  box-shadow: var(--shadow-sm);
}
.eyebrow-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--primary); box-shadow: 0 0 0 4px color-mix(in srgb, var(--primary) 16%, transparent); }
.hero h1 { margin: 0; font-size: clamp(39px, 11.5vw, 72px); line-height: 1.13; letter-spacing: -.075em; }
.hero h1 em { position: relative; color: var(--primary); font-style: normal; }
.hero h1 em::after { content: ""; position: absolute; left: 2%; right: -1%; bottom: 1px; height: 8px; border-radius: 50%; background: color-mix(in srgb, var(--primary) 20%, transparent); transform: rotate(-1deg); z-index: -1; }
.hero-copy { max-width: 680px; margin: 22px auto 0; color: var(--text-soft); font-size: 15px; line-height: 1.8; }
.hero-copy strong { color: var(--text); }
.hero-actions { display: grid; gap: 10px; margin: 28px auto 0; max-width: 420px; }
.button {
  min-height: 50px;
  padding: 13px 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: 16px;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  transition: transform .18s var(--ease), box-shadow .18s, background .18s;
}
.button:active { transform: scale(.98); }
.button-primary { background: linear-gradient(145deg, var(--primary), var(--primary-deep)); color: white; box-shadow: 0 11px 25px rgba(205, 83, 94, .25); }
.button-primary:hover { box-shadow: 0 15px 32px rgba(205, 83, 94, .32); transform: translateY(-1px); }
.button-ghost { border-color: var(--line-strong); background: var(--surface); color: var(--text); }
.button-wide { width: 100%; }

.heart-orbit { position: relative; height: 315px; margin: 44px auto 0; max-width: 420px; }
.heart-illustration { position: absolute; width: 124px; height: 112px; top: 94px; left: 50%; transform: translateX(-50%) rotate(-3deg); filter: drop-shadow(0 18px 23px rgba(204, 91, 100, .22)); }
.heart-piece { position: absolute; top: 9px; width: 66px; height: 98px; background: linear-gradient(145deg, #f89aa0, #d95f69); }
.heart-piece.left { left: 13px; border-radius: 52px 52px 8px 45px; transform: rotate(-43deg); transform-origin: 48px 78px; }
.heart-piece.right { right: 13px; border-radius: 52px 52px 45px 8px; transform: rotate(43deg); transform-origin: 18px 78px; }
.heart-piece::after { content: ""; position: absolute; inset: 8px auto auto 15px; width: 17px; height: 32px; border-radius: 50%; background: rgba(255,255,255,.23); transform: rotate(-18deg); }
.heart-spark { position: absolute; width: 6px; height: 6px; border-radius: 50%; background: var(--peach); box-shadow: 0 0 0 5px rgba(244,167,126,.12); }
.heart-spark.s1 { left: -24px; top: 17px; }.heart-spark.s2 { right: -28px; top: 7px; width: 4px; height: 4px; }.heart-spark.s3 { right: -16px; bottom: 8px; background: var(--lilac); }
.orbit-label { position: absolute; min-width: 114px; padding: 10px 12px; display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: 16px; background: color-mix(in srgb, var(--surface) 86%, transparent); box-shadow: var(--shadow-sm); backdrop-filter: blur(10px); text-align: left; }
.orbit-label b { font-size: 13px; line-height: 1.3; }.orbit-label span { margin-top: 2px; color: var(--text-faint); font-size: 10px; }
.orbit-secure { left: 2%; top: 28px; transform: rotate(-3deg); }.orbit-anxious { right: 0; top: 47px; transform: rotate(3deg); }.orbit-dismissive { left: 0; bottom: 31px; transform: rotate(2deg); }.orbit-fearful { right: 0; bottom: 18px; transform: rotate(-2deg); }
.notice-card { max-width: 700px; margin: 12px auto 0; padding: 16px; display: flex; gap: 12px; border: 1px solid var(--line); border-radius: 18px; background: var(--surface); box-shadow: var(--shadow-sm); text-align: left; }
.notice-card p { margin: 0; color: var(--text-soft); font-size: 12.5px; line-height: 1.65; }.notice-card strong { color: var(--text); }
.notice-icon { flex: 0 0 auto; width: 23px; height: 23px; display: grid; place-items: center; border-radius: 50%; background: var(--primary-soft); color: var(--primary-deep); font: 800 12px/1 Georgia, serif; }

.axis-lab { display: grid; gap: 20px; }
.matrix-wrap { padding: 20px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--surface); box-shadow: var(--shadow-md); }
.matrix { position: relative; aspect-ratio: 1; max-width: 420px; margin: auto; overflow: visible; border: 1px solid var(--line-strong); border-radius: 22px; background:
  linear-gradient(to right, transparent calc(50% - .5px), var(--line-strong) 50%, transparent calc(50% + .5px)),
  linear-gradient(to bottom, transparent calc(50% - .5px), var(--line-strong) 50%, transparent calc(50% + .5px)),
  radial-gradient(circle at 22% 76%, rgba(174,205,184,.34), transparent 30%),
  radial-gradient(circle at 22% 22%, rgba(244,167,126,.30), transparent 30%),
  radial-gradient(circle at 78% 76%, rgba(159,198,216,.30), transparent 30%),
  radial-gradient(circle at 78% 22%, rgba(201,182,233,.30), transparent 30%),
  var(--surface-soft);
}
.matrix-label { position: absolute; padding: 5px 8px; border-radius: 9px; background: color-mix(in srgb, var(--surface) 80%, transparent); color: var(--text-soft); font-size: 9px; font-weight: 800; letter-spacing: -.02em; backdrop-filter: blur(4px); }
.matrix-label.top-left { top: 10px; left: 10px; }.matrix-label.top-right { top: 10px; right: 10px; }.matrix-label.bottom-left { left: 10px; bottom: 10px; }.matrix-label.bottom-right { right: 10px; bottom: 10px; }
.matrix-axis-label { position: absolute; color: var(--text-faint); font-size: 9px; font-style: normal; }.axis-y { left: -5px; top: 50%; transform: translate(-100%, -50%) rotate(-90deg); }.axis-x { bottom: -8px; left: 50%; transform: translate(-50%, 100%); }
.matrix-dot { position: absolute; z-index: 2; left: 25%; top: 65%; width: 23px; height: 23px; border: 4px solid white; border-radius: 50%; background: var(--primary); box-shadow: 0 5px 18px rgba(180, 76, 85, .35), 0 0 0 5px rgba(231,112,120,.14); transform: translate(-50%, -50%); transition: left .35s var(--ease), top .35s var(--ease); }
.sliders { display: grid; gap: 12px; }
.slider-card { display: block; padding: 17px; border: 1px solid var(--line); border-radius: 19px; background: var(--surface); }
.slider-title { display: flex; align-items: center; justify-content: space-between; }.slider-title b { font-size: 14px; }.slider-title output { min-width: 34px; padding: 3px 8px; border-radius: 9px; background: var(--surface-soft); color: var(--primary-deep); font-size: 12px; font-weight: 800; text-align: center; }
.slider-question { display: block; margin-top: 4px; color: var(--text-soft); font-size: 11px; }
.slider-card input { width: 100%; height: 28px; margin: 13px 0 0; appearance: none; background: transparent; cursor: pointer; }
.slider-card input::-webkit-slider-runnable-track { height: 7px; border-radius: 9px; background: linear-gradient(90deg, var(--sage), var(--cream), var(--primary-soft), var(--primary)); }
.slider-card input::-moz-range-track { height: 7px; border-radius: 9px; background: linear-gradient(90deg, var(--sage), var(--cream), var(--primary-soft), var(--primary)); }
.slider-card input::-webkit-slider-thumb { width: 24px; height: 24px; margin-top: -8px; appearance: none; border: 4px solid var(--surface); border-radius: 50%; background: var(--primary); box-shadow: 0 3px 10px rgba(100,50,55,.25); }
.slider-card input::-moz-range-thumb { width: 18px; height: 18px; border: 4px solid var(--surface); border-radius: 50%; background: var(--primary); box-shadow: 0 3px 10px rgba(100,50,55,.25); }
.range-ends { display: flex; justify-content: space-between; margin-top: -3px; color: var(--text-faint); font-size: 9px; }.range-ends i { font-style: normal; }
.live-result { padding: 20px; display: flex; align-items: flex-start; gap: 16px; border: 1px solid color-mix(in srgb, var(--primary) 30%, var(--line)); border-radius: 22px; background: linear-gradient(145deg, color-mix(in srgb, var(--primary-soft) 48%, var(--surface)), var(--surface)); box-shadow: var(--shadow-sm); }
.result-petal { flex: 0 0 auto; width: 38px; height: 38px; border-radius: 60% 40% 55% 45%; background: linear-gradient(145deg, var(--primary), var(--peach)); transform: rotate(21deg); box-shadow: inset 8px 7px 15px rgba(255,255,255,.25); }
.live-result small { color: var(--text-faint); font-size: 10px; }.live-result h3 { margin: 2px 0 5px; font-size: 19px; letter-spacing: -.04em; }.live-result p { margin: 0; color: var(--text-soft); font-size: 12px; line-height: 1.65; }

.type-grid { display: grid; gap: 14px; }
.type-card { padding: 0 17px 17px; overflow: hidden; border: 1px solid var(--line); border-radius: 23px; background: var(--surface); box-shadow: var(--shadow-sm); }
.type-card.secure { --card-accent: #72a884; --card-soft: rgba(174,205,184,.34); }.type-card.anxious { --card-accent: #df895e; --card-soft: rgba(244,167,126,.30); }.type-card.dismissive { --card-accent: #709bb0; --card-soft: rgba(159,198,216,.30); }.type-card.fearful { --card-accent: #9b7dc4; --card-soft: rgba(201,182,233,.30); }
.type-summary { width: 100%; min-height: 100px; padding: 17px 0 10px; display: flex; align-items: center; gap: 14px; border: 0; background: transparent; text-align: left; cursor: pointer; }
.type-symbol { flex: 0 0 auto; width: 50px; height: 50px; display: grid; place-items: center; border-radius: 18px; background: var(--card-soft); color: var(--card-accent); font: 400 26px/1 Georgia, serif; }
.type-heading { min-width: 0; display: grid; grid-template-columns: auto 1fr; align-items: baseline; column-gap: 8px; }.type-heading small { grid-column: 1 / -1; margin-bottom: 1px; color: var(--text-faint); font-size: 9px; }.type-heading strong { font-size: 20px; letter-spacing: -.04em; }.type-heading em { color: var(--card-accent); font-size: 10px; font-style: normal; font-weight: 800; text-transform: uppercase; }
.expand-icon { position: relative; width: 28px; height: 28px; margin-left: auto; flex: 0 0 auto; border-radius: 50%; background: var(--surface-soft); }.expand-icon::before, .expand-icon::after { content: ""; position: absolute; left: 50%; top: 50%; width: 10px; height: 1.5px; border-radius: 2px; background: var(--text-soft); transform: translate(-50%,-50%); transition: transform .2s; }.expand-icon::after { transform: translate(-50%,-50%) rotate(90deg); }.type-summary[aria-expanded="true"] .expand-icon::after { transform: translate(-50%,-50%) rotate(0); }
.type-tagline { margin: 0; padding: 13px 14px; border-radius: 14px; background: var(--card-soft); color: var(--text-soft); font-size: 12px; line-height: 1.55; }
.type-detail { padding-top: 17px; animation: detailIn .32s var(--ease); }.feature-list { margin: 0; }.feature-list div { padding: 12px 0; border-bottom: 1px solid var(--line); }.feature-list dt { margin-bottom: 3px; color: var(--card-accent); font-size: 10px; font-weight: 800; }.feature-list dd { margin: 0; color: var(--text-soft); font-size: 12px; line-height: 1.65; }
.phrase-box { margin-top: 15px; padding: 15px; border: 1px dashed color-mix(in srgb, var(--card-accent) 45%, var(--line)); border-radius: 15px; background: color-mix(in srgb, var(--card-soft) 55%, var(--surface)); }.phrase-box span { display: block; margin-bottom: 5px; color: var(--card-accent); font-size: 9px; font-weight: 800; }.phrase-box q { font-size: 12px; font-weight: 700; line-height: 1.6; quotes: none; }
@keyframes detailIn { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }

.check-section { background: linear-gradient(180deg, var(--bg), var(--surface-soft)); }
.check-disclaimer { margin-bottom: 16px; padding: 14px 15px; border: 1px solid rgba(214, 157, 85, .28); border-radius: 16px; background: color-mix(in srgb, var(--cream) 62%, var(--surface)); }.check-disclaimer b { color: #a36939; font-size: 11px; }.check-disclaimer p { margin: 3px 0 0; color: var(--text-soft); font-size: 10.5px; line-height: 1.55; }
.quiz-shell { min-height: 430px; padding: 22px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--surface); box-shadow: var(--shadow-md); }
.quiz-intro { display: flex; min-height: 390px; flex-direction: column; justify-content: center; text-align: center; }.mini-heart { width: 62px; height: 62px; margin: 0 auto 16px; display: grid; place-items: center; border-radius: 22px; background: linear-gradient(145deg, var(--primary-soft), var(--cream)); color: var(--primary-deep); font: 38px/1 Georgia, serif; transform: rotate(-4deg); }.quiz-intro h3 { margin: 0; font-size: 22px; letter-spacing: -.045em; }.quiz-intro > p { margin: 10px auto 0; max-width: 430px; color: var(--text-soft); font-size: 12px; }
.privacy-list { margin: 20px 0 24px; padding: 0; display: flex; justify-content: center; gap: 7px; list-style: none; flex-wrap: wrap; }.privacy-list li { padding: 6px 9px; border-radius: var(--radius-pill); background: var(--surface-soft); color: var(--text-soft); font-size: 9px; font-weight: 700; }.privacy-list span { margin-right: 3px; color: var(--primary); }
.quiz-topline { display: flex; align-items: center; justify-content: space-between; font-size: 11px; font-weight: 700; }.text-button { min-width: 54px; min-height: 40px; padding: 0; border: 0; background: transparent; color: var(--primary-deep); cursor: pointer; text-align: left; }.text-button.muted { color: var(--text-faint); text-align: right; }
.progress-track { height: 6px; margin: 8px 0 28px; overflow: hidden; border-radius: 8px; background: var(--surface-soft); }.progress-track span { display: block; width: 8.33%; height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--peach), var(--primary)); transition: width .3s var(--ease); }
.question-card { min-width: 0; margin: 0; padding: 0; border: 0; }.question-card legend { min-height: 78px; padding: 0; font-size: 22px; font-weight: 800; line-height: 1.42; letter-spacing: -.045em; }.question-card > p { min-height: 38px; margin: 9px 0 20px; color: var(--text-soft); font-size: 11px; }
.answer-scale { display: grid; gap: 8px; }.answer-option { position: relative; width: 100%; min-height: 48px; padding: 12px 14px; display: flex; align-items: center; gap: 11px; border: 1px solid var(--line); border-radius: 14px; background: var(--surface); color: var(--text-soft); cursor: pointer; text-align: left; transition: border .18s, background .18s, transform .18s; }.answer-option:hover { border-color: color-mix(in srgb, var(--primary) 50%, var(--line)); background: var(--surface-soft); }.answer-option:active { transform: scale(.99); }.answer-option .radio { width: 19px; height: 19px; border: 1.5px solid var(--line-strong); border-radius: 50%; }.answer-option .answer-number { margin-left: auto; color: var(--text-faint); font-size: 9px; }.answer-option.selected { border-color: var(--primary); background: color-mix(in srgb, var(--primary-soft) 38%, var(--surface)); color: var(--text); }.answer-option.selected .radio { border: 5px solid var(--primary); }
.quiz-result { text-align: center; }.result-label { display: inline-block; padding: 6px 10px; border-radius: var(--radius-pill); background: var(--primary-soft); color: var(--primary-deep); font-size: 9px; font-weight: 800; }.quiz-result h3 { margin: 12px 0 7px; font-size: 27px; line-height: 1.3; letter-spacing: -.055em; }.quiz-result > p { margin: 0 auto 20px; max-width: 540px; color: var(--text-soft); font-size: 12px; }
.result-matrix { width: min(78vw, 310px); margin: 22px auto 30px; }.score-pills { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; }.score-pills div { padding: 13px 8px; display: grid; grid-template-columns: 1fr auto; align-items: center; border: 1px solid var(--line); border-radius: 15px; background: var(--surface-soft); text-align: left; }.score-pills span { color: var(--text-soft); font-size: 10px; }.score-pills b { grid-row: 1 / 3; grid-column: 2; font-size: 22px; }.score-pills i { font-size: 9px; font-style: normal; color: var(--primary-deep); }
.result-insights { margin-top: 16px; display: grid; gap: 9px; text-align: left; }.insight-card { padding: 15px; border: 1px solid var(--line); border-radius: 15px; }.insight-card b { display: block; margin-bottom: 4px; font-size: 11px; }.insight-card p { margin: 0; color: var(--text-soft); font-size: 11px; line-height: 1.6; }.result-caution { margin-top: 15px; padding: 14px; border-radius: 15px; background: color-mix(in srgb, var(--cream) 56%, var(--surface)); text-align: left; }.result-caution b { color: #a36939; font-size: 10px; }.result-caution p { margin: 3px 0 0; color: var(--text-soft); font-size: 10px; line-height: 1.55; }
.result-actions { margin-top: 20px; display: grid; gap: 9px; }.share-status { min-height: 20px; margin-top: 8px !important; font-size: 10px !important; }

.loop-timeline { position: relative; display: grid; gap: 12px; }.loop-timeline::before { content: ""; position: absolute; left: 19px; top: 38px; bottom: 38px; width: 1px; border-left: 1px dashed var(--line-strong); }.loop-timeline article { position: relative; padding: 16px 16px 16px 54px; border: 1px solid var(--line); border-radius: 18px; background: var(--surface); box-shadow: var(--shadow-sm); }.loop-timeline article > span { position: absolute; z-index: 1; left: 8px; top: 17px; width: 24px; height: 24px; display: grid; place-items: center; border: 4px solid var(--bg); border-radius: 50%; background: var(--primary); color: white; font-size: 9px; font-weight: 800; box-sizing: content-box; }.loop-timeline small { color: var(--primary-deep); font-size: 9px; font-weight: 800; text-transform: uppercase; }.loop-timeline h3 { margin: 1px 0 5px; font-size: 16px; letter-spacing: -.035em; }.loop-timeline p { margin: 0; color: var(--text-soft); font-size: 11px; line-height: 1.6; }
.repair-card { margin-top: 22px; padding: 22px; border: 1px solid color-mix(in srgb, var(--primary) 23%, var(--line)); border-radius: 24px; background: linear-gradient(145deg, color-mix(in srgb, var(--primary-soft) 45%, var(--surface)), var(--surface)); box-shadow: var(--shadow-md); }.repair-icon { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 14px; background: var(--primary); color: white; font-size: 20px; }.repair-card small { display: block; margin-top: 17px; color: var(--primary-deep); font-size: 9px; font-weight: 800; letter-spacing: .12em; }.repair-card h3 { margin: 4px 0 17px; font-size: 22px; line-height: 1.4; letter-spacing: -.045em; }.repair-card h3 em { color: var(--primary); font-style: normal; }.repair-examples { display: grid; gap: 8px; }.repair-examples p { margin: 0; padding: 12px; border-radius: 13px; background: color-mix(in srgb, var(--surface) 74%, transparent); color: var(--text-soft); font-size: 10.5px; }.repair-examples b { display: block; margin-bottom: 2px; color: var(--text); font-size: 9px; }
.toolkit-heading { margin-top: 58px; }.toolkit-heading small { color: var(--primary-deep); font-size: 9px; font-weight: 800; letter-spacing: .12em; }.toolkit-heading h3 { margin: 6px 0 20px; font-size: 25px; line-height: 1.35; letter-spacing: -.045em; }.toolkit-grid { display: grid; gap: 11px; }.tool-card { position: relative; padding: 18px; border: 1px solid var(--line); border-radius: 19px; background: var(--surface); }.tool-card > span { color: var(--primary); font: 800 9px/1 sans-serif; }.tool-card h4 { margin: 8px 0 7px; font-size: 16px; letter-spacing: -.035em; }.tool-card p { margin: 0; color: var(--text-soft); font-size: 11px; line-height: 1.65; }.tool-card p b { color: var(--text); }

.system-cards { display: grid; gap: 12px; }.system-card { padding: 20px; border: 1px solid var(--line); border-radius: 21px; background: var(--surface); }.system-card > span { display: inline-block; padding: 5px 8px; border-radius: 8px; background: var(--surface-strong); color: var(--primary-deep); font-size: 9px; font-weight: 800; }.system-card h3 { margin: 12px 0 7px; font-size: 19px; letter-spacing: -.04em; }.system-card p { margin: 0; color: var(--text-soft); font-size: 11px; }.system-card ul { margin: 14px 0 0; padding: 0; display: flex; gap: 6px; flex-wrap: wrap; list-style: none; }.system-card li { padding: 5px 8px; border: 1px solid var(--line); border-radius: var(--radius-pill); color: var(--text-soft); font-size: 8.5px; }
.myth-list { margin-top: 30px; border-top: 1px solid var(--line); }.myth-list details { border-bottom: 1px solid var(--line); }.myth-list summary { min-height: 64px; display: flex; align-items: center; gap: 12px; cursor: pointer; list-style: none; font-size: 13px; font-weight: 800; line-height: 1.45; }.myth-list summary::-webkit-details-marker { display: none; }.myth-list summary span { flex: 1; }.myth-list summary i { position: relative; width: 26px; height: 26px; flex: 0 0 auto; border-radius: 50%; background: var(--surface); }.myth-list summary i::before, .myth-list summary i::after { content: ""; position: absolute; left: 50%; top: 50%; width: 9px; height: 1.5px; background: var(--text-soft); transform: translate(-50%,-50%); transition: transform .2s; }.myth-list summary i::after { transform: translate(-50%,-50%) rotate(90deg); }.myth-list details[open] summary i::after { transform: translate(-50%,-50%); }.myth-list details p { margin: -3px 0 18px; padding-right: 38px; color: var(--text-soft); font-size: 11.5px; line-height: 1.7; }

.sources-section { padding-bottom: 88px; }.source-list { display: grid; gap: 9px; }.source-list a { min-height: 72px; padding: 13px 14px; display: grid; grid-template-columns: 48px 1fr 16px; align-items: center; gap: 10px; border: 1px solid var(--line); border-radius: 16px; background: var(--surface); transition: transform .2s, border-color .2s; }.source-list a:hover { transform: translateY(-2px); border-color: color-mix(in srgb, var(--primary) 35%, var(--line)); }.source-list > a > span { color: var(--primary-deep); font-size: 9px; font-weight: 800; }.source-list b { display: block; font-size: 11px; }.source-list p { margin: 2px 0 0; color: var(--text-soft); font-size: 9px; line-height: 1.4; }.source-list i { color: var(--text-faint); font-style: normal; }
.safety-box { margin-top: 22px; padding: 18px; border: 1px solid rgba(197, 102, 102, .22); border-radius: 18px; background: color-mix(in srgb, var(--primary-soft) 38%, var(--surface)); }.safety-box h3 { margin: 0 0 6px; font-size: 14px; }.safety-box p { margin: 0; color: var(--text-soft); font-size: 10.5px; line-height: 1.6; }
.footer { padding: 54px 20px 38px; text-align: center; background: var(--surface-soft); }.footer-heart { margin-bottom: 6px; color: var(--primary); font: 34px/1 Georgia, serif; }.footer strong { font-size: 17px; }.footer > p { margin: 6px 0 15px; color: var(--text-soft); font-size: 10.5px; }.footer nav { display: flex; justify-content: center; gap: 16px; margin-bottom: 18px; }.footer nav a { color: var(--text-soft); font-size: 10px; text-decoration: underline; text-underline-offset: 4px; }.footer small { display: block; color: var(--text-faint); font-size: 8.5px; }

.bottom-nav { position: fixed; z-index: 200; left: 0; right: 0; bottom: 0; height: calc(var(--bottom-nav-h) + env(safe-area-inset-bottom)); padding: 7px 8px env(safe-area-inset-bottom); display: grid; grid-template-columns: repeat(5, 1fr); border-top: 1px solid var(--line); background: color-mix(in srgb, var(--surface) 92%, transparent); box-shadow: 0 -8px 24px rgba(65, 36, 38, .06); backdrop-filter: blur(20px) saturate(150%); -webkit-backdrop-filter: blur(20px) saturate(150%); }
.bottom-nav a { position: relative; min-height: 56px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px; border-radius: 13px; color: var(--text-faint); font-size: 9px; font-weight: 700; }.bottom-nav svg { width: 21px; height: 21px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }.bottom-nav a.active { color: var(--primary-deep); }.bottom-nav a.active::after { content: ""; position: absolute; bottom: 2px; width: 5px; height: 5px; border-radius: 50%; background: var(--primary); }.bottom-nav .nav-check { margin-top: -20px; }.check-bubble { width: 50px; height: 50px; display: grid; place-items: center; border: 5px solid var(--surface); border-radius: 50%; background: linear-gradient(145deg, var(--primary), var(--primary-deep)); color: white; box-shadow: 0 8px 20px rgba(197,80,91,.28); box-sizing: content-box; }.bottom-nav .nav-check svg { width: 25px; height: 25px; fill: rgba(255,255,255,.14); }.bottom-nav .nav-check.active::after { display: none; }
.toast { position: fixed; z-index: 500; left: 50%; bottom: calc(var(--bottom-nav-h) + env(safe-area-inset-bottom) + 14px); max-width: calc(100% - 40px); padding: 10px 15px; border-radius: var(--radius-pill); background: var(--text); color: var(--bg); box-shadow: var(--shadow-lg); font-size: 11px; font-weight: 700; opacity: 0; pointer-events: none; transform: translate(-50%, 15px); transition: opacity .25s, transform .25s var(--ease); }.toast.show { opacity: 1; transform: translate(-50%, 0); }

.reveal { opacity: 0; transform: translateY(15px); transition: opacity .65s var(--ease), transform .65s var(--ease); }.reveal.visible { opacity: 1; transform: none; }

:focus-visible { outline: 3px solid color-mix(in srgb, var(--primary) 55%, transparent); outline-offset: 3px; }
[hidden] { display: none !important; }

@media (min-width: 560px) {
  .section { padding-inline: 28px; }
  .hero-actions, .result-actions { grid-template-columns: 1fr 1fr; }
  .type-grid, .system-cards, .toolkit-grid { grid-template-columns: repeat(2, 1fr); }
  .type-card { align-self: start; }
  .quiz-shell { padding: 30px; }
  .answer-scale { grid-template-columns: repeat(5, 1fr); gap: 6px; }
  .answer-option { min-height: 88px; padding: 10px 6px; flex-direction: column; justify-content: center; text-align: center; }
  .answer-option .answer-number { margin: 0; }
  .answer-option .radio { display: none; }
}

@media (min-width: 780px) {
  :root { --header-h: 76px; }
  body { padding-bottom: 0; }
  .topbar { padding-inline: 32px; }
  .brand-copy strong { font-size: 17px; }
  .section { padding-block: 110px; }
  .hero { padding-top: 80px; }
  .hero-copy { font-size: 17px; }
  .heart-orbit { height: 370px; max-width: 520px; }.heart-illustration { top: 112px; transform: translateX(-50%) scale(1.18) rotate(-3deg); }.orbit-label { min-width: 145px; padding: 13px 15px; }.orbit-label b { font-size: 14px; }.orbit-label span { font-size: 11px; }
  .axis-lab { grid-template-columns: minmax(340px, .9fr) minmax(320px, 1.1fr); grid-template-areas: "matrix sliders" "matrix result"; align-items: center; gap: 20px 28px; }.matrix-wrap { grid-area: matrix; padding: 34px; }.sliders { grid-area: sliders; }.live-result { grid-area: result; }
  .type-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .type-card { padding-inline: 21px; }
  .quiz-shell { max-width: 760px; }
  .loop-timeline { grid-template-columns: repeat(4, 1fr); gap: 12px; }.loop-timeline::before { left: 10%; right: 10%; top: 31px; bottom: auto; width: auto; height: 1px; border-left: 0; border-top: 1px dashed var(--line-strong); }.loop-timeline article { padding: 55px 17px 18px; }.loop-timeline article > span { left: 50%; top: 13px; transform: translateX(-50%); }
  .repair-card { padding: 30px; display: grid; grid-template-columns: 54px 1fr; column-gap: 18px; }.repair-card small { margin-top: 0; }.repair-examples { grid-column: 2; grid-template-columns: 1fr 1fr; }
  .toolkit-grid { grid-template-columns: repeat(3, 1fr); }.tool-card { min-height: 190px; }
  .system-cards { grid-template-columns: repeat(3, 1fr); }.system-card { min-height: 240px; }
  .source-list { grid-template-columns: 1fr 1fr; }
  .bottom-nav { left: 50%; right: auto; bottom: 18px; width: 510px; height: 66px; padding: 6px; border: 1px solid var(--line); border-radius: 22px; box-shadow: var(--shadow-lg); transform: translateX(-50%); }.bottom-nav .nav-check { margin-top: -15px; }.check-bubble { border-color: var(--surface); }
  .toast { bottom: 100px; }
  .footer { padding-bottom: 120px; }
}

@media (min-width: 1080px) {
  .topbar { padding-inline: max(36px, calc((100% - var(--max)) / 2)); }
  .section-heading { display: grid; grid-template-columns: 1fr 1fr; column-gap: 70px; align-items: end; }.section-heading .kicker { grid-column: 1 / -1; }.section-heading > p { margin-top: 0; padding-bottom: 6px; }
  .hero .eyebrow, .hero h1, .hero .hero-copy, .hero .hero-actions, .hero .heart-orbit, .hero .notice-card { grid-column: auto; }
  .hero-actions { max-width: 460px; }
  .type-grid { grid-template-columns: repeat(4, 1fr); }.type-heading { grid-template-columns: 1fr; }.type-heading em { margin-top: 1px; }.type-card { min-height: 274px; }
  .type-detail { font-size: 14px; }
  .repair-card { grid-template-columns: 54px .8fr 1.3fr; align-items: center; }.repair-examples { grid-column: 3; }.repair-card h3 { margin-bottom: 0; }
}

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