@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;1,300;1,400&family=Noto+Sans+KR:wght@300;400;500&family=Noto+Serif+KR:wght@300;400&display=swap');

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

:root {
  --ink:        #0D0D0F;
  --ink-soft:   #1E1E22;
  --mist:       #555558;
  --silver:     #A0A0A8;
  --paper:      #F5F3EE;
  --white:      #FAFAF8;
  --gold:       #B8935A;
  --gold-light: #E8D5B5;
  --gold-pale:  #F6F0E6;
  --d1: #B8935A;
  --d2: #2D6A5F;
  --d3: #7B9E87;
  --d4: #A0856C;
  --d5: #8A7BA8;
  --serif: 'Cormorant Garamond', 'Noto Serif KR', serif;
  --sans:  'Noto Sans KR', sans-serif;
}

html { scroll-behavior: smooth; }
body {
  background: var(--paper);
  font-family: var(--sans);
  color: var(--ink);
  overflow-x: hidden;
  min-height: 100vh;
}

/* ── SCREEN MANAGEMENT ── */
.screen { display: none; }
.screen.active { display: flex; flex-direction: column; min-height: 100vh; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1.1rem 3rem;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(245,243,238,0.92);
  backdrop-filter: blur(14px);
  border-bottom: 0.5px solid rgba(199,199,204,0.45);
}
.nav-logo {
  font-family: var(--serif); font-size: 1.15rem; font-weight: 300;
  color: var(--ink); letter-spacing: 0.02em;
  display: flex; align-items: baseline; gap: 0.4rem;
  cursor: pointer; text-decoration: none;
}
.nav-logo em { font-style: italic; color: var(--gold); }
.nav-back {
  font-size: 0.75rem; font-weight: 300; color: var(--mist);
  letter-spacing: 0.08em; cursor: pointer; background: none; border: none;
  display: flex; align-items: center; gap: 0.4rem; transition: color 0.2s;
}
.nav-back:hover { color: var(--ink); }

/* ── PROGRESS BAR ── */
.progress-rail {
  position: fixed; top: 57px; left: 0; right: 0; z-index: 99;
  height: 2px; background: rgba(199,199,204,0.25);
}
.progress-fill {
  height: 100%; background: var(--gold);
  transition: width 0.45s cubic-bezier(0.4,0,0.2,1);
}

/* ════════════════════════════
   SCREEN 1 · INTRO
════════════════════════════ */
#s-intro {
  align-items: center; justify-content: center;
  padding: 7rem 2rem 4rem; text-align: center;
}

.intro-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.68rem; font-weight: 400; letter-spacing: 0.18em;
  color: var(--gold); text-transform: uppercase;
  border: 0.5px solid rgba(184,147,90,0.4);
  padding: 0.35rem 1rem; border-radius: 1px; margin-bottom: 2.5rem;
}
.intro-badge-dot {
  width: 5px; height: 5px; border-radius: 50%; background: var(--gold);
  animation: pulse 2s ease infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; } 50% { opacity: 0.3; }
}

.intro-title {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 300; line-height: 1.12; color: var(--ink); margin-bottom: 1.25rem;
  animation: fadeUp 0.8s ease 0.1s both;
}
.intro-title em { font-style: italic; color: var(--gold); }

.intro-sub {
  font-size: 0.92rem; font-weight: 300; color: var(--mist);
  line-height: 1.9; max-width: 420px; margin: 0 auto 3rem;
  animation: fadeUp 0.8s ease 0.25s both;
}

.intro-stats {
  display: flex; gap: 0; margin-bottom: 3.5rem;
  background: var(--white); border: 0.5px solid var(--silver);
  border-radius: 6px; overflow: hidden;
  animation: fadeUp 0.8s ease 0.35s both;
}
.is-item {
  flex: 1; padding: 1.5rem 1rem; text-align: center;
  border-right: 0.5px solid var(--silver);
}
.is-item:last-child { border-right: none; }
.is-num {
  font-family: var(--serif); font-style: italic;
  font-size: 1.75rem; font-weight: 300; color: var(--ink); line-height: 1;
}
.is-label {
  font-size: 0.68rem; font-weight: 300; color: var(--mist);
  letter-spacing: 0.06em; margin-top: 0.3rem;
}

