@font-face {
    font-family: 'Geist';
    src: url('https://unpkg.com/@vercel/geist-font@1.0.0/dist/GeistVF.woff2') format('woff2');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-primary: #000000;
    --bg-secondary: #0a0a0a;
    --bg-tertiary: #141414;
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --accent-primary: #ff6b35;
    --accent-secondary: #ff8c42;
    --accent-gradient: linear-gradient(135deg, #ff6b35 0%, #ff8c42 50%, #ffa500 100%);
    --border-color: #1a1a1a;
    --card-bg: #0f0f0f;
    --shadow-glow: rgba(255, 107, 53, 0.3);
}

body {
    font-family: 'Geist', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 2400px;
    margin: 0 auto;
    padding: 0 20px;
    overflow-x: hidden;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px);
    max-width: 1400px;
    z-index: 1000;
    background: rgba(25, 25, 25, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: none;
    border-radius: 999px;
    padding: 0.6rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-image {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    color: var(--text-primary);
    font-family: 'Geist', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    text-transform: uppercase;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--text-primary);
}

/* Menu Dropdown */
.menu-dropdown {
    position: relative;
    z-index: 10001;
}

.menu-button {
    background: transparent;
    border: none;
    color: var(--text-primary);
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: background 0.3s ease;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    position: relative;
    z-index: 1002;
}

.menu-button:hover {
    background: rgba(255, 255, 255, 0.1);
}

.menu-button svg {
    width: 24px;
    height: 24px;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 15px);
    right: 0;
    background: rgba(25, 25, 25, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 0.75rem 0;
    min-width: 200px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                visibility 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 10000;
    pointer-events: none;
    display: block;
}

.dropdown-menu.active {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
    pointer-events: auto !important;
    display: block !important;
}

.dropdown-menu a {
    display: block;
    padding: 0.875rem 1.5rem;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease, background 0.3s ease;
    font-weight: 500;
}

.dropdown-menu a:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
}

.dropdown-menu .download-link {
    background: linear-gradient(135deg, #CC4354 0%, #A81E2F 100%);
    color: var(--text-primary);
    font-weight: 700;
    margin: 0.5rem 0.75rem 0 0.75rem;
    border-radius: 12px;
    text-align: center;
}

.dropdown-menu .download-link:hover {
    background: linear-gradient(135deg, #A81E2F 0%, #CC4354 100%);
    color: var(--text-primary);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-content {
    width: 100%;
    text-align: center;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 100vh;
    gap: 0;
    padding-top: 40px;
}

.hero-title {
    font-family: 'Jomolhari', serif;
    font-size: 8rem;
    font-weight: 400;
    line-height: 1.2;
    color: #d0d0d0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.25rem;
    margin-bottom: 0;
    margin-top: 0;
    font-style: italic;
}

#typing-text,
#count-number,
#days-text {
    display: inline-block;
}

#typing-text,
#days-text {
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.2), 0 0 20px rgba(255, 255, 255, 0.1);
}

#count-number {
    color: #ffffff;
    font-weight: 700;
    opacity: 0;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5), 0 0 40px rgba(255, 255, 255, 0.3);
}

.hero-tagline {
    font-family: 'Geist', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-secondary);
    text-align: center;
    transform: translateY(100vh);
    opacity: 0;
    transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1), opacity 1.2s ease;
    margin-top: -2rem;
    margin-bottom: 4rem;
    line-height: 1;
}

.hero-tagline.slide-up {
    transform: translateY(0);
    opacity: 1;
}

.app-store-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: -1.5rem;
    margin-bottom: 0;
}

.app-store-image {
    max-width: 180px;
    height: auto;
    object-fit: contain;
    transform: translateY(100vh);
    opacity: 0;
    transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1), opacity 1.2s ease;
}

.app-store-image.slide-up {
    transform: translateY(0);
    opacity: 1;
}

