/* ==========================================
   Reset & Base Styles
   ========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: #060509;
    color: #F3F1F6;
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    overflow-x: hidden;
    position: relative;
    line-height: 1.65;
}

/* ==========================================
   Background Glow Orbs
   ========================================== */
.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.22;
    z-index: -1;
    pointer-events: none;
    animation: float 25s infinite alternate ease-in-out;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, #5B2B9E 0%, transparent 70%);
    top: -200px;
    right: -100px;
}

.orb-2 {
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, #831843 0%, transparent 70%);
    top: 35%;
    left: -200px;
    animation-delay: -7s;
}

.orb-3 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #C5A880 0%, transparent 70%);
    bottom: -150px;
    right: 5%;
    animation-delay: -14s;
}

@keyframes float {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(60px, 90px) scale(1.15); }
}

/* ==========================================
   Typography & Elements
   ========================================== */
h1, h2, h3, .logo {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 600;
}

.accent-text {
    background: linear-gradient(135deg, #C5A880 30%, #E5CBA5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.subtitle {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #C5A880;
    margin-bottom: 12px;
    font-weight: 600;
}

.badge {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 30px;
    font-size: 12px;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 24px;
}

/* ==========================================
   Navbar Header
   ========================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: rgba(6, 5, 9, 0.75);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 26px;
    letter-spacing: 4px;
    color: #F3F1F6;
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    color: rgba(243, 241, 246, 0.65);
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 0.5px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #C5A880;
}

/* ==========================================
   Buttons
   ========================================== */
.btn-primary {
    background: linear-gradient(135deg, #C5A880 0%, #B89668 100%);
    color: #060509;
    padding: 15px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 18px rgba(197, 168, 128, 0.25);
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(197, 168, 128, 0.38);
}

.btn-secondary {
    background: transparent;
    color: #F3F1F6;
    padding: 15px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: background-color 0.3s, border-color 0.3s;
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.04);
    border-color: #C5A880;
}

.mini-btn {
    padding: 8px 18px !important;
    font-size: 13px !important;
}

/* ==========================================
   Hero Section
   ========================================== */
.hero-section {
    padding: 180px 24px 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 80px;
    align-items: center;
}

.hero-title {
    font-size: 68px;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1.5px;
}

.hero-description {
    font-size: 18px;
    color: rgba(243, 241, 246, 0.7);
    margin-bottom: 40px;
    max-width: 580px;
}

.cta-group {
    display: flex;
    gap: 16px;
    margin-bottom: 50px;
}

.hero-metrics {
    display: flex;
    align-items: center;
    gap: 32px;
}

.metric-item {
    display: flex;
    flex-direction: column;
}

.metric-number {
    font-size: 28px;
    font-weight: 600;
    color: #F3F1F6;
    line-height: 1.2;
}

.metric-number span {
    font-size: 16px;
    color: #C5A880;
    margin-left: 2px;
}

.metric-label {
    font-size: 12px;
    color: rgba(243, 241, 246, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

.metric-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
}

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

.mockup-container {
    position: relative;
}

.mockup-glow {
    position: absolute;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(91, 43, 158, 0.25) 0%, transparent 60%);
    top: -10%;
    left: -10%;
    z-index: -1;
    pointer-events: none;
}

.mockup-frame {
    width: 320px;
    border-radius: 40px;
    overflow: hidden;
    border: 8px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7);
}

.app-screenshot {
    width: 100%;
    display: block;
}

/* ==========================================
   Mechanics Section (Timeline)
   ========================================== */
.mechanics-section {
    padding: 120px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 45px;
    width: 1px;
    height: 100%;
    background: linear-gradient(to bottom, rgba(197, 168, 128, 0.4) 0%, rgba(91, 43, 158, 0.4) 100%);
}