.domain-row {
  display: flex; gap: 0.5rem; justify-content: center; flex-wrap: wrap;
  margin-bottom: 3.5rem;
  animation: fadeUp 0.8s ease 0.45s both;
}
.d-chip {
  display: flex; align-items: center; gap: 0.4rem;
  font-size: 0.72rem; font-weight: 400; letter-spacing: 0.05em;
  padding: 0.35rem 0.85rem; border-radius: 1px; border: 0.5px solid;
}
.d-chip-dot { width: 5px; height: 5px; border-radius: 50%; flex-shrink: 0; }

.btn-start {
  background: var(--ink); color: var(--white); border: none;
  border-radius: 1px; padding: 1.05rem 3.5rem;
  font-family: var(--sans); font-size: 0.85rem;
  font-weight: 400; letter-spacing: 0.14em; cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  animation: fadeUp 0.8s ease 0.55s both;
}
.btn-start:hover { background: var(--ink-soft); transform: translateY(-1px); }

.intro-note {
  margin-top: 1.75rem; font-size: 0.75rem; font-weight: 300;
  color: var(--silver); letter-spacing: 0.04em;
  animation: fadeUp 0.8s ease 0.65s both;
}

/* ════════════════════════════
   SCREEN 2 · QUIZ
════════════════════════════ */
#s-quiz {
  padding-top: 59px;
  align-items: center; justify-content: flex-start;
}

.quiz-shell {
  width: 100%; max-width: 660px; margin: 0 auto;
  padding: 4rem 2rem 7rem;
}

/* domain header strip */
.quiz-domain-strip {
  display: flex; align-items: center; gap: 0.75rem; margin-bottom: 2.5rem;
}
.qds-segments { display: flex; gap: 3px; flex: 1; }
.qds-seg {
  height: 2px; border-radius: 1px; flex: 1;
  background: rgba(199,199,204,0.3);
  transition: background 0.4s;
}
.qds-seg.done    { background: var(--gold); }
.qds-seg.current { background: rgba(184,147,90,0.5); }
.qds-label {
  font-size: 0.68rem; font-weight: 400; letter-spacing: 0.14em;
  text-transform: uppercase; white-space: nowrap;
  padding: 0.28rem 0.7rem; border-radius: 1px; border: 0.5px solid;
}

.quiz-counter {
  font-size: 0.72rem; font-weight: 300; color: var(--mist);
  letter-spacing: 0.06em; margin-bottom: 1.75rem;
}

/* question */
.quiz-q-wrap {
  min-height: 110px; margin-bottom: 0.75rem;
  display: flex; align-items: flex-start;
}
.quiz-q {
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.8vw, 2rem);
  font-weight: 300; line-height: 1.3; color: var(--ink);
  transition: opacity 0.2s ease;
}
.quiz-q.fading { opacity: 0; }

.quiz-hint {
  font-size: 0.8rem; font-weight: 300; color: var(--mist);
  line-height: 1.7; margin-bottom: 3rem;
  transition: opacity 0.2s ease;
}
.quiz-hint.fading { opacity: 0; }

/* scale */
.scale-head {
  display: flex; justify-content: space-between; margin-bottom: 0.85rem;
}
.scale-head span {
  font-size: 0.7rem; font-weight: 300; color: var(--silver); letter-spacing: 0.03em;
}
.scale-btns {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 0.6rem;
  margin-bottom: 3.5rem;
}
.scale-btn {
  height: 58px; border-radius: 4px;
  background: var(--white); border: 0.5px solid var(--silver);
  font-family: var(--sans); font-size: 1rem; font-weight: 300;
  color: var(--mist); cursor: pointer;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 3px;
  transition: border-color 0.15s, background 0.15s, color 0.15s, transform 0.1s;
}
.scale-btn:hover { border-color: var(--gold); color: var(--ink); transform: translateY(-1px); }
.scale-btn.sel {
  background: var(--ink); border-color: var(--ink);
  color: var(--white); font-weight: 400;
}
.scale-btn .s-num { font-size: 1rem; line-height: 1; }
.scale-btn .s-dot {
  width: 4px; height: 4px; border-radius: 50%;
  background: currentColor; opacity: 0.4;
}

