/* CSS Variables - Warm, Friendly, Soft Red/Coral */
:root {
    /* Warme, sanfte Hintergrundfarben */
    --bg-primary: #FFFAF9;
    --bg-secondary: #FFF5F3;
    --bg-accent: #FFEFEC;
    --bg-warm: #FFFCFB;
    
    /* Freundliche Textfarben */
    --text-primary: #3D2C2A;
    --text-secondary: #5E4A47;
    --text-muted: #8A7875;
    
    /* Sanfte rote/koralle Akzentfarben */
    --accent: #D4736C;          /* Sanftes Koralle/Terrakotta */
    --accent-hover: #C4625B;
    --accent-light: #FFEFEC;
    --accent-dark: #B85A53;
    
    --secondary: #E8A5A0;       /* Helleres Rosa */
    --secondary-light: #FFF0EE;
    
    --tertiary: #DEB8A0;        /* Warmes Pfirsich/Sand */
    --tertiary-light: #FFF6F0;
    
    --gold: #D4A574;            /* Goldener Faden - Ariadne's Thread */
    --gold-light: #FFF8F0;
    
    /* UI */
    --border: #EBD9D6;
    --border-strong: #DCC8C4;
    --white: #FFFFFF;
    --shadow: 0 2px 8px rgba(61, 44, 42, 0.05);
    --shadow-md: 0 4px 16px rgba(61, 44, 42, 0.07);
    --shadow-lg: 0 8px 32px rgba(61, 44, 42, 0.09);
    
    /* Rounded corners - sehr rund = freundlich/kindlich */
    --radius-sm: 14px;
    --radius-md: 22px;
    --radius-lg: 32px;
    --radius-xl: 48px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    font-size: 18px;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 28px;
}

h1, h2, h3 {
    line-height: 1.3;
    font-weight: 700;
}

h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    text-align: center;
    color: var(--text-primary);
}

h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 28px;
    background: linear-gradient(180deg, var(--bg-warm) 0%, var(--accent-light) 100%);
    position: relative;
    overflow: hidden;
}

/* Decorative background shapes - kindlich/spielerisch */
.hero::before {
    content: '';
    position: absolute;
    top: 8%;
    left: 3%;
    width: 320px;
    height: 320px;
    background: linear-gradient(135deg, var(--tertiary) 0%, var(--gold) 100%);
    border-radius: 62% 38% 48% 52% / 45% 55% 45% 55%;
    opacity: 0.25;
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 12%;
    right: 5%;
    width: 280px;
    height: 280px;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
    border-radius: 45% 55% 52% 48% / 52% 48% 52% 48%;
    opacity: 0.2;
    z-index: 0;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.logo {
    font-size: 4.5rem;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 0.25rem;
    letter-spacing: -0.03em;
}

.tagline {
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
}

.hero-text {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 540px;
    margin: 0 auto 1.25rem;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
    color: var(--white);
    padding: 18px 36px;
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    transition: all 0.25s ease;
    margin-top: 1.5rem;
    box-shadow: 0 4px 14px rgba(212, 115, 108, 0.35);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(212, 115, 108, 0.45);
}

.cta-subtext {
    margin-top: 1.25rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Problem Section */
.problem {
    padding: 100px 28px;
    background-color: var(--white);
}

.pain-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.pain-point {
    padding: 2rem;
    background: linear-gradient(145deg, var(--bg-warm) 0%, var(--bg-primary) 100%);
    border-radius: var(--radius-lg);
    border: 2px solid var(--border);
    transition: all 0.25s ease;
}

.pain-point:hover {
    border-color: var(--secondary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.pain-point .emoji {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.pain-point h3 {
    color: var(--text-primary);
}

.pain-point p {
    color: var(--text-secondary);
    font-size: 1rem;
}

/* Solution Section */
.solution {
    padding: 100px 28px;
    background-color: var(--bg-secondary);
    position: relative;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.step {
    position: relative;
    padding: 2rem 1.75rem;
    background-color: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    border: 2px solid transparent;
    transition: all 0.25s ease;
}

.step:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-md);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--gold) 0%, #C99560 100%);
    color: var(--white);
    font-weight: 700;
    font-size: 1.25rem;
    border-radius: 50%;
    margin-bottom: 1.25rem;
    box-shadow: 0 4px 12px rgba(212, 165, 116, 0.35);
}

.step p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Emotional Section */
.emotional {
    padding: 100px 28px;
    background: linear-gradient(145deg, var(--gold-light) 0%, var(--tertiary-light) 50%, var(--accent-light) 100%);
    text-align: center;
    position: relative;
}

/* Decorative blob */
.emotional::before {
    content: '🧵';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 18rem;
    opacity: 0.06;
    z-index: 0;
}

.emotional .container {
    position: relative;
    z-index: 1;
}

.emotional h2 {
    color: var(--text-primary);
}

.emotional-text {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 550px;
    margin: 0 auto 1.25rem;
}

.highlight-text {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--accent-dark);
    margin-top: 2rem;
    padding: 1rem 2rem;
    background: var(--white);
    border-radius: var(--radius-xl);
    display: inline-block;
    box-shadow: var(--shadow-md);
}

/* Features Section */
.features {
    padding: 100px 28px;
    background-color: var(--white);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.25rem;
    margin-top: 3rem;
}

.feature {
    padding: 1.75rem;
    background: var(--bg-warm);
    border-radius: var(--radius-md);
    border: 2px solid var(--border);
    transition: all 0.25s ease;
}

.feature:hover {
    border-color: var(--accent);
    background: var(--accent-light);
    transform: translateY(-2px);
}

.feature-emoji {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.75rem;
}

.feature p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Comparison Section */
.comparison {
    padding: 100px 28px;
    background-color: var(--bg-secondary);
}

.comparison-table {
    max-width: 700px;
    margin: 3rem auto 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--border);
}

.comparison-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.comparison-header .comparison-col {
    padding: 1.25rem;
    font-weight: 600;
    text-align: center;
    font-size: 1rem;
}

.comparison-header .other {
    background-color: var(--text-muted);
    color: var(--white);
}

.comparison-header .ariadne {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
    color: var(--white);
}

.comparison-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-bottom: 1px solid var(--border);
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-row .comparison-col {
    padding: 1rem 1.25rem;
    text-align: center;
    font-size: 0.95rem;
}

.comparison-row .other {
    background-color: #FAF7F6;
    color: var(--text-muted);
}

.comparison-row .ariadne {
    background-color: var(--white);
    color: var(--text-primary);
    font-weight: 500;
}

/* Final CTA Section */
.final-cta {
    padding: 100px 28px;
    background: linear-gradient(180deg, var(--tertiary-light) 0%, var(--bg-warm) 100%);
    text-align: center;
    position: relative;
}

.final-cta h2 {
    color: var(--text-primary);
}

.final-cta-text {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 550px;
    margin: 0 auto 2.5rem;
}

.waitlist-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    max-width: 380px;
    margin: 0 auto;
}

