/* ===== PickyFeed Homepage v2 ===== */

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

:root {
    --accent: #EBAF32;
    --accent-soft: #f7cf7c;
    --accent-deep: #b9820f;

    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --wrap: 1160px;
    --r-lg: 24px;
    --r-md: 16px;
    --r-sm: 10px;
    --pill: 9999px;

    /* Light theme (default) */
    --bg: #f7f6f3;
    --bg-alt: #ffffff;
    --surface: #ffffff;
    --surface-2: #f1efe9;
    --text: #14140f;
    --text-2: #56564e;
    --text-3: #8a8a80;
    --line: rgba(20, 20, 15, 0.10);
    --line-soft: rgba(20, 20, 15, 0.06);
    --nav-bg: rgba(247, 246, 243, 0.72);
    --shadow: 0 24px 60px rgba(20, 20, 15, 0.10);
    --shadow-sm: 0 6px 20px rgba(20, 20, 15, 0.07);
    --glow: radial-gradient(60% 60% at 70% 20%, rgba(235, 175, 50, 0.30), transparent 70%);
    --screen: #ffffff;
    --screen-2: #f0eee8;
}

[data-theme="dark"] {
    --bg: #0b0b0c;
    --bg-alt: #121214;
    --surface: #161618;
    --surface-2: #1e1e21;
    --text: #f4f3f0;
    --text-2: #a7a7a2;
    --text-3: #767672;
    --line: rgba(255, 255, 255, 0.10);
    --line-soft: rgba(255, 255, 255, 0.06);
    --nav-bg: rgba(11, 11, 12, 0.68);
    --shadow: 0 30px 70px rgba(0, 0, 0, 0.55);
    --shadow-sm: 0 8px 24px rgba(0, 0, 0, 0.4);
    --glow: radial-gradient(60% 60% at 70% 20%, rgba(235, 175, 50, 0.22), transparent 70%);
    --screen: #131315;
    --screen-2: #1c1c1f;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    transition: background .3s ease, color .3s ease;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.wrap.narrow { max-width: 820px; }

/* ===== Navigation ===== */
.nav {
    position: fixed; inset: 0 0 auto 0; z-index: 100;
    background: var(--nav-bg);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border-bottom: 1px solid var(--line-soft);
}
.nav-inner {
    max-width: var(--wrap); margin: 0 auto; padding: 12px 24px;
    display: flex; align-items: center; gap: 24px;
}
.brand { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.brand-icon { width: 30px; height: 30px; border-radius: 8px; box-shadow: var(--shadow-sm); }
.brand-word { font-weight: 700; letter-spacing: -0.02em; font-size: 1.05rem; }

.nav-links { display: flex; gap: 26px; margin-left: auto; font-size: .92rem; color: var(--text-2); }
.nav-links a { position: relative; padding: 4px 0; transition: color .2s; }
.nav-links a:hover { color: var(--text); }
.nav-links a::after {
    content: ''; position: absolute; left: 0; right: 100%; bottom: 0; height: 2px;
    background: var(--accent); border-radius: 2px; transition: right .25s ease;
}
.nav-links a:hover::after { right: 0; }

.nav-actions { display: flex; align-items: center; gap: 8px; margin-left: auto; }
.nav-links + .nav-actions { margin-left: 24px; }

.icon-btn {
    width: 34px; height: 34px; border-radius: var(--pill);
    border: 1px solid var(--line); background: transparent; color: var(--text);
    cursor: pointer; font-size: .95rem; line-height: 1;
    display: grid; place-items: center; transition: background .2s, border-color .2s;
}
.icon-btn:hover { background: var(--surface-2); border-color: var(--accent); }

.lang-select {
    appearance: none; -webkit-appearance: none;
    border: 1px solid var(--line); background: transparent; color: var(--text);
    border-radius: var(--pill); padding: 7px 12px; font: inherit; font-size: .8rem;
    font-weight: 600; letter-spacing: .04em; cursor: pointer;
}
.lang-select:hover { border-color: var(--accent); }
.lang-select option { background: var(--bg-alt); color: var(--text); }

.hamburger { display: none; width: 34px; height: 34px; border: 1px solid var(--line); background: none; border-radius: var(--pill); cursor: pointer; padding: 9px 8px; }
.hamburger span { display: block; height: 1.5px; background: var(--text); border-radius: 2px; margin-bottom: 4px; }
.hamburger span:last-child { margin-bottom: 0; width: 70%; }

/* Slide menu */
.menu-overlay {
    position: fixed; inset: 0; background: rgba(0,0,0,.5); backdrop-filter: blur(4px);
    opacity: 0; pointer-events: none; transition: opacity .3s; z-index: 110;
}
.menu-overlay.active { opacity: 1; pointer-events: auto; }
.slide-menu {
    position: fixed; top: 0; right: 0; bottom: 0; width: min(320px, 86vw);
    background: var(--bg-alt); border-left: 1px solid var(--line);
    transform: translateX(105%); transition: transform .35s cubic-bezier(.4,0,.2,1);
    z-index: 120; padding: 20px; display: flex; flex-direction: column;
}
.slide-menu.active { transform: translateX(0); }
.slide-menu-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; }
.slide-menu-nav { display: flex; flex-direction: column; }
.slide-menu-nav a { padding: 14px 4px; border-bottom: 1px solid var(--line-soft); font-weight: 500; }
.slide-menu-nav a:hover { color: var(--accent); }

/* ===== Hero ===== */
.hero { position: relative; padding: 150px 0 90px; overflow: hidden; }
.hero-glow { position: absolute; inset: -20% -10% auto -10%; height: 900px; background: var(--glow); pointer-events: none; }
.hero-inner {
    position: relative; max-width: var(--wrap); margin: 0 auto; padding: 0 24px;
    display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center;
}

.eyebrow {
    display: inline-flex; align-items: center; gap: 9px;
    font-size: .8rem; font-weight: 600; letter-spacing: .02em; color: var(--text-2);
    border: 1px solid var(--line); border-radius: var(--pill);
    padding: 7px 15px; background: var(--surface); box-shadow: var(--shadow-sm);
}
.eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 4px rgba(235,175,50,.18); }