/* nav */
.quiz-nav {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 2rem; border-top: 0.5px solid var(--silver);
}
.btn-prev {
  background: none; border: none; color: var(--mist);
  font-family: var(--sans); font-size: 0.8rem; font-weight: 300;
  letter-spacing: 0.06em; cursor: pointer; padding: 0.6rem 0;
  transition: color 0.2s;
}
.btn-prev:hover:not(:disabled) { color: var(--ink); }
.btn-prev:disabled { opacity: 0.25; cursor: default; }
.btn-next {
  background: var(--ink); color: var(--white); border: none;
  border-radius: 1px; padding: 0.78rem 2.2rem;
  font-family: var(--sans); font-size: 0.8rem; font-weight: 400;
  letter-spacing: 0.1em; cursor: pointer; transition: all 0.2s;
  opacity: 0.28; pointer-events: none;
}
.btn-next.on { opacity: 1; pointer-events: auto; }
.btn-next.on:hover { background: var(--ink-soft); }

/* ════════════════════════════
   SCREEN 3 · RESULT
════════════════════════════ */
#s-result { padding-top: 59px; align-items: center; background: var(--paper); }

.result-shell {
  width: 100%; max-width: 860px; margin: 0 auto;
  padding: 4rem 2rem 6rem;
}

/* type card */
.type-card {
  background: var(--ink); border-radius: 10px;
  padding: 2.5rem 3rem; margin-bottom: 2.5rem;
  display: grid; grid-template-columns: 1fr auto; gap: 2rem; align-items: center;
}
.tc-label {
  font-size: 0.68rem; font-weight: 400; letter-spacing: 0.18em;
  color: rgba(255,255,255,0.65); text-transform: uppercase; margin-bottom: 0.6rem;
}
.tc-type-badge {
  display: inline-block;
  font-size: 0.68rem; font-weight: 500; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--gold);
  border: 0.5px solid rgba(184,147,90,0.5);
  padding: 0.25rem 0.7rem; border-radius: 1px; margin-bottom: 0.75rem;
}
.tc-name {
  font-family: var(--serif); font-size: clamp(1.6rem,3vw,2.2rem);
  font-weight: 300; color: var(--white); line-height: 1.15; margin-bottom: 1rem;
}
.tc-name em { font-style: italic; color: var(--gold); }
.tc-msg {
  font-size: 0.85rem; font-weight: 300;
  color: rgba(255,255,255,0.5); line-height: 1.85; max-width: 480px;
}
.tc-avg-wrap { text-align: center; flex-shrink: 0; }
.tc-avg-num {
  font-family: var(--serif); font-style: italic;
  font-size: 3.5rem; font-weight: 300; color: var(--gold); line-height: 1;
}
.tc-avg-label {
  font-size: 0.68rem; font-weight: 300;
  color: rgba(255,255,255,0.60); letter-spacing: 0.08em; margin-top: 0.3rem;
}

/* grid: radar + scores */
.result-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1.5rem; margin-bottom: 1.5rem;
}
.radar-card {
  background: var(--white); border: 0.5px solid var(--silver);
  border-radius: 10px; padding: 2rem;
  display: flex; flex-direction: column; align-items: center;
}
.radar-label {
  font-size: 0.68rem; font-weight: 400; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--mist); margin-bottom: 1.25rem;
}

