/* ProductOrigin – Website
   Farbwelt «Durchblick · Ozean» (Entscheid 10.07.2026, constants/theme-ozean.ts)
   Regeln: Gold nie als Fläche, nur als Punkt/Signal. Kontraste AA. Keine externen Fonts, keine Tracker. */

:root {
  --primary: #3577B8;
  --primary-deep: #1E4A75;
  --accent: #F3B13F;
  --bg: #F1F6FA;
  --card: #FFFFFF;
  --text: #17293B;
  --text-2: #4A6076;
  --border: #D8E2EC;
  --good: #3E8E5F;
  --mid: #D9A13B;
  --bad: #C0563F;
  --shadow: 0 24px 60px -24px rgba(23, 41, 59, .25);
  --radius: 16px;
  --header-h: 64px;
}

@media (prefers-color-scheme: dark) {
  :root {
    --primary: #6FA5D9;
    --primary-deep: #3577B8;
    --bg: #0F1B27;
    --card: #182838;
    --text: #EAF1F7;
    --text-2: #9FB3C6;
    --border: #2A3D51;
    --good: #67B98A;
    --mid: #E8BC66;
    --bad: #E07B63;
    --shadow: 0 24px 60px -24px rgba(0, 0, 0, .6);
  }
}

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

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { display: block; max-width: 100%; }

a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }

.wrap { max-width: 1120px; margin: 0 auto; padding: 0 24px; }

/* ---------- Header ---------- */

.site-header {
  position: sticky; top: 0; z-index: 50;
  height: var(--header-h);
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.site-header .wrap {
  height: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.brand {
  display: flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: 1.05rem; color: var(--text);
}
.brand:hover { text-decoration: none; }
.brand svg { width: 28px; height: 28px; }

.site-nav { display: flex; align-items: center; gap: 28px; }
.site-nav a { color: var(--text-2); font-size: .95rem; font-weight: 500; }
.site-nav a:hover { color: var(--text); text-decoration: none; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 12px 22px;
  border-radius: 12px;
  font-weight: 600; font-size: .98rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background .15s ease, border-color .15s ease, transform .15s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-deep); }
@media (prefers-color-scheme: dark) {
  .btn-primary { color: #0F1B27; }
  .btn-primary:hover { color: #fff; }
}
.btn-ghost { border-color: var(--border); color: var(--text); background: transparent; }
.btn-ghost:hover { border-color: var(--primary); color: var(--primary); }
.btn-sm { padding: 9px 16px; font-size: .9rem; border-radius: 10px; }

.nav-cta { flex-shrink: 0; }

@media (max-width: 760px) {
  .site-nav { display: none; }
}

/* ---------- Store-Badges ---------- */

.store-badges { display: flex; flex-wrap: wrap; gap: 12px; }
.badge-store {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--text);
  color: var(--bg);
  border-radius: 14px;
  padding: 10px 20px 10px 16px;
  min-height: 56px;
  transition: transform .15s ease, opacity .15s ease;
}
.badge-store:hover { text-decoration: none; transform: translateY(-2px); opacity: .92; }
.badge-store svg { width: 26px; height: 26px; flex-shrink: 0; }
.badge-store .badge-txt { display: flex; flex-direction: column; line-height: 1.25; text-align: left; }
.badge-store .badge-txt small { font-size: .68rem; font-weight: 500; opacity: .85; letter-spacing: .02em; }
.badge-store .badge-txt strong { font-size: 1.02rem; font-weight: 600; }

/* ---------- Hero ---------- */

.hero { padding: 72px 0 40px; overflow: hidden; }
.hero .wrap {
  display: grid; grid-template-columns: 1.05fr .95fr;
  gap: 48px; align-items: center;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--primary); font-weight: 600; font-size: .85rem;
  letter-spacing: .06em; text-transform: uppercase;
  margin-bottom: 18px;
}
.eyebrow::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent);
}
h1 {
  font-size: clamp(2.1rem, 4.6vw, 3.3rem);
  line-height: 1.12; letter-spacing: -.02em; font-weight: 800;
  margin-bottom: 20px;
}
.lead { font-size: 1.13rem; color: var(--text-2); max-width: 34em; margin-bottom: 28px; }
.hero-trust {
  margin-top: 18px;
  color: var(--text-2); font-size: .92rem; font-weight: 500;
}
.hero-trust b { color: var(--text); font-weight: 600; }
.dot-sep { margin: 0 6px; color: var(--border); }

