:root {
  color-scheme: light;
  --rr-ink: #091522;
  --rr-muted: #62758a;
  --rr-subtle: #d6e3f2;
  --rr-line: rgba(9, 34, 60, 0.12);
  --rr-bg: #f3f7fb;
  --rr-paper: #ffffff;
  --rr-accent: #1570b8;
  --rr-accent-strong: #0d4d86;
  --rr-accent-soft: rgba(21, 112, 184, 0.12);
  --rr-gold: #e7b24a;
  --rr-radius-xl: 34px;
  --rr-radius-lg: 24px;
  --rr-shadow: 0 28px 72px rgba(10, 33, 63, 0.12);
  --rr-font: "Outfit", "Satoshi", "Noto Sans JP", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--rr-bg);
  color: var(--rr-ink);
  font-family: var(--rr-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));
}

.roborock-app {
  background:
    linear-gradient(90deg, rgba(21, 112, 184, 0.04) 1px, transparent 1px),
    linear-gradient(rgba(21, 112, 184, 0.04) 1px, transparent 1px),
    radial-gradient(circle at top right, rgba(67, 163, 255, 0.14), transparent 34rem),
    var(--rr-bg);
  background-size: 56px 56px, 56px 56px, auto, auto;
  min-height: 100dvh;
}

.hero {
  position: relative;
  min-height: 720px;
  padding: 104px 0 76px;
  overflow: hidden;
}

.hero__noise {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(7, 22, 35, 0.08) 0.6px, transparent 0.6px);
  background-size: 18px 18px;
  opacity: 0.34;
  mask-image: linear-gradient(to bottom, #000 0%, transparent 70%);
}

.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(420px, 0.96fr);
  align-items: center;
  gap: 56px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  color: var(--rr-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(21, 112, 184, 0.15);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.88);
}

.eyebrow span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--rr-accent);
  box-shadow: 0 0 0 6px rgba(21, 112, 184, 0.12);
}

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

.hero h1 span { display: block; }

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

.hero__lead {
  max-width: 42rem;
  margin: 22px 0 0;
  color: #263f5b;
  font-size: 1.08rem;
  font-weight: 700;
}

