/* --- DESIGN SYSTEM VARIABLEN --- */
:root {
    --bg-main: #0D0D0F;
    --bg-card: #1A1A1F;
    --bg-card-light: #2A2A31;
    --primary-color: #E53962;
	--primary-color-light: #571525;;
    --primary-light: #F2B6B6;
    --text-main: #E6E6E6;
    --text-muted: #9E9E9E;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Ganz oben in deiner CSS-Datei einfügen für sanftes Scrollen */
html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-main);
    color: var(--text-main);
    font-family: ui-rounded, 'SF Pro Rounded', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    -webkit-font-smoothing: antialiased;
    line-height: 1.6;
}

a {
    text-decoration: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

header {
    padding: 40px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    color: var(--primary-color);
    font-size: 28px;
}

.logo-icon img {
	padding-top:10px;
	height: 52px;
	width: 100%;
	object-fit: contain;
}

/* --- SPRACHUMSCHALTER --- */
.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.lang-switcher {
    background-color: var(--bg-card);
    color: var(--text-main);
    border: 1px solid var(--bg-card-light);
    padding: 8px 12px;
    border-radius: 8px;
    font-family: inherit;
    font-size: 14px;
    cursor: pointer;
    outline: none;
}

.lang-switcher:focus {
    border-color: var(--primary-color);
}

/* --- HERO SECTION --- */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 70vh;
    gap: 60px;
}

.hero-content {
    flex: 1;
    max-width: 520px;
}

.badge {
    display: inline-block;
    background-color: rgba(229, 57, 98, 0.15);
    border: 1px solid var(--primary-color);
    color: var(--primary-light);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
}

h1 {
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 24px;
    line-height: 1.2;
}

p.subtitle {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 32px;
}

.btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--text-main);
    padding: 16px 32px;
    border-radius: 30px;
    font-weight: 500;
    font-size: 16px;
    transition: background-color 0.2s ease, transform 0.1s ease;
    cursor: pointer;
    border: none;
}

.btn:hover {
    background-color: #f74570;
    transform: scale(1.02);
}

.subtext {
    display: block;
    margin-top: 10px;
    font-size: 13px;
    color: var(--text-muted);
}

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

