:root {
  --ink: #f5f6ef;
  --muted: #9ca9a2;
  --night: #08100e;
  --panel: #111b18;
  --panel-soft: #17231f;
  --line: rgba(231, 239, 233, 0.14);
  --acid: #c9ff45;
  --acid-dark: #9dd51a;
  --coral: #ff795f;
  --paper: #f2f1e9;
  --paper-ink: #15201c;
  --paper-muted: #66706b;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.3);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 17px;
  --content: 1160px;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 70% -10%, rgba(201, 255, 69, 0.1), transparent 29rem),
    linear-gradient(180deg, #08100e 0%, #0a1210 100%);
  font-family: Inter, "SF Pro Display", "PingFang SC", "Microsoft YaHei", sans-serif;
  -webkit-font-smoothing: antialiased;
}

button,
input,
select {
  font: inherit;
}

button,
select,
input,
summary,
a {
  -webkit-tap-highlight-color: transparent;
}

button,
summary,
label,
select {
  cursor: pointer;
}

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

[hidden] {
  display: none !important;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.page-grid {
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: 0.24;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, black, transparent 76%);
}

.app-header,
.hero,
.quiz-shell,
.results-shell,
.secondary-links,
.app-footer {
  width: min(var(--content), calc(100vw - 48px));
  margin-inline: auto;
}

