/* AssetForge Landing — Dark / Glass / Smooth
   Complete CSS (single source of truth) */

:root{
  --bg0:#020617;
  --bg1:#04081a;
  --bg2:#070a22;

  --text: rgba(255,255,255,.92);
  --muted: rgba(229,231,235,.72);

  --glass1: rgba(255,255,255,.055);
  --glass2: rgba(255,255,255,.08);

  --border: rgba(255,255,255,.12);
  --borderSoft: rgba(255,255,255,.08);

  --radius: 18px;
  --radius2: 22px;

  --shadow: 0 22px 60px rgba(0,0,0,.55);
}

*{ box-sizing:border-box; }
html, body{ height:100%; }

body{
  margin:0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);

  /* Smooth glow background (no hard bands) */
  background:
    radial-gradient(900px 420px at 50% -10%, rgba(120,70,255,.18) 0%, rgba(120,70,255,0) 60%),
    radial-gradient(700px 360px at 15% 20%, rgba(70,120,255,.12) 0%, rgba(70,120,255,0) 55%),
    radial-gradient(900px 520px at 85% 10%, rgba(255,80,140,.06) 0%, rgba(255,80,140,0) 60%),
    linear-gradient(180deg, #05081a 0%, #020617 55%, #010313 100%);
  overflow-x:hidden;
  position:relative;
}

/* Grain to reduce banding (keeps the "Schein" premium) */
body::after{
  content:"";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,.030) 0 1px, transparent 1px 3px),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,.022) 0 1px, transparent 1px 3px),
    radial-gradient(circle at 40% 80%, rgba(255,255,255,.018) 0 1px, transparent 1px 4px);
  background-size: 180px 180px, 220px 220px, 260px 260px;
  opacity: .35;
  mix-blend-mode: overlay;
}


body::before{
  content:"";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background: none;
}

body > *{ position:relative; z-index:1; }

main p{
  margin: 0 0 16px;
  line-height: 1.72;
}
main p:last-child{ margin-bottom: 0; }

main ul, main ol{
  margin: 0 0 16px;
  padding-left: 18px;
}
main ul:last-child, main ol:last-child{ margin-bottom: 0; }

main h3{
  margin: 26px 0 10px;
  font-size: 1.12rem;
  line-height: 1.35;
}

a{
  color: rgba(255,255,255,.86);
  text-decoration: none;
}
a:hover{ text-decoration: underline; }

.container{
  width: min(1120px, calc(100% - 48px));
  margin-inline: auto;
}

@media (max-width: 768px){
  .container{
    width: calc(100% - 24px);
  }
}

.muted{ color: var(--muted); }
.fineprint{ color: rgba(229,231,235,.70); font-size: 0.95rem; }

.section{
  padding: 84px 0;
}
.section--cta{
  padding: 92px 0;
}

.split{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 44px;
  align-items: start;
}

/* Layout helpers used across pages */
.stack{
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.stack > *{ margin: 0; }

.page{
  display: flex;
  justify-content: center;
}
.prose{
  width: min(78ch, 100%);
}
.prose p{
  margin: 0 0 16px;
  line-height: 1.72;
}
.prose h2{
  margin: 34px 0 12px;
}
.prose h2:first-child{ margin-top: 0; }
.prose .list{ margin: 0; }
.prose .list li{ margin: 12px 0; }

@media (max-width: 980px){
  .split{ grid-template-columns: 1fr; }
  .section{ padding: 64px 0; }
}

@media (max-width: 768px){
  .section{ padding: 48px 0; }
  .section--cta{ padding: 56px 0; }
}

/* NAV (no white bar) */
.nav{
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(2,6,23,.35);
  border-bottom: 1px solid rgba(255,255,255,.06);
  backdrop-filter: blur(8px);
}

.nav__inner{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
}

.nav__actions{
  display: flex;
  align-items: center;
  gap: 12px;
}

@media (max-width: 768px){
  .nav__inner{
    flex-wrap: wrap;
    gap: 12px;
    padding: 10px 0;
  }

  .nav__actions{
    margin-left: auto;
  }
}

.brand{
  display:flex;
  align-items:center;
  gap: 10px;
  font-weight: 600;
  letter-spacing: .3px;
  opacity: .95;
}

/* Replace diamond mark with logo image */
.brand__mark{
  background: none;
  border: none;
  width: auto;
  height: auto;
  display:flex;
  align-items:center;
  justify-content:center;
}
.brand__mark::before{
  content:"";
  display:block;
  width: 26px;
  height: 26px;
  background: url("./assets/assetForge.png") no-repeat center;
  background-size: contain;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,.6));
}

