/* ═══════════════════════════════════════════════════════════
   LANDING PAGE — Signal from Noise (1:1 nach Original)
   ═══════════════════════════════════════════════════════════ */

/* ── Section-Layout ─────────────────────────────────────── */

.section {
    position: relative;
    z-index: 2;
    padding: 8rem 2rem 6rem;
}

/* Hero Section – groß und zentriert */
.section--hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.section--alt {
    background: var(--surface);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.section + .section:not(.section--alt) {
    border-top: 1px solid var(--line);
}

.section__tag { margin-bottom: 2.5rem; }

/* ── Hero Grid ──────────────────────────────────────────── */

.hero {
    max-width: 1320px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 5rem;
    align-items: center;
}

.hero__headline {
    font-size: clamp(2.6rem, 6.2vw, 5.2rem);
    font-weight: 600;
    line-height: 0.98;
    letter-spacing: -0.04em;
    margin-bottom: 1.8rem;
    text-wrap: balance;
}

.hero__headline em {
    font-style: italic;
    font-weight: 500;
    color: var(--teal);
    letter-spacing: -0.035em;
}

.hero__headline .muted {
    color: var(--text-muted);
    font-weight: 500;
}

.hero__body {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-soft);
    max-width: 34rem;
    margin-bottom: 2.5rem;
    text-wrap: pretty;
}

/* ── CTA-Row ───────────────────────────────────────────── */

.ld__cta-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

/* ── Process Timeline (3-Schritt) ───────────────────────── */

.process {
    margin-top: 4rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--line);
    max-width: 1320px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

.process__head {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-bottom: 2rem;
    letter-spacing: 0.01em;
}

.process__steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
}

.process__steps::before {
    content: '';
    position: absolute;
    top: 16px;
    left: 10%; right: 10%;
    height: 1px;
    background: linear-gradient(90deg, var(--line), var(--teal), var(--line));
}

.process__step {
    position: relative;
    padding-right: 2rem;
    /* transition: transform 0.2s ease;
}

.process__step:hover {
    transform: translateY(-2px);
}

.process__step:hover .process__step-num {
    border-color: var(--teal);
    box-shadow: 0 0 0 4px var(--teal-soft); */
}

.process__step-num {
    width: 32px; height: 32px;
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-family: var(--font-mono);
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.process__step:nth-child(1) .process__step-num,
.process__step:nth-child(2) .process__step-num {
    border-color: var(--teal);
    color: var(--teal);
}

.process__step:nth-child(3) .process__step-num {
    border-color: var(--teal);
    background: var(--teal);
    color: #fff;
}

[data-theme="dark"] .process__step:nth-child(3) .process__step-num { color: #050505; }

.process__step-title {
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    margin-bottom: 0.3rem;
}

.process__step-body {
    font-size: 0.92rem;
    color: var(--text-soft);
    line-height: 1.55;
}

/* ── Affiliate-Hinweis (subtil) ─────────────────────────── */

.ld__affiliate {
    max-width: 1320px;
    margin: 4rem auto 0;
    padding: 1rem 1.4rem;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 10px;
    font-size: 0.85rem;
    color: var(--text-soft);
    line-height: 1.55;
    display: flex;
    gap: 0.8rem;
    align-items: flex-start;
}

.ld__affiliate strong { color: var(--text); font-weight: 600; }

.ld__affiliate__icon {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--teal);
    background: var(--teal-soft);
    padding: 0.15rem 0.45rem;
    border-radius: 4px;
    flex-shrink: 0;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

/* ── Responsive ─────────────────────────────────────────── */

@media (max-width: 960px) {
    .section { padding: 6rem 1.25rem 4rem; min-height: auto; }
    .section--hero { min-height: auto; padding: 6rem 1.25rem 4rem; }
    .hero { grid-template-columns: 1fr; gap: 3rem; }
    .process__steps { grid-template-columns: 1fr; gap: 2rem; }
    .process__steps::before { display: none; }
}

@media (max-width: 640px) {
    .ld__cta-row { flex-direction: column; align-items: stretch; }
    .ld__cta-row .btn { justify-content: center; }
}

/* ═══ Dialog-Beispiel: So läuft das Gespräch (13.07.2026) ═══ */
.convo {
    max-width: 720px;
    margin: 6rem auto 0;
}

.convo__head { text-align: center; margin-bottom: 2rem; }

.convo__title {
    font-size: var(--text-3xl);
    font-weight: var(--font-semibold);
    letter-spacing: var(--tracking-tight);
    color: var(--text);
    margin-bottom: 0.75rem;
}

.convo__sub {
    font-size: var(--text-base);
    color: var(--text-muted);
    line-height: var(--leading-relaxed);
    max-width: 520px;
    margin: 0 auto;
}

.convo__chat {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-2xl);
    padding: 1.75rem;
    box-shadow: var(--shadow-md);
}

.convo__msg {
    max-width: 78%;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-xl);
    font-size: var(--text-sm);
    line-height: var(--leading-normal);
}

