/* Root Variables */
:root {
    --primary-color: #DC2626;      /* Red */
    --primary-hover: #B91C1C;      /* Darker red */
    --primary-light: #EF4444;      /* Light red */
    --accent-color: #F87171;       /* Light red accent */
    
    --text-primary: #F3F4F6;       /* Light gray text */
    --text-secondary: #D1D5DB;     /* Medium gray text */
    --text-tertiary: #9CA3AF;      /* Dark gray text */
    
    --bg-primary: #0A0A0A;         /* Near black background */
    --bg-secondary: #111111;       /* Slightly lighter black */
    --bg-tertiary: #1A1A1A;        /* Card backgrounds */
    --bg-hover: #262626;           /* Hover state */
    
    --border-color: #374151;       /* Gray border */
    --shadow-color: rgba(220, 38, 38, 0.1);
    
    --max-width: 1200px;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

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

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 1px solid var(--border-color);
}

.navbar.scrolled {
    background-color: rgba(10, 10, 10, 0.98);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    gap: 0.5rem;
}

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

.logo-text {
    margin-right: 0.25rem;
}

.logo-dot {
    color: var(--primary-color);
    font-size: 2rem;
    line-height: 1;
}

.logo:hover .logo-text {
    color: var(--primary-color);
}

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

.nav-links a {
    color: var(--text-secondary);
    font-weight: 500;
    position: relative;
}

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

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

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

.cta-button {
    background-color: var(--primary-color);
    color: white !important;
    padding: 0.5rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
}

.cta-button:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
}

.cta-button::after {
    display: none;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-primary);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, var(--primary-color) 0%, transparent 70%);
    opacity: 0.05;
    animation: pulse 20s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
    display: inline-block;
    vertical-align: middle;
}

.highlight {
    color: var(--primary-color);
}

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

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

.btn {
    padding: 0.875rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    display: inline-block;
}

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

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px var(--shadow-color);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-primary);
    border: 2px solid var(--border-color);
}

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

.app-badges {
    display: flex;
    gap: 1rem;
}

.app-badge {
    height: 50px;
    opacity: 0.8;
    transition: var(--transition);
}

.app-badge:hover {
    opacity: 1;
    transform: translateY(-2px);
}

/* Hero Visual */
.hero-visual {
    position: relative;
}

.phone-mockup {
    position: relative;
    z-index: 2;
}

.mockup-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    margin: 0 auto;
    display: block;
    background-color: transparent;
    background: none !important;
    /*filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));*/
}

.floating-alerts {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.alert-card {
    position: absolute;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    padding: 0.75rem 1.25rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    animation: float 6s ease-in-out infinite;
}

.alert-1 {
    top: 10%;
    left: -20%;
    animation-delay: 0s;
}

.alert-2 {
    top: 40%;
    right: -15%;
    animation-delay: 2s;
}

.alert-3 {
    bottom: 20%;
    left: -10%;
    animation-delay: 4s;
}

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

.alert-icon {
    font-size: 1.25rem;
}

.alert-text {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
}

/* Features Section */
.features {
    padding: 80px 0;
    background-color: var(--bg-secondary);
}

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

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--text-secondary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.feature-card {
    background-color: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    transition: var(--transition);
    opacity: 0;
    transform: translateY(20px);
}

.feature-card.fade-in {
    opacity: 1;
    transform: translateY(0);
}

.feature-card:hover {
    background-color: var(--bg-hover);
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px var(--shadow-color);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

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

.steps-container {
    display: flex;
    gap: 3rem;
    margin-top: 4rem;
}

.step {
    flex: 1;
    text-align: center;
    position: relative;
}

.step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 35px;
    right: -25%;
    width: 50%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color) 0%, transparent 100%);
}

.step-number {
    width: 70px;
    height: 70px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 1;
}

.step-content h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.step-content p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Safety Stats Section */
.safety-stats {
    padding: 80px 0;
    background-color: var(--bg-secondary);
}

.stats-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.stat-card {
    text-align: center;
    padding: 2rem;
    background-color: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    position: relative;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    display: inline-block;
}

.stat-suffix {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
}

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

/* Download Section */
.download {
    padding: 80px 0;
    background: #8B0000; /*linear-gradient(135deg, var(--primary-hover) 0%, var(--primary-hover) 100%);*/
    text-align: center;
}