.brand__name{
  font-size: 1.05rem;
  font-weight: 600;
  opacity: .9;
}

@media (max-width: 480px){
  .brand__name{
    font-size: .95rem;
  }
  .brand__mark::before{
    width: 22px;
    height: 22px;
  }
}

.nav__links{
  display:flex;
  align-items:center;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
  font-size: .98rem;
  opacity: .92;
}

@media (max-width: 768px){
  .nav__links{
    gap: 10px;
    font-size: .9rem;
  }
  .nav__links > a:not(.pill){
    display: none;
  }
}

@media (max-width: 480px){
  .nav__links{
    order: 3;
    width: 100%;
    justify-content: center;
    gap: 8px;
  }
}

.pill{
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
}

.nav__cta{
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: 0 16px 34px rgba(0,0,0,.35);
}

@media (max-width: 768px){
  .nav__cta{
    padding: 8px 12px;
    font-size: .9rem;
  }
}

@media (max-width: 480px){
  .nav__cta{
    display: none;
  }
}

/* LANGUAGE SWITCHER */
.lang-switcher{
  position: relative;
}
.lang-switcher__btn{
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  color: rgba(255,255,255,.88);
  cursor: pointer;
  font-size: .95rem;
  font-weight: 500;
}
.lang-switcher__btn:hover{
  background: rgba(255,255,255,.09);
}
.lang-switcher__flag{
  font-size: 1.1rem;
  line-height: 1;
}
.lang-switcher__code{
  font-weight: 600;
  letter-spacing: .02em;
}
.lang-switcher__menu{
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: rgba(2,6,23,.92);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  box-shadow: 0 22px 60px rgba(0,0,0,.55);
  backdrop-filter: blur(12px);
  padding: 6px;
  min-width: 160px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  transition: opacity .22s ease, transform .22s ease;
  z-index: 100;
}
.lang-switcher__menu.is-open{
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.lang-switcher__item{
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  color: rgba(255,255,255,.88);
  text-decoration: none;
  transition: background .18s ease;
}
.lang-switcher__item:hover{
  background: rgba(255,255,255,.08);
  text-decoration: none;
}
.lang-switcher__item--active{
  background: rgba(255,255,255,.12);
  font-weight: 600;
}

/* HERO */
.hero{
  padding: 78px 0 48px;
}

/* Slightly roomier hero on content/topic pages */
.hero--page{
  padding: 86px 0 56px;
}

.hero__grid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 44px;
  align-items: start;
}

@media (max-width: 980px){
  .hero{ padding: 52px 0 22px; }
  .hero__grid{ grid-template-columns: 1fr; }
  .hero--page{ padding: 60px 0 28px; }
}

@media (max-width: 768px){
  .hero{ padding: 36px 0 16px; }
  .hero--page{ padding: 44px 0 18px; }
}

.kicker{
  margin: 18px 0 10px;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .78rem;
  color: rgba(229,231,235,.72);
}

h1{
  margin: 0 0 14px;
  font-size: clamp(2.05rem, 3.1vw, 3.0rem);
  line-height: 1.12;
  color: rgba(255,255,255,.94);
  text-shadow: 0 2px 18px rgba(0,0,0,.6);
}

h2{
  margin: 0 0 12px;
  font-size: clamp(1.55rem, 2.3vw, 2.05rem);
  line-height: 1.20;
}

.lead{
  margin: 0 0 18px;
  font-size: 1.08rem;
  line-height: 1.68;
  color: rgba(229,231,235,.78);
}

.badges{
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 12px;
}

@media (max-width: 768px){
  .badges{
    gap: 8px;
    margin-bottom: 10px;
  }
}

.badge{
  display:inline-flex;
  align-items:center;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  font-size: .9rem;
  color: rgba(255,255,255,.85);
}

@media (max-width: 768px){
  .badge{
    padding: 6px 9px;
    font-size: .8rem;
  }
}

.cta-row{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 18px 0 12px;
}

@media (max-width: 768px){
  .cta-row{
    gap: 10px;
    margin: 16px 0 10px;
  }
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor:pointer;
  user-select:none;
  font-weight: 600;
  text-decoration:none;
}

.btn--primary{
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.16);
  color: rgba(255,255,255,.92);
  box-shadow: 0 18px 40px rgba(0,0,0,.50);
}
.btn--primary:hover{
  background: rgba(255,255,255,.14);
  text-decoration:none;
}
.btn--ghost{
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.88);
}
.btn--ghost:hover{ text-decoration:none; }

