/* ==========================================================================
   Snaplove — Landingpage v2
   Editorial-Luxury. Cormorant Garamond + Urbanist. Cream · Ink · Gold.
   Art-directed per section; the Vintage world departs deliberately.
   ========================================================================== */

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

:root {
    /* Surface ramp */
    --warm: #faf9f7;
    --warm-2: #f3f0ea;       /* recessed cream */
    --card: #ffffff;
    --ink: #1a1814;
    --ink-2: #6b6560;        /* secondary text — passes 4.5:1 on cream */
    --line: #e8e4de;
    --line-2: #d4cfc9;

    /* Brand */
    --gold: #b89b6e;
    --gold-deep: #97784a;    /* gold that passes contrast on cream */

    /* subtle paper grain (very low-alpha warm speckle, tiled) */
    --paper: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='150' height='150'%3E%3Cfilter id='p'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='matrix' values='0 0 0 0 0.41 0 0 0 0 0.38 0 0 0 0 0.33 0 0 0 0.06 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23p)'/%3E%3C/svg%3E");

    /* Vintage / night world */
    --night: #1c1712;
    --night-2: #251e17;
    --ember: #c79a5e;
    --cream-soft: #efe7da;

    /* Accents used semantically */
    --sage: #7d9068;
    --blush: #c58e88;

    /* Motion */
    --e-out: cubic-bezier(0.16, 1, 0.3, 1);
    --e-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
    --d-fast: 160ms;
    --d-mid: 300ms;
    --d-slow: 600ms;

    /* z-index scale */
    --z-base: 1;
    --z-raised: 10;
    --z-nav: 50;
    --z-overlay: 80;
}

html { scroll-behavior: smooth; }
body {
    font-family: 'Urbanist', sans-serif;
    background-color: var(--warm);
    background-image: var(--paper);
    color: var(--ink);
    -webkit-font-smoothing: antialiased;
    line-height: 1.5;
    overflow-x: hidden;
}
.serif { font-family: 'Cormorant Garamond', serif; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
picture { display: contents; }
h1, h2, h3, h4 { overflow-wrap: break-word; }
/* Grid children must be allowed to shrink below their content (prevents
   long kickers / words from blowing out a track wider than the viewport). */
.hero-grid > *, .mission-layout > *, .vintage-grid > *, .duo > *,
.head-split > *, .cardlab > *, .print-cta > *, .trydemo > * { min-width: 0; }

.wrap { max-width: 1140px; margin: 0 auto; padding: 0 1.5rem; }
.wrap-wide { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }

/* ---------- Kicker (deliberate brand system, varied per section) ----------
   Inline (not flex) so long kickers wrap instead of forcing a wide track. */
.eyebrow {
    font-size: 0.72rem; font-weight: 600; letter-spacing: 0.2em;
    text-transform: uppercase; color: var(--gold-deep);
    overflow-wrap: break-word;
}
.eyebrow::before {
    content: ''; display: inline-block; width: 1.5rem; height: 1px;
    background: var(--gold); opacity: 0.7; vertical-align: middle;
    margin: 0 0.6rem 0.18em 0;
}
.eyebrow.center::after {
    content: ''; display: inline-block; width: 1.5rem; height: 1px;
    background: var(--gold); opacity: 0.7; vertical-align: middle;
    margin: 0 0 0.18em 0.6rem;
}
/* tier badge — signals which package unlocks a feature */
.tier-badge {
    display: inline-block; margin-left: 0.55rem; vertical-align: middle;
    font-size: 0.6rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
    color: var(--gold-deep); background: rgba(151,120,74,0.1);
    border: 1px solid rgba(151,120,74,0.32); border-radius: 20px; padding: 0.22rem 0.6rem;
}
.vintage .tier-badge { color: var(--ember); background: rgba(199,154,94,0.14); border-color: rgba(199,154,94,0.4); }

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex; align-items: center; gap: 0.5rem;
    font-family: 'Urbanist', sans-serif; font-size: 0.9rem; font-weight: 500;
    padding: 0.7rem 1.4rem; border-radius: 9px; border: 1px solid transparent;
    cursor: pointer; transition: transform var(--d-fast) var(--e-out),
        background var(--d-fast), border-color var(--d-fast), box-shadow var(--d-mid);
    white-space: nowrap;
}
.btn:active { transform: scale(0.97); }
.btn-primary { background: var(--ink); color: var(--warm); }
.btn-primary:hover { background: #2d2926; transform: translateY(-2px); box-shadow: 0 12px 28px -14px rgba(26,24,20,0.5); }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--line-2); }
.btn-outline:hover { border-color: var(--ink); transform: translateY(-2px); }
.btn-lg { padding: 0.95rem 2rem; font-size: 1rem; }
.btn-ghost-light { background: rgba(239,231,218,0.08); color: var(--cream-soft); border-color: rgba(239,231,218,0.28); }
.btn-ghost-light:hover { background: rgba(239,231,218,0.16); border-color: rgba(239,231,218,0.6); transform: translateY(-2px); }

/* ---------- Nav ---------- */
nav {
    position: sticky; top: 0; z-index: var(--z-nav);
    background: rgba(250,249,247,0.82); backdrop-filter: blur(14px) saturate(1.1);
    border-bottom: 1px solid var(--line);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.logo { font-size: 1.35rem; font-weight: 600; letter-spacing: -0.02em; }
.logo .dot { color: var(--gold); }
.nav-links { display: flex; align-items: center; gap: 1.9rem; }
.nav-links a.navlink {
    font-size: 0.88rem; color: var(--ink-2); position: relative; transition: color var(--d-fast);
}
.nav-links a.navlink::after {
    content: ''; position: absolute; left: 0; bottom: -5px; height: 1px; width: 0;
    background: var(--gold); transition: width var(--d-mid) var(--e-out);
}
.nav-links a.navlink:hover { color: var(--ink); }
.nav-links a.navlink:hover::after { width: 100%; }
.nav-actions { display: flex; align-items: center; gap: 1.3rem; }
.nav-actions a.login { font-size: 0.9rem; color: var(--ink-2); transition: color var(--d-fast); }
.nav-actions a.login:hover { color: var(--ink); }
@media (max-width: 880px) { .nav-links { display: none; } }

/* ---------- Section frame ---------- */
section.block { padding: clamp(4rem, 3rem + 5vw, 7.5rem) 0; }
.section-head { max-width: 660px; margin: 0 auto clamp(2.5rem, 2rem + 3vw, 4rem); }
.section-head.center { text-align: center; }
.section-head .eyebrow { margin-bottom: 1.1rem; }
.section-head h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.1rem, 1.4rem + 2.8vw, 3.4rem); font-weight: 500;
    line-height: 1.08; letter-spacing: -0.01em; text-wrap: balance;
}
.section-head h2 em { font-style: italic; color: var(--gold-deep); }
.section-head p { color: var(--ink-2); margin-top: 1.1rem; font-size: 1.08rem; line-height: 1.6; max-width: 56ch; }
.section-head.center p { margin-left: auto; margin-right: auto; }

