/* ═══════════════════════════════════════════
   SAJU ATELIER — Main Stylesheet
   Palette: Navy/Gold/Cream (LOCKED)
   Rounded, soft, modern — targeting 20-40F
   ═══════════════════════════════════════════ */

:root {
    --ink: #08080e;
    --cream: #f5f0e8;
    --gold: #c4a265;
    --gold-light: #d4b87a;
    --gold-dark: #9a7a3e;
    --navy: #12122a;
    --navy-light: #1e1e3a;
    --plum: #3a1535;
    --jade: #5a8a7a;
    --celadon: #a8c8b8;
    --blush: #d4a0a0;
    --champagne: #f5e6cc;
    --text-body: #2a2a35;
    --text-light: #8a8a95;
    --wood: #4a7c59;
    --fire: #c4513a;
    --earth: #b8935a;
    --metal: #8a8a8a;
    --water: #2a5a8a;
    --header-h: 64px;
    --radius-sm: 12px;
    --radius-md: 16px;
    --radius-lg: 20px;
    --radius-xl: 24px;
    --radius-pill: 100px;
    --ease-out: cubic-bezier(0.19, 1, 0.22, 1);
    --ease-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.2);
    --shadow-glow: 0 0 40px rgba(196, 162, 101, 0.08);
}

/* ─── Reset ─── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    line-height: 1.7;
    color: var(--cream);
    background: var(--ink);
    font-size: 16px;
}

a { color: var(--gold); text-decoration: none; transition: opacity 0.2s; }
a:hover { opacity: 0.8; }
img { max-width: 100%; height: auto; }

/* ─── Typography ─── */
.heading-display { font-family: 'Cormorant Garamond', serif; font-weight: 300; }
.text-korean { font-family: 'Gowun Batang', serif; }
.label-sm {
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    font-size: 11px;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--gold);
}

/* Gold gradient text */
.gold-text {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 40%, var(--champagne) 60%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ═══════════════════════════════════════════
   SITE HEADER — Frosted glass navigation
   ═══════════════════════════════════════════ */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    height: var(--header-h);
    display: flex;
    align-items: center;
    transition: border-color 0.4s, box-shadow 0.4s;
    border-bottom: 1px solid transparent;
}
/* Frosted glass via ::before — keeps backdrop-filter OFF the header itself,
   so it never creates a containing block for fixed-position .header-nav */
.site-header::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    background: transparent;
    transition: background 0.4s var(--ease-smooth);
}
.site-header.scrolled { border-bottom-color: rgba(196, 162, 101, 0.1); box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3); }
.site-header.scrolled::before {
    background: rgba(8, 8, 14, 0.82);
    backdrop-filter: blur(20px) saturate(1.8);
    -webkit-backdrop-filter: blur(20px) saturate(1.8);
}

.header-inner {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}
.header-brand:hover { opacity: 1; }
.header-logo-img {
    height: 36px;
    width: auto;
    filter: drop-shadow(0 0 8px rgba(196, 162, 101, 0.15));
}

.header-nav {
    display: flex;
    gap: 32px;
}
.nav-link {
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(245, 240, 232, 0.5);
    transition: color 0.3s;
    text-decoration: none;
}
.nav-link:hover { color: var(--gold); opacity: 1; }

.btn-sm {
    padding: 10px 24px;
    font-size: 11px;
}
.header-cta {
    opacity: 0;
    transform: translateY(-4px);
    transition: opacity 0.4s, transform 0.4s, background 0.3s, box-shadow 0.3s;
    pointer-events: none;
}
.scrolled .header-cta {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* Hamburger button — hidden on desktop */
.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 44px;
    height: 44px;
    position: relative;
    z-index: 1001;
    -webkit-tap-highlight-color: transparent;
}
.hamburger span {
    display: block;
    width: 20px;
    height: 1.5px;
    background: var(--cream);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.hamburger span:nth-child(1) { top: calc(50% - 6px); }
.hamburger span:nth-child(2) { top: 50%; transform: translateX(-50%); }
.hamburger span:nth-child(3) { top: calc(50% + 6px); }
.hamburger.open span:nth-child(1) { top: 50%; transform: translateX(-50%) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: translateX(-50%) scaleX(0); }
.hamburger.open span:nth-child(3) { top: 50%; transform: translateX(-50%) rotate(-45deg); }

/* Mobile nav CTA — hidden on desktop (2-class specificity to beat .btn) */
.header-nav .nav-cta-mobile { display: none; }

/* ═══ SCROLL REVEAL ═══ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0ms; }
.reveal-d2 { transition-delay: 150ms; }
.reveal-d3 { transition-delay: 300ms; }

/* ═══ BUTTONS — Pill shape ═══ */
.btn {
    display: inline-block;
    padding: 16px 40px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: none;
    border-radius: var(--radius-pill);
    cursor: pointer;
    transition: all 0.4s var(--ease-out);
    text-align: center;
    text-decoration: none;
}
.btn-gold {
    background: var(--gold);
    color: var(--ink);
}
.btn-gold:hover {
    background: var(--gold-light);
    opacity: 1;
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 12px 36px rgba(196, 162, 101, 0.3);
}
.btn-outline {
    background: transparent;
    color: var(--gold);
    border: 1.5px solid var(--gold);
}
.btn-outline:hover {
    background: rgba(196, 162, 101, 0.1);
    opacity: 1;
    transform: translateY(-2px) scale(1.02);
}
.btn-lg { padding: 20px 52px; font-size: 14px; }

/* Shimmer effect on CTA */
.btn-shimmer {
    position: relative;
    overflow: hidden;
}
.btn-shimmer::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.25) 50%, transparent 100%);
    animation: shimmer 3s ease-in-out infinite;
    border-radius: inherit;
}
@keyframes shimmer {
    0%, 100% { left: -100%; }
    50% { left: 100%; }
}

/* ═══════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════ */
.hero {
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 60px 24px;
}

.hero-bg-image {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.18;
    transform: scale(1.1);
    filter: blur(2px);
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background:
        radial-gradient(ellipse at 50% 30%, rgba(30, 30, 58, 0.7) 0%, transparent 60%),
        radial-gradient(ellipse at 50% 80%, rgba(58, 21, 53, 0.2) 0%, transparent 50%),
        linear-gradient(to bottom, rgba(8,8,14,0.3) 0%, rgba(8,8,14,0.8) 100%);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(1px 1px at 20% 30%, rgba(196,162,101,0.3), transparent),
                radial-gradient(1px 1px at 40% 70%, rgba(196,162,101,0.2), transparent),
                radial-gradient(1px 1px at 60% 20%, rgba(196,162,101,0.15), transparent),
                radial-gradient(1px 1px at 80% 50%, rgba(196,162,101,0.25), transparent),
                radial-gradient(1px 1px at 15% 80%, rgba(196,162,101,0.2), transparent),
                radial-gradient(1px 1px at 70% 85%, rgba(196,162,101,0.15), transparent);
    background-size: 300px 300px;
    opacity: 0.3;
    pointer-events: none;
    z-index: 1;
}

.hero-glow {
    position: absolute;
    top: 40%; left: 50%;
    transform: translate(-50%, -50%);
    width: 800px; height: 800px;
    background: radial-gradient(circle, rgba(196,162,101,0.06) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.hero-anim {
    opacity: 0;
    transform: translateY(20px);
    animation: heroFadeIn 1s var(--ease-out) forwards;
}
.hero-anim-1 { animation-delay: 0.3s; }
.hero-anim-2 { animation-delay: 0.7s; }
.hero-anim-3 { animation-delay: 1.1s; }
.hero-anim-4 { animation-delay: 1.5s; }
.hero-anim-5 { animation-delay: 2s; }

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

.hero-logo { margin-bottom: 32px; }
.hero-logo-img {
    max-height: 180px;
    width: auto;
    filter: drop-shadow(0 0 40px rgba(196, 162, 101, 0.2));
}

.hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: clamp(42px, 7vw, 76px);
    line-height: 1.08;
    color: var(--cream);
    margin-bottom: 24px;
}
.hero h1 em {
    font-style: italic;
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 40%, var(--champagne) 70%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-sub {
    font-size: 17px;
    color: rgba(245, 240, 232, 0.55);
    max-width: 520px;
    margin: 0 auto 48px;
    line-height: 1.8;
}

.hero-cta-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}
.hero-cta-note {
    font-size: 12px;
    color: rgba(245, 240, 232, 0.3);
    letter-spacing: 1px;
}
.hero-badges {
    display: flex;
    gap: 10px;
    margin-top: 12px;
    flex-wrap: wrap;
    justify-content: center;
}
.hero-badge {
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid rgba(196, 162, 101, 0.2);
    border-radius: var(--radius-pill);
    padding: 5px 14px;
    background: rgba(196, 162, 101, 0.05);
}

.hero-scroll-hint {
    position: absolute;
    bottom: 40px; left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}
.hero-scroll-hint span {
    font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
    color: rgba(245, 240, 232, 0.25);
}
.hero-scroll-line {
    width: 1px; height: 40px;
    background: linear-gradient(to bottom, rgba(196, 162, 101, 0.4), transparent);
    animation: scrollPulse 2s ease infinite;
}
@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.8; }
}

