/* /assets/css/public_2026_light.css
 * Public (Landing/Login/Register/Verify) – Premium Calm 2026
 * IMPORTANT:
 * - Only styles public pages (body.public)
 * - Does NOT touch /member area themes
 */

body.public{
  /* Calm, warm, not dark – not glaring */
  --bg:  #f4f1ea;               /* warm off-white */
  --bgWash: #fbfaf7;            /* soft wash */
  --surface: rgba(255,255,255,.72);
  --card: rgba(255,255,255,.86);
  --ink:#111827;                /* near-black, soft */
  --muted:#374151;              /* readable secondary */
  --line: rgba(17, 24, 39, .12);

  --contentW: 1180px;
  --contentNarrow: 980px;
  --gutter: clamp(18px, 3vw, 32px);

  --accent:#b8872b;             /* warm gold-brown */
  --accentDeep:#8f6a20;
  --accentBlue:#2563eb;         /* calm blue (rare use) */

  --shadow: 0 24px 70px rgba(17,24,39,.16);
  --shadow2: 0 10px 22px rgba(17,24,39,.08);

  --radius: 22px;
  --radius2: 18px;

  --focus: 0 0 0 4px rgba(14,165,168,.18);
}

body.public{
  margin:0;
  color: var(--ink);
  background:
    radial-gradient(980px 420px at 18% -10%, rgba(184,135,43,.10), rgba(184,135,43,0) 62%),
    radial-gradient(900px 380px at 78% -12%, rgba(37,99,235,.06), rgba(37,99,235,0) 62%),
    linear-gradient(180deg, var(--bgWash), var(--bg));
  font: 16px/1.55 ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, "Helvetica Neue", Arial, "Apple Color Emoji","Segoe UI Emoji";
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

*{ box-sizing:border-box; }
a{ color:inherit; text-decoration:none; }
img{ max-width:100%; height:auto; display:block; }
b,strong{ font-weight:700; }

.publicWrap{
  min-height:100vh;
}

main{
  position:relative;
  z-index:1;
}

::selection{ background: rgba(14,165,168,.22); }

.container{ max-width:1120px; margin:0 auto; padding:0 18px; }

/* ---------- Header (transparent) ---------- */
.publicTop{
  position:sticky;
  top:0;
  z-index:50;
  background: linear-gradient(180deg, rgba(255,255,255,.55), rgba(255,255,255,.35));
  border-bottom: 1px solid rgba(17,24,39,.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.publicTop.isTransparent{
  position:absolute;
  left:0; right:0; top:0;
  background: transparent;
  border-bottom: 1px solid rgba(255,255,255,.14);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.publicTop.isTransparent.isScrolled{
  background: rgba(255,255,255,.58);
  border-bottom: 1px solid rgba(17,24,39,.10);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.publicTopInner{
  max-width: var(--contentW);
  margin: 0 auto;
  padding: 14px 18px;
  display:flex;
  align-items:center;
  justify-content:space-between; flex-wrap:wrap; row-gap:10px;
  gap: 16px;
}

.brand{
  display:flex;
  align-items:center;
  gap: 12px;
  min-width: 220px;
}

.brandLogo{
  width:44px; height:44px;
  border-radius: 14px;
  overflow:hidden;
  box-shadow: 0 10px 22px rgba(17,24,39,.14);
  border: 1px solid rgba(255,255,255,.55);
}

.brandLogo img{ width:100%; height:100%; object-fit:cover; }

.brandText .name{
  font-weight: 800;
  letter-spacing: .2px;
}

.brandText .tag{
  font-size: 12.5px;
  color: rgba(17,24,39,.68);
}

.publicTop.isTransparent .brandText .tag{
  color: rgba(255,255,255,.80);
}
.publicTop.isTransparent .brandText .name{
  color: rgba(255,255,255,.95);
  text-shadow: 0 10px 26px rgba(0,0,0,.22);
}

/* ---------- Nav ---------- */
.publicNav{
  display:flex;
  align-items:center;
  gap: 12px;
  flex-wrap:wrap;
  justify-content:flex-end;
}

.publicNav a{
  font-size: 15px;
  padding: 10px 12px;
  border-radius: 12px;
  color: rgba(17,24,39,.78);
  transition: transform .08s ease, background .18s ease, color .18s ease, box-shadow .18s ease;
}

.publicTop.isTransparent .publicNav a{
  color: rgba(255,255,255,.90);
  text-shadow: 0 10px 24px rgba(0,0,0,.22);
}

.publicNav a:hover{
  background: rgba(255,255,255,.55);
  box-shadow: 0 12px 22px rgba(17,24,39,.12);
}

.publicTop.isTransparent .publicNav a:hover{
  background: rgba(255,255,255,.18);
  box-shadow: 0 12px 22px rgba(0,0,0,.16);
}

.publicNav a.active{
  background: rgba(255,255,255,.62);
  box-shadow: 0 12px 22px rgba(17,24,39,.12);
}

.publicTop.isTransparent .publicNav a.active{
  background: rgba(255,255,255,.20);
}

.publicNav a.navCta{
  padding: 10px 14px;
  background: linear-gradient(180deg, rgba(14,165,168,.18), rgba(14,165,168,.08));
  border: 1px solid rgba(14,165,168,.28);
  color: rgba(17,24,39,.88);
}

.publicTop.isTransparent .publicNav a.navCta{
  background: rgba(255,255,255,.16);
  border: 1px solid rgba(255,255,255,.22);
  color: rgba(255,255,255,.92);
}

.publicNav a.navCta:hover{
  transform: translateY(-1px);
}

/* Banner */
.publicBanner{
  max-width:1120px;
  margin: 0 auto 12px;
  padding: 0 18px 10px;
}
.publicBannerInner{
  background: rgba(255,255,255,.68);
  border: 1px solid rgba(17,24,39,.10);
  border-radius: 18px;
  padding: 10px 12px;
  color: rgba(17,24,39,.78);
  box-shadow: 0 12px 26px rgba(17,24,39,.08);
}

/* ---------- Hero ---------- */
.hero{
  position:relative;
  min-height: 62vh;
  display:flex;
  align-items:stretch;
  overflow:hidden;
}

.heroMedia{
  position:absolute;
  inset:0;
  pointer-events:none;
  background-image: url('/img/hero_web99_2026.png');
  background-size: cover;
  background-position: 55% 45%;
  filter: saturate(.92) contrast(.98) brightness(.96);
  transform: scale(1.02);
}

.heroOverlay{
  position:absolute;
  inset:0;
  pointer-events:none;
  /* Less haze: keep readability left, remove "fog" at bottom */
  background:
    radial-gradient(860px 520px at 22% 42%, rgba(17,24,39,.52), rgba(17,24,39,0) 64%),
    linear-gradient(90deg, rgba(17,24,39,.32), rgba(17,24,39,0) 64%),
    linear-gradient(180deg, rgba(0,0,0,.12), rgba(0,0,0,0) 28%);
}

.heroInner{
  width:100%;
  max-width: var(--contentW);
  margin: 0 auto;
  padding: 104px 18px 44px;
  position:relative;
  z-index:2;
}

.heroCopy{
  max-width: 640px;
  color: rgba(255,255,255,.96);
}

.kicker{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 16px 34px rgba(0,0,0,.18);
  font-size: 13px;
  letter-spacing: .2px;
  color: rgba(255,255,255,.92);
}

.kicker .dot{
  width:10px; height:10px;
  border-radius: 999px;
  background: rgba(34,197,94,.85);
  box-shadow: 0 0 0 4px rgba(34,197,94,.16);
}

.hero h1{
  margin: 18px 0 10px;
  font-size: clamp(34px, 4.3vw, 54px);
  line-height: 1.05;
  letter-spacing: -.6px;
  text-shadow: 0 18px 44px rgba(0,0,0,.28);
}

.subline{
  margin: 10px 0 14px;
  font-size: 17px;
  line-height: 1.5;
  color: rgba(255,255,255,.92);
}

.lead{
  margin: 0 0 18px;
  font-size: 16.5px;
  line-height: 1.65;
  color: rgba(255,255,255,.92);
}

.ctaRow{
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap: 12px;
  margin-top: 18px;
}

.smallNote{
  font-size: 12.5px;
  color: rgba(255,255,255,.82);
}

/* Buttons */
.btn, .btnGhost{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 8px;
  height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  text-decoration:none;
  font-weight: 650;
  letter-spacing: .1px;
  color: rgba(255,255,255,.92);
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.20);
  box-shadow: 0 8px 18px rgba(0,0,0,.18);
  transition: transform .12s ease, background .12s ease, border-color .12s ease;
}
.btnGhost:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,.14);
  border-color: rgba(255,255,255,.28);
}
.btnGhost:active{ transform: translateY(0px); }

/* Strong ghost button for light sections (e.g. CTA band) */
.btnGhostStrong{
  color: rgba(17,24,39,.86);
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(17,24,39,.14);
  box-shadow: 0 10px 22px rgba(17,24,39,.10);
}
.btnGhostStrong:hover{
  background: rgba(255,255,255,.94);
  border-color: rgba(17,24,39,.18);
}

.btn{
  color: rgba(17,24,39,.95);
  background: linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.74));
  box-shadow: 0 18px 38px rgba(0,0,0,.18);
}

