/* ============================================================
   ThinkLab — Award-Landing (MINT-Reise). Ported from MadC's standalone
   vorlage, but SCOPED under .tlx so the template's generic selectors
   (nav/.btn/h1..h3/body) never leak into the rest of the site. Tokens
   bridge to thinklab.css (--tl-navy / --tl-orange) — no #f39200, no new
   framework. Only the landing page links this file.
   ============================================================ */

.tlx {
    /* bridge: template's short names -> ThinkLab tokens (same hex). */
    --navy: var(--tl-navy);
    --navy-light: var(--tl-navy-light);
    --navy-dark: var(--tl-navy-dark);
    --navy-deep: #0a1020;
    --orange: var(--tl-orange);
    --orange-hover: var(--tl-orange-hover);
    --orange-light: var(--tl-orange-light);
    --white: #ffffff;
    --txt: #eef2f8;
    --muted: #9fb0cc;
    --line: rgba(255,255,255,.08);
    --card: rgba(255,255,255,.04);
    --t: .3s cubic-bezier(.4,0,.2,1);

    position: relative;
    background: var(--navy-dark);
    color: var(--txt);
    line-height: 1.55;
    overflow-x: hidden;
    font-family: var(--tl-font, 'Segoe UI', system-ui, -apple-system, 'Helvetica Neue', sans-serif);
}
.tlx *, .tlx *::before, .tlx *::after { box-sizing: border-box; }
.tlx ::selection { background: var(--orange); color: var(--navy-dark); }
.tlx a { color: inherit; text-decoration: none; }
.tlx h1, .tlx h2, .tlx h3 { font-weight: 800; letter-spacing: -.02em; line-height: 1.08; margin: 0; }

/* ambient mesh (cheap, no canvas) */
.tlx .mesh { position: absolute; inset: 0; z-index: 0; pointer-events: none;
    background:
        radial-gradient(60% 50% at 80% -5%, rgba(245,166,35,.12), transparent 60%),
        radial-gradient(50% 40% at 0% 30%, rgba(36,54,86,.55), transparent 60%),
        radial-gradient(70% 60% at 50% 110%, rgba(245,166,35,.06), transparent 60%); }

.tlx .wrap { max-width: 1180px; margin: 0 auto; padding: 0 clamp(20px, 5vw, 40px); }
.tlx .band { position: relative; z-index: 3; padding-top: clamp(72px, 9vw, 120px); padding-bottom: clamp(72px, 9vw, 120px); }
.tlx .kicker { display: inline-flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 700;
    letter-spacing: .14em; text-transform: uppercase; color: var(--orange); margin-bottom: 18px; }
.tlx .kicker::before { content: ''; width: 26px; height: 2px; background: var(--orange); border-radius: 2px; }
.tlx .h2 { font-size: clamp(28px, 4.4vw, 52px); }
.tlx .lead { font-size: clamp(16px, 1.6vw, 19px); color: var(--muted); max-width: 60ch; }
.tlx .amber { color: var(--orange); }

.tlx .reveal { opacity: 0; transform: translateY(34px);
    transition: opacity .8s cubic-bezier(.16,1,.3,1), transform .8s cubic-bezier(.16,1,.3,1); }
.tlx .reveal.in { opacity: 1; transform: none; }

/* buttons (scoped — does NOT touch bootstrap .btn elsewhere) */
.tlx .btn { display: inline-flex; align-items: center; gap: 9px; font-size: 15px; font-weight: 700;
    border: none; cursor: pointer; padding: 14px 28px; border-radius: 50px; transition: var(--t);
    font-family: inherit; min-height: 48px; }
.tlx .btn-primary { background: var(--orange); color: var(--navy-dark); box-shadow: 0 8px 30px rgba(245,166,35,.3); }
.tlx .btn-primary:hover { background: var(--orange-hover); transform: translateY(-2px); box-shadow: 0 12px 38px rgba(245,166,35,.45); }
.tlx .btn-ghost { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,.2); }
.tlx .btn-ghost:hover { border-color: var(--orange); color: var(--orange); }

/* ===== NAV ===== */
.tlx-nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; display: flex; align-items: center;
    justify-content: space-between; padding: 15px clamp(20px, 5vw, 40px); transition: var(--t);
    background: linear-gradient(180deg, rgba(17,29,51,.85), transparent); backdrop-filter: blur(10px); }
