:root {
  --orange: #f56a18;
  --orange-dark: #d94b08;
  --orange-deep: #a93405;
  --orange-soft: #fff1e7;
  --green: #72af2d;
  --ink: #211b17;
  --muted: #74675f;
  --line: #eaded5;
  --paper: #fff;
  --canvas: #faf6f2;
  --success: #238357;
  --danger: #c64032;
  --shadow: 0 22px 60px rgba(95, 51, 24, 0.12);
  color-scheme: light;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "PingFang SC", "Microsoft YaHei", sans-serif;
}

* { box-sizing: border-box; }

html {
  min-width: 320px;
  min-height: 100%;
  background: var(--canvas);
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  min-height: 100vh;
  min-height: 100svh;
  min-height: 100dvh;
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 50% -90px, rgba(245, 106, 24, 0.16), transparent 360px),
    linear-gradient(180deg, #fffaf6 0, var(--canvas) 420px);
  overflow-x: hidden;
}

button,
input { font: inherit; }

button { -webkit-tap-highlight-color: transparent; }

button:focus-visible,
input:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(245, 106, 24, 0.32);
  outline-offset: 3px;
}

[hidden] { display: none !important; }

.site-shell {
  width: min(100%, 1180px);
  min-height: 100vh;
  min-height: 100svh;
  min-height: 100dvh;
  margin: 0 auto;
  padding-right: max(18px, env(safe-area-inset-right));
  padding-left: max(18px, env(safe-area-inset-left));
  display: grid;
  grid-template-rows: auto minmax(min-content, 1fr) auto;
}

.site-header {
  position: relative;
  min-height: calc(72px + env(safe-area-inset-top));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: max(12px, env(safe-area-inset-top));
  padding-bottom: 8px;
  background: transparent;
}