.btn:hover{ transform: translateY(-1px); box-shadow: 0 22px 48px rgba(0,0,0,.22); }

.btn:focus{ outline:none; box-shadow: var(--focus), 0 22px 48px rgba(0,0,0,.20); }

.btnGhost{
  color: rgba(255,255,255,.92);
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.20);
  box-shadow: 0 16px 34px rgba(0,0,0,.14);
}

.btnGhost:hover{ transform: translateY(-1px); background: rgba(255,255,255,.16); }

.btnGhost:focus{ outline:none; box-shadow: var(--focus), 0 16px 34px rgba(0,0,0,.16); }


/* Clean end of hero (no fog) */
.hero::after{
  content:"";
  position:absolute;
  left:0; right:0; bottom:0;
  height: 1px;
  background: rgba(255,255,255,.22);
  opacity:.68;
}

/* ---------- Sections ---------- */
.section{
  max-width: var(--contentW);
  margin: 0 auto;
  padding: 46px var(--gutter);
}

.sectionTight{ padding-top: 44px; }

.sectionTight h2{max-width:760px}
.sectionTight .lead{max-width:820px;margin-bottom:28px}

.sectionDividerWrap{max-width:1120px;margin:0 auto;padding:0 20px}
.sectionDivider{height:1px;background:linear-gradient(90deg,transparent,rgba(175,140,75,.35),transparent);margin:8px 0 30px}


