/* Global Typography Styles */
/* Global Typography Styles */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

h2, h3, 
.section-header h2,
.section-title,
.policy-text h2 {
    font-size: 3rem !important;
    font-weight: 400 !important;
    line-height: 1.2 !important;
    font-family: 'Georgia', serif !important;
    color: #fff !important;
}

/* All Body Text & Descriptions - EXCEPT Footer */
.hero-description,
.section-header p,
.policy-text p,
.tab-pane p {
    color: #b0b0b0 !important;
    line-height: 1.8 !important;
    font-size: 1rem !important;
}


/* Inside Elixir Section */
.inside-elixir-section {
    padding: 80px 20px;
    color: #fff;
}

.inside-elixir-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: 3rem;
    font-weight: 400;
    text-align: center;
    margin-bottom: 50px;
    font-family: 'Georgia', serif;
    color: #fff;
}

.tabs-wrapper {
    background: #1a1a1a;
    border: 2px solid #333;
    border-radius: 8px;
    padding: 40px;
}

.tabs-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.tab-btn {
    background: transparent;
    color: #fff;
    border: 2px solid #444;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn:hover {
    border-color: #666;
    background: #222;
}

.tab-btn.active {
    background: #c9a66b;
    color: #1a1a1a;
    border-color: #c9a66b;
}

.tabs-content {
    position: relative;
}

.tab-pane {
    display: none;
    animation: fadeIn 0.4s ease;
}

.tab-pane.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.tab-pane p {
    color: #b0b0b0;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1rem;
}

.tab-pane ul {
    color: #b0b0b0;
    line-height: 1.8;
    margin: 20px 0;
    padding-left: 25px;
}

.tab-pane li {
    margin-bottom: 10px;
}

.tab-pane strong {
    color: #fff;
    font-weight: 700;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .inside-elixir-section {
        padding: 50px 15px;
    }
    
    .section-title {
        font-size: 2.5rem;
        margin-bottom: 30px;
    }
    
    .tabs-wrapper {
        padding: 25px 20px;
    }
    
    .tabs-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .tab-btn {
        width: 100%;
        text-align: left;
        padding: 15px 20px;
    }
    
    .tab-pane p,
    .tab-pane ul {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 2rem;
    }
    
    .tab-btn {
        font-size: 14px;
        padding: 12px 16px;
    }
}


/* Hero Section */
.hero-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 5rem !important;
    font-weight: 400;
    color: #fff;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-transform: uppercase;
    line-height: 1.2;
    animation: fadeInDown 0.8s ease;
    font-family: 'Georgia', serif;
}

.hero-subtitle {
    font-size: 5rem !important;
    font-weight: 400;
    color: #c9a66b;
    margin-bottom: 30px;
    line-height: 1.2;
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    font-family: 'Georgia', serif;
}

.typewriter {
    display: inline-block;
    color: #c9a66b;
}

.cursor {
    display: inline-block;
    color: #c9a66b;
    animation: blink 0.7s infinite;
    font-weight: 400;
}

