:root {
  --cyan: #7DE0F0;
  --aqua: #80E0EF;
  --aqua-light: #DDF9FD;
  --aqua-pale: #F0FDFF;
  --blue-pale: #E7F7FF;
  --ink: #173B5E;
  --ink-soft: #2A5B7E;
  --blue: #417CC7;
  --blue-deep: #235D94;
  --white: #FFFFFF;
  --cream: #FFFDF4;
  --yellow: #FFE580;
  --peach: #FFD9C7;
  --pink: #FF9FC8;
  --shadow: 0 24px 60px rgba(35, 93, 148, .15);
  --shadow-soft: 0 12px 30px rgba(35, 93, 148, .12);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 16px;
}

* {
  box-sizing: border-box;
  scrollbar-color: var(--cyan) var(--aqua-pale);
}

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--aqua-pale); }
::-webkit-scrollbar-thumb {
  border: 2px solid var(--aqua-pale);
  border-radius: 999px;
  background: linear-gradient(var(--cyan), var(--aqua));
}

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--aqua-pale);
  font-family: "Noto Sans SC", "Microsoft YaHei", "PingFang SC", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

button, a { -webkit-tap-highlight-color: transparent; }
button { color: inherit; font: inherit; }
button:focus-visible, a:focus-visible, input:focus-visible + label {
  outline: 3px solid var(--yellow);
  outline-offset: 4px;
}

.page-glow {
  position: fixed;
  z-index: -1;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(2px);
}

.page-glow--one {
  width: 460px;
  height: 460px;
  top: 120px;
  right: -220px;
  background: rgba(125, 224, 240, .28);
}

.page-glow--two {
  width: 360px;
  height: 360px;
  top: 600px;
  left: -220px;
  background: rgba(128, 224, 239, .22);
}

.site-header {
  width: min(1180px, calc(100% - 48px));
  height: 88px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -.4px;
  text-decoration: none;
}

.brand > span:last-child { display: flex; align-items: baseline; gap: 7px; }
.brand small { color: var(--blue); font-size: 10px; font-weight: 800; letter-spacing: 1.5px; }
.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 2px solid var(--ink);
  border-radius: 12px;
  background: linear-gradient(135deg, var(--cyan), var(--aqua));
  box-shadow: 4px 4px 0 var(--ink);
}
.brand-mark svg { width: 25px; fill: var(--white); stroke: var(--ink); stroke-width: 1.3; }

.header-nav { display: flex; align-items: center; gap: 30px; }
.header-nav a { color: var(--ink-soft); font-size: 14px; font-weight: 700; text-decoration: none; }
.header-nav a:hover { color: var(--blue); }
.nav-chip {
  padding: 9px 15px;
  border: 1.5px solid var(--cyan);
  border-radius: 999px;
  color: var(--blue-deep);
  background: var(--white);
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 5px 16px rgba(65, 124, 199, .08);
}

