:root {
  --white: #ffffff;
  --ink: #05070c;
  --muted: #656b76;
  --soft: #9aa2ad;
  --line: #dfe3e8;
  --line-strong: #cfd5dd;
  --blue: #05070c;
  --green: #23835c;
  --blackbar: #080c12;
  --max: 1680px;
  --topbar-h: 66px;
  --stepbar-h: 60px;
}

* { box-sizing: border-box; }

html {
  height: 100%;
  overflow: hidden;
  scroll-behavior: smooth;
}

body {
  position: fixed;
  inset: 0;
  width: 100%;
  margin: 0;
  height: 100dvh;
  color: var(--ink);
  background: #fff;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow: hidden;
  overscroll-behavior: none;
  padding-bottom: 0;
}

html[data-step="cover"],
html[data-step="cover"] body,
body[data-step="cover"] {
  overflow: hidden;
  overscroll-behavior: none;
}

body[data-step="cover"] {
  padding-bottom: 0;
}

a { color: inherit; text-decoration: none; }
button, textarea { font: inherit; letter-spacing: 0; }
button { border: 0; cursor: pointer; }

main {
  height: calc(100dvh - var(--topbar-h) - var(--stepbar-h));
  overflow: hidden;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  min-height: var(--topbar-h);
  padding: 0 max(34px, calc((100vw - var(--max)) / 2));
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(18px) saturate(160%);
}

.top-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #161b22;
  font-size: 14px;
  font-weight: 720;
}

.top-actions button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  color: inherit;
  background: transparent;
}

.top-actions button[data-summary-toggle] {
  padding: 0;
}

.language-toggle {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.7);
}

.language-toggle button {
  min-width: 36px;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 760;
}

.language-toggle button[aria-pressed="true"] {
  color: #fff;
  background: var(--ink);
}

.hero {
  position: relative;
  display: grid;
  align-items: center;
  height: 100%;
  min-height: 0;
  overflow: hidden;
}

body:not([data-step="cover"]) .hero {
  display: none;
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 max(34px, calc((100vw - var(--max)) / 2));
}

.kicker {
  margin: 0 0 18px;
  color: #151922;
  font-size: 14px;
  line-height: 1;
  font-weight: 820;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 820px;
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", "Songti SC", "Noto Serif CJK SC", serif;
  font-size: clamp(44px, 4.7vw, 68px);
  line-height: .96;
  font-weight: 760;
  letter-spacing: 0;
}

.hero-title span {
  display: block;
}

html[data-lang="en"] .hero-title span {
  display: inline;
}

.hero p:not(.kicker) {
  max-width: 760px;
  margin: 21px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.62;
}

.brief-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 860px;
  margin-top: 21px;
  padding-top: 17px;
  border-top: 1px solid var(--line);
}

.brief-grid div {
  min-height: 44px;
  padding-right: 34px;
  border-right: 1px solid var(--line);
}

.brief-grid div + div {
  padding-left: 34px;
}

.brief-grid div:last-child {
  border-right: 0;
}

.brief-grid span {
  display: block;
  color: #69707c;
  font-size: 11px;
  font-weight: 720;
}

.brief-grid strong {
  display: block;
  margin-top: 8px;
  color: var(--ink);
  font-size: 17px;
  line-height: 1.2;
  font-weight: 560;
}

.hero-lines {
  position: absolute;
  top: -220px;
  right: 0;
  width: 640px;
  height: 560px;
  color: #727983;
  opacity: .42;
}