/* ═══════════════════════════════════════════
   PRODUCT SHOWCASE — Fan cards
   ═══════════════════════════════════════════ */
.showcase-section { padding: 100px 24px; }
.showcase-section .section-inner { max-width: 1100px; margin: 0 auto; }
.showcase-layout {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 80px; align-items: center;
}

.showcase-fan {
    position: relative;
    width: 100%; height: 420px;
    display: flex; justify-content: center; align-items: center;
}
.fan-card {
    position: absolute;
    width: 220px; height: 310px;
    object-fit: cover;
    border-radius: var(--radius-md);
    border: 1px solid rgba(196, 162, 101, 0.2);
    box-shadow: var(--shadow-lg);
    transition: all 0.5s var(--ease-out);
}
.fan-card-1 {
    transform: rotate(-8deg) translateX(-60px);
    z-index: 1;
}
.fan-card-2 {
    transform: rotate(0deg) translateY(-10px);
    z-index: 2;
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}
.fan-card-3 {
    transform: rotate(8deg) translateX(60px);
    z-index: 1;
}
.showcase-fan:hover .fan-card-1 { transform: rotate(-12deg) translateX(-80px) translateY(-5px); }
.showcase-fan:hover .fan-card-2 { transform: rotate(0deg) translateY(-18px) scale(1.03); }
.showcase-fan:hover .fan-card-3 { transform: rotate(12deg) translateX(80px) translateY(-5px); }

.showcase-text .label-sm { display: block; }
.showcase-text h2 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.15;
    margin: 16px 0 20px;
}
.showcase-text p {
    font-size: 15px;
    color: rgba(245, 240, 232, 0.55);
    line-height: 1.85;
    margin-bottom: 36px;
}
.showcase-stats { display: flex; gap: 36px; }
.showcase-stat { display: flex; flex-direction: column; align-items: center; }
.stat-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 42px; font-weight: 300; color: var(--gold); line-height: 1;
}
.stat-label {
    font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
    color: rgba(245, 240, 232, 0.35); margin-top: 6px;
}

/* ═══════════════════════════════════════════
   FIVE ELEMENTS
   ═══════════════════════════════════════════ */
.elements-section { padding: 90px 24px; }
.elements-section .section-inner { max-width: 900px; margin: 0 auto; }
.elements-ring {
    display: flex; justify-content: center; gap: 16px;
    flex-wrap: wrap; margin-bottom: 32px;
}
.element-card {
    display: flex; flex-direction: column; align-items: center;
    gap: 8px; padding: 24px 16px 20px;
    border: 1px solid rgba(196, 162, 101, 0.08);
    border-radius: var(--radius-lg);
    width: 150px;
    background: rgba(196, 162, 101, 0.02);
    transition: all 0.4s var(--ease-out);
}
.element-card:hover {
    border-color: rgba(196, 162, 101, 0.25);
    transform: translateY(-6px);
    box-shadow: var(--shadow-md), var(--shadow-glow);
    background: rgba(196, 162, 101, 0.04);
}
.element-icon-img {
    width: 64px; height: 64px; object-fit: contain;
    filter: drop-shadow(0 0 8px rgba(196, 162, 101, 0.15));
}
.element-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 17px; color: var(--cream);
}
.element-kr {
    font-family: 'Gowun Batang', serif;
    font-size: 28px; color: var(--gold); opacity: 0.5; line-height: 1;
}
.element-trait {
    font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase;
    color: rgba(245, 240, 232, 0.3);
}
.elements-caption {
    text-align: center; font-size: 15px;
    color: rgba(245, 240, 232, 0.4);
    max-width: 500px; margin: 0 auto;
}

/* ═══════════════════════════════════════════
   SECTION LAYOUT
   ═══════════════════════════════════════════ */
.section-cream { background: var(--cream); color: var(--text-body); max-width: none; }
.section-cream .section-inner { max-width: 1000px; margin: 0 auto; }
.section-navy { background: var(--navy); max-width: none; }
.section-navy .section-inner { max-width: 1000px; margin: 0 auto; }
.section-dark { background: var(--ink); max-width: none; }
.section-dark .section-inner { max-width: 1000px; margin: 0 auto; }

.section-header { text-align: center; margin-bottom: 56px; }
.section-header .label-sm { margin-bottom: 16px; display: block; }
.section-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    font-size: clamp(32px, 5vw, 52px);
    margin-bottom: 16px;
}
.section-cream h2 { color: var(--navy); }
.section-header p {
    font-size: 16px; max-width: 550px; margin: 0 auto; line-height: 1.8;
}
.section-cream .section-header p { color: var(--text-light); }

.gold-divider { width: 40px; height: 1px; background: var(--gold); margin: 0 auto 24px; }
.section-divider-img {
    display: block; margin: 12px auto 24px;
    height: 16px; width: auto; opacity: 0.5;
}

/* ═══════════════════════════════════════════
   READING PREVIEW — Blurred analysis teaser
   ═══════════════════════════════════════════ */
.preview-section { }
.preview-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}
.preview-card {
    border-radius: var(--radius-xl);
    border: 1px solid rgba(196, 162, 101, 0.1);
    background: rgba(196, 162, 101, 0.02);
    overflow: hidden;
    transition: all 0.4s var(--ease-out);
}
.preview-card:hover {
    border-color: rgba(196, 162, 101, 0.2);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md), var(--shadow-glow);
}

.preview-card-header {
    padding: 20px 24px;
    display: flex; align-items: center; gap: 14px;
    border-bottom: 1px solid rgba(196, 162, 101, 0.08);
}
.preview-section-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px; font-weight: 300; color: var(--gold); opacity: 0.5;
    line-height: 1;
}
.preview-section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px; color: var(--cream); font-weight: 400;
}

.preview-content {
    padding: 24px;
    position: relative;
}
.preview-visible { position: relative; z-index: 1; }
.preview-blurred {
    filter: blur(5px);
    user-select: none;
    pointer-events: none;
    opacity: 0.5;
    margin-top: 12px;
}
.preview-blurred p {
    font-size: 14px; line-height: 1.8;
    color: rgba(245, 240, 232, 0.5);
}
.preview-fade {
    position: absolute;
    bottom: 0; left: 0; right: 0; height: 80px;
    background: linear-gradient(to bottom, transparent, rgba(8, 8, 14, 0.95));
    z-index: 2;
    pointer-events: none;
}

.preview-hanja {
    font-family: 'Gowun Batang', serif;
    font-size: 56px; color: var(--gold); opacity: 0.6;
    text-align: center; line-height: 1; margin-bottom: 8px;
}
.preview-archetype {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px; font-style: italic; color: var(--gold-light);
    text-align: center; margin-bottom: 12px;
}
.preview-visible > p {
    font-size: 14.5px; line-height: 1.8;
    color: rgba(245, 240, 232, 0.65);
}

/* Cycle bar */
.preview-cycle-bar {
    display: flex; gap: 3px;
    border-radius: var(--radius-sm);
    overflow: hidden; margin-bottom: 12px;
}
.cycle-segment {
    padding: 10px 0;
    text-align: center;
    transition: all 0.3s;
}
.cycle-segment span {
    font-size: 11px; font-weight: 500; color: white; letter-spacing: 1px;
}
.cycle-segment.active {
    box-shadow: 0 0 12px rgba(196, 162, 101, 0.4);
}
.preview-cycle-note {
    font-size: 14px; color: rgba(245, 240, 232, 0.6); text-align: center;
}
.preview-cycle-note strong { color: var(--gold); }

