/* =========================================
   I CHING · ORÁCULO
   Paleta Premium: Negro profundo / Dorado / Azul noche
   ========================================= */

:root {
    /* Paleta principal */
    --bg-deep: #07080f;
    --bg-night: #0d0f1a;
    --bg-surface: #13162a;
    --bg-elevated: #1a1d33;

    /* Dorados */
    --gold: #d4af37;
    --gold-soft: #c9a227;
    --gold-bright: #e8c968;
    --gold-muted: rgba(212, 175, 55, 0.15);
    --gold-line: rgba(212, 175, 55, 0.35);

    /* Azules noche */
    --night-blue: #1e2547;
    --night-blue-soft: #2a3260;
    --night-accent: #4a5aa8;

    /* Texto */
    --text-primary: #e8e5d9;
    --text-secondary: #a8a595;
    --text-muted: #6b6a5c;

    /* Sombras y efectos */
    --shadow-deep: 0 20px 60px rgba(0, 0, 0, 0.6);
    --shadow-gold: 0 0 30px rgba(212, 175, 55, 0.2);
    --shadow-soft: 0 8px 32px rgba(0, 0, 0, 0.4);

    /* Tipografía */
    --font-serif: 'Cormorant Garamond', 'Georgia', serif;
    --font-display: 'Cinzel', 'Trajan Pro', serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    background:
        radial-gradient(ellipse at top, #121530 0%, transparent 50%),
        radial-gradient(ellipse at bottom, #0a0c18 0%, transparent 50%),
        var(--bg-deep);
    background-attachment: fixed;
    color: var(--text-primary);
    line-height: 1.7;
    min-height: 100vh;
    font-weight: 300;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Textura sutil de pergamino/estrellas */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 15% 20%, rgba(212, 175, 55, 0.03) 1px, transparent 1px),
        radial-gradient(circle at 70% 80%, rgba(212, 175, 55, 0.02) 1px, transparent 1px),
        radial-gradient(circle at 40% 60%, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
    background-size: 100px 100px, 150px 150px, 80px 80px;
    pointer-events: none;
    z-index: 0;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 30px;
    position: relative;
    z-index: 1;
}

/* =========================================
   HEADER
   ========================================= */
.site-header {
    text-align: center;
    padding: 40px 0 60px;
    position: relative;
}

.header-symbol {
    font-size: 3.5rem;
    color: var(--gold);
    margin-bottom: 20px;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.4);
    animation: subtle-glow 4s ease-in-out infinite;
}

@keyframes subtle-glow {
    0%, 100% { text-shadow: 0 0 20px rgba(212, 175, 55, 0.3); }
    50% { text-shadow: 0 0 40px rgba(212, 175, 55, 0.5); }
}

.site-header h1 {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    color: var(--gold);
    margin-bottom: 12px;
    text-transform: uppercase;
}

.subtitle {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.15rem;
    color: var(--text-secondary);
    letter-spacing: 0.08em;
    margin-bottom: 30px;
}

.header-divider {
    width: 120px;
    height: 1px;
    margin: 30px auto 0;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* =========================================
   SECCIÓN PREGUNTA
   ========================================= */
.question-section {
    background: var(--bg-surface);
    border: 1px solid var(--gold-line);
    border-radius: 4px;
    padding: 50px 45px;
    margin-bottom: 40px;
    box-shadow: var(--shadow-soft);
    position: relative;
}

.question-section::before,
.question-section::after {
    content: '❖';
    position: absolute;
    color: var(--gold);
    font-size: 0.9rem;
    opacity: 0.6;
}

.question-section::before { top: 15px; left: 20px; }
.question-section::after { bottom: 15px; right: 20px; }

.question-section h2 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--gold);
    text-align: center;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-weight: 500;
}

/* Guía de intención — bloque instructional */
.intention-guide {
    background: rgba(7, 8, 15, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-left: 2px solid var(--gold-line);
    border-radius: 2px;
    padding: 22px 28px;
    margin-bottom: 28px;
}

.intention-guide p {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    font-style: italic;
    color: var(--text-secondary);
    line-height: 1.75;
    margin: 0;
}

/* Contenedor del textarea con contador */
.textarea-wrapper {
    position: relative;
    margin-bottom: 12px;
}

.char-counter {
    position: absolute;
    bottom: 14px;
    right: 16px;
    font-family: var(--font-sans);
    font-size: 0.78rem;
    font-weight: 400;
    color: var(--text-muted);
    letter-spacing: 0.08em;
    opacity: 0.8;
    pointer-events: none;
    transition: color 0.3s ease;
}

/* Feedback de validación — micro-copy elegante */
.validation-feedback {
    font-family: var(--font-serif);
    font-size: 0.95rem;
    font-style: italic;
    color: #c8855a;
    text-align: center;
    margin: 0;
    letter-spacing: 0.03em;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-4px); }
    to { opacity: 1; transform: translateY(0); }
}