.screen { display: none; }
.screen--active { display: block; }
.screen--active:not(#homeScreen) { animation: screenIn .5s ease both; }

@keyframes screenIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero {
  width: min(1180px, calc(100% - 48px));
  min-height: 650px;
  margin: 26px auto 60px;
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  align-items: center;
  gap: 46px;
}

.hero-copy { padding-bottom: 36px; }
.eyebrow {
  width: fit-content;
  padding: 9px 16px 9px 11px;
  display: flex;
  align-items: center;
  gap: 9px;
  border: 1.5px solid var(--cyan);
  border-radius: 999px;
  color: var(--blue-deep);
  background: rgba(255, 255, 255, .75);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .5px;
}
.eyebrow-dot {
  width: 10px;
  height: 10px;
  border: 2px solid var(--white);
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 1.5px var(--cyan);
}

.hero h1 {
  margin: 27px 0 21px;
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1.16;
  letter-spacing: -3.5px;
}
.hero h1 span {
  position: relative;
  z-index: 0;
  color: var(--blue-deep);
  white-space: nowrap;
}
.hero h1 span::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: -3px;
  right: -5px;
  bottom: 4px;
  height: 18px;
  border-radius: 50%;
  background: linear-gradient(90deg, rgba(125,224,240,.38), rgba(128,224,239,.9));
  transform: rotate(-1deg);
}
.hero-lead {
  max-width: 570px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 2;
}
.hero-actions { margin-top: 31px; display: flex; align-items: center; gap: 22px; }
.primary-button, .secondary-button, .next-button {
  border: 0;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease;
}
.primary-button {
  min-height: 55px;
  padding: 0 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  border: 2px solid var(--ink);
  border-radius: 16px;
  color: var(--ink);
  background: linear-gradient(135deg, var(--cyan), var(--aqua));
  font-weight: 900;
  box-shadow: 6px 7px 0 var(--ink);
}
.primary-button svg { width: 20px; fill: none; stroke: currentColor; stroke-width: 2.3; stroke-linecap: round; stroke-linejoin: round; }
.primary-button:hover { transform: translate(-2px, -2px); box-shadow: 8px 9px 0 var(--ink); }
.primary-button:active { transform: translate(3px, 3px); box-shadow: 3px 4px 0 var(--ink); }
.privacy-note { color: var(--blue); font-size: 12px; font-weight: 700; }
.privacy-note span { color: var(--pink); }
.hero-points { margin-top: 32px; display: flex; flex-wrap: wrap; gap: 17px; color: var(--ink-soft); font-size: 12px; font-weight: 700; }
.hero-points span { display: flex; align-items: center; gap: 6px; }
.hero-points i { width: 19px; height: 19px; display: grid; place-items: center; border-radius: 50%; background: var(--aqua-light); color: var(--blue-deep); font-size: 11px; font-style: normal; }