/* Split header (asymmetric, editorial) */
.head-split { display: grid; grid-template-columns: 1fr auto; gap: 2rem; align-items: end; margin-bottom: clamp(2.5rem, 2rem + 2vw, 3.5rem); }
.head-split .lede { max-width: 40ch; color: var(--ink-2); font-size: 1.05rem; line-height: 1.6; }
@media (max-width: 760px) { .head-split { grid-template-columns: 1fr; gap: 1.2rem; align-items: start; } }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero { padding: clamp(3.5rem, 2rem + 6vw, 6rem) 0 clamp(3rem, 2rem + 4vw, 5rem); position: relative; }
.hero::before {
    content: ''; position: absolute; inset: 0; z-index: -1;
    background:
        radial-gradient(60% 50% at 80% 0%, rgba(184,155,110,0.10), transparent 70%),
        radial-gradient(50% 45% at 10% 10%, rgba(184,155,110,0.06), transparent 70%);
}
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem, 1rem + 4vw, 4.5rem); align-items: center; }
.hero-grid > * { min-width: 0; }
.hero-copy .eyebrow { display: block; margin-bottom: 1.6rem; }
.hero h1 {
    font-size: clamp(2.35rem, 1.4rem + 4.2vw, 4.9rem); font-weight: 500;
    line-height: 1.02; letter-spacing: -0.015em; text-wrap: balance;
    overflow-wrap: break-word;
}
.hero h1 em { font-style: italic; color: var(--gold-deep); }
.hero p.lead { font-size: clamp(1.05rem, 1rem + 0.4vw, 1.28rem); color: var(--ink-2); max-width: 44ch; margin: 1.6rem 0 0; line-height: 1.6; }
.hero-cta { display: flex; gap: 1rem; margin-top: 2.2rem; flex-wrap: wrap; }
.hero-note { font-size: 0.82rem; color: var(--ink-2); margin-top: 1.3rem; display: flex; align-items: center; gap: 0.55rem; }
.hero-note svg { color: var(--gold-deep); flex-shrink: 0; }

/* Hero stage: phone + scattered prints */
.hero-stage { position: relative; min-height: 480px; display: flex; align-items: center; justify-content: center; }
.phone {
    position: relative; z-index: 3; width: clamp(220px, 22vw, 264px); aspect-ratio: 9 / 19;
    background: #14110d; border-radius: 34px; padding: 8px;
    box-shadow: 0 40px 80px -28px rgba(26,24,20,0.55), 0 0 0 1px rgba(255,255,255,0.04) inset;
}
.phone::after { /* notch */
    content: ''; position: absolute; top: 14px; left: 50%; transform: translateX(-50%);
    width: 78px; height: 5px; border-radius: 3px; background: rgba(255,255,255,0.16); z-index: 5;
}
.phone-screen { width: 100%; height: 100%; border-radius: 27px; overflow: hidden; background: var(--warm); display: flex; flex-direction: column; }
.phone-video { width: 100%; height: 100%; object-fit: cover; display: block; }
.phone-head { padding: 1.15rem 0.95rem 0.7rem; border-bottom: 1px solid var(--line); }
.phone-head .ev { font-size: 0.58rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-deep); font-weight: 600; }
.phone-head .nm { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-weight: 600; line-height: 1.1; margin-top: 2px; }
.phone-grid { flex: 1; display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: min-content; gap: 3px; padding: 4px; align-content: start; overflow: hidden; }
.phone-grid img { width: 100%; height: auto; aspect-ratio: 1; object-fit: cover; border-radius: 3px; }

/* floating physical prints */
.print {
    position: absolute; background: #fff; padding: 9px 9px 30px; border-radius: 3px;
    box-shadow: 0 26px 44px -20px rgba(26,24,20,0.45); z-index: 2;
}
.print img { width: 100%; height: 100%; object-fit: cover; border-radius: 1px; }
.print figcaption { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 0.92rem; color: #5b554e; text-align: center; padding-top: 7px; }
.print.p1 { width: 168px; top: 6%; left: -4%; transform: rotate(-8deg); }
.print.p1 img { aspect-ratio: 3/4; }
.print.p2 { width: 190px; bottom: 2%; right: -6%; transform: rotate(7deg); z-index: 4; }
.print.p2 img { aspect-ratio: 4/3; }
.hero-badge {
    position: absolute; z-index: 5; bottom: 14%; left: -2%;
    background: var(--card); border: 1px solid var(--line); border-radius: 12px;
    padding: 0.6rem 0.9rem; box-shadow: 0 18px 40px -18px rgba(26,24,20,0.3);
    display: flex; align-items: center; gap: 0.6rem; font-size: 0.82rem; font-weight: 500;
}
.hero-badge .pulse { width: 8px; height: 8px; border-radius: 50%; background: var(--sage); position: relative; }
.hero-badge .pulse::after { content: ''; position: absolute; inset: -4px; border-radius: 50%; border: 1px solid var(--sage); opacity: 0.6; animation: ping 2s var(--e-out) infinite; }
@keyframes ping { 0% { transform: scale(0.6); opacity: 0.7; } 100% { transform: scale(1.8); opacity: 0; } }

@media (max-width: 880px) {
    .hero-grid { grid-template-columns: 1fr; gap: 3rem; }
    .hero-copy { text-align: center; }
    .hero-copy .eyebrow, .hero-note { justify-content: center; }
    .hero p.lead { margin-left: auto; margin-right: auto; }
    .hero-cta { justify-content: center; }
    .hero-stage { min-height: 420px; }
}
@media (max-width: 520px) {
    .print.p1 { left: -2%; width: 132px; }
    .print.p2 { right: -2%; width: 150px; }
    .hero-badge { left: 50%; transform: translateX(-50%); bottom: 4%; }
}

/* ==========================================================================
   STEPS
   ========================================================================== */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.5rem, 1rem + 3vw, 3rem); }