.scores-col { display: flex; flex-direction: column; gap: 0.85rem; }
.score-card {
  background: var(--white); border: 0.5px solid var(--silver);
  border-radius: 8px; padding: 1.1rem 1.4rem;
}
.sc-top {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 0.6rem;
}
.sc-name {
  display: flex; align-items: center; gap: 0.55rem;
  font-family: var(--serif); font-size: 0.98rem; font-weight: 400; color: var(--ink);
}
.sc-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.sc-num {
  font-family: var(--serif); font-style: italic;
  font-size: 1.3rem; font-weight: 300;
}
.sc-tier {
  font-size: 0.62rem; font-weight: 400; letter-spacing: 0.1em;
  padding: 0.18rem 0.55rem; border-radius: 1px; margin-bottom: 0.55rem;
  display: inline-block;
}
.sc-bar-track { height: 3px; background: rgba(199,199,204,0.4); border-radius: 2px; }
.sc-bar-fill  { height: 100%; border-radius: 2px; transition: width 1.2s cubic-bezier(0.4,0,0.2,1); }

/* insight */
.insight-card {
  background: var(--gold-pale);
  border-left: 2px solid var(--gold);
  border-radius: 0 8px 8px 0;
  padding: 1.75rem 2rem; margin-bottom: 1.5rem;
}
.insight-label {
  font-size: 0.65rem; font-weight: 500; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 0.65rem;
}
.insight-text {
  font-family: var(--serif); font-size: 1.1rem;
  font-weight: 300; line-height: 1.65; color: var(--ink);
}

