:root {
  color-scheme: light;
  --sr-ink: #071321;
  --sr-muted: #64748b;
  --sr-subtle: #e2e8f0;
  --sr-line: rgba(15, 23, 42, 0.1);
  --sr-bg: #f5f8ff;
  --sr-paper: #ffffff;
  --sr-accent: #2563eb;
  --sr-accent-strong: #1d4ed8;
  --sr-accent-soft: rgba(37, 99, 235, 0.12);
  --sr-gold: #c79b42;
  --sr-radius-xl: 34px;
  --sr-radius-lg: 24px;
  --sr-shadow: 0 24px 70px rgba(15, 23, 42, 0.12);
  --sr-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(--sr-bg);
  color: var(--sr-ink);
  font-family: var(--sr-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));
}

.tracker-app {
  background:
    linear-gradient(90deg, rgba(37, 99, 235, 0.04) 1px, transparent 1px),
    linear-gradient(rgba(37, 99, 235, 0.04) 1px, transparent 1px),
    radial-gradient(circle at top right, rgba(96, 165, 250, 0.14), transparent 34rem),
    var(--sr-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__grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(7, 19, 33, 0.08) 0.6px, transparent 0.6px);
  background-size: 18px 18px;
  opacity: 0.35;
  mask-image: linear-gradient(to bottom, #000 0%, transparent 70%);
}

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

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 13px;
  border: 1px solid rgba(15, 118, 110, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.eyebrow span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--sr-accent);
  box-shadow: 0 0 0 6px rgba(15, 118, 110, 0.12);
}

.hero h1 {
  margin: 0;
  color: #061421;
  font-size: clamp(2.75rem, 7vw, 5.8rem);
  font-weight: 950;
  letter-spacing: -0.085em;
  line-height: 0.95;
}

.hero h1 span {
  display: block;
}

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

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

.hero__detail {
  max-width: 43rem;
  margin: 16px 0 0;
  color: var(--sr-muted);
  font-size: 0.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;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0 22px;
  cursor: pointer;
  font-weight: 900;
  letter-spacing: -0.02em;
  text-decoration: none;
  transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1), background 0.28s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

.button:active {
  transform: translateY(1px) scale(0.99);
}

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

.button--primary {
  background: var(--sr-accent);
  color: #ffffff;
  box-shadow: 0 18px 36px rgba(15, 118, 110, 0.22);
}

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

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

.button--ghost {
  background: #ffffff;
  border-color: var(--sr-line);
  color: #24415d;
}

.button--ghost:hover {
  border-color: rgba(15, 118, 110, 0.3);
  color: var(--sr-accent-strong);
}

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

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

.tracker-scene {
  position: relative;
  min-height: 540px;
  border-radius: 44px;
  background:
    radial-gradient(circle at 52% 42%, rgba(255, 255, 255, 0.97) 0 8rem, transparent 8.1rem),
    radial-gradient(circle at 58% 46%, rgba(96, 165, 250, 0.18), transparent 21rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(239, 246, 255, 0.82));
  border: 1px solid rgba(37, 99, 235, 0.14);
  box-shadow: var(--sr-shadow), inset 0 1px 0 rgba(255, 255, 255, 0.86);
  overflow: hidden;
}

.tracker-orbit {
  position: absolute;
  inset: 86px 68px;
  border: 1px solid rgba(37, 99, 235, 0.16);
  border-radius: 44% 56% 51% 49% / 50% 46% 54% 50%;
  transform: rotate(-14deg);
}

.tracker-orbit--two {
  inset: 122px 104px;
  transform: rotate(22deg);
  border-style: dashed;
}