.step { position: relative; }
.step .num { font-family: 'Cormorant Garamond', serif; font-size: 3rem; color: var(--gold); font-weight: 500; line-height: 1; }
.step h3 { font-size: 1.18rem; font-weight: 600; margin: 0.9rem 0 0.5rem; }
.step p { color: var(--ink-2); font-size: 0.96rem; line-height: 1.6; max-width: 34ch; }
.step::after {
    content: ''; position: absolute; top: 1.4rem; left: 3.4rem; right: -1.5rem; height: 1px;
    background: linear-gradient(90deg, var(--line), transparent); opacity: 0.9;
}
.step:last-child::after { display: none; }
@media (max-width: 760px) { .steps { grid-template-columns: 1fr; gap: 2rem; } .step::after { display: none; } }

/* ==========================================================================
   GALLERY (real photos, asymmetric bento)
   ========================================================================== */
.gallery-band { background-color: var(--warm-2); background-image: var(--paper); }
.gal-grid { column-count: 3; column-gap: 0.9rem; }
.gal-tile { position: relative; break-inside: avoid; margin-bottom: 0.9rem; overflow: hidden; border-radius: 14px; background: var(--line); box-shadow: 0 14px 36px -22px rgba(26,24,20,0.35); }
.gal-tile img { width: 100%; height: auto; display: block; transition: transform var(--d-slow) var(--e-out); }
.gal-tile:hover img { transform: scale(1.04); }
.gal-tile::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 60%, rgba(20,17,13,0.3)); opacity: 0; transition: opacity var(--d-mid); pointer-events: none; }
.gal-tile:hover::after { opacity: 1; }
.gal-tile .vbadge {
    position: absolute; top: 0.7rem; left: 0.7rem; z-index: 2;
    background: rgba(20,17,13,0.62); color: #fff; backdrop-filter: blur(4px);
    font-size: 0.7rem; font-weight: 600; letter-spacing: 0.03em;
    padding: 0.28rem 0.6rem 0.28rem 0.5rem; border-radius: 20px; display: inline-flex; align-items: center; gap: 0.35rem;
}
.gal-meta { display: flex; flex-wrap: wrap; gap: 0.6rem 1.5rem; margin-top: 1.6rem; align-items: center; justify-content: space-between; }
.filter-pills { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.pill { font-size: 0.8rem; font-weight: 500; color: var(--ink-2); border: 1px solid var(--line-2); background: var(--card); border-radius: 20px; padding: 0.4rem 0.85rem; }
.pill.is-on { background: var(--ink); color: var(--warm); border-color: var(--ink); }
.gal-actions { display: flex; align-items: center; gap: 0.5rem; font-size: 0.86rem; color: var(--ink-2); }
@media (max-width: 760px) {
    .gal-grid { column-count: 2; }
}

/* ==========================================================================
   ECHTE ABZÜGE (Fotolabor)
   ========================================================================== */
.prints-band { background-color: var(--warm-2); background-image: var(--paper); }
.prints-layout { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 1rem + 4vw, 4.5rem); align-items: center; }
.prints-spread { position: relative; min-height: 400px; }
.lab-print { position: absolute; background: #fff; padding: 10px 10px 30px; border-radius: 3px; box-shadow: 0 26px 50px -22px rgba(26,24,20,0.42); }
.lab-print img { width: 100%; object-fit: cover; border-radius: 1px; }
.lab-print.lp-1 { width: 45%; top: 2%; left: 6%; transform: rotate(-7deg); z-index: 2; }
.lab-print.lp-1 img { aspect-ratio: 3/4; }
.lab-print.lp-2 { width: 53%; top: 26%; right: 3%; transform: rotate(6deg); z-index: 3; }
.lab-print.lp-2 img { aspect-ratio: 4/3; }
.lab-print.lp-3 { width: 40%; bottom: 0; left: 16%; transform: rotate(-3deg); z-index: 1; }
.lab-print.lp-3 img { aspect-ratio: 3/4; }
.prints-tag { position: absolute; z-index: 4; bottom: 4%; right: 4%; background: var(--ink); color: var(--warm); font-size: 0.74rem; font-weight: 600; letter-spacing: 0.04em; padding: 0.42rem 0.85rem; border-radius: 20px; box-shadow: 0 14px 30px -14px rgba(26,24,20,0.5); }
.prints-copy h2 em { font-style: italic; color: var(--gold-deep); }
.prints-points { margin-top: 1.7rem; display: flex; flex-direction: column; gap: 0.9rem; }
.prints-points .pp { display: grid; grid-template-columns: auto 1fr; gap: 0.75rem; align-items: center; font-size: 0.98rem; color: var(--ink); }
.prints-points .pp svg { color: var(--gold-deep); flex-shrink: 0; }
@media (max-width: 880px) {
    .prints-layout { grid-template-columns: 1fr; gap: 2.5rem; }
    .prints-spread { order: -1; min-height: 360px; max-width: 400px; width: 100%; margin: 0 auto; }
}

/* ==========================================================================
   FOTO-AUFGABEN (Challenges) + STATIONEN
   ========================================================================== */
.tasks-band { background-image: var(--paper), linear-gradient(180deg, var(--warm), #f4f1ea); }
.mission-layout { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: clamp(2rem, 1rem + 4vw, 4rem); align-items: center; }
.mission-stage { position: relative; display: flex; justify-content: center; }
/* phone showing a mission overlay over a real result photo */
.mphone { position: relative; width: clamp(240px, 26vw, 288px); aspect-ratio: 9/19; background: #14110d; border-radius: 36px; padding: 8px; box-shadow: 0 44px 84px -30px rgba(26,24,20,0.5); }
.mphone .mscreen { width: 100%; height: 100%; border-radius: 28px; overflow: hidden; position: relative; }
.mphone .mscreen > img { width: 100%; height: 100%; object-fit: cover; }
.mphone .mscrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(20,17,13,0.15), rgba(20,17,13,0.78)); }
.mcard {
    position: absolute; left: 14px; right: 14px; bottom: 16px; z-index: 2;
    background: rgba(250,249,247,0.97); border-radius: 18px; padding: 1.1rem 1.15rem 1.2rem;
    box-shadow: 0 20px 40px -18px rgba(0,0,0,0.4);
}
.mcard .mtag { font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-deep); font-weight: 700; }
.mcard .mtitle { font-family: 'Cormorant Garamond', serif; font-size: 1.35rem; font-weight: 600; line-height: 1.12; margin: 0.35rem 0 0.9rem; }
.mcard .mbtns { display: flex; flex-direction: column; gap: 0.5rem; }
.mcard .mbtn { font-size: 0.84rem; font-weight: 600; padding: 0.6rem; border-radius: 10px; text-align: center; }
.mcard .mbtn.go { background: var(--ink); color: var(--warm); }
.mcard .mbtn.alt { background: transparent; color: var(--ink); border: 1px solid var(--line-2); }
.mcard .mbtn.skip { background: transparent; color: var(--ink-2); font-weight: 500; font-size: 0.78rem; padding: 0.3rem; }
.mphone .qr-chip { position: absolute; top: 14px; right: 14px; z-index: 3; width: 46px; height: 46px; border-radius: 11px; background: #fff; padding: 4px; box-shadow: 0 10px 24px -10px rgba(0,0,0,0.5); }
.mphone .qr-chip img { width: 100%; height: 100%; }

.mission-copy h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem, 1.4rem + 2.6vw, 3.1rem); font-weight: 500; line-height: 1.1; letter-spacing: -0.01em; text-wrap: balance; }
.mission-copy h2 em { font-style: italic; color: var(--gold-deep); }
.mission-copy > p { color: var(--ink-2); margin-top: 1rem; font-size: 1.05rem; line-height: 1.62; max-width: 50ch; }
.mfeatures { margin-top: 1.8rem; display: flex; flex-direction: column; gap: 1.15rem; }
.mfeat { display: grid; grid-template-columns: auto 1fr; gap: 0.9rem; align-items: start; }
.mfeat .mi { width: 38px; height: 38px; border-radius: 11px; background: var(--card); border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; color: var(--ink); flex-shrink: 0; }
.mfeat h4 { font-size: 0.98rem; font-weight: 600; }
.mfeat p { font-size: 0.9rem; color: var(--ink-2); line-height: 1.5; margin-top: 0.15rem; }