@media (max-width: 900px) {
  .hero { padding-top: 48px; }
  .hero .wrap { grid-template-columns: 1fr; gap: 40px; }
}
/* ---------- Phone-Mockup im Sucher ---------- */

.hero-visual { display: flex; justify-content: center; }
.viewfinder { position: relative; padding: 34px; }
.viewfinder .corner {
  position: absolute; width: 56px; height: 56px;
  border: 6px solid var(--primary); border-radius: 3px;
}
.viewfinder .c-tl { top: 0; left: 0; border-right: none; border-bottom: none; border-top-left-radius: 22px; }
.viewfinder .c-tr { top: 0; right: 0; border-left: none; border-bottom: none; border-top-right-radius: 22px; }
.viewfinder .c-bl { bottom: 0; left: 0; border-right: none; border-top: none; border-bottom-left-radius: 22px; }
.viewfinder .c-br { bottom: 0; right: 0; border-left: none; border-top: none; border-bottom-right-radius: 22px; }

.phone {
  position: relative;
  width: 300px;
  border-radius: 42px;
  background: #17293B;
  padding: 10px;
  box-shadow: var(--shadow);
}
.phone-screen {
  position: relative;
  background: #F1F6FA;
  border-radius: 33px;
  overflow: hidden;
  color: #17293B;
  font-size: 13px;
  line-height: 1.45;
}
/* Scan-Linie: das Gold-Signal aus dem Analyse-Zustand der App */
.scanline {
  position: absolute; left: 0; right: 0; top: -12%;
  height: 3px; z-index: 5;
  background: linear-gradient(90deg, transparent, #F3B13F 30%, #F3B13F 70%, transparent);
  opacity: .9;
  animation: scan 4.2s cubic-bezier(.4, 0, .6, 1) infinite;
  pointer-events: none;
}
@keyframes scan {
  0% { top: -3%; opacity: 0; }
  8% { opacity: .9; }
  46% { top: 101%; opacity: .9; }
  54% { opacity: 0; }
  100% { top: 101%; opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .scanline { animation: none; display: none; }
  html { scroll-behavior: auto; }
}

.p-status {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 18px 4px; font-size: 11px; font-weight: 600; color: #4A6076;
}
.p-appbar {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 14px 10px;
}
.p-appbar svg { width: 20px; height: 20px; }
.p-appbar .p-title { font-weight: 700; font-size: 13.5px; margin-right: auto; }
.p-chip {
  display: inline-flex; align-items: center; gap: 5px;
  border: 1px solid #D8E2EC; background: #fff;
  border-radius: 999px; padding: 3px 9px;
  font-size: 11px; font-weight: 600; color: #17293B;
}
.p-chip .gold-dot { width: 9px; height: 9px; border-radius: 50%; background: #F3B13F; }

.p-body { padding: 4px 12px 14px; display: flex; flex-direction: column; gap: 8px; }
.p-card {
  background: #fff; border: 1px solid #D8E2EC; border-radius: 14px;
  padding: 10px 12px;
}
.p-card .p-label {
  font-size: 10px; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: #4A6076; margin-bottom: 4px;
}
.p-prod { display: flex; justify-content: space-between; align-items: flex-start; gap: 8px; }
.p-prod .p-name { font-weight: 700; font-size: 14.5px; line-height: 1.3; }
.p-prod .p-brand { color: #4A6076; font-size: 12px; }
.p-star { color: #9FB3C6; font-size: 16px; line-height: 1; }

.p-grades { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.p-grade-main {
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: 10px;
  border: 2px solid #3577B8; background: #fff;
  font-weight: 800; font-size: 16px; color: #3E8E5F;
}
.p-grade {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 11.5px; font-weight: 600; color: #4A6076;
  padding: 3px 8px; border-radius: 999px; background: #fff; border: 1px solid #D8E2EC;
}
.p-grade b { font-size: 12px; }
.g-good { color: #3E8E5F; } .g-mid { color: #D9A13B; } .g-bad { color: #C0563F; }

.p-row { display: flex; justify-content: space-between; align-items: center; gap: 8px; }
.p-row + .p-row { margin-top: 4px; }
.p-muted { color: #4A6076; font-size: 11.5px; }
.p-src {
  font-size: 10.5px; font-weight: 600; color: #3577B8;
  border: 1px solid #D8E2EC; border-radius: 999px; padding: 2px 8px;
  white-space: nowrap;
}
.p-tag {
  font-size: 9.5px; font-weight: 600; color: #4A6076;
  border: 1px solid #D8E2EC; border-radius: 4px; padding: 1px 5px;
  text-transform: uppercase; letter-spacing: .04em;
}
.p-price { font-weight: 700; font-size: 13.5px; }

.p-scanbtn {
  margin: 4px auto 2px;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: #F3B13F; color: #17293B;
  font-weight: 700; font-size: 13px;
  border-radius: 999px; padding: 9px 22px;
  width: fit-content;
}
.p-scanbtn::before {
  content: ""; width: 14px; height: 14px; border-radius: 50%;
  border: 2.5px solid #17293B;
}

@media (max-width: 480px) {
  /* Sucher + Phone müssen in schmale Viewports passen (kein H-Overflow) */
  .viewfinder { padding: 22px; }
  .viewfinder .corner { width: 44px; height: 44px; border-width: 5px; }
  .phone { width: min(270px, calc(100vw - 92px)); }
  .phone-screen { font-size: 12px; }
}

/* ---------- Trust-Band ---------- */

.trustband { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.trustband .wrap {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px; padding-top: 36px; padding-bottom: 36px;
}
.trust-item .t-num {
  font-size: 1.9rem; font-weight: 800; letter-spacing: -.02em;
  color: var(--primary);
}
.trust-item .t-txt { color: var(--text-2); font-size: .92rem; }
@media (max-width: 760px) {
  .trustband .wrap { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- Sektionen ---------- */

section { padding: 88px 0; }
.section-head { max-width: 640px; margin-bottom: 48px; }
h2 {
  font-size: clamp(1.7rem, 3.4vw, 2.4rem);
  line-height: 1.15; letter-spacing: -.02em; font-weight: 800;
  margin-bottom: 14px;
}
.section-head p { color: var(--text-2); font-size: 1.05rem; }

/* Features */
.feature-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.feature {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 26px 24px;
}
.feature .f-num {
  font-size: .8rem; font-weight: 700; color: var(--primary);
  letter-spacing: .08em; margin-bottom: 14px;
  display: flex; align-items: center; gap: 8px;
}
.feature .f-num::after { content: ""; height: 1px; flex: 1; background: var(--border); }
.feature h3 { font-size: 1.08rem; font-weight: 700; margin-bottom: 8px; }
.feature p { color: var(--text-2); font-size: .95rem; }
.feature .f-free {
  display: inline-block; margin-top: 10px;
  font-size: .78rem; font-weight: 700; color: var(--good);
  border: 1px solid color-mix(in srgb, var(--good) 40%, transparent);
  border-radius: 999px; padding: 2px 10px;
}
@media (max-width: 960px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .feature-grid { grid-template-columns: 1fr; } }

/* Schritte */
.steps { counter-reset: step; display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.step {
  counter-increment: step;
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 26px 24px;
  position: relative;
}
.step::before {
  content: counter(step, decimal-leading-zero);
  font-size: 2rem; font-weight: 800; letter-spacing: -.02em;
  color: var(--primary); opacity: .9;
  display: block; margin-bottom: 12px;
}
.step h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.step p { color: var(--text-2); font-size: .93rem; }
.step ul { list-style: none; margin-top: 10px; display: flex; flex-direction: column; gap: 5px; }
.step li {
  font-size: .86rem; color: var(--text-2);
  display: flex; align-items: baseline; gap: 8px;
}
.step li::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent); flex-shrink: 0; transform: translateY(-1px);
}
@media (max-width: 960px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .steps { grid-template-columns: 1fr; } }

/* ---------- Haltung ---------- */

.stance { background: var(--primary-deep); color: #EAF1F7; }
.stance h2 { color: #fff; max-width: 17em; }
.stance .stance-quote {
  font-size: clamp(1.5rem, 3.2vw, 2.2rem);
  font-weight: 800; letter-spacing: -.02em; line-height: 1.25;
  max-width: 22em; margin-bottom: 48px;
}
.stance .stance-quote .q-gold { color: var(--accent); }
.stance-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.stance-item h3 {
  font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; color: #fff;
  display: flex; align-items: center; gap: 10px;
}
.stance-item h3::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--accent);
}
.stance-item p { color: #C7D6E4; font-size: .96rem; }
@media (max-width: 760px) { .stance-grid { grid-template-columns: 1fr; } }

/* ---------- Preise ---------- */

.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; align-items: stretch;
}
.price-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 30px 26px;
  display: flex; flex-direction: column;
  position: relative;
}
.price-card.popular { border: 2px solid var(--primary); }
.price-badge {
  position: absolute; top: -13px; left: 24px;
  background: var(--primary-deep); color: #fff;
  font-size: .78rem; font-weight: 700; letter-spacing: .03em;
  border-radius: 999px; padding: 3px 12px;
}
@media (prefers-color-scheme: dark) {
  .price-badge { background: var(--primary); color: #0F1B27; }
}
.price-card h3 { font-size: 1.02rem; font-weight: 700; margin-bottom: 12px; }
.price-num {
  font-size: 2.3rem; font-weight: 800; letter-spacing: -.02em; line-height: 1;
  margin-bottom: 4px;
}
.price-sub { color: var(--text-2); font-size: .88rem; margin-bottom: 16px; }
.price-card p.desc { color: var(--text-2); font-size: .94rem; flex: 1; }
.price-card ul { list-style: none; margin: 14px 0 0; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.price-card li { font-size: .93rem; color: var(--text-2); display: flex; gap: 10px; align-items: baseline; }
.price-card li::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0;
  background: var(--primary); transform: translateY(-2px);
}
.pricing-note {
  margin-top: 28px; text-align: center;
  color: var(--text-2); font-size: .93rem;
}
.pricing-note b { color: var(--text); }
@media (max-width: 860px) { .pricing-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; } }

/* ---------- FAQ ---------- */

.faq-list { max-width: 760px; display: flex; flex-direction: column; gap: 12px; }
.faq-list details {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 14px; padding: 0 22px;
}
.faq-list summary {
  cursor: pointer; list-style: none;
  font-weight: 600; font-size: 1.02rem;
  padding: 18px 0;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+"; font-size: 1.4rem; font-weight: 400; color: var(--primary);
  flex-shrink: 0; transition: transform .2s ease; line-height: 1;
}
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list details p { color: var(--text-2); padding-bottom: 20px; font-size: .97rem; max-width: 60em; }

/* ---------- Schluss-CTA ---------- */

.final-cta { text-align: center; }
.final-cta h2 { max-width: 18em; margin-left: auto; margin-right: auto; }
.final-cta p { color: var(--text-2); font-size: 1.08rem; margin-bottom: 32px; }
.final-cta .store-badges { justify-content: center; }
.final-cta .hero-trust { margin-top: 22px; }

/* ---------- Footer ---------- */

.site-footer {
  border-top: 1px solid var(--border);
  padding: 40px 0 48px;
  font-size: .9rem; color: var(--text-2);
}
.site-footer .wrap {
  display: flex; flex-wrap: wrap; gap: 18px 32px;
  align-items: center; justify-content: space-between;
}
.footer-brand { display: flex; align-items: center; gap: 10px; font-weight: 600; color: var(--text); }
.footer-brand svg { width: 22px; height: 22px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 8px 22px; }
.footer-links a { color: var(--text-2); }
.footer-links a:hover { color: var(--text); }
.footer-meta { width: 100%; font-size: .84rem; }

/* ---------- Rechtsseiten ---------- */

.legal-main { padding: 56px 0 80px; }
.legal-main .wrap { max-width: 760px; }
.legal-main h1 { font-size: clamp(1.8rem, 3.6vw, 2.4rem); margin-bottom: 10px; }
.legal-main .legal-stand { color: var(--text-2); font-size: .9rem; margin-bottom: 36px; }
.legal-main h2 { font-size: 1.25rem; margin: 36px 0 10px; }
.legal-main h3 { font-size: 1.05rem; margin: 24px 0 8px; }
.legal-main p, .legal-main li { color: var(--text-2); font-size: .98rem; }
.legal-main ul { padding-left: 22px; margin: 8px 0; }
.legal-main .back-link { display: inline-block; margin-bottom: 28px; font-size: .92rem; }

/* ---------- Scroll-Reveal (dezent) ----------
   Nur aktiv, wenn JS läuft (html.has-js) – ohne JS bleibt alles sichtbar. */

.has-js .reveal { opacity: 0; transform: translateY(14px); transition: opacity .5s ease, transform .5s ease; }
.has-js .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .has-js .reveal { opacity: 1; transform: none; transition: none; }
}