.section-intro {
    font-family: var(--font-serif);
    font-style: italic;
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

#question {
    width: 100%;
    min-height: 120px;
    padding: 20px 24px;
    background: rgba(7, 8, 15, 0.6);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 3px;
    color: var(--text-primary);
    font-family: var(--font-serif);
    font-size: 1.15rem;
    line-height: 1.6;
    resize: vertical;
    transition: all 0.3s ease;
}

#question:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 1px var(--gold-muted), inset 0 0 20px rgba(0, 0, 0, 0.3);
}

#question:disabled {
    opacity: 0.55;
    cursor: not-allowed;
    background: rgba(7, 8, 15, 0.8);
    border-color: rgba(212, 175, 55, 0.1);
    color: var(--text-secondary);
}

#question::placeholder {
    color: var(--text-muted);
    font-style: italic;
}

/* =========================================
   BOTÓN DE LANZAMIENTO
   ========================================= */
.throw-section {
    text-align: center;
    padding: 40px 0;
}

.throw-btn {
    background: linear-gradient(135deg, var(--gold-soft), var(--gold));
    color: var(--bg-deep);
    border: none;
    padding: 20px 50px;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 3px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 14px;
    position: relative;
}

.throw-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.throw-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    filter: grayscale(0.5);
}

.btn-icon { font-size: 1.3rem; }

.stalks-animation {
    display: none;
    font-size: 2.5rem;
    margin-top: 30px;
    letter-spacing: 8px;
    animation: shake 0.8s ease-in-out infinite;
}

@keyframes shake {
    0%, 100% { transform: translateX(0) rotate(0deg); }
    25% { transform: translateX(-5px) rotate(-3deg); }
    75% { transform: translateX(5px) rotate(3deg); }
}

/* =========================================
   PROGRESO
   ========================================= */
.progress {
    display: none;
    text-align: center;
    padding: 40px 20px;
    margin: 30px 0;
    background: var(--bg-surface);
    border: 1px solid var(--gold-line);
    border-radius: 4px;
}

.progress h3 {
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--gold);
    font-size: 1.4rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    margin-bottom: 30px;
}

