:root {
    --bg-color: #050505;
    --text-primary: #e8e8e8;
    --text-muted: #888888;
    --accent-gold: #c5a059;
    --accent-gold-dark: #a17f3a;
    --accent-glow: rgba(197, 160, 89, 0.35);
    --border-dark: #222222;
    --card-bg: #0a0a0a;
    
    --font-heading: 'Cinzel', serif;
    --font-body: 'Montserrat', sans-serif;
    --font-glitch: 'Syncopate', 'Cinzel', sans-serif;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.7;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3 {
    font-family: var(--font-heading);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

/* HEADER */
.top-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 22px 30px;
    background: rgba(5, 5, 5, 0.92);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border-dark);
}

.nav-links.centered {
    display: flex;
    align-items: center;
    gap: 38px;
    justify-content: center;
}

.nav-link {
    color: var(--text-muted);
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    letter-spacing: 0.1em;
    transition: color 0.3s ease;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-link:hover {
    color: var(--accent-gold);
}

.nav-btn {
    padding: 8px 24px;
    border: 1px solid var(--accent-gold);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.nav-btn:hover {
    background: var(--accent-gold);
    color: var(--bg-color);
    box-shadow: 0 0 15px var(--accent-glow);
}

.icon-btn {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

/* HERO + Dynamic Vignette synced with zoom */
.hero-image-section {
    position: relative;
    padding: 0;
    overflow: hidden;
}

.hero-image-wrapper {
    position: relative;
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
    animation: strongZoom 18s ease-in-out infinite alternate;
    transform-origin: center;
}

/* Smooth bottom gradient fade to blend with dark background */
.hero-image-wrapper::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 35%;
    background: linear-gradient(to bottom, transparent 0%, rgba(5,5,5,0.65) 55%, #050505 92%);
    z-index: 2;
    pointer-events: none;
}

/* Dynamic vignette that syncs with zoom */
.hero-image-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(
        ellipse at center,
        transparent 55%,
        rgba(0, 0, 0, 0.35) 92%
    );
    pointer-events: none;
    z-index: 1;
    animation: vignetteSync 18s ease-in-out infinite alternate;
}

@keyframes strongZoom {
    from { transform: scale(1); }
    to { transform: scale(1.13); }
}

@keyframes vignetteSync {
    from {
        background: radial-gradient(ellipse at center, transparent 55%, rgba(0,0,0,0.35) 92%);
    }
    to {
        background: radial-gradient(ellipse at center, transparent 48%, rgba(0,0,0,0.55) 88%);
    }
}

.hero-logo-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    text-align: center;
}

.crystal-logo {
    font-family: var(--font-heading);
    font-size: 5.2rem;
    font-weight: 700;
    color: #f4e9d8;
    letter-spacing: 0.2em;
    text-shadow: 0 0 15px rgba(197,160,89,0.7), 0 0 40px rgba(197,160,89,0.4);
    position: relative;
    display: inline-block;
}

.logo-shimmer.crystal-shimmer {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(115deg, transparent 20%, rgba(255,255,255,0.9) 48%, rgba(197,160,89,0.6) 52%, transparent 80%);
    background-size: 280% 100%;
    animation: crystalShimmer 3.8s infinite linear;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo-crystal-glow {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 135%; height: 135%;
    background: radial-gradient(circle, rgba(197,160,89,0.18) 0%, transparent 65%);
    border-radius: 50%;
    animation: crystalPulse 7s ease-in-out infinite;
}

.logo-scanner {
    position: absolute;
    top: 8%; left: -10%;
    width: 35%; height: 84%;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.85), rgba(197,160,89,0.9), transparent);
    animation: scannerMove 4.5s infinite ease-in-out;
    z-index: 2;
    mix-blend-mode: screen;
}

@keyframes scannerMove {
    0% { left: -25%; opacity: 0; }
    15% { opacity: 1; }
    85% { opacity: 1; }
    100% { left: 115%; opacity: 0; }
}

@keyframes crystalShimmer { 0% { background-position: 280% 0; } 100% { background-position: -280% 0; } }
@keyframes crystalPulse { 0%,100% { opacity: 0.55; transform: translate(-50%,-50%) scale(1); } 50% { opacity: 0.95; transform: translate(-50%,-50%) scale(1.1); } }