.hero-brand {
    display: flex; align-items: center; gap: 18px;
    font-size: clamp(2.7rem, 6.2vw, 4.5rem); font-weight: 800;
    letter-spacing: -0.035em; color: var(--text); line-height: 1;
}
.hero-brand-icon { width: clamp(52px, 7vw, 76px); height: clamp(52px, 7vw, 76px); border-radius: 18px; box-shadow: var(--shadow-sm); }

.hero-title {
    font-size: clamp(1.7rem, 2.9vw, 2.3rem); line-height: 1.15; letter-spacing: -0.02em;
    font-weight: 700; color: var(--text-2); margin: 16px 0 18px;
}
.hero-sub { font-size: clamp(1rem, 1.35vw, 1.15rem); color: var(--text-2); max-width: 33em; }

.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin: 32px 0 22px; }
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 13px 26px; border-radius: var(--pill); font-weight: 600; font-size: .95rem;
    border: 1px solid transparent; cursor: pointer; transition: transform .18s, box-shadow .2s, background .2s;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--accent); color: #16150f; box-shadow: 0 10px 30px rgba(235,175,50,.32); }
.btn-primary:hover { background: var(--accent-soft); }
.btn-ghost { border-color: var(--line); color: var(--text); background: var(--surface); }
.btn-ghost:hover { border-color: var(--accent); }

.beta-card {
    display: flex; align-items: center; gap: 18px;
    max-width: 520px; margin: 0 0 36px; padding: 14px 20px 14px 14px;
    border: 1px solid var(--line); border-radius: var(--r-md);
    background: var(--surface); box-shadow: var(--shadow-sm);
    transition: border-color .25s ease, transform .25s ease;
}
.beta-card:hover { border-color: var(--accent); transform: translateY(-2px); }
.beta-qr { width: 104px; height: 104px; flex: none; border-radius: var(--r-sm); background: #fff; padding: 5px; }
.beta-text { display: flex; flex-direction: column; gap: 3px; }
.beta-kicker { font-size: .7rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--accent); }
.beta-title { font-size: 1rem; font-weight: 700; color: var(--text); line-height: 1.3; }
.beta-note { font-size: .82rem; color: var(--text-2); line-height: 1.45; }
.beta-free { font-size: .82rem; font-weight: 600; color: var(--text); line-height: 1.45; margin-top: 2px; }