.arc {
  position: absolute;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.arc-one {
  inset: -54px -126px 168px 18px;
}

.arc-two {
  inset: 48px -18px 32px -120px;
}

.arc-three {
  inset: 84px 178px -16px -20px;
  transform: rotate(-32deg);
}

.axis {
  position: absolute;
  right: 168px;
  top: 0;
  bottom: -40px;
  width: 1px;
  background: currentColor;
  opacity: .55;
}

.line-node {
  position: absolute;
  right: 163px;
  bottom: 68px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #20252d;
}

.survey {
  display: flex;
  align-items: center;
  max-width: var(--max);
  height: 100%;
  min-height: 0;
  margin: 0 auto;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 28px max(34px, calc((100vw - var(--max)) / 2)) 34px;
}

body[data-step="cover"] .survey {
  display: none;
}

.step-panel[hidden] { display: none !important; }

.step-panel {
  width: 100%;
  margin-block: auto;
}

.step-heading {
  max-width: 640px;
  margin-bottom: 16px;
}

.step-heading p {
  display: none;
}

.step-heading h2 {
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", "Songti SC", "Noto Serif CJK SC", serif;
  font-size: clamp(27px, 2.35vw, 34px);
  line-height: 1.12;
  font-weight: 740;
  letter-spacing: 0;
}

.question-title span {
  display: block;
}

html[data-lang="en"] .question-title span {
  display: inline;
}

.step-heading span {
  display: block;
  margin-top: 11px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

legend {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.direction-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  max-width: 1120px;
}

.direction-card {
  display: grid;
  gap: 10px;
  min-width: 0;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 10px 26px rgba(18, 24, 31, .035);
}

.direction-card[data-selected] {
  border-color: var(--ink);
  background: #f5f6f7;
  box-shadow: 0 0 0 1px rgba(5, 7, 12, .12), 0 16px 32px rgba(5, 7, 12, .08);
}

.direction-choice {
  display: grid;
  grid-template-columns: 24px auto 1fr auto;
  align-items: center;
  gap: 10px;
  min-height: 24px;
  cursor: pointer;
}

.direction-choice input {
  position: absolute;
  opacity: 0;
}

.choice-dot {
  width: 20px;
  height: 20px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: #fff;
}

.direction-card[data-selected] .choice-dot {
  border: 6px solid var(--ink);
}

.direction-choice strong {
  min-width: 0;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.15;
  font-weight: 640;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.direction-choice em {
  color: #38404b;
  font-size: 11px;
  font-style: normal;
  font-weight: 610;
  white-space: nowrap;
}

.visual-card {
  align-content: start;
}

.visual-choice {
  grid-template-columns: 22px minmax(0, 1fr);
  align-items: start;
  padding: 2px 2px 0;
}

.visual-copy {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.visual-choice .visual-copy strong {
  white-space: normal;
  overflow: visible;
  text-overflow: clip;
  font-size: 15px;
  line-height: 1.25;
}

.visual-choice .visual-copy em {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.42;
  white-space: normal;
}

.visual-reference {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #f5f6f7;
}

.website-shot {
  position: relative;
  min-height: 166px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 7px;
}

.shot-brand,
.shot-nav {
  position: absolute;
  z-index: 3;
  top: 15px;
  color: currentColor;
  font-size: 6px;
  font-weight: 760;
  letter-spacing: .08em;
}

.shot-brand { left: 22px; }
.shot-nav {
  right: 18px;
  opacity: .72;
}

.shot-title {
  position: absolute;
  z-index: 3;
  left: 26px;
  top: 50px;
  max-width: 230px;
  color: currentColor;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
  line-height: 1.08;
  letter-spacing: 0;
}

.shot-infra {
  color: #fff;
  background:
    radial-gradient(circle at 74% 90%, rgba(255,255,255,.3), transparent 20%),
    linear-gradient(180deg, rgba(2,6,12,.34), rgba(2,6,12,.9)),
    #02050b;
}

.earth-curve {
  position: absolute;
  left: 20%;
  right: -22%;
  bottom: -88px;
  height: 182px;
  border-top: 2px solid rgba(255,255,255,.75);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 0%, rgba(255,255,255,.16), transparent 46%),
    repeating-linear-gradient(105deg, rgba(255,255,255,.14) 0 1px, transparent 1px 18px);
  box-shadow: 0 -16px 50px rgba(255,255,255,.12);
}

.shot-atlas {
  color: #101318;
  background:
    radial-gradient(circle at 68% 46%, rgba(0,0,0,.08), transparent 28%),
    linear-gradient(180deg, #fff, #f7f8fa);
}

.shot-atlas::before {
  content: "";
  position: absolute;
  inset: 54px 16px 38px;
  background:
    linear-gradient(90deg, transparent, rgba(30,35,43,.06), transparent),
    radial-gradient(circle at 34% 48%, rgba(30,35,43,.08), transparent 22%);
  clip-path: polygon(6% 42%, 20% 28%, 38% 30%, 55% 16%, 75% 32%, 92% 26%, 96% 64%, 80% 70%, 62% 58%, 42% 72%, 20% 62%);
}

.map-line {
  position: absolute;
  left: 18px;
  right: 18px;
  height: 120px;
  border: 1px solid rgba(20,28,40,.18);
  border-color: rgba(20,28,40,.18) transparent transparent transparent;
  border-radius: 50%;
}

.map-line.one { top: 82px; transform: rotate(-9deg); }
.map-line.two { top: 108px; transform: rotate(12deg); }

.map-dot {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #121820;
}

.map-dot.a { top: 91px; left: 48%; }
.map-dot.b { top: 122px; left: 67%; }
.map-dot.c { top: 139px; left: 38%; }

.map-metric {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 18px;
  color: #0e1116;
  font-size: 13px;
  font-weight: 740;
}

.shot-trust {
  color: #fff;
  background:
    linear-gradient(90deg, rgba(0,0,0,.64), rgba(0,0,0,.12)),
    linear-gradient(140deg, #3a3d3e, #879092 45%, #1f2324 100%);
}

.site-frame {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, transparent 0 50%, rgba(0,0,0,.2) 50% 51%, transparent 51%),
    repeating-linear-gradient(92deg, rgba(255,255,255,.12) 0 1px, transparent 1px 18px);
  opacity: .45;
}

.worker {
  position: absolute;
  right: 46px;
  bottom: 0;
  width: 78px;
  height: 138px;
  border-radius: 42px 42px 0 0;
  background:
    linear-gradient(90deg, transparent 0 38%, rgba(255,255,255,.52) 38% 45%, transparent 45%),
    linear-gradient(180deg, #ccd7da 0 18%, #9db44c 18% 66%, #24303a 66%);
  box-shadow: 0 0 34px rgba(0,0,0,.35);
}

.shot-os {
  color: #fff;
  background:
    radial-gradient(circle at 70% 44%, rgba(255, 255, 255, .12), transparent 34%),
    repeating-linear-gradient(0deg, rgba(255,255,255,.04) 0 1px, transparent 1px 32px),
    repeating-linear-gradient(90deg, rgba(255,255,255,.04) 0 1px, transparent 1px 32px),
    #05090f;
}

.os-grid {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 25px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.os-grid i {
  display: block;
  min-height: 42px;
  padding: 8px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 6px;
  color: rgba(255,255,255,.78);
  background: rgba(255,255,255,.04);
  font-size: 8px;
  font-style: normal;
  overflow: hidden;
}

.direction-card ul {
  display: grid;
  gap: 3px;
  margin: 0;
  padding: 0 0 0 18px;
  color: #11151b;
  font-size: 11px;
  line-height: 1.25;
}

.rating {
  display: grid;
  gap: 6px;
  padding-top: 8px;
  border-top: 1px solid var(--line);
}

.rating > span {
  color: #161b22;
  font-size: 11px;
  font-weight: 650;
}

.rating div {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
}

.rating label {
  position: relative;
  display: grid;
  place-items: center;
  height: 24px;
  border: 1px solid var(--line);
  border-radius: 5px;
  color: #161b22;
  background: #fff;
  font-size: 12px;
  cursor: pointer;
}

.rating input {
  position: absolute;
  opacity: 0;
}

.rating label:has(input:checked) {
  border-color: var(--ink);
  color: #fff;
  background: var(--ink);
}

.note-box {
  position: relative;
  display: grid;
  gap: 2px;
  max-width: 820px;
  margin-top: 12px;
  padding: 6px 12px 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.note-box span {
  color: #151a22;
  font-size: 12px;
  font-weight: 670;
}

.note-box textarea {
  width: 100%;
  min-height: 28px;
  resize: vertical;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 5px 12px;
  color: var(--ink);
  background: #fff;
  outline: none;
}

.note-box textarea:focus {
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(5, 7, 12, .08);
}

.note-box small {
  position: absolute;
  right: 20px;
  bottom: 12px;
  color: var(--soft);
  font-size: 11px;
}

.question-list {
  display: grid;
  max-width: 980px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.question-list.two-col {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.question-list label {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 13px;
  align-items: start;
  min-height: 58px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
  color: #151a22;
  font-size: 15px;
  line-height: 1.45;
  cursor: pointer;
}

.question-list.two-col label:nth-of-type(odd) {
  border-right: 1px solid var(--line);
}

.question-list label:last-child,
.question-list.two-col label:nth-last-of-type(-n+2) {
  border-bottom: 0;
}

input[type="radio"],
input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  display: grid;
  place-content: center;
  width: 16px;
  height: 16px;
  margin: 2px 0 0;
  border: 1.5px solid #7b838f;
  background: #fff;
  accent-color: var(--ink);
  transition: border-color .16s ease, background .16s ease, box-shadow .16s ease;
}

input[type="radio"] {
  border-radius: 50%;
}

input[type="checkbox"] {
  border-radius: 3px;
}

input[type="radio"]:checked {
  border-color: var(--ink);
  background: var(--ink);
  box-shadow: inset 0 0 0 4px #fff;
}

input[type="checkbox"]::after {
  content: "";
  width: 8px;
  height: 5px;
  border: solid #fff;
  border-width: 0 0 1.8px 1.8px;
  transform: rotate(-45deg) scale(0);
  transform-origin: center;
}

input[type="checkbox"]:checked {
  border-color: var(--ink);
  background: var(--ink);
}

input[type="checkbox"]:checked::after {
  transform: rotate(-45deg) scale(1);
}

input[type="radio"]:focus-visible,
input[type="checkbox"]:focus-visible {
  outline: 2px solid rgba(5, 7, 12, .32);
  outline-offset: 3px;
}

.question-list label[data-selected] {
  background: #f4f5f6;
}

.field-note {
  max-width: 860px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.field-note + .question-list {
  margin-top: 14px;
}

.form-status {
  position: fixed;
  left: 50%;
  bottom: calc(var(--stepbar-h) + 14px);
  z-index: 70;
  max-width: min(520px, calc(100vw - 36px));
  margin: 0;
  padding: 10px 14px;
  border: 1px solid rgba(5, 7, 12, .12);
  border-radius: 999px;
  color: #11161d;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 18px 48px rgba(8, 12, 18, .12);
  transform: translateX(-50%);
  font-size: 13px;
  line-height: 1.35;
  font-weight: 680;
  text-align: center;
}

.form-status:empty {
  display: none;
}

.summary-drawer {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: none;
  justify-content: flex-end;
  background: rgba(5, 7, 12, .28);
  backdrop-filter: blur(3px) saturate(112%);
}

.summary-drawer.is-open {
  display: flex;
}

.summary-card {
  width: min(392px, 100vw);
  height: 100dvh;
  max-height: 100dvh;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  overflow: hidden;
  border-left: 1px solid rgba(207, 213, 221, .88);
  background: linear-gradient(180deg, #fff 0%, #fbfcfe 100%);
  box-shadow: -24px 0 72px rgba(5, 7, 12, .16);
}

.summary-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding: 30px 28px 22px;
  border-bottom: 1px solid rgba(223, 227, 232, .94);
  background: rgba(255, 255, 255, .88);
}

.summary-close {
  position: relative;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  padding: 0;
  border: 1px solid rgba(207, 213, 221, .92);
  border-radius: 50%;
  color: #5f6875;
  background: rgba(255, 255, 255, .86);
  font-size: 0;
  line-height: 0;
  transition: background .18s ease, color .18s ease, border-color .18s ease;
}

.summary-close::before,
.summary-close::after {
  position: absolute;
  content: "";
  width: 12px;
  height: 1.5px;
  border-radius: 999px;
  background: currentColor;
}

.summary-close::before {
  transform: rotate(45deg);
}

.summary-close::after {
  transform: rotate(-45deg);
}

.summary-close:hover {
  border-color: #b9c0ca;
  color: var(--ink);
  background: #f6f8fa;
}

.summary-label {
  margin: 0 0 8px;
  color: #687180;
  font-size: 11px;
  font-weight: 780;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.summary-card h2 {
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", "Songti SC", serif;
  font-size: 28px;
  line-height: 1.12;
  letter-spacing: 0;
}

.summary-card dl {
  display: grid;
  align-content: start;
  min-height: 0;
  margin: 0;
  padding: 8px 28px 18px;
  overflow: auto;
  overscroll-behavior: contain;
}

.summary-card dl div {
  display: grid;
  gap: 5px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(223, 227, 232, .9);
}

.summary-card dt {
  color: #687180;
  font-size: 11px;
  font-weight: 760;
  line-height: 1.3;
}

.summary-card dd {
  margin: 0;
  color: #151a22;
  font-size: 13px;
  line-height: 1.46;
}

.summary-footer {
  padding: 12px 28px;
  border-top: 1px solid rgba(223, 227, 232, .94);
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 -14px 34px rgba(5, 7, 12, .06);
}

.summary-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 0;
}

.summary-actions button {
  min-height: 42px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 720;
  transition: background .18s ease, border-color .18s ease, color .18s ease;
}

.summary-actions button:first-child {
  color: #fff;
  background: var(--ink);
}

.summary-actions button:last-child {
  border: 1px solid var(--line);
  color: var(--ink);
  background: #fff;
}

.summary-actions button:last-child:hover {
  border-color: #b9c0ca;
  background: #f6f8fa;
}

.copy-status {
  min-height: 18px;
  margin: 8px 0 0;
  color: var(--green);
  font-size: 12px;
  line-height: 1.35;
}

.copy-status:empty {
  display: none;
}

.stepbar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr) 180px;
  align-items: center;
  gap: 24px;
  min-height: var(--stepbar-h);
  padding: 0 max(34px, calc((100vw - var(--max)) / 2));
  background:
    radial-gradient(circle at 18% 10%, rgba(255,255,255,.12), transparent 28%),
    var(--blackbar);
  color: #fff;
}

.stepbar button {
  height: 36px;
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 6px;
  color: #fff;
  background: transparent;
  font-size: 15px;
  font-weight: 680;
}

.stepbar button:last-child {
  color: var(--ink);
  border-color: #fff;
  background: #fff;
}

.stepbar button:disabled {
  opacity: .4;
  cursor: default;
}

body[data-step="cover"] .stepbar {
  grid-template-columns: minmax(0, 1fr) 180px;
}

body[data-step="cover"] .stepbar button[data-prev],
body[data-step="cover"] .step-progress {
  display: none;
}

body[data-step="cover"] .stepbar button[data-next] {
  grid-column: 2;
  justify-self: stretch;
}

.step-progress {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 26px;
}

.step-progress strong {
  font-size: 16px;
  font-weight: 520;
}

.step-progress span {
  display: block;
  height: 2px;
  overflow: hidden;
  background: rgba(255,255,255,.24);
}

.step-progress i {
  display: block;
  width: 14.285%;
  height: 100%;
  background: #fff;
  transition: width .22s ease;
}

@media (max-width: 1180px) {
  .direction-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-lines {
    right: -260px;
  }
}

@media (max-width: 760px) {
  :root {
    --topbar-h: 58px;
    --stepbar-h: 64px;
  }

  body {
    height: 100dvh;
    padding-bottom: 0;
  }

  .topbar {
    min-height: var(--topbar-h);
    padding: 0 20px;
  }

  .top-actions {
    gap: 12px;
    font-size: 13px;
  }

  .top-actions button[data-summary-toggle] {
    display: inline-flex;
    min-height: 34px;
  }

  .language-toggle button {
    min-width: 34px;
    min-height: 28px;
    padding: 0 9px;
  }

  .summary-drawer {
    justify-content: stretch;
  }

  .summary-card {
    width: 100vw;
    border-left: 0;
  }

  .summary-head {
    padding: 22px 22px 18px;
    gap: 16px;
  }

  .summary-card h2 {
    font-size: 25px;
    line-height: 1.14;
  }

  .summary-card dl {
    padding: 6px 22px 16px;
  }

  .summary-card dl div {
    padding: 12px 0;
  }

  .summary-footer {
    padding: 12px 22px calc(12px + env(safe-area-inset-bottom));
  }

  .hero {
    height: 100%;
  }

  .hero-copy {
    padding: 0 22px;
  }

  .kicker {
    margin-bottom: 17px;
    font-size: 11px;
    letter-spacing: .16em;
  }

  .hero h1 {
    max-width: 340px;
    font-size: clamp(37px, 10.4vw, 44px);
    line-height: 1.03;
    letter-spacing: 0;
    text-wrap: balance;
  }

  .hero p:not(.kicker) {
    max-width: 330px;
    margin-top: 22px;
    font-size: 14px;
    line-height: 1.78;
  }

  .brief-grid {
    max-width: 330px;
    margin-top: 24px;
    padding-top: 6px;
  }

  .hero-lines {
    display: none;
  }

  .brief-grid,
  .direction-grid,
  .question-list.two-col {
    grid-template-columns: 1fr;
  }

  .brief-grid div,
  .brief-grid div + div {
    min-height: auto;
    padding: 13px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .brief-grid span {
    font-size: 11px;
  }

  .brief-grid strong {
    margin-top: 7px;
    font-size: 15px;
    line-height: 1.25;
  }

  .brief-grid div:last-child {
    border-bottom: 0;
  }

  .survey {
    height: 100%;
    min-height: 0;
    padding: 24px 18px;
  }

  .step-panel {
    margin-block: auto;
  }

  .step-heading {
    max-width: 340px;
    margin-bottom: 18px;
  }

  .step-heading p {
    display: none;
  }

  .step-heading h2 {
    font-size: 25px;
    line-height: 1.18;
    letter-spacing: 0;
    text-wrap: balance;
  }

  .step-heading span {
    margin-top: 10px;
    font-size: 13px;
    line-height: 1.55;
  }

  .direction-grid {
    gap: 14px;
  }

  .direction-card {
    gap: 8px;
    padding: 12px;
    border-radius: 10px;
    box-shadow: none;
  }

  .direction-choice {
    grid-template-columns: 21px auto 1fr;
    gap: 9px;
  }

  .visual-choice {
    grid-template-columns: 20px minmax(0, 1fr);
  }

  .choice-dot {
    width: 18px;
    height: 18px;
  }

  .direction-choice strong {
    font-size: 14px;
    letter-spacing: 0;
  }

  .direction-choice em {
    grid-column: 3;
    font-size: 11px;
    color: #6b7280;
  }

  .website-shot {
    min-height: 116px;
    border-radius: 8px;
  }

  .shot-brand,
  .shot-nav {
    top: 12px;
    font-size: 5px;
  }

  .shot-nav {
    display: none;
  }

  .shot-brand {
    left: 16px;
  }

  .shot-nav {
    right: 14px;
  }

  .shot-title {
    left: 20px;
    top: 36px;
    max-width: 210px;
    font-size: 17px;
  }

  .earth-curve {
    bottom: -108px;
  }

  .os-grid {
    left: 20px;
    right: 20px;
    bottom: 14px;
    gap: 6px;
  }

  .os-grid i {
    min-height: 28px;
    padding: 6px;
    font-size: 7px;
  }

  .worker {
    right: 34px;
    width: 62px;
    height: 96px;
  }

  .direction-card ul {
    display: block;
    padding-left: 0;
    list-style: none;
    color: #3f4650;
    font-size: 12px;
    line-height: 1.48;
  }

  .direction-card ul li:nth-child(n+2) {
    display: none;
  }

  .rating {
    gap: 7px;
    padding-top: 8px;
  }

  .rating > span {
    font-size: 12px;
  }

  .rating div {
    gap: 7px;
  }

  .rating label {
    height: 29px;
    border-radius: 7px;
    font-size: 12px;
  }

  .note-box {
    max-width: none;
    margin-top: 14px;
    padding: 10px 12px 12px;
    border-radius: 10px;
  }

  .note-box textarea {
    min-height: 44px;
    padding: 10px 12px;
    font-size: 14px;
    line-height: 1.5;
  }

  .question-list {
    border-radius: 10px;
  }

  .question-list label {
    min-height: 56px;
    padding: 17px 16px;
    font-size: 15px;
    line-height: 1.5;
  }

  .question-list.two-col label:nth-of-type(odd) {
    border-right: 0;
  }

  .question-list.two-col label:nth-last-of-type(-n+2) {
    border-bottom: 1px solid var(--line);
  }

  .question-list.two-col label:last-child {
    border-bottom: 0;
  }

  .stepbar {
    grid-template-columns: minmax(74px, .75fr) 52px minmax(118px, 1fr);
    gap: 8px;
    min-height: var(--stepbar-h);
    padding: 0 14px;
  }

  .stepbar button {
    height: 38px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 680;
  }

  body[data-step="cover"] .stepbar {
    grid-template-columns: minmax(0, 1fr);
  }

  body[data-step="cover"] .stepbar button[data-next] {
    grid-column: 1;
  }

  .step-progress {
    display: block;
    text-align: center;
  }

  .step-progress strong {
    font-size: 13px;
    font-weight: 620;
  }

  .step-progress span {
    display: none;
  }
}

@media print {
  body {
    position: static;
    padding-bottom: 0;
  }

  .topbar,
  .stepbar,
  .summary-drawer {
    display: none !important;
  }

  .step-panel[hidden] {
    display: block !important;
    margin-top: 34px;
  }

  .hero,
  .direction-card,
  .question-list,
  .note-box {
    break-inside: avoid;
  }
}