.tracker-tag {
  position: absolute;
  left: 50%;
  top: 48%;
  width: 180px;
  height: 200px;
  transform: translate(-50%, -50%) rotate(-16deg);
  border-radius: 34px;
  background: linear-gradient(155deg, #112347, #2563eb 62%, #6ea8ff);
  box-shadow: 0 30px 50px rgba(18, 47, 108, 0.22);
}

.tracker-tag::before {
  content: "";
  position: absolute;
  top: 24px;
  left: 24px;
  width: 44px;
  height: 44px;
  border: 10px solid rgba(255, 255, 255, 0.88);
  border-radius: 50%;
}

.tracker-tag::after {
  content: "";
  position: absolute;
  inset: 70px 26px 26px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(219, 234, 254, 0.62));
  box-shadow: inset 0 16px 30px rgba(15, 23, 42, 0.12);
}

.tracker-tag--main i,
.tracker-tag--main b,
.tracker-tag--main span {
  position: absolute;
  z-index: 2;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.62);
}

.tracker-tag--main i {
  right: 38px;
  top: 96px;
  width: 56px;
  height: 8px;
  border-radius: 999px;
}

.tracker-tag--main b {
  right: 38px;
  top: 118px;
  width: 78px;
  height: 8px;
  border-radius: 999px;
}

.tracker-tag--main span {
  right: 38px;
  top: 142px;
  width: 64px;
  height: 8px;
  border-radius: 999px;
}

.tracker-tag--ghost {
  width: 104px;
  height: 118px;
  opacity: 0.72;
  filter: blur(0.2px);
}

.tracker-tag--ghost::before {
  top: 14px;
  left: 14px;
  width: 28px;
  height: 28px;
  border-width: 6px;
}

.tracker-tag--ghost::after {
  inset: 44px 14px 14px;
}

.tracker-tag--left {
  left: 23%;
  top: 68%;
  transform: translate(-50%, -50%) rotate(28deg);
}

.tracker-card {
  position: absolute;
  left: 77%;
  top: 35%;
  width: 152px;
  height: 96px;
  border-radius: 18px;
  background: linear-gradient(155deg, #0f172a, #475569 62%, #94a3b8);
  box-shadow: 0 24px 42px rgba(15, 23, 42, 0.22);
  transform: translate(-50%, -50%) rotate(-20deg);
}

.tracker-card::before,
.tracker-card::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
}

.tracker-card::before {
  top: 28px;
  height: 8px;
}

.tracker-card::after {
  top: 46px;
  height: 8px;
  width: 58%;
}

.scene-card,
.metrics-panel {
  position: absolute;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.11), inset 0 1px 0 rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(16px);
}

.scene-card {
  min-width: 126px;
  padding: 16px;
}

.scene-card small,
.metrics-panel p {
  display: block;
  margin: 0 0 8px;
  color: var(--sr-muted);
  font-size: 0.68rem;
  font-weight: 950;
  letter-spacing: 0.14em;
}

.scene-card strong {
  color: var(--sr-ink);
  font-size: 1.2rem;
  letter-spacing: -0.04em;
}

.scene-card span {
  display: block;
  height: 6px;
  margin-top: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--sr-accent), rgba(37, 99, 235, 0.12));
}

.scene-card--network {
  left: 38px;
  top: 54px;
}

.scene-card--battery {
  right: 34px;
  top: 74px;
}

.scene-card--phone {
  right: 34px;
  bottom: 54px;
}

.metrics-panel {
  left: 38px;
  bottom: 42px;
  width: 180px;
  padding: 18px;
}

.metrics-panel div {
  display: grid;
  grid-template-columns: 52px 1fr;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  color: #35536f;
  font-size: 0.78rem;
  font-weight: 900;
}

.metrics-panel b {
  height: 7px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--sr-accent), rgba(96, 165, 250, 0.18));
}

.metrics-panel div:nth-child(3) b {
  width: 76%;
}

.metrics-panel div:nth-child(4) b {
  width: 88%;
}

.how,
.quiz,
.results,
.comparison-guide {
  padding: 84px 0;
}

.how__grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 44px;
  align-items: start;
}

