/* Gegenrede Landing Page & Claim Pages */

:root {
    --brand: #0f5c52;
    --brand-light: #e8f5f3;
    --brand-dark: #2dd4b8;
    --text: #1d1d1f;
    --text-secondary: #555;
    --bg: #ffffff;
    --surface: #f9fafb;
    --border: rgba(0, 0, 0, 0.08);
    --radius: 16px;
    --max-width: 720px;
}

@media (prefers-color-scheme: dark) {
    :root {
        --brand: #2dd4b8;
        --brand-light: rgba(45, 212, 184, 0.1);
        --text: #f5f5f7;
        --text-secondary: #a1a1a6;
        --bg: #1c1c1e;
        --surface: #2c2c2e;
        --border: rgba(255, 255, 255, 0.1);
    }
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: var(--text);
    background-color: var(--bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Layout */

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

/* Landing Page Hero */

.hero {
    text-align: center;
    padding: 4rem 0 3rem;
}

.app-icon {
    width: 120px;
    height: 120px;
    border-radius: 27px;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
}

.brand-title {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--brand);
    margin-bottom: 0.5rem;
}

.tagline {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.description {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 560px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

/* Features */

.features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 0 0 3rem;
}

@media (min-width: 540px) {
    .features {
        grid-template-columns: repeat(2, 1fr);
    }
}

.feature-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    text-align: center;
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

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

.feature-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* App Store Badge */

.app-store-section {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    padding-bottom: 3rem;
}

.store-badge {
    display: inline-block;
    transition: opacity 0.2s;
}

.store-badge:hover {
    opacity: 0.85;
}

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

/* Footer */

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

footer a {
    color: var(--brand);
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

footer .social-links {
    display: flex;
    gap: 1.25rem;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
}

footer .social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    color: var(--brand);
    transition: opacity 0.2s;
}

footer .social-link:hover {
    opacity: 0.7;
    text-decoration: none;
}

footer .social-icon {
    width: 22px;
    height: 22px;
    display: block;
    fill: currentColor;
}

/* Claim Page */

.claim-page {
    padding: 2.5rem 0 3rem;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    color: var(--brand);
    text-decoration: none;
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

.back-link:hover {
    text-decoration: underline;
}

.claim-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
}

.claim-text {
    font-size: 1.35rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 2rem;
    padding-left: 1rem;
    border-left: 3px solid var(--brand);
}

.response-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.response-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--brand);
    margin-bottom: 0.75rem;
}

.response-oneliner {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    line-height: 1.5;
}

.response-explanation {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.fact-card {
    background: var(--brand-light);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.fact-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--brand);
    margin-bottom: 0.75rem;
}

.fact-statement {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 0.75rem;
}

.fact-source {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.fact-source a {
    color: var(--brand);
    text-decoration: none;
}

.fact-source a:hover {
    text-decoration: underline;
}

/* Claim Page CTAs */

.cta-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
    margin-bottom: 2rem;
}

.cta-primary {
    display: inline-block;
    background: var(--brand);
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    padding: 0.85rem 2rem;
    border-radius: 12px;
    transition: opacity 0.2s;
    width: 100%;
    max-width: 320px;
    text-align: center;
}

.cta-primary:hover {
    opacity: 0.85;
}

.cta-secondary {
    display: inline-block;
    color: var(--brand);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
}

.cta-secondary:hover {
    text-decoration: underline;
}

.cta-secondary-group {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-sep {
    color: var(--text);
    opacity: 0.45;
}

/* App nudge banner */

.app-nudge {
    text-align: center;
    padding: 1rem 1.5rem;
    margin-bottom: 2rem;
    font-size: 0.95rem;
    color: var(--brand);
    background: var(--brand-light);
    border-radius: var(--radius);
    line-height: 1.5;
}

/* Topic badge */

.topic-badge {
    display: inline-block;
    background: var(--brand-light);
    color: var(--brand);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.3rem 0.75rem;
    border-radius: 20px;
    margin-bottom: 1rem;
}

/* Topics overview (homepage internal-link block) */

.topics-overview {
    padding: 2rem 0 3rem;
    border-top: 1px solid var(--border);
}

.topics-overview-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text);
}

.topics-overview-intro {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.topic-section {
    margin-bottom: 1.75rem;
}

.topic-section-title {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--brand);
    margin-bottom: 0.5rem;
}

.topic-claim-list {
    list-style: none;
    padding-left: 0;
}

.topic-claim-list li {
    padding: 0.4rem 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.95rem;
}

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

.topic-claim-list a {
    color: var(--text);
    text-decoration: none;
    line-height: 1.4;
}

.topic-claim-list a:hover {
    color: var(--brand);
    text-decoration: underline;
}

/* Related claims (claim-page footer) */

.related-claims {
    margin-top: 1rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.related-claims-title {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--brand);
    margin-bottom: 0.75rem;
}

.related-claims-list {
    list-style: none;
    padding-left: 0;
}

.related-claims-list li {
    padding: 0.4rem 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.95rem;
}

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

.related-claims-list a {
    color: var(--text);
    text-decoration: none;
    line-height: 1.4;
}

.related-claims-list a:hover {
    color: var(--brand);
    text-decoration: underline;
}
