/* Hallo — everyday German. Warm cream + per-brand accent, rounded friendly type. */
:root {
    --cream: #FAEBD9;
    --cream-2: #FFF6EC;
    --card: #FFFFFF;
    --orange: #CE781E;
    --orange-dark: #A56018;
    --orange-light: #F6E7D6;
    --teal: #408A6E;
    --teal-dark: #336E58;
    --teal-light: #D9E8E2;
    --gold: #6E9660;
    --purple: #7C5CFC;
    --brown: #3A2A1E;
    --brown-muted: #7C6B5C;
    --radius: 20px;
    --radius-sm: 14px;
    --shadow: 0 4px 18px rgba(58,42,30,0.07);
    --shadow-lg: 0 16px 44px rgba(58,42,30,0.13);
    --maxw: 1140px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--brown);
    background: var(--cream);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
h1, h2, h3, .logo-text, .stat-number, .nav-cta, .pill { font-family: 'Baloo 2', sans-serif; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.text-orange { color: var(--orange); }
.text-teal { color: var(--teal); }

/* ---------- Nav ---------- */
nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    padding: 16px 0; transition: all .3s ease;
    background: transparent;
}
nav.scrolled {
    background: rgba(255,246,236,0.88);
    backdrop-filter: saturate(160%) blur(12px);
    box-shadow: 0 2px 16px rgba(58,42,30,0.06);
    padding: 10px 0;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.nav-left { display: flex; align-items: center; gap: 8px; }
.nav-back {
    display: flex; align-items: center; justify-content: center;
    width: 38px; height: 38px; border-radius: 11px;
    color: var(--brown-muted); transition: all .2s; flex-shrink: 0;
}
.nav-back:hover { background: var(--orange-light); color: var(--orange-dark); }
.logo { display: flex; align-items: center; gap: 11px; }
.nav-icon { width: 40px; height: 40px; border-radius: 11px; box-shadow: var(--shadow); }
.logo-text { font-weight: 800; font-size: 1.32rem; color: var(--brown); }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { font-weight: 700; color: var(--brown-muted); font-size: .96rem; transition: color .2s; }
.nav-links a:hover { color: var(--orange); }
.nav-cta {
    background: var(--orange); color: #fff !important; font-weight: 700;
    padding: 10px 20px; border-radius: 999px; font-size: .95rem;
    box-shadow: 0 6px 16px rgba(240,90,34,0.32); transition: transform .2s, box-shadow .2s;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 10px 22px rgba(240,90,34,0.4); }
.mobile-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 6px; }
.mobile-toggle span { display: block; width: 24px; height: 2.5px; background: var(--brown); border-radius: 2px; margin: 5px 0; transition: .3s; }

/* ---------- Hero ---------- */
.hero {
    position: relative; padding: 150px 0 90px;
    background:
        radial-gradient(1200px 600px at 85% -5%, #F8ECDF 0%, transparent 55%),
        radial-gradient(900px 500px at 5% 10%, #E4EFEB 0%, transparent 50%),
        linear-gradient(180deg, #FBEEDD 0%, var(--cream) 100%);
    overflow: hidden;
}
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 40px; align-items: center; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--cream-2); border: 1.5px solid var(--orange-light);
    color: var(--orange-dark); font-weight: 800; font-size: .8rem; letter-spacing: .04em;
    padding: 7px 15px; border-radius: 999px; text-transform: uppercase; margin-bottom: 22px;
}
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 0 rgba(240,90,34,.5); animation: pulse 2s infinite; }
@keyframes pulse { 70% { box-shadow: 0 0 0 8px rgba(240,90,34,0); } 100% { box-shadow: 0 0 0 0 rgba(240,90,34,0); } }
.hero h1 { font-size: clamp(2.5rem, 5.4vw, 4rem); font-weight: 800; line-height: 1.06; letter-spacing: -.01em; color: var(--brown); }
.hero-sub { font-size: 1.16rem; color: var(--brown-muted); margin: 20px 0 12px; max-width: 480px; font-weight: 600; }
.hero-es { font-family: 'Baloo 2'; font-weight: 600; color: var(--teal-dark); font-size: 1.05rem; margin-bottom: 26px; }
.hero-es b { color: var(--orange); }
.hero-cta-row { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-bottom: 34px; }
.coming-soon {
    display: inline-flex; align-items: center; gap: 9px;
    background: var(--brown); color: #fff; font-family: 'Baloo 2'; font-weight: 600;
    padding: 14px 24px; border-radius: 999px; font-size: 1rem; box-shadow: var(--shadow-lg);
}
.coming-soon .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--gold); }
.cta-note { color: var(--brown-muted); font-weight: 700; font-size: .9rem; }
.hero-stats { display: flex; gap: 30px; }
.hero-stats .stat-number { font-size: 1.9rem; font-weight: 800; color: var(--orange); line-height: 1; }
.hero-stats .stat-label { font-size: .8rem; font-weight: 700; color: var(--brown-muted); text-transform: uppercase; letter-spacing: .05em; margin-top: 4px; }