.btn--icon{
  width: 36px;
  height: 36px;
  padding: 0;
  border-radius: 50%;
  background: rgba(0,0,0,.30);
  border: 1px solid rgba(255,255,255,.20);
  color: rgba(255,255,255,.92);
  font-size: 18px;
  line-height: 1;
}
.btn--icon:hover{
  background: rgba(0,0,0,.40);
}

.hero__panel .panel{
  background: linear-gradient(180deg, rgba(255,255,255,.060), rgba(255,255,255,.028));
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius2);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
  overflow: hidden;
}

.panel__top{
  display:flex;
  align-items:center;
  gap: 8px;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.dot{
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: rgba(255,255,255,.35);
}
.panel__title{
  margin-left: 10px;
  font-size: .95rem;
  color: rgba(255,255,255,.78);
}
.panel__body{
  padding: 18px;
}
.panel__hint{
  margin:0;
  color: rgba(229,231,235,.74);
}

/* HERO ROTATOR (Hero panel slideshow) */
.hero-rotator{
  position: relative;
  border-radius: var(--radius2);
  overflow: hidden;
  min-height: 320px;
  background: #0c1226; /* voller Hintergrund, kein Durchscheinen */
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: var(--shadow);
}
.hero-rotator__img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: #0c1226; /* falls Bild kleiner lädt */
}
.hero-rotator__overlay{
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 6px;
  padding: 14px 16px;
  background: linear-gradient(180deg, rgba(0,0,0,0) 42%, rgba(0,0,0,.38) 100%);
  pointer-events: none;
}
.hero-rotator__label{
  margin: 0;
  font-size: 0.8rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.72);
  opacity: .9;
}
.hero-rotator__title{
  margin: 0;
  font-weight: 650;
  font-size: 1rem;
  color: rgba(255,255,255,.92);
}
.hero-rotator__dots{
  display: flex;
  gap: 8px;
  align-items: center;
  margin-top: 4px;
  pointer-events: auto;
}

@media (max-width: 980px){
  .hero-rotator{ min-height: 260px; }
}

/* WHY ROTATOR (small slideshow) */
.why-rotator{
  background: #0c1226;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius2);
  box-shadow: var(--shadow);
  padding: 12px;
  display: grid;
  gap: 10px;
}
.why-rotator__img{
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: calc(var(--radius2) - 8px);
  display: block;
  background: #0c1226;
}
.why-rotator__dots{
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
}

@media (max-width: 980px){
  .why-rotator__img{ height: 240px; }
}

/* CALLOUT */
.callout{
  background: linear-gradient(180deg, rgba(255,255,255,.060), rgba(255,255,255,.028));
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius2);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
  padding: 22px;
}
.callout__title{
  margin:0 0 10px;
  font-weight: 650;
}

.list{
  margin: 0;
  padding-left: 18px;
  color: rgba(229,231,235,.78);
}
.list li{ margin: 10px 0; }

/* FEATURE SPOTLIGHT */
.feature-spotlight{
  margin-top: 18px;
  display: grid;
  gap: 14px;
}
.feature-spotlight__card{
  background: linear-gradient(180deg, rgba(255,255,255,.060), rgba(255,255,255,.028));
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius2);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
  padding: 24px;
  min-height: 220px;
  transition: opacity .35s ease, transform .35s ease;
}
.feature-spotlight__card.is-fading{
  opacity: 0;
  transform: translateY(6px);
}
.feature-spotlight__controls{
  display:flex;
  align-items:center;
  gap: 12px;
  flex-wrap: wrap;
}
.feature-spotlight__dots{
  display:flex;
  gap: 8px;
  align-items:center;
}
.dotbtn{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.10);
  background: transparent;
  cursor: pointer;
  padding: 0;
}
.dotbtn--active{
  background: rgba(255,255,255,.70);
}

.mini{
  margin: 12px 0 0;
  padding-left: 18px;
  color: rgba(229,231,235,.78);
}
.mini li{ margin: 8px 0; }

/* SLIDESHOW */
.slideshow{
  margin-top: 18px;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
@media (max-width: 980px){
  .slideshow{ grid-template-columns: 1fr; }
}

.slideshow__frame{
  background: #0c1226; /* voller Hintergrund, kein Durchscheinen */
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius2);
  box-shadow: var(--shadow);
  overflow:hidden;
  min-height: 320px;
  position: relative;
}
.slideshow__img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display:block;
}