/* Glitch + Bounce effect on byline */
.logo-byline.glitch-byline {
    margin-top: 14px;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: #e8d9a8;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    font-weight: 500;
    text-shadow: 0 0 10px rgba(197,160,89,0.4);
    position: relative;
    display: inline-block;
    animation: subtleGlitch 6s infinite ease-in-out;
}

@keyframes subtleGlitch {
    0%, 92%, 100% { transform: translate(0); }
    93% { transform: translate(-1px, 1px); }
    94% { transform: translate(1px, -1px); }
    95% { transform: translate(-1px, -1px); }
    96% { transform: translate(1px, 1px); }
}

/* SECTION TITLES - Active Glow + Fade */
.section-title {
    position: relative;
    display: inline-block;
    color: var(--accent-gold);
    text-shadow: 0 0 20px var(--accent-glow);
    animation: luxuryTitlePulse 6s ease-in-out infinite alternate;
    transition: all 0.4s ease;
}

@keyframes luxuryTitlePulse {
    from { text-shadow: 0 0 15px var(--accent-glow); }
    to { text-shadow: 0 0 45px rgba(197,160,89,0.7); }
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 45%;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--accent-gold), transparent);
    animation: titleUnderline 5s ease-in-out infinite;
}

@keyframes titleUnderline {
    0%,100% { width: 35%; opacity: 0.6; }
    50% { width: 65%; opacity: 1; }
}

.section-title:hover {
    letter-spacing: 0.12em;
    text-shadow: 0 0 55px rgba(197,160,89,0.85);
}

/* DESTINY */
.destiny-section {
    padding: 60px 0 80px;
    text-align: center;
}

.destiny-section .section-title {
    margin-bottom: 18px;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 520px;
    margin: 0 auto 40px;
}

.dob-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.dob-input {
    background: transparent;
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold);
    padding: 16px 28px;
    font-size: 1.1rem;
    font-family: var(--font-body);
    border-radius: 4px;
    outline: none;
    text-align: center;
    min-width: 260px;
    color-scheme: dark;
}

.dob-input:focus {
    box-shadow: 0 0 20px var(--accent-glow);
}

.btn-luxury {
    background: transparent;
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold);
    padding: 16px 42px;
    font-family: var(--font-heading);
    font-size: 1rem;
    letter-spacing: 0.12em;
    cursor: pointer;
    text-transform: uppercase;
    border-radius: 4px;
    transition: all 0.4s ease;
}

.btn-luxury:hover {
    background: var(--accent-gold);
    color: var(--bg-color);
    box-shadow: 0 0 25px var(--accent-glow);
}

/* ZODIAC RESULT */
.zodiac-result {
    max-width: 720px;
    margin: 0 auto;
    padding: 50px 40px;
    background: var(--card-bg);
    border: 1px solid var(--border-dark);
    border-radius: 8px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.5);
}

.zodiac-sign {
    font-family: var(--font-heading);
    font-size: 5.2rem;
    font-weight: 700;
    color: var(--accent-gold);
    text-shadow: 0 0 40px var(--accent-glow);
    letter-spacing: 0.08em;
}

.zodiac-element {
    font-size: 1.35rem;
    color: var(--accent-gold);
    letter-spacing: 0.25em;
    text-transform: uppercase;
    margin: 8px 0 25px;
}

.zodiac-lore {
    font-size: 1.15rem;
    color: var(--text-primary);
    max-width: 580px;
    margin: 0 auto 30px;
    line-height: 1.75;
}

.result-divider {
    width: 80px;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--accent-gold), transparent);
    margin: 30px auto;
}

.result-note {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-style: italic;
}

/* STATS */
.stats-section {
    padding: 40px 0 70px;
    border-top: 1px solid var(--border-dark);
    border-bottom: 1px solid var(--border-dark);
}

.stats-grid {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.stat-card {
    text-align: center;
}

.stat-label {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    color: var(--text-muted);
    letter-spacing: 0.2em;
    margin-bottom: 8px;
}

.stat-value {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--accent-gold);
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
}

/* LORE - 6 Blocks Grid */
.lore-section {
    padding: 80px 0;
    background: #070707;
    border-top: 1px solid var(--border-dark);
    border-bottom: 1px solid var(--border-dark);
}

.lore-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 45px;
}

.lore-block {
    background: var(--card-bg);
    border: 1px solid var(--border-dark);
    padding: 28px 26px;
    border-radius: 8px;
    transition: transform 0.4s ease, border-color 0.4s ease;
}

.lore-block:hover {
    transform: translateY(-6px);
    border-color: var(--accent-gold);
}