/* example mission chips */
.mission-examples { margin-top: 2.4rem; }
.mission-examples .lbl { font-size: 0.78rem; color: var(--ink-2); font-weight: 600; letter-spacing: 0.02em; margin-bottom: 0.8rem; }
.mchips { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.mchip { font-size: 0.86rem; color: var(--ink); background: var(--card); border: 1px solid var(--line); border-radius: 22px; padding: 0.5rem 0.95rem; box-shadow: 0 4px 14px -10px rgba(26,24,20,0.3); transition: transform var(--d-fast) var(--e-out), border-color var(--d-fast); }
.mchip:hover { transform: translateY(-2px); border-color: var(--gold); }
.mchip .em { font-style: normal; margin-right: 0.4rem; }
@media (max-width: 880px) { .mission-layout { grid-template-columns: 1fr; gap: 2.5rem; } }

/* Stationen */
.stationen { margin-top: clamp(3rem, 2rem + 4vw, 5rem); }
.stationen .sub-head { display: grid; grid-template-columns: 1fr auto; gap: 1.5rem; align-items: end; margin-bottom: 2rem; }
.stationen .sub-head h3 { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.6rem, 1.2rem + 1.6vw, 2.3rem); font-weight: 500; line-height: 1.12; }
.stationen .sub-head p { color: var(--ink-2); max-width: 44ch; font-size: 1rem; line-height: 1.55; }
.station-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
.station {
    background: var(--card); border: 1px solid var(--line); border-radius: 18px; padding: 1.5rem;
    display: flex; flex-direction: column; gap: 1rem;
    transition: transform var(--d-mid) var(--e-out), box-shadow var(--d-mid);
}
.station:hover { transform: translateY(-4px); box-shadow: 0 22px 50px -26px rgba(26,24,20,0.28); }
.station-top { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.station .s-no { font-family: 'Cormorant Garamond', serif; font-size: 1.05rem; color: var(--gold-deep); font-weight: 600; letter-spacing: 0.04em; }
.station .s-qr { width: 52px; height: 52px; border-radius: 10px; background: #fff; padding: 5px; border: 1px solid var(--line); }
.station .s-qr img { width: 100%; height: 100%; }
.station h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 600; line-height: 1.05; }
.station ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; margin-top: 0.1rem; }
.station li { font-size: 0.88rem; color: var(--ink-2); display: flex; gap: 0.5rem; align-items: flex-start; line-height: 1.45; }
.station li::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--gold); margin-top: 0.5rem; flex-shrink: 0; }
.station .s-foot { margin-top: auto; padding-top: 0.4rem; font-size: 0.76rem; color: var(--ink-2); display: inline-flex; align-items: center; gap: 0.4rem; }
.tasks-note { margin-top: 1.6rem; display: flex; flex-wrap: wrap; gap: 0.6rem 1.5rem; font-size: 0.86rem; color: var(--ink-2); }
.tasks-note span { display: inline-flex; align-items: center; gap: 0.45rem; }
.tasks-note svg { color: var(--gold-deep); }
@media (max-width: 880px) { .station-grid { grid-template-columns: 1fr; } .stationen .sub-head { grid-template-columns: 1fr; align-items: start; } }

/* ==========================================================================
   VINTAGE / EINWEG-KAMERA  (the night world — art-directed departure)
   ========================================================================== */
