
:root{
  --bg:#0a0a0a;
  --panel:#141414;
  --panel2:#1a1a1a;
  --yellow:#f2b705;
  --text:#f5f2eb;
  --muted:#b9b0a4;
  --line:#343434;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  background:
    radial-gradient(circle at 50% 0%, rgba(242,183,5,.10), transparent 28%),
    #0a0a0a;
  color:var(--text);
  font-family:Arial,Helvetica,sans-serif;
}
a{color:inherit;text-decoration:none}
.wrap{width:min(1180px,calc(100% - 36px));margin:auto}

header{
  position:fixed;
  top:0;left:0;right:0;
  z-index:50;
  background:rgba(8,8,8,.92);
  backdrop-filter:blur(10px);
  border-bottom:1px solid rgba(242,183,5,.35);
}
.nav{
  height:74px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:28px;
}
.brand{
  color:var(--yellow);
  font-size:26px;
  font-weight:900;
  letter-spacing:.05em;
}
.links{display:flex;gap:24px;align-items:center;font-weight:700}
.links a:hover{color:var(--yellow)}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:46px;
  padding:13px 18px;
  background:var(--yellow);
  color:#111;
  border:1px solid var(--yellow);
  border-radius:5px;
  font-weight:900;
  transition:.2s ease;
}
.btn:hover{transform:translateY(-2px);box-shadow:0 10px 26px rgba(242,183,5,.18)}
.btn.alt{background:transparent;color:#fff}

.hero{
  min-height:100vh;
  padding:120px 0 76px;
  position:relative;
  display:flex;
  align-items:center;
  overflow:hidden;
}
.hero:before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg,rgba(0,0,0,.92) 0%,rgba(0,0,0,.70) 38%,rgba(0,0,0,.35) 68%,rgba(0,0,0,.65) 100%);
  z-index:0;
}
.hero-logo{
  position:fixed;
  left:54%;
  top:53%;
  transform:translate(-50%,-50%);
  width:min(720px,58vw);
  opacity:.24;
  filter:sepia(1) saturate(5) hue-rotate(355deg) contrast(1.15);
  z-index:-1;
  pointer-events:none;
}
.hero-copy{
  position:relative;
  z-index:2;
  width:min(640px,52vw);
}
.kicker,.eyebrow{
  color:var(--yellow);
  text-transform:uppercase;
  letter-spacing:.14em;
  font-size:12px;
  font-weight:900;
}
h1{
  font-size:clamp(54px,6.2vw,92px);
  line-height:.92;
  margin:18px 0 24px;
  letter-spacing:-.04em;
}
h1 span{color:var(--yellow)}
.lead{
  color:#ddd;
  font-size:20px;
  line-height:1.55;
}
.actions{display:flex;gap:12px;flex-wrap:wrap;margin-top:28px}
.traits{display:flex;gap:24px;flex-wrap:wrap;margin-top:30px;color:#ded7cb;font-weight:700}
.traits span:before{content:"✦";color:var(--yellow);margin-right:7px}

section{
  padding:96px 0;
  border-top:1px solid rgba(242,183,5,.14);
}
h2{
  font-size:clamp(38px,4.3vw,62px);
  margin:10px 0 14px;
  letter-spacing:-.03em;
}
.sectionlead{
  color:var(--muted);
  max-width:760px;
  line-height:1.6;
  margin-bottom:34px;
}
.grid2,.grid3,.grid4{
  display:grid;
  gap:18px;
}
.grid2{grid-template-columns:repeat(2,1fr)}
.grid3{grid-template-columns:repeat(3,1fr)}
.grid4{grid-template-columns:repeat(4,1fr)}

.card{
  background:var(--panel);
  border:1px solid var(--line);
  border-radius:16px;
  overflow:hidden;
  transition:.2s ease;
}
.card:hover{
  transform:translateY(-3px);
  border-color:rgba(242,183,5,.55);
}
.card img{
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
}
.imagebox.landscape{aspect-ratio:4/3}
.imagebox.portrait{aspect-ratio:4/5}
.caption{
  padding:14px 16px 17px;
}
.caption b{display:block;font-size:18px;margin-bottom:4px}
.caption span{color:var(--muted);font-size:14px}

.process-arrow{
  color:var(--yellow);
  text-align:center;
  font-size:30px;
  align-self:center;
}

.section-dark{background:#101010}
.section-panel{background:#0d0d0d}
.tag{
  display:inline-block;
  border:1px solid rgba(242,183,5,.45);
  color:var(--yellow);
  padding:6px 9px;
  border-radius:4px;
  font-size:11px;
  letter-spacing:.08em;
  text-transform:uppercase;
  margin-bottom:8px;
}
footer{
  padding:52px 0 70px;
  color:#8f877e;
  border-top:1px solid #222;
}

@media(max-width:900px){
  .links a:not(.btn){display:none}
  .hero-copy{width:100%}
  .hero-logo{width:92vw;left:50%;opacity:.12}
  .grid4,.grid3,.grid2{grid-template-columns:1fr}
  h1{font-size:56px}
}

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


.footer-inner{
  display:flex;
  justify-content:space-between;
  gap:18px;
  flex-wrap:wrap;
}
.footer-inner a{
  color:var(--yellow);
  text-decoration:none;
  font-weight:800;
}
.footer-inner a:hover{
  text-decoration:underline;
}


.imagebox video{width:100%;height:100%;object-fit:cover;display:block;}

/* HueForge-Video: komplett sichtbar statt beschnitten */
.hueforge-video-box{
  max-width: 560px;
  margin: 0 auto;
  aspect-ratio: 4 / 3;
  background: #050505;
}
.hueforge-video-box video{
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}


/* Nach-oben-Button */
html{scroll-behavior:smooth;}
.back-to-top{
  position:fixed;
  right:22px;
  bottom:22px;
  z-index:999;
  width:46px;
  height:46px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  background:#f2b900;
  color:#0a0a0a;
  text-decoration:none;
  font-size:26px;
  font-weight:900;
  line-height:1;
  box-shadow:0 8px 24px rgba(0,0,0,.35);
  border:1px solid rgba(255,255,255,.12);
}
.back-to-top:hover{
  transform:translateY(-2px);
}