.lines-display {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.line-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 10px 24px;
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 3px;
    min-width: 280px;
    animation: fadeInUp 0.5s ease;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.line-number {
    font-family: var(--font-display);
    color: var(--gold);
    font-size: 0.9rem;
    width: 25px;
}

.line-visual {
    font-size: 1.8rem;
    color: var(--text-primary);
    min-width: 40px;
    text-align: center;
}

.line-type {
    font-family: var(--font-serif);
    color: var(--text-secondary);
    font-style: italic;
    font-size: 1rem;
    flex: 1;
}

/* =========================================
   RESULTADO — contenedor
   ========================================= */
.result-section {
    display: none;
    margin-top: 60px;
}

/* =========================================
   TIERS (NIVELES DE VALOR)
   ========================================= */
.tier {
    padding: 50px 45px;
    margin-bottom: 40px;
    border-radius: 4px;
    position: relative;
}

.tier-label {
    font-family: var(--font-display);
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.tier-label-gold {
    color: var(--gold);
    font-weight: 500;
}

.tier-label-master {
    color: var(--gold-bright);
    font-weight: 500;
}

.tier-title {
    font-family: var(--font-display);
    text-align: center;
    font-size: 1.8rem;
    color: var(--gold);
    letter-spacing: 0.08em;
    font-weight: 500;
    margin-bottom: 8px;
}

.tier-subtitle {
    font-family: var(--font-serif);
    font-style: italic;
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 35px;
}

/* NIVEL 1 — Gratuito */
.tier-free {
    background: var(--bg-surface);
    border: 1px solid var(--gold-line);
    box-shadow: var(--shadow-soft);
}

.question-display {
    text-align: center;
    padding: 25px 30px;
    background: rgba(7, 8, 15, 0.5);
    border-left: 2px solid var(--gold);
    border-radius: 2px;
    margin-bottom: 40px;
}

.question-label {
    font-family: var(--font-display);
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: 12px;
}

.question-display p {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.3rem;
    color: var(--text-primary);
    line-height: 1.5;
}

/* Hexagrama display */
.hexagram-display {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 50px;
}

.hexagram-box {
    text-align: center;
    padding: 35px 40px;
    background: linear-gradient(135deg, rgba(30, 37, 71, 0.4), rgba(13, 15, 26, 0.6));
    border: 1px solid var(--gold-line);
    border-radius: 4px;
    min-width: 220px;
    position: relative;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.hexagram-box-label {
    font-family: var(--font-display);
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hexagram-lines {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 20px;
    align-items: center;
}

.hex-line {
    height: 10px;
    width: 120px;
    background: currentColor;
    border-radius: 4px;
    margin: 0 auto;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

/* Líneas Yang (sólidas) */
.hex-line:not(.yin-line) {
    background: currentColor;
}

/* Líneas Yin (partidas) */
.hex-line.yin-line {
    background: linear-gradient(to right, 
        currentColor 0%, currentColor 42%, 
        transparent 42%, transparent 58%, 
        currentColor 58%, currentColor 100%);
}

.hex-line.changing {
    color: var(--gold);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
}

.hexagram-number {
    font-family: var(--font-display);
    font-size: 2.8rem;
    color: var(--gold);
    font-weight: 500;
    line-height: 1;
    margin: 10px 0 8px;
}

.hexagram-name {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.15rem;
    color: var(--text-primary);
    line-height: 1.4;
}

.hexagram-arrow {
    font-size: 2rem;
    color: var(--gold);
    opacity: 0.6;
}

/* Trigramas */
.trigrams {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 50px;
}

.trigram-card {
    text-align: center;
    padding: 30px 20px;
    background: rgba(7, 8, 15, 0.4);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 3px;
}

.trigram-card h4 {
    font-family: var(--font-display);
    font-size: 0.75rem;
    letter-spacing: 0.25em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 18px;
    font-weight: 500;
}

.trigram-visual {
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: center;
    margin-bottom: 14px;
    font-size: 1.8rem;
    color: var(--text-primary);
}

.trigram-name-text {
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--text-secondary);
    font-size: 1rem;
}

/* Interpretación */
.interpretation {
    padding-top: 30px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.interpretation-title {
    font-family: var(--font-display);
    text-align: center;
    font-size: 1.6rem;
    color: var(--gold);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 40px;
}

.interp-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.interp-name {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--gold);
    letter-spacing: 0.15em;
    margin-bottom: 8px;
    font-weight: 500;
}

.interp-translation {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.25rem;
    color: var(--text-secondary);
}

.interp-block {
    margin-bottom: 32px;
    padding: 28px 32px;
    background: rgba(7, 8, 15, 0.4);
    border-left: 2px solid var(--gold);
    border-radius: 2px;
}

.interp-block-title {
    font-family: var(--font-display);
    font-size: 0.85rem;
    color: var(--gold);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 14px;
    font-weight: 500;
}

.interp-block p {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    line-height: 1.85;
    color: var(--text-primary);
}

.interp-warning {
    border-left-color: #c47b3a;
    background: rgba(196, 123, 58, 0.05);
}

.interp-warning .interp-block-title {
    color: #d89960;
}

.interp-keywords {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(212, 175, 55, 0.15);
}

.keyword-tag {
    font-family: var(--font-display);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 6px 16px;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 2px;
    color: var(--gold-bright);
}

.interp-pending {
    text-align: center;
    padding: 50px 20px;
    background: rgba(7, 8, 15, 0.4);
    border: 1px dashed rgba(212, 175, 55, 0.25);
    border-radius: 3px;
}

.interp-pending-icon {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.interp-pending p {
    font-family: var(--font-serif);
    color: var(--text-secondary);
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 10px;
}

/* =========================================
   TIER 2 — PREMIUM (IA)
   ========================================= */
.tier-premium {
    background: linear-gradient(135deg, #12152a 0%, #1a1d3a 100%);
    border: 1px solid var(--gold);
    box-shadow: var(--shadow-gold), var(--shadow-deep);
    position: relative;
    overflow: hidden;
}

.tier-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.tier-premium::after {
    content: '';
    position: absolute;
    inset: 6px;
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 3px;
    pointer-events: none;
}

.tier-lock {
    position: absolute;
    top: 25px;
    right: 25px;
    font-size: 1.2rem;
    color: var(--gold);
    opacity: 0.7;
}

.tier-preview {
    margin-bottom: 40px;
}

.tier-preview > p {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    line-height: 1.85;
    text-align: center;
    color: var(--text-primary);
    margin-bottom: 35px;
    padding: 0 10px;
}

.gold-accent {
    color: var(--gold);
    font-weight: 500;
    font-style: italic;
}

.tier-features {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 30px;
}

.feature {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    padding: 18px 22px;
    background: rgba(7, 8, 15, 0.4);
    border-left: 1px solid var(--gold);
    border-radius: 2px;
}

.feature-icon {
    color: var(--gold);
    font-size: 0.9rem;
    padding-top: 4px;
}

.feature strong {
    font-family: var(--font-display);
    color: var(--gold-bright);
    font-size: 0.95rem;
    letter-spacing: 0.1em;
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
}

.feature p {
    font-family: var(--font-serif);
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
}

.premium-btn {
    display: block;
    width: 100%;
    padding: 22px 40px;
    background: linear-gradient(135deg, var(--gold), var(--gold-bright));
    color: var(--bg-deep);
    border: none;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 3px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.4);
    margin-top: 20px;
    position: relative;
    z-index: 1;
}

.premium-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

/* =========================================
   TIER 3 — MASTER (Humano)
   ========================================= */
.tier-master {
    background: linear-gradient(135deg, var(--night-blue) 0%, #171a35 100%);
    border: 1px solid var(--gold-line);
    box-shadow: var(--shadow-deep);
}

.tier-master .tier-title {
    font-family: var(--font-display);
    letter-spacing: 0.1em;
}

.master-content > p {
    font-family: var(--font-serif);
    font-size: 1.18rem;
    line-height: 1.85;
    text-align: center;
    color: var(--text-primary);
    margin-bottom: 40px;
    padding: 0 10px;
}

.master-content strong {
    color: var(--gold-bright);
}

.master-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.master-feature {
    text-align: center;
    padding: 28px 18px;
    background: rgba(7, 8, 15, 0.5);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 3px;
}

.master-feature-title {
    font-family: var(--font-display);
    font-size: 0.95rem;
    color: var(--gold);
    letter-spacing: 0.12em;
    margin-bottom: 10px;
    font-weight: 500;
}

.master-feature p {
    font-family: var(--font-serif);
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
    font-style: italic;
}

.master-btn {
    display: block;
    width: 100%;
    padding: 22px 40px;
    background: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 3px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 20px;
}

.master-btn:hover {
    background: var(--gold);
    color: var(--bg-deep);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

/* =========================================
   RESET
   ========================================= */
.reset-container {
    text-align: center;
    margin-top: 40px;
}

.reset-btn {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 14px 36px;
    font-family: var(--font-display);
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 3px;
    transition: all 0.3s ease;
}

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

/* =========================================
   FOOTER
   ========================================= */
.site-footer {
    text-align: center;
    padding: 50px 20px 30px;
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--text-muted);
    font-size: 0.95rem;
    letter-spacing: 0.08em;
    position: relative;
    z-index: 1;
}

/* =========================================
   AUTHORITY SEAL
   ========================================= */
.authority-seal {
    text-align: center;
    margin: 30px 0 40px;
    padding: 15px 0;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.authority-seal em {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 0.95rem;
    color: var(--gold);
    letter-spacing: 0.05em;
    opacity: 0.85;
}

/* =========================================
   WISDOM SECTION (PREMIUM CONTENT)
   ========================================= */
.tier-wisdom {
    background: var(--bg-surface);
    border: 1px solid var(--gold-line);
    box-shadow: var(--shadow-soft);
    position: relative;
}

.wisdom-support-text {
    text-align: center;
    margin-bottom: 30px;
}

.wisdom-support-text p {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.1rem;
    color: var(--text-secondary);
    letter-spacing: 0.05em;
}

.wisdom-content {
    position: relative;
    margin-bottom: 30px;
}

.premium-blur {
    filter: blur(5px);
    opacity: 0.5;
    pointer-events: none;
    user-select: none;
}

.wisdom-title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--gold);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 500;
}

.wisdom-line {
    margin-bottom: 25px;
    padding: 20px 25px;
    background: rgba(7, 8, 15, 0.4);
    border-left: 2px solid var(--gold);
    border-radius: 2px;
}

.wisdom-line-title {
    font-family: var(--font-display);
    font-size: 0.9rem;
    color: var(--gold-bright);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 12px;
    font-weight: 500;
}

.wisdom-line p {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-primary);
}

.wisdom-transformation {
    padding: 25px;
    background: rgba(30, 37, 71, 0.2);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 3px;
}

.wisdom-transform-header {
    margin-bottom: 15px;
}

.wisdom-transform-header strong {
    font-family: var(--font-display);
    color: var(--gold-bright);
    font-size: 1.1rem;
    letter-spacing: 0.05em;
    font-weight: 500;
}

.wisdom-transformation p {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-primary);
}

.wisdom-button-container {
    text-align: center;
    position: relative;
    z-index: 5;
}

.reveal-wisdom-btn {
    display: inline-block;
    padding: 16px 40px;
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 3px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.15);
}

.reveal-wisdom-btn:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--gold-bright);
    color: var(--gold-bright);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.25);
    transform: translateY(-1px);
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 768px) {
    .container { padding: 30px 18px; }

    .site-header { padding: 20px 0 40px; }
    .site-header h1 { font-size: 2.6rem; letter-spacing: 0.2em; }
    .header-symbol { font-size: 2.5rem; }
    .subtitle { font-size: 1rem; }

    .question-section,
    .tier {
        padding: 35px 25px;
    }

    .question-section h2 { font-size: 1.3rem; }
    .section-intro { font-size: 1rem; }
    #question { font-size: 1.05rem; padding: 16px 18px; }

    .throw-btn { padding: 16px 32px; font-size: 0.9rem; letter-spacing: 0.15em; }

    .tier-title { font-size: 1.4rem; }
    .tier-subtitle { font-size: 1rem; }

    .hexagram-display { gap: 20px; }
    .hexagram-box { padding: 28px 24px; min-width: 180px; }
    .hexagram-number { font-size: 2.2rem; }
    .hexagram-arrow { transform: rotate(90deg); }

    .trigrams { grid-template-columns: 1fr; gap: 14px; }

    .interp-block { padding: 22px 20px; }
    .interp-block p { font-size: 1.05rem; line-height: 1.75; }

    .master-features { grid-template-columns: 1fr; }

    .premium-btn,
    .master-btn {
        padding: 18px 24px;
        font-size: 0.85rem;
        letter-spacing: 0.15em;
    }
}