.how h2,
.comparison-guide h2,
.model-comparison h2 {
  margin: 0;
  color: var(--sr-ink);
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 950;
  line-height: 1.05;
  letter-spacing: -0.07em;
}

.how h2 span {
  display: block;
}

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

.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  padding: 20px;
  border: 1px solid var(--sr-line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.76);
}

.step span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 15px;
  background: var(--sr-accent-soft);
  color: var(--sr-accent-strong);
  font-size: 0.82rem;
  font-weight: 950;
}

.step h3 {
  margin: 0 0 5px;
  font-size: 1rem;
}

.step p {
  margin: 0;
  color: var(--sr-muted);
  font-size: 0.92rem;
}

.how__action {
  margin-top: 30px;
}

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

.quiz-progress__labels {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 10px;
  color: #37516d;
  font-size: 0.86rem;
  font-weight: 900;
}

.progress-track {
  height: 10px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.08);
  overflow: hidden;
}

.progress-track span {
  display: block;
  height: 100%;
  width: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--sr-accent), #2dd4bf);
  transition: width 0.34s cubic-bezier(0.16, 1, 0.3, 1);
}

.question-panel {
  padding: clamp(26px, 5vw, 44px);
  border-radius: var(--sr-radius-xl);
  background: #ffffff;
  box-shadow: var(--sr-shadow);
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.question-panel__kicker {
  margin: 0 0 12px;
  color: var(--sr-accent-strong);
  font-size: 0.74rem;
  font-weight: 950;
  letter-spacing: 0.16em;
}

.question-panel h2 {
  margin: 0 0 24px;
  color: var(--sr-ink);
  font-size: clamp(1.55rem, 4vw, 2.3rem);
  line-height: 1.25;
  letter-spacing: -0.05em;
}

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

.answer-button {
  width: 100%;
  min-height: 58px;
  border: 1px solid var(--sr-line);
  border-radius: 18px;
  padding: 16px 18px;
  background: #f8fafc;
  color: #16314d;
  cursor: pointer;
  font-weight: 900;
  text-align: left;
  transition: transform 0.24s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.24s, background 0.24s;
}

.answer-button:hover,
.answer-button.is-selected {
  border-color: rgba(15, 118, 110, 0.42);
  background: rgba(15, 118, 110, 0.08);
}

.answer-button:active {
  transform: translateY(1px) scale(0.995);
}

.back-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  border: 0;
  background: transparent;
  color: var(--sr-muted);
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 900;
}

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

.back-button:disabled {
  cursor: not-allowed;
  opacity: 0.38;
}

.question-panel.is-entering {
  animation: enterPanel 0.34s cubic-bezier(0.16, 1, 0.3, 1);
}

.question-panel.is-leaving {
  animation: leavePanel 0.24s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

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

@keyframes leavePanel {
  to { opacity: 0; transform: translateY(-8px); }
}

.result-hero {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 34px;
  align-items: start;
}

.score-wrap {
  position: sticky;
  top: 94px;
  display: grid;
  place-items: center;
  min-height: 320px;
  border: 1px solid rgba(15, 118, 110, 0.16);
  border-radius: var(--sr-radius-xl);
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.96), rgba(236, 253, 245, 0.8)),
    #ffffff;
  box-shadow: var(--sr-shadow);
}

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

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

.score-ring__track {
  stroke: rgba(15, 23, 42, 0.08);
}

.score-ring__value {
  stroke: var(--sr-accent);
  stroke-dasharray: 603.19;
  stroke-dashoffset: 603.19;
  transition: stroke-dashoffset 0.2s linear;
}

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

.score-center span,
.score-center em {
  color: var(--sr-muted);
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 950;
  letter-spacing: 0.12em;
}

.score-center strong {
  color: var(--sr-ink);
  font-size: 4rem;
  line-height: 1;
  letter-spacing: -0.08em;
}

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

