@charset "UTF-8";

:root {
  --bg: #f4f7fb;
  --surface: #ffffff;
  --surface-2: #f8fbff;
  --line: rgba(29, 78, 216, 0.14);
  --text: #15253d;
  --muted: #64748b;
  --primary: #195ee6;
  --primary-dark: #0e244d;
  --accent: #4cc8ff;
  --accent-2: #ff9f4a;
  --success: #1c8c68;
  --warning: #b86b13;
  --danger: #c53f56;
  --shadow: 0 26px 58px rgba(19, 54, 107, 0.11);
  --shell: 1140px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--text);
  background:
    linear-gradient(rgba(25, 94, 230, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(25, 94, 230, 0.03) 1px, transparent 1px),
    var(--bg);
  background-size: 44px 44px;
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  font-size: 16px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

button,
a { font: inherit; }

a {
  color: inherit;
  text-decoration: none;
}

svg { display: block; }

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

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

.aw-app {
  position: relative;
  overflow: hidden;
}

.hero {
  position: relative;
  padding: 76px 0 72px;
}

.hero__gridline {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 20%, rgba(76, 200, 255, 0.15), transparent 27%),
    radial-gradient(circle at 88% 24%, rgba(255, 159, 74, 0.14), transparent 24%);
  pointer-events: none;
}

.hero__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(440px, 1.08fr);
  gap: clamp(28px, 4vw, 64px);
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  margin: 0;
  padding: 8px 14px;
  border: 1px solid rgba(25, 94, 230, 0.16);
  border-radius: 999px;
  color: var(--primary);
  background: rgba(255, 255, 255, 0.82);
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.eyebrow span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--primary));
  box-shadow: 0 0 0 5px rgba(76, 200, 255, 0.18);
}

.hero h1 {
  margin: 22px 0 0;
  color: var(--primary-dark);
  font-size: clamp(2.8rem, 5vw, 4.6rem);
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 1.08;
}

.hero h1 span { display: block; }

.hero__accent {
  margin: 20px 0 0;
  color: var(--primary);
  font-size: 1.02rem;
  font-weight: 800;
}

.hero__lead,
.hero__detail {
  max-width: 620px;
  margin: 16px 0 0;
  color: #334760;
}

.hero__detail {
  color: var(--muted);
  font-size: 0.9rem;
}

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

.button {
  display: inline-flex;
  min-height: 58px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 14px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 800;
  line-height: 1.3;
  transition: transform 0.25s var(--ease), box-shadow 0.25s ease, filter 0.25s ease;
}

.button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button--large { min-width: 248px; }

.button--primary {
  color: #fff;
  background: linear-gradient(135deg, #1f88f5, #1658d7);
  box-shadow: 0 16px 32px rgba(22, 88, 215, 0.22);
}

.button--ghost {
  color: var(--primary-dark);
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(25, 94, 230, 0.14);
  box-shadow: 0 12px 26px rgba(19, 54, 107, 0.08);
}

.button:hover {
  transform: translateY(-2px);
  filter: brightness(1.02);
}

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

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

.privacy-note svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: var(--primary);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.watch-scene {
  position: relative;
  min-height: 540px;
  isolation: isolate;
}

.watch-scene__ring {
  position: absolute;
  border: 1px solid rgba(25, 94, 230, 0.14);
  border-radius: 50%;
}

.watch-scene__ring--one {
  inset: 44px 14px 48px;
  transform: rotate(-14deg);
}

.watch-scene__ring--two {
  inset: 90px 70px 92px;
  border-style: dashed;
  transform: rotate(18deg);
}

.watch {
  position: absolute;
  display: grid;
  width: 124px;
  height: 208px;
  padding-top: 70px;
  border: 8px solid #131c2d;
  border-radius: 26px;
  color: #fff;
  background: linear-gradient(150deg, #0a1630, #14386a 58%, #50b7ff);
  box-shadow: 0 22px 38px rgba(19, 54, 107, 0.23);
  place-items: center;
  text-align: center;
}

.watch::before,
.watch::after {
  position: absolute;
  left: 50%;
  width: 8px;
  height: 152px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255,255,255,0.35), rgba(255,255,255,0));
  content: "";
  transform: translateX(-50%);
  opacity: 0.4;
}