/* =========================================
   ESTABILIDAD ABSOLUTA — GLASSMORPHISM
   ========================================= */
.stability-container {
    padding: 48px 40px;
    margin: 40px 0;
    background: rgba(212, 175, 55, 0.08);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 4px;
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 8px 32px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.stability-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.6;
}

.stability-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(212, 175, 55, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.stability-title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
    text-align: center;
}

.stability-message {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    line-height: 2;
    color: var(--text-primary);
    text-align: center;
    position: relative;
    z-index: 1;
    margin: 0;
    letter-spacing: 0.02em;
}

@media (max-width: 768px) {
    .stability-container {
        padding: 40px 32px;
        margin: 32px 0;
    }
    
    .stability-title {
        font-size: 1.2rem;
        margin-bottom: 20px;
    }
    
    .stability-message {
        font-size: 1.05rem;
        line-height: 1.85;
    }
}

@media (max-width: 480px) {
    .site-header h1 { font-size: 2.1rem; }
    .tier-title { font-size: 1.2rem; }
    .interp-name { font-size: 1.2rem; }
    .interp-translation { font-size: 1.05rem; }
    
    .stability-container {
        padding: 32px 24px;
        margin: 24px 0;
    }
    
    .stability-title {
        font-size: 1rem;
        letter-spacing: 0.2em;
    }
    
    .stability-message {
        font-size: 1rem;
        line-height: 1.7;
    }
}