.hero__detail {
  max-width: 43rem;
  margin: 16px 0 0;
  color: var(--rr-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 {
  background: var(--rr-accent);
  color: #fff;
  box-shadow: 0 18px 36px rgba(21, 112, 184, 0.2);
}

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

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

.button--ghost {
  background: #fff;
  border-color: var(--rr-line);
  color: #24425e;
}

.button--ghost:hover {
  border-color: rgba(21, 112, 184, 0.3);
  color: var(--rr-accent-strong);
}

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

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

.hero-visual {
  position: relative;
  min-height: 540px;
  border-radius: 44px;
  background:
    radial-gradient(circle at 48% 44%, rgba(255,255,255,.97) 0 8rem, transparent 8.1rem),
    radial-gradient(circle at 58% 46%, rgba(67,163,255,.18), transparent 21rem),
    linear-gradient(145deg, rgba(255,255,255,.82), rgba(239,246,255,.82));
  border: 1px solid rgba(21, 112, 184, 0.14);
  box-shadow: var(--rr-shadow), inset 0 1px 0 rgba(255,255,255,.86);
  overflow: hidden;
}

.hero-visual__ring {
  position: absolute;
  border: 1px solid rgba(21, 112, 184, 0.16);
  border-radius: 50%;
}

.hero-visual__ring--one {
  inset: 70px 54px;
  transform: rotate(-12deg);
}

.hero-visual__ring--two {
  inset: 116px 108px;
  border-style: dashed;
  transform: rotate(18deg);
}

.hero-visual__robot,
.hero-visual__dock {
  position: absolute;
  display: block;
}

.hero-visual__robot {
  border-radius: 50%;
  background: radial-gradient(circle at 34% 30%, #f7fbff, #dce9f5 54%, #b3c7da);
  box-shadow: 0 22px 34px rgba(10, 28, 56, 0.18);
}

.hero-visual__robot::before {
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(15, 36, 63, 0.1);
  border-radius: inherit;
  content: "";
}

.hero-visual__robot i,
.hero-visual__robot b {
  position: absolute;
  display: block;
  border-radius: 999px;
}

.hero-visual__robot--compact {
  top: 78px;
  left: 82px;
  width: 148px;
  height: 148px;
  transform: rotate(-8deg);
}

.hero-visual__robot--compact i {
  top: 52px;
  left: 36px;
  width: 76px;
  height: 12px;
  background: #1f3954;
}

.hero-visual__robot--compact b {
  top: 78px;
  left: 50px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  box-shadow: inset 0 0 0 8px #1f3954;
}

.hero-visual__robot--roller {
  right: 58px;
  bottom: 96px;
  width: 188px;
  height: 188px;
  background: radial-gradient(circle at 38% 34%, #ffffff, #e3eef8 54%, #c0d4e8);
  transform: rotate(8deg);
}

.hero-visual__robot--roller i {
  left: 28px;
  right: 28px;
  bottom: 32px;
  height: 18px;
  background: linear-gradient(90deg, #0e527f, #2a97d7 50%, #0e527f);
}

.hero-visual__robot--roller b {
  top: 44px;
  left: 50%;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  box-shadow: inset 0 0 0 10px #21405d;
  transform: translateX(-50%);
}

.hero-visual__dock {
  right: 116px;
  top: 86px;
  width: 112px;
  height: 154px;
  border-radius: 24px 24px 18px 18px;
  background: linear-gradient(155deg, #f7fbff, #d5e2ef 56%, #b4c6d7);
  box-shadow: 0 18px 32px rgba(8, 26, 50, 0.16);
}

.hero-visual__dock::before {
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(16, 44, 76, .08);
  border-radius: 18px;
  content: "";
}

.hero-chip {
  position: absolute;
  z-index: 3;
  display: inline-grid;
  min-height: 31px;
  padding: 6px 12px;
  border: 1px solid rgba(21, 112, 184, 0.16);
  border-radius: 999px;
  background: rgba(255,255,255,.86);
  box-shadow: 0 10px 22px rgba(15,23,42,.09);
  place-items: center;
  color: var(--rr-accent-strong);
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .04em;
}

.hero-chip--compact { top: 28px; left: 18px; transform: rotate(-7deg); }
.hero-chip--mop { top: 26px; right: 18px; transform: rotate(6deg); }
.hero-chip--smart { left: 54px; bottom: 26px; transform: rotate(-5deg); }

.hero-panel {
  position: absolute;
  right: 26px;
  bottom: 26px;
  width: 178px;
  padding: 18px 18px 16px;
  border: 1px solid rgba(21, 112, 184, 0.12);
  border-radius: 22px;
  background: rgba(255,255,255,.82);
  box-shadow: 0 18px 30px rgba(10, 33, 63, 0.1);
  backdrop-filter: blur(14px);
}

.hero-panel p {
  margin: 0 0 12px;
  color: var(--rr-accent-strong);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .16em;
}

.hero-panel div {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 12px;
  margin-top: 10px;
  color: #36526f;
  font-size: .82rem;
  font-weight: 700;
}

.hero-panel b {
  display: block;
  width: 52px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, #74c7ff, #0e6db6);
}

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

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

.how h2,
.model-comparison__heading h2,
.comparison-guide h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.05;
  letter-spacing: -.05em;
}

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

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

.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  padding: 18px 20px;
  border: 1px solid rgba(21,112,184,.12);
  border-radius: 24px;
  background: rgba(255,255,255,.8);
  box-shadow: 0 16px 26px rgba(10,33,63,.08);
}

.step span {
  display: grid;
  width: 42px;
  height: 42px;
  border-radius: 16px;
  place-items: center;
  background: linear-gradient(145deg, #cfe7ff, #f7fbff);
  color: var(--rr-accent-strong);
  font-weight: 900;
}

.step h3 {
  margin: 0;
  font-size: 1.05rem;
  letter-spacing: -.02em;
}

.step p {
  margin: 7px 0 0;
  color: var(--rr-muted);
  font-size: .92rem;
}

.how__action {
  margin-top: 28px;
  text-align: center;
}

.quiz {
  padding: 12px 0 88px;
}

.quiz-progress,
.question-panel,
.results .shell > *:not(.comparison-guide) {
  background: rgba(255,255,255,.84);
  backdrop-filter: blur(12px);
}

.quiz-progress {
  margin-bottom: 18px;
  padding: 18px 20px;
  border: 1px solid rgba(21,112,184,.12);
  border-radius: 24px;
  box-shadow: 0 16px 26px rgba(10,33,63,.08);
}

.quiz-progress__labels {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
  color: var(--rr-muted);
  font-size: .86rem;
  font-weight: 800;
}

.progress-track {
  overflow: hidden;
  height: 12px;
  border-radius: 999px;
  background: rgba(21,112,184,.12);
}

.progress-track span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #0e6db6, #6fd2ff);
}

.question-panel {
  padding: 30px;
  border: 1px solid rgba(21,112,184,.12);
  border-radius: 32px;
  box-shadow: 0 22px 34px rgba(10,33,63,.1);
}

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

.question-panel h2 {
  margin: 0;
  font-size: clamp(1.7rem, 4vw, 2.45rem);
  line-height: 1.22;
  letter-spacing: -.05em;
}

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

.answer {
  width: 100%;
  padding: 16px 18px;
  border: 1px solid rgba(21,112,184,.14);
  border-radius: 20px;
  color: #17324d;
  background: #fff;
  cursor: pointer;
  font-weight: 800;
  text-align: left;
  transition: transform .24s cubic-bezier(.16,1,.3,1), border-color .24s ease, box-shadow .24s ease;
}

.answer:hover {
  border-color: rgba(21,112,184,.32);
  box-shadow: 0 14px 24px rgba(10,33,63,.08);
  transform: translateY(-2px);
}

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

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

.results {
  padding: 12px 0 88px;
}

.result-hero {
  display: grid;
  grid-template-columns: minmax(260px, 320px) minmax(0, 1fr);
  gap: 28px;
  padding: 30px;
  border: 1px solid rgba(21,112,184,.12);
  border-radius: 34px;
  box-shadow: 0 22px 34px rgba(10,33,63,.1);
}

.score-wrap {
  display: grid;
  position: sticky;
  top: 92px;
  min-height: 260px;
  place-items: center;
}

.score-ring {
  width: 220px;
  height: 220px;
  transform: rotate(-90deg);
}

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

.score-ring__track {
  stroke: rgba(21,112,184,.1);
}

.score-ring__value {
  stroke: url(#score-gradient);
  stroke: #0e6db6;
  stroke-dasharray: 603;
  stroke-dashoffset: 603;
  transition: stroke-dashoffset .55s cubic-bezier(.16,1,.3,1);
}

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

.score-center span,
.score-center em {
  color: var(--rr-muted);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.score-center strong {
  color: #061623;
  font-size: 3rem;
  line-height: 1;
}

.score-center small {
  font-size: .9rem;
}

.result-copy__title {
  margin: 12px 0 0;
  color: var(--rr-accent-strong);
  font-size: 1.18rem;
  font-weight: 900;
}

.result-copy__description {
  margin: 10px 0 0;
  color: var(--rr-muted);
}

.model-result {
  margin-top: 22px;
  padding: 22px;
  border: 1px solid rgba(21,112,184,.12);
  border-radius: 28px;
  background: linear-gradient(160deg, rgba(255,255,255,.96), rgba(239,246,255,.94));
}

.model-badge {
  display: inline-flex;
  min-height: 30px;
  margin: 0;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(21,112,184,.1);
  color: var(--rr-accent-strong);
  font-size: .73rem;
  font-weight: 900;
  letter-spacing: .1em;
}

.model-result h3 {
  margin: 14px 0 0;
  font-size: clamp(1.55rem, 3vw, 2rem);
  line-height: 1.2;
  letter-spacing: -.04em;
}

.model-visual {
  position: relative;
  min-height: 220px;
  margin: 18px 0 12px;
  border: 1px solid rgba(21,112,184,.12);
  border-radius: 28px;
  background:
    radial-gradient(circle at 62% 30%, rgba(134,203,255,.28), transparent 16rem),
    linear-gradient(180deg, #ffffff, #edf5fd);
  overflow: hidden;
}

.model-visual__floor {
  position: absolute;
  inset: auto 0 0;
  height: 52px;
  background: linear-gradient(180deg, rgba(15,51,82,.04), rgba(15,51,82,.08));
}

.model-visual__robot,
.model-visual__dock {
  position: absolute;
  display: block;
}

.model-visual__robot {
  left: 34px;
  bottom: 34px;
  width: 138px;
  height: 138px;
  border-radius: 50%;
  background: radial-gradient(circle at 34% 30%, #ffffff, #dbe7f3 56%, #b0c2d3);
  box-shadow: 0 18px 28px rgba(10,33,63,.16);
}

.model-visual__robot::before {
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(15,36,63,.1);
  border-radius: inherit;
  content: "";
}

.model-visual__dock {
  right: 34px;
  bottom: 28px;
  width: 98px;
  height: 132px;
  border-radius: 22px 22px 16px 16px;
  background: linear-gradient(155deg, #f7fbff, #d5e2ef 56%, #b4c6d7);
  box-shadow: 0 18px 28px rgba(10,33,63,.12);
}

.model-visual__dock::before {
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(16,44,76,.08);
  border-radius: 16px;
  content: "";
}

.model-visual[data-result="q7b"] .model-visual__robot {
  width: 128px;
  height: 128px;
}

.model-visual[data-result="q10v"] .model-visual__robot::after,
.model-visual[data-result="saros"] .model-visual__robot::after {
  position: absolute;
  top: 48px;
  left: 26px;
  width: 86px;
  height: 12px;
  border-radius: 999px;
  background: #17324d;
  box-shadow: 0 26px 0 #17324d;
  content: "";
}

.model-visual[data-result="qrevoflow"] .model-visual__robot::after {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  height: 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, #0e527f, #2a97d7 50%, #0e527f);
  content: "";
}

.model-visual[data-result="saros"] .model-visual__robot {
  width: 148px;
  height: 148px;
}

.model-visual[data-result="saros"]::after {
  position: absolute;
  top: 18px;
  left: 24px;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(255,255,255,.88);
  color: var(--rr-accent-strong);
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .08em;
  content: "7.98cm";
}

.model-visual[data-result="wait"] .model-visual__robot {
  opacity: .5;
  filter: saturate(.5);
}

.model-visual[data-result="wait"] .model-visual__dock {
  opacity: .45;
}

.model-result > p:last-of-type {
  margin: 12px 0 0;
  color: var(--rr-muted);
}

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

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

.model-result li::before,
.insight-list li::before {
  position: absolute;
  top: .2em;
  left: 0;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0e6db6, #6fd2ff);
  content: "";
}

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

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

.result-links .official {
  color: #fff;
  background: linear-gradient(135deg, #0e6db6, #0d4d86);
}

.result-links .amazon,
.result-links .rakuten {
  color: #21405d;
  background: #eaf2f8;
  border: 1px solid rgba(15,36,63,.08);
}

.result-links .article {
  color: #21405d;
  background: #fff;
  border: 1px solid rgba(21,112,184,.14);
}

.low-score-guide {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255,248,230,.88);
  color: #7a5920;
}

.low-score-guide svg { width: 22px; height: 22px; }
.low-score-guide p { margin: 0; }

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

.insight-block,
.model-comparison,
.disclaimer {
  padding: 24px;
  border: 1px solid rgba(21,112,184,.12);
  border-radius: 28px;
  box-shadow: 0 22px 34px rgba(10,33,63,.1);
}

.insight-block__heading {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
}

.insight-block__heading p {
  margin: 0;
  color: var(--rr-accent-strong);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .14em;
}

.insight-block__heading h3 {
  margin: 3px 0 0;
  font-size: 1.12rem;
  letter-spacing: -.02em;
}

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

.insight-icon svg { width: 20px; height: 20px; }
.insight-icon--positive { color: #0d6a5e; background: rgba(13, 166, 136, .14); }
.insight-icon--caution { color: #a35a00; background: rgba(244, 163, 0, .12); }

.insight-block--caution { background: linear-gradient(160deg, rgba(255,255,255,.96), rgba(255,249,240,.96)); }

.model-comparison,
.disclaimer,
.restart-area {
  margin-top: 18px;
}

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

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

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

th,
td {
  padding: 16px 14px;
  border-bottom: 1px solid rgba(21,112,184,.1);
  text-align: left;
  vertical-align: top;
}

thead th {
  color: var(--rr-accent-strong);
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

tbody th {
  color: #10283f;
  font-size: .94rem;
}

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

.disclaimer h2,
.comparison-guide h3 {
  margin: 0;
  letter-spacing: -.03em;
}

.disclaimer p {
  margin: 12px 0 0;
  color: var(--rr-muted);
}

.restart-area {
  display: flex;
  justify-content: center;
}

.comparison-guide__inner {
  padding: 34px;
  border: 1px solid rgba(21,112,184,.12);
  border-radius: 34px;
  background: rgba(255,255,255,.82);
  box-shadow: 0 22px 34px rgba(10,33,63,.1);
}

.comparison-guide__lead {
  margin: 16px 0 0;
  color: var(--rr-muted);
}

.comparison-guide__content {
  display: grid;
  gap: 22px;
  margin-top: 28px;
}

.comparison-guide__content h3 {
  font-size: 1.18rem;
}

.comparison-guide__content p {
  margin: 8px 0 0;
  color: var(--rr-muted);
}

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

  .hero-visual {
    min-height: 470px;
  }

  .score-wrap {
    position: static;
  }
}

@media (max-width: 720px) {
  .hero {
    min-height: 0;
    padding: 92px 0 58px;
  }

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

  .hero__grid {
    gap: 32px;
  }

  .hero h1 {
    font-size: clamp(2.5rem, 13vw, 4rem);
  }

  .hero__lead {
    font-size: 1rem;
  }

  .hero__detail {
    font-size: .9rem;
  }

  .hero-visual {
    min-height: 420px;
  }

  .hero-visual__robot--compact {
    left: 28px;
    width: 122px;
    height: 122px;
  }

  .hero-visual__robot--compact i {
    left: 28px;
    width: 66px;
  }

  .hero-visual__robot--compact b {
    left: 40px;
  }

  .hero-visual__dock {
    right: 54px;
    width: 92px;
    height: 132px;
  }

  .hero-visual__robot--roller {
    right: 18px;
    width: 150px;
    height: 150px;
  }

  .hero-panel {
    right: 14px;
    bottom: 14px;
    width: 154px;
    padding: 14px;
  }

  .how,
  .quiz,
  .results,
  .comparison-guide {
    padding-bottom: 64px;
  }

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

  .question-panel h2,
  .model-result h3 {
    font-size: 1.5rem;
  }

  .model-visual {
    min-height: 188px;
  }

  .model-visual__robot {
    left: 18px;
    width: 116px;
    height: 116px;
  }

  .model-visual[data-result="saros"] .model-visual__robot {
    width: 128px;
    height: 128px;
  }

  .model-visual__dock {
    right: 18px;
    width: 82px;
    height: 114px;
  }

  table {
    min-width: 0;
  }

  table,
  thead,
  tbody,
  tr,
  th,
  td {
    display: block;
  }

  thead {
    display: none;
  }

  tbody tr {
    padding: 14px 0;
    border-bottom: 1px solid rgba(21,112,184,.1);
  }

  tbody tr:last-child {
    border-bottom: 0;
  }

  tbody th,
  tbody td {
    padding: 6px 0;
    border: 0;
  }

  tbody td::before {
    display: block;
    margin-bottom: 4px;
    color: var(--rr-accent-strong);
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
    content: attr(data-label);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }
}