/* Compatibility bars */
.preview-compat { display: flex; flex-direction: column; gap: 12px; }
.compat-match {
    display: grid; grid-template-columns: 48px 1fr 36px;
    align-items: center; gap: 10px;
}
.compat-el {
    font-size: 13px; font-weight: 500; color: rgba(245, 240, 232, 0.6);
}
.compat-bar {
    height: 8px; border-radius: 4px;
    background: rgba(196, 162, 101, 0.1);
    overflow: hidden;
}
.compat-bar span {
    display: block; height: 100%;
    border-radius: 4px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
    transition: width 1s var(--ease-out);
}
.compat-pct {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px; color: var(--gold); text-align: right;
}

.preview-unlock {
    padding: 16px 24px;
    border-top: 1px solid rgba(196, 162, 101, 0.06);
    text-align: center;
}
.preview-unlock span {
    font-size: 12px; letter-spacing: 1px;
    color: rgba(245, 240, 232, 0.3);
}

/* Career grid — Preview Card 4 */
.preview-career-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 4px;
}
.preview-career-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 14px 8px;
    border: 1px solid rgba(196, 162, 101, 0.08);
    border-radius: var(--radius-sm);
    background: rgba(196, 162, 101, 0.03);
}
.preview-career-icon {
    font-size: 14px;
    color: var(--gold);
    opacity: 0.6;
}
.preview-career-label {
    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(245, 240, 232, 0.35);
}
.preview-career-val {
    font-family: 'Cormorant Garamond', serif;
    font-size: 15px;
    color: var(--gold-light);
    font-weight: 500;
    text-align: center;
}

/* Gift tags — Preview Card 5 */
.preview-gifts {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.preview-gift-tag {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border: 1px solid rgba(196, 162, 101, 0.1);
    border-radius: var(--radius-sm);
    background: rgba(196, 162, 101, 0.04);
    font-family: 'Cormorant Garamond', serif;
    font-size: 15px;
    color: rgba(245, 240, 232, 0.65);
    letter-spacing: 0.3px;
}
.gift-star {
    color: var(--gold);
    font-size: 12px;
}

/* ═══════════════════════════════════════════
   INTERLUDE — background image section
   ═══════════════════════════════════════════ */
.section-interlude {
    position: relative; overflow: hidden; max-width: none;
}
.interlude-bg {
    position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background-size: cover; background-position: center; opacity: 0.12;
}
.interlude-overlay {
    position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to bottom, var(--ink), rgba(18, 18, 42, 0.95), var(--ink));
}
.section-interlude .section-inner { max-width: 1000px; margin: 0 auto; }

/* ═══════════════════════════════════════════
   DISCOVER GRID
   ═══════════════════════════════════════════ */
.discover-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.discover-item {
    padding: 28px 24px;
    border: 1px solid rgba(196, 162, 101, 0.08);
    border-radius: var(--radius-lg);
    text-align: center;
    background: rgba(8, 8, 14, 0.3);
    backdrop-filter: blur(4px);
    transition: all 0.4s var(--ease-out);
}
.discover-item:hover {
    border-color: rgba(196, 162, 101, 0.2);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.discover-item .di-icon { font-size: 24px; margin-bottom: 14px; color: var(--gold); opacity: 0.7; }
.discover-item h4 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400; font-size: 18px; margin-bottom: 8px; color: var(--cream);
}
.discover-item p { font-size: 13px; color: rgba(245, 240, 232, 0.45); line-height: 1.6; }

/* ═══════════════════════════════════════════
   PRICING
   ═══════════════════════════════════════════ */
.pricing-grid {
    display: grid; grid-template-columns: repeat(2, 1fr);
    gap: 28px; max-width: 720px; margin: 0 auto;
}
.pricing-card {
    padding: 48px 36px;
    border: 1px solid rgba(196, 162, 101, 0.08);
    border-radius: var(--radius-xl);
    position: relative; text-align: center;
    transition: all 0.4s var(--ease-out);
}
.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}
.section-cream .pricing-card {
    background: white;
    border-color: rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}
.section-cream .pricing-card:hover {
    border-color: rgba(196, 162, 101, 0.25);
    box-shadow: 0 16px 48px rgba(196, 162, 101, 0.1);
}
.pricing-card.featured { border-color: var(--gold); }
.pricing-card.featured:hover {
    border-color: var(--gold-light);
    box-shadow: 0 16px 50px rgba(196, 162, 101, 0.15);
}
.pricing-badge {
    position: absolute;
    top: -12px; left: 50%; transform: translateX(-50%);
    background: var(--gold); color: var(--ink);
    padding: 6px 24px;
    border-radius: var(--radius-pill);
    font-size: 10px; letter-spacing: 3px; text-transform: uppercase; font-weight: 600; white-space: nowrap;
}
.pricing-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400; font-size: 24px; margin-bottom: 8px;
}
.section-cream .pricing-card h3 { color: var(--navy); }
.pricing-launch-badge {
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--fire);
    margin-bottom: 4px;
    font-weight: 600;
}
.pricing-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 48px; font-weight: 300; color: var(--gold); margin-bottom: 24px;
}
.pricing-original {
    font-size: 24px;
    color: rgba(245, 240, 232, 0.3);
    text-decoration: line-through;
    margin-right: 8px;
    font-weight: 300;
}
.pricing-features { list-style: none; text-align: left; margin-bottom: 32px; }
.pricing-features li {
    padding: 8px 0; font-size: 14px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04); color: var(--text-body);
}
.pricing-features li::before { content: '\2726'; color: var(--gold); font-size: 10px; margin-right: 8px; }
.pricing-anchor { margin-top: 32px; font-size: 13px; color: var(--text-light); font-style: italic; text-align: center; }
.pricing-guarantee { text-align: center; margin-top: 24px; font-size: 14px; color: var(--text-light); }

/* ═══════════════════════════════════════════
   FAQ ACCORDION
   ═══════════════════════════════════════════ */
.faq-list { max-width: 700px; margin: 0 auto; }
.faq-item {
    border-bottom: 1px solid rgba(196, 162, 101, 0.08);
}
.faq-question {
    display: flex; justify-content: space-between; align-items: center;
    padding: 24px 0; cursor: pointer;
    font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 400;
    color: var(--cream); user-select: none; transition: color 0.2s;
}
.faq-question:hover { color: var(--gold-light); }
.faq-question::after {
    content: '+'; font-size: 24px; color: var(--gold);
    transition: transform 0.3s var(--ease-out); flex-shrink: 0; margin-left: 16px;
}
.faq-item.open .faq-question::after { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease-out; }
.faq-answer-inner {
    padding: 0 0 24px; font-size: 15px; line-height: 1.8;
    color: rgba(245, 240, 232, 0.6);
}
.faq-item.open .faq-answer { max-height: 600px; }

/* ═══════════════════════════════════════════
   FINAL CTA
   ═══════════════════════════════════════════ */
.final-cta {
    text-align: center; padding: 120px 24px;
    position: relative; overflow: hidden;
}
.final-cta-bg {
    position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background-size: cover; background-position: center;
    opacity: 0.1; filter: blur(3px);
}
.final-cta-overlay {
    position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(30, 30, 58, 0.5) 0%, rgba(8,8,14,0.9) 70%);
}
.final-cta-inner { position: relative; z-index: 1; max-width: 600px; margin: 0 auto; }
.final-cta-logo {
    max-height: 60px; width: auto; margin-bottom: 32px; opacity: 0.5;
    filter: drop-shadow(0 0 15px rgba(196, 162, 101, 0.1));
}
.final-cta h2 {
    font-family: 'Cormorant Garamond', serif; font-weight: 300;
    font-size: clamp(34px, 5vw, 54px); margin-bottom: 16px;
}
.final-cta p {
    font-size: 16px; color: rgba(245, 240, 232, 0.5);
    margin-bottom: 40px; max-width: 450px; margin-left: auto; margin-right: auto;
}

/* ═══════════════════════════════════════════
   MOBILE STICKY CTA
   ═══════════════════════════════════════════ */