.vintage {
    position: relative; background: var(--night); color: var(--cream-soft); overflow: hidden;
    padding: clamp(4.5rem, 3rem + 6vw, 8rem) 0;
}
.vintage::before { /* warm vignette + glow */
    content: ''; position: absolute; inset: 0; pointer-events: none;
    background:
        radial-gradient(70% 60% at 78% 18%, rgba(199,154,94,0.18), transparent 62%),
        radial-gradient(120% 120% at 50% 120%, rgba(0,0,0,0.55), transparent 60%);
}
.vintage::after { /* film grain */
    content: ''; position: absolute; inset: -50%; pointer-events: none; opacity: 0.5; mix-blend-mode: overlay;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.vintage > .wrap { position: relative; z-index: 2; }
.vintage-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.5rem, 1rem + 5vw, 5rem); align-items: center; }
.vintage .eyebrow { color: var(--ember); }
.vintage .eyebrow::before { background: var(--ember); }
.vintage h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.3rem, 1.5rem + 3.4vw, 4rem); font-weight: 500; line-height: 1.04; letter-spacing: -0.01em; margin-top: 1.3rem; text-wrap: balance; }
.vintage h2 em { font-style: italic; color: var(--ember); }
.vintage .v-lead { color: rgba(239,231,218,0.78); font-size: 1.1rem; line-height: 1.65; margin-top: 1.3rem; max-width: 46ch; }
.v-points { margin-top: 2rem; display: flex; flex-direction: column; gap: 1.2rem; }
.v-point { display: grid; grid-template-columns: auto 1fr; gap: 0.9rem; align-items: start; }
.v-point .vi { width: 40px; height: 40px; border-radius: 11px; background: rgba(199,154,94,0.14); border: 1px solid rgba(199,154,94,0.3); display: flex; align-items: center; justify-content: center; color: var(--ember); flex-shrink: 0; }
.v-point h4 { font-size: 1.02rem; font-weight: 600; color: var(--cream-soft); }
.v-point p { font-size: 0.94rem; color: rgba(239,231,218,0.72); line-height: 1.55; margin-top: 0.2rem; }

/* Develop interaction — the surprise mode, made tangible */
.develop-stage { position: relative; display: flex; justify-content: center; align-items: center; min-height: 440px; }
.devframe {
    position: relative; width: clamp(250px, 30vw, 330px); background: #f6efe2; padding: 14px 14px 56px;
    border-radius: 4px; box-shadow: 0 40px 80px -28px rgba(0,0,0,0.7); transform: rotate(-3deg);
}
.devframe .devphoto { position: relative; aspect-ratio: 3/4; overflow: hidden; border-radius: 2px; background: #2a241d; }
.devframe .devphoto img { width: 100%; height: 100%; object-fit: cover; filter: sepia(0.32) saturate(1.15) contrast(1.02) brightness(1.02); transition: filter 1.4s var(--e-out-quart), transform 1.4s var(--e-out-quart); }
/* the "undeveloped" cover */
.devframe .undev {
    position: absolute; inset: 0; z-index: 2; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.9rem;
    background: radial-gradient(circle at 50% 40%, #3a3127, #15110c);
    color: rgba(239,231,218,0.85); transition: opacity var(--d-slow) var(--e-out-quart);
}
.devframe .undev .spin { width: 30px; height: 30px; border: 2px solid rgba(239,231,218,0.25); border-top-color: var(--ember); border-radius: 50%; animation: spin 1.1s linear infinite; }
.devframe .undev .ut { font-size: 0.82rem; letter-spacing: 0.05em; }
.devframe.is-developing .devphoto img { animation: developGrain 1.4s var(--e-out-quart) forwards; }
.devframe.is-developed .undev { opacity: 0; pointer-events: none; }
.devframe figcaption { position: absolute; left: 0; right: 0; bottom: 16px; text-align: center; font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1.15rem; color: #4a443b; opacity: 0; transition: opacity var(--d-slow) 0.5s; }
.devframe.is-developed figcaption { opacity: 1; }
@keyframes developGrain {
    0% { filter: sepia(0.9) saturate(0.4) contrast(0.8) brightness(0.5) blur(6px); }
    100% { filter: sepia(0.32) saturate(1.15) contrast(1.02) brightness(1.02) blur(0); }
}
@keyframes spin { to { transform: rotate(360deg); } }
/* second smaller print behind */
.devframe.behind { position: absolute; width: clamp(150px, 17vw, 188px); padding: 10px 10px 34px; transform: rotate(9deg); top: 8%; right: 4%; z-index: -1; box-shadow: 0 30px 60px -24px rgba(0,0,0,0.6); }
.devframe.behind .devphoto img { filter: sepia(0.4) saturate(1.1) contrast(1.0) brightness(0.98); }
.develop-btn {
    position: absolute; z-index: 5; bottom: -4px; left: 50%; transform: translateX(-50%);
    background: var(--ember); color: #221a10; font-weight: 700; font-size: 0.84rem;
    padding: 0.7rem 1.4rem; border-radius: 22px; border: none; cursor: pointer; white-space: nowrap;
    box-shadow: 0 14px 30px -12px rgba(199,154,94,0.7); transition: transform var(--d-fast) var(--e-out), opacity var(--d-mid);
    display: inline-flex; align-items: center; gap: 0.45rem;
}
.develop-btn:hover { transform: translateX(-50%) translateY(-2px); }
.devframe.is-developed ~ .develop-btn { opacity: 0; pointer-events: none; }
@media (max-width: 880px) {
    .vintage-grid { grid-template-columns: 1fr; gap: 3rem; }
    .develop-stage { min-height: 400px; order: -1; }
}

/* ==========================================================================
   SLIDESHOW + FACE SEARCH (duo panels)
   ========================================================================== */
.duo { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; }
.panel { border: 1px solid var(--line); border-radius: 22px; overflow: hidden; background: var(--card); display: flex; flex-direction: column; }
.panel .p-visual { position: relative; aspect-ratio: 16/10; overflow: hidden; background: var(--night); }
.panel .p-visual > img { width: 100%; height: 100%; object-fit: cover; }
.panel .p-body { padding: 1.7rem 1.7rem 1.9rem; }
.panel .eyebrow { margin-bottom: 0.8rem; }
.panel h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.7rem; font-weight: 600; line-height: 1.08; }
.panel p { color: var(--ink-2); font-size: 0.96rem; line-height: 1.58; margin-top: 0.6rem; }
.panel .p-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.1rem; }
.panel .p-tags span { font-size: 0.76rem; font-weight: 500; color: var(--ink-2); background: var(--warm-2); border-radius: 16px; padding: 0.32rem 0.7rem; }
/* live slideshow: crossfade + Ken Burns */
.proj-slides { position: absolute; inset: 0; }
.proj-slide { position: absolute; inset: 0; opacity: 0; will-change: opacity, transform; animation: projShow 17.5s linear infinite; }
.proj-slide img { width: 100%; height: 100%; object-fit: cover; }
.proj-slide:nth-child(1) { animation-delay: 0s; transform-origin: top left; }
.proj-slide:nth-child(2) { animation-delay: -14s; transform-origin: bottom right; }
.proj-slide:nth-child(3) { animation-delay: -10.5s; transform-origin: top right; }
.proj-slide:nth-child(4) { animation-delay: -7s; transform-origin: bottom left; }
.proj-slide:nth-child(5) { animation-delay: -3.5s; transform-origin: center; }
@keyframes projShow {
    0%   { opacity: 0; transform: scale(1.04); }
    3%   { opacity: 1; }
    18%  { opacity: 1; }
    21%  { opacity: 0; transform: scale(1.13); }
    100% { opacity: 0; transform: scale(1.13); }
}
@media (prefers-reduced-motion: reduce) {
    .proj-slide, .proj-strip span { animation: none !important; }
    .proj-slide:nth-child(1) { opacity: 1; }
    .proj-strip span:nth-child(1) { opacity: 1; outline-color: rgba(255,255,255,0.95); }
}

/* slideshow projection look */
.proj-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(20,17,13,0.1), rgba(20,17,13,0.55)); }
.proj-live { position: absolute; top: 0.9rem; left: 0.9rem; z-index: 2; display: inline-flex; align-items: center; gap: 0.45rem; background: rgba(20,17,13,0.6); backdrop-filter: blur(4px); color: #fff; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.06em; padding: 0.3rem 0.7rem; border-radius: 20px; }
.proj-live .dot { width: 7px; height: 7px; border-radius: 50%; background: #e9685f; animation: blink 1.6s ease-in-out infinite; }
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: 0.25; } }
.proj-strip { position: absolute; bottom: 0.7rem; left: 0.7rem; right: 0.7rem; z-index: 2; display: flex; gap: 5px; }
.proj-strip span { flex: 1; height: 34px; border-radius: 4px; background-size: cover; background-position: center; box-shadow: 0 6px 14px -6px rgba(0,0,0,0.5); opacity: 0.42; outline: 2px solid transparent; outline-offset: 1px; will-change: opacity, outline-color, transform; animation: projThumb 17.5s linear infinite; }
.proj-strip span:nth-child(1) { animation-delay: 0s; }
.proj-strip span:nth-child(2) { animation-delay: -14s; }
.proj-strip span:nth-child(3) { animation-delay: -10.5s; }
.proj-strip span:nth-child(4) { animation-delay: -7s; }
.proj-strip span:nth-child(5) { animation-delay: -3.5s; }
@keyframes projThumb {
    0%   { opacity: 0.42; outline-color: transparent; transform: translateY(0); }
    2%   { opacity: 1; outline-color: rgba(255,255,255,0.95); transform: translateY(-2px); }
    20%  { opacity: 1; outline-color: rgba(255,255,255,0.95); transform: translateY(-2px); }
    23%  { opacity: 0.42; outline-color: transparent; transform: translateY(0); }
    100% { opacity: 0.42; outline-color: transparent; transform: translateY(0); }
}
/* face search look */
.face-visual { display: grid; grid-template-columns: 0.85fr 1fr; gap: 0; background: var(--warm-2); height: 100%; }
.face-self { position: relative; overflow: hidden; }
.face-self > img { width: 100%; height: 100%; object-fit: cover; }
.face-self .scanline { position: absolute; left: 8%; right: 8%; height: 2px; background: linear-gradient(90deg, transparent, var(--ember), transparent); top: 20%; box-shadow: 0 0 12px var(--ember); animation: scan 2.6s var(--e-out) infinite; z-index: 2; }
@keyframes scan { 0%,100% { top: 18%; } 50% { top: 78%; } }
.face-self .fbox { position: absolute; top: 26%; left: 24%; width: 46%; height: 34%; border: 2px solid rgba(199,154,94,0.95); border-radius: 6px; z-index: 2; }
.face-results { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; padding: 6px; }
.face-results img { width: 100%; height: 100%; object-fit: cover; border-radius: 4px; aspect-ratio: 1; }
@media (max-width: 760px) { .duo { grid-template-columns: 1fr; } }