.lore-label {
    font-family: var(--font-heading);
    font-size: 0.92rem;
    color: var(--accent-gold);
    letter-spacing: 0.15em;
    margin-bottom: 13px;
    text-transform: uppercase;
}

.lore-block p {
    font-size: 1.02rem;
    color: #d8d8d8;
    line-height: 1.75;
}

.lore-closing {
    text-align: center;
    margin-top: 50px;
    font-size: 1.2rem;
    color: var(--accent-gold);
    font-style: italic;
    line-height: 1.7;
}

/* PREVIEWS - 4 Elemental Cards */
.previews-section {
    padding: 70px 0;
    background: #080808;
}

.previews-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    margin-top: 35px;
}

.preview-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--border-dark);
    transition: transform 0.5s cubic-bezier(0.23,1,0.32,1), box-shadow 0.5s ease;
}

.preview-card:hover {
    transform: translateY(-12px) scale(1.015);
    box-shadow: 0 25px 70px rgba(197,160,89,0.2);
    border-color: var(--accent-gold);
}

.preview-card img {
    width: 100%;
    display: block;
    transition: transform 0.7s ease;
}

.preview-card:hover img {
    transform: scale(1.08);
}

.preview-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 30%, rgba(197,160,89,0.12) 0%, transparent 65%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.preview-card:hover .preview-glow {
    opacity: 1;
}

.preview-border {
    position: absolute;
    inset: 0;
    border: 1px solid transparent;
    transition: border-color 0.4s ease;
}

.preview-card:hover .preview-border {
    border-color: rgba(197,160,89,0.6);
    box-shadow: inset 0 0 25px rgba(197,160,89,0.15);
}

/* Elemental Hover Effects */
.preview-card.earth:hover .preview-glow {
    background: radial-gradient(circle at 50% 40%, rgba(76, 175, 80, 0.18) 0%, transparent 70%);
}

.preview-card.fire:hover .preview-glow {
    background: radial-gradient(circle at 50% 35%, rgba(255, 152, 0, 0.22) 0%, transparent 65%);
    animation: fireFlicker 1.2s infinite alternate ease-in-out;
}

@keyframes fireFlicker {
    from { opacity: 0.7; }
    to { opacity: 1; }
}

.preview-card.water:hover .preview-glow {
    background: radial-gradient(circle at 50% 45%, rgba(33, 150, 243, 0.18) 0%, transparent 70%);
    animation: waterFlow 2.5s infinite ease-in-out;
}

@keyframes waterFlow {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(4px); }
}

.preview-card.air:hover .preview-glow {
    background: radial-gradient(circle at 50% 30%, rgba(224, 247, 250, 0.15) 0%, transparent 65%);
    animation: airDrift 3s infinite ease-in-out;
}

@keyframes airDrift {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(6px); }
}

/* ROADMAP */
.roadmap-section {
    padding: 80px 0;
}

.roadmap-timeline {
    max-width: 860px;
    margin: 50px auto 0;
    position: relative;
}

.roadmap-timeline::before {
    content: '';
    position: absolute;
    left: 38px;
    top: 30px;
    bottom: 30px;
    width: 2px;
    background: linear-gradient(var(--accent-gold), var(--accent-gold-dark));
    opacity: 0.3;
}

.roadmap-phase {
    display: flex;
    gap: 35px;
    margin-bottom: 55px;
    position: relative;
}

.phase-number {
    width: 76px;
    height: 76px;
    flex-shrink: 0;
    border: 2px solid var(--accent-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.85rem;
    color: var(--accent-gold);
    background: var(--bg-color);
    z-index: 2;
    box-shadow: 0 0 0 8px rgba(5,5,5,0.9);
}

.phase-content {
    flex: 1;
    padding-top: 8px;
}

.phase-title {
    font-size: 1.45rem;
    color: var(--accent-gold);
    margin-bottom: 14px;
    letter-spacing: 0.06em;
    transition: all 0.6s ease;
}

/* Active highlight style for roadmap phases */
.phase-title.active {
    color: #f4e9d8;
    text-shadow: 0 0 25px var(--accent-glow), 0 0 45px rgba(197,160,89,0.6);
    transform: scale(1.02);
}

.phase-list {
    list-style: none;
    padding-left: 5px;
}

.phase-list li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 9px;
    color: var(--text-primary);
    font-size: 1.02rem;
}

.phase-list li::before {
    content: '-';
    position: absolute;
    left: 0;
    color: var(--accent-gold);
}