.brand-lockup {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0;
  color: var(--ink);
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.brand-lockup img {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(190, 81, 17, 0.13);
}

.brand-lockup strong {
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.market-status {
  min-width: 0;
  flex: 0 1 auto;
  display: inline-flex;
  align-items: center;
  gap: 0;
  min-height: 30px;
  padding: 7px 0;
  color: #6d5b50;
  background: transparent;
  border: 0;
  border-radius: 0;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.3;
  text-align: right;
  white-space: nowrap;
}

.market-status.error { color: var(--danger); }

main {
  min-height: 0;
  display: flex;
  flex-direction: column;
}

.landing-screen {
  width: min(100%, 640px);
  min-height: 100%;
  flex: 1 0 auto;
  margin: 0 auto;
  padding: 24px 0 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.landing-copy {
  display: grid;
  justify-items: center;
  transform: translateY(-12px);
}

.local-pill,
.question-eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 6px 12px;
  color: var(--orange-dark);
  background: rgba(245, 106, 24, 0.09);
  border: 1px solid rgba(245, 106, 24, 0.13);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.04em;
}

.landing-copy h1 {
  margin: 20px 0 0;
  font-size: clamp(36px, 10vw, 61px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.landing-copy p {
  max-width: 460px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.start-orbit {
  position: relative;
  width: 218px;
  height: 218px;
  margin: 22px 0 40px;
  padding: 0;
  color: white;
  border: 0;
  background: transparent;
  border-radius: 50%;
  cursor: pointer;
}

.start-orbit:disabled {
  cursor: wait;
  opacity: 0.62;
}

.orbit-ring {
  position: absolute;
  border: 1px solid rgba(245, 106, 24, 0.28);
  border-radius: 50%;
  animation: orbit-pulse 3.2s ease-in-out infinite;
}

.orbit-ring-one { inset: 0; }
.orbit-ring-two {
  inset: 10px;
  border-style: dashed;
  opacity: 0.45;
  animation: orbit-rotate 13s linear infinite;
}

.orbit-ring-one::before,
.orbit-ring-one::after {
  content: "";
  position: absolute;
  background: var(--orange);
  border-radius: 50%;
}

.orbit-ring-one::before {
  width: 12px;
  height: 12px;
  top: 23px;
  right: 28px;
  box-shadow: 0 0 0 7px rgba(245, 106, 24, 0.1);
}

.orbit-ring-one::after {
  width: 7px;
  height: 7px;
  left: 15px;
  bottom: 52px;
  opacity: 0.52;
}

.start-core {
  position: absolute;
  inset: 23px;
  display: grid;
  place-content: center;
  justify-items: center;
  color: white;
  background: linear-gradient(145deg, #ff9149, var(--orange) 56%, #dc4806);
  border-radius: 50%;
  box-shadow:
    0 27px 45px rgba(204, 73, 13, 0.27),
    inset 0 1px 1px rgba(255, 255, 255, 0.35);
  animation: core-breathe 3.2s ease-in-out infinite;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.start-orbit:hover .start-core,
.start-orbit:active .start-core { transform: scale(1.035); }

.start-core img {
  width: 44px;
  height: 44px;
  margin-bottom: 4px;
  object-fit: cover;
  background: white;
  border: 3px solid rgba(255, 255, 255, 0.88);
  border-radius: 15px;
}

.start-core small { font-size: 11px; opacity: 0.84; }
.start-core strong { margin-top: 3px; font-size: 25px; letter-spacing: -0.03em; }
.start-core i { margin-top: 3px; font-size: 22px; font-style: normal; }

.trust-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 22px;
  margin: 4px 0 0;
  padding: 0;
  color: #766961;
  list-style: none;
  font-size: 12px;
}

.trust-list span {
  margin-right: 5px;
  color: var(--success);
  font-weight: 900;
}

.landing-error,
.flow-error {
  width: 100%;
  margin: 22px 0 0;
  padding: 12px 14px;
  color: #992f0b;
  background: #fff0e8;
  border: 1px solid #ffd0b9;
  border-radius: 14px;
  font-size: 13px;
}

.flow-screen {
  width: min(100%, 760px);
  min-height: 100%;
  flex: 1 0 auto;
  margin: 0 auto;
  padding: 24px 0 74px;
}

.flow-topbar {
  display: flex;
  align-items: center;
  margin-bottom: 18px;
}

.back-button {
  width: 44px;
  height: 44px;
  padding: 0;
  color: var(--ink);
  background: white;
  border: 1px solid var(--line);
  border-radius: 50%;
  box-shadow: 0 7px 20px rgba(72, 45, 29, 0.07);
  cursor: pointer;
  font-size: 20px;
}

.selection-trail {
  display: flex;
  gap: 7px;
  min-height: 28px;
  margin-bottom: 22px;
  overflow-x: auto;
  scrollbar-width: none;
}

.selection-trail:empty { display: none; }
.selection-trail::-webkit-scrollbar { display: none; }

.trail-chip {
  flex: 0 0 auto;
  max-width: 230px;
  overflow: hidden;
  padding: 6px 10px;
  color: #6f5344;
  background: white;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 750;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.step-content { opacity: 1; }

.step-heading { margin-bottom: 22px; }

.step-heading h1 {
  margin: 12px 0 8px;
  font-size: clamp(29px, 8vw, 42px);
  line-height: 1.12;
  letter-spacing: -0.04em;
}

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

.model-search {
  position: relative;
  display: block;
  margin-bottom: 16px;
}

.model-search::before {
  content: "⌕";
  position: absolute;
  z-index: 1;
  left: 17px;
  top: 50%;
  color: #8b7b72;
  transform: translateY(-50%);
  font-size: 22px;
}

.model-search input {
  width: 100%;
  height: 54px;
  padding: 0 16px 0 48px;
  color: var(--ink);
  background: white;
  border: 1px solid var(--line);
  border-radius: 17px;
  box-shadow: 0 8px 22px rgba(84, 52, 32, 0.05);
  font-size: 16px;
}

.model-list,
.tier-list { display: grid; gap: 11px; }

.model-series { display: grid; gap: 8px; }

.model-series-label {
  margin: 8px 4px 2px;
  color: #9a6a4e;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.choice-row,
.tier-card {
  width: 100%;
  min-height: 70px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 13px;
  padding: 12px 15px;
  color: var(--ink);
  background: white;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 8px 24px rgba(75, 45, 27, 0.055);
  text-align: left;
  cursor: pointer;
}

.phone-mark {
  display: grid;
  width: 40px;
  height: 48px;
  place-items: center;
  color: var(--orange-dark);
  background: var(--orange-soft);
  border: 1px solid #ffd6be;
  border-radius: 11px;
  font-size: 11px;
  font-weight: 900;
}

.choice-row > span:nth-child(2),
.tier-card > span:first-child { display: grid; gap: 4px; }

.choice-row strong,
.tier-card strong { font-size: 15px; }

.choice-row small,
.tier-card small { color: var(--muted); font-size: 11px; }

.row-arrow { color: #bfafa5; font-size: 28px; font-weight: 300; }

.empty-state {
  padding: 34px 18px;
  color: var(--muted);
  background: white;
  border: 1px dashed #d9c8bd;
  border-radius: 18px;
  text-align: center;
  font-size: 14px;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.choice-card {
  min-height: 92px;
  display: grid;
  place-content: center;
  gap: 5px;
  padding: 16px 12px;
  color: var(--ink);
  background: white;
  border: 1px solid var(--line);
  border-radius: 19px;
  box-shadow: 0 8px 24px rgba(75, 45, 27, 0.055);
  text-align: center;
  cursor: pointer;
}

.choice-card strong { font-size: 19px; }
.choice-card span { color: var(--muted); font-size: 11px; }

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

.sheet-card {
  position: relative;
  width: 100%;
  min-height: 92px;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) auto;
  align-items: center;
  gap: 13px;
  padding: 15px;
  overflow: hidden;
  color: var(--ink);
  background: white;
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 9px 26px rgba(75, 45, 27, 0.055);
  text-align: left;
  cursor: pointer;
}

.sheet-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, #ff9b57, var(--orange));
}

.sheet-card:disabled {
  cursor: not-allowed;
  opacity: 0.46;
  box-shadow: none;
}

.sheet-number {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--orange-dark);
  background: var(--orange-soft);
  border-radius: 16px;
  font-size: 12px;
  font-weight: 900;
}

.sheet-copy { min-width: 0; display: grid; gap: 5px; }
.sheet-copy strong { font-size: 16px; }
.sheet-copy small { color: var(--muted); font-size: 11px; line-height: 1.45; }
.sheet-state { color: var(--orange-dark); font-size: 11px; font-weight: 800; white-space: nowrap; }
.sheet-card:disabled .sheet-state { color: var(--muted); }

.tier-card {
  grid-template-columns: minmax(0, 1fr) auto;
  min-height: 78px;
  padding: 14px 16px;
}

.tier-price { display: grid; justify-items: end; gap: 2px; }
.tier-price small { font-size: 10px; }
.tier-price strong { color: var(--orange-dark); font-size: 20px; }

.flow-screen.is-condition-phase {
  position: relative;
  padding-top: 14px;
}

.flow-screen.is-condition-phase .flow-topbar {
  position: absolute;
  z-index: 6;
  top: 14px;
  left: 0;
  margin: 0;
}

.condition-device-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 0 2px 4px;
  min-height: 44px;
  padding: 8px 12px 8px 60px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(235, 216, 203, 0.95);
  border-radius: 16px;
  box-shadow: 0 8px 22px rgba(81, 46, 25, 0.055);
}

.condition-device-primary {
  min-width: 0;
  display: grid;
  gap: 2px;
}

.condition-device-primary small {
  color: #8f7465;
  font-size: 9px;
  font-weight: 750;
}

.condition-device-primary strong {
  overflow-wrap: anywhere;
  font-size: 13px;
  line-height: 1.35;
}

.condition-device-tier {
  flex: 0 1 auto;
  max-width: 46%;
  color: var(--orange-deep);
  font-size: 10px;
  font-weight: 800;
  line-height: 1.35;
  overflow-wrap: anywhere;
  text-align: right;
}

.price-orbit-stage {
  position: relative;
  min-height: 430px;
  margin: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at center, rgba(245, 106, 24, 0.14) 0 16%, rgba(245, 106, 24, 0.045) 30%, transparent 52%);
  border-radius: 28px;
}

.orbit-track {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  display: block;
  pointer-events: none;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.orbit-track-outer {
  width: 74%;
  height: 64%;
  border: 1px solid rgba(239, 105, 43, 0.19);
  box-shadow: 0 0 46px rgba(232, 99, 38, 0.055);
}

.orbit-track-inner {
  width: 56%;
  height: 49%;
  border: 1px dashed rgba(239, 105, 43, 0.16);
}

.orbit-layout-double .orbit-track-outer { height: 74%; }

.orbit-count-1 .orbit-track-outer,
.orbit-count-2 .orbit-track-outer,
.orbit-count-3 .orbit-track-outer,
.orbit-count-4 .orbit-track-outer {
  width: 63%;
  height: 56%;
}

.orbit-track::before {
  content: "";
  position: absolute;
  top: -3px;
  left: 50%;
  width: 6px;
  height: 6px;
  background: var(--orange);
  border: 2px solid #fffaf6;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(245, 106, 24, 0.08);
  transform: translateX(-50%);
  animation: track-node-pulse 3.4s ease-in-out infinite;
}

.orbit-track-inner::before {
  top: 50%;
  right: -3px;
  left: auto;
  background: #ffb07a;
  transform: translateY(-50%);
  animation-delay: -1.1s;
}

.price-core {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  width: 126px;
  height: 126px;
  display: grid;
  place-content: center;
  justify-items: center;
  color: var(--ink);
  background:
    radial-gradient(circle at 34% 24%, rgba(255, 255, 255, 0.9), transparent 27%),
    rgba(255, 250, 246, 0.92);
  border: 1px solid rgba(245, 127, 64, 0.35);
  border-radius: 50%;
  box-shadow:
    0 17px 42px rgba(197, 67, 8, 0.18),
    0 0 0 10px rgba(245, 106, 24, 0.025),
    inset 0 0 30px rgba(255, 146, 83, 0.08);
  text-align: center;
  transform: translate(-50%, -50%);
  backdrop-filter: blur(18px) saturate(1.1);
  animation: price-core-breathe 3.8s ease-in-out infinite;
}

.price-live-label {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #816a5e;
  font-size: 9px;
  opacity: 0.86;
}

.price-live-label i {
  width: 5px;
  height: 5px;
  background: var(--success);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(15, 143, 91, 0.09);
}

.live-price {
  margin: 3px 0 2px;
  display: flex;
  align-items: flex-start;
  gap: 3px;
  line-height: 1;
}

.live-price span { margin-top: 5px; color: var(--orange-dark); font-size: 15px; }
.live-price strong { color: var(--orange-dark); font-size: 35px; letter-spacing: -0.05em; }
.price-core em { max-width: 108px; overflow: hidden; color: #806a5d; font-size: 8px; font-style: normal; opacity: 0.78; text-overflow: ellipsis; white-space: nowrap; }

.orbit-options {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
}

.option-card.orbit-option {
  position: absolute;
  z-index: 4;
  top: var(--orbit-y);
  left: var(--orbit-x);
  width: max-content;
  min-width: 64px;
  max-width: 104px;
  min-height: 42px;
  display: grid;
  grid-template-columns: 1fr;
  place-content: center;
  gap: 1px;
  padding: 6px 9px;
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(111, 75, 53, 0.12);
  border-radius: 999px;
  pointer-events: auto;
  box-shadow: 0 9px 22px rgba(80, 44, 23, 0.08);
  text-align: center;
  transform: translate(-50%, -50%);
  backdrop-filter: blur(16px) saturate(1.2);
}

.option-card.orbit-option span:first-child {
  display: block;
  min-width: 0;
}

.option-card.orbit-option strong {
  display: -webkit-box;
  overflow: hidden;
  font-size: 10px;
  line-height: 1.16;
  overflow-wrap: anywhere;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.option-card.orbit-option.has-long-label strong {
  font-size: 8.5px;
  line-height: 1.12;
}

.option-card.orbit-option small { display: none; }

.option-card.orbit-option .option-effect {
  padding: 0;
  background: transparent;
  font-size: 9px;
}

.option-card.orbit-option::before {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  background: var(--orange);
  border: 2px solid #fffaf6;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(245, 106, 24, 0.08);
  pointer-events: none;
}

.option-card.orbit-option::after {
  content: "";
  position: absolute;
  background: rgba(232, 102, 43, 0.25);
  pointer-events: none;
}

.orbit-stem-down::before { bottom: -14px; left: 50%; transform: translateX(-50%); }
.orbit-stem-down::after { bottom: -10px; left: 50%; width: 1px; height: 10px; }
.orbit-stem-up::before { top: -14px; left: 50%; transform: translateX(-50%); }
.orbit-stem-up::after { top: -10px; left: 50%; width: 1px; height: 10px; }
.orbit-stem-left::before { top: 50%; left: -14px; transform: translateY(-50%); }
.orbit-stem-left::after { top: 50%; left: -10px; width: 10px; height: 1px; }
.orbit-stem-right::before { top: 50%; right: -14px; transform: translateY(-50%); }
.orbit-stem-right::after { top: 50%; right: -10px; width: 10px; height: 1px; }

.option-card.orbit-option.is-selected::before { background: var(--success); }
.option-card.orbit-option:active { transform: translate(-50%, -50%) scale(0.985); }

.selected-options-summary {
  min-height: 30px;
  margin: -3px 2px 14px;
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 8px;
  color: #4f4038;
  font-size: 10px;
}

.price-status {
  flex: 0 0 auto;
  padding: 5px 8px;
  color: #846252;
  background: rgba(245, 106, 24, 0.08);
  border-radius: 999px;
  font-size: 9px;
  font-weight: 750;
  line-height: 1.35;
}

.selected-options-copy {
  min-width: min(240px, 100%);
  flex: 1 1 240px;
  display: grid;
  gap: 3px;
}

.selected-options-copy small {
  color: #8f7465;
  font-size: 9px;
  font-weight: 750;
}

.selected-options-summary strong {
  color: var(--ink);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.55;
  overflow-wrap: anywhere;
  white-space: normal;
}

.option-card {
  min-width: 0;
  min-height: 72px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 8px;
  padding: 12px;
  color: var(--ink);
  background: white;
  border: 1px solid var(--line);
  border-radius: 16px;
  text-align: left;
  cursor: pointer;
}

.option-card.is-selected {
  background: #fff6ef;
  border-color: var(--orange);
  box-shadow: 0 0 0 2px rgba(245, 106, 24, 0.09);
}

.option-card:active { transform: scale(0.985); }

.option-card span:first-child {
  min-width: 0;
  display: grid;
  gap: 4px;
}

.option-card strong {
  overflow-wrap: anywhere;
  font-size: 12px;
  line-height: 1.35;
}

.option-card small { color: var(--muted); font-size: 9px; }

.option-effect {
  padding: 5px 7px;
  border-radius: 9px;
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
  white-space: nowrap;
}

.option-effect.is-add { color: var(--success); background: #edf8f3; }
.option-effect.is-cut { color: var(--danger); background: #fff0ed; }

.condition-notices {
  display: grid;
  gap: 7px;
  margin: 20px 0 0;
  color: #79685e;
  font-size: 11px;
  line-height: 1.55;
}

.condition-notices p { margin: 0; padding-left: 14px; position: relative; }
.condition-notices p::before { content: "•"; position: absolute; left: 2px; color: var(--orange); }

.confirm-bar {
  position: relative;
  z-index: 10;
  margin: 24px -18px -74px;
  padding: 12px 18px calc(12px + env(safe-area-inset-bottom));
  background: transparent;
}

.confirm-button,
.restart-button {
  width: 100%;
  min-height: 54px;
  padding: 12px 18px;
  color: white;
  background: linear-gradient(135deg, #ff8438, var(--orange) 60%, #dc4906);
  border: 0;
  border-radius: 17px;
  box-shadow: 0 13px 28px rgba(210, 72, 9, 0.22);
  cursor: pointer;
  font-size: 15px;
  font-weight: 850;
}

.confirm-button:disabled { cursor: wait; opacity: 0.68; }

.result-screen {
  width: min(100%, 680px);
  flex: 1 0 auto;
  margin: 0 auto;
  padding: 34px 0 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.result-hero {
  position: relative;
  overflow: hidden;
  padding: 34px 22px 30px;
  color: white;
  background:
    radial-gradient(circle at 90% 12%, rgba(255, 255, 255, 0.18), transparent 140px),
    linear-gradient(145deg, #ff8d43, var(--orange) 54%, #c93c04);
  border-radius: 28px;
  box-shadow: var(--shadow);
  text-align: center;
}

.result-kicker {
  display: inline-flex;
  padding: 6px 10px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
}

.result-hero > p { margin: 18px 0 0; font-size: 13px; opacity: 0.86; }

.result-price {
  margin: 5px 0 10px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 5px;
  line-height: 1;
}

.result-price span { margin-top: 10px; font-size: 24px; }
.result-price strong { font-size: clamp(54px, 16vw, 82px); letter-spacing: -0.055em; }

.result-hero h1 { margin: 0; font-size: 15px; line-height: 1.5; }
.result-hero > small { display: block; margin-top: 12px; font-size: 10px; opacity: 0.75; }

.result-sheet {
  margin-top: 16px;
  padding: 18px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 22px;
}

.result-sheet-heading,
.breakdown-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.result-sheet-heading {
  padding-bottom: 13px;
  border-bottom: 1px solid #eee4dd;
  font-size: 12px;
}

.result-sheet-heading strong { color: var(--orange-dark); }

.breakdown-row {
  padding: 12px 0;
  border-bottom: 1px dashed #eee4dd;
  color: var(--muted);
  font-size: 12px;
}

.breakdown-row:last-child { border-bottom: 0; }
.breakdown-row strong { color: var(--ink); font-size: 13px; white-space: nowrap; }
.breakdown-row.is-adjustment strong.is-add { color: var(--success); }
.breakdown-row.is-adjustment strong.is-cut { color: var(--danger); }

.restart-button {
  margin-top: 16px;
  color: var(--orange-dark);
  background: white;
  border: 1px solid #efc5ac;
  box-shadow: none;
}

.site-footer {
  width: 100%;
  padding: 22px 0 max(24px, env(safe-area-inset-bottom));
  color: #8a7c74;
  font-size: 11px;
}

.footer-panel {
  width: min(100%, 680px);
  margin: 0 auto;
  padding: 12px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(111, 72, 50, 0.1);
  border-radius: 18px;
  box-shadow: 0 16px 42px rgba(95, 51, 24, 0.06);
}

.footer-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.footer-action {
  min-width: 0;
  min-height: 56px;
  padding: 9px 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #5f5149;
  background: rgba(255, 248, 243, 0.9);
  border: 1px solid rgba(245, 106, 24, 0.12);
  border-radius: 14px;
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.footer-action:hover,
.footer-action:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(245, 106, 24, 0.3);
  background: white;
}

.footer-action-mark {
  width: 29px;
  height: 29px;
  flex: 0 0 29px;
  display: inline-grid;
  place-items: center;
  color: var(--orange-dark);
  background: rgba(245, 106, 24, 0.1);
  border-radius: 10px;
  font-size: 11px;
  font-weight: 900;
}

.footer-action > span:last-child {
  min-width: 0;
  display: grid;
  gap: 2px;
}

.footer-action strong { font-size: 11px; line-height: 1.2; }
.footer-action small { color: #9a8d85; font-size: 9px; line-height: 1.25; }

.footer-legal {
  margin-top: 10px;
  padding-top: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 5px 14px;
  border-top: 1px solid rgba(111, 72, 50, 0.09);
  color: #9a8d85;
  font-size: 9.5px;
  line-height: 1.45;
  text-align: center;
}

.footer-legal a { color: #89766b; text-underline-offset: 3px; }

.privacy-shell {
  width: min(100%, 780px);
  min-height: 100vh;
  min-height: 100svh;
  min-height: 100dvh;
  margin: 0 auto;
  padding-right: max(18px, env(safe-area-inset-right));
  padding-left: max(18px, env(safe-area-inset-left));
  display: grid;
  grid-template-rows: auto 1fr auto;
}

.privacy-header {
  min-height: calc(72px + env(safe-area-inset-top));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: max(12px, env(safe-area-inset-top));
  padding-bottom: 8px;
}

.privacy-header .brand-lockup { text-decoration: none; }

.privacy-back {
  color: var(--orange-dark);
  font-size: 12px;
  font-weight: 800;
  text-underline-offset: 3px;
}

.privacy-main { display: block; }

.privacy-card {
  margin-top: 18px;
  padding: clamp(24px, 5vw, 42px);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(111, 72, 50, 0.1);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.privacy-kicker {
  color: var(--orange-dark);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.privacy-card h1 {
  margin: 8px 0 6px;
  font-size: clamp(30px, 8vw, 44px);
  letter-spacing: -0.04em;
}

.privacy-meta {
  margin-bottom: 20px !important;
  color: #9b8d84 !important;
  font-size: 11px !important;
}

.privacy-lead {
  padding: 15px 16px;
  color: #675952 !important;
  background: rgba(255, 246, 239, 0.85);
  border: 1px solid rgba(245, 106, 24, 0.1);
  border-radius: 16px;
}

.privacy-toc {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 7px;
}

.privacy-toc a {
  padding: 8px 7px;
  color: #6f5f56;
  background: #fbf7f4;
  border: 1px solid rgba(111, 72, 50, 0.08);
  border-radius: 10px;
  font-size: 10px;
  font-weight: 750;
  text-align: center;
  text-decoration: none;
}

.privacy-policy-section {
  scroll-margin-top: 16px;
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid rgba(111, 72, 50, 0.09);
}

.privacy-card h2 {
  margin: 0 0 11px;
  color: #332a25;
  font-size: 17px;
  line-height: 1.45;
}

.privacy-card h3 {
  margin: 0 0 7px;
  color: #4b3d36;
  font-size: 14px;
}

.privacy-card p {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.privacy-card p:last-child { margin-bottom: 0; }

.privacy-card p strong { color: #51433c; }

.privacy-card p a {
  color: var(--orange-dark);
  font-weight: 800;
  text-underline-offset: 3px;
}

.privacy-card ul {
  margin: 0 0 12px;
  padding-left: 20px;
  color: var(--muted);
}

.privacy-card li {
  margin: 7px 0;
  padding-left: 2px;
  font-size: 14px;
  line-height: 1.7;
}

.privacy-data-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.privacy-data-list article {
  padding: 15px;
  background: #fbf8f6;
  border: 1px solid rgba(111, 72, 50, 0.08);
  border-radius: 16px;
}

.privacy-data-list p { font-size: 12.5px; line-height: 1.7; }

.privacy-footer { padding-top: 18px; }

.privacy-footer .footer-panel { width: min(100%, 680px); }

@keyframes orbit-pulse {
  0%, 100% { transform: scale(1); opacity: 0.75; }
  50% { transform: scale(1.035); opacity: 1; }
}

@keyframes orbit-rotate {
  to { transform: rotate(360deg); }
}

@keyframes core-breathe {
  0%, 100% { box-shadow: 0 27px 45px rgba(204, 73, 13, 0.27), inset 0 1px 1px rgba(255, 255, 255, 0.35); }
  50% { box-shadow: 0 31px 52px rgba(204, 73, 13, 0.34), inset 0 1px 1px rgba(255, 255, 255, 0.35); }
}

@keyframes price-core-breathe {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-50%, -50%) scale(1.025); }
}

@keyframes track-node-pulse {
  0%, 100% { opacity: 0.58; }
  50% { opacity: 1; box-shadow: 0 0 0 5px rgba(245, 106, 24, 0.12); }
}

@media (min-width: 720px) {
  .site-shell {
    padding-right: max(28px, env(safe-area-inset-right));
    padding-left: max(28px, env(safe-area-inset-left));
  }
  .site-header { min-height: calc(78px + env(safe-area-inset-top)); }
  .brand-lockup img { width: 42px; height: 42px; flex-basis: 42px; }
  .brand-lockup strong { font-size: 17px; }
  .market-status { font-size: 12px; }
  .landing-screen { padding-top: 38px; }
  .start-orbit { width: 234px; height: 234px; }
  .flow-screen { padding-top: 34px; }
  .choice-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .sheet-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sheet-card:last-child:nth-child(odd) { grid-column: 1 / -1; }
  .price-orbit-stage { min-height: 450px; }
  .price-core { width: 146px; height: 146px; }
  .live-price strong { font-size: 40px; }
  .orbit-options { inset: 0; }
  .option-card.orbit-option { max-width: 116px; }
  .confirm-bar { margin-right: 0; margin-left: 0; padding-right: 0; padding-left: 0; }
}

@media (max-width: 520px) {
  .site-shell {
    padding-right: max(14px, env(safe-area-inset-right));
    padding-left: max(14px, env(safe-area-inset-left));
  }
  .site-header { min-height: calc(66px + env(safe-area-inset-top)); }
  .brand-lockup { gap: 8px; max-width: none; }
  .brand-lockup img { width: 34px; height: 34px; flex-basis: 34px; border-radius: 11px; }
  .brand-lockup strong { font-size: 14px; }
  .market-status { max-width: 124px; padding: 6px 0; font-size: 10px; white-space: normal; }
  .landing-screen { min-height: 100%; padding: 18px 0 30px; }
  .landing-copy { transform: translateY(-8px); }
  .landing-copy h1 { font-size: clamp(35px, 10.5vw, 45px); }
  .start-orbit { width: 202px; height: 202px; margin: 20px 0 38px; }
  .start-core { inset: 21px; }
  .trust-list { gap: 8px 15px; font-size: 11px; }
  .flow-screen { padding-top: 18px; }
  .selection-trail { margin-bottom: 18px; }
  .step-heading { margin-bottom: 18px; }
  .step-heading h1 { font-size: 29px; }
  .sheet-card { min-height: 84px; grid-template-columns: 44px minmax(0, 1fr) auto; padding: 13px; }
  .sheet-number { width: 44px; height: 44px; border-radius: 14px; }
  .price-orbit-stage { min-height: 420px; margin-right: -2px; margin-left: -2px; }
  .price-core { width: 120px; height: 120px; }
  .live-price strong { font-size: 33px; }
  .orbit-options { inset: 0; }
  .option-card.orbit-option { min-width: 60px; max-width: 92px; min-height: 40px; padding: 5px 7px; }
  .option-card.orbit-option strong { font-size: 9px; }
  .option-card.orbit-option.has-long-label strong { font-size: 8px; }
  .option-card.orbit-option .option-effect { font-size: 8.5px; }
  .confirm-bar { margin-right: -14px; margin-left: -14px; padding-right: 14px; padding-left: 14px; }
  .site-footer { padding-top: 16px; }
  .footer-panel { padding: 10px; border-radius: 17px; }
  .footer-actions { gap: 6px; }
  .footer-action { padding: 8px; gap: 6px; }
  .privacy-shell {
    padding-right: max(14px, env(safe-area-inset-right));
    padding-left: max(14px, env(safe-area-inset-left));
  }
  .privacy-card { margin-top: 10px; padding: 22px 18px; border-radius: 22px; }
  .privacy-toc { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .privacy-data-list { grid-template-columns: 1fr; }
}

@media (max-width: 350px) {
  .site-header { gap: 8px; }
  .brand-lockup img { width: 32px; height: 32px; flex-basis: 32px; }
  .brand-lockup strong { font-size: 13px; }
  .market-status { max-width: 112px; font-size: 9.5px; }
  .landing-copy h1 { font-size: 34px; }
  .start-orbit { width: 188px; height: 188px; margin: 16px 0 30px; }
  .start-core { inset: 19px; }
  .start-core strong { font-size: 23px; }
  .trust-list { gap: 7px 10px; font-size: 10px; }
  .condition-device-card { align-items: flex-start; }
  .condition-device-card { display: grid; }
  .condition-device-tier { max-width: 100%; text-align: left; }
  .price-orbit-stage { min-height: 402px; }
  .footer-action { min-height: 62px; flex-direction: column; justify-content: center; gap: 4px; text-align: center; }
  .footer-action-mark { width: 25px; height: 25px; flex-basis: 25px; border-radius: 8px; }
  .footer-action small { display: none; }
}

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