.tlx-nav.solid { background: rgba(17,29,51,.95); border-bottom: 1px solid var(--line); }
.tlx .brand { display: flex; align-items: center; gap: 9px; font-size: 21px; font-weight: 800; }
.tlx .brand .b-dot { width: 13px; height: 13px; border-radius: 4px; background: var(--orange); box-shadow: 0 0 14px rgba(245,166,35,.6); }
.tlx .brand .think { color: var(--white); }
.tlx .brand .lab { color: var(--orange); }
.tlx .brand small { font-size: 11px; font-weight: 700; letter-spacing: .16em; color: var(--muted); margin-left: 6px; }
.tlx .nav-links { display: flex; gap: 28px; font-size: 14px; font-weight: 600; }
.tlx .nav-links a { color: var(--muted); transition: var(--t); }
.tlx .nav-links a:hover { color: var(--white); }
.tlx .nav-cta { padding: 10px 20px; border-radius: 50px; background: var(--orange); color: var(--navy-dark);
    font-weight: 700; font-size: 14px; transition: var(--t); min-height: 44px; display: inline-flex; align-items: center; }
.tlx .nav-cta:hover { background: var(--orange-hover); }
@media (max-width: 820px) { .tlx .nav-links { display: none; } }

/* ===== HERO ===== */
.tlx .hero { min-height: 100vh; display: grid; grid-template-columns: 1.08fr .92fr; align-items: center;
    gap: 50px; padding-top: 120px; }
@media (max-width: 940px) { .tlx .hero { grid-template-columns: 1fr; padding-top: 120px; gap: 40px; } }
.tlx .hero-pill { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 700;
    letter-spacing: .16em; text-transform: uppercase; color: var(--orange); border: 1px solid rgba(245,166,35,.35);
    padding: 7px 14px; border-radius: 50px; background: rgba(245,166,35,.07); margin-bottom: 24px; }
.tlx .hero h1 { font-size: clamp(38px, 6.2vw, 76px); }
.tlx .hero p { margin: 24px 0 36px; font-size: clamp(16px, 1.7vw, 20px); color: var(--muted); max-width: 54ch; }
.tlx .hero-cta { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.tlx .hero-event { margin-top: 34px; font-size: 12px; letter-spacing: .12em; text-transform: uppercase;
    color: var(--muted); opacity: .85; line-height: 1.8; }
.tlx .hero-event b { color: var(--orange-light); font-weight: 700; }

/* Reisepass card (static showcase) */
.tlx .pass { position: relative; justify-self: center; width: min(100%, 420px); padding: 26px; border-radius: 22px;
    background: linear-gradient(155deg, var(--navy-light), var(--navy-dark)); border: 1px solid rgba(245,166,35,.25);
    box-shadow: 0 40px 90px rgba(0,0,0,.5), 0 0 0 1px rgba(255,255,255,.03) inset;
    transform: perspective(1200px) rotateY(-9deg) rotateX(4deg); transition: transform .4s ease; }
.tlx .pass:hover { transform: perspective(1200px) rotateY(-3deg) rotateX(1deg); }
.tlx .pass-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 20px; }
.tlx .pass-top .pt-l { font-size: 12px; letter-spacing: .18em; text-transform: uppercase; color: var(--orange); font-weight: 700; }
.tlx .pass-top .pt-r { font-size: 11px; color: var(--muted); text-align: right; line-height: 1.3; }
.tlx .pass h3 { font-size: 24px; margin-bottom: 4px; }
.tlx .pass .sub { font-size: 13px; color: var(--muted); margin-bottom: 20px; }
.tlx .stamps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; }
.tlx .stamp { aspect-ratio: 1; border-radius: 14px; display: grid; place-items: center; font-size: 22px;
    background: rgba(255,255,255,.04); border: 1.5px dashed rgba(255,255,255,.14); color: rgba(255,255,255,.3);
    transition: transform .5s cubic-bezier(.34,1.56,.64,1), background .4s, border-color .4s, color .4s, box-shadow .4s; }
.tlx .stamp.on { background: rgba(245,166,35,.16); border: 1.5px solid var(--orange); color: var(--orange-light);
    box-shadow: 0 0 22px rgba(245,166,35,.25); }
.tlx .stamp.pop { transform: scale(1.18); }
.tlx .pass-bar { margin-top: 18px; height: 8px; border-radius: 8px; background: rgba(255,255,255,.08); overflow: hidden; }
.tlx .pass-bar i { display: block; height: 100%; width: 0; background: linear-gradient(90deg, var(--orange), var(--orange-light));
    border-radius: 8px; transition: width .6s ease; }