.sectionHead h2{
  margin:0 0 10px;
  font-size: clamp(24px, 2.6vw, 34px);
  letter-spacing: -.3px;
}

.sectionHead p{
  margin:0 0 18px;
  max-width: 860px;
  color: rgba(17,24,39,.72);
}

/* 3 cards */
.cards3{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  width: 100%;
  align-items: stretch;
}



.card{
  position: relative;
  background: rgba(255,255,255,.84);
  border: 1px solid rgba(17,24,39,.10);
  border-radius: var(--radius);
  box-shadow: var(--shadow2);
  padding: 18px 18px 16px;
  min-height: 108px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.card::before{
  content:"";
  position:absolute;
  left:16px; right:16px; top:12px;
  height:2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(184,135,43,.78), rgba(184,135,43,0));
  opacity:.85;
}
.card h3{
  margin: 0 0 8px;
  font-size: 16px;
  letter-spacing: -.1px;
}

.card p{
  margin:0;
  color: rgba(17,24,39,.74);
}

/* Stack blocks */
.stack{
  display:flex;
  flex-direction:column;
  gap: 18px;
}

.stackBlock{
  background: rgba(255,255,255,.66);
  border: 1px solid rgba(17,24,39,.10);
  border-radius: calc(var(--radius) + 2px);
  box-shadow: var(--shadow2);
  padding: 22px 22px 18px;
}

.stackBlock.soft{
  background: rgba(255,255,255,.60);
}

.stackBlock h2{
  margin:0 0 10px;
  font-size: 22px;
  letter-spacing: -.25px;
}

.stackBlock p{ margin:0 0 10px; }

.muted{ color: rgba(17,24,39,.68); }

/* List grid */
.listGrid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 14px;
  margin-top: 12px;
}