.sticky-cta {
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 100;
    padding: 12px 20px;
    padding-bottom: calc(12px + env(safe-area-inset-bottom, 0px));
    background: rgba(8, 8, 14, 0.95);
    backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid rgba(196, 162, 101, 0.15);
    display: none;
    transform: translateY(100%);
    transition: transform 0.4s var(--ease-out);
}
.sticky-cta.sticky-visible { transform: translateY(0); }
.sticky-cta-btn { display: block; width: 100%; padding: 14px; font-size: 13px; }
.sticky-cta-sub {
    display: block;
    text-align: center;
    font-size: 10px;
    letter-spacing: 1px;
    color: rgba(245, 240, 232, 0.3);
    margin-top: 4px;
}

/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */
.site-footer {
    padding: 48px 24px;
    border-top: 1px solid rgba(196, 162, 101, 0.06);
}
.footer-inner { max-width: 1000px; margin: 0 auto; text-align: center; }
.footer-brand {
    margin-bottom: 8px;
    display: flex; align-items: center; justify-content: center; gap: 10px;
}
.footer-logo-img { height: 28px; width: auto; opacity: 0.5; }
.footer-tagline {
    font-family: 'Cormorant Garamond', serif; font-style: italic;
    font-size: 14px; color: rgba(245, 240, 232, 0.25); margin-bottom: 16px;
}
.footer-links { margin-bottom: 16px; }
.footer-links a {
    font-size: 13px; color: rgba(245, 240, 232, 0.3);
    margin: 0 16px; letter-spacing: 1px; transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); opacity: 1; }
.footer-social {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 16px;
}
.footer-social a {
    font-size: 11px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(245, 240, 232, 0.3);
    transition: color 0.3s;
}
.footer-social a:hover { color: var(--gold); opacity: 1; }
.footer-disclaimer { font-size: 11px; color: rgba(245, 240, 232, 0.2); font-style: italic; }

/* ═══════════════════════════════════════════
   FORMS
   ═══════════════════════════════════════════ */
.form-page { padding-top: calc(var(--header-h) + 20px); }
.form-group { margin-bottom: 24px; }
.form-label {
    display: block; font-size: 12px; letter-spacing: 2px;
    text-transform: uppercase; color: var(--gold); margin-bottom: 8px;
}
.form-input, .form-select {
    width: 100%; padding: 14px 18px;
    background: rgba(196, 162, 101, 0.06);
    border: 1px solid rgba(196, 162, 101, 0.12);
    border-radius: var(--radius-sm);
    color: var(--cream);
    font-family: 'DM Sans', sans-serif; font-size: 16px; font-weight: 400;
    transition: border-color 0.3s var(--ease-smooth);
}
.form-input:focus, .form-select:focus {
    outline: none; border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(196, 162, 101, 0.1);
}
.form-input::placeholder { color: rgba(245, 240, 232, 0.25); }
.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23c4a265' fill='none' stroke-width='1.5'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px;
}
.form-select option { background: var(--navy); color: var(--cream); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-row-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px; }
.form-check {
    display: flex; align-items: center; gap: 10px;
    cursor: pointer; font-size: 14px; color: rgba(245, 240, 232, 0.6);
}
.form-check input[type="checkbox"] { accent-color: var(--gold); width: 18px; height: 18px; }
.form-radio-group { display: flex; gap: 20px; }
.form-radio {
    display: flex; align-items: center; gap: 8px;
    cursor: pointer; font-size: 15px; color: rgba(245, 240, 232, 0.7);
}
.form-radio input[type="radio"] { accent-color: var(--gold); width: 18px; height: 18px; }
.form-error {
    background: rgba(196, 81, 58, 0.1); border: 1px solid rgba(196, 81, 58, 0.3);
    border-radius: var(--radius-sm);
    color: #e8a090; padding: 14px 20px; margin-bottom: 24px; font-size: 14px;
}
.form-error ul { list-style: none; padding: 0; }

/* ═══════════════════════════════════════════
   MINI READING RESULT
   ═══════════════════════════════════════════ */
.mini-card {
    max-width: 500px; margin: 0 auto 48px; padding: 48px 36px;
    border: 1px solid rgba(196, 162, 101, 0.15); text-align: center;
    border-radius: var(--radius-xl);
    background: rgba(196, 162, 101, 0.03);
    box-shadow: var(--shadow-md);
}
.mini-element-icon { font-size: 48px; margin-bottom: 16px; }
.mini-day-master {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px; color: var(--cream); margin-bottom: 4px;
}
.mini-archetype {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic; font-size: 16px; color: var(--gold-light); margin-bottom: 24px;
}
.mini-insight {
    font-size: 15.5px; line-height: 1.85;
    color: rgba(245, 240, 232, 0.75);
}

.upsell {
    padding: 80px 24px; text-align: center; background: var(--navy);
}
.upsell h2 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400; font-size: 32px; color: var(--cream); margin-bottom: 12px;
}
.upsell-sub {
    font-size: 15px; color: rgba(245, 240, 232, 0.5);
    margin-bottom: 48px; max-width: 500px; margin-left: auto; margin-right: auto;
}

/* ═══════════════════════════════════════════
   GENERATING / WAIT PAGE
   ═══════════════════════════════════════════ */
.generating {
    min-height: 80vh; display: flex; flex-direction: column;
    align-items: center; justify-content: center; text-align: center; padding: 60px 24px;
}
.generating-spinner {
    width: 48px; height: 48px;
    border: 2px solid rgba(196, 162, 101, 0.15); border-top-color: var(--gold);
    border-radius: 50%; animation: spin 1.2s linear infinite; margin-bottom: 32px;
}
@keyframes spin { to { transform: rotate(360deg); } }
.generating h2 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300; font-size: 28px; color: var(--cream); margin-bottom: 12px;
}
.generating-status { font-size: 14px; color: rgba(245, 240, 232, 0.4); letter-spacing: 1px; }

/* ═══════════════════════════════════════════
   HERO KICKER — Korean Four Pillars subtitle
   ═══════════════════════════════════════════ */
.hero-kicker {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--gold);
    opacity: 0.7;
    margin-bottom: 20px;
}

/* ═══════════════════════════════════════════
   QUESTION GRID — Desire-driven questions
   ═══════════════════════════════════════════ */
.question-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}
.question-card {
    padding: 32px 24px;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.4s var(--ease-out);
    cursor: default;
}
.question-card:hover {
    border-color: rgba(196, 162, 101, 0.3);
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(196, 162, 101, 0.1);
}
.qc-icon {
    font-size: 28px;
    color: var(--gold);
    margin-bottom: 16px;
    opacity: 0.7;
}
.qc-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 19px;
    font-weight: 400;
    line-height: 1.45;
    color: var(--navy);
    margin-bottom: 16px;
}
.qc-text em {
    font-style: italic;
    color: var(--gold-dark);
}
.qc-section {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold-dark);
    opacity: 0.6;
}

/* ═══════════════════════════════════════════
   COMPARISON TABLE — vs Traditional vs Western
   ═══════════════════════════════════════════ */
.compare-table {
    max-width: 800px;
    margin: 0 auto;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
.compare-table table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    font-size: 14.5px;
}
.compare-table thead th {
    padding: 20px 16px 16px;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    font-size: 17px;
    color: var(--text-light);
    text-align: center;
    border-bottom: 2px solid rgba(0, 0, 0, 0.06);
    line-height: 1.3;
}
.compare-table thead th.compare-highlight {
    color: var(--navy);
    font-weight: 500;
    background: rgba(196, 162, 101, 0.06);
    border-radius: var(--radius-md) var(--radius-md) 0 0;
    border-bottom-color: var(--gold);
}
.compare-table tbody td {
    padding: 16px;
    text-align: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    color: var(--text-body);
    vertical-align: middle;
}
.compare-table tbody td:first-child {
    text-align: left;
    font-weight: 500;
    color: var(--navy);
    font-size: 13.5px;
}
.compare-table tbody td.compare-highlight {
    background: rgba(196, 162, 101, 0.06);
    color: var(--navy);
    font-weight: 500;
}
.compare-table tbody tr:last-child td {
    border-bottom: none;
}
.compare-table tbody tr:last-child td.compare-highlight {
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    font-size: 18px;
}
.compare-table tbody td strong {
    color: var(--gold-dark);
    font-size: 22px;
    font-family: 'Cormorant Garamond', serif;
}

