/* Vokari – Landing Page (Yakari / Prärie-Stil) */

:root {
  --clay: #bf422b;
  --turquoise: #219e94;
  --ochre: #e69e38;
  --sun: #f5c754;
  --ink: #382114;
  --parchment: #f5e6c2;
  --card: #fcf2d9;
  --shadow: rgba(56, 33, 20, 0.22);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "Nunito", system-ui, sans-serif;
  color: var(--ink);
  background: var(--parchment);
  /* zartes Rauten-Muster wie im App-Hintergrund */
  background-image:
    repeating-linear-gradient(45deg, rgba(56,33,20,.04) 0 1px, transparent 1px 46px),
    repeating-linear-gradient(-45deg, rgba(56,33,20,.04) 0 1px, transparent 1px 46px);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .brand-name, .btn-store-big, .kicker {
  font-family: "Baloo 2", "Nunito", sans-serif;
}

.wrap { width: min(1120px, 92vw); margin: 0 auto; }

a { color: inherit; text-decoration: none; }
strong { color: var(--clay); }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 20;
  background: rgba(245, 230, 194, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 3px solid var(--ink);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 44px; height: 44px; display: block; object-fit: cover;
  border: 3px solid var(--ink); border-radius: 12px;
  box-shadow: 0 3px 0 var(--shadow);
}
.brand-mark.small { width: 36px; height: 36px; border-radius: 10px; }
.brand-name { font-weight: 800; font-size: 21px; }
.nav-links { display: flex; align-items: center; gap: 26px; font-weight: 700; }
.nav-links a:hover { color: var(--clay); }
.btn-mini {
  background: var(--turquoise); color: var(--parchment) !important;
  padding: 9px 18px; border: 3px solid var(--ink); border-radius: 12px;
  box-shadow: 0 3px 0 var(--shadow);
}
.btn-mini:hover { transform: translateY(-1px); }
@media (max-width: 680px) { .nav-links a:not(.btn-mini) { display: none; } }

/* ---------- Hero ---------- */
.hero { padding: 70px 0 40px; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 40px; align-items: center; }
.kicker {
  display: inline-block; font-weight: 700; font-size: 15px;
  color: var(--ink); background: var(--sun);
  padding: 7px 16px; border: 2.5px solid var(--ink); border-radius: 999px;
  box-shadow: 0 3px 0 var(--shadow); margin-bottom: 22px;
}
.hero h1 { font-size: clamp(40px, 6vw, 68px); line-height: 1.02; font-weight: 800; letter-spacing: -0.5px; }
.lead { font-size: clamp(17px, 2.2vw, 21px); margin: 22px 0 30px; max-width: 30ch; }

.cta-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.btn-store {
  display: inline-flex; flex-direction: column; line-height: 1.1;
  background: var(--ink); color: var(--parchment);
  padding: 12px 26px; border-radius: 16px; border: 3px solid var(--ink);
  box-shadow: 0 5px 0 var(--shadow); transition: transform .12s ease;
}
.btn-store:hover { transform: translateY(-2px); }
.btn-store.light { background: var(--clay); }
.btn-store-small { font-size: 12px; opacity: .85; font-weight: 600; }
.btn-store-big { font-size: 22px; font-weight: 800; }
.btn-ghost { font-weight: 700; padding: 12px 8px; border-bottom: 3px solid var(--clay); }
.btn-ghost:hover { color: var(--clay); }

.hero-points { list-style: none; display: flex; flex-wrap: wrap; gap: 18px; margin-top: 30px; font-weight: 700; color: var(--ink); opacity: .8; }

/* Phone mockup */
.hero-phone { display: grid; place-items: center; }
.phone {
  width: 290px; max-width: 78vw;
  border: 5px solid var(--ink); border-radius: 42px;
  background: var(--ink); padding: 8px;
  box-shadow: 0 18px 0 -4px var(--shadow), 0 30px 60px rgba(56,33,20,.28);
  transform: rotate(-2deg);
}
.phone img { width: 100%; display: block; border-radius: 32px; }
.phone.small { width: 220px; transform: none; }

/* ---------- Tribal zigzag band ---------- */
.tribalband {
  height: 18px; margin: 10px 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='54' height='18'%3E%3Cpolygon points='0,0 18,0 9,18' fill='%23bf422b'/%3E%3Cpolygon points='18,0 36,0 27,18' fill='%23e69e38'/%3E%3Cpolygon points='36,0 54,0 45,18' fill='%23219e94'/%3E%3C/svg%3E");
  background-repeat: repeat-x; background-size: 27px 18px;
}
.tribalband.flip { transform: scaleY(-1); }

/* ---------- Sections ---------- */
.section-title { font-size: clamp(28px, 4vw, 42px); font-weight: 800; text-align: center; }
.section-sub { text-align: center; opacity: .75; margin-top: 8px; font-weight: 600; }

.features { padding: 56px 0; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 40px; }
@media (max-width: 880px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .feature-grid { grid-template-columns: 1fr; } }
.feature {
  background: var(--card); border: 3px solid var(--ink); border-radius: 22px;
  padding: 26px; box-shadow: 0 6px 0 var(--shadow); transition: transform .12s ease;
}
.feature:hover { transform: translateY(-3px); }
.ficon {
  width: 56px; height: 56px; display: grid; place-items: center;
  font-size: 28px; border-radius: 16px; border: 3px solid var(--ink);
  background: var(--c, var(--clay)); box-shadow: 0 4px 0 var(--shadow);
  margin-bottom: 16px;
}
.ficon.big { width: 72px; height: 72px; font-size: 36px; flex: none; }
.feature h3 { font-size: 21px; font-weight: 800; margin-bottom: 6px; }
.feature p { font-weight: 600; opacity: .85; }

/* Screenshots */
.shots { padding: 56px 0; }
.shot-row { display: flex; gap: 26px; justify-content: center; flex-wrap: wrap; margin-top: 40px; }
.shot-row figure { text-align: center; }
.shot-row figcaption { margin-top: 14px; font-weight: 800; color: var(--clay); }

/* Privacy */
.privacy { padding: 40px 0 56px; }
.privacy-card {
  display: flex; gap: 24px; align-items: center;
  background: var(--card); border: 3px solid var(--ink); border-radius: 26px;
  padding: 32px; box-shadow: 0 8px 0 var(--shadow);
}
.privacy-card h2 { font-size: 26px; margin-bottom: 6px; }
.privacy-card p { font-weight: 600; opacity: .85; }
@media (max-width: 560px) { .privacy-card { flex-direction: column; text-align: center; } }

/* FAQ */
.faq { padding: 40px 0 56px; }
.faq-list { max-width: 760px; margin: 40px auto 0; display: grid; gap: 16px; }
.faq-item {
  background: var(--card); border: 3px solid var(--ink); border-radius: 22px;
  padding: 20px 26px; box-shadow: 0 6px 0 var(--shadow);
}
.faq-item summary {
  font-family: "Baloo 2", "Nunito", sans-serif;
  font-size: 19px; font-weight: 800; cursor: pointer;
}
.faq-item summary:hover { color: var(--clay); }
.faq-item p { margin-top: 12px; font-weight: 600; opacity: .85; }
.faq-item a { color: var(--clay); font-weight: 700; border-bottom: 2px solid var(--clay); }

/* Final CTA */
.final { text-align: center; padding: 64px 0 72px; }
.final h2 { font-size: clamp(26px, 4vw, 40px); font-weight: 800; margin-bottom: 28px; }

/* ---------- Subpages (FAQ / Blog) ---------- */
.page-hero { padding: 56px 0 28px; text-align: center; }
.page-hero h1 { font-size: clamp(32px, 5vw, 52px); font-weight: 800; line-height: 1.06; }
.page-hero .section-sub { max-width: 62ch; margin-left: auto; margin-right: auto; }
.faq-more { text-align: center; margin-top: 28px; }

/* Blog cards */
.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin: 40px 0 64px; }
@media (max-width: 880px) { .post-grid { grid-template-columns: 1fr; } }
.post-card {
  display: flex; flex-direction: column; gap: 10px;
  background: var(--card); border: 3px solid var(--ink); border-radius: 22px;
  padding: 26px; box-shadow: 0 6px 0 var(--shadow); transition: transform .12s ease;
}
.post-card:hover { transform: translateY(-3px); }
.post-card h2, .post-card h3 { font-size: 21px; font-weight: 800; line-height: 1.25; }
.post-card h2 a:hover, .post-card h3 a:hover { color: var(--clay); }
.post-card p { font-weight: 600; opacity: .85; flex: 1; }
.post-meta { font-size: 14px; font-weight: 700; color: var(--clay); }
.read-more { font-weight: 800; color: var(--clay); }

