:root {
  color-scheme: light;
  --pps-ink: #122033;
  --pps-muted: #5e7187;
  --pps-line: rgba(17, 36, 63, 0.12);
  --pps-paper: #ffffff;
  --pps-bg: #f4f7fb;
  --pps-surface: #eef4fb;
  --pps-accent: #0d75b8;
  --pps-accent-strong: #0b4d86;
  --pps-accent-soft: rgba(13, 117, 184, 0.12);
  --pps-energy: #f3aa2b;
  --pps-emerald: #0f9b8e;
  --pps-shadow: 0 24px 68px rgba(11, 33, 62, 0.12);
  --pps-radius-xl: 32px;
  --pps-radius-lg: 24px;
  --pps-font: "Outfit", "Satoshi", "Noto Sans JP", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--pps-ink);
  background: var(--pps-bg);
  font-family: var(--pps-font);
  line-height: 1.7;
  overflow-x: hidden;
}
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
a { color: inherit; }
svg {
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}
[hidden] { display: none !important; }

.shell {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.shell--narrow {
  width: min(760px, calc(100% - 40px));
}

.pps-app {
  min-height: 100dvh;
  background:
    linear-gradient(90deg, rgba(13, 117, 184, 0.04) 1px, transparent 1px),
    linear-gradient(rgba(13, 117, 184, 0.04) 1px, transparent 1px),
    radial-gradient(circle at top right, rgba(80, 184, 255, 0.16), transparent 34rem),
    linear-gradient(180deg, #f7fbff, #f4f7fb 28rem, #f8fafc);
  background-size: 54px 54px, 54px 54px, auto, auto;
}

.hero {
  position: relative;
  padding: 104px 0 76px;
  overflow: hidden;
}

.hero__gridline {
  position: absolute;
  inset: 0;
  opacity: .32;
  pointer-events: none;
  background-image: radial-gradient(rgba(18, 32, 51, 0.08) 0.65px, transparent 0.65px);
  background-size: 18px 18px;
  mask-image: linear-gradient(to bottom, #000 0%, transparent 76%);
}

.hero__layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(400px, .98fr);
  align-items: center;
  gap: 54px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  color: var(--pps-accent-strong);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 13px;
  border: 1px solid rgba(13, 117, 184, 0.15);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.9);
}

.eyebrow span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--pps-accent);
  box-shadow: 0 0 0 6px rgba(13,117,184,.12);
}

.hero h1 {
  margin: 0;
  font-size: clamp(2.8rem, 7vw, 5.8rem);
  font-weight: 950;
  letter-spacing: -.085em;
  line-height: .95;
}

.hero h1 span { display: block; }

.hero__accent {
  margin: 20px 0 0;
  color: var(--pps-accent-strong);
  font-size: clamp(1.2rem, 2.4vw, 1.72rem);
  font-weight: 900;
  letter-spacing: -.04em;
}

.hero__lead {
  max-width: 43rem;
  margin: 22px 0 0;
  color: #26405b;
  font-size: 1.08rem;
  font-weight: 700;
}

.hero__detail {
  max-width: 43rem;
  margin: 16px 0 0;
  color: var(--pps-muted);
  font-size: .96rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 900;
  letter-spacing: -.02em;
  text-decoration: none;
  transition: transform .28s cubic-bezier(.16,1,.3,1), background .28s cubic-bezier(.16,1,.3,1), border-color .28s cubic-bezier(.16,1,.3,1);
}

.button:active { transform: translateY(1px) scale(.99); }
.button svg { width: 18px; height: 18px; }

.button--primary {
  color: #fff;
  background: var(--pps-accent);
  box-shadow: 0 18px 36px rgba(13, 117, 184, 0.22);
}

.button--primary:hover { background: var(--pps-accent-strong); }

.button--large {
  min-height: 58px;
  padding: 0 26px;
}

.button--ghost {
  color: #24415c;
  background: #fff;
  border-color: var(--pps-line);
}

.button--ghost:hover {
  color: var(--pps-accent-strong);
  border-color: rgba(13,117,184,.28);
}

.privacy-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: var(--pps-muted);
  font-size: .9rem;
  font-weight: 700;
}

.privacy-note svg { width: 18px; height: 18px; }