.result-copy {
  min-width: 0;
}

.result-copy h2 {
  margin: 0 0 12px;
  color: var(--sr-ink);
  font-size: clamp(2rem, 4.4vw, 3.8rem);
  line-height: 1;
  letter-spacing: -0.075em;
}

.result-copy__title {
  margin: 0 0 8px;
  color: var(--sr-accent-strong);
  font-size: 1.35rem;
  font-weight: 950;
  letter-spacing: -0.04em;
}

.result-copy__description {
  margin: 0 0 22px;
  color: #38526e;
  font-weight: 700;
}

.model-result,
.insight-block,
.model-comparison,
.disclaimer,
.comparison-guide__inner {
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: var(--sr-radius-xl);
  background: #ffffff;
  box-shadow: 0 20px 56px rgba(15, 23, 42, 0.08);
}

.model-result {
  padding: clamp(24px, 4vw, 34px);
}

.model-badge {
  display: inline-flex;
  margin: 0 0 14px;
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--sr-accent-soft);
  color: var(--sr-accent-strong);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.12em;
}

.model-result h3 {
  margin: 0 0 16px;
  font-size: clamp(1.6rem, 3vw, 2.55rem);
  line-height: 1.12;
  letter-spacing: -0.065em;
}

.model-visual {
  position: relative;
  display: grid;
  place-items: center;
  height: 170px;
  margin: 0 0 18px;
  border-radius: 26px;
  background:
    radial-gradient(circle at center, rgba(96, 165, 250, 0.18), transparent 13rem),
    linear-gradient(135deg, #f8fafc, #eff6ff);
  overflow: hidden;
}

.model-visual span {
  width: 112px;
  height: 128px;
  border-radius: 22px;
  background: linear-gradient(155deg, #112347, #2563eb 62%, #7db8ff);
  box-shadow: 0 22px 40px rgba(22, 48, 104, 0.2);
}

.model-visual span::after {
  content: "";
  position: absolute;
  width: 28px;
  height: 28px;
  border: 7px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  transform: translate(20px, 18px);
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1);
}

.model-visual i,
.model-visual b {
  position: absolute;
  right: 116px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
}

.model-visual i {
  top: 72px;
  width: 58px;
}

.model-visual b {
  top: 94px;
  width: 74px;
}

.model-result p {
  color: #38526e;
  font-weight: 700;
}

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

.model-result li,
.insight-list li {
  position: relative;
  padding-left: 22px;
  color: #35516b;
  font-weight: 750;
}

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

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

.result-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 999px;
  padding: 0 15px;
  background: #f8fafc;
  color: #35516b;
  font-size: 0.88rem;
  font-weight: 950;
  text-decoration: none;
  transition: transform 0.22s cubic-bezier(0.16, 1, 0.3, 1), background 0.22s, border-color 0.22s;
}

.result-link:hover {
  border-color: rgba(37, 99, 235, 0.3);
  background: rgba(37, 99, 235, 0.08);
}

.result-link--official {
  background: var(--sr-accent);
  color: #ffffff;
}

.result-link--amazon,
.result-link--rakuten {
  background: #f7f9fc;
  color: #53667a;
}

.low-score-guide {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  margin-top: 16px;
  padding: 16px;
  border-radius: 20px;
  background: rgba(245, 158, 11, 0.1);
  color: #7c4a03;
}

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

.low-score-guide p {
  margin: 0;
  font-weight: 800;
}

.insight-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 28px;
}

.insight-block {
  padding: clamp(22px, 4vw, 30px);
}

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

.insight-block__heading p {
  margin: 0;
  color: var(--sr-muted);
  font-size: 0.7rem;
  font-weight: 950;
  letter-spacing: 0.12em;
}

.insight-block h3 {
  margin: 2px 0 0;
  font-size: 1.18rem;
}

.insight-icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 16px;
  color: var(--sr-accent-strong);
  background: var(--sr-accent-soft);
}

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