/* FOUNDER */
.founder-section {
    padding: 70px 0 90px;
    background: #080808;
    border-top: 1px solid var(--border-dark);
}

.founder-grid {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 70px;
    align-items: center;
}

.founder-image-wrapper {
    position: relative;
}

.founder-image {
    width: 100%;
    border-radius: 8px;
    border: 1px solid var(--border-dark);
    box-shadow: 0 25px 70px rgba(0,0,0,0.6);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.founder-image-wrapper:hover .founder-image {
    transform: scale(1.03);
    box-shadow: 0 30px 80px rgba(197,160,89,0.15);
}

.founder-image-glow {
    position: absolute;
    inset: 0;
    border-radius: 8px;
    background: radial-gradient(circle at 40% 30%, rgba(197,160,89,0.12) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.founder-image-wrapper:hover .founder-image-glow {
    opacity: 1;
}

.founder-bio .section-title {
    text-align: left;
    margin-bottom: 25px;
}

.bio-text p {
    margin-bottom: 18px;
    font-size: 1.02rem;
    color: #d0d0d0;
}

.bio-closing {
    font-style: italic;
    color: var(--accent-gold) !important;
    margin-top: 10px;
}

/* FOOTER - Luxury Style */
.site-footer {
    padding: 50px 0;
    border-top: 1px solid var(--border-dark);
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 42px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}

.footer-link {
    color: var(--text-muted);
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 0.92rem;
    letter-spacing: 0.12em;
    transition: all 0.3s ease;
    background: none;
    border: none;
    cursor: pointer;
}

.footer-link:hover {
    color: var(--accent-gold);
    text-shadow: 0 0 10px var(--accent-glow);
}

.footer-btn {
    padding: 6px 18px;
    border: 1px solid var(--accent-gold);
    border-radius: 3px;
}

.footer-btn:hover {
    background: var(--accent-gold);
    color: var(--bg-color);
}

/* WHITEPAPER & TERMS MODAL */
.modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.94);
    z-index: 200;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 40px 20px;
    overflow-y: auto;
}

.modal.hidden {
    display: none;
}

.modal-content {
    background: var(--card-bg);
    border: 1px solid var(--accent-gold);
    border-radius: 10px;
    max-width: 860px;
    width: 100%;
    padding: 55px 55px 60px;
    position: relative;
    box-shadow: 0 30px 90px rgba(0,0,0,0.75);
}

.modal-close {
    position: absolute;
    top: 24px;
    right: 30px;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 2.4rem;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s;
}

.modal-close:hover {
    color: var(--accent-gold);
}

.modal-header {
    text-align: center;
    margin-bottom: 35px;
}

.modal-title {
    font-size: 2.15rem;
    color: var(--accent-gold);
    margin-bottom: 8px;
}

.modal-subtitle {
    color: var(--text-muted);
    font-size: 1.05rem;
    letter-spacing: 0.12em;
}

.key-terms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
    margin-top: 15px;
}

.term {
    background: rgba(197,160,89,0.04);
    border: 1px solid var(--border-dark);
    padding: 18px 20px;
    border-radius: 6px;
    font-size: 0.98rem;
    line-height: 1.6;
}

.supply-box {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    margin: 20px 0 25px;
}

.supply-item {
    flex: 1;
    min-width: 160px;
    background: rgba(197,160,89,0.05);
    border: 1px solid var(--accent-gold);
    border-radius: 6px;
    padding: 18px 20px;
    text-align: center;
}

.supply-value {
    font-family: var(--font-heading);
    font-size: 1.65rem;
    color: var(--accent-gold);
    margin-bottom: 4px;
}

.supply-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    letter-spacing: 0.05em;
}

.modal-section {
    margin-bottom: 38px;
}

.modal-section h3 {
    color: var(--accent-gold);
    font-size: 1.3rem;
    margin-bottom: 16px;
    letter-spacing: 0.06em;
}

.modal-section p, .modal-section li {
    font-size: 1.03rem;
    color: #d8d8d8;
    margin-bottom: 13px;
    line-height: 1.75;
}

.modal-section ul, .modal-section ol {
    padding-left: 24px;
}

.modal-section.highlight {
    background: rgba(197,160,89,0.06);
    padding: 28px 32px;
    border-left: 4px solid var(--accent-gold);
    border-radius: 6px;
}

.modal-footer-note {
    text-align: center;
    font-style: italic;
    color: var(--accent-gold);
    margin-top: 35px;
    font-size: 1.15rem;
    line-height: 1.6;
}