.tlx .pass-foot { margin-top: 12px; display: flex; justify-content: space-between; font-size: 12px; color: var(--muted); }
.tlx .pass-foot b { color: var(--orange); }

/* ===== PROOF strip ===== */
.tlx .proof { display: flex; align-items: center; justify-content: center; gap: 18px; flex-wrap: wrap;
    text-align: center; padding: 22px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.tlx .proof-logo { display: inline-flex; align-items: center; justify-content: center; min-width: 110px; height: 52px;
    padding: 0 16px; border: 1px dashed rgba(255,255,255,.25); border-radius: 10px; color: var(--muted);
    font-weight: 700; letter-spacing: .12em; }
.tlx .proof-text { margin: 0; max-width: 780px; font-size: 14.5px; color: var(--muted); }
.tlx .proof-text b { color: var(--orange-light); }

/* ===== generic section grid (workshops, bento, stations, layers, packages) ===== */
.tlx .grid3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 36px; }
.tlx .grid4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 36px; }
@media (max-width: 900px) { .tlx .grid3, .tlx .grid4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .tlx .grid3, .tlx .grid4 { grid-template-columns: 1fr; } }

.tlx .card { padding: 28px; border-radius: 18px; background: var(--card); border: 1px solid var(--line);
    position: relative; overflow: hidden; transition: var(--t); display: flex; flex-direction: column;
    color: var(--txt); }
/* color must be set on .card itself: a bare <div class="card"> otherwise inherits Bootstrap's
   global .card dark text (bootstrap.min.css is loaded in _Layout) and the title goes invisible. */
.tlx a.card { color: var(--txt); }
.tlx .card:hover { border-color: rgba(245,166,35,.4); background: rgba(245,166,35,.05); transform: translateY(-3px); }
.tlx .card .ic { font-size: 30px; margin-bottom: 14px; display: block; color: var(--orange); }
.tlx .card h3 { font-size: 19px; margin-bottom: 8px; color: var(--white); }
.tlx .card p { font-size: 14.5px; color: var(--muted); flex: 1; }
.tlx .card .badge { align-self: flex-start; font-size: 11px; font-weight: 700; letter-spacing: .12em;
    text-transform: uppercase; padding: 5px 12px; border-radius: 50px; margin-bottom: 14px; }
.tlx .badge-live { background: rgba(245,166,35,.16); color: var(--orange); border: 1px solid rgba(245,166,35,.5); }
.tlx .badge-soon { background: rgba(255,255,255,.06); color: var(--muted); border: 1px solid var(--line); }
.tlx .card .tags { margin-top: 18px; display: flex; flex-wrap: wrap; gap: 8px; }
.tlx .card .tags span { font-size: 12px; color: var(--orange-light); border: 1px solid var(--line);
    padding: 4px 10px; border-radius: 50px; }
.tlx .card.lead-card { background: linear-gradient(155deg, rgba(245,166,35,.1), var(--card)); border-color: rgba(245,166,35,.3); }

/* package teaser (NO prices) */
.tlx .pkg { padding: 30px 26px; border-radius: 20px; border: 1px solid var(--line); background: var(--card);
    display: flex; flex-direction: column; position: relative; }
.tlx .pkg.pop { border-color: var(--orange); box-shadow: 0 20px 60px rgba(245,166,35,.18); }
.tlx .pkg .ribbon { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--orange);
    color: var(--navy-dark); font-size: 12px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
    padding: 5px 16px; border-radius: 50px; }
.tlx .pkg .tier { font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--orange);
    border: 1px solid rgba(245,166,35,.4); padding: 5px 12px; border-radius: 50px; align-self: flex-start; margin-bottom: 14px; }
.tlx .pkg h3 { font-size: 24px; margin-bottom: 6px; }
.tlx .pkg .who { font-size: 13.5px; color: var(--muted); min-height: 40px; margin-bottom: 18px; }
.tlx .pkg ul { list-style: none; margin: 0 0 22px; padding: 0; display: flex; flex-direction: column; gap: 11px; flex: 1; }
.tlx .pkg li { font-size: 14.5px; display: flex; gap: 10px; align-items: flex-start; }
.tlx .pkg li::before { content: '\2713'; color: var(--orange); font-weight: 800; flex: none; }