.hero-facts { display: flex; gap: 30px; list-style: none; flex-wrap: wrap; }
.hero-facts li { display: flex; flex-direction: column; }
.hero-facts strong { font-size: 1.7rem; font-weight: 800; letter-spacing: -0.03em; color: var(--accent); }
.hero-facts span { font-size: .85rem; color: var(--text-2); }

.hero-visual { position: relative; display: grid; place-items: center; }
.hero-logo {
    position: absolute; width: 150px; right: -6px; bottom: -14px;
    filter: drop-shadow(0 24px 40px rgba(0,0,0,.35)); transform: rotate(6deg);
    pointer-events: none;
}

/* ===== Phone frames with real screenshots ===== */
.phone { width: 260px; }
.phone-hero { width: 300px; }
.phone-bezel {
    position: relative; background: linear-gradient(160deg, #2a2a2e, #0e0e10);
    border-radius: 42px; padding: 9px; box-shadow: var(--shadow);
    border: 1px solid rgba(255,255,255,.10);
}
.shot { width: 100%; height: auto; border-radius: 34px; display: block; }
.phone-bezel { transition: border-color .25s ease, transform .25s ease; }
.phone-item:hover .phone-bezel,
.hero-visual:hover .phone-bezel { border-color: var(--accent); }
.capture-frame { transition: border-color .25s ease, transform .25s ease; }
.capture-frame:hover { border-color: var(--accent); }
.phone-hero .shot { border-radius: 36px; }

/* ===== Sections ===== */
.section { padding: 96px 0; }
.section.alt { background: var(--bg-alt); border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }

.kicker { font-size: .78rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--accent); margin-bottom: 12px; }
.h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); line-height: 1.12; letter-spacing: -0.03em; font-weight: 800; margin-bottom: 18px; }
.h2.center, .lead.center { text-align: center; }
.lead { font-size: 1.05rem; color: var(--text-2); max-width: 44em; }
.lead.center { margin: 0 auto 48px; }

/* Pillars */
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 44px; }
.pillar {
    background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg);
    padding: 30px 26px 32px; box-shadow: var(--shadow-sm);
    transition: transform .25s ease, border-color .25s ease;
}
.pillar:hover { transform: translateY(-4px); border-color: var(--accent); }
.pillar-num { font-size: .8rem; font-weight: 800; letter-spacing: .1em; color: var(--accent); margin-bottom: 18px; }
.pillar h3 { font-size: 1.2rem; letter-spacing: -.02em; margin-bottom: 10px; }
.pillar p { color: var(--text-2); font-size: .95rem; }

/* Werbefrei-Band */
.adfree {
    padding: 74px 0; text-align: center;
    border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft);
    background:
        radial-gradient(70% 130% at 50% 0%, rgba(235,175,50,.16), transparent 70%),
        var(--bg-alt);
}
.adfree-big {
    font-size: clamp(2.6rem, 7vw, 5rem); font-weight: 800; line-height: 1;
    letter-spacing: -0.04em; color: var(--accent);
}
.adfree-sub {
    margin: 20px auto 0; max-width: 40em; font-size: 1.02rem; color: var(--text-2);
}

/* Funktionsraster */
.feat-kicker { margin-top: 64px; }
.h3 { font-size: clamp(1.4rem, 2.2vw, 1.8rem); letter-spacing: -.025em; font-weight: 800; margin-bottom: 26px; }
.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.feat {
    background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-md);
    padding: 20px 22px; transition: border-color .25s ease, transform .25s ease;
}
.feat:hover { border-color: var(--accent); transform: translateY(-3px); }
.feat-ico { font-size: 1.15rem; display: block; margin-bottom: 10px; line-height: 1; }
.feat h4 { font-size: .98rem; letter-spacing: -.01em; margin-bottom: 6px; }
.feat p { font-size: .87rem; color: var(--text-2); }

