/* PcoreLife · pandocore.de — Landing-Page + Rechtliches
   Stand: 2026-05-13 */

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

html, body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  background: #0e1014;
  color: #e8e8e8;
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

.wrap { max-width: 1080px; margin: 0 auto; padding: 2rem 1.5rem; }

a { color: #06C6A4; text-decoration: none; }
a:hover { text-decoration: underline; }

/* ============ LANDING-PAGE STYLES ============ */

.hero {
  background:
    radial-gradient(ellipse at 20% 0%, rgba(6,198,164,.18) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 100%, rgba(6,198,164,.08) 0%, transparent 50%),
    linear-gradient(180deg, #0e1014 0%, #14181f 100%);
  padding: 5rem 1.5rem 4rem;
  border-bottom: 1px solid #1f2630;
  text-align: center;
}
.hero.hero-compact { padding: 3.5rem 1.5rem 2.8rem; }
.hero.hero-compact .brand { font-size: 2.5rem; }
.hero.hero-compact .hero-claim { font-size: 1.15rem; }
.hero .brand {
  color: #06C6A4;
  font-size: 3.2rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-shadow: 0 0 30px rgba(6,198,164,.4);
  margin-bottom: .8rem;
}
.hero-claim {
  font-size: 1.35rem;
  color: #fff;
  margin-bottom: .6rem;
  font-weight: 500;
}
.hero-sub {
  font-size: 1.05rem;
  color: #b6bcc6;
  max-width: 640px;
  margin: 0 auto 2rem;
}
.hero-cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn {
  display: inline-block;
  padding: .85rem 1.8rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  transition: transform .15s, background .2s, border-color .2s;
  cursor: pointer;
}
.btn:hover { transform: translateY(-1px); text-decoration: none; }
.btn-primary {
  background: #06C6A4;
  color: #0d0d0d;
  border: 1px solid #06C6A4;
}
.btn-primary:hover { background: #07e0b9; }
.btn-ghost {
  background: transparent;
  color: #e8e8e8;
  border: 1px solid #2a3340;
}
.btn-ghost:hover { border-color: #06C6A4; color: #06C6A4; }

main { padding-bottom: 2rem; }

.features { padding-top: 3.5rem; padding-bottom: 2rem; }
.features h2 {
  font-size: 1.6rem;
  color: #06C6A4;
  text-align: center;
  margin-bottom: 2rem;
  font-weight: 600;
}

.tile-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.2rem;
}
.tile {
  background: #14181f;
  border: 1px solid #1f2630;
  border-radius: 12px;
  padding: 1.4rem 1.5rem;
  transition: border-color .2s, transform .15s;
}
.tile:hover { border-color: #06C6A4; transform: translateY(-2px); }
.tile h3 {
  color: #06C6A4;
  margin-bottom: .5rem;
  font-size: 1.08rem;
  font-weight: 600;
}
.tile p { color: #b6bcc6; font-size: .94em; }

.cta { padding-top: 2.5rem; padding-bottom: 3rem; max-width: 720px; }
.cta h2 {
  color: #06C6A4;
  font-size: 1.4rem;
  margin-bottom: 1rem;
  font-weight: 600;
  text-align: center;
}
.cta ol {
  padding-left: 1.5rem;
  font-size: 1.02rem;
}
.cta ol li { margin: .65rem 0; color: #d4dae3; }
.cta code {
  background: #14181f;
  padding: .15rem .45rem;
  border-radius: 4px;
  color: #ffcc66;
  font-size: .9em;
}

/* ============ FOOTER (landing + rechtliche Sub-Pages) ============ */

footer.site-foot {
  background: #14181f;
  border-top: 2px solid #06C6A4;
  padding: 2.5rem 1.5rem 1.5rem;
  margin-top: 3rem;
  font-size: .95em;
}
footer.site-foot.landing-foot { margin-top: 0; }
footer.site-foot .wrap { padding: 0; max-width: 1080px; }

.foot-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 1.5rem;
}
@media (max-width: 720px) { .foot-grid { grid-template-columns: 1fr; } }

.foot-brand {
  color: #06C6A4;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: .03em;
  margin-bottom: .4rem;
}
.foot-tag {
  color: #7c8593;
  font-size: .92em;
  margin-bottom: 1rem;
}
.foot-contact { color: #b6bcc6; font-size: .93em; }
.foot-contact a { color: #06C6A4; }

.foot-head {
  color: #fff;
  font-size: .92em;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: .8rem;
}

footer.site-foot a {
  color: #b6bcc6;
  display: block;
  margin: .45rem 0;
}
footer.site-foot a:hover { color: #06C6A4; text-decoration: underline; }

/* Prominenter Impressum/Datenschutz-Link */
.foot-link-big {
  display: inline-block !important;
  font-size: 1.05rem !important;
  font-weight: 600 !important;
  color: #06C6A4 !important;
  padding: .35rem .9rem !important;
  margin: .35rem 0 .35rem !important;
  border: 1px solid #2a3340;
  border-radius: 6px;
  transition: background .2s, border-color .2s;
}
.foot-link-big:hover {
  background: rgba(6,198,164,.1);
  border-color: #06C6A4;
  text-decoration: none !important;
}

.foot-bottom {
  border-top: 1px solid #1f2630;
  padding-top: 1.2rem;
  color: #7c8593;
  font-size: .85em;
  text-align: center;
}

/* ============ SUB-PAGE STYLES (impressum.html + datenschutz.html) ============ */

header.site-head {
  background: radial-gradient(ellipse at center, #1a1f28 0%, #0e1014 80%);
  padding: 2.5rem 1.5rem 2rem;
  border-bottom: 1px solid #1f2630;
}
header.site-head .wrap { padding: 0; max-width: 880px; }
header.site-head .brand {
  color: #06C6A4;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: .04em;
}
header.site-head .tag {
  color: #7c8593;
  margin-top: .4rem;
  font-size: .95em;
}
header.site-head nav.crumb { margin-top: 1rem; font-size: .9em; }
header.site-head nav.crumb a {
  color: #06C6A4;
  margin-right: 1.2rem;
}

main.wrap { max-width: 880px; padding-bottom: 4rem; }

main.wrap h1 {
  color: #06C6A4;
  border-bottom: 2px solid #06C6A4;
  padding-bottom: .5rem;
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
  font-weight: 600;
}
main.wrap h2 {
  color: #06C6A4;
  margin: 2rem 0 .8rem;
  font-size: 1.25rem;
  font-weight: 600;
}
main.wrap h3 {
  color: #fff;
  margin: 1.5rem 0 .5rem;
  font-size: 1.05rem;
  font-weight: 600;
}

main.wrap p, main.wrap li { margin: .5rem 0; }
main.wrap ul, main.wrap ol { padding-left: 1.6rem; }

table {
  border-collapse: collapse;
  width: 100%;
  margin: 1rem 0;
  font-size: .92em;
}
th, td {
  padding: .55rem .8rem;
  border: 1px solid #2a3340;
  text-align: left;
  vertical-align: top;
}
th {
  background: #1a2028;
  color: #06C6A4;
  font-weight: 600;
}
td code {
  background: #0e1014;
  padding: .12rem .4rem;
  border-radius: 4px;
  font-size: .9em;
  color: #ffcc66;
}

.placeholder {
  background: #3a2a14;
  color: #ffcc66;
  padding: .05rem .45rem;
  border-radius: 4px;
  font-style: italic;
  font-size: .92em;
}

.toc {
  background: #14181f;
  border: 1px solid #1f2630;
  border-radius: 10px;
  padding: 1.2rem 1.5rem;
  margin: 1.5rem 0 2.5rem;
}
.toc h3 { margin-top: 0; color: #06C6A4; }
.toc ol { columns: 2; column-gap: 2rem; padding-left: 1.4rem; }
.toc ol li { margin: .3rem 0; break-inside: avoid; }
@media (max-width: 640px) { .toc ol { columns: 1; } }

section { padding-top: .5rem; }
:target {
  background: rgba(6, 198, 164, .08);
  padding: 1rem 1rem .8rem;
  margin-left: -1rem;
  margin-right: -1rem;
  border-radius: 8px;
  scroll-margin-top: 1.5rem;
}

.section-note {
  background: #14181f;
  border-left: 3px solid #06C6A4;
  padding: .8rem 1rem;
  margin: 1rem 0;
  font-size: .92em;
  color: #b6bcc6;
}
