/* Base Styles */
:root {
    --color-bg: #FFFFFF;
    --color-text: #000000;
    --color-white: #FFFFFF;
    --color-gray: #EBEBEB;
    --color-blue: #2563EB;
    --radius-sm: 12px;
    --radius-md: 24px;
    --radius-lg: 40px;
    --radius-full: 9999px;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);
}

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

html {
    scroll-behavior: smooth;
}

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

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

.animate-in {
    animation: fadeInUp 0.8s ease-out forwards;
}

.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }
.animate-delay-4 { animation-delay: 0.4s; }

/* Typography */
h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

h3 {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    font-weight: 600;
    line-height: 1.3;
}

p {
    font-size: 1rem;
    color: rgba(0, 0, 0, 0.7);
}

/* Badge */
.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: var(--color-text);
    color: var(--color-white);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.badge-dark {
    background-color: var(--color-text);
    color: var(--color-white);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    border-radius: var(--radius-full);
    font-weight: 500;
    font-size: 0.9375rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.btn:active {
    transform: translateY(-1px);
}

.btn-primary {
    background-color: var(--color-blue);
    color: var(--color-white);
}

.btn-secondary {
    background-color: var(--color-white);
    color: var(--color-text);
    border: 1px solid var(--color-gray);
}

.btn-dark {
    background-color: var(--color-text);
    color: var(--color-white);
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1rem 2rem;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all 0.3s ease;
}

.nav.scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-sm);
}

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

.nav-logo img {
    height: 32px;
    transition: transform 0.3s ease;
}

.nav-logo:hover img {
    transform: scale(1.05);
}

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

.nav-links a {
    font-size: 0.9375rem;
    font-weight: 500;
    transition: all 0.2s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-text);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    padding: 0.75rem 1.25rem;
    background-color: var(--color-blue);
    color: var(--color-white);
    border-radius: var(--radius-full);
    font-weight: 500;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-sm);
}

/* Hamburger Menu */
.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 101;
}

.nav-hamburger span {
    width: 24px;
    height: 2px;
    background-color: var(--color-text);
    transition: all 0.3s ease;
}

.nav-hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-hamburger.active span:nth-child(2) {
    opacity: 0;
}

.nav-hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.nav-mobile {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--color-bg);
    padding: 1.5rem 2rem;
    flex-direction: column;
    gap: 1rem;
    box-shadow: var(--shadow-md);
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition: all 0.3s ease;
}

.nav-mobile.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.nav-mobile a {
    font-size: 1rem;
    font-weight: 500;
    padding: 0.5rem 0;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    padding: 8rem 2rem 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
}

.hero-subtitle {
    margin: 1.5rem 0 2rem;
    font-size: 1.125rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.4s forwards;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.6s forwards;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.4s forwards;
}

/* Phone Mockup */
.phone-mockup {
    position: relative;
    width: 280px;
    animation: float 6s ease-in-out infinite;
}

.phone-screen {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 88%;
    border-radius: 25px;
    z-index: 1;
    box-shadow: var(--shadow-lg);
}