/* =========================================
   PANEL DE PITCH — IA MAESTRA
   ========================================= */
.pitch-panel {
    padding: 48px 40px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.06), rgba(212, 175, 55, 0.03));
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}

.pitch-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.6;
}

.pitch-panel::after {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 15% 20%, rgba(212, 175, 55, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 85% 80%, rgba(212, 175, 55, 0.015) 0%, transparent 50%);
    pointer-events: none;
}

.pitch-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.pitch-title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin: 0;
}

.pitch-benefits {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.benefit-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 24px;
    background: rgba(7, 8, 15, 0.3);
    border-left: 2px solid var(--gold);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: rgba(7, 8, 15, 0.5);
    border-left-color: var(--gold-bright);
    transform: translateX(4px);
}

.benefit-icon {
    color: var(--gold);
    font-size: 1.2rem;
    padding-top: 2px;
    flex-shrink: 0;
    min-width: 20px;
    text-align: center;
}

.benefit-text {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    line-height: 1.75;
    color: var(--text-primary);
    margin: 0;
}

.benefit-text em {
    color: var(--gold-bright);
    font-style: italic;
    font-weight: 500;
}

.pitch-guidance {
    text-align: center;
    padding: 28px;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 3px;
    position: relative;
    z-index: 1;
}

.pitch-guidance p {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    line-height: 1.75;
    color: var(--text-primary);
    margin: 0;
    letter-spacing: 0.02em;
}