.hero-art {
  position: relative;
  min-height: 600px;
  display: grid;
  place-items: center;
}
.hero-art::before {
  content: "";
  position: absolute;
  width: 480px;
  height: 480px;
  border: 2px dashed rgba(65, 124, 199, .24);
  border-radius: 50%;
  animation: spin 45s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.anime-girl { position: relative; z-index: 2; width: min(520px, 100%); height: auto; filter: drop-shadow(0 30px 24px rgba(35, 93, 148, .14)); }
.orbit { position: absolute; border-radius: 50%; border: 2px solid rgba(125, 224, 240, .35); }
.orbit--one { width: 430px; height: 260px; transform: rotate(-20deg); }
.orbit--two { width: 350px; height: 510px; transform: rotate(32deg); }
.spark { position: absolute; z-index: 3; color: var(--blue); animation: float 3s ease-in-out infinite; }
.spark--one { top: 80px; right: 60px; font-size: 34px; }
.spark--two { top: 250px; left: 7px; color: var(--pink); font-size: 28px; animation-delay: -.8s; }
.spark--three { bottom: 78px; right: 30px; color: var(--yellow); font-size: 25px; animation-delay: -1.7s; }
@keyframes float { 50% { transform: translateY(-10px) rotate(8deg); } }
.speech-bubble {
  position: absolute;
  z-index: 4;
  top: 45px;
  left: 30px;
  padding: 13px 18px;
  border: 2px solid var(--ink);
  border-radius: 18px 18px 18px 3px;
  background: var(--white);
  box-shadow: 5px 6px 0 rgba(23, 59, 94, .12);
  transform: rotate(-3deg);
}
.speech-bubble span, .speech-bubble strong { display: block; }
.speech-bubble span { color: var(--blue); font-size: 10px; font-weight: 800; }
.speech-bubble strong { margin-top: 2px; font-size: 13px; }
.art-tag {
  position: absolute;
  z-index: 4;
  min-width: 116px;
  padding: 13px 15px;
  border: 1.5px solid var(--cyan);
  border-radius: 15px;
  background: rgba(255, 255, 255, .9);
  box-shadow: var(--shadow-soft);
}
.art-tag span { float: right; color: var(--aqua); font-size: 11px; font-weight: 900; }
.art-tag strong, .art-tag small { display: block; }
.art-tag strong { font-size: 14px; }
.art-tag small { margin-top: 2px; color: var(--blue); font-size: 10px; font-weight: 700; }
.art-tag--left { bottom: 91px; left: -2px; transform: rotate(2deg); }
.art-tag--right { top: 205px; right: -3px; transform: rotate(-2deg); }

.about-section {
  padding: 90px max(24px, calc((100% - 1180px) / 2)) 100px;
  background: var(--white);
  border-top: 1px solid var(--aqua-light);
  text-align: center;
}
.section-heading > span, .result-section-heading > span { color: var(--blue); font-size: 11px; font-weight: 900; letter-spacing: 2.5px; }
.section-heading h2 { margin: 12px 0 10px; font-size: clamp(28px, 4vw, 40px); letter-spacing: -1.5px; }
.section-heading p { margin: 0; color: var(--ink-soft); font-size: 14px; }
.dimension-grid { margin: 49px 0 43px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.dimension-card {
  position: relative;
  padding: 28px 21px 26px;
  border: 1.5px solid var(--aqua-light);
  border-radius: var(--radius-lg);
  background: var(--aqua-pale);
  text-align: left;
  overflow: hidden;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.dimension-card:hover { transform: translateY(-6px); border-color: var(--cyan); box-shadow: var(--shadow-soft); }
.dimension-card > span { position: absolute; top: 19px; right: 21px; color: var(--cyan); font-size: 11px; font-weight: 900; }
.dimension-icon { width: 43px; height: 43px; display: grid; place-items: center; border: 1.5px solid var(--cyan); border-radius: 13px; color: var(--blue-deep); background: var(--white); font-size: 20px; }
.dimension-card h3 { margin: 22px 0 6px; font-size: 16px; }
.dimension-card strong { color: var(--blue); font-size: 12px; }
.dimension-card p { margin: 11px 0 0; color: var(--ink-soft); font-size: 12px; line-height: 1.7; }
.secondary-button {
  min-height: 50px;
  padding: 0 22px;
  border: 2px solid var(--cyan);
  border-radius: 15px;
  color: var(--blue-deep);
  background: var(--white);
  font-weight: 900;
  box-shadow: 4px 5px 0 var(--cyan);
}
.secondary-button:hover { transform: translateY(-2px); box-shadow: 4px 7px 0 var(--cyan); }
.secondary-button span { margin-left: 8px; }

.quiz-screen { min-height: calc(100vh - 88px); padding: 34px 24px 90px; }
.quiz-shell { width: min(860px, 100%); margin: 0 auto; }
.quiz-topline { display: flex; align-items: center; justify-content: space-between; }
.text-button { padding: 8px 0; border: 0; color: var(--ink-soft); background: none; cursor: pointer; font-size: 12px; font-weight: 800; }
.text-button:hover { color: var(--blue); }
.text-button span { margin-right: 5px; }
.question-counter { color: var(--blue); font-size: 10px; font-weight: 800; letter-spacing: 1.8px; }
.question-counter strong { color: var(--ink); font-size: 16px; }
.progress-track { position: relative; height: 9px; margin: 17px 0 42px; border: 1px solid var(--cyan); border-radius: 999px; background: var(--white); }
.progress-fill { width: 2.5%; height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--cyan), var(--aqua)); transition: width .4s ease; }
.progress-star { position: absolute; top: 50%; left: 2.5%; color: var(--blue-deep); font-size: 18px; transform: translate(-50%, -50%); transition: left .4s ease; }

.question-card {
  position: relative;
  padding: 55px 64px 43px;
  border: 2px solid var(--cyan);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, .95);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.question-card::before, .question-card::after { content: "✦"; position: absolute; color: var(--aqua-light); font-size: 65px; }
.question-card::before { top: 8px; left: 18px; }
.question-card::after { right: 18px; bottom: 4px; transform: rotate(25deg); }
.question-kicker { color: var(--blue); font-size: 11px; font-weight: 800; letter-spacing: .5px; text-align: center; }
.question-kicker span { color: var(--pink); }
.question-card h2 { max-width: 690px; min-height: 90px; margin: 23px auto 10px; display: grid; place-items: center; font-size: clamp(22px, 4vw, 31px); line-height: 1.55; letter-spacing: -.6px; text-align: center; }
.question-hint { margin: 0; color: var(--ink-soft); font-size: 12px; text-align: center; }
.answer-scale { margin-top: 40px; display: grid; grid-template-columns: 75px 1fr 75px; align-items: center; gap: 16px; }
.answer-options { display: grid; grid-template-columns: repeat(6, 1fr); gap: 11px; }
.answer-options input { position: absolute; opacity: 0; pointer-events: none; }
.answer-option {
  position: relative;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 2px solid var(--cyan);
  border-radius: 50%;
  color: var(--blue-deep);
  background: var(--aqua-pale);
  cursor: pointer;
  font-size: 13px;
  font-weight: 900;
  transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
}
.answer-number { line-height: 1; }
.answer-copy { display: none; }
.answer-option::after { content: ""; position: absolute; inset: 5px; border: 1px solid transparent; border-radius: 50%; }
.answer-option:hover { transform: translateY(-4px); background: var(--aqua-light); box-shadow: 0 7px 0 rgba(125, 224, 240, .36); }
.answer-options input:checked + .answer-option { border-color: var(--ink); color: var(--ink); background: linear-gradient(135deg, var(--cyan), var(--aqua)); box-shadow: 0 0 0 4px var(--aqua-light); transform: translateY(-3px); }
.answer-options input:checked + .answer-option::after { border-color: var(--white); }
.scale-label { color: var(--ink-soft); font-size: 10px; font-weight: 800; line-height: 1.4; }
.scale-label--right { text-align: right; }
.quiz-actions { position: relative; z-index: 1; margin-top: 48px; display: grid; grid-template-columns: 130px 1fr 130px; align-items: center; }
.back-button, .next-button { min-height: 45px; border-radius: 13px; font-size: 12px; font-weight: 900; }
.back-button { border: 1.5px solid var(--cyan); color: var(--blue-deep); background: var(--white); cursor: pointer; }
.back-button:disabled { opacity: .35; cursor: not-allowed; }
.next-button { color: var(--ink); background: linear-gradient(135deg, var(--cyan), var(--aqua)); box-shadow: 3px 4px 0 var(--ink); }
.next-button:disabled { color: var(--blue); background: var(--blue-pale); box-shadow: none; cursor: not-allowed; opacity: .6; }
.next-button:not(:disabled):hover { transform: translate(-1px, -1px); box-shadow: 4px 5px 0 var(--ink); }
.shortcut-tip { color: var(--blue); font-size: 10px; font-weight: 700; text-align: center; }
.quiz-reassurance { margin: 25px 0 0; color: var(--ink-soft); font-size: 11px; font-weight: 700; text-align: center; }
.quiz-reassurance span { color: var(--pink); }

.result-screen { min-height: 100vh; padding: 0 24px 80px; }
.result-shell { width: min(1000px, 100%); margin: 0 auto; }
.result-topbar { height: 85px; display: flex; align-items: center; justify-content: space-between; }
.brand--small { font-size: 17px; }
.brand--small .brand-mark { width: 32px; height: 32px; border-radius: 10px; box-shadow: 3px 3px 0 var(--ink); }
.brand--small .brand-mark svg { width: 21px; }
.share-button { padding: 10px 15px; border: 1.5px solid var(--cyan); border-radius: 12px; color: var(--blue-deep); background: var(--white); cursor: pointer; font-size: 11px; font-weight: 900; }
.share-button:hover { background: var(--aqua-light); }

.result-hero {
  position: relative;
  padding: 66px 70px 58px;
  border: 2px solid var(--cyan);
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg, rgba(255,255,255,.96), rgba(221,249,253,.86));
  box-shadow: var(--shadow);
  text-align: center;
  overflow: hidden;
}
.result-hero::before, .result-hero::after { content: ""; position: absolute; width: 230px; height: 230px; border: 1px solid var(--cyan); border-radius: 50%; opacity: .28; }
.result-hero::before { top: -120px; left: -70px; }
.result-hero::after { right: -90px; bottom: -150px; }
.result-stars { position: absolute; top: 24px; right: 34px; color: var(--pink); letter-spacing: 5px; }
.result-overline { margin: 0 0 19px; color: var(--blue); font-size: 10px; font-weight: 900; letter-spacing: 2.3px; }
.type-badge {
  width: fit-content;
  margin: auto;
  padding: 7px 17px;
  border: 2px solid var(--ink);
  border-radius: 11px;
  color: var(--ink);
  background: linear-gradient(135deg, var(--cyan), var(--aqua));
  box-shadow: 4px 4px 0 var(--ink);
  font-size: 19px;
  font-weight: 950;
  letter-spacing: 4px;
}
.result-hero h1 { margin: 22px 0 7px; font-size: clamp(37px, 6vw, 55px); letter-spacing: -2px; }
.result-subtitle { margin: 0; color: var(--blue); font-size: 14px; font-weight: 800; }
.result-divider { width: min(420px, 70%); height: 1px; margin: 31px auto 25px; display: grid; place-items: center; background: var(--cyan); }
.result-divider span { padding: 0 12px; color: var(--pink); background: #EEFCFF; }
.result-description { position: relative; z-index: 1; max-width: 690px; margin: auto; color: var(--ink-soft); font-size: 14px; line-height: 2; }
.boundary-note { position: relative; z-index: 1; width: fit-content; margin: 23px auto 0; padding: 9px 14px; border: 1px solid var(--cyan); border-radius: 11px; color: var(--blue-deep); background: var(--white); font-size: 11px; font-weight: 700; }

.dimension-results, .insight-grid, .result-actions { margin-top: 28px; }
.dimension-results { padding: 37px 42px 42px; border: 1.5px solid var(--aqua-light); border-radius: var(--radius-lg); background: var(--white); box-shadow: var(--shadow-soft); }
.result-section-heading { margin-bottom: 32px; }
.result-section-heading h2 { margin: 7px 0 0; font-size: 24px; }
.dimension-bars { display: grid; gap: 26px; }
.dimension-row-head { margin-bottom: 9px; display: flex; justify-content: space-between; font-size: 12px; font-weight: 800; }
.dimension-row-head span { display: flex; align-items: center; gap: 8px; }
.dimension-row-head b { color: var(--blue); font-size: 15px; }
.dimension-row-head .is-winner { color: var(--ink); }
.bar-track { position: relative; height: 16px; border-radius: 999px; background: var(--blue-pale); overflow: hidden; }
.bar-fill { height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--cyan), var(--aqua)); transition: width 1s cubic-bezier(.2,.75,.3,1); }
.bar-center { position: absolute; top: 0; bottom: 0; left: 50%; width: 2px; background: var(--white); transform: translateX(-1px); }