.phone-frame {
    position: relative;
    z-index: 2;
    width: 100%;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header .badge {
    margin-bottom: 1rem;
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}

.section-header h2 {
    max-width: 800px;
    margin: 0 auto;
    opacity: 0;
    animation: fadeInUp 0.6s ease-out 0.2s forwards;
}

/* Features Section */
.features {
    padding: 6rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.features-carousel {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.features-track {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 1rem 0;
}

.features-track::-webkit-scrollbar {
    display: none;
}

.feature-card {
    flex: 0 0 auto;
    width: 340px;
    background-color: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    scroll-snap-align: center;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-gray);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(145deg, rgba(255, 255, 255, 1) 0%, rgba(248, 250, 252, 1) 100%);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.feature-content h3 {
    margin-bottom: 0.75rem;
}

.feature-phone {
    position: relative;
    width: 200px;
    margin: 0 auto;
}

.feature-phone .phone-screen {
    width: 85%;
}

.feature-phone .phone-mockup {
    animation: none;
}

/* Carousel Buttons */
.carousel-btn {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--color-text);
    color: var(--color-white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.carousel-btn:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-md);
}

.carousel-btn:active {
    transform: scale(0.95);
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--color-text);
    opacity: 0.3;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot:hover {
    opacity: 0.6;
}

.carousel-dot.active {
    opacity: 1;
    transform: scale(1.2);
}

/* Video Section */
.video-section {
    padding: 6rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

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

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: var(--color-text);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

@media (max-width: 768px) {
    .video-grid {
        grid-template-columns: 1fr;
    }
}

/* Pricing Section */
.pricing {
    padding: 6rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.pricing-subtitle {
    font-size: 1.1rem;
    color: var(--color-blue);
    font-weight: 500;
    margin-top: 1rem;
}

.pricing-note {
    font-size: 0.9rem;
    color: #666;
    margin-top: 0.5rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.pricing-card {
    background: var(--color-white);
    border: 1px solid var(--color-gray);
    border-radius: var(--radius-md);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.pricing-card.popular {
    border: 2px solid var(--color-blue);
    transform: scale(1.02);
}

.pricing-card.popular:hover {
    transform: scale(1.02) translateY(-4px);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-blue);
    color: white;
    padding: 0.25rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.pricing-price {
    margin-bottom: 0.5rem;
}

.price-main {
    font-size: 2.5rem;
    font-weight: 700;
}

.price-period {
    font-size: 1rem;
    color: #666;
}

.pricing-promo {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.4;
}

.pricing-promo strong {
    color: var(--color-blue);
}

.pricing-after {
    font-size: 0.8rem;
    color: #999;
    margin-top: 0.25rem;
    margin-bottom: 1.5rem;
}

.pricing-features {
    list-style: none;
    flex: 1;
    margin-bottom: 1.5rem;
}

.pricing-features li {
    padding: 0.5rem 0;
    font-size: 0.9rem;
    border-bottom: 1px solid var(--color-gray);
    position: relative;
    padding-left: 1.5rem;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--color-blue);
    font-weight: 600;
}

.pricing-card .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
}

@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.popular {
        transform: none;
    }
    
    .pricing-card.popular:hover {
        transform: translateY(-4px);
    }
}

/* News Section */
.news {
    padding: 6rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
}

.news-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/5;
    display: block;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.news-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.news-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.news-card:hover img {
    transform: scale(1.08);
}

.news-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(180deg, rgba(0,0,0,0.8) 0%, transparent 100%);
    color: var(--color-white);
}

.news-date {
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    opacity: 0.8;
    margin-bottom: 0.5rem;
    display: block;
}

.news-overlay h3 {
    color: var(--color-white);
}

/* Mission & Free Access Sections */
.mission,
.free-access {
    padding: 6rem 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

/* Download Section */
.download {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.download-card {
    background: linear-gradient(145deg, #EFF6FF 0%, #DBEAFE 100%);
    border: 1px solid #BFDBFE;
    border-radius: var(--radius-lg);
    padding: 3rem;
    display: flex;
    align-items: center;
    gap: 3rem;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.download-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.6) 0%, transparent 70%);
    opacity: 0.5;
    pointer-events: none;
}

.download-content {
    flex: 1;
    position: relative;
    z-index: 1;
}

.download-content .badge {
    margin-bottom: 1.5rem;
}

.download-content h2 {
    margin-bottom: 2rem;
}

.download-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.download-phone {
    flex: 0 0 auto;
    position: relative;
    z-index: 1;
}

.download-phone .phone-mockup {
    width: 220px;
}

/* Footer */
.footer {
    padding: 4rem 2rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.footer-brand h2 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

.taaft-badge {
    display: inline-block;
    transition: transform 0.3s ease;
}

.taaft-badge:hover {
    transform: scale(1.05);
}

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

.footer-nav a {
    font-size: 0.9375rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.footer-nav a:hover {
    opacity: 0.7;
    transform: translateX(4px);
}

.footer-social {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--color-white);
    border: 1px solid var(--color-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
    background-color: var(--color-text);
    color: var(--color-white);
    border-color: var(--color-text);
}

.footer-social a:hover svg {
    fill: var(--color-white);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 2rem;
}

.footer-logo img {
    height: 40px;
    transition: transform 0.3s ease;
}

.footer-logo:hover img {
    transform: scale(1.05);
}

.footer-legal {
    display: flex;
    gap: 2rem;
    font-size: 0.875rem;
}

.footer-legal a {
    transition: opacity 0.2s ease;
}

.footer-legal a:hover {
    opacity: 0.7;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .nav-links {
        display: none;
    }
    
    .nav-cta {
        display: none;
    }
    
    .nav-hamburger {
        display: flex;
    }
    
    .nav-mobile {
        display: flex;
    }
    
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 6rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }

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

    .footer-top {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-nav {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .footer-social {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .compare-grid {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .download-card {
        flex-direction: column;
        text-align: center;
    }
    
    .download-buttons {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .footer-legal {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
    }
    
    .phone-mockup {
        width: 240px;
    }
}

@media (max-width: 480px) {
    .hero-stats {
        gap: 1.5rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .compare-card {
        padding: 1.5rem;
    }

    .feature-card {
        width: 300px;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .carousel-btn {
        display: none;
    }
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 2.5rem;
    margin: 2rem 0;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.5s forwards;
}

.hero-stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-blue);
    line-height: 1;
}

.stat-label {
    font-size: 0.8125rem;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 0.25rem;
}

/* Comparison Section */
.compare {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.compare-subtitle {
    font-size: 1.1rem;
    color: rgba(0, 0, 0, 0.6);
    max-width: 600px;
    margin: 1rem auto 0;
}

.compare-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.compare-card {
    border-radius: var(--radius-md);
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
}

.compare-them {
    background: #FAFAFA;
    border: 1px solid var(--color-gray);
}

.compare-us {
    background: linear-gradient(145deg, #EFF6FF 0%, #DBEAFE 100%);
    border: 2px solid var(--color-blue);
    box-shadow: var(--shadow-lg);
}

.compare-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.compare-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 700;
}

.compare-icon-x {
    background: #FEE2E2;
    color: #DC2626;
}

.compare-icon-check {
    background: #DBEAFE;
    color: var(--color-blue);
}

.compare-logo {
    border-radius: 8px;
    flex-shrink: 0;
}

.compare-list {
    list-style: none;
    flex: 1;
}

.compare-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem 0;
    font-size: 0.9375rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.compare-list li:last-child {
    border-bottom: none;
}

.compare-x {
    color: #DC2626;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
}

.compare-check {
    color: var(--color-blue);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
}

.compare-price {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    text-align: center;
}

.compare-price-label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(0, 0, 0, 0.5);
    margin-bottom: 0.25rem;
}

.compare-price-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text);
}

.compare-price-highlight {
    color: var(--color-blue);
}

.compare-price-note {
    display: block;
    font-size: 0.8125rem;
    color: rgba(0, 0, 0, 0.5);
    margin-top: 0.25rem;
}

.compare-bottom {
    text-align: center;
    margin-top: 3rem;
}

.compare-powered {
    font-size: 1rem;
    color: rgba(0, 0, 0, 0.7);
    margin-bottom: 1.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.price-original {
    font-size: 1.1rem;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.4);
    text-decoration: line-through;
    margin-right: 0.5rem;
}

/* Mission Body */
.mission-body {
    font-size: 1.1rem;
    color: rgba(0, 0, 0, 0.6);
    max-width: 700px;
    margin: 1rem auto 0;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .phone-mockup {
        animation: none;
    }
}