/* two layers */
.tlx .layers { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 36px; }
@media (max-width: 760px) { .tlx .layers { grid-template-columns: 1fr; } }
.tlx .layer { padding: 34px; border-radius: 18px; border: 1px solid var(--line); background: var(--card); }
.tlx .layer.invest { background: linear-gradient(155deg, rgba(245,166,35,.08), var(--card)); }
.tlx .layer .tag { font-size: 11px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--orange);
    padding: 6px 12px; border: 1px solid rgba(245,166,35,.4); border-radius: 50px; display: inline-block; margin-bottom: 18px; }
.tlx .layer h3 { font-size: 24px; margin-bottom: 10px; }
.tlx .layer p { font-size: 15px; color: var(--muted); }

/* reise steps (stacked, no pin — safe V1) */
.tlx .reise { background: linear-gradient(180deg, var(--navy-dark), var(--navy)); }
.tlx .steps { display: flex; flex-direction: column; gap: 14px; margin-top: 36px; max-width: 720px; }
.tlx .step { padding: 18px 22px; border-radius: 14px; border: 1px solid var(--line); background: rgba(17,29,51,.6);
    border-left: 3px solid var(--orange); }
.tlx .step .n { font-size: 11px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--orange); margin-bottom: 5px; }
.tlx .step h4 { font-size: clamp(17px, 2vw, 21px); margin: 0 0 4px; }
.tlx .step p { font-size: 14px; color: var(--muted); margin: 0; }

/* Reise serpentine timeline. Centre rail column holds ONE svg curve; the curve's anchors sit on
   the centre axis at 10/30/50/70/90% and the beads are CSS circles at the SAME % on the centre —
   so a bead can never land beside the line. Cards alternate left/right of the rail (full width). */
.tlx .reise-flow { position: relative; display: grid; grid-template-columns: 1fr 72px 1fr;
    column-gap: 18px; row-gap: 14px; margin-top: 32px; }
.tlx .reise-flow .rail { grid-column: 2; grid-row: 1 / 6; position: relative; }
.tlx .rsvg { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; }
.tlx .rline { fill: none; stroke: url(#tlxReiseG); stroke-width: 4; stroke-linecap: round;
    filter: drop-shadow(0 0 6px rgba(245,166,35,.5)); stroke-dasharray: 1700; stroke-dashoffset: 1700; }
.tlx .reise-flow.in .rline { animation: tlxDraw 1.4s ease .1s forwards; }
@keyframes tlxDraw { to { stroke-dashoffset: 0; } }
.tlx .rbead { position: absolute; left: 50%; transform: translate(-50%, -50%); width: 18px; height: 18px;
    border-radius: 50%; background: var(--orange); border: 3px solid var(--navy-dark);
    box-shadow: 0 0 0 3px rgba(245,166,35,.18), 0 0 10px rgba(245,166,35,.7); }
.tlx .rbead-last { animation: tlxBeadPulse 2.4s ease-in-out infinite; }
@keyframes tlxBeadPulse { 0%,100% { box-shadow: 0 0 0 3px rgba(245,166,35,.18), 0 0 10px rgba(245,166,35,.7); }
    50% { box-shadow: 0 0 0 6px rgba(245,166,35,.10), 0 0 16px rgba(245,166,35,.9); } }
.tlx .rstep { min-height: 132px; display: flex; flex-direction: column; justify-content: center; }
.tlx .r-right { grid-column: 3; }
.tlx .r-left { grid-column: 1; text-align: right; border-left: none; border-right: 3px solid var(--orange); }
.tlx .reise-cta { margin-top: 30px; text-align: center; }

@media (prefers-reduced-motion: reduce) {
    .tlx .rline { stroke-dasharray: none; stroke-dashoffset: 0; }
    .tlx .reise-flow.in .rline { animation: none; }
    .tlx .rbead-last { animation: none; }
}
/* Mobile: rail to the far left, all cards stacked on the right (classic timeline). */
@media (max-width: 767.98px) {
    .tlx .reise-flow { grid-template-columns: 40px 1fr; column-gap: 14px; }
    .tlx .reise-flow .rail { grid-column: 1; }
    .tlx .r-right, .tlx .r-left { grid-column: 2; text-align: left;
        border-left: 3px solid var(--orange); border-right: none; }
}

/* förderung arguments */
.tlx .foerder { background: linear-gradient(180deg, var(--navy), var(--navy-dark)); }
.tlx .foerder ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 14px; margin-top: 24px; max-width: 760px; }
.tlx .foerder li { font-size: 15.5px; display: flex; gap: 12px; align-items: flex-start; color: var(--txt); }
.tlx .foerder li::before { content: '\2192'; color: var(--orange); font-weight: 800; flex: none; }
.tlx .foerder li b { color: var(--white); }