.convo__msg--user {
    align-self: flex-end;
    background: var(--teal);
    color: #fff;
    border-bottom-right-radius: var(--radius-sm);
}

:root[data-theme="dark"] .convo__msg--user { color: var(--bg); }

.convo__msg--ai {
    align-self: flex-start;
    background: var(--surface-2);
    border: 1px solid var(--line-soft);
    color: var(--text-soft);
    border-bottom-left-radius: var(--radius-sm);
}

.convo__caption {
    text-align: center;
    font-size: var(--text-sm);
    color: var(--text-faint);
    margin-top: 1rem;
}

/* ═══ Waitlist / Early Access (13.07.2026) ═══ */
.waitlist {
    max-width: 560px;
    margin: 6rem auto 2rem;
    text-align: center;
}

.waitlist__title {
    font-size: var(--text-3xl);
    font-weight: var(--font-semibold);
    letter-spacing: var(--tracking-tight);
    color: var(--text);
    margin-bottom: 0.75rem;
}

.waitlist__sub {
    font-size: var(--text-base);
    color: var(--text-muted);
    line-height: var(--leading-relaxed);
    margin-bottom: 1.75rem;
}

.waitlist__form {
    display: flex;
    gap: 0.625rem;
    justify-content: center;
}

.waitlist__input {
    flex: 1;
    min-width: 0;
    padding: 0.75rem 1rem;
    font-size: var(--text-base);
    font-family: var(--font-sans);
    color: var(--text);
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    outline: none;
    transition: border-color var(--dur-fast) var(--ease-smooth);
}

.waitlist__input:focus {
    border-color: var(--teal);
    box-shadow: 0 0 0 3px var(--teal-soft);
}

.waitlist__hint {
    font-size: var(--text-xs);
    color: var(--text-faint);
    margin-top: 0.875rem;
}

@media (max-width: 900px) {
    .convo__msg { max-width: 92%; }
    .waitlist__form { flex-direction: column; }
}

/* ═══ Produktkacheln im Dialog-Beispiel ═══ */
.convo__products {
    align-self: flex-start;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.625rem;
    max-width: 92%;
}

.convo__product {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 0.75rem;
    box-shadow: var(--shadow-xs);
}

.convo__product-badge {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 0.625rem;
    font-weight: var(--font-semibold);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.125rem 0.5rem;
    border-radius: var(--radius-full);
    margin-bottom: 0.5rem;
}

.convo__product-badge--top   { color: var(--teal);   background: var(--teal-soft); }
.convo__product-badge--value { color: var(--indigo); background: var(--indigo-soft); }
.convo__product-badge--tip   { color: var(--warning); background: rgba(245,158,11,0.10); }

.convo__product-name {
    font-size: var(--text-sm);
    font-weight: var(--font-semibold);
    color: var(--text);
    line-height: var(--leading-snug);
    margin-bottom: 0.25rem;
}

.convo__product-meta {
    font-size: var(--text-xs);
    color: var(--text-muted);
    margin-bottom: 0.375rem;
}

.convo__product-price {
    font-family: var(--font-mono);
    font-size: var(--text-xs);
    font-weight: var(--font-medium);
    color: var(--teal);
}

@media (max-width: 640px) {
    .convo__products { grid-template-columns: 1fr; max-width: 92%; }
}