.app-mockup {
    width: 320px;
    height: 650px;
    background-color: var(--bg-card);
    border-radius: 40px;
    border: 8px solid var(--bg-card-light);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

/* --- FEATURES SECTION --- */
.features {
    padding: 80px 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.feature-card {
    background-color: var(--bg-card);
    padding: 32px;
    border-radius: 20px;
    transition: background-color 0.2s ease;
	border: 1px solid var(--primary-color-light); /* Eleganter Rahmen in App-Rot */
}

.feature-card:hover {
    background-color: var(--bg-card-light);
}

.feature-icon {
    color: var(--primary-light);
    font-size: 24px;
    margin-bottom: 16px;
}

.feature-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.feature-card p {
    font-size: 14px;
    color: var(--text-muted);
}

@media (max-width: 900px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 40px;
    }
    .hero-content {
        margin: 0 auto;
    }
    .header-actions {
        flex-direction: column;
        gap: 12px;
    }
}

/* --- MISSION SECTION --- */
.mission {
    padding: 0 0 80px 0;
}

.mission-card {
    background-color: var(--bg-card);
    padding: 48px;
    border-radius: 20px;
    border: 1px solid var(--primary-color-light);
    width: 100%; /* Nimmt die exakte Breite der Features-Sektion an */
}

.mission-card h2 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.mission-text {
    color: var(--text-main);
    font-size: 16px;
    line-height: 1.8;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mission-highlight {
    font-weight: 500;
    color: #FFFFFF;
    border-left: 3px solid var(--primary-color); /* Elegante Hervorhebung im App-Rot */
    padding-left: 16px;
    margin: 8px 0;
    background-color: rgba(229, 57, 98, 0.05); /* Sehr dezenter roter Hintergrund */
    padding: 12px 16px;
    border-radius: 0 8px 8px 0;
}

@media (max-width: 900px) {
    .mission-card {
        padding: 32px 20px;
    }
    .mission-card h2 {
        font-size: 26px;
    }
	
}

/* --- CITY UNLOCK SECTION --- */
.city-unlock {
    padding: 80px 0;
}

.unlock-card {
    background-color: var(--bg-card);
    padding: 48px;
    border-radius: 32px;
    border: 1px solid var(--primary-color-light);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.unlock-card h2 {
    font-size: 32px;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 16px;
}

.unlock-card p {
    color: var(--text-muted);
    font-size: 16px;
    margin-bottom: 40px;
}

@media (max-width: 900px) {

		.unlock-card, .feature-card {
  padding: 20px;
	}

	.city-unlock {
    padding: 0 0;
	padding-top: 80px;
}

	.mission {
    padding: 0 0;
	/* padding-bottom: 80px; */
}
}


/* Der Fortschrittsbalken */
.progress-container {
    background-color: var(--bg-main);
    border-radius: 20px;
    height: 24px;
    width: 100%;
    margin: 24px 0 12px 0;
    overflow: hidden;
    position: relative;
    border: 1px solid var(--bg-card-light);
}

.progress-bar {
    background-color: var(--primary-color);
    height: 100%;
    width: 0%; /* Wird per JS animiert/gesetzt */
    border-radius: 20px;
    transition: width 1.5s ease-in-out;
    box-shadow: 0 0 15px rgba(229, 57, 98, 0.4);
}

.progress-stats {
    display: flex;
    justify-content: space-between;
    color: var(--text-main);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 32px;
}

/* Das Formular */
.waitlist-form {
    display: flex;
    gap: 12px;
    max-width: 500px;
    margin: 0 auto;
}

.waitlist-form input {
    flex: 1;
    padding: 16px 24px;
    border-radius: 30px;
    border: 1px solid var(--bg-card-light);
    background-color: var(--bg-main);
    color: var(--text-main);
    font-size: 16px;
    font-family: inherit;
    outline: none;
}

.waitlist-form input:focus {
    border-color: var(--primary-color);
}

@media (max-width: 600px) {
    .waitlist-form {
        flex-direction: column;
    }
}

/* --- MEILENSTEIN-INFO-BOX --- */
.milestones-info {
    background-color: var(--bg-main);
    border: 1px solid var(--bg-card-light);
    border-radius: 16px;
    padding: 20px;
    margin: 32px 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-align: left;
}

.milestone {
    display: flex;
    align-items: center;
    gap: 16px;
}

.milestone-icon {
    font-size: 24px;
    background: rgba(229, 57, 98, 0.1);
    border: 1px solid rgba(229, 57, 98, 0.2);
    padding: 10px;
    border-radius: 12px;
}

.milestone-text {
    display: flex;
    flex-direction: column;
}

.milestone-text strong {
    color: var(--primary-light);
    font-size: 16px;
}

.milestone-text span {
    color: var(--text-muted);
    font-size: 14px;
    margin-top: 2px;
}

@media (min-width: 600px) {
    .milestones-info {
        flex-direction: row;
        justify-content: space-around;
    }
	

}

/* --- FOOTER & DISCLAIMER --- */
.site-footer {
    background-color: var(--bg-card);
    border-top: 1px solid var(--bg-card-light);
    padding: 60px 0 30px 0;
    margin-top: 80px;
    color: var(--text-muted);
    font-size: 14px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* Die positive Best-Effort & "Warum"-Box */
.footer-mission {
    background-color: var(--bg-main);
    border: 1px solid var(--bg-card-light);
    padding: 24px;
    border-radius: 16px;
}

.footer-mission h4 {
    color: var(--text-main);
    font-size: 16px;
    margin-bottom: 8px;
}

.footer-mission p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* Links & Copyright Zeile */
.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    border-top: 1px solid var(--bg-card-light);
    padding-top: 20px;
}

.footer-links {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--primary-color);
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }

}

@media (max-width: 900px) {
.footer-mission {

  padding: 20px;

}
}


.btn-ghost-scroll {
    background: transparent;
    border: 1px solid rgba(230, 57, 70, 0.5); /* Dezent roter Rand */
    color: var(--text-main);
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-ghost-scroll:hover {
    background: rgba(230, 57, 70, 0.1);
    border-color: var(--primary-color);
}