/* TERMS MODAL */
.terms-modal {
    max-width: 920px;
}

.terms-content h3 {
    color: var(--accent-gold);
    font-size: 1.2rem;
    margin: 28px 0 12px;
    letter-spacing: 0.05em;
}

.terms-content p, .terms-content li {
    font-size: 1.02rem;
    color: #d8d8d8;
    margin-bottom: 12px;
    line-height: 1.7;
}

.terms-content ul {
    padding-left: 22px;
    margin-bottom: 18px;
}

.terms-final {
    margin-top: 35px;
    padding-top: 25px;
    border-top: 1px solid var(--border-dark);
    text-align: center;
    font-style: italic;
    color: var(--accent-gold);
    font-size: 1.05rem;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
    .previews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .top-nav { padding: 18px 20px; }
    .nav-links.centered { gap: 26px; flex-wrap: wrap; }
    .crystal-logo { font-size: 3.4rem; }
    .founder-grid { grid-template-columns: 1fr; gap: 45px; }
    .founder-image-wrapper { max-width: 320px; margin: 0 auto; }
    .lore-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .section-title { font-size: 1.9rem; }
    .zodiac-sign { font-size: 3.2rem; }
    .dob-wrapper { flex-direction: column; }
    .roadmap-phase { flex-direction: column; gap: 15px; }
    .phase-number { width: 64px; height: 64px; font-size: 1.5rem; }
    .modal-content { padding: 40px 25px; }
    .supply-box { flex-direction: column; }
    .lore-grid { grid-template-columns: 1fr; }
    .previews-grid { grid-template-columns: 1fr; }
}

.hidden {
    display: none !important;
}

/* ============================================
   NEW LUXURY ADDITIONS - Glitch Title, Scroll, Shimmer, Roadmap Loop
   ============================================ */

/* TRANSPARENT GLITCH TITLE for Hero (subtle elegant glitch, does not break shimmer/scanner layers) */
.glitch-title {
    font-family: var(--font-glitch);
    position: relative;
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(244, 233, 216, 0.75);
    mix-blend-mode: hard-light;
    text-shadow: 0 0 10px rgba(197,160,89,0.3);
}

.glitch-title::before,
.glitch-title::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.55);
    mix-blend-mode: hard-light;
    pointer-events: none;
}

.glitch-title::before {
    left: 1.5px;
    animation: glitch-anim 5.5s infinite linear alternate-reverse;
    text-shadow: 0 0 8px rgba(197,160,89,0.4);
}

.glitch-title::after {
    left: -1.5px;
    animation: glitch-anim2 4.2s infinite linear alternate-reverse;
    text-shadow: 0 0 8px rgba(197,160,89,0.4);
}

@keyframes glitch-anim {
    0% { clip: rect(12px, 9999px, 38px, 0); transform: skew(0.4deg); }
    20% { clip: rect(55px, 9999px, 72px, 0); transform: skew(-0.35deg); }
    40% { clip: rect(22px, 9999px, 45px, 0); }
    65% { clip: rect(68px, 9999px, 19px, 0); transform: skew(0.25deg); }
    100% { clip: rect(31px, 9999px, 61px, 0); }
}

@keyframes glitch-anim2 {
    0% { clip: rect(48px, 9999px, 15px, 0); transform: skew(-0.3deg); }
    35% { clip: rect(19px, 9999px, 67px, 0); transform: skew(0.4deg); }
    70% { clip: rect(59px, 9999px, 28px, 0); }
    100% { clip: rect(25px, 9999px, 52px, 0); }
}

/* SCROLL TO EXPLORE Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    text-align: center;
    opacity: 0.65;
    animation: bounce 2.2s infinite ease-in-out;
    pointer-events: none;
}

.scroll-text {
    display: block;
    font-family: var(--font-glitch);
    font-size: 0.72rem;
    letter-spacing: 4.5px;
    margin-bottom: 9px;
    color: #c5a059;
    text-transform: uppercase;
    text-shadow: 0 0 8px rgba(197,160,89,0.4);
}

.arrow-down {
    width: 0;
    height: 0;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-top: 9px solid #c5a059;
    margin: 0 auto;
    filter: drop-shadow(0 0 4px rgba(197,160,89,0.5));
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-7px); }
    65% { transform: translateX(-50%) translateY(-3px); }
}

/* LUXURY TEXT SHIMMER for Founder Bio paragraphs - slow, rich, gold appears multiple times */
.bio-text p,
.bio-closing {
    position: relative;
    background: linear-gradient(
        90deg,
        #d8d0b8 0%,
        #f4e9d8 16%,
        #c5a059 33%,
        #e8d9a8 49%,
        #c5a059 65%,
        #f4e9d8 82%,
        #d8d0b8 100%
    );
    background-size: 340% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: luxuryShimmer 24s linear infinite;
}