/* Efecto de pulso en botón premium cuando hay pitch activo */
.premium-btn-active {
    animation: pulse-glow 2s ease-in-out infinite;
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4), 
                0 0 25px rgba(212, 175, 55, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.4) !important;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3), 
                    0 0 15px rgba(212, 175, 55, 0.2),
                    inset 0 1px 0 rgba(255, 255, 255, 0.4);
    }
    50% {
        box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5), 
                    0 0 35px rgba(212, 175, 55, 0.4),
                    inset 0 1px 0 rgba(255, 255, 255, 0.5);
    }
}

@media (max-width: 768px) {
    .pitch-panel {
        padding: 40px 32px;
    }
    
    .pitch-title {
        font-size: 1.2rem;
        letter-spacing: 0.18em;
    }
    
    .benefit-item {
        padding: 20px;
        gap: 16px;
    }
    
    .benefit-text {
        font-size: 1.05rem;
        line-height: 1.65;
    }
    
    .pitch-guidance {
        padding: 24px;
    }
    
    .pitch-guidance p {
        font-size: 1.05rem;
        line-height: 1.65;
    }
}

@media (max-width: 480px) {
    .pitch-panel {
        padding: 32px 24px;
    }
    
    .pitch-title {
        font-size: 1rem;
        letter-spacing: 0.16em;
    }
    
    .pitch-header {
        margin-bottom: 32px;
    }
    
    .pitch-benefits {
        gap: 16px;
        margin-bottom: 32px;
    }
    
    .benefit-item {
        padding: 16px;
        gap: 12px;
    }
    
    .benefit-icon {
        font-size: 1rem;
    }
    
    .benefit-text {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .pitch-guidance {
        padding: 20px;
    }
    
    .pitch-guidance p {
        font-size: 1rem;
        line-height: 1.6;
    }
}

/* =========================================================
   ★ ORACLE CHAMBER — ESTADO: LOADING_ORACLE
   Hexagrama pulsante con brillo dorado + mensajes místicos
   ========================================================= */

.oracle-chamber {
    padding: 70px 45px;
    background: linear-gradient(135deg, #0b0e24 0%, #121630 50%, #080b1f 100%);
    border: 1px solid rgba(212, 175, 55, 0.45);
    border-radius: 4px;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

/* Línea de escaneo superior */
.oracle-chamber::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    animation: oracle-scan 3s ease-in-out infinite;
}

@keyframes oracle-scan {
    0%, 100% { opacity: 0.3; transform: scaleX(0.6); }
    50%       { opacity: 1;   transform: scaleX(1); }
}

/* Resplandor ambiental de fondo */
.oracle-chamber::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 50% 25%, rgba(212, 175, 55, 0.07) 0%, transparent 55%),
        radial-gradient(circle at 20% 80%, rgba(120, 80, 200, 0.04) 0%, transparent 40%);
    pointer-events: none;
}

.oracle-chamber-inner { position: relative; z-index: 2; }

/* ── Hexagrama pulsante ──────────────────────────────────── */
.oracle-hex-container {
    position: relative;
    display: inline-block;
    margin-bottom: 50px;
}

.oracle-hex-glow {
    position: absolute;
    inset: -35px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.18) 0%, transparent 70%);
    animation: oracle-glow-pulse 2.8s ease-in-out infinite;
    pointer-events: none;
}

@keyframes oracle-glow-pulse {
    0%, 100% { transform: scale(0.85); opacity: 0.5; filter: blur(10px); }
    50%       { transform: scale(1.15); opacity: 1;   filter: blur(16px); }
}

.oracle-hex-visual {
    display: flex;
    flex-direction: column;
    gap: 9px;
    padding: 28px 30px;
    animation: oracle-float 3.2s ease-in-out infinite;
}

@keyframes oracle-float {
    0%, 100% { transform: translateY(0px); }
    50%       { transform: translateY(-9px); }
}