.download-ignite-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #CC4354 0%, #A81E2F 100%);
    color: var(--text-primary);
    font-size: 1.25rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 24px;
    transform: translateY(100vh);
    opacity: 0;
    box-shadow: 0 10px 30px rgba(204, 67, 84, 0.3);
    border: none;
    cursor: pointer;
    font-family: 'Geist', sans-serif;
    transition: transform 1.0s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
                opacity 1.0s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                box-shadow 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    isolation: isolate;
    will-change: transform, opacity;
    backface-visibility: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.download-ignite-button::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 24px;
    background: linear-gradient(180deg, #FF94A1 0%, #A92031 100%);
    z-index: -1;
    pointer-events: none;
    transition: opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.download-ignite-button::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    background: linear-gradient(135deg, #CC4354 0%, #A81E2F 100%);
    z-index: -1;
    pointer-events: none;
}

.download-ignite-button.slide-up {
    transform: translateY(0);
    opacity: 1;
}

.download-ignite-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(204, 67, 84, 0.4);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
                box-shadow 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.download-ignite-button:active {
    transform: translateY(-1px) scale(0.98);
    transition: transform 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-image-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
}

.hero-image {
    max-width: 100%;
    height: auto;
    max-height: 60vh;
    object-fit: contain;
    transform: translateY(100vh);
    opacity: 0;
    transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1), opacity 1.2s ease;
}

.hero-image.slide-up {
    transform: translateY(0);
    opacity: 1;
}

.hero-title.move-up {
    transform: translateY(-100px) scale(0.85);
    transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.gradient-text {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--accent-gradient);
    color: var(--text-primary);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px var(--shadow-glow);
}

.btn-secondary {
    background: var(--bg-tertiary);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background: var(--card-bg);
    border-color: var(--accent-primary);
}

.hero-stats {
    display: flex;
    gap: 3rem;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Phone Mockup */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-mockup {
    width: 320px;
    height: 640px;
    background: var(--bg-tertiary);
    border-radius: 40px;
    padding: 12px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5),
                0 0 0 1px var(--border-color),
                inset 0 0 0 1px rgba(255, 255, 255, 0.05);
    position: relative;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: var(--bg-primary);
    border-radius: 32px;
    overflow: hidden;
    position: relative;
}

.app-interface {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.app-header {
    padding: 1rem;
    background: var(--bg-secondary);
}

.app-status-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.status-icons {
    display: flex;
    gap: 0.25rem;
}

.app-content {
    flex: 1;
    padding: 1.5rem;
    overflow-y: auto;
}

.challenge-card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 1.5rem;
    border: 1px solid var(--border-color);
}

.challenge-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.day-badge {
    background: var(--accent-gradient);
    color: var(--text-primary);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.xp-badge {
    background: var(--bg-tertiary);
    color: var(--accent-primary);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid var(--border-color);
}

.progress-ring {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
}

.progress-svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.progress-bg {
    fill: none;
    stroke: var(--bg-tertiary);
    stroke-width: 8;
}

.progress-bar {
    fill: none;
    stroke: url(#gradient);
    stroke-width: 8;
    stroke-linecap: round;
    stroke-dasharray: 282.74;
    transition: stroke-dashoffset 0.5s ease;
}

.progress-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tasks-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.task-item {
    padding: 0.75rem;
    background: var(--bg-secondary);
    border-radius: 10px;
    font-size: 0.9rem;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.task-item.completed {
    background: rgba(255, 107, 53, 0.1);
    border-color: var(--accent-primary);
    color: var(--accent-primary);
}

/* Hero Background */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 1;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: float 20s ease-in-out infinite;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--accent-primary) 0%, transparent 70%);
    top: -200px;
    right: -200px;
    animation-delay: 0s;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #ff8c42 0%, transparent 70%);
    bottom: -150px;
    left: -150px;
    animation-delay: 5s;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #ffa500 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

/* Problem Section */
.problem-section {
    padding: 20px 0 100px 0;
    background: var(--bg-primary);
    position: relative;
    overflow-x: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    font-style: italic;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
}

.problem-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    max-width: 2400px;
    margin: 0 auto;
    width: 100%;
}

.problem-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 2400px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.problem-image-wrapper::before {
    content: '';
    position: absolute;
    inset: -40px;
    background: radial-gradient(circle, rgba(255, 140, 0, 0.5) 0%, rgba(255, 100, 0, 0.4) 30%, rgba(184, 78, 0, 0.3) 50%, transparent 70%);
    filter: blur(50px);
    z-index: -1;
    border-radius: 50%;
}

.problem-image-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(204, 67, 84, 0.6) 0%, rgba(169, 32, 49, 0.4) 30%, transparent 60%);
    filter: blur(40px);
    z-index: -2;
    border-radius: 50%;
}