/* ═══════════════════════════════════════════
   PREVIEW CARD EXTRAS — quote, compat-label-sm, warn bar
   ═══════════════════════════════════════════ */
.preview-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-style: italic;
    line-height: 1.55;
    color: var(--gold-light);
    text-align: center;
    margin-bottom: 20px;
    padding: 0 8px;
}

.compat-label-sm {
    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-align: right;
}
.compat-match.good .compat-label-sm { color: var(--jade); }
.compat-match.neutral .compat-label-sm { color: var(--gold); }
.compat-match.bad .compat-label-sm { color: var(--fire); }

.compat-bar.warn span {
    background: linear-gradient(90deg, var(--fire), rgba(196, 81, 58, 0.6));
}

/* ═══════════════════════════════════════════
   DARK-MODE PRICING — pricing in section-dark
   ═══════════════════════════════════════════ */
.section-dark .pricing-card {
    background: rgba(196, 162, 101, 0.02);
    border-color: rgba(196, 162, 101, 0.08);
}
.section-dark .pricing-card:hover {
    border-color: rgba(196, 162, 101, 0.2);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}
.section-dark .pricing-card.featured {
    background: rgba(196, 162, 101, 0.06);
    border-color: var(--gold);
    transform: scale(1.04);
    box-shadow: 0 12px 40px rgba(196, 162, 101, 0.12), var(--shadow-glow);
    animation: featuredFloat 4s ease-in-out infinite;
}
@keyframes featuredFloat {
    0%, 100% { transform: scale(1.04) translateY(0); }
    50% { transform: scale(1.04) translateY(-4px); }
}
.section-dark .pricing-card.featured:hover {
    border-color: var(--gold-light);
    box-shadow: 0 20px 60px rgba(196, 162, 101, 0.25);
    animation-play-state: paused;
}
.section-dark .pricing-card h3 {
    color: var(--cream);
}
.section-dark .pricing-features li {
    color: rgba(245, 240, 232, 0.6);
    border-bottom-color: rgba(196, 162, 101, 0.06);
}

/* ═══════════════════════════════════════════
   REVIEWS (Enhanced Social Proof Cards)
   ═══════════════════════════════════════════ */
.reviews-section {
    border-top: 1px solid rgba(196, 162, 101, 0.06);
}
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1080px;
    margin: 0 auto;
}
.review-card {
    padding: 28px 24px;
    border: 1px solid rgba(196, 162, 101, 0.1);
    border-radius: var(--radius-xl);
    background: rgba(196, 162, 101, 0.03);
    transition: all 0.4s var(--ease-out);
    display: flex;
    flex-direction: column;
}
.review-card:hover {
    border-color: rgba(196, 162, 101, 0.2);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}
.review-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}
.review-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    font-weight: 600;
    color: white;
    flex-shrink: 0;
}
.review-meta {
    flex: 1;
    min-width: 0;
}
.review-name {
    font-size: 14px;
    color: var(--cream);
    font-weight: 500;
    display: block;
}
.review-loc {
    font-size: 11px;
    color: rgba(245, 240, 232, 0.3);
    letter-spacing: 1px;
    text-transform: uppercase;
    display: block;
}
.review-product {
    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid rgba(196, 162, 101, 0.25);
    padding: 3px 10px;
    border-radius: var(--radius-pill);
    white-space: nowrap;
    flex-shrink: 0;
}
.review-stars {
    font-size: 13px;
    color: var(--gold);
    letter-spacing: 2px;
    margin-bottom: 14px;
}
.review-highlight {
    background: linear-gradient(135deg, rgba(196, 162, 101, 0.12), rgba(196, 162, 101, 0.06));
    border-left: 3px solid var(--gold);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    padding: 14px 18px;
    margin-bottom: 14px;
}
.review-highlight p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 17px;
    font-weight: 500;
    color: var(--gold-light);
    line-height: 1.5;
    font-style: italic;
}
.review-body {
    font-size: 13.5px;
    line-height: 1.8;
    color: rgba(245, 240, 232, 0.55);
    flex: 1;
}

/* Review Carousel Dots (mobile only) */
.review-carousel-dots {
    display: none;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}
.review-carousel-dots .rc-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(196, 162, 101, 0.2);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s;
}
.review-carousel-dots .rc-dot.active {
    background: var(--gold);
    width: 24px;
    border-radius: 4px;
}

/* ═══════════════════════════════════════════
   EMPATHY SEQUENCE
   ═══════════════════════════════════════════ */
.empathy-section {
    padding: 100px 24px;
    text-align: center;
    border-top: 1px solid rgba(196, 162, 101, 0.06);
}
.empathy-inner {
    max-width: 640px;
    margin: 0 auto;
}
.empathy-line {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px;
    line-height: 1.6;
    color: rgba(245, 240, 232, 0.6);
    margin-bottom: 8px;
}
.empathy-line.empathy-turn {
    color: rgba(245, 240, 232, 0.85);
}
.empathy-line.empathy-question {
    color: var(--cream);
    font-style: italic;
}
.empathy-line.empathy-answer {
    color: var(--gold);
    font-size: 30px;
    font-weight: 600;
}
.empathy-line em {
    color: var(--gold);
    font-style: italic;
}
.empathy-divider {
    padding: 36px 0;
    color: var(--gold);
    font-size: 14px;
    opacity: 0.4;
}
.empathy-cta {
    margin-top: 48px;
}


@media (max-width: 960px) {
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ═══════════════════════════════════════════
   ELEMENT-SPECIFIC HOVER COLORS
   ═══════════════════════════════════════════ */
.element-card[data-element="wood"]:hover {
    border-color: var(--wood);
    box-shadow: 0 8px 24px rgba(74, 124, 89, 0.2), 0 0 30px rgba(74, 124, 89, 0.08);
}
.element-card[data-element="fire"]:hover {
    border-color: var(--fire);
    box-shadow: 0 8px 24px rgba(196, 81, 58, 0.2), 0 0 30px rgba(196, 81, 58, 0.08);
}
.element-card[data-element="earth"]:hover {
    border-color: var(--earth);
    box-shadow: 0 8px 24px rgba(184, 147, 90, 0.2), 0 0 30px rgba(184, 147, 90, 0.08);
}
.element-card[data-element="metal"]:hover {
    border-color: var(--metal);
    box-shadow: 0 8px 24px rgba(138, 138, 138, 0.25), 0 0 30px rgba(138, 138, 138, 0.1);
}
.element-card[data-element="water"]:hover {
    border-color: var(--water);
    box-shadow: 0 8px 24px rgba(42, 90, 138, 0.2), 0 0 30px rgba(42, 90, 138, 0.08);
}

/* ═══════════════════════════════════════════
   PREVIEW CARD HOVER — blur reduction
   ═══════════════════════════════════════════ */
.preview-card:hover .preview-blurred {
    filter: blur(3px);
    opacity: 0.6;
}

/* ═══════════════════════════════════════════
   COMPAT BAR — scroll-triggered animation
   ═══════════════════════════════════════════ */
.compat-bar span {
    width: 0 !important;
    transition: width 1.2s var(--ease-out) 0.3s;
}
.preview-card.visible .compat-bar span,
.preview-card:hover .compat-bar span {
    width: var(--bar-width, 0%) !important;
}

/* ═══════════════════════════════════════════
   COMPARE NOTE
   ═══════════════════════════════════════════ */
.compare-note {
    text-align: center;
    font-size: 13px;
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 28px;
    opacity: 0.7;
}

/* ═══════════════════════════════════════════
   CREAM-MODE FAQ — FAQ in section-cream
   ═══════════════════════════════════════════ */
.section-cream .faq-item {
    border-bottom-color: rgba(0, 0, 0, 0.08);
}
.section-cream .faq-question {
    color: var(--navy);
}
.section-cream .faq-question:hover {
    color: var(--gold-dark);
}
.section-cream .faq-question::after {
    color: var(--gold-dark);
}
.section-cream .faq-answer-inner {
    color: var(--text-light);
}

/* ═══════════════════════════════════════════
   PRODUCT CAROUSEL — Refined horizontal scroll
   ═══════════════════════════════════════════ */
.product-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-top: 16px;
}
.carousel-edge {
    position: absolute;
    top: 0; bottom: 60px;
    width: 80px;
    z-index: 2;
    pointer-events: none;
}
.carousel-edge-left {
    left: 0;
    background: linear-gradient(to right, var(--ink) 0%, transparent 100%);
}
.carousel-edge-right {
    right: 0;
    background: linear-gradient(to left, var(--ink) 0%, transparent 100%);
}
.product-carousel-track {
    display: flex;
    gap: 28px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 24px 0 16px;
    scrollbar-width: none;
    cursor: grab;
    scroll-behavior: smooth;
}
.product-carousel-track::-webkit-scrollbar { display: none; }
.product-carousel-track.dragging {
    cursor: grabbing;
    scroll-snap-type: none;
    scroll-behavior: auto;
}
.carousel-spacer {
    flex: 0 0 calc(50vw - 150px);
}
.product-slide {
    flex: 0 0 280px;
    scroll-snap-align: center;
    transition: transform 0.5s var(--ease-out), opacity 0.5s var(--ease-out);
    opacity: 0.5;
    transform: scale(0.9);
}
.product-slide.in-view {
    opacity: 1;
    transform: scale(1);
}
.product-slide .product-img-slot {
    aspect-ratio: 210 / 297;
    background-size: cover;
    background-position: center;
    background-color: rgba(196, 162, 101, 0.03);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(196, 162, 101, 0.12);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.5s var(--ease-out);
}
.product-slide.in-view .product-img-slot {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 80px rgba(196, 162, 101, 0.08);
    border-color: rgba(196, 162, 101, 0.25);
}
.product-slide-label {
    display: block;
    text-align: center;
    margin-top: 16px;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(245, 240, 232, 0.2);
    transition: all 0.5s var(--ease-out);
}
.product-slide.in-view .product-slide-label {
    color: var(--gold);
    letter-spacing: 4px;
}
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 24px;
}
.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(196, 162, 101, 0.15);
    cursor: pointer;
    transition: all 0.3s var(--ease-out);
}
.carousel-dot.active {
    background: var(--gold);
    width: 28px;
    border-radius: 4px;
}
.carousel-swipe-hint {
    text-align: center;
    margin-top: 16px;
    font-size: 12px;
    color: rgba(245, 240, 232, 0.2);
    letter-spacing: 1px;
}