.app-header {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.app-mark {
  display: inline-flex;
  align-items: center;
  gap: 13px;
}

.app-mark-grid {
  width: 35px;
  height: 35px;
  border: 1px solid rgba(201, 255, 69, 0.6);
  border-radius: 50%;
  background:
    repeating-linear-gradient(0deg, transparent 0 7px, rgba(201, 255, 69, 0.35) 7px 8px),
    repeating-linear-gradient(90deg, transparent 0 7px, rgba(201, 255, 69, 0.35) 7px 8px);
  box-shadow: inset 0 0 18px rgba(201, 255, 69, 0.08);
}

.app-mark > span:last-child {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.app-mark b {
  font-size: 13px;
  letter-spacing: 0.18em;
}

.app-mark small {
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.12em;
}

.stock-pill {
  min-height: 34px;
  padding: 0 13px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #c9d1cc;
  font-size: 12px;
}

.stock-pill i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 0 4px rgba(201, 255, 69, 0.1);
}

.hero {
  min-height: calc(100vh - 92px);
  padding: 72px 0 84px;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(360px, 0.8fr);
  align-items: center;
  gap: clamp(32px, 5vw, 72px);
}

.kicker,
.section-label {
  margin: 0;
  color: var(--acid);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.kicker span {
  margin-right: 12px;
  color: #66736c;
}

.hero h1 {
  max-width: 760px;
  margin: 23px 0 24px;
  font-size: clamp(46px, 5.2vw, 68px);
  line-height: 1.08;
  letter-spacing: -0.055em;
}

.hero h1 em {
  color: var(--acid);
  font-style: normal;
}

.hero-lead {
  max-width: 620px;
  margin: 0;
  color: #b7c1bb;
  font-size: clamp(17px, 1.7vw, 21px);
  line-height: 1.8;
}

.start-button {
  width: min(100%, 390px);
  min-height: 66px;
  margin-top: 38px;
  padding: 0 9px 0 25px;
  border: 0;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #11180f;
  background: var(--acid);
  font-weight: 800;
  box-shadow: 0 18px 46px rgba(157, 213, 26, 0.16);
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.start-button small {
  min-width: 87px;
  min-height: 48px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: var(--ink);
  background: #111915;
  font-size: 12px;
  font-weight: 650;
}

.start-button:not(:disabled):hover {
  transform: translateY(-2px);
  background: #d5ff6f;
  box-shadow: 0 22px 54px rgba(157, 213, 26, 0.23);
}

.start-button:disabled {
  cursor: wait;
  opacity: 0.52;
}

.load-status {
  min-height: 18px;
  margin: 11px 0 0 24px;
  color: #718078;
  font-size: 11px;
}

.load-status.is-error {
  color: #ff9c89;
}

.trust-list {
  margin: 34px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 11px 22px;
  color: #8e9b94;
  font-size: 12px;
  list-style: none;
}

.trust-list li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.trust-list i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #67756e;
}

.hero-visual {
  position: relative;
  min-height: 530px;
  display: grid;
  place-items: center;
}

.racket-head {
  position: absolute;
  width: 325px;
  aspect-ratio: 0.74;
  top: -28px;
  right: 35px;
  border: 3px solid rgba(221, 230, 222, 0.25);
  border-radius: 50% 50% 46% 46%;
  transform: rotate(16deg);
  box-shadow:
    0 0 0 6px rgba(8, 16, 14, 0.9),
    0 0 0 7px rgba(201, 255, 69, 0.17),
    inset 0 0 60px rgba(201, 255, 69, 0.03);
  overflow: hidden;
}

.racket-head::after {
  content: "";
  position: absolute;
  width: 35px;
  height: 160px;
  left: 50%;
  bottom: -138px;
  border: 3px solid rgba(221, 230, 222, 0.25);
  border-radius: 0 0 16px 16px;
  transform: translateX(-50%);
}

.racket-grid {
  position: absolute;
  inset: 16px;
  border-radius: inherit;
  opacity: 0.36;
  background:
    repeating-linear-gradient(0deg, transparent 0 13px, rgba(230, 238, 232, 0.5) 13px 14px),
    repeating-linear-gradient(90deg, transparent 0 13px, rgba(230, 238, 232, 0.5) 13px 14px);
}

.preview-ticket {
  position: relative;
  z-index: 2;
  width: min(100%, 390px);
  margin: 86px 0 0 -74px;
  padding: 19px;
  border: 1px solid rgba(238, 244, 239, 0.15);
  border-radius: 25px;
  background: rgba(18, 28, 24, 0.88);
  box-shadow: var(--shadow);
  backdrop-filter: blur(17px);
  transform: rotate(-3deg);
}

.preview-ticket-top {
  padding: 3px 4px 15px;
  display: flex;
  justify-content: space-between;
  color: #829088;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.preview-line {
  min-height: 82px;
  padding: 15px 17px;
  display: grid;
  grid-template-columns: 40px 1fr;
  align-items: center;
  gap: 13px;
  border-top: 1px solid var(--line);
}

.preview-line b {
  color: #68756e;
  font-size: 12px;
}

.preview-line span {
  color: #adb8b1;
  font-size: 12px;
  line-height: 1.5;
}

.preview-line small {
  display: block;
  margin-bottom: 4px;
  color: #f4f7f2;
  font-size: 14px;
  font-weight: 750;
}

.preview-line.is-primary {
  border: 0;
  border-radius: 15px;
  background: var(--acid);
}

.preview-line.is-primary b,
.preview-line.is-primary span,
.preview-line.is-primary small {
  color: #15200e;
}

.hero-orbit {
  position: absolute;
  border: 1px solid rgba(201, 255, 69, 0.18);
  border-radius: 50%;
}

.orbit-one {
  width: 185px;
  height: 185px;
  left: 0;
  bottom: 13px;
}

.orbit-two {
  width: 23px;
  height: 23px;
  right: 9px;
  bottom: 84px;
  background: var(--coral);
  border: 0;
  box-shadow: 0 0 40px rgba(255, 121, 95, 0.4);
}

.quiz-shell {
  margin-top: 50px;
  margin-bottom: 110px;
  padding: clamp(25px, 4.6vw, 58px);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(201, 255, 69, 0.035), transparent 38%),
    #101916;
  box-shadow: var(--shadow);
  scroll-margin-top: 28px;
}

.quiz-header {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.quiz-header h2,
.results-header h2 {
  margin: 12px 0 0;
  font-size: clamp(30px, 4vw, 47px);
  line-height: 1.16;
  letter-spacing: -0.035em;
}

.progress-copy {
  display: flex;
  align-items: baseline;
  color: #627068;
}

.progress-copy strong {
  color: var(--acid);
  font-size: 35px;
  font-weight: 650;
}

.progress-copy span {
  margin-left: 5px;
  font-size: 14px;
}

.progress-track {
  width: 100%;
  height: 2px;
  margin: 26px 0 42px;
  background: rgba(240, 246, 241, 0.08);
  overflow: hidden;
}

.progress-track span {
  display: block;
  width: 16.6667%;
  height: 100%;
  background: var(--acid);
  transition: width 260ms ease;
}

.quiz-step {
  min-height: 450px;
  animation: step-in 260ms ease both;
}

@keyframes step-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.step-intro {
  margin: 0 0 30px;
}

.step-intro p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.field-grid {
  display: grid;
  gap: 16px;
}

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

.three-columns {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.one-column {
  grid-template-columns: 1fr;
}

.field-block {
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: #dce2de;
  font-size: 13px;
  font-weight: 650;
}

.field-block > span:first-child small,
.choice-group legend small {
  color: #69776f;
  font-weight: 500;
}

.field-block select,
.field-block input[type="text"],
.field-block input[type="number"] {
  width: 100%;
  min-height: 57px;
  padding: 0 17px;
  border: 1px solid var(--line);
  border-radius: 14px;
  outline: 0;
  color: var(--ink);
  background: #0c1512;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.field-block select:focus,
.field-block input:focus {
  border-color: rgba(201, 255, 69, 0.7);
  box-shadow: 0 0 0 3px rgba(201, 255, 69, 0.08);
}

.field-block input::placeholder {
  color: #52605a;
}

.input-with-unit {
  position: relative;
  display: block;
}

.input-with-unit b {
  position: absolute;
  top: 50%;
  right: 17px;
  color: #718078;
  font-size: 12px;
  transform: translateY(-50%);
}

.input-with-unit input {
  padding-right: 48px !important;
}

.optional-field {
  margin-top: 24px;
}

.choice-group {
  min-width: 0;
  margin: 28px 0 0;
  padding: 0;
  border: 0;
}

.choice-group legend {
  width: 100%;
  margin-bottom: 13px;
  color: #dfe5e1;
  font-size: 13px;
  font-weight: 700;
}

.choice-group legend em {
  margin-left: 7px;
  color: #77837c;
  font-size: 10px;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.choice-grid {
  display: grid;
  gap: 12px;
}

.choice-label {
  position: relative;
  min-width: 0;
}

.choice-label > input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.choice-card {
  min-height: 116px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  color: #e9edea;
  background: rgba(255, 255, 255, 0.018);
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.choice-card:hover {
  transform: translateY(-2px);
  border-color: rgba(201, 255, 69, 0.4);
}

.choice-card > i {
  margin-bottom: 22px;
  color: var(--acid);
  font-size: 22px;
  font-style: normal;
}

.choice-card b {
  font-size: 15px;
  line-height: 1.4;
}

.choice-card small {
  margin-top: 7px;
  color: #7f8d85;
  font-size: 12px;
  line-height: 1.55;
}

.choice-label input:checked + .choice-card {
  border-color: var(--acid);
  color: #14200e;
  background: var(--acid);
}

.choice-label input:checked + .choice-card > i,
.choice-label input:checked + .choice-card small {
  color: #3b4b21;
}

.choice-label input:focus-visible + .choice-card {
  outline: 3px solid rgba(201, 255, 69, 0.2);
  outline-offset: 3px;
}

.compact-choices .choice-card {
  min-height: 91px;
  padding: 16px 18px;
}

.goal-choices .choice-card {
  min-height: 142px;
}

.descriptive-choices .choice-card {
  min-height: 94px;
  padding: 20px 24px;
}

.descriptive-choices .choice-card b {
  display: flex;
  align-items: center;
  gap: 15px;
}

.descriptive-choices .choice-card b i {
  min-width: 28px;
  color: var(--acid);
  font-size: 10px;
  font-style: normal;
  letter-spacing: 0.12em;
}

.descriptive-choices .choice-label input:checked + .choice-card b i {
  color: #526527;
}

.warning-choice b,
.danger-choice b {
  color: #ffb3a4;
}

.choice-label input:checked + .warning-choice b,
.choice-label input:checked + .danger-choice b {
  color: #14200e;
}

.secondary-question {
  margin-top: 34px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}

.inline-options,
.price-options,
.color-options {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.inline-options label,
.price-options label,
.color-options label {
  position: relative;
}

.inline-options input,
.price-options input,
.color-options input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.inline-options span,
.price-options span,
.color-options span {
  min-height: 45px;
  padding: 0 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #aab5ae;
  background: rgba(255, 255, 255, 0.018);
  font-size: 12px;
  transition: border-color 160ms ease, color 160ms ease, background 160ms ease;
}

.price-options span {
  min-width: 68px;
  font-weight: 750;
}

.inline-options input:checked + span,
.price-options input:checked + span,
.color-options input:checked + span {
  border-color: var(--acid);
  color: #14200e;
  background: var(--acid);
}

.inline-options input:focus-visible + span,
.price-options input:focus-visible + span,
.color-options input:focus-visible + span {
  outline: 3px solid rgba(201, 255, 69, 0.18);
  outline-offset: 2px;
}

.swatch {
  width: 12px;
  height: 12px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  background: currentColor;
}

.swatch.black { color: #151817; }
.swatch.white { color: #eef0eb; }
.swatch.red { color: #e23e38; }
.swatch.pink { color: #f783a9; }
.swatch.blue { color: #3788e5; }
.swatch.green { color: #35a568; }
.swatch.yellow { color: #f4d13e; }
.swatch.orange { color: #f68a31; }
.swatch.gold { color: #c7a246; }
.swatch.multicolor { background: linear-gradient(135deg, #ff728d, #f6d94b, #54b8f1, #68c578); }

.color-options input:checked + span .swatch {
  border-color: rgba(20, 32, 14, 0.25);
}

.advanced-options {
  margin-top: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.015);
}

.advanced-options summary {
  min-height: 56px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #a7b2ab;
  font-size: 12px;
  font-weight: 700;
  list-style: none;
}

.advanced-options summary::-webkit-details-marker {
  display: none;
}

.advanced-options summary::after {
  content: "+";
  color: var(--acid);
  font-size: 20px;
  font-weight: 400;
}

.advanced-options[open] summary::after {
  content: "−";
}

.advanced-body {
  padding: 20px;
  border-top: 1px solid var(--line);
}

.advanced-body p {
  margin: 14px 0 0;
  color: #6e7a73;
  font-size: 11px;
}

.check-line {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #d9dfdb;
  font-size: 13px;
}

.check-line input {
  width: 18px;
  height: 18px;
  accent-color: var(--acid-dark);
}

.prestretch-percent {
  max-width: 210px;
  margin-top: 18px;
}

.form-error {
  margin: 20px 0 0;
  padding: 13px 15px;
  border: 1px solid rgba(255, 121, 95, 0.3);
  border-radius: 12px;
  color: #ffc1b4;
  background: rgba(255, 121, 95, 0.07);
  font-size: 12px;
}

.quiz-actions {
  margin-top: 34px;
  padding-top: 24px;
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  border-top: 1px solid var(--line);
}

.text-button,
.reset-button,
.next-button,
.copy-button {
  border: 0;
}

.text-button,
.reset-button {
  min-height: 50px;
  padding: 0 19px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #a6b1aa;
  background: transparent;
}

.next-button {
  min-width: 160px;
  min-height: 52px;
  padding: 0 8px 0 23px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  border-radius: 999px;
  color: #14200e;
  background: var(--acid);
  font-weight: 800;
}

.next-button i {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: #111915;
  font-style: normal;
}

.results-shell {
  margin-top: 50px;
  margin-bottom: 100px;
  padding: clamp(25px, 4.6vw, 58px);
  border-radius: var(--radius-xl);
  color: var(--paper-ink);
  background:
    linear-gradient(150deg, rgba(201, 255, 69, 0.15), transparent 24%),
    var(--paper);
  box-shadow: var(--shadow);
  scroll-margin-top: 28px;
}

.results-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
}

.results-header .section-label {
  color: #53730c;
}

.results-header > div > p:last-child {
  max-width: 580px;
  margin: 15px 0 0;
  color: var(--paper-muted);
  font-size: 14px;
  line-height: 1.7;
}

.reset-button {
  flex: 0 0 auto;
  border-color: rgba(21, 32, 28, 0.16);
  color: #334039;
}

.result-alerts {
  margin-top: 27px;
  display: grid;
  gap: 8px;
}

.result-alert {
  margin: 0;
  padding: 12px 15px;
  border-left: 3px solid #789b24;
  color: #4d5a53;
  background: rgba(91, 117, 31, 0.07);
  font-size: 12px;
  line-height: 1.65;
}

.result-alert.is-warning {
  border-left-color: #cb5e48;
  background: rgba(203, 94, 72, 0.07);
}

.result-grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.result-card {
  position: relative;
  min-width: 0;
  padding: 13px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(21, 32, 28, 0.12);
  border-radius: 23px;
  background: rgba(255, 255, 255, 0.72);
  overflow: hidden;
}

.result-card.is-primary {
  border-color: #94ba31;
  box-shadow: 0 16px 40px rgba(98, 125, 31, 0.11);
}

.result-media {
  position: relative;
  height: 176px;
  border-radius: 15px;
  background: #dfe3db;
  overflow: hidden;
}

.result-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.result-media.hybrid-media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: #cfd5cb;
}

.result-role {
  position: absolute;
  top: 11px;
  left: 11px;
  z-index: 2;
  min-height: 28px;
  padding: 0 10px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  color: white;
  background: rgba(10, 18, 15, 0.84);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.08em;
  backdrop-filter: blur(8px);
}

.result-card.is-primary .result-role {
  color: #15200e;
  background: var(--acid);
}

.result-content {
  padding: 20px 7px 7px;
  display: flex;
  flex: 1;
  flex-direction: column;
}

.result-brand {
  margin: 0 0 6px;
  color: #77817b;
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.13em;
}

.result-name-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.result-name-row h3 {
  margin: 0;
  font-size: 23px;
  line-height: 1.18;
  letter-spacing: -0.025em;
}

.result-price {
  flex: 0 0 auto;
  color: #26322c;
  font-size: 20px;
  font-weight: 800;
}

.result-price small {
  display: block;
  margin-top: 2px;
  color: #8a938e;
  font-size: 8px;
  font-weight: 600;
  text-align: right;
}

.result-color {
  margin: 8px 0 0;
  color: #647069;
  font-size: 12px;
}

.result-specs {
  margin: 20px 0 0;
  padding: 14px 0;
  display: grid;
  gap: 10px;
  border-top: 1px solid rgba(21, 32, 28, 0.1);
  border-bottom: 1px solid rgba(21, 32, 28, 0.1);
}

.result-specs div {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 8px;
  font-size: 11px;
  line-height: 1.5;
}

.result-specs dt {
  color: #89928d;
}

.result-specs dd {
  margin: 0;
  color: #344039;
  font-weight: 650;
}

.result-reason {
  margin: 18px 0 0;
  color: #3d4943;
  font-size: 12px;
  line-height: 1.75;
}

.result-tradeoff {
  margin: 11px 0 20px;
  color: #7b6c63;
  font-size: 11px;
  line-height: 1.65;
}

.result-tradeoff::before {
  content: "取舍 · ";
  color: #b65a46;
  font-weight: 750;
}

.copy-button {
  width: 100%;
  min-height: 47px;
  margin-top: auto;
  border-radius: 999px;
  color: #edf1ed;
  background: #17221d;
  font-size: 12px;
  font-weight: 750;
  transition: background 160ms ease, transform 160ms ease;
}

.copy-button:hover {
  transform: translateY(-1px);
  background: #26342d;
}

.copy-button.is-copied {
  color: #17200f;
  background: var(--acid);
}

.no-results {
  margin-top: 34px;
  padding: 42px;
  border: 1px solid rgba(21, 32, 28, 0.13);
  border-radius: 22px;
  text-align: center;
  background: rgba(255, 255, 255, 0.48);
}

.no-results strong {
  display: block;
  font-size: 24px;
}

.no-results p {
  max-width: 560px;
  margin: 12px auto 0;
  color: var(--paper-muted);
  font-size: 13px;
  line-height: 1.75;
}

.no-results button {
  min-height: 46px;
  margin-top: 20px;
  padding: 0 20px;
  border: 0;
  border-radius: 999px;
  color: white;
  background: #18231e;
}

.result-footnote {
  margin: 24px 0 0;
  color: #858e89;
  font-size: 10px;
  line-height: 1.6;
  text-align: center;
}

.secondary-links {
  margin-top: 30px;
  margin-bottom: 90px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.secondary-links a {
  min-height: 150px;
  padding: 30px 6px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  transition: color 160ms ease, padding 160ms ease;
}

.secondary-links a + a {
  padding-left: 35px;
  border-left: 1px solid var(--line);
}

.secondary-links a:hover {
  color: var(--acid);
}

.secondary-links small {
  display: block;
  margin-bottom: 7px;
  color: #66736c;
  font-size: 10px;
  letter-spacing: 0.1em;
}

.secondary-links b {
  font-size: clamp(20px, 2.2vw, 28px);
}

.secondary-links > a > i {
  color: #58675f;
  font-size: 28px;
  font-style: normal;
}

.app-footer {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-top: 1px solid var(--line);
  color: #5e6a64;
  font-size: 10px;
  letter-spacing: 0.08em;
}

.app-footer-copy,
.app-footer-legal {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 16px;
}

.app-footer-copy {
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}

.app-footer-legal {
  justify-content: flex-end;
}

.app-footer a {
  border-bottom: 1px solid currentColor;
}

.public-security-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.public-security-link img {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.noscript-message {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 20;
  margin: 0;
  padding: 14px;
  border-radius: 12px;
  color: #1a221b;
  background: var(--acid);
  text-align: center;
}

@media (max-width: 960px) {
  .hero {
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 25px;
  }

  .hero h1 {
    font-size: clamp(43px, 6.7vw, 65px);
  }

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

  .racket-head {
    right: -10px;
    width: 290px;
  }

  .preview-ticket {
    margin-left: -15px;
  }

  .result-grid {
    grid-template-columns: 1fr;
  }

  .result-card {
    display: grid;
    grid-template-columns: 230px 1fr;
    gap: 8px;
  }

  .result-media {
    height: 100%;
    min-height: 285px;
  }
}

@media (max-width: 760px) {
  :root {
    --radius-xl: 25px;
  }

  .app-header,
  .hero,
  .quiz-shell,
  .results-shell,
  .secondary-links,
  .app-footer {
    width: min(100% - 30px, var(--content));
  }

  .app-header {
    min-height: 74px;
  }

  .app-mark-grid {
    width: 31px;
    height: 31px;
  }

  .stock-pill {
    min-height: 30px;
    padding-inline: 10px;
    font-size: 10px;
  }

  .hero {
    min-height: auto;
    padding: 60px 0 70px;
    display: block;
  }

  .hero h1 {
    margin-top: 20px;
    font-size: clamp(42px, 13vw, 61px);
    line-height: 1.09;
  }

  .hero-lead {
    font-size: 16px;
    line-height: 1.75;
  }

  .start-button {
    width: 100%;
    margin-top: 31px;
  }

  .load-status {
    margin-left: 18px;
  }

  .trust-list {
    margin-top: 25px;
    gap: 10px 16px;
    font-size: 10px;
  }

  .hero-visual {
    min-height: 410px;
    margin-top: 34px;
    overflow: hidden;
  }

  .racket-head {
    width: 260px;
    top: -30px;
    right: -24px;
  }

  .preview-ticket {
    width: calc(100% - 25px);
    margin: 83px auto 0 0;
  }

  .orbit-one {
    left: -30px;
  }

  .quiz-shell,
  .results-shell {
    margin-top: 22px;
    margin-bottom: 72px;
    padding: 23px 19px;
  }

  .quiz-header h2,
  .results-header h2 {
    font-size: 30px;
  }

  .progress-copy strong {
    font-size: 28px;
  }

  .progress-track {
    margin: 22px 0 31px;
  }

  .quiz-step {
    min-height: 430px;
  }

  .two-columns,
  .three-columns,
  .goal-choices {
    grid-template-columns: 1fr;
  }

  .field-grid.two-columns {
    gap: 18px;
  }

  .compact-choices.three-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .goal-choices {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .goal-choices .choice-card {
    min-height: 135px;
    padding: 16px;
  }

  .choice-card > i {
    margin-bottom: 17px;
  }

  .choice-card b {
    font-size: 14px;
  }

  .descriptive-choices .choice-card {
    min-height: 101px;
  }

  .quiz-actions {
    margin: 24px -7px -10px;
    padding: 17px 7px 10px;
    background: transparent;
  }

  .text-button {
    flex: 1;
  }

  .next-button {
    flex: 1.6;
    min-width: 0;
  }

  .results-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .reset-button {
    min-height: 42px;
  }

  .result-grid {
    margin-top: 25px;
  }

  .result-card {
    display: flex;
  }

  .result-media {
    height: 190px;
    min-height: 0;
  }

  .no-results {
    padding: 32px 20px;
  }

  .secondary-links {
    grid-template-columns: 1fr;
    margin-bottom: 60px;
  }

  .secondary-links a {
    min-height: 112px;
    padding: 24px 4px;
  }

  .secondary-links a + a {
    padding-left: 4px;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .app-footer {
    min-height: 100px;
    padding: 22px 0;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    line-height: 1.6;
  }

  .app-footer-legal {
    justify-content: flex-start;
  }
}

@media (max-width: 430px) {
  .app-mark small {
    display: none;
  }

  .app-mark b {
    font-size: 11px;
  }

  .stock-pill span {
    max-width: 76px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .hero h1 {
    font-size: 42px;
  }

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

  .preview-ticket {
    transform: rotate(-2deg) scale(0.96);
    transform-origin: left center;
  }

  .compact-choices.three-columns,
  .goal-choices {
    grid-template-columns: 1fr;
  }

  .goal-choices .choice-card {
    min-height: 102px;
  }

  .goal-choices .choice-card > i {
    margin-bottom: 10px;
  }

  .price-options label {
    flex: 1 1 calc(33.333% - 7px);
  }

  .price-options span {
    width: 100%;
  }
}

@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;
  }
}