/* ── EMAIL CAPTURE ── */
.email-card {
  background: var(--white); border: 0.5px solid var(--silver);
  border-radius: 10px; padding: 2.5rem 2.5rem;
  margin-bottom: 1.5rem;
}
.ec-header { margin-bottom: 1.75rem; }
.ec-eyebrow {
  font-size: 0.68rem; font-weight: 400; letter-spacing: 0.16em;
  color: var(--gold); text-transform: uppercase; margin-bottom: 0.6rem;
}
.ec-title {
  font-family: var(--serif); font-size: 1.4rem; font-weight: 300;
  color: var(--ink); line-height: 1.25; margin-bottom: 0.5rem;
}
.ec-title em { font-style: italic; color: var(--gold); }
.ec-sub {
  font-size: 0.82rem; font-weight: 300; color: var(--mist); line-height: 1.75;
}
.ec-includes {
  display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 2rem;
}
.ec-item {
  display: flex; align-items: center; gap: 0.65rem;
  font-size: 0.8rem; font-weight: 300; color: var(--ink-soft);
}
.ec-check {
  width: 16px; height: 16px; border-radius: 50%;
  background: rgba(184,147,90,0.12); border: 0.5px solid rgba(184,147,90,0.4);
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.ec-check::after {
  content: ''; width: 4px; height: 7px;
  border-right: 1.5px solid var(--gold); border-bottom: 1.5px solid var(--gold);
  transform: rotate(45deg) translateY(-1px);
}

/* form */
.ec-form { display: flex; flex-direction: column; gap: 0.85rem; }
.ec-input-row { display: flex; gap: 0.75rem; }
.ec-input {
  flex: 1; height: 48px; padding: 0 1.1rem;
  background: var(--paper); border: 0.5px solid var(--silver);
  border-radius: 3px; font-family: var(--sans); font-size: 0.85rem;
  font-weight: 300; color: var(--ink); outline: none;
  transition: border-color 0.2s;
}
.ec-input::placeholder { color: var(--silver); }
.ec-input:focus { border-color: var(--gold); }
.ec-submit {
  height: 48px; padding: 0 2rem; white-space: nowrap; flex-shrink: 0;
  background: var(--gold); color: var(--white); border: none;
  border-radius: 3px; font-family: var(--sans); font-size: 0.8rem;
  font-weight: 400; letter-spacing: 0.1em; cursor: pointer;
  transition: background 0.2s;
}
.ec-submit:hover { background: #a07a44; }
.ec-submit:disabled { background: var(--silver); cursor: default; }
.ec-privacy {
  font-size: 0.7rem; font-weight: 300; color: var(--silver);
  letter-spacing: 0.03em; line-height: 1.6;
}

/* success state */
.ec-success {
  display: none; text-align: center; padding: 1rem 0;
}
.ec-success.show { display: block; }
.ec-success-icon {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(45,106,95,0.1); border: 0.5px solid rgba(45,106,95,0.3);
  margin: 0 auto 1rem;
  display: flex; align-items: center; justify-content: center;
}
.ec-success-icon::after {
  content: ''; width: 8px; height: 14px;
  border-right: 2px solid #2D6A5F; border-bottom: 2px solid #2D6A5F;
  transform: rotate(45deg) translateY(-2px);
}
.ec-success-title {
  font-family: var(--serif); font-size: 1.25rem; font-weight: 300;
  color: var(--ink); margin-bottom: 0.4rem;
}
.ec-success-sub {
  font-size: 0.8rem; font-weight: 300; color: var(--mist); line-height: 1.7;
}

/* bottom actions */
.result-actions {
  display: flex; gap: 0.85rem; justify-content: center; flex-wrap: wrap;
  margin-top: 0.5rem;
}
.btn-retry {
  background: none; color: var(--mist); border: none;
  font-family: var(--sans); font-size: 0.78rem; font-weight: 300;
  letter-spacing: 0.05em; cursor: pointer;
  text-decoration: underline; text-underline-offset: 3px; padding: 0.9rem 1rem;
}
.btn-workbook {
  background: var(--ink); color: var(--white); border: none;
  border-radius: 1px; padding: 0.9rem 2rem;
  font-family: var(--sans); font-size: 0.8rem; font-weight: 400;
  letter-spacing: 0.1em; cursor: pointer; transition: background 0.2s;
}
.btn-workbook:hover { background: var(--ink-soft); }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-in { animation: fadeUp 0.55s ease both; }

/* ── RESPONSIVE ── */
@media (max-width: 700px) {
  nav { padding: 1rem 1.25rem; }
  .quiz-shell, .result-shell { padding: 3rem 1.25rem 5rem; }
  .result-grid { grid-template-columns: 1fr; }
  .type-card { grid-template-columns: 1fr; gap: 1.5rem; }
  .tc-avg-wrap { text-align: left; }
  .ec-input-row { flex-direction: column; }
  .ec-submit { height: 44px; }
  .intro-stats { flex-direction: column; }
  .is-item { border-right: none; border-bottom: 0.5px solid var(--silver); }
  .is-item:last-child { border-bottom: none; }
}

/* ══════════════════════
   PAYMENT SECTION
══════════════════════ */
.payment-divider {
  display: flex; align-items: center; gap: 1rem;
  margin: 2rem 0;
}
.payment-divider::before,
.payment-divider::after {
  content: ''; flex: 1; height: 0.5px; background: var(--silver);
}
.payment-divider-text {
  font-size: 0.72rem; font-weight: 400; color: var(--mist);
  letter-spacing: 0.1em; white-space: nowrap;
}

.report-card {
  background: var(--ink);
  border-radius: 10px;
  padding: 2.5rem;
  margin-bottom: 1.5rem;
  position: relative;
  overflow: hidden;
}
.report-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--gold);
}
.rc-badge {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.65rem; font-weight: 500; letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  border: 0.5px solid rgba(184,147,90,0.5);
  padding: 0.25rem 0.7rem; border-radius: 1px;
  margin-bottom: 1rem;
}
.rc-badge-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s ease infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; } 50% { opacity: 0.3; }
}
.rc-title {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 300; color: var(--white); line-height: 1.2;
  margin-bottom: 0.5rem;
}
.rc-title em { font-style: italic; color: var(--gold); }
.rc-sub {
  font-size: 0.82rem; font-weight: 300;
  color: rgba(255,255,255,0.6); line-height: 1.75;
  margin-bottom: 1.75rem;
}
.rc-includes {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0.5rem; margin-bottom: 2rem;
}
.rc-item {
  display: flex; align-items: center; gap: 0.55rem;
  font-size: 0.78rem; font-weight: 300;
  color: rgba(255,255,255,0.7);
}
.rc-check {
  width: 16px; height: 16px; border-radius: 50%; flex-shrink: 0;
  background: rgba(184,147,90,0.2);
  border: 0.5px solid rgba(184,147,90,0.5);
  display: flex; align-items: center; justify-content: center;
}
.rc-check::after {
  content: ''; width: 4px; height: 7px;
  border-right: 1.5px solid var(--gold);
  border-bottom: 1.5px solid var(--gold);
  transform: rotate(45deg) translateY(-1px);
}
.rc-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 1.5rem;
  border-top: 0.5px solid rgba(255,255,255,0.1);
  flex-wrap: wrap; gap: 1rem;
}
.rc-price-wrap {}
.rc-price {
  font-family: var(--serif); font-style: italic;
  font-size: 2rem; font-weight: 300; color: var(--gold); line-height: 1;
}
.rc-price-note {
  font-size: 0.68rem; font-weight: 300;
  color: rgba(255,255,255,0.4); letter-spacing: 0.04em;
  margin-top: 0.25rem;
}
.btn-gumroad {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: var(--gold); color: var(--white);
  border: none; border-radius: 1px;
  padding: 0.95rem 2rem;
  font-family: var(--sans); font-size: 0.82rem;
  font-weight: 500; letter-spacing: 0.1em;
  cursor: pointer; text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}