/* ═══════════════════════════════════════════
   HOW IT WORKS — 3-step process
   ═══════════════════════════════════════════ */
.how-it-works {
    border-top: 1px solid rgba(196, 162, 101, 0.06);
    border-bottom: 1px solid rgba(196, 162, 101, 0.06);
}
.how-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}
.how-step {
    text-align: center;
    flex: 1;
    max-width: 260px;
}
.how-step-num {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(196, 162, 101, 0.3);
    color: var(--gold);
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}
.how-step h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-weight: 400;
    color: var(--cream);
    margin-bottom: 8px;
}
.how-step p {
    font-size: 13px;
    color: rgba(245, 240, 232, 0.4);
    line-height: 1.5;
}
.how-step-arrow {
    color: var(--gold);
    opacity: 0.3;
    font-size: 20px;
    flex-shrink: 0;
}

/* ═══════════════════════════════════════════
   GUARANTEE BADGE
   ═══════════════════════════════════════════ */
.guarantee-badge {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 16px 28px;
    border: 1px solid rgba(196, 162, 101, 0.12);
    border-radius: var(--radius-lg);
    background: rgba(196, 162, 101, 0.03);
    text-align: left;
}
.guarantee-icon {
    font-size: 28px;
    flex-shrink: 0;
}

/* ═══════════════════════════════════════════
   K-POP COMPATIBILITY CTA
   ═══════════════════════════════════════════ */
.kpop-cta {
    background: linear-gradient(135deg, rgba(58, 21, 53, 0.3) 0%, rgba(18, 18, 42, 0.9) 100%);
    border-top: 1px solid rgba(196, 162, 101, 0.06);
    border-bottom: 1px solid rgba(196, 162, 101, 0.06);
    padding: 28px 24px;
}
.kpop-cta-inner {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}
.kpop-cta-content {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}
.kpop-badge {
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--blush);
    border: 1px solid rgba(212, 160, 160, 0.3);
    border-radius: var(--radius-pill);
    padding: 4px 14px;
    white-space: nowrap;
}
.kpop-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 19px;
    color: var(--cream);
}
.kpop-text em {
    color: var(--blush);
    font-style: italic;
}

/* ═══════════════════════════════════════════
   LEGAL PAGES (Terms, Privacy)
   ═══════════════════════════════════════════ */
.legal-page {
    max-width: 700px;
    margin: 0 auto;
    padding: 60px 24px 80px;
}

/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */
@media (max-width: 768px) {
    .hamburger { display: flex; align-items: center; justify-content: center; }
    .header-logo-img { height: 32px; }
    .header-nav {
        display: flex;
        position: fixed;
        top: 0; left: 0; right: 0; bottom: 0;
        width: 100%; height: 100%;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 8px;
        background: rgba(8, 8, 14, 1);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.5s;
    }
    .header-nav.nav-open { opacity: 1; visibility: visible; }
    .header-nav .nav-link {
        font-family: 'Cormorant Garamond', serif;
        font-size: 28px;
        font-weight: 300;
        letter-spacing: 2px;
        text-transform: none;
        color: rgba(245, 240, 232, 0.6);
        padding: 12px 0;
        opacity: 0;
        transform: translateY(16px);
        transition: opacity 0.4s ease, transform 0.4s ease, color 0.3s;
    }
    .header-nav .nav-link:hover { color: var(--gold); }
    .header-nav.nav-open .nav-link { opacity: 1; transform: translateY(0); }
    .header-nav.nav-open .nav-link:nth-child(1) { transition-delay: 0.05s; }
    .header-nav.nav-open .nav-link:nth-child(2) { transition-delay: 0.1s; }
    .header-nav.nav-open .nav-link:nth-child(3) { transition-delay: 0.15s; }
    .header-nav.nav-open .nav-link:nth-child(4) { transition-delay: 0.2s; }
    .header-nav .nav-cta-mobile {
        display: inline-block;
        margin-top: 32px;
        padding: 16px 40px;
        font-size: 13px;
        opacity: 0;
        transform: translateY(16px);
        transition: opacity 0.4s ease, transform 0.4s ease;
    }
    .header-nav.nav-open .nav-cta-mobile { opacity: 1; transform: translateY(0); transition-delay: 0.3s; }
    .header-cta { display: none; }
    .sticky-cta { display: block; }

    .discover-grid,
    .preview-cards { grid-template-columns: 1fr; }
    .preview-career-grid { grid-template-columns: 1fr; gap: 8px; }
    .preview-career-item { flex-direction: row; justify-content: space-between; padding: 10px 14px; }
    .preview-career-icon { display: none; }
    /* Review Carousel — mobile horizontal swipe */
    .reviews-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 16px;
        padding: 0 24px;
        max-width: none;
        margin: 0 -24px;
        scrollbar-width: none;
    }
    .reviews-grid::-webkit-scrollbar { display: none; }
    .reviews-grid .review-card {
        flex: 0 0 calc(100vw - 64px);
        max-width: 380px;
        scroll-snap-align: center;
        /* Override reveal delays for carousel — all visible immediately */
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
    .review-carousel-dots { display: flex; }
    .empathy-line { font-size: 22px; }
    .empathy-line.empathy-answer { font-size: 26px; }
    .empathy-section { padding: 72px 20px; }
    .review-highlight p { font-size: 15px; }
    .review-body { font-size: 13px; }

    .pricing-grid { grid-template-columns: 1fr; }
    .form-row, .form-row-3 { grid-template-columns: 1fr; }

    .hero { padding: 40px 20px; min-height: 100dvh; }
    .hero-logo-img { max-height: 120px; }
    .hero-sub { font-size: 15px; }
    .hero-scroll-hint { display: none; }

    .showcase-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .showcase-fan { height: 320px; }
    .fan-card { width: 160px; height: 226px; }
    .fan-card-1 { transform: rotate(-8deg) translateX(-40px); }
    .fan-card-3 { transform: rotate(8deg) translateX(40px); }
    .showcase-stats { justify-content: center; }

    .elements-ring { gap: 10px; }
    .element-card { width: 100px; padding: 16px 10px; }
    .element-icon-img { width: 44px; height: 44px; }
    .element-kr { font-size: 22px; }
    .element-trait { display: none; }

    .how-steps { flex-direction: column; gap: 16px; }
    .how-step-arrow { transform: rotate(90deg); }

    .question-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
    .qc-text { font-size: 17px; }

    .compare-table table { font-size: 13px; }
    .compare-table thead th { font-size: 14px; padding: 14px 10px 12px; }
    .compare-table tbody td { padding: 12px 10px; }
    .compare-table tbody td strong { font-size: 18px; }

    .product-slide { flex: 0 0 220px; }
    .carousel-spacer { flex: 0 0 calc(50vw - 120px); }
    .carousel-edge { width: 40px; }

    .kpop-cta-inner { flex-direction: column; text-align: center; }
    .kpop-cta-content { justify-content: center; }
    .kpop-text { font-size: 17px; }

    body { padding-bottom: calc(72px + env(safe-area-inset-bottom, 0px)); }
}