/* Línea base del hexagrama */
.oracle-hex-line {
    height: 12px;
    width: 144px;
    border-radius: 6px;
    background: var(--gold);
    position: relative;
    margin: 0 auto;
    animation: oracle-line-shimmer 2.8s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

/* Línea Yin (partida) */
.oracle-hex-line.yin {
    background: linear-gradient(
        to right,
        var(--gold) 0%, var(--gold) 40%,
        transparent 40%, transparent 60%,
        var(--gold) 60%, var(--gold) 100%
    );
}

/* Línea en mutación (brillo intenso) */
.oracle-hex-line.changing {
    background: var(--gold-bright);
    box-shadow: 0 0 18px rgba(232, 201, 104, 0.85), 0 0 36px rgba(212, 175, 55, 0.4);
    animation: oracle-line-changing 1.6s ease-in-out infinite !important;
}

.oracle-hex-line.changing.yin {
    background: linear-gradient(
        to right,
        var(--gold-bright) 0%, var(--gold-bright) 40%,
        transparent 40%, transparent 60%,
        var(--gold-bright) 60%, var(--gold-bright) 100%
    );
}

@keyframes oracle-line-shimmer {
    0%, 100% { box-shadow: 0 0 8px rgba(212, 175, 55, 0.4); opacity: 0.8; }
    50%       { box-shadow: 0 0 22px rgba(212, 175, 55, 0.85), 0 0 40px rgba(212, 175, 55, 0.3); opacity: 1; }
}

@keyframes oracle-line-changing {
    0%, 100% { box-shadow: 0 0 14px rgba(232, 201, 104, 0.7); }
    50%       { box-shadow: 0 0 28px rgba(232, 201, 104, 1), 0 0 55px rgba(212, 175, 55, 0.6); }
}

/* Delays escalonados para las líneas */
.oracle-hex-line:nth-child(1) { animation-delay: 0s; }
.oracle-hex-line:nth-child(2) { animation-delay: 0.25s; }
.oracle-hex-line:nth-child(3) { animation-delay: 0.5s; }
.oracle-hex-line:nth-child(4) { animation-delay: 0.75s; }
.oracle-hex-line:nth-child(5) { animation-delay: 1s; }
.oracle-hex-line:nth-child(6) { animation-delay: 1.25s; }

/* ── Mensajes místicos ───────────────────────────────────── */
.oracle-message-wrapper {
    min-height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
}

.oracle-message {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.3rem;
    color: var(--text-primary);
    letter-spacing: 0.05em;
    line-height: 1.6;
    text-align: center;
    max-width: 520px;
    margin: 0 auto;
    transition: opacity 0.7s ease;
}

/* ── Puntos de espera ────────────────────────────────────── */
.oracle-dots {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.oracle-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold);
    animation: oracle-dot-bounce 1.6s ease-in-out infinite;
    opacity: 0.6;
}

.oracle-dots span:nth-child(1) { animation-delay: 0s; }
.oracle-dots span:nth-child(2) { animation-delay: 0.3s; }
.oracle-dots span:nth-child(3) { animation-delay: 0.6s; }

@keyframes oracle-dot-bounce {
    0%, 100% { transform: scale(0.7); opacity: 0.4; }
    50%       { transform: scale(1.3); opacity: 1; }
}

/* =========================================================
   ★ ORACLE REVELATION — ESTADO: REVEALED
   Bloques de análisis IA con efecto máquina de escribir
   ========================================================= */

.oracle-revelation {
    margin-bottom: 40px;
}

/* Header de la revelación */
.oracle-revelation-header {
    text-align: center;
    padding: 55px 45px 42px;
    background: linear-gradient(135deg, #121630 0%, #1a1d3e 100%);
    border: 1px solid rgba(212, 175, 55, 0.5);
    border-radius: 4px 4px 0 0;
    position: relative;
    overflow: hidden;
}

/* Barra superior degradada dorado-púrpura */
.oracle-revelation-header::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(
        90deg,
        transparent,
        var(--gold) 25%,
        rgba(180, 100, 255, 0.7) 50%,
        var(--gold) 75%,
        transparent
    );
}

.oracle-revelation-emblem {
    font-size: 2.6rem;
    color: var(--gold);
    margin-bottom: 22px;
    display: inline-block;
    animation: emblem-breathe 5s ease-in-out infinite;
}

@keyframes emblem-breathe {
    0%, 100% { text-shadow: 0 0 20px rgba(212, 175, 55, 0.4); transform: scale(1); }
    33%       { text-shadow: 0 0 35px rgba(212, 175, 55, 0.8), 0 0 60px rgba(180, 100, 255, 0.3); transform: scale(1.06); }
    66%       { text-shadow: 0 0 28px rgba(212, 175, 55, 0.6); transform: scale(0.97); }
}

.oracle-revelation-title {
    font-family: var(--font-display);
    font-size: 1.85rem;
    color: var(--gold);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 10px;
}