.listItem{
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(17,24,39,.08);
  border-radius: var(--radius2);
  padding: 14px 14px 12px;
}

.listItem h3{
  margin:0 0 6px;
  font-size: 15px;
}

.listItem p{
  margin:0;
  color: rgba(17,24,39,.72);
  font-size: 14.5px;
}

/* Bullets */
.bullets{
  margin: 12px 0 0;
  padding-left: 18px;
}
.bullets li{ margin: 6px 0; color: rgba(17,24,39,.76); }

/* CTA band */
.ctaBand{
  margin-top: 16px;
  display:flex;
  align-items:center;
  justify-content:space-between; flex-wrap:wrap; row-gap:10px;
  gap: 14px;
  padding: 16px 16px;
  border-radius: var(--radius);
  background:
    radial-gradient(720px 220px at 10% 0%, rgba(184,135,43,.12), rgba(184,135,43,0) 62%),
    linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.74));
  border: 1px solid rgba(17,24,39,.10);
}

.ctaBand h3{ margin:0 0 4px; font-size: 16px; }
.ctaBandActions{ display:flex; gap: 10px; flex-wrap:wrap; }


/* Calm content block (no box jungle) */
.calmBlock{
  background: rgba(255,255,255,.62);
  border: 1px solid rgba(17,24,39,.10);
  border-radius: calc(var(--radius) + 2px);
  box-shadow: var(--shadow2);
  padding: 26px 22px 20px;
  max-width: 980px;
}
.calmBlock h2{
  margin:0 0 12px;
  font-size: clamp(22px, 2.3vw, 30px);
  letter-spacing: -.25px;
}
.calmBlock p{
  margin: 0 0 12px;
  color: rgba(17,24,39,.74);
  max-width: 860px;
}
.calmBlock p.singleLine{
  margin-top: 8px;
  font-weight: 650;
  color: rgba(17,24,39,.78);
  border-left: 3px solid rgba(184,135,43,.55);
  padding-left: 12px;
}
.calmBlock .ctaBand.slim{
  margin-top: 18px;
}

/* ---------- Footer ---------- */
.publicFooter{
  border-top: 1px solid rgba(17,24,39,.10);
  background: rgba(255,255,255,.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.publicFooterInner{
  max-width: var(--contentW);
  margin: 0 auto;
  padding: 16px 18px;
  display:flex;
  align-items:flex-start;
  justify-content:space-between; flex-wrap:wrap; row-gap:10px;
  gap: 18px;
  flex-wrap:wrap;
}

.footerLinks{
  display:flex;
  gap: 14px;
  flex-wrap:wrap;
  align-items:center;
}

.footerLinks a{
  padding: 8px 10px;
  border-radius: 12px;
  color: rgba(17,24,39,.74);
  border: 1px solid rgba(17,24,39,.08);
  background: rgba(255,255,255,.55);
}

.footerLinks a:hover{ box-shadow: 0 12px 22px rgba(17,24,39,.10); }

.trustBadge{
  display:flex;
  align-items:center;
  gap: 12px;
  padding: 12px 12px;
  border-radius: 18px;
  border: 1px solid rgba(17,24,39,.08);
  background: rgba(255,255,255,.64);
  box-shadow: 0 14px 34px rgba(17,24,39,.10);
}

.trustBadge img{
  width:56px; height:56px;
  border-radius: 12px;
  object-fit:contain;
}

/* ---------- Responsive ---------- */
@media (max-width: 980px){
  .cards3{ grid-template-columns: 1fr; }
  .listGrid{ grid-template-columns: 1fr; }
  .hero{ min-height: 54vh; }
  .heroInner{ padding-top: 96px; padding-bottom: 34px; }
  .ctaBand{ flex-direction:column; align-items:flex-start; }
}

@media (max-width: 520px){
  .publicTopInner{ padding: 12px 14px; }
  .brand{ min-width: unset; }

  /* Hero: smaller, less image dominance, text+CTA immediately visible */
  .hero{ min-height: 46vh; }
  .heroInner{ padding: 92px 14px 22px; }

  .heroMedia{
    background-position: 62% 42%;
    filter: saturate(.90) contrast(.98) brightness(.92);
    transform: scale(1.05);
  }

  /* Local readability panel (no bottom fog, no full-screen haze) */
  .heroCopy{
    max-width: 100%;
    padding: 14px 14px 12px;
    border-radius: 18px;
    background: rgba(17,24,39,.34);
    border: 1px solid rgba(255,255,255,.16);
    box-shadow: 0 18px 40px rgba(0,0,0,.14);
  }

  .kicker{ font-size: 12.5px; }
  .subline{ font-size: 15.5px; }
  .lead{ font-size: 15px; }

  .ctaRow{ gap: 10px; }
  .btn, .btnGhost{ width: 100%; }
  .smallNote{ width: 100%; }
}


/* v1.4: CTA visibility + warmer premium accents */
.btnPrimaryGold{
  background: linear-gradient(180deg, rgba(199,164,92,.98), rgba(168,126,58,.98));
  color: rgba(17,24,39,.92);
  border: 1px solid rgba(120,86,30,.40);
  box-shadow: 0 14px 26px rgba(120,86,30,.18);
}
.btnPrimaryGold:hover{
  transform: translateY(-1px);
  box-shadow: 0 16px 30px rgba(120,86,30,.22);
}

.card h3{
  position: relative;
  padding-left: 18px;
}
.card h3::before{
  content: "";
  position: absolute;
  left: 0;
  top: .62em;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.95), rgba(199,164,92,.92));
  box-shadow: 0 0 0 1px rgba(120,86,30,.25), 0 6px 14px rgba(120,86,30,.18);
}

