:root {
    --c-bg: #150901;
    --c-text: #F5F5F5;
    --c-accent: #dec38c;
}

body {
    background-color: var(--c-bg);
    color: var(--c-text);
    font-family: 'Satoshi', sans-serif;
    margin: 0;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-image: radial-gradient(circle at top center, rgba(58, 33, 12, 0.4) 0%, #150901 60%);
    opacity: 0; /* Preloader fade in */
}

::selection {
    background: var(--c-accent);
    color: #101010;
}

/* --- PRELOADER --- */
.loader {
    position: fixed;
    inset: 0;
    background: #150901;
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--c-accent);
}
.loader-text {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 3rem;
    letter-spacing: 0.05em;
}
.loader-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: var(--c-accent);
    width: 0%;
}

/* --- TEXT SPLIT UTILS --- */
.word-wrap {
    display: inline-block;
    overflow: hidden;
    vertical-align: top;
    padding-bottom: 0.1em;
}
.word-inner {
    display: inline-block;
    transform: translateY(110%);
}

/* --- CUSTOM BUTTONS --- */
.btn-gold {
    background-color: var(--c-accent);
    color: #150901;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn-gold::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}
.btn-gold:hover::before {
    left: 100%;
}
.btn-gold:hover {
    box-shadow: 0 0 25px rgba(222, 195, 140, 0.4);
    transform: translateY(-2px);
}
.btn-dark {
    background-color: #241002;
    color: var(--c-accent);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(222, 195, 140, 0.2);
}
.btn-dark:hover {
    background-color: #101010;
    border-color: var(--c-accent);
    box-shadow: 0 0 20px rgba(222, 195, 140, 0.1);
}

/* --- PRICING CARDS --- */
.pricing-card {
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}
.pricing-card:hover {
    transform: translateY(-10px);
}
.pricing-card.elevated {
    transform: scale(1.05); /* Base scale for center card */
    z-index: 10;
}
.pricing-card.elevated:hover {
    transform: scale(1.05) translateY(-10px);
}

/* --- PARALLAX TEXT WATERMARK --- */
.watermark {
    font-size: 25vw;
    color: rgba(255, 255, 255, 0.02);
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.05);
    line-height: 0.8;
    user-select: none;
    position: absolute;
    z-index: 0;
    white-space: nowrap;
}

/* --- ACCORDION --- */
.faq-item {
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out, padding 0.5s ease-in-out;
}
.faq-item.active .faq-answer {
    max-height: 200px;
    padding-bottom: 1.5rem;
}
.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

/* --- VERTICAL TEXT --- */
.vertical-text {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
}

.hero-pattern {
    background-image: 
        linear-gradient(to right, rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 4rem 4rem;
}

/* --- PULSE EFFECT --- */
@keyframes pulse-ring {
    0% { transform: scale(0.85); opacity: 0.5; }
    100% { transform: scale(1.6); opacity: 0; }
}
.pulse-ring-1 {
    animation: pulse-ring 2.5s cubic-bezier(0.25, 1, 0.5, 1) infinite;
}
.pulse-ring-2 {
    animation: pulse-ring 2.5s cubic-bezier(0.25, 1, 0.5, 1) infinite;
    animation-delay: 1.25s;
}