@media (max-width: 480px) {
    .hero h1 { font-size: clamp(36px, 10vw, 48px); }
    .question-grid { grid-template-columns: 1fr; }
    .element-card { width: 56px; padding: 12px 6px; }
    .element-icon-img { width: 32px; height: 32px; }
    .element-name { font-size: 11px; }
    .element-kr { font-size: 16px; }
    .fan-card { width: 130px; height: 184px; }
    .fan-card-1 { transform: rotate(-8deg) translateX(-30px); }
    .fan-card-3 { transform: rotate(8deg) translateX(30px); }
}

/* ═══════════════════════════════════════════
   BRAND STORY
   ═══════════════════════════════════════════ */
.brand-story-section {
    border-top: 1px solid rgba(196, 162, 101, 0.06);
}
.brand-story-content p:first-child {
    font-size: 16px;
    line-height: 1.9;
    color: rgba(245, 240, 232, 0.65);
}
.brand-story-content p:last-child {
    color: var(--gold);
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-style: italic;
    margin-top: 32px;
    letter-spacing: 0.5px;
}

/* ═══════════════════════════════════════════
   VIRAL PAGES
   ═══════════════════════════════════════════ */

/* ─── Tab Navigation ─── */
.viral-tabs {
    display: flex;
    justify-content: center;
    gap: 4px;
    padding: 12px 16px 0;
    max-width: 500px;
    margin: 0 auto;
}
.viral-tab {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 12px 8px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: rgba(245, 240, 232, 0.35);
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: all 0.3s;
    white-space: nowrap;
}
.viral-tab:hover {
    color: rgba(245, 240, 232, 0.6);
    opacity: 1;
}
.viral-tab.active {
    color: var(--gold);
    border-bottom-color: var(--gold);
}
.viral-tab-icon {
    font-size: 14px;
}

/* ─── Page Headers ─── */
.viral-page-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: clamp(28px, 5vw, 42px);
    color: var(--cream);
    margin-top: 24px;
}
.viral-page-sub {
    font-size: 15px;
    color: rgba(245, 240, 232, 0.5);
    max-width: 480px;
    margin: 12px auto 0;
    line-height: 1.7;
}

/* ─── Saju Card (auto height, no clipping) ─── */
.saju-card {
    max-width: 420px;
    margin: 0 auto 32px;
    border: 1px solid rgba(196, 162, 101, 0.2);
    border-radius: var(--radius-xl);
    background: linear-gradient(145deg, var(--navy) 0%, var(--ink) 100%);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 60px rgba(196, 162, 101, 0.06);
    overflow: hidden;
}
.saju-card-inner {
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
}
.saju-card-logo {
    width: 60px;
    height: auto;
    margin-bottom: 12px;
    opacity: 0.6;
}
.saju-card-brand {
    font-size: 9px;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: rgba(196, 162, 101, 0.4);
    margin-bottom: 12px;
}
.saju-card-emoji { font-size: 44px; margin-bottom: 10px; }
.saju-card-dm {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px;
    color: var(--cream);
}
.saju-card-hanja {
    font-family: 'Gowun Batang', serif;
    font-size: 18px;
    color: var(--gold);
    margin-top: 4px;
}
.saju-card-archetype {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 15px;
    color: var(--gold-light);
    margin-top: 4px;
}
.saju-card-divider {
    width: 32px;
    height: 1px;
    background: var(--gold);
    margin: 14px 0;
}
.saju-card-insight {
    font-size: 12px;
    line-height: 1.7;
    color: rgba(245, 240, 232, 0.55);
    max-width: 300px;
}
.saju-card-elements {
    width: 100%;
    max-width: 260px;
    margin-top: 14px;
}
.saju-card-el-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
}
.saju-card-el-name {
    width: 44px;
    text-align: right;
    font-size: 10px;
    color: rgba(245, 240, 232, 0.4);
}
.saju-card-el-bar {
    flex: 1;
    height: 4px;
    background: rgba(196, 162, 101, 0.08);
    border-radius: 2px;
    overflow: hidden;
}
.saju-card-el-bar > div {
    height: 100%;
    border-radius: 2px;
    transition: width 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}
.saju-card-el-pct {
    width: 32px;
    font-size: 10px;
    color: rgba(245, 240, 232, 0.3);
}
.saju-card-date {
    font-size: 11px;
    color: rgba(245, 240, 232, 0.25);
    margin-top: 14px;
    letter-spacing: 1px;
}
.saju-card-footer {
    font-size: 9px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(196, 162, 101, 0.3);
    margin-top: 6px;
}

/* ─── Viral Actions / Share ─── */
.viral-actions {
    text-align: center;
    padding: 16px 0;
}
/* ─── Viral CTA Section ─── */
.viral-cta {
    padding: 80px 24px;
    text-align: center;
    background: var(--navy);
}
.viral-cta-inner {
    max-width: 500px;
    margin: 0 auto;
}
.viral-cta h2 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    font-size: 28px;
    color: var(--cream);
    margin: 16px 0 12px;
}
.viral-cta p {
    font-size: 15px;
    color: rgba(245, 240, 232, 0.5);
    margin-bottom: 32px;
    line-height: 1.7;
}

/* ─── Cross Links ─── */
.viral-cross-links {
    text-align: center;
    padding: 48px 24px 16px;
}
.viral-cross-links-row {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 16px;
}
.viral-cross-links-row a {
    font-size: 13px;
    color: rgba(245, 240, 232, 0.4);
    text-decoration: none;
    transition: color 0.3s;
}
.viral-cross-links-row a:hover {
    color: var(--gold);
}
.viral-disclaimer {
    text-align: center;
    font-size: 11px;
    color: rgba(245, 240, 232, 0.2);
    padding: 16px 24px 40px;
}

/* ─── MBTI Grid ─── */
.mbti-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    max-width: 500px;
    margin: 0 auto 48px;
}
.mbti-type-btn {
    padding: 16px 12px;
    text-align: center;
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 2px;
    color: rgba(245, 240, 232, 0.5);
    border: 1px solid rgba(196, 162, 101, 0.1);
    border-radius: var(--radius-md);
    background: rgba(196, 162, 101, 0.02);
    transition: all 0.3s;
    cursor: pointer;
    text-decoration: none;
    display: block;
}
.mbti-type-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(196, 162, 101, 0.06);
    opacity: 1;
    transform: translateY(-2px);
}
.mbti-type-btn.active {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(196, 162, 101, 0.1);
    box-shadow: 0 0 20px rgba(196, 162, 101, 0.1);
}

.celeb-emoji { font-size: 32px; margin-bottom: 8px; }
.celeb-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    color: var(--cream);
}
.celeb-known {
    font-size: 12px;
    color: rgba(245, 240, 232, 0.4);
    margin-top: 4px;
}

/* ─── Share Dropdown ─── */
.viral-btn-pair {
    display: flex;
    justify-content: center;
    gap: 12px;
}
.viral-btn-pair .btn { min-width: 140px; }