/* Article prose */
.article { max-width: 720px; margin: 0 auto; padding: 8px 0 56px; }
.article .page-hero { text-align: left; padding: 48px 0 8px; }
.prose p { margin: 16px 0; font-weight: 600; }
.prose h2 { font-size: clamp(23px, 3vw, 28px); font-weight: 800; margin: 38px 0 6px; }
.prose h3 { font-size: 20px; font-weight: 800; margin: 26px 0 4px; }
.prose ul, .prose ol { margin: 16px 0 16px 26px; font-weight: 600; }
.prose li { margin: 6px 0; }
.prose a { color: var(--clay); font-weight: 700; border-bottom: 2px solid var(--clay); }
.prose a:hover { opacity: .8; }
.post-cta {
  margin-top: 40px; text-align: center;
  background: var(--card); border: 3px solid var(--ink); border-radius: 26px;
  padding: 30px; box-shadow: 0 8px 0 var(--shadow);
}
.post-cta h2 { font-size: 24px; font-weight: 800; margin-bottom: 14px; }

/* Footer */
.foot { border-top: 3px solid var(--ink); background: var(--card); }
.foot-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 24px 0; flex-wrap: wrap; }
.foot p { font-weight: 700; opacity: .8; }
.foot nav { display: flex; gap: 18px; font-weight: 700; }
.foot nav a:hover { color: var(--clay); }