/* hero mascot + phrase pills */
.hero-art { position: relative; display: flex; justify-content: center; align-items: flex-end; min-height: 440px; }
.hero-glow { position: absolute; width: 430px; height: 430px; border-radius: 50%; background: radial-gradient(circle, rgba(255,220,190,.85) 0%, rgba(212,240,233,.4) 55%, transparent 72%); top: 50%; left: 50%; transform: translate(-50%,-46%); z-index: 0; }
.hero-mascot { position: relative; z-index: 2; width: min(78%, 340px); filter: drop-shadow(0 22px 30px rgba(58,42,30,.22)); animation: float 5s ease-in-out infinite; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
.pill {
    position: absolute; z-index: 3; background: #fff; font-weight: 700; font-size: .98rem;
    padding: 9px 16px; border-radius: 999px; box-shadow: var(--shadow-lg); white-space: nowrap;
    animation: bob 4s ease-in-out infinite;
}
.pill.p1 { top: 8%;  left: 2%;  color: var(--orange); animation-delay: 0s; }
.pill.p2 { top: 20%; right: 0%; color: var(--teal-dark); animation-delay: .5s; }
.pill.p3 { bottom: 26%; left: -2%; color: var(--gold); animation-delay: 1s; }
.pill.p4 { bottom: 15%; right: 1%; color: var(--purple); animation-delay: 1.5s; }
.pill.p5 { bottom: -2%; left: 50%; transform: translateX(-50%); background: var(--orange); color: #fff; font-family: 'Baloo 2'; font-weight: 600; animation-delay: .8s; }
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
.pill.p5 { animation-name: bobx; }
@keyframes bobx { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(-9px); } }

/* ---------- Highlight strip ---------- */
.strip { background: var(--brown); color: #fff; padding: 22px 0; }
.strip-inner { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 34px; }
.strip-item { display: flex; align-items: center; gap: 9px; font-weight: 700; font-size: .96rem; }
.strip-item svg { color: var(--gold); flex-shrink: 0; }

/* ---------- Sections ---------- */
section { padding: 90px 0; }
.section-tag { color: var(--teal-dark); font-family: 'Baloo 2'; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; font-size: .82rem; margin-bottom: 10px; }
.section-head { text-align: center; max-width: 620px; margin: 0 auto 54px; }
.section-head h2 { font-size: clamp(2rem, 3.8vw, 2.7rem); font-weight: 800; line-height: 1.12; color: var(--brown); }
.section-head p { color: var(--brown-muted); font-size: 1.08rem; font-weight: 600; margin-top: 14px; }

/* features */
.features { background: var(--cream); }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feature {
    background: var(--card); border-radius: var(--radius); padding: 30px 26px;
    box-shadow: var(--shadow); border: 1px solid rgba(58,42,30,.05); transition: transform .25s, box-shadow .25s;
}
.feature:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.feature-ico { width: 54px; height: 54px; border-radius: 15px; display: grid; place-items: center; margin-bottom: 18px; }
.feature-ico svg { width: 26px; height: 26px; color: #fff; }
.i-orange { background: linear-gradient(135deg, #DB9B58, var(--orange)); }
.i-teal   { background: linear-gradient(135deg, #6EA691, var(--teal)); }
.i-gold   { background: linear-gradient(135deg, #F7BD4B, var(--gold)); }
.i-purple { background: linear-gradient(135deg, #9B82FF, var(--purple)); }
.i-red    { background: linear-gradient(135deg, #FF7A6E, #E64A3B); }
.i-brown  { background: linear-gradient(135deg, #8B6F58, #5E4632); }
.feature h3 { font-size: 1.24rem; font-weight: 700; margin-bottom: 8px; }
.feature p { color: var(--brown-muted); font-weight: 600; font-size: .98rem; }

/* screens gallery */
.screens { background: linear-gradient(180deg, var(--cream-2), var(--cream)); }
.gallery-wrap { display: flex; align-items: center; gap: 16px; max-width: var(--maxw); margin: 0 auto; padding: 0 16px; }
.gallery { flex: 1; min-width: 0; display: flex; gap: 22px; overflow-x: auto; padding: 8px 0 26px; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; }
.gallery::-webkit-scrollbar { height: 8px; }
.gallery::-webkit-scrollbar-thumb { background: var(--orange-light); border-radius: 8px; }
.scroll-btn {
    flex-shrink: 0; width: 48px; height: 48px; border-radius: 50%;
    background: #fff; border: 1px solid rgba(58,42,30,.08); color: var(--brown-muted);
    display: grid; place-items: center; cursor: pointer; transition: all .2s; box-shadow: var(--shadow);
}
.scroll-btn:hover { background: var(--orange); color: #fff; border-color: var(--orange); }
.shot { flex: 0 0 auto; width: 250px; scroll-snap-align: center; border-radius: 26px; overflow: hidden; box-shadow: var(--shadow-lg); }
.shot img { width: 100%; }

/* story */
.story { background: var(--cream); }
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.story-copy p { color: var(--brown-muted); font-weight: 600; font-size: 1.05rem; margin-bottom: 16px; }
.story-copy p strong { color: var(--brown); }
.story-copy h2 { font-size: clamp(1.9rem, 3.4vw, 2.5rem); font-weight: 800; margin-bottom: 20px; line-height: 1.14; }
.story-art { display: flex; justify-content: center; }
.story-art img { width: min(74%, 300px); filter: drop-shadow(0 18px 26px rgba(58,42,30,.2)); }

/* CTA */
.cta { background: linear-gradient(160deg, #DB9B58 0%, var(--orange) 55%, var(--orange-dark) 100%); color: #fff; text-align: center; position: relative; overflow: hidden; }
.cta-icon { width: 92px; height: 92px; border-radius: 24px; box-shadow: var(--shadow-lg); margin: 0 auto 24px; }
.cta h2 { font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 800; margin-bottom: 14px; }
.cta p { font-size: 1.12rem; font-weight: 600; opacity: .95; max-width: 480px; margin: 0 auto 30px; }
.cta .coming-soon { background: #fff; color: var(--brown); }
.cta .coming-soon .dot { background: var(--orange); }

/* footer */
footer { background: var(--brown); color: #EAD9C8; padding: 44px 0; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px; }
.footer-logo { display: flex; align-items: center; gap: 11px; font-family: 'Baloo 2'; font-weight: 700; font-size: 1.15rem; color: #fff; }
.footer-logo img { width: 34px; height: 34px; border-radius: 9px; }
.footer-links { display: flex; gap: 26px; }
.footer-links a { color: #EAD9C8; font-weight: 700; font-size: .95rem; transition: color .2s; }
.footer-links a:hover { color: #fff; }
.footer-copy { color: #B89B84; font-size: .88rem; font-weight: 600; width: 100%; text-align: center; margin-top: 8px; }

/* reveal */
[data-animate] { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
[data-animate].visible { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
    .hero-grid, .story-grid { grid-template-columns: 1fr; }
    .hero-art { order: -1; min-height: 340px; margin-bottom: 10px; }
    .hero-sub, .hero-es { max-width: none; }
    .feature-grid { grid-template-columns: repeat(2, 1fr); }
    .nav-links { display: none; }
    .mobile-toggle { display: block; }
    .nav-links.open { display: flex; position: absolute; top: 100%; right: 24px; left: 24px; flex-direction: column; gap: 16px; background: var(--cream-2); padding: 22px; border-radius: var(--radius); box-shadow: var(--shadow-lg); }
    .story-art { order: -1; }
}
@media (max-width: 560px) {
    .feature-grid { grid-template-columns: 1fr; }
    .hero-stats { gap: 22px; }
    .shot { width: 210px; }
    section { padding: 66px 0; }
    .scroll-btn { width: 38px; height: 38px; }
    .gallery-wrap { gap: 8px; padding: 0 8px; }
}
@media (prefers-reduced-motion: reduce) {
    .hero-mascot, .pill, .hero-badge .dot { animation: none !important; }
    html { scroll-behavior: auto; }
}