.watch::before { top: 16px; }
.watch::after { display: none; }

.watch i {
  position: absolute;
  top: 18px;
  left: 50%;
  width: 72px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  transform: translateX(-50%);
}

.watch b {
  font-size: 0.88rem;
  letter-spacing: 0.06em;
}

.watch span {
  margin-top: -4px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.watch--se {
  left: 24px;
  bottom: 116px;
  transform: rotate(-12deg) scale(0.92);
}

.watch--series {
  left: 50%;
  top: 74px;
  width: 168px;
  height: 214px;
  padding-top: 72px;
  background: linear-gradient(145deg, #102042, #1754b6 58%, #4cc8ff);
  transform: translateX(-50%);
}

.watch--series::before,
.watch--series::after {
  width: 10px;
  height: 166px;
}

.watch--ultra {
  right: 24px;
  bottom: 82px;
  border-radius: 26px;
  background: linear-gradient(145deg, #252932, #515968 56%, #ff9f4a);
  transform: rotate(10deg) scale(1.02);
}

.watch--ultra::before,
.watch--ultra::after {
  background: linear-gradient(180deg, rgba(255,255,255,0.35), rgba(255,255,255,0));
}

.scene-chip {
  position: absolute;
  z-index: 3;
  display: inline-grid;
  min-height: 32px;
  padding: 7px 12px;
  border: 1px solid rgba(25, 94, 230, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 12px 24px rgba(19, 54, 107, 0.08);
  place-items: center;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.scene-chip--daily {
  top: 26px;
  left: 14px;
  color: var(--primary);
  transform: rotate(-8deg);
}

.scene-chip--health {
  top: 22px;
  right: 18px;
  color: var(--success);
  transform: rotate(7deg);
}

.scene-chip--sport {
  right: 94px;
  bottom: 24px;
  color: var(--warning);
  transform: rotate(-4deg);
}

.scene-panel {
  position: absolute;
  left: 50%;
  bottom: 10px;
  width: 270px;
  padding: 18px 18px 16px;
  border: 1px solid rgba(25, 94, 230, 0.14);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
  transform: translateX(-50%);
}

.scene-panel p {
  margin: 0 0 12px;
  color: var(--primary);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.scene-panel div {
  display: grid;
  grid-template-columns: 72px 1fr;
  align-items: center;
  gap: 10px;
}

.scene-panel div + div { margin-top: 8px; }

.scene-panel span {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 700;
}

.scene-panel b {
  position: relative;
  display: block;
  height: 9px;
  border-radius: 999px;
  background: rgba(25, 94, 230, 0.08);
  overflow: hidden;
}

.scene-panel b::after {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  content: "";
}

.scene-panel div:nth-child(2) b::after { width: 52%; }
.scene-panel div:nth-child(3) b::after { width: 74%; }
.scene-panel div:nth-child(4) b::after { width: 88%; }

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

.how {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(235, 243, 251, 0.8));
}

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

.section-kicker {
  margin: 0 0 8px;
  color: var(--primary);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.how h2,
.comparison-guide h2,
.model-comparison h2 {
  margin: 0;
  color: var(--primary-dark);
  font-size: clamp(1.8rem, 3.2vw, 2.7rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.25;
}

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

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

.step {
  display: grid;
  grid-template-columns: 54px 1fr;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 14px 28px rgba(19, 54, 107, 0.07);
  gap: 16px;
  align-items: start;
}

.step > span {
  display: grid;
  width: 54px;
  height: 54px;
  border-radius: 16px;
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--primary));
  place-items: center;
  font-weight: 900;
}

.step h3 {
  margin: 0;
  font-size: 1rem;
  line-height: 1.4;
}

.step p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.87rem;
}

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

.quiz,
.results {
  padding: 74px 0;
}

.quiz-progress {
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
}

.quiz-progress__labels {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.88rem;
  font-weight: 800;
}

.progress-track {
  position: relative;
  height: 12px;
  margin-top: 14px;
  border-radius: 999px;
  background: rgba(25, 94, 230, 0.08);
  overflow: hidden;
}

.progress-track span {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent), var(--primary));
}

.question-panel {
  margin-top: 22px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}

.question-panel__kicker {
  margin: 0;
  color: var(--primary);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.question-panel h2 {
  margin: 12px 0 0;
  color: var(--primary-dark);
  font-size: clamp(1.55rem, 2.9vw, 2.3rem);
  line-height: 1.36;
  letter-spacing: -0.04em;
}

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

.answer {
  width: 100%;
  min-height: 62px;
  padding: 15px 18px;
  border: 1px solid rgba(25, 94, 230, 0.12);
  border-radius: 16px;
  color: var(--text);
  background: linear-gradient(180deg, #fff, #f7faff);
  cursor: pointer;
  text-align: left;
  transition: transform 0.2s var(--ease), border-color 0.2s ease, box-shadow 0.2s ease;
}

.answer:hover {
  border-color: rgba(25, 94, 230, 0.26);
  box-shadow: 0 12px 20px rgba(19, 54, 107, 0.08);
  transform: translateY(-1px);
}

.back-button {
  display: inline-flex;
  min-height: 48px;
  margin-top: 18px;
  padding: 10px 14px;
  border: 0;
  border-radius: 12px;
  color: var(--primary-dark);
  background: rgba(25, 94, 230, 0.08);
  cursor: pointer;
  align-items: center;
  gap: 8px;
  font-weight: 800;
}

.back-button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.result-hero {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.score-wrap,
.result-copy,
.insight-block,
.model-comparison,
.comparison-guide__inner,
.disclaimer {
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}

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

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

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

.score-ring__track { stroke: rgba(25, 94, 230, 0.08); }

.score-ring__value {
  stroke: url(#scoreGradient);
  stroke: var(--primary);
  stroke-linecap: round;
  transition: stroke-dashoffset 0.4s ease;
}

.score-center {
  margin-top: -176px;
  display: grid;
  place-items: center;
  text-align: center;
}

.score-center span,
.score-center em {
  color: var(--muted);
  font-size: 0.74rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.score-center strong {
  display: flex;
  margin: 6px 0;
  align-items: flex-end;
  gap: 4px;
  color: var(--primary-dark);
  font-size: 3rem;
  line-height: 1;
}

.score-center small {
  font-size: 1.1rem;
  transform: translateY(-4px);
}

.result-copy {
  padding: 30px;
}

.result-copy__title {
  margin: 10px 0 0;
  color: var(--primary-dark);
  font-size: 1.55rem;
  font-weight: 900;
  line-height: 1.45;
}

.result-copy__description {
  margin: 12px 0 0;
  color: #38506b;
}

.model-result {
  margin-top: 24px;
  padding: 22px;
  border-radius: 22px;
  background: linear-gradient(180deg, #f9fbff, #f3f8ff);
}

.model-badge {
  display: inline-flex;
  margin: 0;
  padding: 7px 12px;
  border-radius: 999px;
  color: var(--primary);
  background: rgba(25, 94, 230, 0.1);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.model-result h3 {
  margin: 12px 0 0;
  color: var(--primary-dark);
  font-size: 1.5rem;
  line-height: 1.4;
}

.model-visual {
  position: relative;
  height: 160px;
  margin: 18px 0 16px;
  overflow: hidden;
}

.model-visual span {
  position: absolute;
  left: 50%;
  top: 18px;
  width: 112px;
  height: 132px;
  border: 9px solid #152034;
  border-radius: 26px;
  background: linear-gradient(145deg, #0f1f42, #1753b3 58%, #4cc8ff);
  box-shadow: 0 18px 30px rgba(19, 54, 107, 0.18);
  transform: translateX(-50%);
}

.model-visual span::before,
.model-visual span::after {
  position: absolute;
  left: 28px;
  width: 36px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(180deg, #172132, #273550);
  content: "";
  z-index: -1;
}

.model-visual span::before { top: -42px; }
.model-visual span::after { bottom: -42px; }

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

.model-visual i {
  top: 42px;
  left: 50%;
  width: 42px;
  height: 42px;
  border: 4px solid rgba(255, 255, 255, 0.88);
  border-radius: 14px;
  transform: translateX(-50%);
}

.model-visual b {
  left: 50%;
  bottom: 48px;
  color: #fff;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  transform: translateX(-50%);
}

.model-visual em {
  left: 50%;
  bottom: 28px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  transform: translateX(-50%);
}

.model-visual[data-model="flip7"] span {
  width: 96px;
  height: 138px;
  border-radius: 24px;
  background: linear-gradient(145deg, #13244a, #1958bf 58%, #4cc8ff);
}

.model-visual[data-model="flip7"] span::before,
.model-visual[data-model="flip7"] span::after {
  left: 44px;
  width: 6px;
  height: 36px;
  border-radius: 999px;
  background: linear-gradient(180deg, #1f2c40, #4a5b79);
}

.model-visual[data-model="flip7"] b::after {
  content: "FLIP7";
}

.model-visual[data-model="fold7"] span {
  width: 132px;
  height: 130px;
  border-radius: 18px;
  background: linear-gradient(145deg, #102042, #1754b6 58%, #4cc8ff);
}

.model-visual[data-model="fold7"] span::before,
.model-visual[data-model="fold7"] span::after {
  left: 60px;
  width: 10px;
  height: 108px;
  border-radius: 999px;
  background: linear-gradient(180deg, #d0ddf7, rgba(208, 221, 247, 0.2));
  top: 12px;
}

.model-visual[data-model="fold7"] span::after {
  display: none;
}

.model-visual[data-model="fold7"] i {
  width: 54px;
  border-radius: 999px;
}

.model-visual[data-model="fold7"] b::after {
  content: "FOLD7";
}

.model-visual[data-model="pixel10"] span {
  width: 128px;
  height: 132px;
  border-radius: 18px;
  background: linear-gradient(145deg, #1d2f22, #4a8b58 48%, #a4d36b);
}

.model-visual[data-model="pixel10"] span::before,
.model-visual[data-model="pixel10"] span::after {
  left: 59px;
  width: 10px;
  height: 110px;
  border-radius: 999px;
  background: linear-gradient(180deg, #d4efd6, rgba(212,239,214,0.18));
  top: 12px;
}

.model-visual[data-model="pixel10"] span::after {
  display: none;
}

.model-visual[data-model="pixel10"] b::after {
  content: "PIXEL";
}

.model-visual[data-model="razr60"] span {
  width: 100px;
  height: 140px;
  border-radius: 24px;
  background: linear-gradient(145deg, #2a2f39, #6c3f3f 42%, #ff9f4a);
}

.model-visual[data-model="razr60"] span::before,
.model-visual[data-model="razr60"] span::after {
  left: 46px;
  width: 7px;
  height: 38px;
  border-radius: 999px;
  background: linear-gradient(180deg, #4c5360, #838c9d);
}

.model-visual[data-model="razr60"] i {
  width: 60px;
  border-radius: 12px;
}

.model-visual[data-model="razr60"] b::after {
  content: "RAZR";
}

.model-visual[data-model="wait"] span {
  border-style: dashed;
  background: linear-gradient(145deg, #dfe7f2, #f4f7fb);
}

.model-visual[data-model="wait"] i {
  border-color: rgba(21, 37, 61, 0.42);
}

.model-visual[data-model="wait"] b,
.model-visual[data-model="wait"] em {
  color: var(--primary-dark);
}

.model-visual[data-model="wait"] b::after {
  content: "WAIT";
}

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

.model-result li,
.insight-list li {
  position: relative;
  padding-left: 24px;
}

.model-result li::before,
.insight-list li::before {
  position: absolute;
  top: 0.15em;
  left: 0;
  display: grid;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--primary));
  content: "✓";
  place-items: center;
  font-size: 0.64rem;
  font-weight: 900;
}

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

.result-link {
  display: inline-flex;
  min-height: 48px;
  padding: 12px 16px;
  border-radius: 12px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 800;
}

.result-link--official {
  color: #fff;
  background: linear-gradient(135deg, var(--primary), #143f97);
}

.result-link--amazon {
  color: #3d2c0d;
  background: #f4ddb5;
}

.result-link--rakuten {
  color: #7d1624;
  background: #ffd9de;
}

.result-link--review {
  color: var(--primary-dark);
  background: rgba(25, 94, 230, 0.08);
}

.low-score-guide {
  display: flex;
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 16px;
  color: #465b76;
  background: rgba(25, 94, 230, 0.06);
  align-items: flex-start;
  gap: 10px;
  font-size: 0.86rem;
}

.low-score-guide svg {
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin-top: 3px;
  fill: none;
  stroke: var(--primary);
  stroke-width: 1.9;
}

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

.insight-block {
  padding: 24px;
}

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

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

.insight-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.insight-icon--positive {
  color: var(--success);
  background: rgba(28, 140, 104, 0.12);
}

.insight-icon--caution {
  color: var(--warning);
  background: rgba(184, 107, 19, 0.12);
}

.insight-block__heading p {
  margin: 0 0 4px;
  color: var(--primary);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.insight-block__heading h3 {
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.4;
}

.model-comparison,
.comparison-guide__inner,
.disclaimer {
  padding: 28px;
  margin-top: 22px;
}

.model-comparison__heading p:last-child,
.comparison-guide__lead,
.disclaimer p {
  color: var(--muted);
}

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

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

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

thead th {
  color: var(--primary-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

tbody tr.is-highlighted {
  background: rgba(25, 94, 230, 0.06);
}

.comparison-guide__content h3 {
  margin: 22px 0 8px;
  color: var(--primary-dark);
  font-size: 1.16rem;
  line-height: 1.5;
}

.comparison-guide__content p {
  margin: 0;
  color: #38506b;
}

.restart-area {
  margin-top: 22px;
  text-align: center;
}

.disclaimer h2 {
  margin: 0 0 12px;
  color: var(--primary-dark);
  font-size: 1.15rem;
}

.disclaimer p {
  margin: 0;
  font-size: 0.88rem;
}

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

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(25, 94, 230, 0.35);
  outline-offset: 4px;
}

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

  .watch-scene {
    width: min(100%, 620px);
    margin-inline: auto;
  }

  .result-hero { gap: 20px; }
}

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

  .hero {
    padding: 52px 0 52px;
  }

  .hero__content {
    text-align: center;
  }

  .hero__lead,
  .hero__detail {
    margin-inline: auto;
  }

  .hero__actions {
    justify-content: center;
  }

  .button--large {
    width: 100%;
    min-width: 0;
  }

  .watch-scene {
    min-height: 470px;
    transform: scale(0.9);
    transform-origin: top center;
  }

  .question-panel,
  .result-copy,
  .model-comparison,
  .comparison-guide__inner,
  .disclaimer,
  .insight-block {
    padding: 22px;
  }
}

@media (max-width: 560px) {
  .hero h1 {
    font-size: clamp(2.2rem, 11vw, 3rem);
  }

  .watch-scene {
    min-height: 410px;
    margin: -10px -18px 0;
    transform: scale(0.74);
  }

  .watch--se { left: 8px; }
  .watch--ultra { right: 10px; }

  .question-panel {
    padding: 22px 18px;
  }

  .answer {
    min-height: 58px;
    padding: 14px 15px;
  }

  .result-links {
    flex-direction: column;
  }

  .result-link {
    width: 100%;
  }

  table {
    min-width: 0;
  }

  thead {
    display: none;
  }

  tbody,
  tr,
  td,
  th {
    display: block;
    width: 100%;
  }

  tbody tr {
    padding: 14px 0;
    border-bottom: 1px solid rgba(21, 37, 61, 0.08);
  }

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

  tbody th {
    padding: 0 0 10px;
    border: 0;
    font-size: 1rem;
  }

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

  tbody td::before {
    display: block;
    margin-bottom: 2px;
    color: var(--muted);
    content: attr(data-label);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.08em;
  }
}

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