/* Import Google Font */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

/* --- Custom Variables & Theme --- */
:root {
    --app-bg: #1A1625;
    --app-surface: #2A2635;
    --app-primary: #7B61FF;
    --app-text-primary: #FFFFFF;
    --app-text-secondary: #B8B5C0;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--app-bg);
    color: var(--app-text-secondary);
}

/* --- Bootstrap Overrides --- */
.btn-primary {
    background-color: var(--app-primary);
    border-color: var(--app-primary);
}
.btn-primary:hover {
    background-color: #6a50e0;
    border-color: #6a50e0;
}
.btn-outline-primary {
    color: var(--app-primary);
    border-color: var(--app-primary);
}
.btn-outline-primary:hover {
    color: var(--app-text-primary);
    background-color: var(--app-primary);
    border-color: var(--app-primary);
}
.text-primary {
    color: var(--app-primary) !important;
}

/* --- General Components --- */
h1, h2, h3, h4, h5, h6 {
    color: var(--app-text-primary);
}

a {
    color: var(--app-primary);
}

a:hover {
    color: #9c88ff;
}

/* --- Header & Hero Section --- */
.hero-section {
    padding: 10rem 0;
    background: linear-gradient(rgba(26, 22, 37, 0.8), rgba(26, 22, 37, 1)), url('https://images.unsplash.com/photo-1511379938547-c1f69419868d?auto=format&fit=crop&w=1740&q=80') center center/cover no-repeat;
}

.page-header {
    background-color: var(--app-surface);
}

/* --- Features Section --- */
.features-section {
    background-color: var(--app-bg);
}

.feature-card {
    background-color: var(--app-surface);
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--app-primary);
}

/* --- How it Works Section (Timeline) --- */
.how-it-works-section {
    background-color: var(--app-surface);
}

.timeline {
    position: relative;
    padding-left: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    bottom: 10px;
    width: 2px;
    background-color: rgba(123, 97, 255, 0.2);
}

.timeline-item {
    position: relative;
    margin-bottom: 2.5rem;
}

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

.timeline-icon {
    position: absolute;
    left: -2rem;
    top: 0;
    transform: translateX(-50%);
    width: 2.5rem;
    height: 2.5rem;
    background-color: var(--app-primary);
    color: var(--app-text-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    border: 3px solid var(--app-surface);
}

.timeline-content {
    padding-left: 2rem;
}

/* --- Privacy CTA Section --- */
.privacy-cta-section {
    background-color: var(--app-bg);
}

/* --- Footer --- */
.footer-section {
    background-color: var(--app-surface);
    color: var(--app-text-secondary);
}

.footer-links a {
    color: var(--app-text-secondary);
    transition: color 0.2s ease;
    text-decoration: none;
}

.footer-links a:hover {
    color: var(--app-text-primary);
    text-decoration: underline;
}

.footer-links span {
    color: var(--app-text-secondary);
}

