/* === GATES OF OLYMPUS PREMIUM STYLES === */

/* === CSS RESET & BASE === */
* { box-sizing: border-box; margin: 0; padding: 0; outline: none; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Source Sans 3', system-ui, sans-serif;
    line-height: 1.6;
    font-size: 18px;
    overflow-x: clip;
    color: var(--text);
    background: var(--bg);
}

/* === PREMIUM TOKENS === */
:root {
    --bg: #f8f8fc;
    --text: #1a1a1f;
    --text-muted: #64748b;
    --accent: #f59e0b; /* Vibrant Gold from Icon */
    --accent-secondary: #3b82f6; /* Blue from Icon */
    --accent-gradient: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
    --text-gradient: linear-gradient(to right, #f59e0b, #3b82f6);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --shadow-glass: 0 8px 32px 0 rgba(0, 0, 0, 0.05);
    --shadow-premium: 0 20px 40px -15px rgba(0, 0, 0, 0.1);
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.4);
    --container-width: 1240px;
    --section-padding: 90px;
}

h1, h2, h3, h4 {
    font-family: 'Unbounded', sans-serif;
    line-height: 1.2;
    color: var(--text);
}

img { max-width: 100%; height: auto; display: block; border-radius: var(--radius-md); object-fit: cover; }
a { text-decoration: none; color: inherit; transition: all 0.3s ease; }
ul { list-style: none; }

/* === STRUCTURAL BASELINES === */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

section {
    padding: var(--section-padding) 0;
    position: relative;
    overflow: hidden;
}

.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-glass);
}

/* === ANIMATED MESH BACKGROUND === */
.mesh-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: var(--bg);
    overflow: hidden;
}

.mesh-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    animation: mesh-move 20s infinite alternate ease-in-out;
}

.mesh-1 { width: 600px; height: 600px; background: var(--accent); top: -200px; left: -100px; }
.mesh-2 { width: 500px; height: 500px; background: var(--accent-secondary); bottom: -100px; right: -100px; animation-delay: -5s; }
.mesh-3 { width: 400px; height: 400px; background: var(--accent); top: 30%; right: 10%; animation-delay: -10s; }

@keyframes mesh-move {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(100px, 50px) scale(1.1); }
}

/* === NAVIGATION === */
.olympus-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.olympus-nav.scrolled {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    padding: 0.75rem 0;
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-logo {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    object-fit: contain;
}

.nav-title {
    font-family: 'Unbounded', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    background: var(--text-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-tabs {
    display: flex;
    background: rgba(0, 0, 0, 0.03);
    padding: 4px;
    border-radius: 12px;
}

.nav-tab {
    padding: 8px 20px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-muted);
    border-radius: 8px;
    position: relative;
}

.nav-tab.active {
    background: #fff;
    color: var(--text);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.nav-tab:hover:not(.active) {
    color: var(--text);
}

.nav-cta .btn-download {
    padding: 10px 24px;
    background: var(--accent);
    color: #fff;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 10px 20px -5px rgba(245, 158, 11, 0.4);
}

/* Mobile Nav Toggle */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text);
}

/* === BUTTONS & LINKS === */
.cta-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent);
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.cta-link i {
    transition: transform 0.3s ease;
}

.cta-link:hover i {
    transform: translateX(8px);
}

.btn-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-store {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #000;
    color: #fff;
    padding: 12px 24px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.btn-store:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.3);
}

.btn-store i { font-size: 1.5rem; }
.btn-store .btn-text { display: flex; flex-direction: column; line-height: 1.1; }
.btn-store .small { font-size: 0.7rem; opacity: 0.8; }
.btn-store .big { font-size: 1.1rem; font-weight: 700; }

/* === HERO SECTION === */
.hero-arena {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    background: radial-gradient(circle at 10% 20%, rgba(245, 158, 11, 0.05) 0%, transparent 50%);
}

.hero-split {
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-content {
    flex: 0 0 55%;
}

.hero-visual {
    flex: 0 0 45%;
    display: flex;
    justify-content: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.hero h1 {
    font-size: 4.5rem;
    margin-bottom: 24px;
    background: var(--text-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 10px 10px rgba(0, 0, 0, 0.05));
}

.hero-desc {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-visual img {
    max-width: 320px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 30px 60px rgba(0,0,0,0.15));
    animation: float 6s infinite ease-in-out;
}

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

/* === GALLERY SECTION === */
.gallery-showcase {
    background: #fff;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 16px;
}

.gallery-stack {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 100px;
}

.gallery-item {
    width: 100%;
    max-width: 1000px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.gallery-item img {
    width: 100%;
    max-width: 90vw;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-premium);
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.gallery-item:hover img {
    transform: scale(1.02);
}

.gallery-caption {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* === HOW IT WORKS === */
.process-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    position: relative;
}

.process-card {
    flex: 0 1 280px;
    background: #fdfdfd;
    padding: 2.5rem 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
}

.process-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-premium);
}

.step-num {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--accent);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.2rem;
    box-shadow: 0 4px 10px rgba(245, 158, 11, 0.3);
}

.process-icon {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 20px;
}

.process-card h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.process-card p {
    color: var(--text-muted);
    font-size: 1rem;
}