.oracle-revelation-subtitle {
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.oracle-revelation-divider {
    width: 160px;
    height: 1px;
    margin: 0 auto;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* Contenedor de bloques */
.oracle-blocks-container {
    background: linear-gradient(180deg, #101328 0%, #0d1022 100%);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-top: none;
    padding: 8px 0;
}

/* Bloque individual del análisis IA */
.oracle-block {
    padding: 42px 48px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.08);
    position: relative;
    animation: fadeInUp 0.5s ease;
    transition: background 0.3s ease;
}

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

.oracle-block:hover { background: rgba(212, 175, 55, 0.015); }

/* Barra lateral degradada dorado-púrpura */
.oracle-block::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 3px;
    background: linear-gradient(
        180deg,
        rgba(212, 175, 55, 0.7),
        rgba(150, 80, 220, 0.5),
        rgba(212, 175, 55, 0.7)
    );
    border-radius: 0 2px 2px 0;
}

/* Título del bloque */
.oracle-block-title {
    font-family: var(--font-display);
    font-size: 0.82rem;
    color: var(--gold);
    letter-spacing: 0.28em;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.oracle-block-title::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, rgba(212, 175, 55, 0.35), transparent);
}

/* Texto del typewriter */
.oracle-block-text {
    font-family: var(--font-serif);
    font-size: 1.18rem;
    line-height: 1.95;
    color: var(--text-primary);
    letter-spacing: 0.015em;
}

.oracle-block-text p {
    margin-bottom: 1.1em;
}

.oracle-block-text p:last-of-type { margin-bottom: 0; }

/* Cursor typewriter parpadeante */
.typewriter-cursor {
    display: inline-block;
    width: 2px;
    height: 1.15em;
    background: var(--gold);
    vertical-align: text-bottom;
    margin-left: 2px;
    border-radius: 1px;
    animation: cursor-blink 0.85s step-end infinite;
}

@keyframes cursor-blink {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0; }
}

/* Bloque de cierre — acento especial */
.oracle-block-closing::before {
    background: linear-gradient(
        180deg,
        rgba(212, 175, 55, 0.5),
        rgba(232, 201, 104, 0.95),
        rgba(212, 175, 55, 0.5)
    );
}

.oracle-block-closing .oracle-block-title {
    color: var(--gold-bright);
}

/* Footer de la revelación */
.oracle-revelation-footer {
    text-align: center;
    padding: 28px;
    background: linear-gradient(135deg, #121630 0%, #1a1d3e 100%);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-top: none;
    border-radius: 0 0 4px 4px;
}

.oracle-revelation-footer p {
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--text-muted);
    font-size: 0.95rem;
    letter-spacing: 0.08em;
}

/* =========================================================
   ★ ESTADOS ESPECIALES Y UTILIDADES
   ========================================================= */

/* Wisdom tier desbloqueada tras pago */
.tier-wisdom.oracle-revealed .wisdom-content {
    filter: none !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    user-select: auto !important;
    transition: filter 0.9s ease, opacity 0.9s ease;
}

/* Botón premium en estado de carga */
.premium-btn.loading {
    opacity: 0.72;
    cursor: not-allowed;
    pointer-events: none;
}

/* Toast de notificación (cancelación de pago) */
.oracle-toast {
    position: fixed;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(10, 12, 28, 0.96);
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 4px;
    padding: 16px 30px;
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1rem;
    color: var(--text-secondary);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    z-index: 9999;
    white-space: nowrap;
    animation: toast-appear 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    transition: opacity 0.5s ease;
}

@keyframes toast-appear {
    from { opacity: 0; transform: translateX(-50%) translateY(16px); }
    to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* =========================================================
   ★ RESPONSIVE — ORACLE
   ========================================================= */

@media (max-width: 768px) {

    .oracle-chamber {
        padding: 50px 24px;
    }

    .oracle-hex-visual { padding: 20px 22px; }

    .oracle-hex-line { width: 110px; }

    .oracle-message { font-size: 1.15rem; }

    .oracle-revelation-header { padding: 42px 24px 32px; }

    .oracle-revelation-title { font-size: 1.5rem; letter-spacing: 0.1em; }

    .oracle-block { padding: 30px 24px; }

    .oracle-block-text { font-size: 1.1rem; line-height: 1.85; }

    .oracle-toast { white-space: normal; max-width: 90vw; text-align: center; }
}

@media (max-width: 480px) {

    .oracle-chamber { padding: 40px 18px; }

    .oracle-hex-line { width: 90px; height: 10px; }

    .oracle-message { font-size: 1.05rem; }

    .oracle-revelation-title { font-size: 1.2rem; }

    .oracle-block { padding: 24px 18px; }

    .oracle-block-title { font-size: 0.75rem; letter-spacing: 0.22em; }

    .oracle-block-text { font-size: 1.05rem; line-height: 1.8; }
}