.bio-closing {
    font-style: italic;
    color: var(--accent-gold) !important;
    margin-top: 10px;
}

@keyframes luxuryShimmer {
    0%   { background-position: 0% 50%; }
    16%  { background-position: 57% 50%; }
    33%  { background-position: 114% 50%; }
    50%  { background-position: 171% 50%; }
    66%  { background-position: 228% 50%; }
    83%  { background-position: 285% 50%; }
    100% { background-position: 340% 50%; }
}

/* Premium flowing shimmer specifically for the name "Satoshi Huessoto" - very slow, elegant, gold in every cycle */
.founder-name-shimmer {
    position: relative;
    display: inline-block;
    background: linear-gradient(
        92deg,
        #b8860b 0%,
        #c5a059 13%,
        #f4e9d8 27%,
        #d4af37 41%,
        #c5a059 55%,
        #f4e9d8 69%,
        #b8860b 83%,
        #c5a059 100%
    );
    background-size: 450% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: founderNameFlow 28s ease-in-out infinite;
    text-shadow: 0 0 14px rgba(197, 160, 89, 0.3);
}

@keyframes founderNameFlow {
    0%   { background-position: 0% 50%; }
    14%  { background-position: 75% 50%; }
    29%  { background-position: 150% 50%; }
    43%  { background-position: 225% 50%; }
    57%  { background-position: 300% 50%; }
    71%  { background-position: 375% 50%; }
    86%  { background-position: 450% 50%; }
    100% { background-position: 0% 50%; }
}

/* ROADMAP - Noble Blue active highlight + continuous looping animation */
.phase-title.active {
    color: #5b8def !important;
    text-shadow: 0 0 18px rgba(91, 141, 239, 0.65), 0 0 32px rgba(91, 141, 239, 0.35);
    transform: scale(1.015);
    transition: all 0.4s ease;
}

/* ============================================
   NEW: HAND-CRAFTED ART PROCESS SECTION (luxury video block)
   ============================================ */
.art-process-section {
    padding: 70px 0 90px;
    background: #060606;
    border-top: 1px solid var(--border-dark);
    border-bottom: 1px solid var(--border-dark);
}

.art-process-wrapper {
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
}

.art-process-header {
    margin-bottom: 35px;
}

.art-process-subtitle {
    color: var(--text-muted);
    font-size: 1.05rem;
    letter-spacing: 0.08em;
    margin-top: 8px;
}

.art-video-frame {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-dark);
    box-shadow: 0 25px 70px rgba(0,0,0,0.6);
    background: #000;
}

.art-process-video {
    width: 100%;
    display: block;
    border-radius: 12px;
}

.art-video-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 40%, rgba(197,160,89,0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.art-video-label {
    position: absolute;
    bottom: 18px;
    right: 22px;
    background: rgba(5,5,5,0.85);
    color: var(--accent-gold);
    font-family: var(--font-glitch);
    font-size: 0.72rem;
    letter-spacing: 3px;
    padding: 6px 14px;
    border: 1px solid var(--accent-gold);
    border-radius: 3px;
    z-index: 2;
    text-transform: uppercase;
}

/* Luxury Sound Toggle Button for Art Video */
.video-sound-btn {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(5,5,5,0.75);
    border: 1px solid var(--accent-gold);
    border-radius: 50%;
    color: var(--accent-gold);
    cursor: pointer;
    z-index: 3;
    transition: all 0.3s ease;
    backdrop-filter: blur(6px);
}

.video-sound-btn:hover {
    background: var(--accent-gold);
    color: var(--bg-color);
    box-shadow: 0 0 15px var(--accent-glow);
    transform: scale(1.05);
}

.video-sound-btn svg {
    width: 20px;
    height: 20px;
}

.art-process-text {
    max-width: 680px;
    margin: 40px auto 0;
}

.art-process-text p {
    font-size: 1.05rem;
    color: #d0d0d0;
    line-height: 1.75;
}

.art-process-text strong {
    color: var(--accent-gold);
}