.insight-icon--caution {
  color: #9a5a00;
  background: rgba(245, 158, 11, 0.13);
}

.model-comparison,
.disclaimer {
  margin-top: 28px;
  padding: clamp(22px, 4vw, 34px);
}

.model-comparison__heading p {
  margin: 12px 0 0;
  color: var(--sr-muted);
  font-weight: 700;
}

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

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

th,
td {
  padding: 15px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  text-align: left;
  vertical-align: top;
}

th {
  color: var(--sr-ink);
  font-weight: 950;
}

td {
  color: #4f6780;
  font-size: 0.92rem;
  font-weight: 700;
}

tr.is-recommended {
  background: rgba(15, 118, 110, 0.08);
}

.disclaimer h2 {
  margin: 0 0 10px;
  font-size: 1.25rem;
}

.disclaimer p {
  margin: 10px 0 0;
  color: var(--sr-muted);
  font-size: 0.9rem;
  font-weight: 650;
}

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

.comparison-guide__inner {
  padding: clamp(28px, 5vw, 54px);
}

.comparison-guide__lead {
  max-width: 70ch;
  margin: 20px 0 0;
  color: #38526e;
  font-size: 1.02rem;
  font-weight: 700;
}

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

.comparison-guide__content h3 {
  margin: 14px 0 0;
  color: var(--sr-ink);
  font-size: 1.3rem;
  letter-spacing: -0.04em;
}

.comparison-guide__content p {
  margin: 0;
  color: #3c5670;
  font-weight: 650;
}

@media (max-width: 900px) {
  .hero {
    min-height: auto;
    padding: 74px 0 58px;
  }

  .hero__grid,
  .how__grid,
  .result-hero,
  .insight-grid {
    grid-template-columns: 1fr;
  }

  .tracker-scene {
    min-height: 440px;
    order: -1;
  }

  .score-wrap {
    position: relative;
    top: auto;
  }
}

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

  .hero {
    padding-top: 48px;
  }

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

  .hero__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .tracker-scene {
    min-height: 380px;
    border-radius: 30px;
  }

  .tracker-orbit {
    inset: 82px 36px;
  }

  .tracker-orbit--two {
    inset: 112px 58px;
  }

  .tracker-tag {
    width: 144px;
    height: 160px;
  }

  .tracker-tag::after {
    inset: 56px 18px 18px;
  }

  .tracker-tag--ghost {
    width: 76px;
    height: 92px;
  }

  .tracker-tag--ghost::after {
    inset: 34px 10px 10px;
  }

  .tracker-card {
    width: 124px;
    height: 80px;
  }

  .scene-card {
    min-width: 104px;
    padding: 12px;
  }

  .scene-card strong {
    font-size: 0.98rem;
  }

  .scene-card--network {
    left: 14px;
    top: 24px;
  }

  .scene-card--battery {
    right: 14px;
    top: 36px;
  }

  .scene-card--phone {
    right: 14px;
    bottom: 24px;
  }

  .metrics-panel {
    left: 14px;
    bottom: 18px;
    width: 150px;
    padding: 14px;
  }

  .how,
  .quiz,
  .results,
  .comparison-guide {
    padding: 58px 0;
  }

  .step {
    padding: 17px;
  }

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

  .score-wrap {
    min-height: 280px;
  }

  .score-ring {
    width: 210px;
    height: 210px;
  }

  table {
    min-width: 0;
  }

  thead {
    display: none;
  }

  tr,
  td,
  th {
    display: block;
  }

  tbody tr {
    padding: 14px 0;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  }

  td,
  th {
    border-bottom: 0;
    padding: 5px 0;
  }

  td::before {
    content: attr(data-label);
    display: block;
    color: var(--sr-muted);
    font-size: 0.7rem;
    font-weight: 950;
    letter-spacing: 0.08em;
  }
}

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