/* Stadt·Land·Fluss Live — site styles. Flag-themed palette. */
:root {
  --black: #0a0a0a;
  --red: #DD0000;
  --gold: #FFCC00;
  --bg: #FAF7F0;
  --card: #FFFFFF;
  --text: #1A0F0F;
  --soft: #6B5B5B;
  --border: rgba(0,0,0,0.10);
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, Roboto, "Helvetica Neue", sans-serif;
  color: var(--text); background: var(--bg); line-height: 1.55; -webkit-font-smoothing: antialiased;
}
a { color: var(--red); text-decoration: none; }
a:hover { text-decoration: underline; }
.wrap { max-width: 1080px; margin: 0 auto; padding: 0 24px; }
header.nav {
  position: sticky; top: 0; z-index: 30; background: rgba(250, 247, 240, 0.92);
  backdrop-filter: saturate(180%) blur(12px); -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; padding: 14px 24px; max-width: 1080px; margin: 0 auto; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 900; letter-spacing: 0.2px; }
.brand img { width: 32px; height: 32px; border-radius: 7px; }
.brand .b1 { color: var(--red); } .brand .b2 { color: var(--black); } .brand .b3 { color: var(--gold); -webkit-text-stroke: 0.5px #0008; }
.nav a { color: var(--text); font-weight: 700; font-size: 14px; margin-left: 20px; }
.nav a:hover { color: var(--red); text-decoration: none; }
.cta {
  display: inline-block; background: var(--red); color: #fff !important; padding: 12px 22px;
  border-radius: 14px; font-weight: 900; box-shadow: 0 6px 18px rgba(221,0,0,0.25); transition: transform .08s;
}
.cta:hover { text-decoration: none; transform: translateY(-1px); }

/* Hero */
.hero { padding: 80px 0 60px; text-align: center; background: linear-gradient(180deg, #FAF7F0 0%, #FDFAF3 100%); }
.eyebrow { font-size: 13px; font-weight: 900; letter-spacing: 1px; color: var(--soft); text-transform: uppercase; margin-bottom: 16px; }
.eyebrow .flag { margin-right: 8px; }
.h1 { font-size: clamp(40px, 7vw, 76px); font-weight: 900; line-height: 1.04; margin: 0 0 18px; letter-spacing: -1px; }
.h1 .w1 { color: var(--red); } .h1 .w2 { color: var(--black); } .h1 .w3 { color: var(--gold); -webkit-text-stroke: 1px #000; }
.sub { font-size: clamp(16px, 2vw, 20px); color: var(--soft); max-width: 640px; margin: 0 auto 32px; font-weight: 500; }
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.appstore-badge { height: 56px; display: inline-block; }

/* Showcase strip */
.showcase { padding: 60px 0; }
.shots { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; }
.shots img {
  width: 100%; border-radius: 22px; box-shadow: 0 18px 40px rgba(0,0,0,0.12), 0 2px 6px rgba(0,0,0,0.06);
}

/* Sections */
section.feat { padding: 64px 0; border-top: 1px solid var(--border); }
.feat h2 { font-size: 32px; font-weight: 900; margin: 0 0 14px; text-align: center; letter-spacing: -0.5px; }
.feat-lead { color: var(--soft); font-size: 16px; max-width: 640px; margin: 0 auto 40px; text-align: center; }
.grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 18px;
}
.tile {
  background: var(--card); border-radius: 18px; padding: 24px;
  border: 1px solid var(--border); box-shadow: 0 4px 14px rgba(0,0,0,0.05);
}
.tile .ico { width: 44px; height: 44px; border-radius: 12px; background: var(--red); color: #fff;
  display: flex; align-items: center; justify-content: center; font-size: 22px; font-weight: 900; margin-bottom: 14px; }
.tile.gold .ico { background: var(--gold); color: var(--black); }
.tile.black .ico { background: var(--black); }
.tile h3 { font-size: 18px; font-weight: 800; margin: 0 0 6px; }
.tile p { color: var(--soft); font-size: 14px; margin: 0; }

/* Pricing */
.prices { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 18px; max-width: 880px; margin: 0 auto; }
.price {
  background: var(--card); border-radius: 22px; padding: 28px; border: 2px solid var(--border); text-align: center;
  position: relative;
}
.price.best { border-color: var(--gold); box-shadow: 0 12px 30px rgba(255,204,0,0.18); }
.price .tag { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--gold); color: var(--black); font-size: 11px; font-weight: 900; padding: 4px 12px; border-radius: 999px; letter-spacing: 0.5px; }
.price h3 { margin: 0 0 8px; font-size: 18px; font-weight: 800; }
.price .amt { font-size: 36px; font-weight: 900; color: var(--text); }
.price .per { color: var(--soft); font-size: 13px; margin-bottom: 14px; }
.price ul { list-style: none; padding: 0; margin: 14px 0 0; font-size: 14px; color: var(--soft); }
.price ul li { padding: 6px 0; }

/* Footer */
footer { background: var(--black); color: #ccc; padding: 48px 0; margin-top: 80px; }
footer .cols { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 32px; }
footer h4 { color: #fff; margin: 0 0 14px; font-size: 14px; letter-spacing: 0.6px; text-transform: uppercase; }
footer a { display: block; color: #aaa; font-weight: 500; padding: 4px 0; font-size: 14px; }
footer a:hover { color: #fff; text-decoration: none; }
footer .legal { border-top: 1px solid #333; padding-top: 24px; margin-top: 32px; color: #888; font-size: 12px; }
@media (max-width: 720px) { footer .cols { grid-template-columns: 1fr 1fr; } .nav a { margin-left: 12px; font-size: 13px; } .nav-inner { padding: 12px 16px; } }

/* Doc pages (privacy, terms, etc.) */
.doc { padding: 60px 0 80px; }
.doc h1 { font-size: 36px; font-weight: 900; margin: 0 0 8px; }
.doc .updated { color: var(--soft); font-size: 13px; margin-bottom: 32px; }
.doc h2 { font-size: 22px; margin-top: 36px; font-weight: 800; }
.doc h3 { font-size: 17px; margin-top: 22px; font-weight: 700; }
.doc p, .doc li { font-size: 15px; line-height: 1.7; color: #333; }
.doc ul { padding-left: 20px; }
.lang-switch { float: right; font-size: 13px; }
.lang-switch a { padding: 4px 8px; border-radius: 6px; color: var(--soft); }
.lang-switch a.active { background: var(--red); color: #fff; }