.power-scene {
  position: relative;
  min-height: 548px;
  border-radius: 44px;
  background:
    radial-gradient(circle at 58% 42%, rgba(255,255,255,.98) 0 8rem, transparent 8.1rem),
    radial-gradient(circle at 58% 46%, rgba(80,184,255,.18), transparent 21rem),
    linear-gradient(145deg, rgba(255,255,255,.88), rgba(236,245,255,.85));
  border: 1px solid rgba(13, 117, 184, 0.14);
  box-shadow: var(--pps-shadow), inset 0 1px 0 rgba(255,255,255,.88);
  overflow: hidden;
}

.power-scene__ring {
  position: absolute;
  border: 1px solid rgba(13,117,184,.16);
  border-radius: 50%;
}

.power-scene__ring--one {
  inset: 64px 54px;
  transform: rotate(-10deg);
}

.power-scene__ring--two {
  inset: 106px 98px;
  border-style: dashed;
  transform: rotate(19deg);
}

.power-station {
  position: absolute;
  border-radius: 28px;
  background: linear-gradient(155deg, #f6fbff, #d9e7f6 54%, #b3cae0);
  box-shadow: 0 22px 40px rgba(20, 51, 87, 0.18);
}

.power-station::before {
  position: absolute;
  inset: 14px;
  border-radius: 20px;
  border: 1px solid rgba(17, 36, 63, 0.1);
  content: "";
}

.power-station i,
.power-station b {
  position: absolute;
  display: block;
  background: #203852;
}

.power-station__screen {
  position: absolute;
  display: inline-flex;
  min-height: 34px;
  padding: 6px 12px;
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  color: #0f3f62;
  background: rgba(255,255,255,.85);
  box-shadow: 0 8px 18px rgba(12, 33, 62, 0.09);
  font-size: .78rem;
  font-weight: 900;
}

.power-station--main {
  top: 126px;
  left: 108px;
  width: 232px;
  height: 178px;
  transform: rotate(-7deg);
}

.power-station--main i {
  top: 38px;
  left: 28px;
  width: 76px;
  height: 50px;
  border-radius: 14px;
  box-shadow: inset 0 0 0 4px #65d7d3;
}

.power-station--main b {
  top: 46px;
  right: 32px;
  width: 56px;
  height: 8px;
  border-radius: 999px;
  box-shadow: 0 18px 0 #203852, 0 36px 0 #203852;
}

.power-station--main .power-station__screen {
  bottom: 24px;
  left: 24px;
}

.power-station--mini {
  right: 74px;
  bottom: 112px;
  width: 162px;
  height: 124px;
  background: linear-gradient(155deg, #fff6df, #f5d28f 55%, #e8b04e);
  transform: rotate(8deg);
}

.power-station--mini i {
  top: 30px;
  left: 24px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  box-shadow: inset 0 0 0 4px #203852;
  background: transparent;
}

.power-station--mini b {
  top: 40px;
  right: 24px;
  width: 42px;
  height: 8px;
  border-radius: 999px;
  box-shadow: 0 16px 0 #203852;
}

.power-station--mini .power-station__screen {
  right: 16px;
  bottom: 16px;
  color: #7b4b09;
}

.scene-chip {
  position: absolute;
  z-index: 2;
  display: inline-grid;
  min-height: 31px;
  padding: 6px 12px;
  border: 1px solid rgba(13,117,184,.15);
  border-radius: 999px;
  place-items: center;
  background: rgba(255,255,255,.84);
  box-shadow: 0 10px 22px rgba(15,23,42,.09);
  font-size: .66rem;
  font-weight: 900;
  letter-spacing: .05em;
}

.scene-chip--camp {
  top: 52px;
  left: 34px;
  color: #0f9b8e;
  transform: rotate(-7deg);
}

.scene-chip--backup {
  top: 60px;
  right: 34px;
  color: var(--pps-accent-strong);
  transform: rotate(7deg);
}

.scene-chip--home {
  right: 122px;
  bottom: 42px;
  color: #875106;
  transform: rotate(-4deg);
}

.scene-panel {
  position: absolute;
  right: 42px;
  top: 148px;
  width: 176px;
  padding: 18px 18px 16px;
  border: 1px solid rgba(13,117,184,.14);
  border-radius: 22px;
  background: rgba(255,255,255,.84);
  box-shadow: 0 16px 28px rgba(17, 36, 63, 0.1);
}

.scene-panel p {
  margin: 0 0 12px;
  color: var(--pps-accent-strong);
  font-size: .74rem;
  font-weight: 900;
  letter-spacing: .14em;
}

.scene-panel div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0;
  color: #38506a;
  font-size: .76rem;
  font-weight: 700;
}

.scene-panel b {
  display: block;
  width: 70px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, #65d7d3, #0d75b8);
  box-shadow: 0 14px 0 rgba(13,117,184,.16);
}

.scene-panel div:nth-child(3) b { width: 84px; background: linear-gradient(90deg, #0d75b8, #3aa6e6); }
.scene-panel div:nth-child(4) b { width: 62px; background: linear-gradient(90deg, #f3aa2b, #f4c86b); }

.cable {
  position: absolute;
  width: 118px;
  height: 118px;
  border: 3px solid transparent;
  border-top-color: rgba(13,117,184,.36);
  border-right-color: rgba(13,117,184,.36);
  border-radius: 50%;
}

.cable--left {
  left: 42px;
  bottom: 44px;
  transform: rotate(24deg);
}

.cable--right {
  right: 128px;
  top: 84px;
  transform: rotate(208deg);
}

.how,
.comparison-guide {
  padding: 28px 0 0;
}

.how__grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: 28px;
  align-items: start;
}

.how h2,
.comparison-guide h2 {
  margin: 0;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 900;
  letter-spacing: -.05em;
  line-height: 1.1;
}

.how h2 span,
.comparison-guide h2 span { display: block; }

.steps {
  display: grid;
  gap: 14px;
}

.step {
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr);
  gap: 16px;
  padding: 18px 18px 18px 16px;
  border: 1px solid var(--pps-line);
  border-radius: 22px;
  background: rgba(255,255,255,.78);
  box-shadow: 0 14px 28px rgba(17, 36, 63, 0.06);
}

.step span {
  display: grid;
  width: 52px;
  height: 52px;
  border-radius: 18px;
  place-items: center;
  color: var(--pps-accent-strong);
  background: linear-gradient(145deg, rgba(13,117,184,.12), rgba(13,117,184,.02));
  font-size: .9rem;
  font-weight: 900;
}

.step h3 {
  margin: 2px 0 4px;
  font-size: 1.02rem;
  font-weight: 800;
}

.step p,
.comparison-guide__lead,
.comparison-guide__content p {
  margin: 0;
  color: var(--pps-muted);
  font-size: .95rem;
}

.how__action {
  display: flex;
  justify-content: center;
  margin-top: 26px;
}

.quiz {
  padding: 56px 0 0;
}

.quiz-progress {
  margin-bottom: 18px;
}

.quiz-progress__labels {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
  color: #48607b;
  font-size: .9rem;
  font-weight: 800;
}

.progress-track {
  position: relative;
  height: 12px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(13,117,184,.1);
}

.progress-track span {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, #65d7d3, #0d75b8);
  box-shadow: 0 0 18px rgba(13,117,184,.18);
}

.question-panel,
.result-hero,
.insight-block,
.model-comparison,
.disclaimer,
.comparison-guide__inner {
  border: 1px solid var(--pps-line);
  border-radius: var(--pps-radius-xl);
  background: rgba(255,255,255,.82);
  box-shadow: 0 18px 46px rgba(17,36,63,.08);
}

.question-panel {
  padding: 28px;
}

.question-panel__kicker {
  margin: 0 0 10px;
  color: var(--pps-accent-strong);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .16em;
}

.question-panel h2 {
  margin: 0;
  font-size: clamp(1.52rem, 4.8vw, 2.2rem);
  font-weight: 900;
  letter-spacing: -.05em;
  line-height: 1.24;
}

.answer-list {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.answer {
  display: flex;
  width: 100%;
  min-height: 58px;
  padding: 14px 18px;
  border: 1px solid rgba(13,117,184,.14);
  border-radius: 18px;
  align-items: center;
  text-align: left;
  color: #21384f;
  background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(240,247,255,.92));
  box-shadow: 0 12px 24px rgba(17,36,63,.06);
  cursor: pointer;
  font-size: .97rem;
  font-weight: 800;
  transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease;
}

.answer:hover {
  transform: translateY(-1px);
  border-color: rgba(13,117,184,.3);
  box-shadow: 0 16px 30px rgba(17,36,63,.08);
}

.back-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  padding: 0;
  border: 0;
  color: var(--pps-muted);
  background: transparent;
  cursor: pointer;
  font-size: .92rem;
  font-weight: 800;
}

.back-button svg { width: 18px; height: 18px; }

.results {
  padding: 56px 0 0;
}

.result-hero {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 24px;
  padding: 26px;
}

.score-wrap {
  display: grid;
  place-items: center;
}

.score-ring {
  width: 220px;
  height: 220px;
  color: var(--pps-accent);
}

.score-ring__track,
.score-ring__value {
  fill: none;
  stroke-width: 18;
}

.score-ring__track {
  stroke: rgba(13,117,184,.1);
}

.score-ring__value {
  stroke: url(#scoreGradient);
  stroke: currentColor;
  stroke-linecap: round;
  stroke-dasharray: 603;
  stroke-dashoffset: 603;
  transform: rotate(-90deg);
  transform-origin: 120px 120px;
}

.score-center {
  position: absolute;
  display: grid;
  place-items: center;
  text-align: center;
}

.score-center span,
.score-center em {
  color: var(--pps-muted);
  font-size: .77rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.score-center strong {
  margin: 6px 0;
  font-size: 3rem;
  line-height: 1;
  letter-spacing: -.08em;
}

.score-center small {
  font-size: 1.05rem;
  letter-spacing: 0;
}

.result-copy__title {
  margin: 0;
  color: var(--pps-accent-strong);
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 900;
  letter-spacing: -.05em;
  line-height: 1.2;
}

.result-copy__description {
  margin: 12px 0 0;
  color: #35506d;
  font-size: 1rem;
}

.model-result {
  margin-top: 20px;
  padding: 20px;
  border: 1px solid rgba(13,117,184,.12);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(247,251,255,.95), rgba(235,244,252,.92));
}

.model-badge {
  display: inline-flex;
  min-height: 30px;
  margin: 0;
  padding: 6px 12px;
  border-radius: 999px;
  align-items: center;
  color: var(--pps-accent-strong);
  background: rgba(255,255,255,.9);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .1em;
}

.model-result h3 {
  margin: 12px 0 12px;
  font-size: clamp(1.3rem, 3.2vw, 1.8rem);
  font-weight: 900;
  letter-spacing: -.04em;
  line-height: 1.25;
}

.model-visual {
  position: relative;
  height: 172px;
  margin-bottom: 14px;
  overflow: hidden;
  border-radius: 22px;
  background:
    radial-gradient(circle at 72% 18%, rgba(255,255,255,.8), transparent 16rem),
    linear-gradient(145deg, #eef6ff, #dceaf7);
  border: 1px solid rgba(13,117,184,.12);
}

.model-visual span,
.model-visual i,
.model-visual b,
.model-visual em {
  position: absolute;
  display: block;
}

.model-visual span {
  left: 34px;
  top: 34px;
  width: 136px;
  height: 96px;
  border-radius: 22px;
  background: linear-gradient(155deg, #f6fbff, #d6e5f2 55%, #aec5db);
  box-shadow: 0 18px 32px rgba(21, 46, 77, 0.14);
}

.model-visual span::before {
  position: absolute;
  inset: 12px;
  border-radius: 16px;
  border: 1px solid rgba(17,36,63,.1);
  content: "";
}

.model-visual i {
  top: 58px;
  left: 58px;
  width: 42px;
  height: 28px;
  border-radius: 10px;
  box-shadow: inset 0 0 0 4px #65d7d3;
}

.model-visual b {
  right: 36px;
  bottom: 38px;
  width: 86px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, #0d75b8, #65d7d3);
  box-shadow: 0 -22px 0 rgba(13,117,184,.22), 0 22px 0 rgba(243,170,43,.24);
}

.model-visual em {
  right: 28px;
  top: 30px;
  min-height: 30px;
  padding: 6px 12px;
  border-radius: 999px;
  color: var(--pps-accent-strong);
  background: rgba(255,255,255,.92);
  font-size: .72rem;
  font-style: normal;
  font-weight: 900;
  letter-spacing: .08em;
}

.model-visual[data-model="compact_300"] span {
  left: 44px;
  top: 42px;
  width: 116px;
  height: 84px;
  background: linear-gradient(155deg, #fff6df, #f4d08c 55%, #e3aa4c);
}

.model-visual[data-model="compact_300"] i {
  top: 65px;
  left: 68px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: transparent;
  box-shadow: inset 0 0 0 4px #203852;
}

.model-visual[data-model="compact_300"] em::before { content: "300Wh級"; }
.model-visual[data-model="camp_1kwh"] em::before { content: "1000Wh級"; }
.model-visual[data-model="fast_backup_1kwh"] em::before { content: "UPS寄り"; }
.model-visual[data-model="home_backup_2kwh"] em::before { content: "2000Wh級"; }
.model-visual[data-model="no_need"] em::before { content: "WAIT"; }

.model-visual[data-model="camp_1kwh"] b {
  width: 96px;
  background: linear-gradient(90deg, #0f9b8e, #65d7d3);
}

.model-visual[data-model="fast_backup_1kwh"] span {
  width: 152px;
  height: 104px;
}

.model-visual[data-model="fast_backup_1kwh"] b {
  background: linear-gradient(90deg, #0d75b8, #2f9af0);
  box-shadow: 0 -22px 0 rgba(13,117,184,.26), 0 22px 0 rgba(13,117,184,.12);
}

.model-visual[data-model="home_backup_2kwh"] span {
  left: 28px;
  width: 176px;
  height: 112px;
}

.model-visual[data-model="home_backup_2kwh"] b {
  width: 104px;
  background: linear-gradient(90deg, #f3aa2b, #f0c96d);
}

.model-visual[data-model="no_need"] {
  background:
    radial-gradient(circle at 72% 18%, rgba(255,255,255,.6), transparent 16rem),
    linear-gradient(145deg, #f4f7fb, #e6edf6);
}

.model-visual[data-model="no_need"] span,
.model-visual[data-model="no_need"] i,
.model-visual[data-model="no_need"] b {
  opacity: .62;
  filter: saturate(.65);
}

.model-result > p:last-of-type,
.comparison-guide__content h3 + p {
  color: #35506d;
}

.model-result ul,
.insight-list {
  display: grid;
  gap: 10px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.model-result li,
.insight-list li {
  position: relative;
  padding-left: 24px;
  color: #29435f;
  font-size: .95rem;
  font-weight: 700;
}

.model-result li::before,
.insight-list li::before {
  position: absolute;
  left: 0;
  top: .36rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--pps-accent);
  content: "";
}

.result-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.result-links a {
  display: inline-flex;
  min-height: 46px;
  padding: 0 16px;
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  font-size: .88rem;
  font-weight: 800;
  text-decoration: none;
}

.result-links .official {
  color: #fff;
  background: linear-gradient(135deg, var(--pps-accent), var(--pps-accent-strong));
  box-shadow: 0 12px 24px rgba(13,117,184,.18);
}

.result-links .amazon {
  color: #6d540e;
  background: linear-gradient(135deg, #fde8b5, #f4cd66);
}

.result-links .rakuten {
  color: #8a2436;
  background: linear-gradient(135deg, #ffd9df, #ffc3cf);
}

.result-links .article {
  color: #26405b;
  background: #fff;
  border: 1px solid rgba(13,117,184,.12);
}

.low-score-guide {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: 18px;
  color: #5b6778;
  background: rgba(255,255,255,.84);
}

.low-score-guide svg {
  width: 20px;
  height: 20px;
  flex: none;
}

.low-score-guide p { margin: 0; font-size: .92rem; }

.insight-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.insight-block {
  padding: 22px;
}

.insight-block__heading {
  display: flex;
  align-items: center;
  gap: 14px;
}

.insight-block__heading p {
  margin: 0 0 2px;
  color: var(--pps-muted);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .14em;
}

.insight-block__heading h3 {
  margin: 0;
  font-size: 1.14rem;
  font-weight: 900;
  letter-spacing: -.03em;
}

.insight-icon {
  display: grid;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  place-items: center;
}

.insight-icon--positive {
  color: #0f9b8e;
  background: rgba(15,155,142,.12);
}

.insight-icon--caution {
  color: #d97c00;
  background: rgba(243,170,43,.16);
}

.insight-icon svg { width: 24px; height: 24px; }

.model-comparison,
.comparison-guide__inner,
.disclaimer {
  padding: 24px;
  margin-top: 18px;
}

.model-comparison__heading h2,
.comparison-guide__inner h2 {
  margin: 0;
  font-size: clamp(1.48rem, 3vw, 2.05rem);
  font-weight: 900;
  letter-spacing: -.045em;
  line-height: 1.2;
}

.model-comparison__heading p:last-child {
  margin: 10px 0 0;
  color: var(--pps-muted);
}

.model-table-wrap {
  margin-top: 18px;
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 680px;
}

thead th {
  padding: 12px 14px;
  color: var(--pps-accent-strong);
  border-bottom: 1px solid rgba(13,117,184,.16);
  font-size: .82rem;
  text-align: left;
  letter-spacing: .04em;
}

tbody th,
tbody td {
  padding: 14px;
  border-bottom: 1px solid rgba(13,117,184,.1);
  vertical-align: top;
  font-size: .93rem;
}

tbody th {
  width: 180px;
  font-size: 1rem;
  text-align: left;
}

tbody tr.is-highlighted {
  background: rgba(13,117,184,.06);
}

.disclaimer h2 {
  margin: 0 0 12px;
  font-size: 1.22rem;
  font-weight: 900;
}

.disclaimer p {
  margin: 0;
  color: var(--pps-muted);
  font-size: .93rem;
}

.disclaimer p + p { margin-top: 10px; }

.restart-area {
  display: flex;
  justify-content: center;
  margin-top: 18px;
}

.comparison-guide__lead {
  margin-top: 12px;
}

.comparison-guide__content {
  display: grid;
  gap: 18px;
  margin-top: 20px;
}

.comparison-guide__content h3 {
  margin: 0 0 6px;
  font-size: 1.08rem;
  font-weight: 900;
  letter-spacing: -.02em;
}

@media (max-width: 980px) {
  .hero__layout,
  .how__grid,
  .result-hero,
  .insight-grid {
    grid-template-columns: 1fr;
  }

  .power-scene {
    min-height: 460px;
  }

  .score-wrap {
    padding-top: 6px;
  }
}

@media (max-width: 760px) {
  .shell,
  .shell--narrow {
    width: min(calc(100% - 28px), 1120px);
  }

  .hero {
    padding-top: 88px;
  }

  .hero__accent {
    font-size: 1.06rem;
  }

  .hero__lead,
  .hero__detail,
  .step p,
  .comparison-guide__lead,
  .comparison-guide__content p {
    font-size: .92rem;
  }

  .power-scene {
    min-height: 396px;
    border-radius: 30px;
  }

  .power-scene__ring--one {
    inset: 52px 32px;
  }

  .power-scene__ring--two {
    inset: 92px 68px;
  }

  .power-station--main {
    top: 108px;
    left: 38px;
    width: 190px;
    height: 146px;
  }

  .power-station--main i {
    left: 22px;
    width: 62px;
    height: 42px;
  }

  .power-station--main b {
    right: 24px;
    width: 42px;
  }

  .power-station--mini {
    right: 26px;
    bottom: 92px;
    width: 126px;
    height: 102px;
  }

  .power-station--mini i {
    left: 18px;
    width: 34px;
    height: 34px;
  }

  .power-station--mini b {
    right: 18px;
    width: 30px;
  }

  .scene-panel {
    right: 18px;
    top: 34px;
    width: 152px;
    padding: 14px;
  }

  .scene-chip--camp {
    left: 18px;
    top: 26px;
  }

  .scene-chip--backup {
    right: 24px;
    top: 142px;
  }

  .scene-chip--home {
    right: 82px;
    bottom: 24px;
  }

  .cable--left {
    left: 8px;
    bottom: 14px;
  }

  .cable--right {
    right: 58px;
    top: 108px;
  }

  .question-panel,
  .result-hero,
  .insight-block,
  .model-comparison,
  .disclaimer,
  .comparison-guide__inner {
    padding: 20px;
    border-radius: 24px;
  }

  .result-links {
    gap: 10px;
  }

  .result-links a {
    width: 100%;
  }

  table {
    min-width: 560px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .button,
  .answer {
    transition: none;
  }
}