.insight-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.insight-card { position: relative; min-height: 255px; padding: 29px 27px; border: 1.5px solid var(--aqua-light); border-radius: var(--radius-lg); background: var(--white); box-shadow: var(--shadow-soft); }
.insight-card--strength { border-top: 5px solid var(--cyan); }
.insight-card--growth { border-top: 5px solid var(--pink); }
.insight-card--energy { border-top: 5px solid var(--yellow); }
.insight-number { position: absolute; top: 24px; right: 25px; color: var(--aqua); font-size: 11px; font-weight: 900; }
.insight-icon { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 12px; color: var(--blue-deep); background: var(--aqua-light); font-size: 18px; }
.insight-card--growth .insight-icon { color: #B94E82; background: #FFEAF4; }
.insight-card--energy .insight-icon { color: #9C6A16; background: #FFF7C8; }
.insight-card h2 { margin: 17px 0 14px; font-size: 18px; }
.insight-card ul { margin: 0; padding: 0; list-style: none; }
.insight-card li { position: relative; margin-top: 9px; padding-left: 17px; color: var(--ink-soft); font-size: 12px; line-height: 1.6; }
.insight-card li::before { content: "✦"; position: absolute; left: 0; top: 1px; color: var(--cyan); font-size: 8px; }
.insight-card--growth li::before { color: var(--pink); }
.insight-card p { margin: 0; color: var(--ink-soft); font-size: 12px; line-height: 1.85; }

.result-actions { padding: 30px 34px; display: flex; align-items: center; justify-content: space-between; gap: 25px; border: 1.5px dashed var(--cyan); border-radius: var(--radius-lg); background: var(--aqua-light); }
.result-actions p { max-width: 470px; margin: 0; color: var(--ink-soft); font-size: 12px; line-height: 1.7; }
.result-actions > div { display: flex; gap: 13px; flex-shrink: 0; }
.result-actions .primary-button, .result-actions .secondary-button { min-height: 46px; font-size: 12px; box-shadow: 3px 4px 0 var(--ink); }
.result-actions .secondary-button { box-shadow: 3px 4px 0 var(--cyan); }
.disclaimer { max-width: 760px; margin: 28px auto 0; color: var(--blue); font-size: 10px; line-height: 1.7; text-align: center; }

.toast { position: fixed; z-index: 20; left: 50%; bottom: 30px; padding: 12px 19px; border: 1.5px solid var(--cyan); border-radius: 13px; color: var(--ink); background: var(--white); box-shadow: var(--shadow-soft); font-size: 12px; font-weight: 800; opacity: 0; pointer-events: none; transform: translate(-50%, 18px); transition: opacity .25s ease, transform .25s ease; }
.toast--visible { opacity: 1; transform: translate(-50%, 0); }

.site-footer { min-height: 100px; padding: 30px 24px; display: flex; align-items: center; justify-content: center; gap: 28px; border-top: 1px solid var(--aqua-light); color: var(--blue); background: var(--white); font-size: 11px; }
.site-footer span { font-weight: 900; }
.site-footer i { color: var(--pink); font-style: normal; }
.site-footer p { margin: 0; letter-spacing: 1px; }
body:not(.home-active) > .site-header, body:not(.home-active) > .site-footer { display: none; }

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; padding-top: 35px; text-align: center; }
  .hero-copy { display: flex; flex-direction: column; align-items: center; padding-bottom: 0; }
  .hero-art { min-height: 570px; width: min(570px, 100%); margin: 0 auto; }
  .dimension-grid { grid-template-columns: repeat(2, 1fr); }
  .insight-grid { grid-template-columns: 1fr 1fr; }
  .insight-card--energy { grid-column: 1 / -1; min-height: 0; }
  .result-actions { flex-direction: column; text-align: center; }
}