/* Split layout */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split.reverse .split-copy { order: 2; }
.split.reverse .split-visual { order: 1; }
.center-visual { display: grid; place-items: center; }
.center-visual .phone-item { width: auto; }

.ticks { list-style: none; margin: 24px 0 8px; display: flex; flex-direction: column; gap: 12px; }
.ticks li { position: relative; padding-left: 30px; color: var(--text-2); }
.ticks li::before {
    content: '✓'; position: absolute; left: 0; top: 0;
    width: 20px; height: 20px; border-radius: 50%; background: rgba(235,175,50,.16);
    color: var(--accent); font-size: .7rem; display: grid; place-items: center; font-weight: 700;
}

/* Phone row */
.phone-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; align-items: start; }
.phone-item { width: 100%; display: flex; flex-direction: column; align-items: center; gap: 16px; }
.phone-item .phone { width: 100%; max-width: 230px; }
.phone-item figcaption { font-size: .88rem; font-weight: 600; color: var(--text-2); }


/* Extras: Pillen-Menü & Artikelerfassung */
.extras-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 44px; }
.extra {
    display: flex; gap: 24px; align-items: center;
    background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg);
    padding: 26px; box-shadow: var(--shadow-sm);
    transition: transform .25s ease, border-color .25s ease;
}
.extra:hover { transform: translateY(-4px); border-color: var(--accent); }
.phone-extra { width: 150px; flex-shrink: 0; }
.phone-extra .phone-bezel { border-radius: 26px; padding: 6px; }
.phone-extra .shot { border-radius: 21px; }
.capture-frame {
    width: 168px; flex-shrink: 0; border-radius: 18px; overflow: hidden;
    border: 1px solid var(--line); box-shadow: var(--shadow);
}
.capture-img { width: 100%; height: auto; display: block; }
.extra-copy h3 { font-size: 1.1rem; letter-spacing: -.02em; margin-bottom: 8px; }
.extra-copy p { color: var(--text-2); font-size: .92rem; }

/* Mini grid */
.mini-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 28px; }
.mini {
    background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-md); padding: 20px;
    transition: border-color .25s ease, transform .25s ease;
}
.mini:hover { border-color: var(--accent); transform: translateY(-3px); }
.mini-ico { font-size: 1.2rem; display: block; margin-bottom: 10px; }
.mini h4 { font-size: .98rem; margin-bottom: 6px; letter-spacing: -.01em; }
.mini p { font-size: .87rem; color: var(--text-2); }

/* Privacy */
.privacy { background:
    linear-gradient(180deg, transparent, rgba(235,175,50,.05), transparent); }
.priv-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(196px, 1fr)); gap: 18px; margin-top: 8px; }
.priv-card {
    background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-md);
    padding: 24px 20px; text-align: center;
    transition: border-color .25s ease, transform .25s ease;
}
.priv-card:hover { border-color: var(--accent); transform: translateY(-3px); }
.priv-card h4 { font-size: 1rem; margin-bottom: 8px; }
.highlight-card {
    display: flex; gap: 34px; align-items: center; margin-top: 20px;
    background: var(--surface); border: 1px solid var(--line);
    border-radius: var(--r-lg); padding: 28px 30px; box-shadow: var(--shadow-sm);
}
.highlight-icon {
    flex-shrink: 0; width: 44px; height: 44px; border-radius: 50%;
    background: rgba(235,175,50,.14); color: var(--accent);
    display: grid; place-items: center; font-size: 1.3rem;
}
.highlight-text { flex: 1; }
.highlight-card { transition: border-color .25s ease, transform .25s ease; }
.highlight-card:hover { border-color: var(--accent); transform: translateY(-3px); }
.highlight-card h3 { font-size: 1.15rem; letter-spacing: -.02em; margin-bottom: 8px; }
.highlight-icon { margin-bottom: 14px; }
.phone-duo { display: flex; gap: 16px; flex-shrink: 0; }
.phone-inline { width: 172px; flex-shrink: 0; }
.phone-inline .phone-bezel { border-radius: 28px; padding: 6px; }
.phone-inline .shot { border-radius: 23px; }
.highlight-card p { color: var(--text-2); font-size: .95rem; max-width: 60em; }
.priv-card p { font-size: .87rem; color: var(--text-2); }