.problem-image {
    width: 100%;
    max-width: 2400px;
    height: auto;
    object-fit: contain;
    border-radius: 20px;
    position: relative;
    z-index: 1;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.problem-image.visible {
    opacity: 1;
    transform: translateY(0);
    animation: float 3s ease-in-out infinite;
}

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

.problem-quote {
    text-align: center;
    max-width: 700px;
}

.quote-text {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.4;
    margin: 0 0 1.5rem 0;
    font-style: italic;
    quotes: '"' '"';
}

.quote-text::before {
    content: '"';
}

.quote-text::after {
    content: '"';
}

.quote-citation {
    display: block;
    font-size: 1rem;
    color: var(--text-secondary);
    font-style: normal;
    font-weight: 400;
    margin-top: 1rem;
}

.citation-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    margin-left: 0.25rem;
    transition: color 0.3s ease;
    display: inline-block;
}

.citation-link:hover {
    color: var(--accent-primary);
}

/* How It Works Section */
.how-it-works {
    padding: 100px 0;
    background: var(--bg-primary);
}

.steps-container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 800px;
    margin: 0 auto;
}

.step {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.step-number {
    font-size: 4rem;
    font-weight: 800;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    min-width: 100px;
}

.step-image {
    min-width: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-image img {
    width: 200px;
    height: auto;
    object-fit: contain;
}

.step-content {
    flex: 1;
}

.step-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    font-style: italic;
}

.step-description {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Reviews Section */
.reviews-section {
    padding: 100px 0;
    background: var(--bg-primary);
}

.reviews-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.review-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.review-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #CC4354 0%, #A81E2F 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.review-info {
    flex: 1;
}

.review-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-style: italic;
}

.review-stars {
    display: flex;
    gap: 0.25rem;
}

.review-stars .star {
    color: #ff6b35;
    font-size: 1.2rem;
}

.review-text {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.review-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #CC4354 0%, #A81E2F 100%);
    color: var(--text-primary);
    padding: 0.5rem 1rem;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 600;
}

.review-badge svg {
    width: 16px;
    height: 16px;
}

/* Download Section */
.download {
    padding: 100px 0;
    background: var(--bg-primary);
    text-align: center;
}

.download-content {
    max-width: 800px;
    margin: 0 auto;
}

.download-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    font-style: italic;
}

.download-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
}

.download-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 1rem 2rem;
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.3s ease;
    min-width: 200px;
}

.download-btn:hover {
    transform: translateY(-3px);
    border-color: var(--accent-primary);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.download-btn svg {
    width: 32px;
    height: 32px;
}

.download-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-align: left;
}

.download-platform {
    font-size: 1.25rem;
    font-weight: 600;
    text-align: left;
}

/* Footer */
.footer {
    background: var(--bg-primary);
    border-top: 1px solid var(--border-color);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand {
    max-width: 300px;
}

.footer-tagline {
    color: var(--text-secondary);
    margin-top: 1rem;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-style: italic;
}

.footer-column a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--text-primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 968px) {
    .container {
        padding: 0 40px;
    }

    .hero-content {
        text-align: center;
    }

    .hero-title {
        font-size: 5rem;
    }

    .hero-stats {
        justify-content: center;
    }

    .problem-content {
        gap: 2rem;
    }
    
    .quote-text {
        font-size: 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .container {
        padding: 0 20px;
    }

    .navbar {
        width: calc(100% - 20px);
        top: 10px;
        border-radius: 999px;
    }

    .nav-links {
        gap: 1rem;
    }

    .nav-links a:not(.cta-button) {
        display: none;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-title.move-up {
        transform: translateY(-50px) scale(0.85);
    }

    .hero-image {
        max-height: 50vh;
    }

    .download-ignite-button {
        padding: 0.875rem 2rem;
        font-size: 1.1rem;
    }

    .hero-tagline {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .section-title {
        font-size: 2rem;
    }

    .download-title {
        font-size: 2rem;
    }

    .download-buttons {
        flex-direction: column;
        align-items: center;
    }

    .download-btn {
        width: 100%;
        max-width: 300px;
    }

    .step {
        flex-direction: column;
    }

    .step-number {
        min-width: auto;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