.step-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--accent-secondary);
    opacity: 0.3;
}

/* === FEATURES (EDITORIAL) === */
.feature-editorial {
    padding: 0;
}

.editorial-block {
    display: flex;
    min-height: 500px;
}

.editorial-block:nth-child(even) {
    flex-direction: row-reverse;
}

.editorial-content {
    flex: 1;
    padding: 80px 10%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.editorial-visual {
    flex: 1;
    overflow: hidden;
}

.editorial-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
}

.editorial-num {
    font-size: 8rem;
    font-family: 'Unbounded', sans-serif;
    font-weight: 900;
    line-height: 1;
    color: var(--accent);
    opacity: 0.1;
    position: absolute;
    top: 40px;
    left: 60px;
    z-index: 0;
}

.editorial-content h3 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.editorial-content p {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 500px;
    position: relative;
    z-index: 1;
}

.bg-accent { background: rgba(245, 158, 11, 0.03); }
.bg-neutral { background: #fff; }

/* === STATS SECTION === */
.stats-tower {
    padding: 0;
}

.stat-strip {
    width: 100%;
    padding: 80px 0;
    transition: all 0.3s ease;
}

.stat-strip:nth-child(1) { background: #fdfdfd; }
.stat-strip:nth-child(2) { background: #f8f8fc; }
.stat-strip:nth-child(3) { background: #f1f5f9; }

.stat-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.stat-num {
    font-family: 'Unbounded', sans-serif;
    font-size: 6rem;
    font-weight: 900;
    color: var(--text);
    line-height: 1;
}

.stat-label {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 3px;
    text-align: right;
}

/* === REVIEWS SECTION === */
.review-arena {
    background: #fff;
}

.reviews-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.review-card {
    flex: 0 1 360px;
    background: #fff;
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 4px 12px rgba(0,0,0,0.02);
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-premium);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.review-user {
    display: flex;
    align-items: center;
    gap: 12px;
}

.user-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
}

.user-info h4 {
    font-size: 1.1rem;
}

.review-date {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.review-stars {
    color: var(--accent);
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.review-content {
    font-size: 1rem;
    color: var(--text-muted);
    font-style: italic;
}

/* === DOWNLOAD CTA === */
.download-finale {
    text-align: center;
    padding: 120px 0;
    background: radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.05) 0%, transparent 70%);
}

.finale-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 40px;
}

.f-stat h4 {
    font-size: 3rem;
    color: var(--text);
}

.f-stat p {
    color: var(--accent);
    font-weight: 700;
}

.finale-cta .btn-group {
    justify-content: center;
}

/* === FOOTER === */
.olympus-footer {
    padding: 100px 0 40px;
    background: #fff;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.footer-main {
    display: flex;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand {
    flex: 0 0 50%;
}

.footer-brand .nav-brand {
    margin-bottom: 20px;
}

.footer-desc {
    color: var(--text-muted);
    max-width: 400px;
    margin-bottom: 30px;
}

.footer-socials {
    display: flex;
    gap: 16px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f1f5f9;
    color: var(--text);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--accent);
    color: #fff;
    transform: translateY(-4px);
}

.footer-links-area {
    flex: 1;
    display: flex;
    gap: 60px;
}

.footer-col h5 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--text);
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col a {
    color: var(--text-muted);
    font-weight: 600;
}

.footer-col a:hover {
    color: var(--accent);
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(0,0,0,0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .editorial-block { min-height: 400px; }
    .editorial-content { padding: 60px 5%; }
    .hero h1 { font-size: 3.5rem; }
    .stat-num { font-size: 4rem; }
}

@media (max-width: 768px) {
    section { padding: 4rem 0; }

    .nav-tabs { display: none; }
    .nav-toggle { display: block; }

    .hero-split { flex-direction: column; text-align: center; gap: 40px; }
    .hero-content { flex: 1; }
    .hero-visual { flex: 1; }
    .hero h1 { font-size: 2.75rem; }
    .btn-group { justify-content: center; }

    .gallery-stack { gap: 60px; }
    .section-header h2 { font-size: 2.25rem; }

    .editorial-block, .editorial-block:nth-child(even) { flex-direction: column; }
    .editorial-visual { height: 300px; }
    .editorial-content { padding: 40px 24px; text-align: center; align-items: center; }
    .editorial-num { left: 50%; transform: translateX(-50%); top: 20px; font-size: 6rem; }

    .stat-flex { flex-direction: column; text-align: center; gap: 10px; }
    .stat-num { font-size: 3.5rem; }
    .stat-label { text-align: center; }

    .footer-main { flex-direction: column; gap: 40px; }
    .footer-brand { flex: 1; text-align: center; }
    .footer-brand .nav-brand { justify-content: center; }
    .footer-desc { margin: 0 auto 30px; }
    .footer-socials { justify-content: center; }
    .footer-links-area { flex-direction: row; justify-content: center; gap: 40px; }
    .footer-bottom { flex-direction: column; gap: 20px; text-align: center; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 2.25rem; }
    .f-stat h4 { font-size: 2.5rem; }
    .finale-stats { gap: 30px; }
    .footer-links-area { flex-direction: column; text-align: center; }
}

/* Fade-in Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}