@keyframes blink {
    0%, 49% { opacity: 1; }
    50%, 100% { opacity: 0; }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-description {
    font-size: 1.5rem !important;
    color: #b0b0b0;
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.8;
    animation: fadeIn 0.8s ease 0.4s backwards;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: #c9a66b;
    border: 2px solid #c9a66b;
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    animation: fadeIn 0.8s ease 0.6s backwards;
}

.hero-btn:hover {
    background: #c9a66b;
    color: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(201, 166, 107, 0.3);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-section {
        min-height: 80vh;
        padding: 40px 20px;
    }
    
    .hero-title {
        font-size: 3rem !important;
        letter-spacing: 2px;
        margin-bottom: 15px;
    }
    
    .hero-subtitle {
        font-size: 2.2rem !important;
        margin-bottom: 20px;
        min-height: 60px;
    }
    
    .hero-description {
        font-size: 1rem !important;
        margin-bottom: 30px;
        padding: 0 10px;
    }
    
    .hero-btn {
        font-size: 16px;
        padding: 14px 30px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem !important;
        letter-spacing: 1px;
    }
    
    .hero-subtitle {
        font-size: 1.8rem !important;
        min-height: 50px;
    }
    
    .hero-description {
        font-size: 1rem !important;
    }
    
    .hero-btn {
        font-size: 15px;
        padding: 12px 25px;
    }
}

/* Policy Section */
.policy-section {
    background-color: #1a1a1a;
    color: #fff;
    padding: 80px 0;
}

.policy-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.policy-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.policy-text {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.8s ease;
}

.policy-text.reveal.active {
    opacity: 1;
    transform: translateX(0);
}

.policy-label {
    color: #c9a66b;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.8rem;
    font-weight: 600;
    display: block;
    margin-bottom: 15px;
}

.policy-text h2 {
    font-size: 3rem;
    font-weight: 400;
    line-height: 1.2;
    margin: 0 0 30px 0;
    font-family: 'Georgia', serif;
}

.policy-text p {
    color: #b0b0b0;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1rem;
}

.policy-cta {
    margin-top: 35px;
}

.support-link {
    color: #fff;
    text-decoration: none;
    border-bottom: 1px solid #fff;
    padding-bottom: 5px;
    transition: all 0.3s ease;
    display: inline-block;
}

.support-link:hover {
    color: #c9a66b;
    border-bottom-color: #c9a66b;
}

/* Policy Visual */
.policy-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #2a2a2a;
    padding: 60px;
    border-radius: 8px;
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.8s ease 0.2s;
}

.policy-visual.reveal.active {
    opacity: 1;
    transform: translateX(0);
}

/* SVG Animation */
/* SVG Animation - UPDATED */
.box-svg {
    width: 200px;
    height: 200px;
    perspective: 1000px;
}

.box-base,
.box-lid rect,
.box-lid line {
    fill: none;
    stroke: #c9a66b;
    stroke-width: 2;
}

.box-base {
    fill: #2a2a2a;
}

.box-lid {
    transform-origin: 50% 30px;
    animation: openLidSmooth 4s ease-in-out infinite;
}

.check-mark {
    fill: none;
    stroke: #fff;
    stroke-width: 3;
    stroke-dasharray: 60;
    stroke-dashoffset: 60;
    opacity: 0;
    animation: drawCheckSmooth 4s ease-in-out infinite;
}

@keyframes openLidSmooth {
    0% {
        transform: rotateX(0deg) translateY(0);
    }
    20% {
        transform: rotateX(-100deg) translateY(-15px);
    }
    40% {
        transform: rotateX(-100deg) translateY(-15px);
    }
    60% {
        transform: rotateX(0deg) translateY(-5px);
    }
    70% {
        transform: rotateX(0deg) translateY(0);
    }
    100% {
        transform: rotateX(0deg) translateY(0);
    }
}

@keyframes drawCheckSmooth {
    0%, 15% {
        stroke-dashoffset: 60;
        opacity: 0;
    }
    25% {
        stroke-dashoffset: 60;
        opacity: 1;
    }
    45% {
        stroke-dashoffset: 0;
        opacity: 1;
    }
    55% {
        stroke-dashoffset: 0;
        opacity: 1;
    }
    65%, 100% {
        stroke-dashoffset: 0;
        opacity: 0;
    }
}

/* Responsive Design */
@media (max-width: 968px) {
    .policy-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .policy-text h2 {
        font-size: 2rem !important;
    }
    
    .policy-visual {
        padding: 40px;
    }
    
    .policy-section {
        padding: 60px 0;
    }
}

@media (max-width: 576px) {
    .policy-text h2 {
        font-size: 2rem !important;
    }
    
    .box-svg {
        width: 150px;
        height: 150px;
    }
    
    .policy-section {
        padding: 40px 0;
    }
}