@media (max-width: 640px) {
  .site-header {
    width: calc(100% - 32px);
    min-height: calc(72px + env(safe-area-inset-top));
    height: auto;
    padding-top: env(safe-area-inset-top);
  }
  .brand { font-size: 17px; }
  .brand small, .header-nav a { display: none; }
  .header-nav { gap: 0; }
  .nav-chip { min-height: 44px; display: inline-flex; align-items: center; padding-inline: 14px; }
  .hero { width: calc(100% - 32px); min-height: auto; margin: 21px auto 45px; gap: 8px; }
  .hero h1 { margin-top: 21px; font-size: clamp(34px, 10vw, 39px); letter-spacing: -2.4px; line-height: 1.2; }
  .hero h1 span { white-space: normal; }
  .hero-lead { font-size: 14px; line-height: 1.85; }
  .hero-actions { width: 100%; flex-direction: column; gap: 17px; }
  .hero-actions .primary-button { width: min(240px, 100%); min-height: 56px; }
  .hero-points { justify-content: center; gap: 10px 16px; }
  .hero-art { min-height: 430px; width: 100%; overflow: hidden; }
  .hero-art::before { width: 330px; height: 330px; }
  .anime-girl { width: 390px; max-width: 108%; }
  .orbit--one { width: 340px; height: 205px; }
  .orbit--two { width: 270px; height: 390px; }
  .speech-bubble { top: 13px; left: 4px; padding: 11px 14px; }
  .art-tag { min-width: 104px; padding: 10px 12px; }
  .art-tag--left { left: 2px; bottom: 35px; }
  .art-tag--right { right: 2px; top: 140px; }
  .spark--one { top: 49px; right: 10px; }
  .about-section { padding: 62px 16px 70px; }
  .section-heading h2 { font-size: 29px; line-height: 1.35; }
  .dimension-grid { grid-template-columns: 1fr; margin-top: 35px; }
  .dimension-card { padding: 25px 20px 23px; }
  .about-section .secondary-button { width: min(260px, 100%); min-height: 52px; }

  .quiz-screen {
    min-height: 100dvh;
    padding: calc(10px + env(safe-area-inset-top)) 10px calc(24px + env(safe-area-inset-bottom));
    background: linear-gradient(180deg, var(--aqua-pale), var(--blue-pale));
  }
  .quiz-shell { width: 100%; }
  .quiz-topline { min-height: 38px; padding-inline: 3px; }
  .text-button { min-height: 38px; }
  .question-counter { letter-spacing: 1.2px; }
  .progress-track { height: 8px; margin: 5px 3px 12px; }
  .question-card {
    padding: 18px 12px 16px;
    border-width: 1.5px;
    border-radius: 19px;
    box-shadow: 0 12px 30px rgba(35, 93, 148, .12);
    overflow: visible;
  }
  .question-card::before { top: 0; left: 8px; font-size: 36px; opacity: .65; }
  .question-card::after { display: none; }
  .question-kicker { padding-inline: 18px; font-size: 9px; line-height: 1.4; }
  .question-card h2 {
    min-height: 0;
    margin: 13px auto 6px;
    font-size: clamp(18px, 5.2vw, 21px);
    line-height: 1.45;
    letter-spacing: -.3px;
  }
  .question-hint { font-size: 10px; }
  .answer-scale {
    margin-top: 15px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }
  .answer-options {
    width: 100%;
    max-width: 330px;
    margin: 0 auto;
    grid-column: 1 / -1;
    grid-row: 1;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: clamp(4px, 1.6vw, 8px);
  }
  .scale-label {
    display: block;
    grid-row: 2;
    margin-top: 8px;
    color: var(--blue-deep);
    font-size: 9px;
    letter-spacing: .2px;
  }
  .scale-label--left { grid-column: 1; text-align: left; }
  .scale-label--right { grid-column: 2; text-align: right; }
  .answer-option {
    width: 100%;
    max-width: 44px;
    min-height: 0;
    aspect-ratio: 1;
    justify-self: center;
    display: grid;
    place-items: center;
    padding: 0;
    border-width: 2px;
    border-radius: 50%;
    font-size: 12px;
  }
  .answer-number {
    width: auto;
    height: auto;
    display: inline;
    border: 0;
    background: transparent;
    font-size: inherit;
  }
  .answer-copy { display: none; }
  .answer-option::after { inset: 4px; border-radius: 50%; }
  .answer-option:hover { transform: none; box-shadow: none; }
  .answer-options input:checked + .answer-option { transform: none; box-shadow: 0 0 0 3px var(--aqua-light); }
  .quiz-actions { margin-top: 15px; grid-template-columns: 1fr 1fr; gap: 8px; }
  .back-button, .next-button { min-height: 44px; border-radius: 11px; }
  .shortcut-tip { display: none; }
  .quiz-reassurance { margin-top: 11px; padding-inline: 12px; font-size: 10px; line-height: 1.5; }

  .result-screen { min-height: 100dvh; padding: 0 12px calc(45px + env(safe-area-inset-bottom)); }
  .result-topbar { min-height: calc(68px + env(safe-area-inset-top)); height: auto; padding-top: env(safe-area-inset-top); }
  .share-button { min-height: 44px; padding-inline: 13px; }
  .result-hero { padding: 46px 18px 35px; border-radius: 23px; }
  .result-stars { top: 17px; right: 18px; }
  .result-overline { margin-bottom: 16px; font-size: 8px; letter-spacing: 1.7px; }
  .type-badge { font-size: 17px; }
  .result-hero h1 { margin-top: 19px; font-size: clamp(36px, 11vw, 43px); }
  .result-subtitle { font-size: 12px; }
  .result-divider { width: 86%; margin: 27px auto 21px; }
  .result-description { font-size: 13px; line-height: 1.9; text-align: left; }
  .boundary-note { width: 100%; padding: 10px 12px; line-height: 1.6; text-align: left; }
  .dimension-results { margin-top: 16px; padding: 27px 16px 30px; border-radius: 20px; }
  .result-section-heading { margin-bottom: 26px; }
  .result-section-heading > span { font-size: 9px; letter-spacing: 1.7px; }
  .result-section-heading h2 { font-size: 21px; }
  .dimension-bars { gap: 23px; }
  .dimension-row-head { font-size: 10px; }
  .dimension-row-head b { font-size: 13px; }
  .bar-track { height: 14px; }
  .insight-grid { grid-template-columns: 1fr; }
  .insight-card--energy { grid-column: auto; }
  .insight-card { min-height: 0; padding: 25px 22px; border-radius: 20px; }
  .result-actions { padding: 25px 18px; }
  .result-actions > div { width: 100%; flex-direction: column; }
  .result-actions button { width: 100%; min-height: 50px; }
  .disclaimer { padding-inline: 8px; }
  .toast { bottom: calc(18px + env(safe-area-inset-bottom)); max-width: calc(100% - 32px); text-align: center; }
  .site-footer { padding-bottom: calc(30px + env(safe-area-inset-bottom)); flex-direction: column; gap: 7px; }
}