.btn-gumroad:hover { background: #a07a44; transform: translateY(-1px); }
.btn-gumroad-icon { font-size: 0.9rem; }
.rc-secure {
  display: flex; align-items: center; gap: 0.35rem;
  font-size: 0.65rem; font-weight: 300;
  color: rgba(255,255,255,0.35); letter-spacing: 0.04em;
  margin-top: 0.75rem;
}
.rc-secure::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: #ff90e8; flex-shrink: 0;
}

/* ══════════════════════════════
   DIAGNOSIS MOBILE (≤600px)
══════════════════════════════ */
@media (max-width: 600px) {
  nav { padding: 0.9rem 1.25rem; }
  .nav-links { display: none; }
  .hamburger { display: flex; }

  /* intro */
  #s-intro { padding: 5.5rem 1.25rem 3rem; }
  .intro-title { font-size: 2rem; }
  .intro-sub   { font-size: 0.85rem; }
  .intro-stats { flex-direction: row; flex-wrap: wrap; }
  .is-item { flex: 1; min-width: 80px; border-right: 0.5px solid var(--silver); border-bottom: none; }
  .is-item:last-child { border-right: none; }
  .domain-row { gap: 0.4rem; }
  .d-chip { font-size: 0.68rem; padding: 0.3rem 0.65rem; }

  /* quiz */
  .quiz-shell { padding: 3rem 1.25rem 5rem; }
  .quiz-q { font-size: 1.25rem; min-height: 70px; }
  .scale-btns { gap: 0.4rem; }
  .scale-btn  { height: 48px; font-size: 0.95rem; }

  /* result */
  #s-result { padding-top: 57px; }
  .result-shell { padding: 2.5rem 1.25rem 4rem; }
  .type-card { grid-template-columns: 1fr; gap: 1.25rem; padding: 1.75rem 1.5rem; }
  .tc-avg-wrap { display: flex; align-items: center; gap: 0.75rem; }
  .tc-avg-num { font-size: 2.5rem; }
  .result-grid { grid-template-columns: 1fr; gap: 1.25rem; }
  .radar-card { padding: 1.5rem 1rem; }

  /* payment */
  .report-card { padding: 1.75rem 1.25rem; }
  .rc-includes { grid-template-columns: 1fr; }
  .rc-bottom { flex-direction: column; align-items: flex-start; gap: 1.25rem; }
  .btn-gumroad { width: 100%; justify-content: center; }
  .email-card { padding: 1.75rem 1.25rem; }
  .ec-input-row { flex-direction: column; }
  .ec-submit { height: 44px; }
}