.share-dropdown {
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    margin-top: 0;
    height: 0;
    overflow: hidden;
    transition: opacity 0.25s ease, transform 0.25s ease;
}
.share-dropdown.open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    margin-top: 16px;
    height: auto;
    overflow: visible;
}
.share-option {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    max-width: 280px;
    margin: 0 auto 8px;
    padding: 12px 20px;
    font-size: 14px;
    color: rgba(245, 240, 232, 0.6);
    background: rgba(196, 162, 101, 0.04);
    border: 1px solid rgba(196, 162, 101, 0.1);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    font-family: 'DM Sans', sans-serif;
}
.share-option:hover {
    color: var(--cream);
    border-color: rgba(196, 162, 101, 0.25);
    background: rgba(196, 162, 101, 0.08);
    opacity: 1;
}
.share-option span { font-size: 16px; width: 20px; text-align: center; }
.share-tip {
    font-size: 12px;
    color: rgba(245, 240, 232, 0.25);
    margin-top: 12px;
    text-align: center;
}

/* ─── Gender Toggle ─── */
.gender-toggle {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}
.gender-option {
    flex: 1;
    cursor: pointer;
}
.gender-option input { display: none; }
.gender-option span {
    display: block;
    padding: 12px;
    text-align: center;
    font-size: 14px;
    color: rgba(245, 240, 232, 0.5);
    border: 1px solid rgba(196, 162, 101, 0.15);
    border-radius: var(--radius-md);
    transition: all 0.3s;
}
.gender-option input:checked + span {
    color: var(--gold);
    border-color: var(--gold);
    background: rgba(196, 162, 101, 0.08);
}
.gender-option:hover span {
    border-color: rgba(196, 162, 101, 0.3);
    color: rgba(245, 240, 232, 0.7);
}

/* ─── Celebrity Wide Cards ─── */
.celeb-list {
    max-width: 520px;
    margin: 0 auto 32px;
}
.celeb-card-wide {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    margin-bottom: 12px;
    border: 1px solid rgba(196, 162, 101, 0.1);
    border-radius: var(--radius-lg);
    background: rgba(196, 162, 101, 0.03);
    text-align: left;
    transition: transform 0.3s, border-color 0.3s;
}
.celeb-card-wide:hover {
    transform: translateX(4px);
    border-color: rgba(196, 162, 101, 0.2);
}
.celeb-card-wide .celeb-emoji {
    font-size: 28px;
    flex-shrink: 0;
    margin-top: 2px;
}
.celeb-card-content { flex: 1; }
.celeb-desc {
    font-size: 13px;
    color: rgba(245, 240, 232, 0.45);
    line-height: 1.6;
    margin-top: 6px;
}

/* ─── Weekly Overview ─── */
.weekly-overview {
    max-width: 520px;
    margin: 0 auto 24px;
    padding: 32px 28px;
    border: 1px solid rgba(196, 162, 101, 0.15);
    border-radius: var(--radius-xl);
    background: rgba(196, 162, 101, 0.03);
    text-align: center;
}
.weekly-overview[data-rel="same"] { border-top: 3px solid var(--gold); }
.weekly-overview[data-rel="produces_you"] { border-top: 3px solid var(--jade); }
.weekly-overview[data-rel="you_produce"] { border-top: 3px solid var(--celadon); }
.weekly-overview[data-rel="you_overcome"] { border-top: 3px solid var(--gold-dark); }
.weekly-overview[data-rel="overcomes_you"] { border-top: 3px solid var(--blush); }

/* ─── Weekly Days Grid ─── */
.weekly-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 6px;
    max-width: 520px;
    margin: 0 auto 32px;
}
.weekly-day {
    text-align: center;
    padding: 12px 4px;
    border: 1px solid rgba(196, 162, 101, 0.08);
    border-radius: var(--radius-sm);
    background: rgba(196, 162, 101, 0.02);
    transition: transform 0.2s;
}
.weekly-day:hover { transform: translateY(-2px); }
.weekly-day-name {
    font-size: 11px;
    font-weight: 500;
    color: rgba(245, 240, 232, 0.4);
    letter-spacing: 1px;
    text-transform: uppercase;
}
.weekly-day-icon { font-size: 20px; margin: 6px 0; }
.weekly-day-label {
    font-size: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.weekly-day[data-rel="same"] .weekly-day-label { color: var(--gold); }
.weekly-day[data-rel="produces_you"] .weekly-day-label { color: var(--jade); }
.weekly-day[data-rel="you_produce"] .weekly-day-label { color: var(--celadon); }
.weekly-day[data-rel="you_overcome"] .weekly-day-label { color: var(--gold-dark); }
.weekly-day[data-rel="overcomes_you"] .weekly-day-label { color: var(--blush); }

/* ─── Viral Loading Overlay ─── */
.viral-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 24px;
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.viral-loading.done {
    opacity: 0;
    transform: translateY(-20px);
    pointer-events: none;
    height: 0;
    padding: 0;
    margin: 0;
    overflow: hidden;
}
.viral-loading-inner {
    text-align: center;
    max-width: 300px;
}
.viral-loading-icon {
    font-size: 48px;
    animation: loadingPulse 1.5s ease-in-out infinite;
}
.viral-loading-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    color: rgba(245, 240, 232, 0.6);
    margin-top: 20px;
    letter-spacing: 0.5px;
}
.viral-loading-bar {
    width: 120px;
    height: 2px;
    background: rgba(196, 162, 101, 0.1);
    border-radius: 2px;
    margin: 20px auto 0;
    overflow: hidden;
}
.viral-loading-fill {
    height: 100%;
    background: var(--gold);
    border-radius: 2px;
    animation: loadingFill 2.6s ease-in-out forwards;
}
@keyframes loadingPulse {
    0%, 100% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(1.15); opacity: 1; }
}
@keyframes loadingFill {
    0% { width: 0; }
    30% { width: 45%; }
    60% { width: 70%; }
    90% { width: 92%; }
    100% { width: 100%; }
}

/* ─── Viral Result Reveal ─── */
.viral-result { opacity: 0; transform: translateY(20px); }
.viral-result.reveal-in {
    animation: revealIn 0.6s ease forwards;
}
@keyframes revealIn {
    to { opacity: 1; transform: translateY(0); }
}

/* ─── Celebrity Match Card (downloadable) ─── */
.celeb-match-card {
    max-width: 420px;
    margin: 0 auto 16px;
    border: 1px solid rgba(196, 162, 101, 0.2);
    border-radius: var(--radius-xl);
    background: linear-gradient(145deg, var(--navy) 0%, var(--ink) 100%);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 60px rgba(196, 162, 101, 0.06);
    overflow: hidden;
}
.celeb-match-card-inner {
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* ─── MBTI Result Card (downloadable) ─── */
.mbti-result-wrapper {
    max-width: 460px;
    margin: 0 auto;
}
.mbti-card {
    max-width: 420px;
    margin: 24px auto 16px;
    border: 1px solid rgba(196, 162, 101, 0.2);
    border-radius: var(--radius-xl);
    background: linear-gradient(145deg, var(--navy) 0%, var(--ink) 100%);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 60px rgba(196, 162, 101, 0.06);
    overflow: hidden;
}
.mbti-card-inner {
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* ─── Viral Mobile Overrides ─── */
@media (max-width: 768px) {
    .viral-tabs { gap: 2px; padding: 12px 8px 0; }
    .viral-tab { padding: 10px 4px; font-size: 11px; gap: 4px; }
    .viral-tab-icon { font-size: 12px; }
    .mbti-grid { gap: 8px; }
    .mbti-type-btn { padding: 12px 8px; font-size: 12px; letter-spacing: 1px; }
    .saju-card { max-width: 340px; }
    .saju-card-inner { padding: 28px 20px; }
    .saju-card-emoji { font-size: 36px; }
    .saju-card-dm { font-size: 22px; }
    .saju-card-insight { font-size: 11px; max-width: 260px; }
    .celeb-card-wide { gap: 12px; padding: 16px; }
    .celeb-card-wide .celeb-emoji { font-size: 24px; }
    .weekly-days { gap: 4px; }
    .weekly-day { padding: 8px 2px; }
    .weekly-day-icon { font-size: 16px; }
    .weekly-day-label { font-size: 9px; }
    .celeb-match-card { max-width: 340px; }
    .celeb-match-card-inner { padding: 24px 16px; }
    .mbti-card { max-width: 340px; }
    .mbti-card-inner { padding: 24px 16px; }
}