/* Definition-list alignment: arrow · keyword (fixed column) · explanation — all rows line up. */
.tlx .foerder-list { max-width: 860px; }
.tlx .foerder-list li { display: grid; grid-template-columns: 1.4rem minmax(170px, 230px) 1fr; gap: 4px 14px; align-items: baseline; }
.tlx .foerder-list li::before { grid-column: 1; }
.tlx .foerder-list li b { grid-column: 2; color: var(--white); }
.tlx .foerder-list li span { grid-column: 3; color: var(--muted); }
@media (max-width: 640px) {
    .tlx .foerder-list li { grid-template-columns: 1.4rem 1fr; row-gap: 2px; }
    .tlx .foerder-list li b { grid-column: 2; }
    .tlx .foerder-list li span { grid-column: 2; }
}

/* CTA */
.tlx .cta { text-align: center; }
.tlx .cta h2 { font-size: clamp(32px, 5.5vw, 62px); margin-bottom: 18px; }
.tlx .cta p { color: var(--muted); font-size: 18px; max-width: 48ch; margin: 0 auto 34px; }

/* footer */
.tlx-foot { background: var(--navy-deep); border-top: 1px solid var(--line); position: relative; z-index: 3; }
.tlx-foot .foot { display: flex; justify-content: space-between; align-items: flex-start; gap: 24px; flex-wrap: wrap; padding: 40px 0 22px; }
.tlx-foot .foot-links { display: flex; gap: 22px; flex-wrap: wrap; font-size: 13px; color: var(--muted); }
.tlx-foot .foot-links a:hover { color: var(--orange); }
.tlx-foot .foot-fine { padding: 18px 0 40px; font-size: 12px; color: var(--muted); opacity: .7; border-top: 1px solid var(--line); line-height: 1.7; }

/* anchored sections clear the fixed nav */
.tlx section[id], .tlx header[id] { scroll-margin-top: 74px; }

/* intro overlay */
.tlx-intro { position: fixed; inset: 0; z-index: 9999; background: var(--tl-navy-dark, #111d33); display: flex;
    flex-direction: column; align-items: center; justify-content: center; gap: 22px; transition: opacity .7s ease, visibility .7s; }
.tlx-intro.done { opacity: 0; visibility: hidden; pointer-events: none; }
.tlx-intro .il { display: flex; align-items: center; gap: 12px; font-size: clamp(34px, 7vw, 62px); font-weight: 800; }
.tlx-intro .il .dot { width: 18px; height: 18px; border-radius: 6px; background: var(--tl-orange); box-shadow: 0 0 22px rgba(245,166,35,.7); }
.tlx-intro .il .think { color: #fff; }
.tlx-intro .il .lab { color: var(--tl-orange); }
.tlx-intro .isub { font-size: 13px; font-weight: 700; letter-spacing: .34em; text-transform: uppercase; color: #9fb0cc; }
.tlx-intro .ibar { width: min(220px, 52vw); height: 3px; border-radius: 3px; background: rgba(255,255,255,.1); overflow: hidden; }
.tlx-intro .ibar i { display: block; height: 100%; width: 0; background: linear-gradient(90deg, var(--tl-orange-light), var(--tl-orange));
    animation: tlxIntroBar 1.2s cubic-bezier(.5,0,.2,1) .2s forwards; }
@keyframes tlxIntroBar { to { width: 100%; } }

@media (prefers-reduced-motion: reduce) {
    .tlx .reveal { opacity: 1; transform: none; }
    .tlx .stamp { opacity: 1; }
    .tlx-intro { display: none !important; }
    .tlx .pass { transform: none; }
}

.tlx :focus-visible { outline: 2px solid var(--orange); outline-offset: 3px; }

/* mobile */
@media (max-width: 760px) {
    .tlx .brand small { display: none; }
    .tlx .band { padding-top: 64px; padding-bottom: 64px; }
    .tlx .hero { min-height: auto; padding-top: 104px; padding-bottom: 34px; gap: 30px; }
    .tlx .hero h1 { font-size: clamp(34px, 9vw, 46px); }
    .tlx .pass { transform: none; width: 100%; max-width: 440px; }
    .tlx .pass:hover { transform: none; }
    .tlx-foot .foot { flex-direction: column; align-items: center; text-align: center; }
    .tlx-foot .foot-links { justify-content: center; }
}