.waitlist-form input[type="email"] {
    width: 100%;
    padding: 18px 22px;
    border: 2px solid var(--border-strong);
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-family: inherit;
    background-color: var(--white);
    transition: all 0.25s ease;
}

.waitlist-form input[type="email"]:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 4px var(--accent-light);
}

.waitlist-form input[type="email"]::placeholder {
    color: var(--text-muted);
}

.waitlist-form .cta-button {
    width: 100%;
    margin-top: 0.5rem;
}

.form-note {
    margin-top: 1.25rem;
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* FAQ Section */
.faq {
    padding: 100px 28px;
    background-color: var(--white);
}

.faq-list {
    max-width: 650px;
    margin: 3rem auto 0;
}

.faq-item {
    padding: 1.75rem;
    margin-bottom: 1rem;
    background: var(--bg-warm);
    border-radius: var(--radius-md);
    border: 2px solid var(--border);
    transition: all 0.25s ease;
}

.faq-item:hover {
    border-color: var(--gold);
}

.faq-item h3 {
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.faq-item p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Footer */
.footer {
    padding: 60px 28px;
    background-color: var(--text-primary);
    color: var(--white);
    text-align: center;
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.footer-tagline {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.footer-tagline strong {
    color: var(--gold);
}

.footer-made {
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--white);
}

/* Responsive */
@media (max-width: 768px) {
    body {
        font-size: 16px;
    }
    
    h2 {
        font-size: 1.85rem;
    }
    
    .logo {
        font-size: 3.25rem;
    }
    
    .tagline {
        font-size: 1.2rem;
    }
    
    .hero {
        min-height: auto;
        padding: 60px 24px 80px;
    }
    
    .hero::before,
    .hero::after {
        width: 150px;
        height: 150px;
    }
    
    .pain-points,
    .steps,
    .feature-grid {
        grid-template-columns: 1fr;
    }
    
    .comparison-row .comparison-col,
    .comparison-header .comparison-col {
        font-size: 0.85rem;
        padding: 0.85rem;
    }
    
    .highlight-text {
        font-size: 1.3rem;
        padding: 0.75rem 1.5rem;
    }
    
    section {
        padding: 70px 24px;
    }
    
    .problem,
    .solution,
    .features,
    .comparison,
    .final-cta,
    .faq {
        padding: 70px 24px;
    }
}

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

.hero .logo,
.hero .tagline,
.hero .hero-text,
.hero .cta-button,
.hero .cta-subtext {
    animation: fadeInUp 0.7s ease-out forwards;
    opacity: 0;
}

.hero .logo {
    animation-delay: 0s;
}

.hero .tagline {
    animation-delay: 0.1s;
}

.hero .hero-text:first-of-type {
    animation-delay: 0.2s;
}

.hero .hero-text:last-of-type {
    animation-delay: 0.3s;
}

.hero .cta-button {
    animation-delay: 0.4s;
}

.hero .cta-subtext {
    animation-delay: 0.5s;
}

/* Subtle hover animations for cards */
.pain-point,
.step,
.feature,
.faq-item {
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Selection color */
::selection {
    background-color: var(--accent-light);
    color: var(--text-primary);
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: var(--border-strong);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--text-muted);
}