.timeline-item {
    position: relative;
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-number {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: #110F18;
    border: 1px solid rgba(197, 168, 128, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 600;
    color: #C5A880;
    z-index: 2;
    flex-shrink: 0;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.timeline-content {
    padding-top: 15px;
}

.timeline-content h3 {
    font-size: 26px;
    margin-bottom: 12px;
}

.timeline-content p {
    color: rgba(243, 241, 246, 0.65);
    font-size: 16px;
    max-width: 650px;
}

/* ==========================================
   Features Section
   ========================================== */
.features-section {
    padding: 120px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 16px;
    padding: 48px 36px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s, border-color 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(197, 168, 128, 0.35);
}

.card-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(197, 168, 128, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
}

.feature-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
}

.feature-card p {
    color: rgba(243, 241, 246, 0.6);
    font-size: 15px;
}

/* ==========================================
   Safety & Verification Section
   ========================================== */
.safety-section {
    padding: 120px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.safety-container {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 80px;
    align-items: center;
    background: linear-gradient(135deg, rgba(91, 43, 158, 0.05) 0%, rgba(6, 5, 9, 0) 100%);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 24px;
    padding: 80px 60px;
    backdrop-filter: blur(15px);
}

.safety-visual {
    display: flex;
    justify-content: center;
}

.shield-badge {
    position: relative;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: #110F18;
    border: 2px solid rgba(197, 168, 128, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 54px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.shield-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 1px solid #C5A880;
    opacity: 0.5;
    animation: pulse 3s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(1.4); opacity: 0; }
}

.safety-text h2 {
    font-size: 42px;
    margin-bottom: 24px;
}

.safety-text p {
    color: rgba(243, 241, 246, 0.75);
    font-size: 16px;
    margin-bottom: 32px;
}

.safety-list {
    list-style: none;
}

.safety-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 20px;
    font-size: 15px;
    color: rgba(243, 241, 246, 0.65);
}

.safety-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 2px;
    color: #C5A880;
    font-weight: bold;
}

.safety-list li strong {
    color: #F3F1F6;
    display: block;
    margin-bottom: 4px;
}

/* ==========================================
   Simulator Section
   ========================================== */
.simulator-section {
    padding: 120px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.simulator-container {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 80px;
    align-items: center;
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 24px;
    padding: 60px;
    backdrop-filter: blur(15px);
}

.simulator-info p {
    font-size: 16px;
    color: rgba(243, 241, 246, 0.7);
    margin-bottom: 32px;
}

.unlock-indicator {
    display: inline-block;
    padding: 8px 18px;
    background: rgba(197, 168, 128, 0.1);
    border: 1px solid rgba(197, 168, 128, 0.2);
    border-radius: 30px;
    transition: background 0.3s, border-color 0.3s;
}

.lock-status {
    font-size: 14px;
    color: #C5A880;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.simulator-visual {
    display: flex;
    justify-content: center;
}

.profile-simulation-card {
    width: 320px;
    background: #110F18;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4);
}

.image-wrapper {
    position: relative;
    height: 380px;
    overflow: hidden;
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(25px);
    transition: filter 0.15s ease-out;
}

.profile-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 24px;
    background: linear-gradient(to top, rgba(8, 7, 12, 0.95) 0%, transparent 100%);
}

.profile-overlay h3 {
    font-size: 26px;
    margin-bottom: 4px;
}

.profile-overlay p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

.control-panel {
    padding: 20px 24px 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.control-panel label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.4);
    display: block;
    margin-bottom: 12px;
}

input[type="range"] {
    -webkit-appearance: none;
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.10);
    border-radius: 2px;
    outline: none;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #C5A880;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(197, 168, 128, 0.6);
    transition: transform 0.1s;
}

input[type="range"]::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

/* ==========================================
   FAQ Section
   ========================================== */
.faq-section {
    padding: 120px 24px;
    max-width: 800px;
    margin: 0 auto;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 12px;
    overflow: hidden;
    transition: background 0.3s;
}

.faq-question {
    width: 100%;
    padding: 24px;
    background: transparent;
    border: none;
    color: #F3F1F6;
    font-size: 18px;
    font-weight: 500;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    outline: none;
    transition: color 0.3s;
}

.faq-question:hover {
    color: #C5A880;
}

.faq-icon {
    font-size: 22px;
    color: #C5A880;
    transition: transform 0.3s;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 24px;
}

.faq-answer p {
    color: rgba(243, 241, 246, 0.65);
    font-size: 15px;
    padding-bottom: 24px;
}

.faq-item.active .faq-answer {
    max-height: 200px; /* Expands dynamically */
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

/* ==========================================
   Call To Action (Beta Download)
   ========================================== */
.download-section {
    padding: 120px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.download-card {
    background: radial-gradient(circle at top right, rgba(91, 43, 158, 0.18), transparent 60%),
                rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 24px;
    padding: 90px 40px;
    text-align: center;
    backdrop-filter: blur(15px);
}

.download-card h2 {
    font-size: 52px;
    margin-bottom: 16px;
}

.download-card p {
    font-size: 18px;
    color: rgba(243, 241, 246, 0.6);
    margin-bottom: 44px;
}

.store-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.store-btn {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 14px 32px;
    border-radius: 12px;
    text-decoration: none;
    color: #F3F1F6;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-width: 210px;
    transition: border-color 0.3s, background-color 0.3s;
}

.store-btn:hover {
    border-color: #C5A880;
    background-color: rgba(255, 255, 255, 0.05);
}

/* ==========================================
   Footer
   ========================================== */
footer {
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding: 60px 24px 40px;
    background: #040306;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
}

.footer-brand p {
    font-size: 14px;
    color: rgba(243, 241, 246, 0.5);
    margin-top: 8px;
    letter-spacing: 0.5px;
}

.footer-meta {
    text-align: center;
    font-size: 13px;
    color: rgba(243, 241, 246, 0.4);
}

.company-tag {
    margin-top: 4px;
    font-size: 11px;
    color: rgba(243, 241, 246, 0.3);
}

.footer-links {
    display: flex;
    gap: 20px;
    justify-content: flex-end;
}

.footer-links a {
    color: rgba(243, 241, 246, 0.4);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #C5A880;
}

/* ==========================================
   Responsive Grid & Typography
   ========================================== */
@media (max-width: 968px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
    .hero-title {
        font-size: 52px;
    }
    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }
    .cta-group {
        justify-content: center;
    }
    .hero-metrics {
        justify-content: center;
    }
    .timeline::before {
        left: 25px;
    }
    .timeline-number {
        width: 50px;
        height: 50px;
        font-size: 16px;
    }
    .features-grid {
        grid-template-columns: 1fr;
    }
    .safety-container {
        grid-template-columns: 1fr;
        padding: 50px 30px;
    }
    .simulator-container {
        grid-template-columns: 1fr;
        gap: 60px;
        padding: 40px 24px;
    }
    .section-title.left-align {
        text-align: center;
    }
    .store-buttons {
        flex-direction: column;
        align-items: center;
    }
    .store-btn {
        width: 100%;
        max-width: 280px;
    }
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    .footer-links {
        justify-content: center;
    }
}