/* Legal */
.legal { padding-top: 40px; }
.legal-block {
    border: 1px solid var(--line); border-radius: var(--r-md); background: var(--surface);
    margin-bottom: 12px; overflow: hidden; transition: border-color .25s ease;
}
.legal-block:hover { border-color: var(--accent); }
.legal-block summary {
    list-style: none; cursor: pointer; padding: 20px 24px; font-weight: 600;
    display: flex; align-items: center; justify-content: space-between;
}
.legal-block summary::-webkit-details-marker { display: none; }
.chev { width: 9px; height: 9px; border-right: 2px solid var(--text-3); border-bottom: 2px solid var(--text-3); transform: rotate(45deg); transition: transform .25s; }
.legal-block[open] .chev { transform: rotate(-135deg); }
.legal-body { padding: 0 24px 24px; color: var(--text-2); font-size: .93rem; }
.legal-body p { margin-bottom: 12px; }
.legal-body strong { color: var(--text); }

.contact-form { margin-top: 18px; display: flex; flex-direction: column; gap: 14px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: .8rem; color: var(--text-3); font-weight: 600; }
.form-group input, .form-group textarea {
    font: inherit; font-size: .93rem; color: var(--text);
    background: var(--bg); border: 1px solid var(--line); border-radius: var(--r-sm);
    padding: 11px 14px; resize: vertical;
}
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--accent); }
.contact-form .btn { align-self: flex-start; }
/* Honigtopf gegen Formular-Bots: fuer Menschen unsichtbar, fuer Bots ausfuellbar. */
.form-trap { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.contact-status { font-size: .9rem; margin-top: -4px; min-height: 1.2em; }
.contact-status:empty { display: none; }
.contact-status.is-wait { color: var(--text-3); }
.contact-status.is-ok { color: var(--accent); }
.contact-status.is-error { color: #e2695f; }
.contact-status a { color: inherit; }

/* Footer */
.footer { border-top: 1px solid var(--line); padding: 40px 0; background: var(--bg-alt); }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.footer-links { display: flex; gap: 20px; font-size: .9rem; color: var(--text-2); }
.footer-links a:hover { color: var(--accent); }
.footer-copy { font-size: .82rem; color: var(--text-3); }

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ===== Responsive ===== */
@media (max-width: 1000px) {
    .nav-links { display: none; }
    .hamburger { display: block; }
    .hero-inner { grid-template-columns: 1fr; gap: 48px; }
    .hero { padding-top: 120px; text-align: left; }
    .hero-logo { width: 110px; right: 4%; }
    .pillars { grid-template-columns: 1fr; }
    .feat-grid { grid-template-columns: repeat(2, 1fr); }
    .split, .split.reverse { grid-template-columns: 1fr; gap: 40px; }
    .split.reverse .split-copy, .split.reverse .split-visual { order: initial; }
    .phone-row { grid-template-columns: repeat(2, 1fr); gap: 32px; }
    .extras-grid { grid-template-columns: 1fr; }
    .priv-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 620px) {
    .section { padding: 68px 0; }
    .hero-facts { gap: 24px; }
    .beta-qr, .beta-scan { display: none; }
    .beta-card { padding: 16px 18px; }
    .mini-grid { grid-template-columns: 1fr; }
    .feat-grid { grid-template-columns: 1fr; }
    .extra { flex-direction: column; align-items: flex-start; gap: 20px; }
    .phone-extra { width: 160px; align-self: center; }
    .capture-frame { width: 200px; align-self: center; }
    .phone-row { grid-template-columns: 1fr; }
    .phone-item .phone { max-width: 240px; }
    .priv-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .highlight-card { flex-direction: column; gap: 22px; padding: 24px; align-items: flex-start; }
    .phone-inline { width: 150px; align-self: center; }
    .phone-duo { align-self: center; width: 100%; justify-content: center; gap: 10px; }
    .phone-duo .phone-inline { width: auto; flex: 1 1 0; max-width: 150px; }
    .footer-inner { flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
    * { animation: none !important; transition-duration: .01ms !important; }
    html { scroll-behavior: auto; }
}
