  :root {
    --black: #080808;
    --white: #f0ede8;
    --dim: #6b6760;
    --gold: #c9a96e;
    --line: rgba(240,237,232,0.1);
  }

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

  html { scroll-behavior: smooth; }

  body {
    background: var(--black);
    color: var(--white);
    font-family: 'Noto Serif KR', 'EB Garamond', serif;
    font-weight: 300;
    line-height: 1.8;
    min-height: 100vh;
    overflow-x: hidden;
  }

  /* Starfield background */
  body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: 
      radial-gradient(1px 1px at 20% 15%, rgba(240,237,232,0.4) 0%, transparent 100%),
      radial-gradient(1px 1px at 80% 25%, rgba(240,237,232,0.3) 0%, transparent 100%),
      radial-gradient(1px 1px at 45% 60%, rgba(240,237,232,0.2) 0%, transparent 100%),
      radial-gradient(1px 1px at 70% 80%, rgba(240,237,232,0.35) 0%, transparent 100%),
      radial-gradient(1px 1px at 10% 70%, rgba(240,237,232,0.25) 0%, transparent 100%),
      radial-gradient(1px 1px at 90% 55%, rgba(240,237,232,0.3) 0%, transparent 100%),
      radial-gradient(1px 1px at 55% 35%, rgba(240,237,232,0.15) 0%, transparent 100%),
      radial-gradient(1px 1px at 30% 90%, rgba(240,237,232,0.2) 0%, transparent 100%),
      radial-gradient(2px 2px at 65% 10%, rgba(201,169,110,0.3) 0%, transparent 100%),
      radial-gradient(1px 1px at 15% 45%, rgba(240,237,232,0.3) 0%, transparent 100%);
    pointer-events: none;
    z-index: 0;
  }

  /* Noise texture overlay */
  body::after {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    opacity: 0.5;
    pointer-events: none;
    z-index: 0;
  }

  main { position: relative; z-index: 1; }

  /* ─── NAV ─── */
  nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 3rem;
    border-bottom: 1px solid var(--line);
  }

  .nav-logo {
    font-family: 'EB Garamond', serif;
    font-size: 0.85rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--white);
    opacity: 0.7;
  }

  .nav-tagline {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    color: var(--dim);
    text-transform: uppercase;
  }

  /* ─── HERO ─── */
  .hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
    padding: 6rem 2rem 4rem;
    text-align: center;
    position: relative;
  }

  .hero-symbol {
    font-size: 2rem;
    color: var(--gold);
    opacity: 0.6;
    letter-spacing: 1rem;
    margin-bottom: 3rem;
    animation: pulse 4s ease-in-out infinite;
  }

  @keyframes pulse {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 0.8; }
  }

  .hero-eyebrow {
    font-size: 0.65rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--dim);
    margin-bottom: 2rem;
  }

  h1 {
    font-family: 'EB Garamond', serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -0.01em;
    color: var(--white);
    margin-bottom: 1.5rem;
    max-width: 800px;
  }

  h1 em {
    font-style: italic;
    color: var(--gold);
  }

  .hero-sub {
    font-size: 0.9rem;
    color: var(--dim);
    max-width: 420px;
    line-height: 2;
    margin-bottom: 4rem;
    letter-spacing: 0.02em;
  }

  .hero-catchphrase {
    font-size: 1.35rem;
    color: var(--white);
    letter-spacing: 0.08em;
    margin-bottom: 4rem;
    font-weight: 600;
  }

  .hero-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    margin: 0 auto 2rem;
    opacity: 0.5;
  }

  /* ─── FORM CARD ─── */
  .form-container {
    max-width: 560px;
    margin: 0 auto;
    padding: 0 1.5rem 8rem;
  }

  .form-section-label {
    font-size: 0.6rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--dim);
    margin-bottom: 2.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
  }

  .form-section-label::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--line);
  }

  .field-group {
    margin-bottom: 2rem;
  }

  label {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--dim);
    margin-bottom: 0.75rem;
  }

  input, select {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--line);
    color: var(--white);
    font-family: 'Noto Serif KR', serif;
    font-size: 1rem;
    font-weight: 300;
    padding: 0.75rem 0;
    outline: none;
    transition: border-color 0.3s ease;
    -webkit-appearance: none;
    appearance: none;
  }

  input::placeholder {
    color: var(--dim);
    font-size: 0.85rem;
  }

  select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' fill='none'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%236b6760' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0 center;
    padding-right: 1.5rem;
  }

  select option {
    background: #0f0f0f;
    color: var(--white);
  }

  input:focus, select:focus {
    border-color: var(--gold);
  }

  .field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

  /* MBTI */
  .mbti-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
    margin-top: 0.75rem;
  }

  .mbti-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
  }

  .mbti-group-label {
    font-size: 0.55rem;
    letter-spacing: 0.15em;
    color: var(--dim);
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 0.2rem;
  }

  .mbti-btn {
    background: transparent;
    border: 1px solid var(--line);
    color: var(--dim);
    font-family: 'EB Garamond', serif;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    padding: 0.6rem 0;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
  }

  .mbti-btn:hover {
    border-color: rgba(201,169,110,0.4);
    color: var(--white);
  }

  .mbti-btn.active {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(201,169,110,0.05);
  }

  #mbti-display {
    text-align: center;
    font-family: 'EB Garamond', serif;
    font-size: 1.8rem;
    letter-spacing: 0.15em;
    color: var(--gold);
    margin-top: 1rem;
    min-height: 2.5rem;
    opacity: 0.8;
  }

  /* Concerns */
  .concern-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    margin-top: 0.75rem;
  }

  .concern-btn {
    background: transparent;
    border: 1px solid var(--line);
    color: var(--dim);
    font-family: 'Noto Serif KR', serif;
    font-size: 0.75rem;
    font-weight: 300;
    letter-spacing: 0.05em;
    padding: 0.75rem 1rem;
    cursor: pointer;
    transition: all 0.25s ease;
    text-align: left;
    line-height: 1.5;
  }

  .concern-btn:hover {
    border-color: rgba(201,169,110,0.3);
    color: var(--white);
  }

  .concern-btn.active {
    border-color: var(--gold);
    color: var(--white);
    background: rgba(201,169,110,0.06);
  }

  .concern-limit {
    font-size: 0.6rem;
    color: var(--dim);
    letter-spacing: 0.1em;
    margin-top: 0.5rem;
  }

  /* Agree checkbox */
  #agreeTerms {
    appearance: none;
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    min-width: 18px;
    max-width: 18px;
    flex: 0 0 18px;
    border: 1px solid var(--gold);
    border-radius: 3px;
    background: transparent;
    cursor: pointer;
    position: relative;
  }
  #agreeTerms:checked {
    background: var(--gold);
  }
  #agreeTerms:checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--black);
    font-size: 13px;
    font-weight: bold;
  }

  /* Submit */
  .submit-area {
    margin-top: 3.5rem;
    text-align: center;
  }

  .submit-btn {
    background: transparent;
    border: 1px solid rgba(201,169,110,0.5);
    color: var(--gold);
    font-family: 'EB Garamond', serif;
    font-size: 0.8rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    padding: 1.1rem 3.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }

  .submit-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
    z-index: -1;
  }

  .submit-btn:hover {
    color: var(--black);
    border-color: var(--gold);
  }

  .submit-btn:hover::before {
    transform: scaleX(1);
  }

  .submit-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
  }

  .submit-note {
    font-size: 0.65rem;
    color: var(--dim);
    letter-spacing: 0.1em;
    margin-top: 1.5rem;
  }

  /* ─── LOADING ─── */
  .loading-screen {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--black);
    z-index: 9999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .loading-screen.active { display: flex; }

  .loading-orbit {
    position: relative;
    width: 80px;
    height: 80px;
    margin-bottom: 3rem;
  }

  .loading-orbit-ring {
    position: absolute;
    inset: 0;
    border: 1px solid rgba(201,169,110,0.15);
    border-radius: 50%;
    border-top-color: var(--gold);
    animation: orbit 2.4s linear infinite;
  }

  .loading-orbit-ring:nth-child(2) {
    inset: 16px;
    border-top-color: transparent;
    border-right-color: rgba(201,169,110,0.35);
    animation-duration: 1.8s;
    animation-direction: reverse;
  }

  .loading-orbit-dot {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 5px; height: 5px;
    background: var(--gold);
    border-radius: 50%;
    animation: pulse-dot 2.4s ease-in-out infinite;
  }

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

  @keyframes pulse-dot {
    0%, 100% { opacity: 0.4; transform: translate(-50%,-50%) scale(0.8); }
    50%       { opacity: 1;   transform: translate(-50%,-50%) scale(1.3); }
  }

  .loading-phase {
    font-size: 0.9rem;
    letter-spacing: 0.2em;
    color: var(--white);
    margin-bottom: 0.6rem;
    height: 1.4em;
    line-height: 1.4em;
    overflow: hidden;
    text-align: center;
    transition: opacity 0.3s ease;
  }
  .loading-phase.fading { opacity: 0; }

  .loading-progress {
    width: 160px;
    height: 1px;
    background: rgba(240,237,232,0.06);
    margin-top: 2.5rem;
    overflow: hidden;
  }

  .loading-progress-bar {
    height: 100%;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
    width: 40%;
    animation: progress-slide 1.8s ease-in-out infinite;
  }

  @keyframes progress-slide {
    0%   { transform: translateX(-150%); }
    100% { transform: translateX(400%); }
  }

  .loading-estimate {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    color: rgba(240,237,232,0.5);
    margin-top: 1.2rem;
    text-transform: uppercase;
  }

  /* ─── ERROR SCREEN ─── */
  .error-screen {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--black);
    z-index: 9999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    text-align: center;
  }

  .error-screen.active { display: flex; }

  .error-symbol {
    font-size: 1.4rem;
    color: rgba(201,169,110,0.35);
    letter-spacing: 0.6rem;
    margin-bottom: 2.5rem;
  }

  .error-title {
    font-family: 'EB Garamond', serif;
    font-size: 1.7rem;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 1rem;
  }

  .error-body {
    font-size: 0.8rem;
    color: var(--dim);
    max-width: 340px;
    line-height: 2;
    margin-bottom: 1.5rem;
  }

  .error-detail {
    font-size: 0.6rem;
    letter-spacing: 0.1em;
    color: rgba(107,103,96,0.45);
    font-family: 'Courier New', monospace;
    padding: 0.5rem 1.2rem;
    border: 1px solid var(--line);
    margin-bottom: 3rem;
    max-width: 360px;
    word-break: break-all;
  }

  .error-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  /* ─── CALENDAR TOGGLE ─── */
  .cal-toggle {
    display: flex;
    gap: 0;
    margin-bottom: 2rem;
    border: 1px solid var(--line);
    width: fit-content;
  }

  .cal-toggle-btn {
    background: transparent;
    border: none;
    color: var(--dim);
    font-family: 'Noto Serif KR', serif;
    font-size: 0.68rem;
    font-weight: 300;
    letter-spacing: 0.15em;
    padding: 0.55rem 1.4rem;
    cursor: pointer;
    transition: all 0.2s ease;
  }

  .cal-toggle-btn.active {
    background: rgba(201,169,110,0.1);
    color: var(--gold);
  }

  .cal-toggle-divider {
    width: 1px;
    background: var(--line);
    align-self: stretch;
  }

  .lunar-note {
    font-size: 0.6rem;
    letter-spacing: 0.1em;
    color: rgba(107,103,96,0.6);
    margin-top: 0.5rem;
    display: none;
  }

  .lunar-note.visible { display: block; }


  .field-error-msg {
    font-size: 0.58rem;
    color: rgba(210,110,70,0.75);
    letter-spacing: 0.1em;
    margin-top: 0.35rem;
    display: block;
    opacity: 0;
    transform: translateY(-3px);
    transition: all 0.2s ease;
  }

  .field-error-msg.visible {
    opacity: 1;
    transform: translateY(0);
  }

  input.invalid, select.invalid {
    border-bottom-color: rgba(210,110,70,0.5) !important;
    animation: shake 0.3s ease;
  }

  @keyframes shake {
    0%, 100% { transform: translateX(0); }
    25%       { transform: translateX(-4px); }
    75%       { transform: translateX(4px); }
  }

  /* ─── PAYWALL ─── */
  .locked-section {
    position: relative;
    pointer-events: none;
    user-select: none;
    overflow: hidden;
  }

  .locked-section .paywall-gate {
    pointer-events: all;
  }

  .locked-section .result-block {
    filter: blur(5px);
    opacity: 0.35;
    max-height: 200px;
    overflow: hidden;
    transition: filter 0.3s ease;
  }

  .paywall-gate {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 3rem 2rem;
    pointer-events: all;
    text-align: center;
    gap: 0;
    z-index: 2;
  }

  .paywall-symbol {
    font-size: 1.2rem;
    color: var(--gold);
    opacity: 0.5;
    letter-spacing: 0.6rem;
    margin-bottom: 2rem;
  }

  .paywall-title {
    font-family: 'EB Garamond', serif;
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 400;
    color: var(--white);
    line-height: 1.4;
    margin-bottom: 1rem;
  }

  .paywall-desc {
    font-size: 0.78rem;
    color: var(--dim);
    line-height: 2;
    max-width: 380px;
    margin-bottom: 0.75rem;
  }

  .paywall-includes {
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    color: rgba(201,169,110,0.55);
    line-height: 2.2;
    margin-bottom: 2.5rem;
  }

  .paywall-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }

  .cta-price-compare {
    font-size: 1.3rem;
    font-weight: 500;
    color: rgba(240,237,232,0.7);
    margin-bottom: 0.6rem;
    letter-spacing: 0.02em;
  }
  .cta-price-compare .cta-strike {
    text-decoration: line-through;
    text-decoration-thickness: 2px;
    text-decoration-color: rgba(210,110,70,0.7);
  }

  .paywall-reviews {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(201,169,110,0.15);
  }

  .paywall-review-item {
    text-align: left;
    padding: 1rem 0;
  }
  .paywall-review-item + .paywall-review-item {
    border-top: 1px solid rgba(240,237,232,0.08);
  }
  .paywall-review-stars {
    color: var(--gold);
    font-size: 0.75rem;
    margin-bottom: 0.3rem;
  }
  .paywall-review-text {
    font-size: 0.85rem;
    color: rgba(240,237,232,0.8);
    line-height: 1.5;
    margin-bottom: 0.3rem;
  }
  .paywall-review-meta {
    font-size: 0.7rem;
    color: var(--dim);
  }

  .cta-price-badge {
    font-family: 'EB Garamond', serif;
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    color: var(--dim);
    text-transform: uppercase;
    margin-bottom: 0.25rem;
  }

  .cta-price {
    font-family: 'EB Garamond', serif;
    font-size: 2.2rem;
    font-weight: 400;
    color: var(--white);
    letter-spacing: -0.01em;
    line-height: 1;
    margin-bottom: 1.5rem;
  }

  .cta-price span {
    font-size: 1rem;
    color: var(--dim);
    margin-left: 0.2rem;
  }

  .btn-paywall {
    background: var(--gold);
    border: none;
    color: var(--black);
    font-family: 'Noto Serif KR', serif;
    font-size: 0.78rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    padding: 1.1rem 3rem;
    cursor: pointer;
    transition: all 0.25s ease;
    width: 100%;
    max-width: 300px;
  }

  .btn-paywall:hover {
    background: #d4b47a;
    transform: translateY(-1px);
  }

  .paywall-note {
    font-size: 0.6rem;
    color: rgba(200,196,190,0.8);
    letter-spacing: 0.1em;
    margin-top: 0.5rem;
  }

  /* Free section badge */
  .free-badge {
    display: inline-block;
    font-size: 0.55rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid rgba(201,169,110,0.3);
    padding: 0.2rem 0.6rem;
    margin-bottom: 2rem;
  }

  /* ─── 팔자 카드 ─── */
  .palza-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
    margin: 1.5rem 0 2.5rem;
  }

  .palza-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
  }

  .palza-col-label {
    font-size: 0.55rem;
    letter-spacing: 0.2em;
    color: var(--dim);
    text-transform: uppercase;
    margin-bottom: 0.5rem;
  }

  .palza-card {
    width: 100%;
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(240,237,232,0.08);
    margin-bottom: 3px;
  }

  /* 오행 색상 — 다크 버전 */

  .palza-card-hanja {
    font-size: clamp(1.6rem, 4vw, 2.2rem);
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.4rem;
  }

  .palza-card-kor {
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    opacity: 0.85;
  }

  .ohaeng-mok  { background: rgba(74,120,60,0.25);  border-color: rgba(74,120,60,0.4);  color: #7ec87a; }
  .ohaeng-hwa  { background: rgba(180,60,60,0.2);   border-color: rgba(180,60,60,0.35); color: #e88080; }
  .ohaeng-to   { background: rgba(160,130,40,0.2);  border-color: rgba(160,130,40,0.35);color: #d4b04a; }
  .ohaeng-geum { background: rgba(160,160,170,0.1); border-color: rgba(160,160,170,0.25);color: #b8b8c8; }
  .ohaeng-su   { background: rgba(40,70,160,0.25);  border-color: rgba(40,70,160,0.4);  color: #7898e8; }

  .palza-ilju-marker {
    position: absolute;
    bottom: 3px;
    right: 4px;
    font-size: 0.45rem;
    letter-spacing: 0.05em;
    color: var(--gold);
    opacity: 0.6;
  }

  .palza-sipsung {
    display: block;
    font-size: 0.6rem;
    letter-spacing: 0.05em;
    color: var(--gold);
    opacity: 0.7;
    margin-top: 2px;
    text-align: center;
  }

  .daeun-section {
    margin-top: 1.5rem;
  }
  .daeun-label {
    font-size: 0.6rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(201,169,110,0.45);
    margin-bottom: 0.6rem;
  }
  .daeun-grid {
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgba(201,169,110,0.2) transparent;
  }
  .daeun-grid::-webkit-scrollbar { height: 4px; }
  .daeun-grid::-webkit-scrollbar-thumb { background: rgba(201,169,110,0.2); border-radius: 2px; }

  .daeun-card {
    flex: 0 0 auto;
    min-width: 70px;
    padding: 0.6rem 0.5rem;
    border: 1px solid rgba(240,237,232,0.08);
    border-radius: 6px;
    text-align: center;
    background: rgba(30,28,25,0.5);
    transition: border-color 0.2s;
  }
  .daeun-card.current {
    border-color: var(--gold);
    background: rgba(201,169,110,0.08);
  }
  .daeun-age {
    display: block;
    font-size: 0.55rem;
    color: var(--dim);
    margin-bottom: 0.3rem;
  }
  .daeun-card.current .daeun-age { color: var(--gold); }
  .daeun-ganji {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--fg);
    line-height: 1.2;
  }
  .daeun-ohaeng {
    display: block;
    font-size: 0.55rem;
    color: var(--dim);
    margin-top: 0.2rem;
  }
  .daeun-current-tag {
    display: inline-block;
    font-size: 0.45rem;
    letter-spacing: 0.1em;
    color: var(--gold);
    margin-top: 0.2rem;
  }

  .yongsin-badges {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
  }
  .yongsin-badge {
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.05em;
  }
  .yongsin-badge.yongsin { background: rgba(74,120,60,0.25); color: #7ec87a; border: 1px solid rgba(74,120,60,0.4); }
  .yongsin-badge.huisin  { background: rgba(40,70,160,0.2);  color: #7898e8; border: 1px solid rgba(40,70,160,0.35); }
  .yongsin-badge.gisin   { background: rgba(180,60,60,0.15); color: #e88080; border: 1px solid rgba(180,60,60,0.3); }

  @media (max-width: 480px) {
    .palza-grid { gap: 0.4rem; }
    .palza-card-hanja { font-size: 1.3rem; }
    .daeun-card { min-width: 60px; padding: 0.4rem; }
  }

  /* ─── SUB BLOCKS ─── */
  .sub-block {
    margin-bottom: 2.5rem;
  }
  .sub-block:last-child { margin-bottom: 0; }

  .sub-label {
    font-size: 0.6rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(201,169,110,0.45);
    margin-bottom: 0.6rem;
  }

  /* ─── MONTH ROWS ─── */
  .month-row {
    padding: 1.4rem 0;
    border-bottom: 1px solid var(--line);
  }
  .month-row:last-child { border-bottom: none; }

  .month-row-top {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 0.6rem;
  }

  .month-name {
    font-family: 'EB Garamond', serif;
    font-size: 0.95rem;
    color: var(--white);
    opacity: 0.6;
    letter-spacing: 0.03em;
    white-space: nowrap;
    min-width: 80px;
  }

  .month-keyword {
    font-size: 0.65rem;
    letter-spacing: 0.12em;
    color: var(--gold);
    opacity: 0.8;
    white-space: nowrap;
  }

  .month-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.3rem;
  }

  .month-badge {
    font-size: 0.52rem;
    letter-spacing: 0.05em;
    padding: 0.15rem 0.5rem;
    border-radius: 2px;
    white-space: nowrap;
  }

  .badge-money1  { background: rgba(201,169,110,0.2); color: #d4b04a; border: 1px solid rgba(201,169,110,0.4); }
  .badge-money2  { background: rgba(180,150,60,0.12); color: #c4a030; border: 1px solid rgba(180,150,60,0.3); }
  .badge-move    { background: rgba(60,100,200,0.2);  color: #7898e0; border: 1px solid rgba(60,100,200,0.35); }
  .badge-marriage{ background: rgba(200,80,120,0.15); color: #e080a0; border: 1px solid rgba(200,80,120,0.3); }
  .badge-health  { background: rgba(200,60,60,0.15);  color: #e07070; border: 1px solid rgba(200,60,60,0.3); }
  .badge-realestate { background: rgba(60,150,80,0.15); color: #70c088; border: 1px solid rgba(60,150,80,0.3); }

  .month-desc {
    font-size: 0.82rem;
    color: rgba(240,237,232,0.7);
    line-height: 1.9;
  }

  /* ─── MBTI TEST LINK ─── */
  .mbti-test-link {
    display: block;
    margin-top: 0.8rem;
    font-size: 0.62rem;
    letter-spacing: 0.18em;
    color: rgba(201,169,110,0.55);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: color 0.2s;
    text-align: left;
  }
  .mbti-test-link:hover { color: var(--gold); }

  /* ─── MBTI MODAL ─── */
  .mbti-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    z-index: 200;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
  }
  .mbti-modal-overlay.active { display: flex; }

  .mbti-modal {
    background: #0e0e0e;
    border: 1px solid rgba(201,169,110,0.15);
    max-width: 480px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 2.5rem 2rem;
    position: relative;
  }

  .mbti-modal-close {
    position: absolute;
    top: 1rem; right: 1rem;
    background: none;
    border: none;
    color: var(--dim);
    font-size: 0.8rem;
    cursor: pointer;
    letter-spacing: 0.05em;
    padding: 0.2rem 0.4rem;
  }
  .mbti-modal-close:hover { color: var(--white); }

  .mbti-modal-eyebrow {
    font-size: 0.55rem;
    letter-spacing: 0.3em;
    color: var(--gold);
    opacity: 0.6;
    margin-bottom: 0.4rem;
  }

  .mbti-modal-title {
    font-family: 'EB Garamond', serif;
    font-size: 1rem;
    color: var(--white);
    opacity: 0.5;
    margin-bottom: 1rem;
    font-weight: 400;
  }

  .mbti-progress-bar {
    width: 100%;
    height: 1px;
    background: rgba(240,237,232,0.08);
    margin-bottom: 2rem;
  }
  .mbti-progress-fill {
    height: 100%;
    background: var(--gold);
    transition: width 0.3s ease;
    width: 5%;
  }

  .mbti-q-text {
    font-size: 1rem;
    color: var(--white);
    line-height: 1.7;
    margin-bottom: 2rem;
    min-height: 3.5em;
  }

  .mbti-options {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
  }

  .mbti-opt-btn {
    background: transparent;
    border: 1px solid rgba(240,237,232,0.12);
    color: rgba(240,237,232,0.75);
    padding: 0.9rem 1.2rem;
    font-size: 0.85rem;
    line-height: 1.5;
    text-align: left;
    cursor: pointer;
    transition: all 0.15s;
    font-family: inherit;
  }
  .mbti-opt-btn:hover {
    border-color: rgba(201,169,110,0.4);
    color: var(--white);
    background: rgba(201,169,110,0.05);
  }

  .mbti-result-box {
    text-align: center;
    padding-top: 0.5rem;
  }
  .mbti-result-label {
    font-size: 0.55rem;
    letter-spacing: 0.3em;
    color: var(--dim);
    margin-bottom: 0.8rem;
  }
  .mbti-result-type {
    font-family: 'EB Garamond', serif;
    font-size: 3.5rem;
    color: var(--gold);
    letter-spacing: 0.15em;
    margin-bottom: 1rem;
    line-height: 1;
  }
  .mbti-result-desc {
    font-size: 0.8rem;
    color: rgba(240,237,232,0.6);
    line-height: 1.7;
    margin-bottom: 1.8rem;
  }
  .mbti-result-apply {
    background: var(--gold);
    color: #0a0a0a;
    border: none;
    padding: 0.8rem 2rem;
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    cursor: pointer;
    font-family: inherit;
    transition: opacity 0.2s;
    position: relative;
    z-index: 10;
    pointer-events: auto;
  }
  .mbti-result-apply:hover { opacity: 0.85; }

  /* ─── RESULT ─── */
  .result-screen {
    display: none;
    max-width: 680px;
    margin: 0 auto;
    padding: 4rem 2rem 8rem;
  }

  .result-screen.active { display: block; }

  .result-header {
    text-align: center;
    margin-bottom: 5rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--line);
  }

  .result-name {
    font-family: 'EB Garamond', serif;
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 400;
    color: var(--white);
    margin-bottom: 0.5rem;
    letter-spacing: 0.05em;
  }

  .result-meta {
    font-size: 0.65rem;
    color: var(--dim);
    letter-spacing: 0.25em;
    text-transform: uppercase;
    line-height: 2.2;
  }

  .result-block {
    margin-bottom: 4rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid var(--line);
  }

  .result-block:last-child {
    border-bottom: none;
  }

  .block-label {
    font-size: 0.6rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--gold);
    opacity: 0.7;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
  }

  .block-label::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 1px;
    background: var(--gold);
    opacity: 0.5;
  }

  .block-content {
    font-size: 0.95rem;
    color: rgba(240,237,232,0.85);
    line-height: 2.2;
    white-space: pre-wrap;
    word-break: keep-all;
  }

  /* ─── EXECUTIVE SUMMARY ─── */
  .exec-summary {
    margin-bottom: 4rem;
    padding: 2.5rem 2rem;
    border: 1px solid rgba(201,169,110,0.2);
    border-radius: 2px;
    background: rgba(201,169,110,0.03);
  }

  .exec-summary .block-label {
    margin-bottom: 2rem;
  }

  .exec-row {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    margin-bottom: 1.2rem;
  }

  .exec-label {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--dim);
    min-width: 100px;
    flex-shrink: 0;
  }

  .exec-value {
    font-size: 1rem;
    color: var(--white);
    font-weight: 400;
  }

  .exec-badge {
    display: inline-block;
    padding: 0.2rem 0.8rem;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-size: 0.8rem;
    letter-spacing: 0.1em;
  }

  .exec-reason {
    font-size: 0.82rem;
    color: var(--dim);
    margin-top: 0.3rem;
    line-height: 1.8;
  }

  .exec-divider {
    height: 1px;
    background: var(--line);
    margin: 1.5rem 0;
  }

  .exec-actions-title {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--dim);
    margin-bottom: 1rem;
  }

  .exec-action {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    cursor: pointer;
    user-select: none;
  }

  .exec-checkbox {
    width: 18px;
    height: 18px;
    border: 1px solid rgba(240,237,232,0.3);
    border-radius: 1px;
    flex-shrink: 0;
    margin-top: 0.15rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
  }

  .exec-action.checked .exec-checkbox {
    border-color: var(--gold);
    background: rgba(201,169,110,0.15);
  }

  .exec-action.checked .exec-checkbox::after {
    content: '✓';
    color: var(--gold);
    font-size: 0.7rem;
  }

  .exec-action.checked .exec-action-text {
    text-decoration: line-through;
    opacity: 0.5;
  }

  .exec-action-text {
    font-size: 0.9rem;
    color: rgba(240,237,232,0.85);
    line-height: 1.6;
    transition: opacity 0.2s;
  }

  .exec-money {
    display: flex;
    align-items: baseline;
    gap: 0.8rem;
    margin-top: 0.3rem;
  }

  .exec-money-icon {
    color: var(--gold);
    font-size: 0.9rem;
  }

  .result-actions {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin-top: 5rem;
  }

  .result-actions .btn-outline {
    width: 100%;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: rgba(240, 237, 232, 0.85);
  }

  .btn-outline {
    background: transparent;
    border: 1px solid var(--line);
    color: rgba(240, 237, 232, 0.85);
    font-family: 'Noto Serif KR', serif;
    font-size: 1rem;
    letter-spacing: 0.15em;
    padding: 0;
    cursor: pointer;
    transition: all 0.25s ease;
  }

  .btn-outline:hover {
    border-color: rgba(240,237,232,0.3);
    color: var(--white);
  }

  /* ─── REVIEW FORM ─── */
  .review-form {
    display: none;
    margin-top: 3rem;
    padding: 2.5rem 2rem;
    border-top: 1px solid var(--line);
    border: 1px solid rgba(201,169,110,0.15);
    background: rgba(201,169,110,0.02);
  }

  .review-form-title {
    font-family: 'EB Garamond', serif;
    font-size: 1.1rem;
    color: var(--white);
    text-align: center;
    margin-bottom: 2rem;
    opacity: 0.8;
  }

  .star-rating {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
  }

  .star-btn {
    background: none;
    border: none;
    font-size: 1.6rem;
    cursor: pointer;
    color: rgba(240,237,232,0.2);
    transition: color 0.15s, transform 0.15s;
    padding: 0.2rem;
  }

  .star-btn:hover,
  .star-btn.active {
    color: #d4af37;
    transform: scale(1.15);
  }

  .review-field {
    margin-bottom: 1.2rem;
  }

  .review-field label {
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    color: var(--dim);
    margin-bottom: 0.5rem;
    display: block;
    text-transform: none;
  }

  .review-field textarea {
    width: 100%;
    background: transparent;
    border: 1px solid var(--line);
    color: var(--white);
    font-family: 'Noto Serif KR', serif;
    font-size: 0.85rem;
    font-weight: 300;
    padding: 0.8rem;
    line-height: 1.7;
    resize: vertical;
    min-height: 80px;
    outline: none;
    transition: border-color 0.3s;
  }

  .review-field textarea:focus {
    border-color: var(--gold);
  }

  .review-field textarea::placeholder {
    color: var(--dim);
  }

  .review-field input {
    border: 1px solid var(--line) !important;
    border-bottom: 1px solid var(--line) !important;
    padding: 0.7rem 0.8rem !important;
    font-size: 0.85rem;
  }

  .review-char-count {
    font-size: 0.55rem;
    color: var(--dim);
    text-align: right;
    margin-top: 0.3rem;
    letter-spacing: 0.05em;
  }

  .review-submit-btn {
    display: block;
    width: 100%;
    background: transparent;
    border: 1px solid rgba(201,169,110,0.5);
    color: var(--gold);
    font-family: 'Noto Serif KR', serif;
    font-size: 0.78rem;
    letter-spacing: 0.15em;
    padding: 1rem;
    cursor: pointer;
    transition: all 0.25s;
    margin-top: 1.5rem;
  }

  .review-submit-btn:hover {
    background: rgba(201,169,110,0.1);
  }

  .review-submit-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
  }

  .review-success {
    text-align: center;
    padding: 2rem;
    display: none;
  }

  .review-success p {
    font-size: 1rem;
    color: var(--gold);
    letter-spacing: 0.08em;
  }

  .btn-primary {
    background: transparent;
    border: 1px solid rgba(201,169,110,0.5);
    color: var(--gold);
    font-family: 'Noto Serif KR', serif;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    padding: 0.9rem 2.5rem;
    cursor: pointer;
    transition: all 0.25s ease;
  }

  .btn-primary:hover {
    background: rgba(201,169,110,0.1);
  }

  /* ─── FADE ANIMATIONS ─── */
  .fade-in {
    opacity: 0;
    transform: translateY(16px);
    animation: fadeUp 0.8s ease forwards;
  }

  @keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
  }

  .fade-in:nth-child(1) { animation-delay: 0.1s; }
  .fade-in:nth-child(2) { animation-delay: 0.25s; }
  .fade-in:nth-child(3) { animation-delay: 0.4s; }
  .fade-in:nth-child(4) { animation-delay: 0.55s; }
  .fade-in:nth-child(5) { animation-delay: 0.7s; }

  /* ─── DIVIDER ─── */
  .section-divider {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin: 3rem 0;
    color: var(--dim);
    font-size: 0.65rem;
    letter-spacing: 0.3em;
  }

  .section-divider::before,
  .section-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--line);
  }

  /* ─── FOOTER ─── */
  footer {
    border-top: 1px solid var(--line);
    padding: 2.5rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
  }

  footer p {
    font-size: 0.6rem;
    letter-spacing: 0.15em;
    color: var(--dim);
  }

  /* ─── RESPONSIVE ─── */
  @media (max-width: 900px) {
    .result-actions { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  }

  @media (max-width: 600px) {
    nav { padding: 1.5rem; }
    .field-row { grid-template-columns: 1fr; }
    .concern-grid { grid-template-columns: 1fr; }
    footer { flex-direction: column; gap: 1rem; text-align: center; }
    .mbti-grid { gap: 0.3rem; }
    .result-actions .btn-outline { height: 52px; font-size: 0.95rem; }
  }

  /* ─── EXTENDED WORKBOOK SECTIONS ─── */

  /* 패턴 카드 */
  .pattern-card {
    border: 1px solid var(--line);
    padding: 1.8rem 1.5rem;
    margin-bottom: 1.5rem;
  }
  .pattern-card:last-child { margin-bottom: 0; }

  .pattern-name {
    font-family: 'EB Garamond', serif;
    font-size: 1rem;
    color: var(--gold);
    opacity: 0.85;
    letter-spacing: 0.08em;
    margin-bottom: 1rem;
  }

  .pattern-desc {
    font-size: 0.88rem;
    color: rgba(240,237,232,0.8);
    line-height: 2;
    margin-bottom: 1.2rem;
  }

  /* 예시 박스 */
  .example-box {
    background: rgba(201,169,110,0.04);
    border-left: 2px solid rgba(201,169,110,0.25);
    padding: 1.2rem 1.4rem;
    margin-top: 0.8rem;
  }

  .example-label {
    font-size: 0.55rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    opacity: 0.6;
    margin-bottom: 0.8rem;
  }

  .example-row {
    font-size: 0.82rem;
    color: rgba(240,237,232,0.7);
    line-height: 1.9;
    margin-bottom: 0.5rem;
  }
  .example-row:last-child { margin-bottom: 0; }

  .example-row strong {
    color: rgba(240,237,232,0.5);
    font-weight: 400;
    font-size: 0.7rem;
    letter-spacing: 0.05em;
    margin-right: 0.3rem;
  }

  .tip-row {
    font-size: 0.82rem;
    color: rgba(201,169,110,0.75);
    line-height: 1.9;
    margin-top: 0.8rem;
    padding-top: 0.8rem;
    border-top: 1px solid var(--line);
  }

  /* 분기 로드맵 */
  .quarter-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1.5rem;
  }

  @media (max-width: 600px) {
    .quarter-grid { grid-template-columns: 1fr; }
  }

  .quarter-card {
    border: 1px solid var(--line);
    padding: 1.5rem 1.3rem;
  }

  .quarter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
  }

  .quarter-label {
    font-family: 'EB Garamond', serif;
    font-size: 0.85rem;
    color: var(--white);
    opacity: 0.6;
    letter-spacing: 0.05em;
  }

  .quarter-theme {
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    color: var(--gold);
    opacity: 0.8;
  }

  .energy-badge {
    font-size: 0.52rem;
    letter-spacing: 0.08em;
    padding: 0.15rem 0.5rem;
    border-radius: 2px;
    white-space: nowrap;
  }
  .energy-high   { background: rgba(201,169,110,0.2); color: #d4b04a; border: 1px solid rgba(201,169,110,0.4); }
  .energy-mid    { background: rgba(160,160,170,0.12); color: #b8b8c8; border: 1px solid rgba(160,160,170,0.25); }
  .energy-low    { background: rgba(60,100,200,0.15); color: #7898e0; border: 1px solid rgba(60,100,200,0.3); }

  .quarter-desc {
    font-size: 0.8rem;
    color: rgba(240,237,232,0.65);
    line-height: 1.9;
    margin-bottom: 1rem;
  }

  .quarter-action {
    font-size: 0.78rem;
    color: rgba(240,237,232,0.75);
    line-height: 1.9;
    padding: 0.4rem 0;
    border-bottom: 1px solid rgba(240,237,232,0.04);
  }
  .quarter-action:last-of-type { border-bottom: none; }

  .quarter-action::before {
    content: '→ ';
    color: var(--gold);
    opacity: 0.5;
  }

  .quarter-caution {
    font-size: 0.72rem;
    color: rgba(210,110,70,0.65);
    margin-top: 0.8rem;
    padding-top: 0.6rem;
    border-top: 1px solid var(--line);
  }
  .quarter-caution::before {
    content: '⚠ ';
    opacity: 0.6;
  }

  /* 체크리스트 */
  .checklist-item {
    font-size: 0.85rem;
    color: rgba(240,237,232,0.8);
    line-height: 2.2;
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(240,237,232,0.04);
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
  }
  .checklist-item:last-child { border-bottom: none; }

  .checklist-num {
    font-family: 'EB Garamond', serif;
    font-size: 0.9rem;
    color: var(--gold);
    opacity: 0.5;
    min-width: 1.5rem;
    flex-shrink: 0;
  }

  /* 시나리오 카드 */
  .scenario-card {
    border: 1px solid var(--line);
    padding: 1.8rem 1.5rem;
    margin-bottom: 1.5rem;
  }
  .scenario-card:last-child { margin-bottom: 0; }

  .scenario-title {
    font-family: 'EB Garamond', serif;
    font-size: 1rem;
    color: var(--white);
    opacity: 0.7;
    margin-bottom: 1.2rem;
  }

  .scenario-section {
    margin-bottom: 1rem;
  }
  .scenario-section:last-child { margin-bottom: 0; }

  .scenario-section-label {
    font-size: 0.55rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--dim);
    margin-bottom: 0.4rem;
  }

  .scenario-section-text {
    font-size: 0.85rem;
    color: rgba(240,237,232,0.75);
    line-height: 2;
  }

  /* 에너지 바 */
  .energy-month-row {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(240,237,232,0.03);
  }

  .energy-month-name {
    font-size: 0.72rem;
    color: rgba(240,237,232,0.5);
    min-width: 72px;
    letter-spacing: 0.02em;
  }

  .energy-bar-track {
    flex: 1;
    height: 4px;
    background: rgba(240,237,232,0.04);
    position: relative;
  }

  .energy-bar-fill {
    height: 100%;
    transition: width 0.3s ease;
  }
  .energy-bar-fill.level-high { width: 100%; background: rgba(201,169,110,0.6); }
  .energy-bar-fill.level-mid  { width: 60%;  background: rgba(160,160,170,0.4); }
  .energy-bar-fill.level-low  { width: 30%;  background: rgba(60,100,200,0.4); }

  .energy-month-tip {
    font-size: 0.68rem;
    color: rgba(240,237,232,0.45);
    min-width: 0;
    flex: 1.5;
  }

  /* 회복법 카드 */
  .recovery-card {
    border: 1px solid var(--line);
    padding: 1.2rem 1.3rem;
    margin-bottom: 0.8rem;
  }
  .recovery-card:last-child { margin-bottom: 0; }

  .recovery-name {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    color: var(--gold);
    opacity: 0.7;
    margin-bottom: 0.6rem;
  }

  .recovery-desc {
    font-size: 0.82rem;
    color: rgba(240,237,232,0.7);
    line-height: 1.9;
  }

  @media (max-width: 480px) {
    .energy-month-row { flex-wrap: wrap; gap: 0.4rem; }
    .energy-month-tip { flex-basis: 100%; padding-left: 0; }
  }

  /* ─── PRINT ─── */
  @media print {
    * { -webkit-print-color-adjust: exact !important; print-color-adjust: exact !important; }
    body::before, body::after { display: none !important; }
    nav, .hero, #form-view, .result-actions, .review-form,
    #review-success, .review-carousel-section, .paywall-gate { display: none !important; }
    .result-screen { display: block !important; }
    .result-screen.active { display: block !important; }
    .locked-section { filter: none !important; }
  }

  /* ─── REVIEW CAROUSEL ─── */
  .review-carousel-section {
    display: none;
    max-width: 560px;
    margin: 0 auto;
    padding: 0 1.5rem 3rem;
  }

  .review-carousel-title {
    font-size: 0.6rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--dim);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
  }

  .review-carousel-title::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--line);
  }

  .review-carousel-track {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-height: 380px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(201,169,110,0.3) transparent;
  }

  .review-carousel-track::-webkit-scrollbar {
    width: 4px;
  }
  .review-carousel-track::-webkit-scrollbar-thumb {
    background: rgba(201,169,110,0.3);
    border-radius: 2px;
  }

  .review-card {
    background: rgba(240,237,232,0.03);
    border: 1px solid var(--line);
    padding: 1.2rem 1.4rem;
    box-sizing: border-box;
    height: 120px;
    min-height: 120px;
    max-height: 120px;
    overflow: hidden;
    flex-shrink: 0;
  }

  .review-card-stars {
    color: #d4af37;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    margin-bottom: 0.6rem;
  }

  .review-card-text {
    font-size: 0.85rem;
    color: rgba(240,237,232,0.85);
    line-height: 1.8;
    margin-bottom: 0.8rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .review-card-meta {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.65rem;
    color: rgba(240,237,232,0.5);
    letter-spacing: 0.05em;
  }

  .review-biz-tag {
    font-size: 0.55rem;
    letter-spacing: 0.08em;
    padding: 0.12rem 0.5rem;
    border: 1px solid rgba(201,169,110,0.25);
    color: rgba(201,169,110,0.7);
    border-radius: 2px;
  }


  /* ─── RECOMMEND SECTION ─── */
  .recommend-section {
    max-width: 560px;
    margin: 0 auto;
    padding: 0 1.5rem 3rem;
  }

  .recommend-title {
    font-size: 0.6rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--dim);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
  }

  .recommend-title::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--line);
  }

  .recommend-list {
    list-style: none;
  }

  .recommend-list li {
    font-size: 0.85rem;
    color: rgba(240,237,232,0.75);
    line-height: 2.4;
    padding-left: 1.2rem;
    position: relative;
  }

  .recommend-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    opacity: 0.7;
    font-size: 0.75rem;
  }

  /* ─── READABILITY IMPROVEMENTS ─── */

  /* 1. 본문 기본 가독성: font-weight 상향 + 텍스트 밝기 강화 */
  body {
    font-weight: 400;
    color: rgba(240, 237, 232, 0.9);
  }

  /* 골드 텍스트 전체 font-weight 500 */
  h1 em,
  .hero-symbol,
  .pattern-name,
  .quarter-theme,
  .example-label,
  .tip-row,
  .recommend-list li::before,
  [style*="color:var(--gold)"],
  [style*="color: var(--gold)"] {
    font-weight: 500;
  }

  /* 섹션 제목 (골드 계열) font-weight 600 */
  .form-section-label,
  .review-carousel-title,
  .recommend-title,
  .result-screen h2,
  .result-screen h3,
  .section-header,
  .section-label {
    font-weight: 600;
  }

  /* 2. 본문 텍스트 최소 크기 + line-height 보장 */
  p, li, span, td, dd, dt, blockquote,
  .hero-sub,
  .pattern-desc,
  .example-row,
  .review-card-text,
  .recommend-list li,
  .result-body,
  .result-text {
    font-size: max(0.95rem, inherit);
    line-height: 1.8;
  }

  /* 흰색 본문 텍스트 밝기 상향 */
  .pattern-desc,
  .review-card-text,
  .recommend-list li,
  .example-row {
    color: rgba(240, 237, 232, 0.9);
  }

  /* 3. 섹션 구분선 두께 + opacity 강화 */
  :root {
    --line: rgba(240, 237, 232, 0.18);
  }

  nav {
    border-bottom-width: 1.5px;
  }

  .form-section-label::after,
  .review-carousel-title::after,
  .recommend-title::after {
    height: 1.5px;
  }

  .pattern-card,
  .quarter-card,
  .review-card {
    border-width: 1.5px;
  }

  .tip-row {
    border-top-width: 1.5px;
  }

  /* 4. 모바일 가독성 (768px 이하) */
  @media (max-width: 768px) {
    body {
      font-size: 1rem;
    }

    .hero-catchphrase {
      font-size: 1.2rem;
    }

    p, li, span, td, dd, dt, blockquote,
    .hero-sub,
    .pattern-desc,
    .example-row,
    .review-card-text,
    .recommend-list li,
    .result-body,
    .result-text {
      font-size: 1rem;
      line-height: 1.85;
    }

    .form-section-label,
    .review-carousel-title,
    .recommend-title,
    .result-screen h2,
    .result-screen h3,
    .section-header,
    .section-label {
      font-size: 1.1rem;
    }

    label {
      font-size: 0.8rem;
    }

    .nav-logo {
      font-size: 0.9rem;
    }
  }