@media (max-width: 360px) {
  .site-header { width: calc(100% - 24px); }
  .brand { gap: 8px; font-size: 15px; }
  .brand-mark { width: 35px; height: 35px; }
  .nav-chip { padding-inline: 11px; font-size: 11px; }
  .hero { width: calc(100% - 24px); margin-top: 15px; }
  .eyebrow { padding-right: 12px; font-size: 10px; letter-spacing: 0; }
  .hero h1 { font-size: 33px; letter-spacing: -2px; }
  .hero-lead { font-size: 13px; }
  .hero-points { gap: 9px 10px; font-size: 10px; }
  .hero-art { min-height: 395px; }
  .anime-girl { width: 355px; }
  .art-tag { min-width: 96px; padding: 9px 10px; }
  .art-tag--right { top: 128px; }
  .speech-bubble strong { font-size: 12px; }
  .question-card { padding: 16px 9px 13px; }
  .question-kicker { font-size: 8px; }
  .question-card h2 { margin-top: 10px; font-size: 18px; }
  .answer-scale { margin-top: 12px; }
  .answer-options { gap: 4px; }
  .answer-option { font-size: 11px; }
  .answer-number { font-size: inherit; }
  .quiz-actions { margin-top: 12px; }
  .back-button, .next-button { min-height: 42px; }
  .result-screen { padding-inline: 9px; }
  .result-topbar .brand { font-size: 14px; }
  .share-button { padding-inline: 10px; }
  .result-hero { padding-inline: 15px; }
  .dimension-row-head { font-size: 9px; }
}

@media (max-width: 640px) and (max-height: 620px) {
  .quiz-reassurance { display: none; }
  .question-kicker { display: none; }
  .question-card h2 { margin-top: 2px; }
}

@media (hover: none) {
  .primary-button:hover, .secondary-button:hover, .dimension-card:hover, .next-button:not(:disabled):hover {
    transform: none;
  }
}

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