.slideshow__image-nav{
  position: absolute;
  bottom: 12px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

.slideshow__image-dots{
  display: flex;
  gap: 6px;
  align-items: center;
}

.dotbtn--small{
  width: 8px;
  height: 8px;
}
.slideshow__meta{
  background: linear-gradient(180deg, rgba(255,255,255,.060), rgba(255,255,255,.028));
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius2);
  box-shadow: var(--shadow);
  padding: 22px;
  backdrop-filter: blur(12px);
}
.slideshow__title{
  margin: 0 0 10px;
  font-weight: 650;
}
.slideshow__controls{
  margin-top: 14px;
  display:flex;
  gap: 12px;
  align-items:center;
  flex-wrap: wrap;
}
.slideshow__dots{
  display:flex;
  gap: 8px;
  align-items:center;
}

/* FORM */
.form{
  background: linear-gradient(180deg, rgba(255,255,255,.060), rgba(255,255,255,.028));
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius2);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
  padding: 22px;
  display:grid;
  gap: 12px;
}

.field{ display:grid; gap: 6px; }
label{ color: rgba(229,231,235,.75); font-size: .92rem; }

input, textarea{
  width: 100%;
  padding: 12px 12px;
  border-radius: 14px;
  outline: none;
  background: rgba(2,6,23,.55);
  border: 1px solid rgba(255,255,255,.10);
  color: rgba(255,255,255,.92);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
}

input::placeholder, textarea::placeholder{
  color: rgba(229,231,235,.55);
}

textarea{ resize: vertical; min-height: 110px; }

.form__hint{
  margin: 0;
  color: rgba(229,231,235,.62);
  font-size: .92rem;
}
.form__status{
  min-height: 20px;
  font-size: .95rem;
  color: rgba(255,255,255,.85);
}

/* FOOTER */
.footer{
  padding: 44px 0;
  border-top: 1px solid rgba(255,255,255,.06);
  margin-top: 24px;
}
.footer__inner{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer__links{
  display:flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Accessibility */
:focus-visible{
  outline: 2px solid rgba(255,255,255,.28);
  outline-offset: 2px;
}
/* ===== FIX: white background strip (force dark everywhere) ===== */
html, body {
  background-color: #020617 !important;
}

/* Falls irgendwo ein helles Section-Background sitzt */
main, header, footer, section,
.hero, .section, .section--cta {
  background: transparent !important;
}

/* Safety: falls irgendein Wrapper weiß färbt */
.container, .split, .hero__grid {
  background: transparent !important;
}

/* Optional: falls der Browser/OS "Canvas" weiß reinmischt */
:root {
  color-scheme: dark;
}
/* ===== Decorative Hero Logo (right / centered / translucent) ===== */

/* Hero muss Position-Context haben */
.hero {
  position: relative;
  overflow: hidden;
}

/* Großes, dezentes Logo rechts im Hero */
.hero::after {
  content: "";
  position: fixed;
  left: 18px;
  bottom: 18px;
  top: auto;
  right: auto;
  transform: none;

  width: 160px;
  height: 160px;

  background: url("./assets/assetForge.png") no-repeat center;
  background-size: contain;

  opacity: 0.06;              /* noch transparenter */
  filter: blur(0.4px) saturate(1.1);
  pointer-events: none;       /* rein visuell */
  z-index: 0;
}

/* Content im Hero bleibt über der Watermark */
.hero__grid{
  position: relative;
  z-index: 1;
}

/* Auf kleineren Screens ausblenden */
@media (max-width: 1100px) {
  .hero::after {
    opacity: 0.05;
    width: 140px;
    height: 140px;
  }
}

@media (max-width: 900px) {
  .hero::after {
    opacity: 0.05;
    width: 110px;
    height: 110px;
  }
}
/* ===== HARD KILL: unwanted logo / fire graphic at bottom ===== */

/* Alles, was im Hero ein Bild ist → ausblenden (außer der neue Rotator) */
.hero img:not(.hero-rotator__img),
.hero picture,
.hero source {
  display: none !important;
}

/* Falls es ein Background-Image in einem Panel ist */
.hero .panel,
.hero .panel__body,
.hero .hero__panel {
  background-image: none !important;
}

/* Falls es per ::before / ::after kommt */
.hero *::before,
.hero *::after {
  background-image: none !important;
}

/* Sicherheitsnetz: nichts darf über den unteren Rand hinausragen */
.hero {
  overflow: hidden !important;
}

body {
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      color: #e5e7eb;
      min-height: 100vh;
      margin: 0;
      padding: 0;

      background:
        radial-gradient(
          circle at top,
          rgba(80, 50, 140, 0.25) 0%,
          rgba(30, 15, 50, 0.25) 35%,
          #020617 70%
        ),;

      background-repeat: no-repeat;
      background-position: center 140px;
      background-size: 100% auto;
      background-attachment: fixed;
    }

    @media (max-width: 900px) {
      body {
        background-position: center 100px;
        background-size: 100% auto;
      }
    }