.download-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: white;
}

.download-content > p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
}

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

.download-btn img {
    height: 60px;
    transition: var(--transition);
}

.download-btn:hover img {
    transform: scale(1.05);
}

.coming-soon {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
}

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

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

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

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

.footer-column h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 0.75rem;
}

.footer-column a {
    color: var(--text-tertiary);
    font-size: 0.95rem;
}

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

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

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
        justify-content: center;
    }
    
    .hero-logo {
        width: 32px;
        height: 32px;
    }
    
    .hero {
        padding: 80px 0 120px;
        min-height: auto;
    }
    
    .hero-visual {
        margin-top: 1rem;
        margin-bottom: 3rem;
    }
    
    .hero-cta {
        margin-bottom: 1.5rem;
    }
    
    .platform-info {
        margin-bottom: 0;
    }
    
    .phone-mockup {
        max-width: 300px;
        margin: 0 auto;
    }
    
    .mockup-image {
        width: 100%;
        height: auto;
        max-width: 100%;
    }
    
    .floating-alerts {
        display: none;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .steps-container {
        flex-direction: column;
    }
    
    .step:not(:last-child)::after {
        display: none;
    }
    
    .download-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
}

/* Beta Styles */
.beta-info {
    margin-top: 2rem;
    padding: 1rem;
    background-color: rgba(220, 38, 38, 0.1);
    border: 1px solid var(--primary-color);
    border-radius: 8px;
}

.beta-text {
    font-size: 1rem;
    color: var(--text-secondary);
    text-align: center;
}

.email-link {
    color: var(--primary-color);
    text-decoration: underline;
    transition: var(--transition);
}

.email-link:hover {
    color: var(--primary-light);
}

.beta-cta {
    text-align: center;
    padding: 3rem;
    background-color: var(--bg-tertiary);
    border-radius: 12px;
    margin: 2rem 0;
}

.beta-cta h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.beta-cta p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
}

.email-display {
    margin-top: 1rem;
    font-size: 1rem;
    color: var(--text-tertiary);
    font-family: monospace;
}

/* Download Badges */
.download-badges {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.app-store-badge {
    display: inline-block;
    transition: var(--transition);
}

.app-store-badge:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

.app-store-badge img {
    height: 60px;
    width: auto;
}

.coming-soon-badge {
    display: inline-flex;
    align-items: center;
}

/* Platform Badges */
.platform-badges {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin: 1.5rem 0;
}

.platform-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1.5rem;
    border-radius: 24px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
}

.ios-badge {
    background-color: #333;
    color: #fff;
    border: 2px solid #555;
}

.android-badge {
    background-color: #3DDC84;
    color: #000;
    border: 2px solid #3DDC84;
}

.platform-info {
    font-size: 0.95rem;
    color: var(--text-tertiary);
    margin-top: 0.5rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    /*text-transform: uppercase;*/
}

/* Privacy Policy Styles */
.privacy-policy {
    padding: 120px 0 80px;
    min-height: 100vh;
    background-color: var(--bg-primary);
}

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

.privacy-header h1 {
    font-size: 3rem;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.zero-data-badge {
    background-color: rgba(34, 197, 94, 0.1);
    border: 2px solid #22c55e;
    border-radius: 12px;
    padding: 1.5rem 3rem;
    display: inline-block;
    margin-bottom: 1rem;
}

.zero-data-badge h2 {
    color: #22c55e;
    font-size: 1.75rem;
    margin: 0;
}

.last-updated {
    color: var(--text-tertiary);
    font-size: 0.95rem;
}

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

.policy-section {
    background-color: var(--bg-tertiary);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.policy-section h2 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.policy-section p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.policy-section ul {
    list-style: none;
    padding-left: 0;
}

.policy-section li {
    color: var(--text-secondary);
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.policy-section li::before {
    content: "•";
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.privacy-list li::before {
    content: "🚫";
    left: -0.25rem;
}

.highlight-text {
    background-color: rgba(220, 38, 38, 0.1);
    padding: 1rem;
    border-left: 4px solid var(--primary-color);
    margin-top: 1rem;
    border-radius: 4px;
    font-weight: 600;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}