/* ==========================================================================
   CARD DESIGNER + PRINT
   ========================================================================== */
.cardlab { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.lab-controls { display: flex; flex-direction: column; gap: 1.4rem; max-width: 420px; }
.lab-field label { display: block; font-size: 0.8rem; font-weight: 600; color: var(--ink-2); margin-bottom: 0.6rem; }
.lab-field input { width: 100%; padding: 0.75rem 0.95rem; border: 1px solid var(--line-2); border-radius: 9px; font-family: inherit; font-size: 0.95rem; background: var(--card); color: var(--ink); outline: none; transition: border-color var(--d-fast); }
.lab-field input:focus { border-color: var(--ink); box-shadow: 0 0 0 3px rgba(184,155,110,0.16); }
.lab-opts { display: flex; gap: 0.6rem; flex-wrap: wrap; align-items: center; }
.lab-opt { padding: 0.5rem 1.05rem; border: 1px solid var(--line-2); border-radius: 9px; background: var(--card); color: var(--ink); cursor: pointer; font-size: 0.88rem; font-family: inherit; transition: all var(--d-fast); }
.lab-opt:hover { border-color: var(--ink); }
.lab-opt.is-active { border-color: var(--ink); background: var(--ink); color: var(--warm); }
.swatch { width: 38px; height: 38px; border-radius: 50%; border: 2px solid transparent; cursor: pointer; transition: transform var(--d-fast) var(--e-out); box-shadow: inset 0 0 0 1px var(--line); padding: 0; }
.swatch:hover { transform: scale(1.08); }
.swatch.is-active { border-color: var(--ink); transform: scale(1.12); }
.cardlab-preview { display: flex; justify-content: center; }
.democard { width: 300px; aspect-ratio: 5/7; border-radius: 16px; padding: 2.5rem 1.75rem; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; border: 1px solid var(--line); box-shadow: 0 30px 60px -26px rgba(26,24,20,0.36); transition: background var(--d-mid) ease, color var(--d-mid) ease; }
.democard .dc-eyebrow { font-size: 0.62rem; letter-spacing: 0.28em; text-transform: uppercase; font-weight: 600; }
.democard .dc-names { margin: 1rem 0 0.6rem; font-size: 2.5rem; line-height: 1.05; word-break: break-word; }
.democard .dc-date { font-size: 0.82rem; letter-spacing: 0.14em; }
.democard .dc-qr { margin-top: 1.6rem; border-radius: 8px; background: #fff; padding: 4px; }
.democard .dc-scan { font-size: 0.66rem; letter-spacing: 0.05em; margin-top: 0.6rem; opacity: 0.7; }
.democard.style-classic .dc-names { font-family: 'Cormorant Garamond', serif; font-weight: 500; }
.democard.style-modern .dc-names { font-family: 'Urbanist', sans-serif; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; font-size: 1.85rem; }
.democard.style-playful .dc-names { font-family: 'Cormorant Garamond', serif; font-style: italic; font-weight: 500; }
.democard.pal-cream { background: #faf9f7; color: #1a1814; }
.democard.pal-cream .dc-eyebrow, .democard.pal-cream .dc-date { color: #b89b6e; }
.democard.pal-sage { background: #e7ede3; color: #33402d; }
.democard.pal-sage .dc-eyebrow, .democard.pal-sage .dc-date { color: #7d9068; }
.democard.pal-blush { background: #f7eae8; color: #5e3d39; }
.democard.pal-blush .dc-eyebrow, .democard.pal-blush .dc-date { color: #c58e88; }

/* Print panel */
.print-cta { margin-top: 2.5rem; display: grid; grid-template-columns: auto 1fr auto; gap: 1.6rem; align-items: center; background: var(--card); border: 1px solid var(--line); border-radius: 20px; padding: 1.6rem 1.8rem; }
.print-cta .pc-stack { position: relative; width: 84px; height: 104px; flex-shrink: 0; }
.print-cta .pc-stack .pc { position: absolute; inset: 0; border-radius: 7px; border: 1px solid var(--line); background: #fff; box-shadow: 0 10px 24px -14px rgba(26,24,20,0.4); }
.print-cta .pc-stack .pc:nth-child(1) { transform: rotate(-8deg) translate(-4px, 2px); background: #f2ede4; }
.print-cta .pc-stack .pc:nth-child(2) { transform: rotate(4deg) translate(3px, -1px); background: #efe7da; }
.print-cta .pc-stack .pc:nth-child(3) { display: flex; align-items: center; justify-content: center; }
.print-cta .pc-stack .pc:nth-child(3) span { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; color: var(--gold-deep); }
.print-cta h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 600; line-height: 1.1; }
.print-cta p { color: var(--ink-2); font-size: 0.94rem; margin-top: 0.3rem; line-height: 1.5; max-width: 48ch; }
@media (max-width: 860px) {
    .cardlab { grid-template-columns: 1fr; gap: 2rem; }
    .lab-controls { max-width: none; }
    .print-cta { grid-template-columns: 1fr; text-align: center; justify-items: center; gap: 1rem; }
    .print-cta .pc-stack { margin: 0 auto; }
}

/* ==========================================================================
   TESTEVENT
   ========================================================================== */
.trydemo { display: grid; grid-template-columns: 1fr auto; gap: 3rem; align-items: center; background: var(--ink); color: var(--warm); border-radius: 24px; padding: clamp(2rem, 1.5rem + 2vw, 3.2rem); position: relative; overflow: hidden; }
.trydemo::before { content: ''; position: absolute; inset: 0; background: radial-gradient(60% 80% at 90% 10%, rgba(184,155,110,0.22), transparent 60%); }
.trydemo > * { position: relative; z-index: 2; }
.trydemo .eyebrow { color: var(--ember); }
.trydemo .eyebrow::before { background: var(--ember); }
.trydemo h3 { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.7rem, 1.3rem + 1.6vw, 2.4rem); font-weight: 500; margin-top: 1rem; line-height: 1.1; }
.trydemo p { color: rgba(250,249,247,0.74); margin-top: 0.8rem; max-width: 48ch; line-height: 1.6; }
.try-cta { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 1.8rem; }
.trydemo .btn-primary { background: var(--warm); color: var(--ink); }
.trydemo .btn-primary:hover { background: #fff; }
.qrbox { text-align: center; }
.qrbox img { display: block; border-radius: 14px; border: 1px solid rgba(255,255,255,0.16); background: #fff; padding: 8px; }
.qrbox span { display: block; font-size: 0.78rem; color: rgba(250,249,247,0.6); margin-top: 0.75rem; }
@media (max-width: 760px) { .trydemo { grid-template-columns: 1fr; } .qrbox { display: none; } }

/* ==========================================================================
   DSGVO / LIFECYCLE TIMELINE
   ========================================================================== */
.trust-band { background-color: var(--warm-2); background-image: var(--paper); }
.lifecycle { margin-top: 1rem; }
.lc-track { position: relative; display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem; margin: 2.5rem 0 1rem; }
.lc-track::before { content: ''; position: absolute; top: 13px; left: 6%; right: 6%; height: 2px; background: linear-gradient(90deg, var(--gold) 0%, var(--gold) 62%, var(--blush) 100%); opacity: 0.5; }
.lc-step { position: relative; text-align: center; }
.lc-dot { width: 28px; height: 28px; border-radius: 50%; background: var(--card); border: 2px solid var(--gold); margin: 0 auto 0.9rem; display: flex; align-items: center; justify-content: center; position: relative; z-index: 2; }
.lc-dot.warn { border-color: var(--blush); }
.lc-dot i { width: 9px; height: 9px; border-radius: 50%; background: var(--gold); }
.lc-dot.warn i { background: var(--blush); }
.lc-step .lc-when { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold-deep); }
.lc-step .lc-when.warn { color: var(--blush); }
.lc-step h4 { font-size: 0.96rem; font-weight: 600; margin-top: 0.3rem; }
.lc-step p { font-size: 0.82rem; color: var(--ink-2); line-height: 1.45; margin-top: 0.25rem; }
.trust-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-top: 2.6rem; }
.tcard { background: var(--card); border: 1px solid var(--line); border-radius: 16px; padding: 1.4rem; }
.tcard .ti { width: 38px; height: 38px; border-radius: 10px; background: var(--warm); border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; color: var(--gold-deep); margin-bottom: 0.9rem; }
.tcard h4 { font-size: 0.98rem; font-weight: 600; }
.tcard p { font-size: 0.86rem; color: var(--ink-2); line-height: 1.5; margin-top: 0.3rem; }
@media (max-width: 880px) {
    .lc-track { grid-template-columns: 1fr 1fr; gap: 1.5rem 1rem; }
    .lc-track::before { display: none; }
    .trust-cards { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) { .lc-track { grid-template-columns: 1fr; } .trust-cards { grid-template-columns: 1fr; } }

/* ==========================================================================
   PLANS
   ========================================================================== */
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; align-items: start; }
.plan { background: var(--card); border: 1px solid var(--line); border-radius: 18px; padding: 2rem 1.75rem; transition: transform var(--d-mid) var(--e-out), box-shadow var(--d-mid); }
.plan:hover { transform: translateY(-5px); box-shadow: 0 24px 54px -24px rgba(26,24,20,0.2); }
.plan.featured { border-color: var(--ink); position: relative; box-shadow: 0 24px 54px -28px rgba(26,24,20,0.28); }
.plan.featured::before { content: 'Beliebt'; position: absolute; top: -0.7rem; left: 50%; transform: translateX(-50%); background: var(--ink); color: var(--warm); font-size: 0.65rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.28rem 0.9rem; border-radius: 20px; }
.plan .pname { font-size: 1.2rem; font-weight: 600; }
.plan .pprice { font-family: 'Cormorant Garamond', serif; font-size: 3rem; font-weight: 600; letter-spacing: -0.02em; margin: 0.4rem 0 0.1rem; }
.plan .ponce { font-size: 0.8rem; color: var(--ink-2); }
.plan ul { list-style: none; margin: 1.5rem 0; display: flex; flex-direction: column; gap: 0.7rem; }
.plan li { font-size: 0.9rem; color: #4a443e; display: flex; gap: 0.5rem; align-items: flex-start; }
.plan li svg { flex-shrink: 0; margin-top: 2px; color: var(--gold-deep); }
.plan .btn { width: 100%; justify-content: center; }
.plans-note { text-align: center; margin-top: 1.6rem; font-size: 0.9rem; color: var(--ink-2); }
.plans-note strong { color: var(--ink); font-weight: 600; }
.trust { display: flex; gap: 1.6rem; justify-content: center; flex-wrap: wrap; margin-top: 2.2rem; font-size: 0.84rem; color: var(--ink-2); }
.trust span { display: inline-flex; align-items: center; gap: 0.45rem; }
.trust svg { color: var(--gold-deep); }
@media (max-width: 860px) { .plans { grid-template-columns: 1fr; } }

/* ==========================================================================
   CTA + FOOTER
   ========================================================================== */
.cta-strip { background: var(--ink); color: var(--warm); border-radius: 28px; padding: clamp(3rem, 2rem + 4vw, 5rem) 2rem; text-align: center; position: relative; overflow: hidden; }
.cta-strip::before { content: ''; position: absolute; inset: 0; background: radial-gradient(50% 80% at 50% 0%, rgba(184,155,110,0.25), transparent 65%); }
.cta-strip > * { position: relative; z-index: 2; }
.cta-strip h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.1rem, 1.4rem + 3vw, 3.4rem); font-weight: 500; line-height: 1.08; text-wrap: balance; }
.cta-strip h2 em { font-style: italic; color: var(--ember); }
.cta-strip p { color: rgba(250,249,247,0.74); margin: 1rem auto 2rem; max-width: 44ch; line-height: 1.6; }
.cta-strip .btn-primary { background: var(--warm); color: var(--ink); }
.cta-strip .btn-primary:hover { background: #fff; }

/* Inline contextual links (Ratgeber / article links within sections) */
.text-link { display: inline-block; margin-top: 1.4rem; font-size: 0.9rem; font-weight: 500; color: var(--ember); text-decoration: none; border-bottom: 1px solid currentColor; padding-bottom: 1px; transition: color var(--d-fast), opacity var(--d-fast); }
.text-link:hover { opacity: 0.72; }

footer { border-top: 1px solid var(--line); padding: 3rem 0; margin-top: 1rem; }
.foot-inner { display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 2.4rem 3rem; }
footer .logo { font-size: 1.1rem; }
.foot-brand { display: flex; flex-direction: column; gap: 0.7rem; }
.foot-meta { font-size: 0.82rem; color: var(--ink-2); max-width: 28ch; }
.foot-cols { display: flex; gap: 2.4rem 3rem; flex-wrap: wrap; }
.foot-col { display: flex; flex-direction: column; gap: 0.8rem; min-width: 130px; }
.foot-col-label { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink); }
.foot-nav { display: flex; flex-direction: column; gap: 0.55rem; font-size: 0.86rem; color: var(--ink-2); }
.foot-nav a { transition: color var(--d-fast); }
.foot-nav a:hover { color: var(--ink); }
@media (max-width: 640px) { .foot-inner { flex-direction: column; } .foot-cols { gap: 2rem 2.4rem; } }

/* ==========================================================================
   REVEAL MOTION  (GSAP-driven; .anim is set in <head> only when JS runs and
   reduced-motion is off, so content is never hidden without an animator)
   ========================================================================== */
.anim .reveal { opacity: 0; transform: translateY(24px); }
.anim .reveal-stagger > * { opacity: 0; transform: translateY(18px); }
.anim .hero-copy > *, .anim .hero-stage > * { opacity: 0; }
.anim .develop-btn { opacity: 0; }

/* ==========================================================================
   FAQ SECTION
   ========================================================================== */
.faq-section { padding: clamp(4rem, 3rem + 4vw, 8rem) 0; border-top: 1px solid var(--line); }
.faq-section > .wrap > .serif { font-size: clamp(2rem, 1.4rem + 2.5vw, 3.2rem); font-weight: 500; line-height: 1.1; letter-spacing: -0.01em; margin-bottom: clamp(2rem, 1.5rem + 2vw, 3.5rem); text-wrap: balance; }
.faq-list { display: flex; flex-direction: column; gap: 0; border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary { list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 1.5rem; padding: 1.4rem 0; font-size: clamp(0.95rem, 0.88rem + 0.3vw, 1.05rem); font-weight: 500; color: var(--ink); cursor: pointer; line-height: 1.45; transition: color var(--d-fast); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; flex-shrink: 0; font-size: 1.4rem; font-weight: 300; color: var(--ember); line-height: 1; transition: transform var(--d-normal) var(--ease-out); }
.faq-item[open] summary { color: var(--ember); }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { margin: 0 0 1.5rem; color: var(--ink-2); font-size: 0.95rem; line-height: 1.7; max-width: 70ch; }
.faq-item summary:hover { color: var(--ember); }

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
    .hero-badge .pulse::after, .proj-live .dot, .face-self .scanline, .devframe .undev .spin { animation: none !important; }
}