/* CTA band button legibility safeguard */
.ctaBand .btnGhostStrong{
  color: rgba(17,24,39,.88) !important;
  background: rgba(255,255,255,.92) !important;
  border-color: rgba(17,24,39,.14) !important;
}
.ctaBand .btnPrimaryGold{
  color: rgba(17,24,39,.92) !important;
}

@media (max-width: 860px){
  }

.slimSection{
  padding: 46px 0 64px;
  background: var(--paper);
}


/* v1.6 – harte Zentrierung: Überschrift + Boxen + Inhalt in eine feste Breite */
.section > .sectionHead,
.section > .cards3,
.section > .calmBlock{
  width: min(var(--contentW), calc(100% - 72px));
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 860px){
  .section > .sectionHead,
  .section > .cards3,
  .section > .calmBlock{
    width: min(var(--contentW), calc(100% - 28px));
  }
}


/* --- unified width clamp for public sections --- */
.contentW{
  width: min(var(--contentW), calc(100% - 72px));
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 860px){
  .contentW{ width: min(var(--contentW), calc(100% - 28px)); }
}

/* --- v1.7: lock widths + spacing for 'Weniger laut' section --- */
.section.sectionTight > .sectionHead,
.section.sectionTight > .cards3,
.section.sectionTight > .calmBlock{
  width: min(var(--contentW), calc(100% - 72px));
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 860px){
  .section.sectionTight > .sectionHead,
  .section.sectionTight > .cards3,
  .section.sectionTight > .calmBlock{
    width: min(var(--contentW), calc(100% - 28px));
  }
}

/* breathing room: text should NOT touch the cards */
.section.sectionTight > .sectionHead{
  padding-bottom: 10px;
}
.section.sectionTight > .sectionHead p{
  margin-top: 10px;
  margin-bottom: 26px; /* key: space before 3 cards */
  max-width: 72ch;
}

/* cards row: fixed, calm gap */
.section.sectionTight > .cards3{
  gap: 18px;
  padding-top: 0;
  padding-bottom: 6px;
}

/* calmBlock centered but not oversized */
.section.sectionTight > .calmBlock{
  margin-top: 22px;
  margin-bottom: 8px;
  max-width: min(900px, calc(100% - 0px));
}

/* cards: keep compact and premium */
.card{
  padding: 18px 18px;
}
.card h3{
  margin-bottom: 8px;
}

.trustText{ line-height: 1.25; font-size: 13.5px; color: rgba(17,24,39,.72); }

@media (max-width: 520px){
  .publicFooterInner{ padding: 14px 14px; }
  .trustBadge{ width: 100%; justify-content: space-between; }
}
